[
  {
    "path": ".gitattributes",
    "content": "# Auto detect text files and perform LF normalization\n* text=auto\n\n# Custom for Visual Studio\n*.cs     diff=csharp\n\n# Standard to msysgit\n*.doc\t diff=astextplain\n*.DOC\t diff=astextplain\n*.docx diff=astextplain\n*.DOCX diff=astextplain\n*.dot  diff=astextplain\n*.DOT  diff=astextplain\n*.pdf  diff=astextplain\n*.PDF\t diff=astextplain\n*.rtf\t diff=astextplain\n*.RTF\t diff=astextplain\n"
  },
  {
    "path": ".gitignore",
    "content": "# Windows image file caches\nThumbs.db\nehthumbs.db\n\n# Folder config file\nDesktop.ini\n\n# Recycle Bin used on file shares\n$RECYCLE.BIN/\n\n# Windows Installer files\n*.cab\n*.msi\n*.msm\n*.msp\n\n# Windows shortcuts\n*.lnk\n\n# =========================\n# Operating System Files\n# =========================\n\n# OSX\n# =========================\n\n.DS_Store\n.AppleDouble\n.LSOverride\n\n# Thumbnails\n._*\n\n# Files that might appear in the root of a volume\n.DocumentRevisions-V100\n.fseventsd\n.Spotlight-V100\n.TemporaryItems\n.Trashes\n.VolumeIcon.icns\n\n# Directories potentially created on remote AFP share\n.AppleDB\n.AppleDesktop\nNetwork Trash Folder\nTemporary Items\n.apdisk\n"
  },
  {
    "path": ".ipynb_checkpoints/Collections_using_v_1-checkpoint.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Collections\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## In this lecture\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"- [Introduction](#Introduction)\\n\",\n    \"- [Arrays](#Arrays)\\n\",\n    \"- [Tuples](#Tuples)\\n\",\n    \"- [Dictionaries](#Dictionaries)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Introduction\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Collections are groups of elements.  These elements are values of different Julia types.  Storing elements in collections is one of the most useful operations in computing.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Arrays\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Arrays are collections of values separated with commas and placed inside of a set of square brackets.  They can be represented in column or in row form.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# A column vector\\n\",\n    \"array1 = [1, 2, 3]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The `typeof()` function shows that `array1` is an instance of an array object, containing integer values.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# The type of the object array1\\n\",\n    \"typeof(array1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Below we create `array2`.  Note that there are only spaces between the elements.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"1×3 Array{Int64,2}:\\n\",\n       \" 1  2  3\"\n      ]\n     },\n     \"execution_count\": 3,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# A row vector\\n\",\n    \"array2 = [1 2 3]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The `transpose()` function will create a linear algebra transpose of our column vector, `array1`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"1×3 LinearAlgebra.Transpose{Int64,Array{Int64,1}}:\\n\",\n       \" 1  2  3\"\n      ]\n     },\n     \"execution_count\": 4,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# The transpose\\n\",\n    \"transpose(array1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"When the types of the elements are not the same, all elements _inherit_ the _highest_ type.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3-element Array{Float64,1}:\\n\",\n       \" 1.0\\n\",\n       \" 2.0\\n\",\n       \" 3.0\"\n      ]\n     },\n     \"execution_count\": 5,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# With a mix of types, all the elements inherent the \\\"highest\\\" type\\n\",\n    \"array2 = [1, 2, 3.0]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"1.0\"\n      ]\n     },\n     \"execution_count\": 6,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Index for one of the original integers will be Float64\\n\",\n    \"array2[1]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Arrays can have more than one _dimension_ (here dimension does not refer to the number of elements in a vector, representing a vector field).\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×3 Array{Int64,2}:\\n\",\n       \" 1  4  7\\n\",\n       \" 2  5  8\\n\",\n       \" 3  6  9\"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Column-wise entry of multidimensional array\\n\",\n    \"array3 = [[1, 2, 3] [4, 5, 6] [7, 8, 9]]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×3 Array{Int64,2}:\\n\",\n       \" 1  2  3\\n\",\n       \" 4  5  6\\n\",\n       \" 7  8  9\"\n      ]\n     },\n     \"execution_count\": 8,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Row-wise entry of multidimensional array\\n\",\n    \"array4 = [[1 2 3]; [4 5 6]; [7 8 9]]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The `length()` function returns the number of elements.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"9\"\n      ]\n     },\n     \"execution_count\": 9,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Length of array3\\n\",\n    \"length(array3)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"9\"\n      ]\n     },\n     \"execution_count\": 10,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"length(array4)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Since the two arrays above were created differently, let's take a look at indexes of their elements.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Element 1 is 1\\n\",\n      \"Element 2 is 2\\n\",\n      \"Element 3 is 3\\n\",\n      \"Element 4 is 4\\n\",\n      \"Element 5 is 5\\n\",\n      \"Element 6 is 6\\n\",\n      \"Element 7 is 7\\n\",\n      \"Element 8 is 8\\n\",\n      \"Element 9 is 9\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# Index order of column-wise array\\n\",\n    \"for i in 1:length(array3)\\n\",\n    \"    println(\\\"Element $(i) is \\\", array3[i])\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Element 1 is 1\\n\",\n      \"Element 2 is 4\\n\",\n      \"Element 3 is 7\\n\",\n      \"Element 4 is 2\\n\",\n      \"Element 5 is 5\\n\",\n      \"Element 6 is 8\\n\",\n      \"Element 7 is 3\\n\",\n      \"Element 8 is 6\\n\",\n      \"Element 9 is 9\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# Index order of row-wise array\\n\",\n    \"for i in 1:length(array4)\\n\",\n    \"    println(\\\"Element $(i) is \\\", array4[i])\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Elements can be repeated using the `repeat()` function.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"6-element Array{Int64,1}:\\n\",\n       \" 1\\n\",\n       \" 2\\n\",\n       \" 1\\n\",\n       \" 2\\n\",\n       \" 1\\n\",\n       \" 2\"\n      ]\n     },\n     \"execution_count\": 13,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Using repeat() to repeat column elements\\n\",\n    \"repeat([1, 2], 3)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×2 Array{Int64,2}:\\n\",\n       \" 1  2\\n\",\n       \" 1  2\\n\",\n       \" 1  2\"\n      ]\n     },\n     \"execution_count\": 14,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Using repeat() to repeat row elements\\n\",\n    \"repeat([1 2], 3)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The `range()` function creates a range object.  The first argument is the value of the first element.  The `step = ` argument specifies the step-size, and the `length =` argument specifies how many elements the array should have.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"1:1:10\"\n      ]\n     },\n     \"execution_count\": 15,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Using range(start, step, number of elements)\\n\",\n    \"range(1, step = 1, length = 10)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can change the range object into an array using the `collect()` function.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"10-element Array{Int64,1}:\\n\",\n       \"  1\\n\",\n       \"  2\\n\",\n       \"  3\\n\",\n       \"  4\\n\",\n       \"  5\\n\",\n       \"  6\\n\",\n       \"  7\\n\",\n       \"  8\\n\",\n       \"  9\\n\",\n       \" 10\"\n      ]\n     },\n     \"execution_count\": 16,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Create collections using the collect() function\\n\",\n    \"collect(range(1, step = 1, length = 10))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"10-element Array{Int64,1}:\\n\",\n       \"  1\\n\",\n       \"  2\\n\",\n       \"  3\\n\",\n       \"  4\\n\",\n       \"  5\\n\",\n       \"  6\\n\",\n       \"  7\\n\",\n       \"  8\\n\",\n       \"  9\\n\",\n       \" 10\"\n      ]\n     },\n     \"execution_count\": 17,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Short-hand syntax\\n\",\n    \"collect(1:10)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can create empty arrays as placeholders.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"2×3 Array{Union{Missing, Int64},2}:\\n\",\n       \" missing  missing  missing\\n\",\n       \" missing  missing  missing\"\n      ]\n     },\n     \"execution_count\": 18,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Creating empty array with two rows and three columns\\n\",\n    \"array5 = Array{Union{Missing, Int}}(missing, 2, 3)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Reshaping is achieved using the `reshape()` function.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×2 Array{Union{Missing, Int64},2}:\\n\",\n       \" missing  missing\\n\",\n       \" missing  missing\\n\",\n       \" missing  missing\"\n      ]\n     },\n     \"execution_count\": 19,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Reshaping\\n\",\n    \"reshape(array5, 3, 2)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Every element in an arrays has an index (address) value.  We already saw this above when we created a for-loop to cycle through the values of our row vs. column created arrays.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"10×5 Array{Int64,2}:\\n\",\n       \" 18  20  13  18  13\\n\",\n       \" 16  14  14  12  16\\n\",\n       \" 14  13  11  19  20\\n\",\n       \" 19  11  10  12  14\\n\",\n       \" 20  15  15  14  12\\n\",\n       \" 11  20  20  10  20\\n\",\n       \" 10  15  17  13  12\\n\",\n       \" 11  17  13  14  16\\n\",\n       \" 18  10  16  15  10\\n\",\n       \" 12  13  18  14  10\"\n      ]\n     },\n     \"execution_count\": 20,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Creating a 10 x 5 array with each element drawn randomly from value 10 through 20\\n\",\n    \"array6 = rand(10:20, 10, 5)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Indexing is indicated with square brackets.  For arrays with rows and columns, the index values will be in the form `[row, column]`.  A colon serves as short-hand syntax indicating _all_ values.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"10-element Array{Int64,1}:\\n\",\n       \" 18\\n\",\n       \" 16\\n\",\n       \" 14\\n\",\n       \" 19\\n\",\n       \" 20\\n\",\n       \" 11\\n\",\n       \" 10\\n\",\n       \" 11\\n\",\n       \" 18\\n\",\n       \" 12\"\n      ]\n     },\n     \"execution_count\": 22,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#All rows in first column\\n\",\n    \"array6[:, 1]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"4-element Array{Int64,1}:\\n\",\n       \" 14\\n\",\n       \" 13\\n\",\n       \" 11\\n\",\n       \" 15\"\n      ]\n     },\n     \"execution_count\": 23,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Rows two through five of second column\\n\",\n    \"array6[2:5, 2]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×2 Array{Int64,2}:\\n\",\n       \" 16  16\\n\",\n       \" 19  14\\n\",\n       \" 11  20\"\n      ]\n     },\n     \"execution_count\": 24,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Values in rows 2, 4, 6, and in columns 1 and 5\\n\",\n    \"array6[[2, 4, 6], [1, 5]]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3-element Array{Int64,1}:\\n\",\n       \" 13\\n\",\n       \" 18\\n\",\n       \" 13\"\n      ]\n     },\n     \"execution_count\": 25,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Values in row 1 from column 3 to the last column\\n\",\n    \"array6[1, 3:end]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Boolean logic can be used to select values based on rules.  Below we check if each value in column one is equal to or greater than $12$.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"10-element BitArray{1}:\\n\",\n       \"  true\\n\",\n       \"  true\\n\",\n       \"  true\\n\",\n       \"  true\\n\",\n       \"  true\\n\",\n       \" false\\n\",\n       \" false\\n\",\n       \" false\\n\",\n       \"  true\\n\",\n       \" false\"\n      ]\n     },\n     \"execution_count\": 26,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Boolean logic (returning only true or false)\\n\",\n    \"array6[:, 1] .> 12\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can add values to an array using the `push!()` function.  Many functions in Julia have an added exclamation mark, called a _bang_.  It is used to make permanent changes to the values in a computer variable.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 27,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"6-element Array{Int64,1}:\\n\",\n       \"  1\\n\",\n       \"  2\\n\",\n       \"  3\\n\",\n       \"  4\\n\",\n       \"  5\\n\",\n       \" 10\"\n      ]\n     },\n     \"execution_count\": 27,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Creating a five element array\\n\",\n    \"array7 = [1, 2, 3, 4, 5]\\n\",\n    \"# Permanantly append 10 to end of array\\n\",\n    \"push!(array7, 10)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The `pop!()` function removes the last element (the bang makes it permanent).\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 28,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"10\"\n      ]\n     },\n     \"execution_count\": 28,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"pop!(array7)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can also change the value of an element by using its index.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 29,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"1000\"\n      ]\n     },\n     \"execution_count\": 29,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Change second element value to 1000\\n\",\n    \"array7[2] = 1000\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 30,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"5-element Array{Int64,1}:\\n\",\n       \"    1\\n\",\n       \" 1000\\n\",\n       \"    3\\n\",\n       \"    4\\n\",\n       \"    5\"\n      ]\n     },\n     \"execution_count\": 30,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Viewing the change\\n\",\n    \"array7\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"_List comprehension_ is a term that refers to the creating of an array using a _recipe_.  View the following example.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 31,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"5-element Array{Int64,1}:\\n\",\n       \"  3\\n\",\n       \"  6\\n\",\n       \"  9\\n\",\n       \" 12\\n\",\n       \" 15\"\n      ]\n     },\n     \"execution_count\": 31,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# An example of list comprehension\\n\",\n    \"array8 = [3 * i for i in 1:5]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The Julia syntax is very expressive, as the above example shows.  Square brackets indicate that we are creating a list.  The expression, `3 * i` indicates what we want each element to look like.  The for-loop uses the placeholder over which we wish to iterate, together with the range that we require.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"This allows for very complex array creation, which makes it quite versatile.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 32,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×3 Array{Int64,2}:\\n\",\n       \" 1  2  3\\n\",\n       \" 2  4  6\\n\",\n       \" 3  6  9\"\n      ]\n     },\n     \"execution_count\": 32,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Column-wise collection iterating through second element first\\n\",\n    \"array9 = [a * b for a in 1:3, b in 1:3]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Arithmetic operations on arrays are performed through the process of _broadcasting_.  Below we add $1$ to each element in `array9`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 34,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×3 Array{Int64,2}:\\n\",\n       \" 2  3   4\\n\",\n       \" 3  5   7\\n\",\n       \" 4  7  10\"\n      ]\n     },\n     \"execution_count\": 34,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Elementwise addition of a scalar using dot notation\\n\",\n    \"array9 .+ 1\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"When arrays are of similar shape, we can do elemnt wise addition.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 35,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"5-element Array{Int64,1}:\\n\",\n       \"    4\\n\",\n       \" 1006\\n\",\n       \"   12\\n\",\n       \"   16\\n\",\n       \"   20\"\n      ]\n     },\n     \"execution_count\": 35,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Elementwise addition of similar sized arrays\\n\",\n    \"array7 + array8\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"While it is nice to have a complete set of elements, data is often _missing_.  `Missing` is a Julia data type that provides a placeholder for missing data in a statistical sense.  It propagates automatically and its equality as a type can be tested.  Sorting is possible since missing is seen as greater than other values.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 36,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"missing\"\n      ]\n     },\n     \"execution_count\": 36,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Propagation\\n\",\n    \"missing + 1\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 37,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"missing\"\n      ]\n     },\n     \"execution_count\": 37,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"missing > 1\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 38,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"5-element Array{Union{Missing, Int64},1}:\\n\",\n       \" 11       \\n\",\n       \" 22       \\n\",\n       \" 33       \\n\",\n       \"   missing\\n\",\n       \" 55       \"\n      ]\n     },\n     \"execution_count\": 38,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"[1, 2, 3, missing, 5] + [10, 20, 30, 40 ,50]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 39,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"missing\"\n      ]\n     },\n     \"execution_count\": 39,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Checking equality of value using ==\\n\",\n    \"# Cannot return true or false since value is not known\\n\",\n    \"missing == missing\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 40,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"true\"\n      ]\n     },\n     \"execution_count\": 40,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Checking equality of type with ===\\n\",\n    \"missing === missing\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 41,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"true\"\n      ]\n     },\n     \"execution_count\": 41,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Checking type equality with isequal()\\n\",\n    \"isequal(missing, missing)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 42,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"true\"\n      ]\n     },\n     \"execution_count\": 42,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Sorting with isless()\\n\",\n    \"isless(1, missing)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 43,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"true\"\n      ]\n     },\n     \"execution_count\": 43,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Checking on infinity\\n\",\n    \"isless(Inf, missing)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can create an array of zeros.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 44,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×3 Array{Int8,2}:\\n\",\n       \" 0  0  0\\n\",\n       \" 0  0  0\\n\",\n       \" 0  0  0\"\n      ]\n     },\n     \"execution_count\": 44,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# A 3 x 3 array of integer zeros\\n\",\n    \"array11 = zeros(Int8, 3, 3)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Here is an array of ones.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 45,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×3 Array{Float16,2}:\\n\",\n       \" 1.0  1.0  1.0\\n\",\n       \" 1.0  1.0  1.0\\n\",\n       \" 1.0  1.0  1.0\"\n      ]\n     },\n     \"execution_count\": 45,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# A 3 x 3 array of floating point ones\\n\",\n    \"array12 = ones(Float16, 3, 3)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Boolean values are also allowed.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 46,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×3 BitArray{2}:\\n\",\n       \" true  true  true\\n\",\n       \" true  true  true\\n\",\n       \" true  true  true\"\n      ]\n     },\n     \"execution_count\": 46,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Array of true (bit array) values\\n\",\n    \"array13 = trues(3, 3)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can even fill an array with a specified value.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 47,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×3 Array{Int64,2}:\\n\",\n       \" 10  10  10\\n\",\n       \" 10  10  10\\n\",\n       \" 10  10  10\"\n      ]\n     },\n     \"execution_count\": 47,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Fill an array with elements of value x\\n\",\n    \"array14 = fill(10, 3, 3)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We have already seen that elemnts of different types all inherit the _highest_ type.  We can in fact, change the type manually, with the convert function.  As elsewhere in Julia, the dot opetaror maps the function to each element of a list.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 48,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×3 Array{Float16,2}:\\n\",\n       \" 10.0  10.0  10.0\\n\",\n       \" 10.0  10.0  10.0\\n\",\n       \" 10.0  10.0  10.0\"\n      ]\n     },\n     \"execution_count\": 48,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Convert elements to a different data type\\n\",\n    \"convert.(Float16, array14)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Arrays can be concatenated.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 49,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"6-element Array{Int64,1}:\\n\",\n       \"  1\\n\",\n       \"  2\\n\",\n       \"  3\\n\",\n       \" 10\\n\",\n       \" 20\\n\",\n       \" 30\"\n      ]\n     },\n     \"execution_count\": 49,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Concatenate arrays along rows (makes rows)\\n\",\n    \"array15 = [1, 2, 3]\\n\",\n    \"array16 = [10, 20, 30]\\n\",\n    \"cat(array15, array16, dims = 1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 50,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"6-element Array{Int64,1}:\\n\",\n       \"  1\\n\",\n       \"  2\\n\",\n       \"  3\\n\",\n       \" 10\\n\",\n       \" 20\\n\",\n       \" 30\"\n      ]\n     },\n     \"execution_count\": 50,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Same as above\\n\",\n    \"vcat(array15, array16)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 51,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×2 Array{Int64,2}:\\n\",\n       \" 1  10\\n\",\n       \" 2  20\\n\",\n       \" 3  30\"\n      ]\n     },\n     \"execution_count\": 51,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Concatenate arrays along columns (makes columns)\\n\",\n    \"cat(array15, array16, dims = 2)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 52,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×2 Array{Int64,2}:\\n\",\n       \" 1  10\\n\",\n       \" 2  20\\n\",\n       \" 3  30\"\n      ]\n     },\n     \"execution_count\": 52,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Same as above\\n\",\n    \"hcat(array15, array16)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Tuples\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Tuples are immutable collections.  Immutable refers to the fact that the values are set and cannot be changed.  This type is indicated by the use of parenthesis instead of square brackets.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 57,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(1, 2.0, π = 3.1415926535897..., 4, \\\"Julia\\\")\"\n      ]\n     },\n     \"execution_count\": 57,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Tuples with mixed types\\n\",\n    \"tuple1 = (1, 2., π, 4, \\\"Julia\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Let's check on the values and types of each element.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 58,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \" The value of the tuple at index number 1 is 1 and the type is Int64.\\n\",\n      \" The value of the tuple at index number 2 is 2.0 and the type is Float64.\\n\",\n      \" The value of the tuple at index number 3 is π = 3.1415926535897... and the type is Irrational{:π}.\\n\",\n      \" The value of the tuple at index number 4 is 4 and the type is Int64.\\n\",\n      \" The value of the tuple at index number 5 is Julia and the type is String.\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# For loop to look at value and type of each element\\n\",\n    \"for i in 1:length(tuple1)\\n\",\n    \"    println(\\\" The value of the tuple at index number $(i) is $(tuple1[i]) and the type is $(typeof(tuple1[i])).\\\")\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Tuples are useful as each elemnt can be named.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 59,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"1\"\n      ]\n     },\n     \"execution_count\": 59,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Each element can be named\\n\",\n    \"a, b, c, seven = (1, 3, 5, 7)\\n\",\n    \"a\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 60,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"7\"\n      ]\n     },\n     \"execution_count\": 60,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"seven\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"A range can be used to reverse the order of a tuple.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 61,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(\\\"Julia\\\", 4, π = 3.1415926535897..., 2.0, 1)\"\n      ]\n     },\n     \"execution_count\": 61,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Reverse order index (can be done with arrays too)\\n\",\n    \"tuple1[end:-1:1]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Arrays can be made up of elemnts of different length.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 62,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"((1, 2, 3), 1, 2, (3, 100, 1))\"\n      ]\n     },\n     \"execution_count\": 62,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Mixed length tuples\\n\",\n    \"tuple2 = ((1, 2, 3), 1, 2, (3, 100, 1))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 63,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(3, 100, 1)\"\n      ]\n     },\n     \"execution_count\": 63,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Element 4\\n\",\n    \"tuple2[4]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 64,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"100\"\n      ]\n     },\n     \"execution_count\": 64,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Element 2 in element 4\\n\",\n    \"tuple2[4][2]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Dictionaries\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Dictionaries are collection sof key-value pairs.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 65,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Dict{Int64,Int64} with 3 entries:\\n\",\n       \"  2 => 66\\n\",\n       \"  3 => 1\\n\",\n       \"  1 => 77\"\n      ]\n     },\n     \"execution_count\": 65,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 1 Example of a dictionary\\n\",\n    \"dictionary1 = Dict(1 => 77, 2 => 66, 3 => 1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"In the example above we have key-values of `1,2,3` and value-values of `77,66,1`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 66,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Dict{Int64,Int64} with 3 entries:\\n\",\n       \"  2 => 200\\n\",\n       \"  3 => 300\\n\",\n       \"  1 => 100\"\n      ]\n     },\n     \"execution_count\": 66,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# The => is shorthand for the Pair() function\\n\",\n    \"dictionary2 = Dict(Pair(1,100), Pair(2,200), Pair(3,300))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can specify the types used in a dict.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 67,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Dict{Any,Any} with 3 entries:\\n\",\n       \"  2 => 66\\n\",\n       \"  3 => \\\"three\\\"\\n\",\n       \"  1 => 77\"\n      ]\n     },\n     \"execution_count\": 67,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 2 Specifying types\\n\",\n    \"dictionary3 = Dict{Any, Any}(1 => 77, 2 => 66, 3 => \\\"three\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 68,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Dict{Any,Any} with 2 entries:\\n\",\n       \"  (2, 3) => \\\"hello\\\"\\n\",\n       \"  \\\"a\\\"    => 1\"\n      ]\n     },\n     \"execution_count\": 68,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# We can get a bit crazy\\n\",\n    \"dictionary4 = Dict{Any, Any}(\\\"a\\\" => 1, (2, 3) => \\\"hello\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"It is perhaps more useful to use symbols (colon symbol and a name) as key values.  We can then refer to the key-name when we want to inquire about its value.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 69,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"300\"\n      ]\n     },\n     \"execution_count\": 69,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Using symbols as keys\\n\",\n    \"dictionary5 = Dict(:A => 300, :B => 305, :C => 309)\\n\",\n    \"dictionary5[:A]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can check on the key-value pairs in a dictionary.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 70,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"true\"\n      ]\n     },\n     \"execution_count\": 70,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Using in() to check on key-value pairs\\n\",\n    \"in((:A => 300), dictionary5)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Change value using the key is easy to perform.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 71,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Dict{Symbol,Int64} with 3 entries:\\n\",\n       \"  :A => 300\\n\",\n       \"  :B => 305\\n\",\n       \"  :C => 1000\"\n      ]\n     },\n     \"execution_count\": 71,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Changing an existing value\\n\",\n    \"dictionary5[:C] = 1000\\n\",\n    \"dictionary5\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The `delete!()` function permanently deletes a key-value pair.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 72,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Dict{Symbol,Int64} with 2 entries:\\n\",\n       \"  :B => 305\\n\",\n       \"  :C => 1000\"\n      ]\n     },\n     \"execution_count\": 72,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Using the delete!() function\\n\",\n    \"delete!(dictionary5, :A)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can list both the keys and the values in a dictionary.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 73,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Base.KeySet for a Dict{Symbol,Int64} with 2 entries. Keys:\\n\",\n       \"  :B\\n\",\n       \"  :C\"\n      ]\n     },\n     \"execution_count\": 73,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# The keys of a dictionary\\n\",\n    \"keys(dictionary5)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 74,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Base.ValueIterator for a Dict{Symbol,Int64} with 2 entries. Values:\\n\",\n       \"  305\\n\",\n       \"  1000\"\n      ]\n     },\n     \"execution_count\": 74,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"values(dictionary5)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Through the use of iteration, we can get creative in the creation and interrogation of a dictionary.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 76,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Creating a dictionary with automatic keys\\n\",\n    \"procedure_vals = [\\\"Appendectomy\\\", \\\"Colectomy\\\", \\\"Cholecystectomy\\\"]\\n\",\n    \"procedure_dict = Dict{AbstractString,AbstractString}()  # An empty dictionary with types specified\\n\",\n    \"for (s, n) in enumerate(procedure_vals)\\n\",\n    \"    procedure_dict[\\\"x_$(s)\\\"] = n\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 77,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Dict{AbstractString,AbstractString} with 3 entries:\\n\",\n       \"  \\\"x_1\\\" => \\\"Appendectomy\\\"\\n\",\n       \"  \\\"x_2\\\" => \\\"Colectomy\\\"\\n\",\n       \"  \\\"x_3\\\" => \\\"Cholecystectomy\\\"\"\n      ]\n     },\n     \"execution_count\": 77,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"procedure_dict\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 78,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"x_1 is Appendectomy\\n\",\n      \"x_2 is Colectomy\\n\",\n      \"x_3 is Cholecystectomy\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# Iterating through a dictionary by key and value\\n\",\n    \"for (k, v) in procedure_dict\\n\",\n    \"    println(k, \\\" is \\\",v)\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Lastly, we can sort using iteration.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 79,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"a is 1\\n\",\n      \"b is 2\\n\",\n      \"c is 3\\n\",\n      \"d is 4\\n\",\n      \"e is 5\\n\",\n      \"f is 6\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# Sorting\\n\",\n    \"dictionary6 = Dict(\\\"a\\\"=> 1,\\\"b\\\"=>2 ,\\\"c\\\"=>3 ,\\\"d\\\"=>4 ,\\\"e\\\"=>5 ,\\\"f\\\"=>6)\\n\",\n    \"# Sorting using a for loop\\n\",\n    \"for k in sort(collect(keys(dictionary6)))\\n\",\n    \"    println(\\\"$(k) is $(dictionary6[k])\\\")\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Julia 1.0.3\",\n   \"language\": \"julia\",\n   \"name\": \"julia-1.0\"\n  },\n  \"language_info\": {\n   \"file_extension\": \".jl\",\n   \"mimetype\": \"application/julia\",\n   \"name\": \"julia\",\n   \"version\": \"1.0.3\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": ".ipynb_checkpoints/Week 3_Peer graded quiz on Types-checkpoint.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Peer-graded quiz for `Types`\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Please note that this notebook was created in Julia version 0.4.6.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### Answer the following questions by creating the appropriate code.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 1\\n\",\n    \"\\n\",\n    \"List the subtypes of the `Real` type.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Subtypes of Real\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 2\\n\",\n    \"\\n\",\n    \"Create a user-defined type called `MyFloat` with a single field called `x` that is of type `Float64`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Create a user-defined type called MyFloat with a single field called x of type Float64\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 3\\n\",\n    \"\\n\",\n    \"Instantiate the `MyFloat` type with a field values of $ 3 $.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Instantiate the MyFloat type with a field value of 3\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 4\\n\",\n    \"\\n\",\n    \"Create a user-defined parametrized type called `MyCube` with $ 3 $ fields called `h`, `w`, and `l`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Create a user-defined parametrized type called MyCube with $ 3 $ fields called h, w, and l.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 5\\n\",\n    \"\\n\",\n    \"Instantiate the type `MyCube` with $ 2 $ variables called `cube1` and `cube2`, i.e. `cube1 = MyCube(...`.  Pass the field values $ 2 $, $ 3 $, and $ 2 $ to `cube1` and $ 4 $, $ 3 $, and $ 2 $ to `cube2`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Create 2 instances of the MyCube type\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 6\\n\",\n    \"\\n\",\n    \"Change the `h` field value of `cube1` to $ 3 $.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Change the h filed value of cube1 to 3\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 7\\n\",\n    \"\\n\",\n    \"Import the `Base.log` function.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Import the Base.log function\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 8\\n\",\n    \"\\n\",\n    \"Create and external constructor that will specify the `log()` function for an instance of the `MyCube` type as the natural logarithm of the product of the values held in the fields `h`, `w`, and `l`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Create and external constructor for the natural logarithm of the volume of an instance of MyCube\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 9\\n\",\n    \"\\n\",\n    \"Calculate the `log()` of `cube1`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# The natural log of cube1\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 10\\n\",\n    \"\\n\",\n    \"Overload the methods of the `+()` function to add the individual field values of $ 2 $ instances of the `MyCube` type.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Overload the methods of the +() functions for the MyCube type\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 11\\n\",\n    \"\\n\",\n    \"Add `cube1` and `cube2`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Add cube1 and cube2\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"anaconda-cloud\": {},\n  \"kernelspec\": {\n   \"display_name\": \"Julia 0.4.6\",\n   \"language\": \"julia\",\n   \"name\": \"julia-0.4\"\n  },\n  \"language_info\": {\n   \"file_extension\": \".jl\",\n   \"mimetype\": \"application/julia\",\n   \"name\": \"julia\",\n   \"version\": \"0.4.6\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 0\n}\n"
  },
  {
    "path": ".ipynb_checkpoints/Week 4_Peer graded quiz on Gadfly-checkpoint.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Peer-graded quiz on Gadfly\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Please note that this notebook was created in Julia version 0.4.6.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### After importing `Gadfly` and `DataFrames`, answer the following questions by creating the appropriate code.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# using Gadfly, DataFrames;\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 1\\n\",\n    \"\\n\",\n    \"Create a DataFrame called `data` with column names `A`, `B`, `C`, and `D`.  Each column should have $ 30 $ values.\\n\",\n    \"\\n\",\n    \"- For column `A` generate $ 30 $ random values in the range $ 1 : 10 $\\n\",\n    \"- For column `B` generate $ 30 $ random values in the range $ 1 : 10 $\\n\",\n    \"- For column `C` generate $ 30 $ random values from the choices `P` and `Q`\\n\",\n    \"- For column `D` generate $ 30 $ random values from the choices `X`, `Y`, and `Z`\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Create the DataFrame called data\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 2\\n\",\n    \"\\n\",\n    \"Create a scatter plot from columns `A` and `B` using the point geometry.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 27,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Create a scatter plot using the point geometry\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 3\\n\",\n    \"\\n\",\n    \"Change the point marker color to `gray` and increase the size to `5px`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 28,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Change the point marker color to gray and the size to 5px\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 4\\n\",\n    \"\\n\",\n    \"Create a (simple) scatter plot using point geometry using values in columns `A` and `B`, but grouped by the unique elements found in column `C`.  Leave all other elements at their default values.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 29,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Create a scatter plot using point geometry from the values in columns A and B, grouped by column C\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 5\\n\",\n    \"\\n\",\n    \"Receate the plot in *Question 4*, but change the point marker size to `10px`, with colors `#AAAAAA` and `#777777`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 30,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Recreate the plot in Question 4 with point marker size 10px and colors #AAAAAA and #777777\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 6\\n\",\n    \"\\n\",\n    \"Create a box plot of the values in column `A` based on the unique values in column `D`.  Render the plot in `grey`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 31,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Create a grey box plot of the values in column A based on the unique values in columns D\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 7\\n\",\n    \"\\n\",\n    \"Recreate the plot in Question 6.  Increase the spacing to `50px` and add the plot title \\\"`My plot`\\\".\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 32,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"#  Recreate the plot in Question 6 with increased spacing (50px) and add the title My plot\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 8\\n\",\n    \"\\n\",\n    \"Recreate the plot in Question 7 but add a `ygroup` based on the unqiue values in column C.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 33,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Recreate the plot in Question 7 but add a ygroup based on the unique values in column C\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 9\\n\",\n    \"\\n\",\n    \"Add a new column called `E` and add $ 30 $ values from the standard normal distribution.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 34,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Add column E with 30 values form the standard normal distribution\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 10\\n\",\n    \"\\n\",\n    \"Create a density plot using the values in column `E` and draw a vertical line in `red` with size `2px` though the actual mean of the values in column `E`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 35,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Create a density plot from the values in column E and draw a 2px red vertical line through the actual mean\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"anaconda-cloud\": {},\n  \"kernelspec\": {\n   \"display_name\": \"Julia 0.4.6\",\n   \"language\": \"julia\",\n   \"name\": \"julia-0.4\"\n  },\n  \"language_info\": {\n   \"file_extension\": \".jl\",\n   \"mimetype\": \"application/julia\",\n   \"name\": \"julia\",\n   \"version\": \"0.4.6\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 0\n}\n"
  },
  {
    "path": ".ipynb_checkpoints/Week 4_Peer graded quiz on data-checkpoint.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Peer-graded quiz for data\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Please note that this notebook was created in Julia version 0.4.6.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### Import the following packages and create the DataFrame as indicated.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"WARNING: Method definition combinations(Any, Integer) in module Base at combinatorics.jl:182 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/combinations.jl:42.\\n\",\n      \"WARNING: Method definition permutations(Any) in module Base at combinatorics.jl:219 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/permutations.jl:24.\\n\",\n      \"WARNING: Method definition partitions(Integer) in module Base at combinatorics.jl:252 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/partitions.jl:26.\\n\",\n      \"WARNING: Method definition partitions(Integer, Integer) in module Base at combinatorics.jl:318 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/partitions.jl:93.\\n\",\n      \"WARNING: Method definition partitions(AbstractArray{T<:Any, 1}) in module Base at combinatorics.jl:380 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/partitions.jl:158.\\n\",\n      \"WARNING: Method definition partitions(AbstractArray{T<:Any, 1}, Int64) in module Base at combinatorics.jl:447 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/partitions.jl:228.\\n\",\n      \"WARNING: Method definition factorial(#T<:Integer, #T<:Integer) in module Base at combinatorics.jl:56 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/factorials.jl:18.\\n\",\n      \"WARNING: Method definition factorial(Integer, Integer) in module Base at combinatorics.jl:66 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/factorials.jl:28.\\n\",\n      \"WARNING: Method definition parity(AbstractArray{#T<:Integer, 1}) in module Base at combinatorics.jl:642 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/permutations.jl:221.\\n\",\n      \"WARNING: Method definition nthperm(AbstractArray{#T<:Integer, 1}) in module Base at combinatorics.jl:92 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/permutations.jl:161.\\n\",\n      \"WARNING: Method definition nthperm(AbstractArray{T<:Any, 1}, Integer) in module Base at combinatorics.jl:89 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/permutations.jl:157.\\n\",\n      \"WARNING: Method definition nthperm!(AbstractArray{T<:Any, 1}, Integer) in module Base at combinatorics.jl:70 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/permutations.jl:136.\\n\",\n      \"WARNING: Method definition prevprod(Array{Int64, 1}, Any) in module Base at combinatorics.jl:565 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/partitions.jl:354.\\n\",\n      \"WARNING: Method definition levicivita(AbstractArray{#T<:Integer, 1}) in module Base at combinatorics.jl:611 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/permutations.jl:188.\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"using DataFrames, Distributions, HypothesisTests;\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Plots.PlotlyJSBackend()\"\n      ]\n     },\n     \"execution_count\": 2,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"using Plots\\n\",\n    \"plotlyjs()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"WARNING: New definition \\n\",\n      \"    +(AbstractArray{T<:Any, 2}, WoodburyMatrices.SymWoodbury) at /Users/juanklopper/.julia/v0.4/WoodburyMatrices/src/SymWoodburyMatrices.jl:106\\n\",\n      \"is ambiguous with: \\n\",\n      \"    +(DataArrays.DataArray, AbstractArray) at /Users/juanklopper/.julia/v0.4/DataArrays/src/operators.jl:276.\\n\",\n      \"To fix, define \\n\",\n      \"    +(DataArrays.DataArray{T<:Any, 2}, WoodburyMatrices.SymWoodbury)\\n\",\n      \"before the new definition.\\n\",\n      \"WARNING: New definition \\n\",\n      \"    +(AbstractArray{T<:Any, 2}, WoodburyMatrices.SymWoodbury) at /Users/juanklopper/.julia/v0.4/WoodburyMatrices/src/SymWoodburyMatrices.jl:106\\n\",\n      \"is ambiguous with: \\n\",\n      \"    +(DataArrays.AbstractDataArray, AbstractArray) at /Users/juanklopper/.julia/v0.4/DataArrays/src/operators.jl:300.\\n\",\n      \"To fix, define \\n\",\n      \"    +(DataArrays.AbstractDataArray{T<:Any, 2}, WoodburyMatrices.SymWoodbury)\\n\",\n      \"before the new definition.\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"using StatPlots;\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"data = DataFrame(Subject = collect(1:90), Age = rand(18:60, 90), Variable1 = rand(Normal(100, 10), 90),\\n\",\n    \"Variable2 = rand(Chisq(5), 90), Variable3 = rand(Exponential(4), 90), Category1 = rand([\\\"X\\\", \\\"R\\\"], 90),\\n\",\n    \"Category2 = rand([\\\"I\\\", \\\"II\\\", \\\"III\\\", \\\"IV\\\"], 90),\\n\",\n    \"Category3 = rand([\\\"Improved\\\", \\\"Static\\\", \\\"Worsened\\\"], 90));\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### Answer the following questions by creating the appropriate code.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 1\\n\",\n    \"\\n\",\n    \"Use the appropriate function from the `DataFrames` to describe the `Variable1` column.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Describe the values in Variable1\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 2\\n\",\n    \"\\n\",\n    \"Use the appropriate function from the `DataFrames` package to list how many unique values there are in the `Category1` column.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# How many unique value are there in the Category1 column?\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 3\\n\",\n    \"\\n\",\n    \"Plot a histogram of the values in `Variable3` using 10 bins.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Histogram of Variable3\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 4\\n\",\n    \"\\n\",\n    \"Create two new DataFrames named `X` and `R` such that each of these sub-DataFrames only have the corresponding data point values in the `Category1` column, i.e. `X = ...`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Create three new sub-DataFrames based on the unique values in Category1\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 5\\n\",\n    \"\\n\",\n    \"Use the `EqualVarianceTTest()` from the `HypothesisTests` package to perform a *t*-test comparing the values in `Variable1` for the null hypothesis stating that there is no difference between the two groups.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# t-Test comparing Variable1 values between groups X and R\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 6\\n\",\n    \"\\n\",\n    \"Create a scatter plot for `Variable1` and `Variable2` values grouped by `Category1`.  Make the title of the plot *My scatter plot*.  The markers should be of opacity $ 0.5 $ and size $ 10 $.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Scatter plot of Variable1 against Variable2 grouped by Category1 with maker opacity 0.5 and size 10\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 7\\n\",\n    \"\\n\",\n    \"Create a sub-DataFrame called `worsened` including only rows indicating `Worsened` in the `Category3` column, i.e. `worsened = ...`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Create a sub-DataFrame for patients that have worsened according to Category3 values\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 8\\n\",\n    \"\\n\",\n    \"Calculate the mean and standard deviation of `Variable1` values for patients who have `Worsened` as computer variables `meanw` and `stdw`, i.e. `meanw = ....`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Mean of Variable1 for patients that have worsened\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 9\\n\",\n    \"\\n\",\n    \"Create a plot of the theoretical distribution using the values for `meanw` and `stdw`.  State the `label` value as *Distribution* and provide a unique title to you plot.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Create a theoretical distribution plot with meanw and stdw\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 10\\n\",\n    \"\\n\",\n    \"Create a **Plotly** account and sign in.  Return to your notebook and upload the image in *Question 10* to the **Plotly** cloud for editing.  Save the plot by hitting the *Save* button.  Share the link to the plot by copying the *share link* in a Markdown cell.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"anaconda-cloud\": {},\n  \"kernelspec\": {\n   \"display_name\": \"Julia 0.4.6\",\n   \"language\": \"julia\",\n   \"name\": \"julia-0.4\"\n  },\n  \"language_info\": {\n   \"file_extension\": \".jl\",\n   \"mimetype\": \"application/julia\",\n   \"name\": \"julia\",\n   \"version\": \"0.4.6\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 0\n}\n"
  },
  {
    "path": ".ipynb_checkpoints/Week3_Honors1-Types-checkpoint.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\n\",\n       \"\\n\",\n       \"<style>\\n\",\n       \"\\n\",\n       \"@font-face {\\n\",\n       \"    font-family: \\\"Computer Modern\\\";\\n\",\n       \"    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"#notebook_panel { /* main background */\\n\",\n       \"    background: #ddd;\\n\",\n       \"    color: #000000;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"/* Formatting for header cells */\\n\",\n       \".text_cell_render h1 {\\n\",\n       \"    font-family: 'Philosopher', sans-serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 2.2em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(0, 80, 120);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \".text_cell_render h2 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 1.9em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(200,100,0);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \"\\n\",\n       \".text_cell_render h3 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    margin-top:12px;\\n\",\n       \"    margin-bottom: 3px;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    color: rgb(94,127,192);\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h4 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h5 {\\n\",\n       \"    font-family: 'Alegreya Sans', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 16pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    margin-bottom: .1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h6 {\\n\",\n       \"    font-family: 'PT Mono', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 10pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    margin-bottom: 1px;\\n\",\n       \"    margin-top: 1px;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".CodeMirror{\\n\",\n       \"        font-family: \\\"PT Mono\\\";\\n\",\n       \"        font-size: 100%;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"</style>\\n\",\n       \"\\n\"\n      ],\n      \"text/plain\": [\n       \"HTML{ASCIIString}(\\\"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\\\n\\\\n<style>\\\\n\\\\n@font-face {\\\\n    font-family: \\\\\\\"Computer Modern\\\\\\\";\\\\n    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\\\n}\\\\n\\\\n#notebook_panel { /* main background */\\\\n    background: #ddd;\\\\n    color: #000000;\\\\n}\\\\n\\\\n\\\\n\\\\n/* Formatting for header cells */\\\\n.text_cell_render h1 {\\\\n    font-family: 'Philosopher', sans-serif;\\\\n    font-weight: 400;\\\\n    font-size: 2.2em;\\\\n    line-height: 100%;\\\\n    color: rgb(0, 80, 120);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n.text_cell_render h2 {\\\\n    font-family: 'Philosopher', serif;\\\\n    font-weight: 400;\\\\n    font-size: 1.9em;\\\\n    line-height: 100%;\\\\n    color: rgb(200,100,0);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n\\\\n.text_cell_render h3 {\\\\n    font-family: 'Philosopher', serif;\\\\n    margin-top:12px;\\\\n    margin-bottom: 3px;\\\\n    font-style: italic;\\\\n    color: rgb(94,127,192);\\\\n}\\\\n\\\\n.text_cell_render h4 {\\\\n    font-family: 'Philosopher', serif;\\\\n}\\\\n\\\\n.text_cell_render h5 {\\\\n    font-family: 'Alegreya Sans', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 16pt;\\\\n    color: grey;\\\\n    font-style: italic;\\\\n    margin-bottom: .1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\n\\\\n.text_cell_render h6 {\\\\n    font-family: 'PT Mono', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 10pt;\\\\n    color: grey;\\\\n    margin-bottom: 1px;\\\\n    margin-top: 1px;\\\\n}\\\\n\\\\n.CodeMirror{\\\\n        font-family: \\\\\\\"PT Mono\\\\\\\";\\\\n        font-size: 100%;\\\\n}\\\\n\\\\n</style>\\\\n\\\\n\\\")\"\n      ]\n     },\n     \"execution_count\": 1,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Setting up a custom stylesheet in IJulia\\n\",\n    \"file = open(\\\"style.css\\\") # A .css file in the same folder as this notebook file\\n\",\n    \"styl = readall(file) # Read the file\\n\",\n    \"HTML(\\\"$styl\\\") # Output as HTML\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Types\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>In this lesson</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"- [Introduction](#Introduction)\\n\",\n    \"- [Importing the packages for this lesson](#Importing-the-packages-for-this-lesson)\\n\",\n    \"- [Outcomes](#Outcomes)\\n\",\n    \"- [The type system in Julia](#The-type-system-in-Julia)\\n\",\n    \"- [Type creation](#Type-creation)\\n\",\n    \"- [Conversion and promotion](#Convertion-and-promotion)\\n\",\n    \"- [Parametrizing a type](#Parametrizing-a-type)\\n\",\n    \"- [The equality of values](#The-equality-of-values)\\n\",\n    \"- [Defining methods for functions that will use user-types](#Defining-methods-for-functions-that-will-use-user-types)\\n\",\n    \"- [Constraining field values](#Constraining-field-values)\\n\",\n    \"- [More complex parameters](#More-complex-parameters)\\n\",\n    \"- [Screen output of a user-defined type](#Screen-output-of-a-user-defined-type)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>Introduction</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"A computer variable, which is a space in memory, holds values of different types, i.e. integers, floating point values, and strings.  In some languages the type of the value to be held inside of a variable must be explicitely declared.  These languages are termed *statically typed*.  In *dynamically typed* languages nothing is known about the type of the value held inside the variable until runtime.  Being able to write code operating on different types is termed *polymorphism*.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Julia is a dynamically typed language, yet it is possible to declare a type for values as well.  Declaring a type allows for code that is clear to understand.  As an assertion it can help to confirm that your code is working as expected.  It can also allow for faster code execution by providing the compiler with extra information.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>Outcomes</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"source\": [\n    \"After successfully completing this lecture, you will be able to:\\n\",\n    \"\\n\",\n    \"- Understand the Julia type system\\n\",\n    \"- Create your own user-defined types\\n\",\n    \"- Parametrize your types\\n\",\n    \"- Overload methods for Julia functions so that they can use your types\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>The type system in Julia</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Julia holds a type hierarchy that flows like the branches of a tree.  Right at the top we have a type called `Any`.  All types are subtypes of this type.  Right at the final tip of the branches we have concrete types.  They can hold values.  Supertypes of these concrete types are called abtsract types and they cannot hold values, i.e. we cannot create an instance of an abstract type.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can use Julia to see if types are subtypes of a supertype.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"true\"\n      ]\n     },\n     \"execution_count\": 2,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Is Number a subtype of Any?\\n\",\n    \"Number <: Any\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"true\"\n      ]\n     },\n     \"execution_count\": 3,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Is Float 64 a subtype of AbstractFloat?\\n\",\n    \"Float64 <: AbstractFloat\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"238-element Array{Any,1}:\\n\",\n       \" AbstractArray{T,N}                        \\n\",\n       \" AbstractChannel                           \\n\",\n       \" AbstractRNG                               \\n\",\n       \" AbstractString                            \\n\",\n       \" Any                                       \\n\",\n       \" Associative{K,V}                          \\n\",\n       \" Base.AbstractCmd                          \\n\",\n       \" Base.AbstractMsg                          \\n\",\n       \" Base.AbstractZipIterator                  \\n\",\n       \" Base.Cartesian.LReplace{S<:AbstractString}\\n\",\n       \" Base.Combinations{T}                      \\n\",\n       \" Base.Count{S<:Number}                     \\n\",\n       \" Base.Cycle{I}                             \\n\",\n       \" ⋮                                         \\n\",\n       \" TypeVar                                   \\n\",\n       \" Type{T}                                   \\n\",\n       \" UniformScaling{T<:Number}                 \\n\",\n       \" Val{T}                                    \\n\",\n       \" Vararg{T}                                 \\n\",\n       \" VersionNumber                             \\n\",\n       \" Void                                      \\n\",\n       \" WeakRef                                   \\n\",\n       \" WorkerConfig                              \\n\",\n       \" ZMQ.Context                               \\n\",\n       \" ZMQ.MsgPadding                            \\n\",\n       \" ZMQ.Socket                                \"\n      ]\n     },\n     \"execution_count\": 4,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# The subtypes of Any\\n\",\n    \"subtypes(Any)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"8-element Array{Any,1}:\\n\",\n       \" Base.SubstitutionString{T<:AbstractString}\\n\",\n       \" DirectIndexString                         \\n\",\n       \" RepString                                 \\n\",\n       \" RevString{T<:AbstractString}              \\n\",\n       \" RopeString                                \\n\",\n       \" SubString{T<:AbstractString}              \\n\",\n       \" UTF16String                               \\n\",\n       \" UTF8String                                \"\n      ]\n     },\n     \"execution_count\": 5,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Subtypes of AbstractString\\n\",\n    \"subtypes(AbstractString)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"2-element Array{Any,1}:\\n\",\n       \" Complex{T<:Real}\\n\",\n       \" Real            \"\n      ]\n     },\n     \"execution_count\": 6,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Subtypes of Number\\n\",\n    \"subtypes(Number)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"4-element Array{Any,1}:\\n\",\n       \" AbstractFloat       \\n\",\n       \" Integer             \\n\",\n       \" Irrational{sym}     \\n\",\n       \" Rational{T<:Integer}\"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Subtypes of Real\\n\",\n    \"subtypes(Real)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"4-element Array{Any,1}:\\n\",\n       \" BigFloat\\n\",\n       \" Float16 \\n\",\n       \" Float32 \\n\",\n       \" Float64 \"\n      ]\n     },\n     \"execution_count\": 8,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Subtypes of AbstractFloat\\n\",\n    \"subtypes(AbstractFloat)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"4-element Array{Any,1}:\\n\",\n       \" BigInt  \\n\",\n       \" Bool    \\n\",\n       \" Signed  \\n\",\n       \" Unsigned\"\n      ]\n     },\n     \"execution_count\": 9,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Subtypes of Integer\\n\",\n    \"subtypes(Integer)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"5-element Array{Any,1}:\\n\",\n       \" Int128\\n\",\n       \" Int16 \\n\",\n       \" Int32 \\n\",\n       \" Int64 \\n\",\n       \" Int8  \"\n      ]\n     },\n     \"execution_count\": 10,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Subtypes of Signed\\n\",\n    \"subtypes(Signed)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>Declaring a type</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"A type is declared by the double colon, `::`, sign.  To the left we place the value (or placeholder for a variable, i.e. a variable name) and to the right the actual type.  In the example below we want to express the fact that the value $ 2 + 2 $ is an instance of a 64-bit integer.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"4\"\n      ]\n     },\n     \"execution_count\": 11,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"(2 + 2)::Int64\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"If we typed `(2 + 2)::Float64` we would get the following error:\\n\",\n    \"```\\n\",\n    \"LoadError: TypeError: typeassert: expected Float64, got Int64\\n\",\n    \"while loading In[3], in expression starting on line 1\\n\",\n    \"```\\n\",\n    \"We used the declaration of a type as an assertion, which allowed us to see that there was something wrong with our code.  We can imagine a program where the `+()` (or a more complicated user-defined) function is called and we need the arguments to be of a certain type.  An error such as the one above can give us information about what went wrong.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Declaring a type of a local variable (inside of a function), we state that the type should always remain the same.  This is more like what would happen in a statically typed language.  It is really helpful if we want an error to be thrown should the type of a variable be changed by another part of our code.  This can lead to type instability.  It can really impact the speed of execution.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"static_local_variable (generic function with 1 method)\"\n      ]\n     },\n     \"execution_count\": 12,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Creating a function with a local variable\\n\",\n    \"function static_local_variable()\\n\",\n    \"    v::Int16 = 42\\n\",\n    \"    return v\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"42\"\n      ]\n     },\n     \"execution_count\": 13,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Calling the function\\n\",\n    \"static_local_variable()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Int16\"\n      ]\n     },\n     \"execution_count\": 14,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Checking the type of the answer just give\\n\",\n    \"typeof(ans)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Remember that `v` is local to the function.  If we try and look at it value by typing `v`, we would get the following error:\\n\",\n    \"```\\n\",\n    \"LoadError: UndefVarError: v not defined\\n\",\n    \"while loading In[7], in expression starting on line 1\\n\",\n    \"```\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Now that we know something about declaring a type, let's look at creating our own types.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>Type creation</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"As mentioned, we can create our own types.  Consider a Cartesian coordinate system along two perpendicular axes, say $ x $ and $ y $.  A vector in the plane can be represented as a type.  The keyword we use to create a type is `type`.  If we want instances of our type to be immutable, we use the keyword `immutable`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Creating a concrete type called Vector_2D\\n\",\n    \"type Vector_2D\\n\",\n    \"    x::Float64 # x is a fieldname of the type and has an optional type\\n\",\n    \"    y::Float64 # y is a fieldname of the type and has an optional type\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"This is actually a composite type, since we have fields.  For a type that is non-composite we can imagine a simple wrapper around an already defined type, such as we do below.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# A non-composite type\\n\",\n    \"type NonComposite\\n\",\n    \"    x::Float64\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"NonComposite(42.0)\"\n      ]\n     },\n     \"execution_count\": 17,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"my_non_composite = NonComposite(42)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"NonComposite\"\n      ]\n     },\n     \"execution_count\": 18,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Type\\n\",\n    \"typeof(ans)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Back to the more exciting composite types.  We can now instantiate the concrete type `Vector_2D`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Vector_2D(2.0,2.0)\"\n      ]\n     },\n     \"execution_count\": 19,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"vector_1 = Vector_2D(2, 2)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Vector_2D\"\n      ]\n     },\n     \"execution_count\": 20,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# The type of vector_1\\n\",\n    \"typeof(vector_1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Notice how we get floating point values even though we gave two integer values.  The `convert()` functions was created to change allowable values to 64-bit floating point values.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Also notice that it looks like we called a function when we typed `Vector_2D(2, 2)`.  When we define a type, constructors are created.  They allow us to create an instance of that type (sometimes referred to as an *object* of that type).\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"As with functions, we can access the methods that were created with the type.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"4-element Array{Any,1}:\\n\",\n       \" call(::Type{Vector_2D}, x::Float64, y::Float64) at In[15]:3\\n\",\n       \" call(::Type{Vector_2D}, x, y) at In[15]:3                  \\n\",\n       \" call{T}(::Type{T}, arg) at essentials.jl:56                \\n\",\n       \" call{T}(::Type{T}, args...) at essentials.jl:57            \"\n      ]\n     },\n     \"execution_count\": 21,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"methods(Vector_2D)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can also access the fieldnames and their values.  They are mutable, i.e. we can pass new values to them.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"2-element Array{Symbol,1}:\\n\",\n       \" :x\\n\",\n       \" :y\"\n      ]\n     },\n     \"execution_count\": 23,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# The available names (fields, fieldnames)\\n\",\n    \"# Note that they are of type Symbol\\n\",\n    \"fieldnames(Vector_2D)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"2.0\"\n      ]\n     },\n     \"execution_count\": 24,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Getting the value of the :x field\\n\",\n    \"vector_1.x\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"2.0\"\n      ]\n     },\n     \"execution_count\": 25,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Alternative syntax using the field's symbol representation\\n\",\n    \"getfield(vector_1, :x)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"2.0\"\n      ]\n     },\n     \"execution_count\": 26,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Another alternative notation using the index number of the fields\\n\",\n    \"getfield(vector_1, 1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 27,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3.0\"\n      ]\n     },\n     \"execution_count\": 27,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"vector_1.x = 3\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 28,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Vector_2D(3.0,2.0)\"\n      ]\n     },\n     \"execution_count\": 28,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"vector_1\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Another way to pass a value to a fieldname in a type is the `setfield()` function.  We have to use the correct type for the value.  If we use an integer such as `setfield!(vector_1, :x, 4)` we would get the follwoing error:\\n\",\n    \"```\\n\",\n    \"LoadError: TypeError: setfield!: expected Float64, got Int64\\n\",\n    \"while loading In[25], in expression starting on line 1\\n\",\n    \"```\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 29,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"4.0\"\n      ]\n     },\n     \"execution_count\": 29,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Now we have to use a floating point value\\n\",\n    \"setfield!(vector_1, :x, 4.0)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 30,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Vector_2D(4.0,2.0)\"\n      ]\n     },\n     \"execution_count\": 30,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# vector_1 has been changed\\n\",\n    \"vector_1\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>Convertion and promotion</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Before we go any further, we must have a look behind the scenes.  Above we saw that an integer was converted to a floating point value as specified for the fields of our new type.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 30,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"10.0\"\n      ]\n     },\n     \"execution_count\": 30,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Using the convert function\\n\",\n    \"convert(Float64, 10)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"If precision is lost, convertion will result in an error.  For instance, `convert(Int16, 10.1)` will return:\\n\",\n    \"```\\n\",\n    \"adError: InexactError()\\n\",\n    \"while loading In[20], in expression starting on line 1\\n\",\n    \"```\\n\",\n    \"Using `convert(Int16, 10.0)` will return a value of $ 10 $, though.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Julia has a type promotion system that will try to incorporate values into a single type.  If we pass an integer and a floating point value, the integer will be promoted to a floating point value.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 31,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(10.0,10.0)\"\n      ]\n     },\n     \"execution_count\": 31,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"promote(10, 10.0)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 32,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Int64\"\n      ]\n     },\n     \"execution_count\": 32,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"typeof(10)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 33,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Float64\"\n      ]\n     },\n     \"execution_count\": 33,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"typeof(10.0)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"This promotion to a common type lifts the lid on multiple dispatch when a function is called with unspecified argument types (i.e. `Any`).\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>Parametrizing a type</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"When creating a user type, we need not specify the type explicitely.  We could use a parameter.  Have a look at the example below.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 34,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"type Vector_3D{T}\\n\",\n    \"    x::T\\n\",\n    \"    y::T\\n\",\n    \"    z::T\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We use $ T $ as a parameter placeholder.  When we instantiate the type we can use any appropriate type, as long as all the fields values are of the same type.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 35,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Vector_3D{Int64}(10,12,8)\"\n      ]\n     },\n     \"execution_count\": 35,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Using 64 bit integers\\n\",\n    \"vector_2 = Vector_3D(10, 12, 8)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"If we were to execute `vector_2 = Vector_3D(10.1, 10, 8)`, we would get the following error:\\n\",\n    \"```\\n\",\n    \"LoadError: MethodError: `convert` has no method matching convert(::Type{Vector_3D{T}}, ::Float64, ::Int64, ::Int64)\\n\",\n    \"This may have arisen from a call to the constructor Vector_3D{T}(...),\\n\",\n    \"since type constructors fall back to convert methods.\\n\",\n    \"Closest candidates are:\\n\",\n    \"  Vector_3D{T}(::T, !Matched::T, !Matched::T)\\n\",\n    \"  call{T}(::Type{T}, ::Any)\\n\",\n    \"  convert{T}(::Type{T}, !Matched::T)\\n\",\n    \"while loading In[28], in expression starting on line 1\\n\",\n    \"```\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can constrain the parametric type.  Below we allow all subtypes of of the abstract type `Real`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 36,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"type Vector_3D_Real{T <: Real}\\n\",\n    \"    x::T\\n\",\n    \"    y::T\\n\",\n    \"    z::T\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"As an aside, we cannot redefine a type.  If we would use:\\n\",\n    \"```\\n\",\n    \"type Vector_3D{T}\\n\",\n    \"    x::T\\n\",\n    \"    y::T\\n\",\n    \"    z::T\\n\",\n    \"end\\n\",\n    \"```\\n\",\n    \"we would get the error:\\n\",\n    \"```\\n\",\n    \"LoadError: invalid redefinition of constant Vector_3D\\n\",\n    \"while loading In[98], in expression starting on line 1\\n\",\n    \"```\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 37,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Vector_3D_Real{Int64}(3,3,3)\"\n      ]\n     },\n     \"execution_count\": 37,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Creating a new instance\\n\",\n    \"vector_3 = Vector_3D_Real(3, 3, 3)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>The equality of values</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"When are two values equal?  We use a double equal sign to return a Boolean value.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 38,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"true\"\n      ]\n     },\n     \"execution_count\": 38,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Using the functional notation\\n\",\n    \"==(5, 5.0)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Numbers are immutable and are compared at the bit level.  This includes their types.  We can use the `===` sign or the `is()` function to check for equality.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 39,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"false\"\n      ]\n     },\n     \"execution_count\": 39,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"is(5, 5.0)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Where does this leave our user-defined types?  We will see below that the address in memory is checked when dealing with more complex objects such as our user-defined, composite types.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 40,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Vector_2D(1.0,1.0)\"\n      ]\n     },\n     \"execution_count\": 40,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"vector_a = Vector_2D(1.0, 1.0)\\n\",\n    \"vector_b = Vector_2D(1.0, 1.0)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 41,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"false\"\n      ]\n     },\n     \"execution_count\": 41,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"is(vector_a, vector_b)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>Defining methods for functions that will use user-types</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The summation function, `+()` has methods for adding different types.  What if we want to add two instances of our `Vector_2D` user-type?  If we were to add `vector_a` to `vector_b` we would get the following error:\\n\",\n    \"```\\n\",\n    \"LoadError: MethodError: `+` has no method matching +(::Vector_2D, ::Vector_2D)\\n\",\n    \"Closest candidates are:\\n\",\n    \"  +(::Any, ::Any, !Matched::Any, !Matched::Any...)\\n\",\n    \"```\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 43,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"171 methods for generic function <b>+</b>:<ul><li> +(x::<b>Bool</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/bool.jl#L33\\\" target=\\\"_blank\\\">bool.jl:33</a><li> +(x::<b>Bool</b>, y::<b>Bool</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/bool.jl#L36\\\" target=\\\"_blank\\\">bool.jl:36</a><li> +(y::<b>AbstractFloat</b>, x::<b>Bool</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/bool.jl#L46\\\" target=\\\"_blank\\\">bool.jl:46</a><li> +(x::<b>Int64</b>, y::<b>Int64</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/int.jl#L8\\\" target=\\\"_blank\\\">int.jl:8</a><li> +(x::<b>Int8</b>, y::<b>Int8</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/int.jl#L16\\\" target=\\\"_blank\\\">int.jl:16</a><li> +(x::<b>UInt8</b>, y::<b>UInt8</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/int.jl#L16\\\" target=\\\"_blank\\\">int.jl:16</a><li> +(x::<b>Int16</b>, y::<b>Int16</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/int.jl#L16\\\" target=\\\"_blank\\\">int.jl:16</a><li> +(x::<b>UInt16</b>, y::<b>UInt16</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/int.jl#L16\\\" target=\\\"_blank\\\">int.jl:16</a><li> +(x::<b>Int32</b>, y::<b>Int32</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/int.jl#L16\\\" target=\\\"_blank\\\">int.jl:16</a><li> +(x::<b>UInt32</b>, y::<b>UInt32</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/int.jl#L16\\\" target=\\\"_blank\\\">int.jl:16</a><li> +(x::<b>UInt64</b>, y::<b>UInt64</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/int.jl#L16\\\" target=\\\"_blank\\\">int.jl:16</a><li> +(x::<b>Int128</b>, y::<b>Int128</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/int.jl#L16\\\" target=\\\"_blank\\\">int.jl:16</a><li> +(x::<b>UInt128</b>, y::<b>UInt128</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/int.jl#L16\\\" target=\\\"_blank\\\">int.jl:16</a><li> +(x::<b>Integer</b>, y::<b>Ptr{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/pointer.jl#L77\\\" target=\\\"_blank\\\">pointer.jl:77</a><li> +(x::<b>Float32</b>, y::<b>Float32</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/float.jl#L207\\\" target=\\\"_blank\\\">float.jl:207</a><li> +(x::<b>Float64</b>, y::<b>Float64</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/float.jl#L208\\\" target=\\\"_blank\\\">float.jl:208</a><li> +(z::<b>Complex{T<:Real}</b>, w::<b>Complex{T<:Real}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/complex.jl#L111\\\" target=\\\"_blank\\\">complex.jl:111</a><li> +(x::<b>Bool</b>, z::<b>Complex{Bool}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/complex.jl#L118\\\" target=\\\"_blank\\\">complex.jl:118</a><li> +(z::<b>Complex{Bool}</b>, x::<b>Bool</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/complex.jl#L119\\\" target=\\\"_blank\\\">complex.jl:119</a><li> +(x::<b>Bool</b>, z::<b>Complex{T<:Real}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/complex.jl#L125\\\" target=\\\"_blank\\\">complex.jl:125</a><li> +(z::<b>Complex{T<:Real}</b>, x::<b>Bool</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/complex.jl#L126\\\" target=\\\"_blank\\\">complex.jl:126</a><li> +(x::<b>Real</b>, z::<b>Complex{Bool}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/complex.jl#L132\\\" target=\\\"_blank\\\">complex.jl:132</a><li> +(z::<b>Complex{Bool}</b>, x::<b>Real</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/complex.jl#L133\\\" target=\\\"_blank\\\">complex.jl:133</a><li> +(x::<b>Real</b>, z::<b>Complex{T<:Real}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/complex.jl#L144\\\" target=\\\"_blank\\\">complex.jl:144</a><li> +(z::<b>Complex{T<:Real}</b>, x::<b>Real</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/complex.jl#L145\\\" target=\\\"_blank\\\">complex.jl:145</a><li> +(x::<b>Rational{T<:Integer}</b>, y::<b>Rational{T<:Integer}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/rational.jl#L179\\\" target=\\\"_blank\\\">rational.jl:179</a><li> +(x::<b>Bool</b>, A::<b>AbstractArray{Bool,N}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/arraymath.jl#L136\\\" target=\\\"_blank\\\">arraymath.jl:136</a><li> +(x::<b>Integer</b>, y::<b>Char</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/char.jl#L43\\\" target=\\\"_blank\\\">char.jl:43</a><li> +(a::<b>Float16</b>, b::<b>Float16</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/float16.jl#L136\\\" target=\\\"_blank\\\">float16.jl:136</a><li> +(x::<b>BigInt</b>, y::<b>BigInt</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/gmp.jl#L256\\\" target=\\\"_blank\\\">gmp.jl:256</a><li> +(a::<b>BigInt</b>, b::<b>BigInt</b>, c::<b>BigInt</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/gmp.jl#L279\\\" target=\\\"_blank\\\">gmp.jl:279</a><li> +(a::<b>BigInt</b>, b::<b>BigInt</b>, c::<b>BigInt</b>, d::<b>BigInt</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/gmp.jl#L285\\\" target=\\\"_blank\\\">gmp.jl:285</a><li> +(a::<b>BigInt</b>, b::<b>BigInt</b>, c::<b>BigInt</b>, d::<b>BigInt</b>, e::<b>BigInt</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/gmp.jl#L292\\\" target=\\\"_blank\\\">gmp.jl:292</a><li> +(x::<b>BigInt</b>, c::<b>Union{UInt16,UInt32,UInt64,UInt8}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/gmp.jl#L304\\\" target=\\\"_blank\\\">gmp.jl:304</a><li> +(c::<b>Union{UInt16,UInt32,UInt64,UInt8}</b>, x::<b>BigInt</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/gmp.jl#L308\\\" target=\\\"_blank\\\">gmp.jl:308</a><li> +(x::<b>BigInt</b>, c::<b>Union{Int16,Int32,Int64,Int8}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/gmp.jl#L320\\\" target=\\\"_blank\\\">gmp.jl:320</a><li> +(c::<b>Union{Int16,Int32,Int64,Int8}</b>, x::<b>BigInt</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/gmp.jl#L321\\\" target=\\\"_blank\\\">gmp.jl:321</a><li> +(x::<b>BigFloat</b>, y::<b>BigFloat</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/mpfr.jl#L208\\\" target=\\\"_blank\\\">mpfr.jl:208</a><li> +(x::<b>BigFloat</b>, c::<b>Union{UInt16,UInt32,UInt64,UInt8}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/mpfr.jl#L215\\\" target=\\\"_blank\\\">mpfr.jl:215</a><li> +(c::<b>Union{UInt16,UInt32,UInt64,UInt8}</b>, x::<b>BigFloat</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/mpfr.jl#L219\\\" target=\\\"_blank\\\">mpfr.jl:219</a><li> +(x::<b>BigFloat</b>, c::<b>Union{Int16,Int32,Int64,Int8}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/mpfr.jl#L223\\\" target=\\\"_blank\\\">mpfr.jl:223</a><li> +(c::<b>Union{Int16,Int32,Int64,Int8}</b>, x::<b>BigFloat</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/mpfr.jl#L227\\\" target=\\\"_blank\\\">mpfr.jl:227</a><li> +(x::<b>BigFloat</b>, c::<b>Union{Float16,Float32,Float64}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/mpfr.jl#L231\\\" target=\\\"_blank\\\">mpfr.jl:231</a><li> +(c::<b>Union{Float16,Float32,Float64}</b>, x::<b>BigFloat</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/mpfr.jl#L235\\\" target=\\\"_blank\\\">mpfr.jl:235</a><li> +(x::<b>BigFloat</b>, c::<b>BigInt</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/mpfr.jl#L239\\\" target=\\\"_blank\\\">mpfr.jl:239</a><li> +(c::<b>BigInt</b>, x::<b>BigFloat</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/mpfr.jl#L243\\\" target=\\\"_blank\\\">mpfr.jl:243</a><li> +(a::<b>BigFloat</b>, b::<b>BigFloat</b>, c::<b>BigFloat</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/mpfr.jl#L379\\\" target=\\\"_blank\\\">mpfr.jl:379</a><li> +(a::<b>BigFloat</b>, b::<b>BigFloat</b>, c::<b>BigFloat</b>, d::<b>BigFloat</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/mpfr.jl#L385\\\" target=\\\"_blank\\\">mpfr.jl:385</a><li> +(a::<b>BigFloat</b>, b::<b>BigFloat</b>, c::<b>BigFloat</b>, d::<b>BigFloat</b>, e::<b>BigFloat</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/mpfr.jl#L392\\\" target=\\\"_blank\\\">mpfr.jl:392</a><li> +(x::<b>Irrational{sym}</b>, y::<b>Irrational{sym}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/irrationals.jl#L72\\\" target=\\\"_blank\\\">irrationals.jl:72</a><li> +(x::<b>Number</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/operators.jl#L73\\\" target=\\\"_blank\\\">operators.jl:73</a><li> +<i>{T<:Number}</i>(x::<b>T<:Number</b>, y::<b>T<:Number</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/promotion.jl#L211\\\" target=\\\"_blank\\\">promotion.jl:211</a><li> +<i>{T<:AbstractFloat}</i>(x::<b>Bool</b>, y::<b>T<:AbstractFloat</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/bool.jl#L43\\\" target=\\\"_blank\\\">bool.jl:43</a><li> +(x::<b>Number</b>, y::<b>Number</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/promotion.jl#L167\\\" target=\\\"_blank\\\">promotion.jl:167</a><li> +(r1::<b>OrdinalRange{T,S}</b>, r2::<b>OrdinalRange{T,S}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/operators.jl#L330\\\" target=\\\"_blank\\\">operators.jl:330</a><li> +<i>{T<:AbstractFloat}</i>(r1::<b>FloatRange{T<:AbstractFloat}</b>, r2::<b>FloatRange{T<:AbstractFloat}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/operators.jl#L337\\\" target=\\\"_blank\\\">operators.jl:337</a><li> +<i>{T<:AbstractFloat}</i>(r1::<b>LinSpace{T<:AbstractFloat}</b>, r2::<b>LinSpace{T<:AbstractFloat}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/operators.jl#L356\\\" target=\\\"_blank\\\">operators.jl:356</a><li> +(r1::<b>Union{FloatRange{T<:AbstractFloat},LinSpace{T<:AbstractFloat},OrdinalRange{T,S}}</b>, r2::<b>Union{FloatRange{T<:AbstractFloat},LinSpace{T<:AbstractFloat},OrdinalRange{T,S}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/operators.jl#L369\\\" target=\\\"_blank\\\">operators.jl:369</a><li> +(x::<b>Ptr{T}</b>, y::<b>Integer</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/pointer.jl#L75\\\" target=\\\"_blank\\\">pointer.jl:75</a><li> +<i>{S,T}</i>(A::<b>Range{S}</b>, B::<b>Range{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/arraymath.jl#L69\\\" target=\\\"_blank\\\">arraymath.jl:69</a><li> +<i>{S,T}</i>(A::<b>Range{S}</b>, B::<b>AbstractArray{T,N}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/arraymath.jl#L87\\\" target=\\\"_blank\\\">arraymath.jl:87</a><li> +(A::<b>BitArray{N}</b>, B::<b>BitArray{N}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/bitarray.jl#L859\\\" target=\\\"_blank\\\">bitarray.jl:859</a><li> +<i>{T}</i>(B::<b>BitArray{2}</b>, J::<b>UniformScaling{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/uniformscaling.jl#L28\\\" target=\\\"_blank\\\">linalg/uniformscaling.jl:28</a><li> +(A::<b>Array{T,2}</b>, B::<b>Diagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L122\\\" target=\\\"_blank\\\">linalg/special.jl:122</a><li> +(A::<b>Array{T,2}</b>, B::<b>Bidiagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L122\\\" target=\\\"_blank\\\">linalg/special.jl:122</a><li> +(A::<b>Array{T,2}</b>, B::<b>Tridiagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L122\\\" target=\\\"_blank\\\">linalg/special.jl:122</a><li> +(A::<b>Array{T,2}</b>, B::<b>SymTridiagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L131\\\" target=\\\"_blank\\\">linalg/special.jl:131</a><li> +(A::<b>Array{T,2}</b>, B::<b>Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L159\\\" target=\\\"_blank\\\">linalg/special.jl:159</a><li> +(A::<b>Array{T,N}</b>, B::<b>SparseMatrixCSC{Tv,Ti<:Integer}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/sparse/sparsematrix.jl#L1019\\\" target=\\\"_blank\\\">sparse/sparsematrix.jl:1019</a><li> +<i>{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period}}</i>(x::<b>Union{DenseArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N},SubArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/periods.jl#L221\\\" target=\\\"_blank\\\">dates/periods.jl:221</a><li> +(A::<b>AbstractArray{Bool,N}</b>, x::<b>Bool</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/arraymath.jl#L135\\\" target=\\\"_blank\\\">arraymath.jl:135</a><li> +(A::<b>Union{DenseArray{Bool,N},SubArray{Bool,N,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}</b>, B::<b>Union{DenseArray{Bool,N},SubArray{Bool,N,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/arraymath.jl#L166\\\" target=\\\"_blank\\\">arraymath.jl:166</a><li> +(A::<b>SymTridiagonal{T}</b>, B::<b>SymTridiagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/tridiag.jl#L84\\\" target=\\\"_blank\\\">linalg/tridiag.jl:84</a><li> +(A::<b>Tridiagonal{T}</b>, B::<b>Tridiagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/tridiag.jl#L404\\\" target=\\\"_blank\\\">linalg/tridiag.jl:404</a><li> +(A::<b>UpperTriangular{T,S<:AbstractArray{T,2}}</b>, B::<b>UpperTriangular{T,S<:AbstractArray{T,2}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/triangular.jl#L347\\\" target=\\\"_blank\\\">linalg/triangular.jl:347</a><li> +(A::<b>LowerTriangular{T,S<:AbstractArray{T,2}}</b>, B::<b>LowerTriangular{T,S<:AbstractArray{T,2}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/triangular.jl#L348\\\" target=\\\"_blank\\\">linalg/triangular.jl:348</a><li> +(A::<b>UpperTriangular{T,S<:AbstractArray{T,2}}</b>, B::<b>Base.LinAlg.UnitUpperTriangular{T,S<:AbstractArray{T,2}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/triangular.jl#L349\\\" target=\\\"_blank\\\">linalg/triangular.jl:349</a><li> +(A::<b>LowerTriangular{T,S<:AbstractArray{T,2}}</b>, B::<b>Base.LinAlg.UnitLowerTriangular{T,S<:AbstractArray{T,2}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/triangular.jl#L350\\\" target=\\\"_blank\\\">linalg/triangular.jl:350</a><li> +(A::<b>Base.LinAlg.UnitUpperTriangular{T,S<:AbstractArray{T,2}}</b>, B::<b>UpperTriangular{T,S<:AbstractArray{T,2}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/triangular.jl#L351\\\" target=\\\"_blank\\\">linalg/triangular.jl:351</a><li> +(A::<b>Base.LinAlg.UnitLowerTriangular{T,S<:AbstractArray{T,2}}</b>, B::<b>LowerTriangular{T,S<:AbstractArray{T,2}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/triangular.jl#L352\\\" target=\\\"_blank\\\">linalg/triangular.jl:352</a><li> +(A::<b>Base.LinAlg.UnitUpperTriangular{T,S<:AbstractArray{T,2}}</b>, B::<b>Base.LinAlg.UnitUpperTriangular{T,S<:AbstractArray{T,2}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/triangular.jl#L353\\\" target=\\\"_blank\\\">linalg/triangular.jl:353</a><li> +(A::<b>Base.LinAlg.UnitLowerTriangular{T,S<:AbstractArray{T,2}}</b>, B::<b>Base.LinAlg.UnitLowerTriangular{T,S<:AbstractArray{T,2}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/triangular.jl#L354\\\" target=\\\"_blank\\\">linalg/triangular.jl:354</a><li> +(A::<b>Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}</b>, B::<b>Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/triangular.jl#L355\\\" target=\\\"_blank\\\">linalg/triangular.jl:355</a><li> +(Da::<b>Diagonal{T}</b>, Db::<b>Diagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/diagonal.jl#L86\\\" target=\\\"_blank\\\">linalg/diagonal.jl:86</a><li> +(A::<b>Bidiagonal{T}</b>, B::<b>Bidiagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/bidiag.jl#L176\\\" target=\\\"_blank\\\">linalg/bidiag.jl:176</a><li> +(UL::<b>UpperTriangular{T,S<:AbstractArray{T,2}}</b>, J::<b>UniformScaling{T<:Number}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/uniformscaling.jl#L45\\\" target=\\\"_blank\\\">linalg/uniformscaling.jl:45</a><li> +(UL::<b>Base.LinAlg.UnitUpperTriangular{T,S<:AbstractArray{T,2}}</b>, J::<b>UniformScaling{T<:Number}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/uniformscaling.jl#L48\\\" target=\\\"_blank\\\">linalg/uniformscaling.jl:48</a><li> +(UL::<b>LowerTriangular{T,S<:AbstractArray{T,2}}</b>, J::<b>UniformScaling{T<:Number}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/uniformscaling.jl#L45\\\" target=\\\"_blank\\\">linalg/uniformscaling.jl:45</a><li> +(UL::<b>Base.LinAlg.UnitLowerTriangular{T,S<:AbstractArray{T,2}}</b>, J::<b>UniformScaling{T<:Number}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/uniformscaling.jl#L48\\\" target=\\\"_blank\\\">linalg/uniformscaling.jl:48</a><li> +(A::<b>Diagonal{T}</b>, B::<b>Bidiagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L121\\\" target=\\\"_blank\\\">linalg/special.jl:121</a><li> +(A::<b>Bidiagonal{T}</b>, B::<b>Diagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L122\\\" target=\\\"_blank\\\">linalg/special.jl:122</a><li> +(A::<b>Diagonal{T}</b>, B::<b>Tridiagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L121\\\" target=\\\"_blank\\\">linalg/special.jl:121</a><li> +(A::<b>Tridiagonal{T}</b>, B::<b>Diagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L122\\\" target=\\\"_blank\\\">linalg/special.jl:122</a><li> +(A::<b>Diagonal{T}</b>, B::<b>Array{T,2}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L121\\\" target=\\\"_blank\\\">linalg/special.jl:121</a><li> +(A::<b>Bidiagonal{T}</b>, B::<b>Tridiagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L121\\\" target=\\\"_blank\\\">linalg/special.jl:121</a><li> +(A::<b>Tridiagonal{T}</b>, B::<b>Bidiagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L122\\\" target=\\\"_blank\\\">linalg/special.jl:122</a><li> +(A::<b>Bidiagonal{T}</b>, B::<b>Array{T,2}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L121\\\" target=\\\"_blank\\\">linalg/special.jl:121</a><li> +(A::<b>Tridiagonal{T}</b>, B::<b>Array{T,2}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L121\\\" target=\\\"_blank\\\">linalg/special.jl:121</a><li> +(A::<b>SymTridiagonal{T}</b>, B::<b>Tridiagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L130\\\" target=\\\"_blank\\\">linalg/special.jl:130</a><li> +(A::<b>Tridiagonal{T}</b>, B::<b>SymTridiagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L131\\\" target=\\\"_blank\\\">linalg/special.jl:131</a><li> +(A::<b>SymTridiagonal{T}</b>, B::<b>Array{T,2}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L130\\\" target=\\\"_blank\\\">linalg/special.jl:130</a><li> +(A::<b>Diagonal{T}</b>, B::<b>SymTridiagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L139\\\" target=\\\"_blank\\\">linalg/special.jl:139</a><li> +(A::<b>SymTridiagonal{T}</b>, B::<b>Diagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L140\\\" target=\\\"_blank\\\">linalg/special.jl:140</a><li> +(A::<b>Bidiagonal{T}</b>, B::<b>SymTridiagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L139\\\" target=\\\"_blank\\\">linalg/special.jl:139</a><li> +(A::<b>SymTridiagonal{T}</b>, B::<b>Bidiagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L140\\\" target=\\\"_blank\\\">linalg/special.jl:140</a><li> +(A::<b>Diagonal{T}</b>, B::<b>UpperTriangular{T,S<:AbstractArray{T,2}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L151\\\" target=\\\"_blank\\\">linalg/special.jl:151</a><li> +(A::<b>UpperTriangular{T,S<:AbstractArray{T,2}}</b>, B::<b>Diagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L152\\\" target=\\\"_blank\\\">linalg/special.jl:152</a><li> +(A::<b>Diagonal{T}</b>, B::<b>Base.LinAlg.UnitUpperTriangular{T,S<:AbstractArray{T,2}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L151\\\" target=\\\"_blank\\\">linalg/special.jl:151</a><li> +(A::<b>Base.LinAlg.UnitUpperTriangular{T,S<:AbstractArray{T,2}}</b>, B::<b>Diagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L152\\\" target=\\\"_blank\\\">linalg/special.jl:152</a><li> +(A::<b>Diagonal{T}</b>, B::<b>LowerTriangular{T,S<:AbstractArray{T,2}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L151\\\" target=\\\"_blank\\\">linalg/special.jl:151</a><li> +(A::<b>LowerTriangular{T,S<:AbstractArray{T,2}}</b>, B::<b>Diagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L152\\\" target=\\\"_blank\\\">linalg/special.jl:152</a><li> +(A::<b>Diagonal{T}</b>, B::<b>Base.LinAlg.UnitLowerTriangular{T,S<:AbstractArray{T,2}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L151\\\" target=\\\"_blank\\\">linalg/special.jl:151</a><li> +(A::<b>Base.LinAlg.UnitLowerTriangular{T,S<:AbstractArray{T,2}}</b>, B::<b>Diagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L152\\\" target=\\\"_blank\\\">linalg/special.jl:152</a><li> +(A::<b>Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}</b>, B::<b>SymTridiagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L158\\\" target=\\\"_blank\\\">linalg/special.jl:158</a><li> +(A::<b>SymTridiagonal{T}</b>, B::<b>Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L159\\\" target=\\\"_blank\\\">linalg/special.jl:159</a><li> +(A::<b>Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}</b>, B::<b>Tridiagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L158\\\" target=\\\"_blank\\\">linalg/special.jl:158</a><li> +(A::<b>Tridiagonal{T}</b>, B::<b>Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L159\\\" target=\\\"_blank\\\">linalg/special.jl:159</a><li> +(A::<b>Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}</b>, B::<b>Bidiagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L158\\\" target=\\\"_blank\\\">linalg/special.jl:158</a><li> +(A::<b>Bidiagonal{T}</b>, B::<b>Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L159\\\" target=\\\"_blank\\\">linalg/special.jl:159</a><li> +(A::<b>Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}</b>, B::<b>Array{T,2}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L158\\\" target=\\\"_blank\\\">linalg/special.jl:158</a><li> +<i>{Tv1,Ti1,Tv2,Ti2}</i>(A_1::<b>SparseMatrixCSC{Tv1,Ti1}</b>, A_2::<b>SparseMatrixCSC{Tv2,Ti2}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/sparse/sparsematrix.jl#L1005\\\" target=\\\"_blank\\\">sparse/sparsematrix.jl:1005</a><li> +(A::<b>SparseMatrixCSC{Tv,Ti<:Integer}</b>, B::<b>Array{T,N}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/sparse/sparsematrix.jl#L1017\\\" target=\\\"_blank\\\">sparse/sparsematrix.jl:1017</a><li> +(A::<b>SparseMatrixCSC{Tv,Ti<:Integer}</b>, J::<b>UniformScaling{T<:Number}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/sparse/sparsematrix.jl#L3030\\\" target=\\\"_blank\\\">sparse/sparsematrix.jl:3030</a><li> +<i>{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period}}</i>(Y::<b>Union{DenseArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N},SubArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}</b>, x::<b>Union{Base.Dates.CompoundPeriod,Base.Dates.Period}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/periods.jl#L235\\\" target=\\\"_blank\\\">dates/periods.jl:235</a><li> +<i>{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},Q<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period}}</i>(X::<b>Union{DenseArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N},SubArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}</b>, Y::<b>Union{DenseArray{Q<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N},SubArray{Q<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/periods.jl#L236\\\" target=\\\"_blank\\\">dates/periods.jl:236</a><li> +<i>{T<:Base.Dates.TimeType,P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period}}</i>(x::<b>Union{DenseArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N},SubArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}</b>, y::<b>T<:Base.Dates.TimeType</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/arithmetic.jl#L83\\\" target=\\\"_blank\\\">dates/arithmetic.jl:83</a><li> +<i>{T<:Base.Dates.TimeType}</i>(r::<b>Range{T<:Base.Dates.TimeType}</b>, x::<b>Base.Dates.Period</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/ranges.jl#L39\\\" target=\\\"_blank\\\">dates/ranges.jl:39</a><li> +<i>{T<:Number}</i>(x::<b>AbstractArray{T<:Number,N}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/abstractarraymath.jl#L49\\\" target=\\\"_blank\\\">abstractarraymath.jl:49</a><li> +<i>{S,T}</i>(A::<b>AbstractArray{S,N}</b>, B::<b>Range{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/arraymath.jl#L78\\\" target=\\\"_blank\\\">arraymath.jl:78</a><li> +<i>{S,T}</i>(A::<b>AbstractArray{S,N}</b>, B::<b>AbstractArray{T,N}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/arraymath.jl#L96\\\" target=\\\"_blank\\\">arraymath.jl:96</a><li> +(A::<b>AbstractArray{T,N}</b>, x::<b>Number</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/arraymath.jl#L139\\\" target=\\\"_blank\\\">arraymath.jl:139</a><li> +(x::<b>Number</b>, A::<b>AbstractArray{T,N}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/arraymath.jl#L140\\\" target=\\\"_blank\\\">arraymath.jl:140</a><li> +(x::<b>Char</b>, y::<b>Integer</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/char.jl#L42\\\" target=\\\"_blank\\\">char.jl:42</a><li> +<i>{N}</i>(index1::<b>CartesianIndex{N}</b>, index2::<b>CartesianIndex{N}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/multidimensional.jl#L42\\\" target=\\\"_blank\\\">multidimensional.jl:42</a><li> +(J1::<b>UniformScaling{T<:Number}</b>, J2::<b>UniformScaling{T<:Number}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/uniformscaling.jl#L27\\\" target=\\\"_blank\\\">linalg/uniformscaling.jl:27</a><li> +(J::<b>UniformScaling{T<:Number}</b>, B::<b>BitArray{2}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/uniformscaling.jl#L29\\\" target=\\\"_blank\\\">linalg/uniformscaling.jl:29</a><li> +(J::<b>UniformScaling{T<:Number}</b>, A::<b>AbstractArray{T,2}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/uniformscaling.jl#L30\\\" target=\\\"_blank\\\">linalg/uniformscaling.jl:30</a><li> +(J::<b>UniformScaling{T<:Number}</b>, x::<b>Number</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/uniformscaling.jl#L31\\\" target=\\\"_blank\\\">linalg/uniformscaling.jl:31</a><li> +(x::<b>Number</b>, J::<b>UniformScaling{T<:Number}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/uniformscaling.jl#L32\\\" target=\\\"_blank\\\">linalg/uniformscaling.jl:32</a><li> +<i>{TA,TJ}</i>(A::<b>AbstractArray{TA,2}</b>, J::<b>UniformScaling{TJ}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/uniformscaling.jl#L92\\\" target=\\\"_blank\\\">linalg/uniformscaling.jl:92</a><li> +<i>{T}</i>(a::<b>Base.Pkg.Resolve.VersionWeights.HierarchicalValue{T}</b>, b::<b>Base.Pkg.Resolve.VersionWeights.HierarchicalValue{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/pkg/resolve/versionweight.jl#L23\\\" target=\\\"_blank\\\">pkg/resolve/versionweight.jl:23</a><li> +(a::<b>Base.Pkg.Resolve.VersionWeights.VWPreBuildItem</b>, b::<b>Base.Pkg.Resolve.VersionWeights.VWPreBuildItem</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/pkg/resolve/versionweight.jl#L85\\\" target=\\\"_blank\\\">pkg/resolve/versionweight.jl:85</a><li> +(a::<b>Base.Pkg.Resolve.VersionWeights.VWPreBuild</b>, b::<b>Base.Pkg.Resolve.VersionWeights.VWPreBuild</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/pkg/resolve/versionweight.jl#L131\\\" target=\\\"_blank\\\">pkg/resolve/versionweight.jl:131</a><li> +(a::<b>Base.Pkg.Resolve.VersionWeights.VersionWeight</b>, b::<b>Base.Pkg.Resolve.VersionWeights.VersionWeight</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/pkg/resolve/versionweight.jl#L185\\\" target=\\\"_blank\\\">pkg/resolve/versionweight.jl:185</a><li> +(a::<b>Base.Pkg.Resolve.MaxSum.FieldValues.FieldValue</b>, b::<b>Base.Pkg.Resolve.MaxSum.FieldValues.FieldValue</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/pkg/resolve/fieldvalue.jl#L44\\\" target=\\\"_blank\\\">pkg/resolve/fieldvalue.jl:44</a><li> +<i>{P<:Base.Dates.Period}</i>(x::<b>P<:Base.Dates.Period</b>, y::<b>P<:Base.Dates.Period</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/periods.jl#L62\\\" target=\\\"_blank\\\">dates/periods.jl:62</a><li> +(x::<b>Base.Dates.Period</b>, y::<b>Base.Dates.Period</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/periods.jl#L209\\\" target=\\\"_blank\\\">dates/periods.jl:209</a><li> +(x::<b>Base.Dates.CompoundPeriod</b>, y::<b>Base.Dates.Period</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/periods.jl#L210\\\" target=\\\"_blank\\\">dates/periods.jl:210</a><li> +(y::<b>Base.Dates.Period</b>, x::<b>Base.Dates.CompoundPeriod</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/periods.jl#L211\\\" target=\\\"_blank\\\">dates/periods.jl:211</a><li> +(x::<b>Base.Dates.CompoundPeriod</b>, y::<b>Base.Dates.CompoundPeriod</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/periods.jl#L212\\\" target=\\\"_blank\\\">dates/periods.jl:212</a><li> +(x::<b>Base.Dates.CompoundPeriod</b>, y::<b>Base.Dates.TimeType</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/periods.jl#L257\\\" target=\\\"_blank\\\">dates/periods.jl:257</a><li> +(y::<b>Base.Dates.Period</b>, x::<b>Base.Dates.TimeType</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/arithmetic.jl#L66\\\" target=\\\"_blank\\\">dates/arithmetic.jl:66</a><li> +<i>{T<:Base.Dates.TimeType}</i>(x::<b>Base.Dates.Period</b>, r::<b>Range{T<:Base.Dates.TimeType}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/ranges.jl#L40\\\" target=\\\"_blank\\\">dates/ranges.jl:40</a><li> +(x::<b>Union{Base.Dates.CompoundPeriod,Base.Dates.Period}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/periods.jl#L220\\\" target=\\\"_blank\\\">dates/periods.jl:220</a><li> +<i>{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period}}</i>(x::<b>Union{Base.Dates.CompoundPeriod,Base.Dates.Period}</b>, Y::<b>Union{DenseArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N},SubArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/periods.jl#L234\\\" target=\\\"_blank\\\">dates/periods.jl:234</a><li> +(dt::<b>DateTime</b>, y::<b>Base.Dates.Year</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/arithmetic.jl#L13\\\" target=\\\"_blank\\\">dates/arithmetic.jl:13</a><li> +(dt::<b>Date</b>, y::<b>Base.Dates.Year</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/arithmetic.jl#L17\\\" target=\\\"_blank\\\">dates/arithmetic.jl:17</a><li> +(dt::<b>DateTime</b>, z::<b>Base.Dates.Month</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/arithmetic.jl#L37\\\" target=\\\"_blank\\\">dates/arithmetic.jl:37</a><li> +(dt::<b>Date</b>, z::<b>Base.Dates.Month</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/arithmetic.jl#L43\\\" target=\\\"_blank\\\">dates/arithmetic.jl:43</a><li> +(x::<b>Date</b>, y::<b>Base.Dates.Week</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/arithmetic.jl#L60\\\" target=\\\"_blank\\\">dates/arithmetic.jl:60</a><li> +(x::<b>Date</b>, y::<b>Base.Dates.Day</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/arithmetic.jl#L62\\\" target=\\\"_blank\\\">dates/arithmetic.jl:62</a><li> +(x::<b>DateTime</b>, y::<b>Base.Dates.Period</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/arithmetic.jl#L64\\\" target=\\\"_blank\\\">dates/arithmetic.jl:64</a><li> +(x::<b>Base.Dates.TimeType</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/arithmetic.jl#L8\\\" target=\\\"_blank\\\">dates/arithmetic.jl:8</a><li> +(a::<b>Base.Dates.TimeType</b>, b::<b>Base.Dates.Period</b>, c::<b>Base.Dates.Period</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/periods.jl#L246\\\" target=\\\"_blank\\\">dates/periods.jl:246</a><li> +(a::<b>Base.Dates.TimeType</b>, b::<b>Base.Dates.Period</b>, c::<b>Base.Dates.Period</b>, d::<b>Base.Dates.Period...</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/periods.jl#L248\\\" target=\\\"_blank\\\">dates/periods.jl:248</a><li> +(x::<b>Base.Dates.TimeType</b>, y::<b>Base.Dates.CompoundPeriod</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/periods.jl#L252\\\" target=\\\"_blank\\\">dates/periods.jl:252</a><li> +(x::<b>Base.Dates.Instant</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/arithmetic.jl#L4\\\" target=\\\"_blank\\\">dates/arithmetic.jl:4</a><li> +<i>{T<:Base.Dates.TimeType}</i>(x::<b>AbstractArray{T<:Base.Dates.TimeType,N}</b>, y::<b>Union{Base.Dates.CompoundPeriod,Base.Dates.Period}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/arithmetic.jl#L76\\\" target=\\\"_blank\\\">dates/arithmetic.jl:76</a><li> +<i>{T<:Base.Dates.TimeType}</i>(y::<b>Union{Base.Dates.CompoundPeriod,Base.Dates.Period}</b>, x::<b>AbstractArray{T<:Base.Dates.TimeType,N}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/arithmetic.jl#L77\\\" target=\\\"_blank\\\">dates/arithmetic.jl:77</a><li> +<i>{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period}}</i>(y::<b>Base.Dates.TimeType</b>, x::<b>Union{DenseArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N},SubArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/arithmetic.jl#L84\\\" target=\\\"_blank\\\">dates/arithmetic.jl:84</a><li> +(a, b, c, xs...) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/operators.jl#L103\\\" target=\\\"_blank\\\">operators.jl:103</a></ul>\"\n      ],\n      \"text/plain\": [\n       \"# 171 methods for generic function \\\"+\\\":\\n\",\n       \"+(x::Bool) at bool.jl:33\\n\",\n       \"+(x::Bool, y::Bool) at bool.jl:36\\n\",\n       \"+(y::AbstractFloat, x::Bool) at bool.jl:46\\n\",\n       \"+(x::Int64, y::Int64) at int.jl:8\\n\",\n       \"+(x::Int8, y::Int8) at int.jl:16\\n\",\n       \"+(x::UInt8, y::UInt8) at int.jl:16\\n\",\n       \"+(x::Int16, y::Int16) at int.jl:16\\n\",\n       \"+(x::UInt16, y::UInt16) at int.jl:16\\n\",\n       \"+(x::Int32, y::Int32) at int.jl:16\\n\",\n       \"+(x::UInt32, y::UInt32) at int.jl:16\\n\",\n       \"+(x::UInt64, y::UInt64) at int.jl:16\\n\",\n       \"+(x::Int128, y::Int128) at int.jl:16\\n\",\n       \"+(x::UInt128, y::UInt128) at int.jl:16\\n\",\n       \"+(x::Integer, y::Ptr{T}) at pointer.jl:77\\n\",\n       \"+(x::Float32, y::Float32) at float.jl:207\\n\",\n       \"+(x::Float64, y::Float64) at float.jl:208\\n\",\n       \"+(z::Complex{T<:Real}, w::Complex{T<:Real}) at complex.jl:111\\n\",\n       \"+(x::Bool, z::Complex{Bool}) at complex.jl:118\\n\",\n       \"+(z::Complex{Bool}, x::Bool) at complex.jl:119\\n\",\n       \"+(x::Bool, z::Complex{T<:Real}) at complex.jl:125\\n\",\n       \"+(z::Complex{T<:Real}, x::Bool) at complex.jl:126\\n\",\n       \"+(x::Real, z::Complex{Bool}) at complex.jl:132\\n\",\n       \"+(z::Complex{Bool}, x::Real) at complex.jl:133\\n\",\n       \"+(x::Real, z::Complex{T<:Real}) at complex.jl:144\\n\",\n       \"+(z::Complex{T<:Real}, x::Real) at complex.jl:145\\n\",\n       \"+(x::Rational{T<:Integer}, y::Rational{T<:Integer}) at rational.jl:179\\n\",\n       \"+(x::Bool, A::AbstractArray{Bool,N}) at arraymath.jl:136\\n\",\n       \"+(x::Integer, y::Char) at char.jl:43\\n\",\n       \"+(a::Float16, b::Float16) at float16.jl:136\\n\",\n       \"+(x::BigInt, y::BigInt) at gmp.jl:256\\n\",\n       \"+(a::BigInt, b::BigInt, c::BigInt) at gmp.jl:279\\n\",\n       \"+(a::BigInt, b::BigInt, c::BigInt, d::BigInt) at gmp.jl:285\\n\",\n       \"+(a::BigInt, b::BigInt, c::BigInt, d::BigInt, e::BigInt) at gmp.jl:292\\n\",\n       \"+(x::BigInt, c::Union{UInt16,UInt32,UInt64,UInt8}) at gmp.jl:304\\n\",\n       \"+(c::Union{UInt16,UInt32,UInt64,UInt8}, x::BigInt) at gmp.jl:308\\n\",\n       \"+(x::BigInt, c::Union{Int16,Int32,Int64,Int8}) at gmp.jl:320\\n\",\n       \"+(c::Union{Int16,Int32,Int64,Int8}, x::BigInt) at gmp.jl:321\\n\",\n       \"+(x::BigFloat, y::BigFloat) at mpfr.jl:208\\n\",\n       \"+(x::BigFloat, c::Union{UInt16,UInt32,UInt64,UInt8}) at mpfr.jl:215\\n\",\n       \"+(c::Union{UInt16,UInt32,UInt64,UInt8}, x::BigFloat) at mpfr.jl:219\\n\",\n       \"+(x::BigFloat, c::Union{Int16,Int32,Int64,Int8}) at mpfr.jl:223\\n\",\n       \"+(c::Union{Int16,Int32,Int64,Int8}, x::BigFloat) at mpfr.jl:227\\n\",\n       \"+(x::BigFloat, c::Union{Float16,Float32,Float64}) at mpfr.jl:231\\n\",\n       \"+(c::Union{Float16,Float32,Float64}, x::BigFloat) at mpfr.jl:235\\n\",\n       \"+(x::BigFloat, c::BigInt) at mpfr.jl:239\\n\",\n       \"+(c::BigInt, x::BigFloat) at mpfr.jl:243\\n\",\n       \"+(a::BigFloat, b::BigFloat, c::BigFloat) at mpfr.jl:379\\n\",\n       \"+(a::BigFloat, b::BigFloat, c::BigFloat, d::BigFloat) at mpfr.jl:385\\n\",\n       \"+(a::BigFloat, b::BigFloat, c::BigFloat, d::BigFloat, e::BigFloat) at mpfr.jl:392\\n\",\n       \"+(x::Irrational{sym}, y::Irrational{sym}) at irrationals.jl:72\\n\",\n       \"+(x::Number) at operators.jl:73\\n\",\n       \"+{T<:Number}(x::T<:Number, y::T<:Number) at promotion.jl:211\\n\",\n       \"+{T<:AbstractFloat}(x::Bool, y::T<:AbstractFloat) at bool.jl:43\\n\",\n       \"+(x::Number, y::Number) at promotion.jl:167\\n\",\n       \"+(r1::OrdinalRange{T,S}, r2::OrdinalRange{T,S}) at operators.jl:330\\n\",\n       \"+{T<:AbstractFloat}(r1::FloatRange{T<:AbstractFloat}, r2::FloatRange{T<:AbstractFloat}) at operators.jl:337\\n\",\n       \"+{T<:AbstractFloat}(r1::LinSpace{T<:AbstractFloat}, r2::LinSpace{T<:AbstractFloat}) at operators.jl:356\\n\",\n       \"+(r1::Union{FloatRange{T<:AbstractFloat},LinSpace{T<:AbstractFloat},OrdinalRange{T,S}}, r2::Union{FloatRange{T<:AbstractFloat},LinSpace{T<:AbstractFloat},OrdinalRange{T,S}}) at operators.jl:369\\n\",\n       \"+(x::Ptr{T}, y::Integer) at pointer.jl:75\\n\",\n       \"+{S,T}(A::Range{S}, B::Range{T}) at arraymath.jl:69\\n\",\n       \"+{S,T}(A::Range{S}, B::AbstractArray{T,N}) at arraymath.jl:87\\n\",\n       \"+(A::BitArray{N}, B::BitArray{N}) at bitarray.jl:859\\n\",\n       \"+{T}(B::BitArray{2}, J::UniformScaling{T}) at linalg/uniformscaling.jl:28\\n\",\n       \"+(A::Array{T,2}, B::Diagonal{T}) at linalg/special.jl:122\\n\",\n       \"+(A::Array{T,2}, B::Bidiagonal{T}) at linalg/special.jl:122\\n\",\n       \"+(A::Array{T,2}, B::Tridiagonal{T}) at linalg/special.jl:122\\n\",\n       \"+(A::Array{T,2}, B::SymTridiagonal{T}) at linalg/special.jl:131\\n\",\n       \"+(A::Array{T,2}, B::Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}) at linalg/special.jl:159\\n\",\n       \"+(A::Array{T,N}, B::SparseMatrixCSC{Tv,Ti<:Integer}) at sparse/sparsematrix.jl:1019\\n\",\n       \"+{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period}}(x::Union{DenseArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N},SubArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}) at dates/periods.jl:221\\n\",\n       \"+(A::AbstractArray{Bool,N}, x::Bool) at arraymath.jl:135\\n\",\n       \"+(A::Union{DenseArray{Bool,N},SubArray{Bool,N,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}, B::Union{DenseArray{Bool,N},SubArray{Bool,N,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}) at arraymath.jl:166\\n\",\n       \"+(A::SymTridiagonal{T}, B::SymTridiagonal{T}) at linalg/tridiag.jl:84\\n\",\n       \"+(A::Tridiagonal{T}, B::Tridiagonal{T}) at linalg/tridiag.jl:404\\n\",\n       \"+(A::UpperTriangular{T,S<:AbstractArray{T,2}}, B::UpperTriangular{T,S<:AbstractArray{T,2}}) at linalg/triangular.jl:347\\n\",\n       \"+(A::LowerTriangular{T,S<:AbstractArray{T,2}}, B::LowerTriangular{T,S<:AbstractArray{T,2}}) at linalg/triangular.jl:348\\n\",\n       \"+(A::UpperTriangular{T,S<:AbstractArray{T,2}}, B::Base.LinAlg.UnitUpperTriangular{T,S<:AbstractArray{T,2}}) at linalg/triangular.jl:349\\n\",\n       \"+(A::LowerTriangular{T,S<:AbstractArray{T,2}}, B::Base.LinAlg.UnitLowerTriangular{T,S<:AbstractArray{T,2}}) at linalg/triangular.jl:350\\n\",\n       \"+(A::Base.LinAlg.UnitUpperTriangular{T,S<:AbstractArray{T,2}}, B::UpperTriangular{T,S<:AbstractArray{T,2}}) at linalg/triangular.jl:351\\n\",\n       \"+(A::Base.LinAlg.UnitLowerTriangular{T,S<:AbstractArray{T,2}}, B::LowerTriangular{T,S<:AbstractArray{T,2}}) at linalg/triangular.jl:352\\n\",\n       \"+(A::Base.LinAlg.UnitUpperTriangular{T,S<:AbstractArray{T,2}}, B::Base.LinAlg.UnitUpperTriangular{T,S<:AbstractArray{T,2}}) at linalg/triangular.jl:353\\n\",\n       \"+(A::Base.LinAlg.UnitLowerTriangular{T,S<:AbstractArray{T,2}}, B::Base.LinAlg.UnitLowerTriangular{T,S<:AbstractArray{T,2}}) at linalg/triangular.jl:354\\n\",\n       \"+(A::Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}, B::Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}) at linalg/triangular.jl:355\\n\",\n       \"+(Da::Diagonal{T}, Db::Diagonal{T}) at linalg/diagonal.jl:86\\n\",\n       \"+(A::Bidiagonal{T}, B::Bidiagonal{T}) at linalg/bidiag.jl:176\\n\",\n       \"+(UL::UpperTriangular{T,S<:AbstractArray{T,2}}, J::UniformScaling{T<:Number}) at linalg/uniformscaling.jl:45\\n\",\n       \"+(UL::Base.LinAlg.UnitUpperTriangular{T,S<:AbstractArray{T,2}}, J::UniformScaling{T<:Number}) at linalg/uniformscaling.jl:48\\n\",\n       \"+(UL::LowerTriangular{T,S<:AbstractArray{T,2}}, J::UniformScaling{T<:Number}) at linalg/uniformscaling.jl:45\\n\",\n       \"+(UL::Base.LinAlg.UnitLowerTriangular{T,S<:AbstractArray{T,2}}, J::UniformScaling{T<:Number}) at linalg/uniformscaling.jl:48\\n\",\n       \"+(A::Diagonal{T}, B::Bidiagonal{T}) at linalg/special.jl:121\\n\",\n       \"+(A::Bidiagonal{T}, B::Diagonal{T}) at linalg/special.jl:122\\n\",\n       \"+(A::Diagonal{T}, B::Tridiagonal{T}) at linalg/special.jl:121\\n\",\n       \"+(A::Tridiagonal{T}, B::Diagonal{T}) at linalg/special.jl:122\\n\",\n       \"+(A::Diagonal{T}, B::Array{T,2}) at linalg/special.jl:121\\n\",\n       \"+(A::Bidiagonal{T}, B::Tridiagonal{T}) at linalg/special.jl:121\\n\",\n       \"+(A::Tridiagonal{T}, B::Bidiagonal{T}) at linalg/special.jl:122\\n\",\n       \"+(A::Bidiagonal{T}, B::Array{T,2}) at linalg/special.jl:121\\n\",\n       \"+(A::Tridiagonal{T}, B::Array{T,2}) at linalg/special.jl:121\\n\",\n       \"+(A::SymTridiagonal{T}, B::Tridiagonal{T}) at linalg/special.jl:130\\n\",\n       \"+(A::Tridiagonal{T}, B::SymTridiagonal{T}) at linalg/special.jl:131\\n\",\n       \"+(A::SymTridiagonal{T}, B::Array{T,2}) at linalg/special.jl:130\\n\",\n       \"+(A::Diagonal{T}, B::SymTridiagonal{T}) at linalg/special.jl:139\\n\",\n       \"+(A::SymTridiagonal{T}, B::Diagonal{T}) at linalg/special.jl:140\\n\",\n       \"+(A::Bidiagonal{T}, B::SymTridiagonal{T}) at linalg/special.jl:139\\n\",\n       \"+(A::SymTridiagonal{T}, B::Bidiagonal{T}) at linalg/special.jl:140\\n\",\n       \"+(A::Diagonal{T}, B::UpperTriangular{T,S<:AbstractArray{T,2}}) at linalg/special.jl:151\\n\",\n       \"+(A::UpperTriangular{T,S<:AbstractArray{T,2}}, B::Diagonal{T}) at linalg/special.jl:152\\n\",\n       \"+(A::Diagonal{T}, B::Base.LinAlg.UnitUpperTriangular{T,S<:AbstractArray{T,2}}) at linalg/special.jl:151\\n\",\n       \"+(A::Base.LinAlg.UnitUpperTriangular{T,S<:AbstractArray{T,2}}, B::Diagonal{T}) at linalg/special.jl:152\\n\",\n       \"+(A::Diagonal{T}, B::LowerTriangular{T,S<:AbstractArray{T,2}}) at linalg/special.jl:151\\n\",\n       \"+(A::LowerTriangular{T,S<:AbstractArray{T,2}}, B::Diagonal{T}) at linalg/special.jl:152\\n\",\n       \"+(A::Diagonal{T}, B::Base.LinAlg.UnitLowerTriangular{T,S<:AbstractArray{T,2}}) at linalg/special.jl:151\\n\",\n       \"+(A::Base.LinAlg.UnitLowerTriangular{T,S<:AbstractArray{T,2}}, B::Diagonal{T}) at linalg/special.jl:152\\n\",\n       \"+(A::Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}, B::SymTridiagonal{T}) at linalg/special.jl:158\\n\",\n       \"+(A::SymTridiagonal{T}, B::Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}) at linalg/special.jl:159\\n\",\n       \"+(A::Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}, B::Tridiagonal{T}) at linalg/special.jl:158\\n\",\n       \"+(A::Tridiagonal{T}, B::Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}) at linalg/special.jl:159\\n\",\n       \"+(A::Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}, B::Bidiagonal{T}) at linalg/special.jl:158\\n\",\n       \"+(A::Bidiagonal{T}, B::Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}) at linalg/special.jl:159\\n\",\n       \"+(A::Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}, B::Array{T,2}) at linalg/special.jl:158\\n\",\n       \"+{Tv1,Ti1,Tv2,Ti2}(A_1::SparseMatrixCSC{Tv1,Ti1}, A_2::SparseMatrixCSC{Tv2,Ti2}) at sparse/sparsematrix.jl:1005\\n\",\n       \"+(A::SparseMatrixCSC{Tv,Ti<:Integer}, B::Array{T,N}) at sparse/sparsematrix.jl:1017\\n\",\n       \"+(A::SparseMatrixCSC{Tv,Ti<:Integer}, J::UniformScaling{T<:Number}) at sparse/sparsematrix.jl:3030\\n\",\n       \"+{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period}}(Y::Union{DenseArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N},SubArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}, x::Union{Base.Dates.CompoundPeriod,Base.Dates.Period}) at dates/periods.jl:235\\n\",\n       \"+{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},Q<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period}}(X::Union{DenseArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N},SubArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}, Y::Union{DenseArray{Q<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N},SubArray{Q<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}) at dates/periods.jl:236\\n\",\n       \"+{T<:Base.Dates.TimeType,P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period}}(x::Union{DenseArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N},SubArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}, y::T<:Base.Dates.TimeType) at dates/arithmetic.jl:83\\n\",\n       \"+{T<:Base.Dates.TimeType}(r::Range{T<:Base.Dates.TimeType}, x::Base.Dates.Period) at dates/ranges.jl:39\\n\",\n       \"+{T<:Number}(x::AbstractArray{T<:Number,N}) at abstractarraymath.jl:49\\n\",\n       \"+{S,T}(A::AbstractArray{S,N}, B::Range{T}) at arraymath.jl:78\\n\",\n       \"+{S,T}(A::AbstractArray{S,N}, B::AbstractArray{T,N}) at arraymath.jl:96\\n\",\n       \"+(A::AbstractArray{T,N}, x::Number) at arraymath.jl:139\\n\",\n       \"+(x::Number, A::AbstractArray{T,N}) at arraymath.jl:140\\n\",\n       \"+(x::Char, y::Integer) at char.jl:42\\n\",\n       \"+{N}(index1::CartesianIndex{N}, index2::CartesianIndex{N}) at multidimensional.jl:42\\n\",\n       \"+(J1::UniformScaling{T<:Number}, J2::UniformScaling{T<:Number}) at linalg/uniformscaling.jl:27\\n\",\n       \"+(J::UniformScaling{T<:Number}, B::BitArray{2}) at linalg/uniformscaling.jl:29\\n\",\n       \"+(J::UniformScaling{T<:Number}, A::AbstractArray{T,2}) at linalg/uniformscaling.jl:30\\n\",\n       \"+(J::UniformScaling{T<:Number}, x::Number) at linalg/uniformscaling.jl:31\\n\",\n       \"+(x::Number, J::UniformScaling{T<:Number}) at linalg/uniformscaling.jl:32\\n\",\n       \"+{TA,TJ}(A::AbstractArray{TA,2}, J::UniformScaling{TJ}) at linalg/uniformscaling.jl:92\\n\",\n       \"+{T}(a::Base.Pkg.Resolve.VersionWeights.HierarchicalValue{T}, b::Base.Pkg.Resolve.VersionWeights.HierarchicalValue{T}) at pkg/resolve/versionweight.jl:23\\n\",\n       \"+(a::Base.Pkg.Resolve.VersionWeights.VWPreBuildItem, b::Base.Pkg.Resolve.VersionWeights.VWPreBuildItem) at pkg/resolve/versionweight.jl:85\\n\",\n       \"+(a::Base.Pkg.Resolve.VersionWeights.VWPreBuild, b::Base.Pkg.Resolve.VersionWeights.VWPreBuild) at pkg/resolve/versionweight.jl:131\\n\",\n       \"+(a::Base.Pkg.Resolve.VersionWeights.VersionWeight, b::Base.Pkg.Resolve.VersionWeights.VersionWeight) at pkg/resolve/versionweight.jl:185\\n\",\n       \"+(a::Base.Pkg.Resolve.MaxSum.FieldValues.FieldValue, b::Base.Pkg.Resolve.MaxSum.FieldValues.FieldValue) at pkg/resolve/fieldvalue.jl:44\\n\",\n       \"+{P<:Base.Dates.Period}(x::P<:Base.Dates.Period, y::P<:Base.Dates.Period) at dates/periods.jl:62\\n\",\n       \"+(x::Base.Dates.Period, y::Base.Dates.Period) at dates/periods.jl:209\\n\",\n       \"+(x::Base.Dates.CompoundPeriod, y::Base.Dates.Period) at dates/periods.jl:210\\n\",\n       \"+(y::Base.Dates.Period, x::Base.Dates.CompoundPeriod) at dates/periods.jl:211\\n\",\n       \"+(x::Base.Dates.CompoundPeriod, y::Base.Dates.CompoundPeriod) at dates/periods.jl:212\\n\",\n       \"+(x::Base.Dates.CompoundPeriod, y::Base.Dates.TimeType) at dates/periods.jl:257\\n\",\n       \"+(y::Base.Dates.Period, x::Base.Dates.TimeType) at dates/arithmetic.jl:66\\n\",\n       \"+{T<:Base.Dates.TimeType}(x::Base.Dates.Period, r::Range{T<:Base.Dates.TimeType}) at dates/ranges.jl:40\\n\",\n       \"+(x::Union{Base.Dates.CompoundPeriod,Base.Dates.Period}) at dates/periods.jl:220\\n\",\n       \"+{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period}}(x::Union{Base.Dates.CompoundPeriod,Base.Dates.Period}, Y::Union{DenseArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N},SubArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}) at dates/periods.jl:234\\n\",\n       \"+(dt::DateTime, y::Base.Dates.Year) at dates/arithmetic.jl:13\\n\",\n       \"+(dt::Date, y::Base.Dates.Year) at dates/arithmetic.jl:17\\n\",\n       \"+(dt::DateTime, z::Base.Dates.Month) at dates/arithmetic.jl:37\\n\",\n       \"+(dt::Date, z::Base.Dates.Month) at dates/arithmetic.jl:43\\n\",\n       \"+(x::Date, y::Base.Dates.Week) at dates/arithmetic.jl:60\\n\",\n       \"+(x::Date, y::Base.Dates.Day) at dates/arithmetic.jl:62\\n\",\n       \"+(x::DateTime, y::Base.Dates.Period) at dates/arithmetic.jl:64\\n\",\n       \"+(x::Base.Dates.TimeType) at dates/arithmetic.jl:8\\n\",\n       \"+(a::Base.Dates.TimeType, b::Base.Dates.Period, c::Base.Dates.Period) at dates/periods.jl:246\\n\",\n       \"+(a::Base.Dates.TimeType, b::Base.Dates.Period, c::Base.Dates.Period, d::Base.Dates.Period...) at dates/periods.jl:248\\n\",\n       \"+(x::Base.Dates.TimeType, y::Base.Dates.CompoundPeriod) at dates/periods.jl:252\\n\",\n       \"+(x::Base.Dates.Instant) at dates/arithmetic.jl:4\\n\",\n       \"+{T<:Base.Dates.TimeType}(x::AbstractArray{T<:Base.Dates.TimeType,N}, y::Union{Base.Dates.CompoundPeriod,Base.Dates.Period}) at dates/arithmetic.jl:76\\n\",\n       \"+{T<:Base.Dates.TimeType}(y::Union{Base.Dates.CompoundPeriod,Base.Dates.Period}, x::AbstractArray{T<:Base.Dates.TimeType,N}) at dates/arithmetic.jl:77\\n\",\n       \"+{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period}}(y::Base.Dates.TimeType, x::Union{DenseArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N},SubArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}) at dates/arithmetic.jl:84\\n\",\n       \"+(a, b, c, xs...) at operators.jl:103\"\n      ]\n     },\n     \"execution_count\": 43,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Base methods for the +() function\\n\",\n    \"methods(+)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We have to create a method.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 44,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import Base.+\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 45,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"+ (generic function with 172 methods)\"\n      ]\n     },\n     \"execution_count\": 45,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"+(u::Vector_2D, v::Vector_2D) = Vector_2D(u.x + v.x, u.y + v.y)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 46,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Vector_2D(2.0,2.0)\"\n      ]\n     },\n     \"execution_count\": 46,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"+(vector_a, vector_b)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>Constraining field values</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can well imagine needing to constain the values that a type can hold.  Below we create the Bloodpressure type with two fields that hold integer values.  They cannot be negative and the systolic blood pressure must be higher than the diastolic blood pressure.  We solve this problem by creating an inner constructor.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 47,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"type BloodPressure\\n\",\n    \"    # Don't leave as Any\\n\",\n    \"    systolic::Int16\\n\",\n    \"    diastolic::Int16\\n\",\n    \"    function BloodPressure(s, d)\\n\",\n    \"        # Using short-circuit evaluations && and ||\\n\",\n    \"        s < 0 && throw(ArgumentError(\\\"Negative pressures are not allowed!\\\"))\\n\",\n    \"        s <= d && throw(ArgumentError(\\\"The systolic blood pressure must be higher than the diastolic blood pressure!\\\"))\\n\",\n    \"        isa(s, Integer) || throw(ArgumentError(\\\"Only integer values allowed!\\\"))\\n\",\n    \"        isa(d, Integer) || throw(ArgumentError(\\\"Only integer values allowed!\\\"))\\n\",\n    \"        new(s, d)\\n\",\n    \"    end\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 48,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"BloodPressure(120,80)\"\n      ]\n     },\n     \"execution_count\": 48,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"bp_1 = BloodPressure(120, 80)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Using `bp_2 = BloodPressure(-1, 90)` will result in the error:\\n\",\n    \"```\\n\",\n    \"LoadError: ArgumentError: Negative pressures are not allowed!\\n\",\n    \"while loading In[32], in expression starting on line 1\\n\",\n    \"```\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Using `bp_2 = BloodPressure(80, 120)` will result in the error:\\n\",\n    \"```\\n\",\n    \"LoadError: ArgumentError: The systolic blood pressure must be higher than the diastolic blood pressure\\n\",\n    \"while loading In[56], in expression starting on line 1\\n\",\n    \"```\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Using `bp_2 = BloodPressure(120.0, 80)` will result in the error:\\n\",\n    \"```\\n\",\n    \"LoadError: ArgumentError: Only integer values allowed!\\n\",\n    \"while loading In[95], in expression starting on line 1\\n\",\n    \"```\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Beware.  Using inner constructors with parametrized types can lead to problems.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 49,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"type BloodPressureParametrized{T <: Real}\\n\",\n    \"    # Don't leave as Any\\n\",\n    \"    systolic::T\\n\",\n    \"    diastolic::T\\n\",\n    \"    function BloodPressureParametrized(s, d)\\n\",\n    \"        s < 0 && throw(ArgumentError(\\\"Negative pressures are not allowed!\\\"))\\n\",\n    \"        s <= d && throw(ArgumentError(\\\"The systolic blood pressure must be higher than the diastolic blood pressure!\\\"))\\n\",\n    \"        isa(s, Integer) || throw(ArgumentError(\\\"Only integer values allowed!\\\"))\\n\",\n    \"        isa(d, Integer) || throw(ArgumentError(\\\"Only integer values allowed!\\\"))\\n\",\n    \"        new(s, d)\\n\",\n    \"    end\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Using `bp_3 = BloodPressureParametrized(120, 80)` will result in the error;\\n\",\n    \"```\\n\",\n    \"LoadError: MethodError: `convert` has no method matching convert(::Type{BloodPressureParametrized{T<:Real}}, ::Int64, ::Int64)\\n\",\n    \"This may have arisen from a call to the constructor BloodPressureParametrized{T<:Real}(...),\\n\",\n    \"since type constructors fall back to convert methods.\\n\",\n    \"Closest candidates are:\\n\",\n    \"  call{T}(::Type{T}, ::Any)\\n\",\n    \"  convert{T}(::Type{T}, !Matched::T)\\n\",\n    \"while loading In[102], in expression starting on line 1\\n\",\n    \"\\n\",\n    \" in call at essentials.jl:57\\n\",\n    \" ```\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Now we have to specify the type during the instantiation.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 50,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"BloodPressureParametrized{Int64}(120,80)\"\n      ]\n     },\n     \"execution_count\": 50,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"bp_3 = BloodPressureParametrized{Int}(120, 80)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 51,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"type BloodPressureParametrizedFixed{T <: Real}\\n\",\n    \"    systolic::T\\n\",\n    \"    diastolic::T\\n\",\n    \"    function BloodPressureParametrizedFixed(s, d)\\n\",\n    \"        s < 0 && throw(ArgumentError(\\\"Negative pressures are not allowed!\\\"))\\n\",\n    \"        s <= d && throw(ArgumentError(\\\"The systolic blood pressure must be higher than the diastolic blood pressure!\\\"))\\n\",\n    \"        new(s, d)\\n\",\n    \"    end\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can fix this by the assignment below.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 52,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"BloodPressureParametrizedFixed{T<:Real}\"\n      ]\n     },\n     \"execution_count\": 52,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# A bit of an effort\\n\",\n    \"BloodPressureParametrizedFixed{T}(systolic::T, diastolic::T) = BloodPressureParametrizedFixed{T}(systolic, diastolic)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 53,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"BloodPressureParametrizedFixed{Int64}(120,80)\"\n      ]\n     },\n     \"execution_count\": 53,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"bp_4 = BloodPressureParametrizedFixed(120, 80)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can get way more specific.  In the code below we tell Julia that if we pass integers to the type, they should be expressed as floating point values.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 54,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"BloodPressureParametrizedFixed{T<:Real}\"\n      ]\n     },\n     \"execution_count\": 54,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"BloodPressureParametrizedFixed{T <: Int}(systolic::T, diastolic::T) = BloodPressureParametrizedFixed{Float64}(systolic, diastolic)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 55,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"BloodPressureParametrizedFixed{Float64}(120.0,80.0)\"\n      ]\n     },\n     \"execution_count\": 55,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"bp_5 = BloodPressureParametrizedFixed(120, 80)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>More complex parameters</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Up until now we have constrained ourselves to a single parameter.  It is possible, though, to create more than one.  Below we create a type called `Relook`.  It has one fieldname called `duration`, which must be of subtype, `Real`.  There is also a second parameter.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 56,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"type Relook{N, T<:Real}\\n\",\n    \"    duration::T\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Using `patient_1 = Relook(3, 60)` will result in the error:\\n\",\n    \"```\\n\",\n    \"LoadError: MethodError: `convert` has no method matching convert(::Type{Relook{N,T}}, ::Int64, ::Int64)\\n\",\n    \"This may have arisen from a call to the constructor Relook{N,T}(...),\\n\",\n    \"since type constructors fall back to convert methods.\\n\",\n    \"Closest candidates are:\\n\",\n    \"  call{T}(::Type{T}, ::Any)\\n\",\n    \"  convert{T}(::Type{T}, !Matched::T)\\n\",\n    \"while loading In[175], in expression starting on line 1\\n\",\n    \"\\n\",\n    \" in call at essentials.jl:57\\n\",\n    \"```\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 57,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Relook{4,Int16}(60)\"\n      ]\n     },\n     \"execution_count\": 57,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# We have to specify the type of the second parameter\\n\",\n    \"patient_1 = Relook{4, Int16}(60)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 58,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"60\"\n      ]\n     },\n     \"execution_count\": 58,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"patient_1.duration\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We now want to add only objects (instances) with the same value in the first parameter.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 59,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"+ (generic function with 173 methods)\"\n      ]\n     },\n     \"execution_count\": 59,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"+{N, T}(u::Relook{N, T}, v::Relook{N, T}) = Relook{N, T}(u.duration + v.duration)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 60,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Relook{4,Int16}(70)\"\n      ]\n     },\n     \"execution_count\": 60,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"patient_2 = Relook{4, Int16}(70)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 61,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Relook{4,Int16}(130)\"\n      ]\n     },\n     \"execution_count\": 61,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"patient_1 + patient_2\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 62,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Relook{3,Int16}(70)\"\n      ]\n     },\n     \"execution_count\": 62,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"patient_3 = Relook{3, Int16}(70)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Using `patient_1 + patient_3` will now result in the error:\\n\",\n    \"```LoadError: MethodError: `+` has no method matching +(::Relook{4,Int16}, ::Relook{3,Int16})\\n\",\n    \"Closest candidates are:\\n\",\n    \"  +(::Any, ::Any, !Matched::Any, !Matched::Any...)\\n\",\n    \"  +{N,T}(::Relook{N,T}, !Matched::Relook{N,T})\\n\",\n    \"while loading In[191], in expression starting on line 1\\n\",\n    \"```\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 63,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Relook{4.0,Int16}(70)\"\n      ]\n     },\n     \"execution_count\": 63,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"patient_4 = Relook{4.0, Int16}(70)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Using `patient_1 + patient_4` will also result in an error, because the types of `N` do not match.  The error would be:\\n\",\n    \"```\\n\",\n    \"LoadError: MethodError: `+` has no method matching +(::Relook{4,Int16}, ::Relook{4.0,Int16})\\n\",\n    \"Closest candidates are:\\n\",\n    \"  +(::Any, ::Any, !Matched::Any, !Matched::Any...)\\n\",\n    \"  +{N,T}(::Relook{N,T}, !Matched::Relook{N,T})\\n\",\n    \"  +{N,T1,T2}(::Relook{N,T1}, !Matched::Relook{N,T2})\\n\",\n    \"while loading In[210], in expression starting on line 1\\n\",\n    \"```\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Below we fix the fieldname type mismatch.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 64,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"+ (generic function with 174 methods)\"\n      ]\n     },\n     \"execution_count\": 64,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"+{N, T1, T2}(u::Relook{N, T1}, v::Relook{N, T2}) = Relook{N, promote_type(T1, T2)}(u.duration + v.duration)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 65,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Relook{4,Float64}(60.0)\"\n      ]\n     },\n     \"execution_count\": 65,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"patient_5 = Relook{4, Float64}(60)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 66,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Relook{4,Float64}(120.0)\"\n      ]\n     },\n     \"execution_count\": 66,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# N = 4 for both patient_1 and patient_5\\n\",\n    \"# T for patient_1 is Int16 and T for patient_2 is Float64\\n\",\n    \"patient_1 + patient_5\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"If we want to throw an error if the number of relooks are not equal when trying to add to obejcts of the `Relook` type, we can do the following.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 67,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"+ (generic function with 175 methods)\"\n      ]\n     },\n     \"execution_count\": 67,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"+{N1, N2, T}(u::Relook{N1, T}, v::Relook{N2, T}) = \\n\",\n    \"throw(ArgumentError(\\\"Cannot add durations when the number of relooks do not match.\\\"))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Using `patient_1 + patient_3` will now result in the error:\\n\",\n    \"```\\n\",\n    \"LoadError: ArgumentError: Cannot add durations when the number of relooks do not match.\\n\",\n    \"while loading In[237], in expression starting on line 1\\n\",\n    \"\\n\",\n    \" in + at In[236]:1\\n\",\n    \"```\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"What about calculating the natural logarithm of the duration of a `Relook` object?  We could just specify the field name.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 68,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"4.0943445622221\"\n      ]\n     },\n     \"execution_count\": 68,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"log(patient_1.duration)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Better still, we could specify wat the `log` function actually does with a `Relook` object.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 69,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import Base.log\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 70,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"log (generic function with 20 methods)\"\n      ]\n     },\n     \"execution_count\": 70,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"log(u::Relook) = log(u.duration)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 71,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"4.0943445622221\"\n      ]\n     },\n     \"execution_count\": 71,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"log(patient_1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can specify a `convert` method that will convert all our `Relook` objects to numerical values which we can pass to Julia functions.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 72,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import Base.convert\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 73,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"convert (generic function with 538 methods)\"\n      ]\n     },\n     \"execution_count\": 73,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# The float() function tries to convert a value to a floating point value\\n\",\n    \"convert(::Type{AbstractFloat}, u::Relook) = float(u.duration)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 74,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"1.7781512503836436\"\n      ]\n     },\n     \"execution_count\": 74,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Covreting our Relook object and passing it to log10()\\n\",\n    \"log10(convert(AbstractFloat, patient_1))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>Screen output of a user-defined type</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can create some meaning to our types by the way an object of the type is represented on the screen.  Above we just saw two values we instantiation our type `Relook`.  Let's change that a bit by overloading the `show` function.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 75,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import Base.show\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 76,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"show (generic function with 107 methods)\"\n      ]\n     },\n     \"execution_count\": 76,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"show{N, T}(io::IO, u::Relook{N, T}) = print(io, \\\"Patient with \\\", N, \\\" relook procedures totalling \\\", u.duration,\\n\",\n    \"\\\" minutes.\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 77,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Patient with 4 relook procedures totalling 60 minutes.\"\n      ]\n     },\n     \"execution_count\": 77,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"patient_6 = Relook{4, Int16}(60)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"anaconda-cloud\": {},\n  \"kernelspec\": {\n   \"display_name\": \"Julia 0.4.6\",\n   \"language\": \"julia\",\n   \"name\": \"julia-0.4\"\n  },\n  \"language_info\": {\n   \"file_extension\": \".jl\",\n   \"mimetype\": \"application/julia\",\n   \"name\": \"julia\",\n   \"version\": \"0.4.6\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 0\n}\n"
  },
  {
    "path": ".ipynb_checkpoints/Week4_4Data-checkpoint.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\n\",\n       \"\\n\",\n       \"<style>\\n\",\n       \"\\n\",\n       \"@font-face {\\n\",\n       \"    font-family: \\\"Computer Modern\\\";\\n\",\n       \"    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"#notebook_panel { /* main background */\\n\",\n       \"    background: #ddd;\\n\",\n       \"    color: #000000;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"/* Formatting for header cells */\\n\",\n       \".text_cell_render h1 {\\n\",\n       \"    font-family: 'Philosopher', sans-serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 2.2em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(0, 80, 120);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \".text_cell_render h2 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 1.9em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(200,100,0);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \"\\n\",\n       \".text_cell_render h3 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    margin-top:12px;\\n\",\n       \"    margin-bottom: 3px;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    color: rgb(94,127,192);\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h4 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h5 {\\n\",\n       \"    font-family: 'Alegreya Sans', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 16pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    margin-bottom: .1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h6 {\\n\",\n       \"    font-family: 'PT Mono', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 10pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    margin-bottom: 1px;\\n\",\n       \"    margin-top: 1px;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".CodeMirror{\\n\",\n       \"        font-family: \\\"PT Mono\\\";\\n\",\n       \"        font-size: 100%;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"</style>\\n\",\n       \"\\n\"\n      ],\n      \"text/plain\": [\n       \"HTML{ASCIIString}(\\\"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\\\n\\\\n<style>\\\\n\\\\n@font-face {\\\\n    font-family: \\\\\\\"Computer Modern\\\\\\\";\\\\n    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\\\n}\\\\n\\\\n#notebook_panel { /* main background */\\\\n    background: #ddd;\\\\n    color: #000000;\\\\n}\\\\n\\\\n\\\\n\\\\n/* Formatting for header cells */\\\\n.text_cell_render h1 {\\\\n    font-family: 'Philosopher', sans-serif;\\\\n    font-weight: 400;\\\\n    font-size: 2.2em;\\\\n    line-height: 100%;\\\\n    color: rgb(0, 80, 120);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n.text_cell_render h2 {\\\\n    font-family: 'Philosopher', serif;\\\\n    font-weight: 400;\\\\n    font-size: 1.9em;\\\\n    line-height: 100%;\\\\n    color: rgb(200,100,0);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n\\\\n.text_cell_render h3 {\\\\n    font-family: 'Philosopher', serif;\\\\n    margin-top:12px;\\\\n    margin-bottom: 3px;\\\\n    font-style: italic;\\\\n    color: rgb(94,127,192);\\\\n}\\\\n\\\\n.text_cell_render h4 {\\\\n    font-family: 'Philosopher', serif;\\\\n}\\\\n\\\\n.text_cell_render h5 {\\\\n    font-family: 'Alegreya Sans', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 16pt;\\\\n    color: grey;\\\\n    font-style: italic;\\\\n    margin-bottom: .1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\n\\\\n.text_cell_render h6 {\\\\n    font-family: 'PT Mono', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 10pt;\\\\n    color: grey;\\\\n    margin-bottom: 1px;\\\\n    margin-top: 1px;\\\\n}\\\\n\\\\n.CodeMirror{\\\\n        font-family: \\\\\\\"PT Mono\\\\\\\";\\\\n        font-size: 100%;\\\\n}\\\\n\\\\n</style>\\\\n\\\\n\\\")\"\n      ]\n     },\n     \"execution_count\": 1,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Setting up a custom stylesheet in IJulia\\n\",\n    \"file = open(\\\"style.css\\\") # A .css file in the same folder as this notebook file\\n\",\n    \"styl = readall(file) # Read the file\\n\",\n    \"HTML(\\\"$styl\\\") # Output as HTML\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Data\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>In this lesson</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"- [Introduction](#Introduction)\\n\",\n    \"- [Importing the packages for this lesson](#Importing-the-packages-for-this-lesson)\\n\",\n    \"- [Outcome](#Outcome)\\n\",\n    \"- [The standard normal distribution](#The-standard-normal-distribution)\\n\",\n    \"- [Using the Distributions package](#Using-the-Distributions-package)\\n\",\n    \"- [Comparing samples](#Comparing-samples)\\n\",\n    \"- [Plotly](#Plotly)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>Introduction</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Data is everywhere and working with data is very important in scientific computing.  Data point values come in patterns, called distributions.  Whether you are modelling, getting data from a research project, or simply want ot manufactor some data, Julia is the place to go.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We know about the `rand()` and `randn()` functions, but by using the `Distributions` package we can do much, much more.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>Importing the packages for this lesson</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"using Distributions\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"You should have the `PlotlyJS` package installed.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Plots.PlotlyJSBackend()\"\n      ]\n     },\n     \"execution_count\": 3,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"using Plots\\n\",\n    \"plotlyjs()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"WARNING: New definition \\n\",\n      \"    +(AbstractArray, DataArrays.DataArray) at /Users/juanklopper/.julia/v0.4/DataArrays/src/operators.jl:276\\n\",\n      \"is ambiguous with: \\n\",\n      \"    +(WoodburyMatrices.SymWoodbury, AbstractArray{T<:Any, 2}) at /Users/juanklopper/.julia/v0.4/WoodburyMatrices/src/SymWoodburyMatrices.jl:107.\\n\",\n      \"To fix, define \\n\",\n      \"    +(WoodburyMatrices.SymWoodbury, DataArrays.DataArray{T<:Any, 2})\\n\",\n      \"before the new definition.\\n\",\n      \"WARNING: New definition \\n\",\n      \"    +(AbstractArray, DataArrays.AbstractDataArray) at /Users/juanklopper/.julia/v0.4/DataArrays/src/operators.jl:300\\n\",\n      \"is ambiguous with: \\n\",\n      \"    +(WoodburyMatrices.SymWoodbury, AbstractArray{T<:Any, 2}) at /Users/juanklopper/.julia/v0.4/WoodburyMatrices/src/SymWoodburyMatrices.jl:107.\\n\",\n      \"To fix, define \\n\",\n      \"    +(WoodburyMatrices.SymWoodbury, DataArrays.AbstractDataArray{T<:Any, 2})\\n\",\n      \"before the new definition.\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"using StatPlots\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"WARNING: Method definition combinations(Any, Integer) in module Base at combinatorics.jl:182 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/combinations.jl:42.\\n\",\n      \"WARNING: Method definition permutations(Any) in module Base at combinatorics.jl:219 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/permutations.jl:24.\\n\",\n      \"WARNING: Method definition partitions(Integer) in module Base at combinatorics.jl:252 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/partitions.jl:26.\\n\",\n      \"WARNING: Method definition partitions(Integer, Integer) in module Base at combinatorics.jl:318 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/partitions.jl:93.\\n\",\n      \"WARNING: Method definition partitions(AbstractArray{T<:Any, 1}) in module Base at combinatorics.jl:380 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/partitions.jl:158.\\n\",\n      \"WARNING: Method definition partitions(AbstractArray{T<:Any, 1}, Int64) in module Base at combinatorics.jl:447 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/partitions.jl:228.\\n\",\n      \"WARNING: Method definition factorial(#T<:Integer, #T<:Integer) in module Base at combinatorics.jl:56 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/factorials.jl:18.\\n\",\n      \"WARNING: Method definition factorial(Integer, Integer) in module Base at combinatorics.jl:66 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/factorials.jl:28.\\n\",\n      \"WARNING: Method definition parity(AbstractArray{#T<:Integer, 1}) in module Base at combinatorics.jl:642 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/permutations.jl:221.\\n\",\n      \"WARNING: Method definition nthperm(AbstractArray{#T<:Integer, 1}) in module Base at combinatorics.jl:92 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/permutations.jl:161.\\n\",\n      \"WARNING: Method definition nthperm(AbstractArray{T<:Any, 1}, Integer) in module Base at combinatorics.jl:89 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/permutations.jl:157.\\n\",\n      \"WARNING: Method definition nthperm!(AbstractArray{T<:Any, 1}, Integer) in module Base at combinatorics.jl:70 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/permutations.jl:136.\\n\",\n      \"WARNING: Method definition prevprod(Array{Int64, 1}, Any) in module Base at combinatorics.jl:565 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/partitions.jl:354.\\n\",\n      \"WARNING: Method definition levicivita(AbstractArray{#T<:Integer, 1}) in module Base at combinatorics.jl:611 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/permutations.jl:188.\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"using HypothesisTests\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"using DataFrames\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"INFO: Precompiling module GLM...\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"using GLM\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>Outcome</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"source\": [\n    \"After successfully completing this lecture, you will be able to:\\n\",\n    \"\\n\",\n    \"- Understand and plot the standard normal distribution\\n\",\n    \"- Create a variety of random value from different distributions using the `Distributions` package\\n\",\n    \"- Plot some of the distributions in the `Distributions` package\\n\",\n    \"- Create your own data using a distribution and its parameters\\n\",\n    \"- Use the online plotting library `Plotly`\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>The standard normal distribution</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The Julie function `rand()` allows us to return an array of randomly selected values.  The values come from a specific distribution, namely the **standard normal** distribution.  The majority of values cluster around the mean of $ 0 $ and a standard deviation of $ 1 $.  Let's get $ 1000 $ such values and attach this array to the variable `norm1`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# We will put a semicolon at the end to supress the output\\n\",\n    \"norm1 = randn(1000);\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can plot this as histogram.  In the example below, we will use the keyword argument `bins`.  Setting it to $ 10 $ means that between the minimum and maximum value we create $ 10 $ equally sized ranges and count how many values occur in each range.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<script charset=\\\"utf-8\\\" type='text/javascript'>\\n\",\n       \"    // This script was adapted from\\n\",\n       \"// https://github.com/JuliaLang/Interact.jl/blob/master/src/IJulia/ijulia.js\\n\",\n       \"(function (IPython, $) {\\n\",\n       \"    $.event.special.destroyed = {\\n\",\n       \"\\tremove: function(o) {\\n\",\n       \"\\t    if (o.handler) {\\n\",\n       \"\\t\\to.handler.apply(this, arguments)\\n\",\n       \"\\t    }\\n\",\n       \"\\t}\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    function resolve_promises(comm, val) {\\n\",\n       \"        val === undefined && (val = null);\\n\",\n       \"        if (val && val.constructor == Promise) {\\n\",\n       \"            val.then(function(val) {\\n\",\n       \"                resolve_promises(comm, val);\\n\",\n       \"            })\\n\",\n       \"        } else {\\n\",\n       \"            comm.send({action: \\\"plotlyjs_ret_val\\\", ret: val});\\n\",\n       \"        }\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    $(document).ready(function() {\\n\",\n       \"\\tfunction initComm(evt, data) {\\n\",\n       \"\\t    var comm_manager = data.kernel.comm_manager;\\n\",\n       \"        console.log(\\\"plotly comm init\\\");\\n\",\n       \"\\t    comm_manager.register_target(\\\"plotlyjs_eval\\\", function (comm) {\\n\",\n       \"            comm.on_msg(function (msg) {\\n\",\n       \"                // Call the code in the message\\n\",\n       \"                eval(msg.content.data.code);\\n\",\n       \"                delete msg.content.data.code;\\n\",\n       \"            });\\n\",\n       \"\\t    });\\n\",\n       \"\\n\",\n       \"        comm_manager.register_target(\\\"plotlyjs_return\\\", function (comm) {\\n\",\n       \"            comm.on_msg(function (msg) {\\n\",\n       \"                // Call the code in the message\\n\",\n       \"                val = eval(msg.content.data.code);\\n\",\n       \"\\n\",\n       \"                // send the result back to julia\\n\",\n       \"                resolve_promises(comm, val);\\n\",\n       \"\\n\",\n       \"                // Clean up\\n\",\n       \"                delete val;\\n\",\n       \"                delete msg.content.data.code;\\n\",\n       \"            });\\n\",\n       \"\\t    });\\n\",\n       \"\\t}\\n\",\n       \"\\n\",\n       \"\\ttry {\\n\",\n       \"\\t    // try to initialize right away. otherwise, wait on the status_started event.\\n\",\n       \"\\t    initComm(undefined, IPython.notebook);\\n\",\n       \"\\t} catch (e) {\\n\",\n       \"        console.log(e);\\n\",\n       \"\\t    $([IPython.events]).on('kernel_created.Kernel kernel_created.Session', initComm);\\n\",\n       \"\\t}\\n\",\n       \"    });\\n\",\n       \"})(IPython, jQuery);\\n\",\n       \"\\n\",\n       \"</script>\\n\",\n       \" <script charset=\\\"utf-8\\\" type='text/javascript'>\\n\",\n       \"     define('plotly', function(require, exports, module) {\\n\",\n       \"         /**\\n\",\n       \"* plotly.js v1.8.0\\n\",\n       \"* Copyright 2012-2016, Plotly, Inc.\\n\",\n       \"* All rights reserved.\\n\",\n       \"* Licensed under the MIT license\\n\",\n       \"*/\\n\",\n       \"!function(t){if(\\\"object\\\"==typeof exports&&\\\"undefined\\\"!=typeof module)module.exports=t();else if(\\\"function\\\"==typeof define&&define.amd)define([],t);else{var e;e=\\\"undefined\\\"!=typeof window?window:\\\"undefined\\\"!=typeof global?global:\\\"undefined\\\"!=typeof self?self:this,e.Plotly=t()}}(function(){var t;return function e(t,r,n){function i(a,s){if(!r[a]){if(!t[a]){var l=\\\"function\\\"==typeof require&&require;if(!s&&l)return l(a,!0);if(o)return o(a,!0);var c=new Error(\\\"Cannot find module '\\\"+a+\\\"'\\\");throw c.code=\\\"MODULE_NOT_FOUND\\\",c}var u=r[a]={exports:{}};t[a][0].call(u.exports,function(e){var r=t[a][1][e];return i(r?r:e)},u,u.exports,e,t,r,n)}return r[a].exports}for(var o=\\\"function\\\"==typeof require&&require,a=0;a<n.length;a++)i(n[a]);return i}({1:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../src/plotly\\\"),i={\\\"X,X div\\\":\\\"font-family:'Open Sans', verdana, arial, sans-serif;margin:0;padding:0;\\\",\\\"X input,X button\\\":\\\"font-family:'Open Sans', verdana, arial, sans-serif;\\\",\\\"X input:focus,X button:focus\\\":\\\"outline:none;\\\",\\\"X a\\\":\\\"text-decoration:none;\\\",\\\"X a:hover\\\":\\\"text-decoration:none;\\\",\\\"X .crisp\\\":\\\"shape-rendering:crispEdges;\\\",\\\"X .user-select-none\\\":\\\"-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;\\\",\\\"X svg\\\":\\\"overflow:hidden;\\\",\\\"X svg a\\\":\\\"fill:#447adb;\\\",\\\"X svg a:hover\\\":\\\"fill:#3c6dc5;\\\",\\\"X .main-svg\\\":\\\"position:absolute;top:0;left:0;pointer-events:none;\\\",\\\"X .main-svg .draglayer\\\":\\\"pointer-events:all;\\\",\\\"X .cursor-pointer\\\":\\\"cursor:pointer;\\\",\\\"X .cursor-crosshair\\\":\\\"cursor:crosshair;\\\",\\\"X .cursor-move\\\":\\\"cursor:move;\\\",\\\"X .cursor-col-resize\\\":\\\"cursor:col-resize;\\\",\\\"X .cursor-row-resize\\\":\\\"cursor:row-resize;\\\",\\\"X .cursor-ns-resize\\\":\\\"cursor:ns-resize;\\\",\\\"X .cursor-ew-resize\\\":\\\"cursor:ew-resize;\\\",\\\"X .cursor-sw-resize\\\":\\\"cursor:sw-resize;\\\",\\\"X .cursor-s-resize\\\":\\\"cursor:s-resize;\\\",\\\"X .cursor-se-resize\\\":\\\"cursor:se-resize;\\\",\\\"X .cursor-w-resize\\\":\\\"cursor:w-resize;\\\",\\\"X .cursor-e-resize\\\":\\\"cursor:e-resize;\\\",\\\"X .cursor-nw-resize\\\":\\\"cursor:nw-resize;\\\",\\\"X .cursor-n-resize\\\":\\\"cursor:n-resize;\\\",\\\"X .cursor-ne-resize\\\":\\\"cursor:ne-resize;\\\",\\\"X .modebar\\\":\\\"position:absolute;top:2px;right:2px;z-index:1001;background:rgba(255,255,255,0.7);\\\",\\\"X .modebar--hover\\\":\\\"opacity:0;-webkit-transition:opacity 0.3s ease 0s;-moz-transition:opacity 0.3s ease 0s;-ms-transition:opacity 0.3s ease 0s;-o-transition:opacity 0.3s ease 0s;transition:opacity 0.3s ease 0s;\\\",\\\"X:hover .modebar--hover\\\":\\\"opacity:1;\\\",\\\"X .modebar-group\\\":\\\"float:left;display:inline-block;box-sizing:border-box;margin-left:8px;position:relative;vertical-align:middle;white-space:nowrap;\\\",\\\"X .modebar-group:first-child\\\":\\\"margin-left:0px;\\\",\\\"X .modebar-btn\\\":\\\"position:relative;font-size:16px;padding:3px 4px;cursor:pointer;line-height:normal;box-sizing:border-box;\\\",\\\"X .modebar-btn svg\\\":\\\"position:relative;top:2px;\\\",\\\"X .modebar-btn path\\\":\\\"fill:rgba(0,31,95,0.3);\\\",\\\"X .modebar-btn.active path,X .modebar-btn:hover path\\\":\\\"fill:rgba(0,22,72,0.5);\\\",\\\"X .modebar-btn.modebar-btn--logo\\\":\\\"padding:3px 1px;\\\",\\\"X .modebar-btn.modebar-btn--logo path\\\":\\\"fill:#447adb !important;\\\",\\\"X [data-title]:before,X [data-title]:after\\\":\\\"position:absolute;-webkit-transform:translate3d(0, 0, 0);-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-o-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);display:none;opacity:0;z-index:1001;pointer-events:none;top:110%;right:50%;\\\",\\\"X [data-title]:hover:before,X [data-title]:hover:after\\\":\\\"display:block;opacity:1;\\\",\\\"X [data-title]:before\\\":\\\"content:'';position:absolute;background:transparent;border:6px solid transparent;z-index:1002;margin-top:-12px;border-bottom-color:#69738a;margin-right:-6px;\\\",\\\"X [data-title]:after\\\":\\\"content:attr(data-title);background:#69738a;color:white;padding:8px 10px;font-size:12px;line-height:12px;white-space:nowrap;margin-right:-18px;border-radius:2px;\\\",\\\"X .select-outline\\\":\\\"fill:none;stroke-width:1;shape-rendering:crispEdges;\\\",\\\"X .select-outline-1\\\":\\\"stroke:white;\\\",\\\"X .select-outline-2\\\":\\\"stroke:black;stroke-dasharray:2px 2px;\\\",Y:\\\"font-family:'Open Sans';position:fixed;top:50px;right:20px;z-index:10000;font-size:10pt;max-width:180px;\\\",\\\"Y p\\\":\\\"margin:0;\\\",\\\"Y .notifier-note\\\":\\\"min-width:180px;max-width:250px;border:1px solid #fff;z-index:3000;margin:0;background-color:#8c97af;background-color:rgba(140,151,175,0.9);color:#fff;padding:10px;\\\",\\\"Y .notifier-close\\\":\\\"color:#fff;opacity:0.8;float:right;padding:0 5px;background:none;border:none;font-size:20px;font-weight:bold;line-height:20px;\\\",\\\"Y .notifier-close:hover\\\":\\\"color:#444;text-decoration:none;cursor:pointer;\\\"};for(var o in i){var a=o.replace(/^,/,\\\" ,\\\").replace(/X/g,\\\".js-plotly-plot .plotly\\\").replace(/Y/g,\\\".plotly-notifier\\\");n.Lib.addStyleRule(a,i[o])}},{\\\"../src/plotly\\\":390}],2:[function(t,e,r){\\\"use strict\\\";e.exports={undo:{width:857.1,path:\\\"m857 350q0-87-34-166t-91-137-137-92-166-34q-96 0-183 41t-147 114q-4 6-4 13t5 11l76 77q6 5 14 5 9-1 13-7 41-53 100-82t126-29q58 0 110 23t92 61 61 91 22 111-22 111-61 91-92 61-110 23q-55 0-105-20t-90-57l77-77q17-16 8-38-10-23-33-23h-250q-15 0-25 11t-11 25v250q0 24 22 33 22 10 39-8l72-72q60 57 137 88t159 31q87 0 166-34t137-92 91-137 34-166z\\\",ascent:850,descent:-150},home:{width:928.6,path:\\\"m786 296v-267q0-15-11-26t-25-10h-214v214h-143v-214h-214q-15 0-25 10t-11 26v267q0 1 0 2t0 2l321 264 321-264q1-1 1-4z m124 39l-34-41q-5-5-12-6h-2q-7 0-12 3l-386 322-386-322q-7-4-13-4-7 2-12 7l-35 41q-4 5-3 13t6 12l401 334q18 15 42 15t43-15l136-114v109q0 8 5 13t13 5h107q8 0 13-5t5-13v-227l122-102q5-5 6-12t-4-13z\\\",ascent:850,descent:-150},\\\"camera-retro\\\":{width:1e3,path:\\\"m518 386q0 8-5 13t-13 5q-37 0-63-27t-26-63q0-8 5-13t13-5 12 5 5 13q0 23 16 38t38 16q8 0 13 5t5 13z m125-73q0-59-42-101t-101-42-101 42-42 101 42 101 101 42 101-42 42-101z m-572-320h858v71h-858v-71z m643 320q0 89-62 152t-152 62-151-62-63-152 63-151 151-63 152 63 62 151z m-571 358h214v72h-214v-72z m-72-107h858v143h-462l-36-71h-360v-72z m929 143v-714q0-30-21-51t-50-21h-858q-29 0-50 21t-21 51v714q0 30 21 51t50 21h858q29 0 50-21t21-51z\\\",ascent:850,descent:-150},zoombox:{width:1e3,path:\\\"m1000-25l-250 251c40 63 63 138 63 218 0 224-182 406-407 406-224 0-406-182-406-406s183-406 407-406c80 0 155 22 218 62l250-250 125 125z m-812 250l0 438 437 0 0-438-437 0z m62 375l313 0 0-312-313 0 0 312z\\\",ascent:850,descent:-150},pan:{width:1e3,path:\\\"m1000 350l-187 188 0-125-250 0 0 250 125 0-188 187-187-187 125 0 0-250-250 0 0 125-188-188 186-187 0 125 252 0 0-250-125 0 187-188 188 188-125 0 0 250 250 0 0-126 187 188z\\\",ascent:850,descent:-150},zoom_plus:{width:1e3,path:\\\"m1 787l0-875 875 0 0 875-875 0z m687-500l-187 0 0-187-125 0 0 187-188 0 0 125 188 0 0 187 125 0 0-187 187 0 0-125z\\\",ascent:850,descent:-150},zoom_minus:{width:1e3,path:\\\"m0 788l0-876 875 0 0 876-875 0z m688-500l-500 0 0 125 500 0 0-125z\\\",ascent:850,descent:-150},autoscale:{width:1e3,path:\\\"m250 850l-187 0-63 0 0-62 0-188 63 0 0 188 187 0 0 62z m688 0l-188 0 0-62 188 0 0-188 62 0 0 188 0 62-62 0z m-875-938l0 188-63 0 0-188 0-62 63 0 187 0 0 62-187 0z m875 188l0-188-188 0 0-62 188 0 62 0 0 62 0 188-62 0z m-125 188l-1 0-93-94-156 156 156 156 92-93 2 0 0 250-250 0 0-2 93-92-156-156-156 156 94 92 0 2-250 0 0-250 0 0 93 93 157-156-157-156-93 94 0 0 0-250 250 0 0 0-94 93 156 157 156-157-93-93 0 0 250 0 0 250z\\\",ascent:850,descent:-150},tooltip_basic:{width:1500,path:\\\"m375 725l0 0-375-375 375-374 0-1 1125 0 0 750-1125 0z\\\",ascent:850,descent:-150},tooltip_compare:{width:1125,path:\\\"m187 786l0 2-187-188 188-187 0 0 937 0 0 373-938 0z m0-499l0 1-187-188 188-188 0 0 937 0 0 376-938-1z\\\",ascent:850,descent:-150},plotlylogo:{width:1542,path:\\\"m0-10h182v-140h-182v140z m228 146h183v-286h-183v286z m225 714h182v-1000h-182v1000z m225-285h182v-715h-182v715z m225 142h183v-857h-183v857z m231-428h182v-429h-182v429z m225-291h183v-138h-183v138z\\\",ascent:850,descent:-150},\\\"z-axis\\\":{width:1e3,path:\\\"m833 5l-17 108v41l-130-65 130-66c0 0 0 38 0 39 0-1 36-14 39-25 4-15-6-22-16-30-15-12-39-16-56-20-90-22-187-23-279-23-261 0-341 34-353 59 3 60 228 110 228 110-140-8-351-35-351-116 0-120 293-142 474-142 155 0 477 22 477 142 0 50-74 79-163 96z m-374 94c-58-5-99-21-99-40 0-24 65-43 144-43 79 0 143 19 143 43 0 19-42 34-98 40v216h87l-132 135-133-135h88v-216z m167 515h-136v1c16 16 31 34 46 52l84 109v54h-230v-71h124v-1c-16-17-28-32-44-51l-89-114v-51h245v72z\\\",ascent:850,descent:-150},\\\"3d_rotate\\\":{width:1e3,path:\\\"m922 660c-5 4-9 7-14 11-359 263-580-31-580-31l-102 28 58-400c0 1 1 1 2 2 118 108 351 249 351 249s-62 27-100 42c88 83 222 183 347 122 16-8 30-17 44-27-2 1-4 2-6 4z m36-329c0 0 64 229-88 296-62 27-124 14-175-11 157-78 225-208 249-266 8-19 11-31 11-31 2 5 6 15 11 32-5-13-8-20-8-20z m-775-239c70-31 117-50 198-32-121 80-199 346-199 346l-96-15-58-12c0 0 55-226 155-287z m603 133l-317-139c0 0 4-4 19-14 7-5 24-15 24-15s-177-147-389 4c235-287 536-112 536-112l31-22 100 299-4-1z m-298-153c6-4 14-9 24-15 0 0-17 10-24 15z\\\",ascent:850,descent:-150},camera:{width:1e3,path:\\\"m500 450c-83 0-150-67-150-150 0-83 67-150 150-150 83 0 150 67 150 150 0 83-67 150-150 150z m400 150h-120c-16 0-34 13-39 29l-31 93c-6 15-23 28-40 28h-340c-16 0-34-13-39-28l-31-94c-6-15-23-28-40-28h-120c-55 0-100-45-100-100v-450c0-55 45-100 100-100h800c55 0 100 45 100 100v450c0 55-45 100-100 100z m-400-550c-138 0-250 112-250 250 0 138 112 250 250 250 138 0 250-112 250-250 0-138-112-250-250-250z m365 380c-19 0-35 16-35 35 0 19 16 35 35 35 19 0 35-16 35-35 0-19-16-35-35-35z\\\",ascent:850,descent:-150},movie:{width:1e3,path:\\\"m938 413l-188-125c0 37-17 71-44 94 64 38 107 107 107 187 0 121-98 219-219 219-121 0-219-98-219-219 0-61 25-117 66-156h-115c30 33 49 76 49 125 0 103-84 187-187 187s-188-84-188-187c0-57 26-107 65-141-38-22-65-62-65-109v-250c0-70 56-126 125-126h500c69 0 125 56 125 126l188-126c34 0 62 28 62 63v375c0 35-28 63-62 63z m-750 0c-69 0-125 56-125 125s56 125 125 125 125-56 125-125-56-125-125-125z m406-1c-87 0-157 70-157 157 0 86 70 156 157 156s156-70 156-156-70-157-156-157z\\\",ascent:850,descent:-150},question:{width:857.1,path:\\\"m500 82v107q0 8-5 13t-13 5h-107q-8 0-13-5t-5-13v-107q0-8 5-13t13-5h107q8 0 13 5t5 13z m143 375q0 49-31 91t-77 65-95 23q-136 0-207-119-9-14 4-24l74-55q4-4 10-4 9 0 14 7 30 38 48 51 19 14 48 14 27 0 48-15t21-33q0-21-11-34t-38-25q-35-16-65-48t-29-70v-20q0-8 5-13t13-5h107q8 0 13 5t5 13q0 10 12 27t30 28q18 10 28 16t25 19 25 27 16 34 7 45z m214-107q0-117-57-215t-156-156-215-58-216 58-155 156-58 215 58 215 155 156 216 58 215-58 156-156 57-215z\\\",ascent:850,descent:-150},disk:{width:857.1,path:\\\"m214-7h429v214h-429v-214z m500 0h72v500q0 8-6 21t-11 20l-157 156q-5 6-19 12t-22 5v-232q0-22-15-38t-38-16h-322q-22 0-37 16t-16 38v232h-72v-714h72v232q0 22 16 38t37 16h465q22 0 38-16t15-38v-232z m-214 518v178q0 8-5 13t-13 5h-107q-7 0-13-5t-5-13v-178q0-8 5-13t13-5h107q7 0 13 5t5 13z m357-18v-518q0-22-15-38t-38-16h-750q-23 0-38 16t-16 38v750q0 22 16 38t38 16h517q23 0 50-12t42-26l156-157q16-15 27-42t11-49z\\\",ascent:850,descent:-150},lasso:{width:1031,path:\\\"m1018 538c-36 207-290 336-568 286-277-48-473-256-436-463 10-57 36-108 76-151-13-66 11-137 68-183 34-28 75-41 114-42l-55-70 0 0c-2-1-3-2-4-3-10-14-8-34 5-45 14-11 34-8 45 4 1 1 2 3 2 5l0 0 113 140c16 11 31 24 45 40 4 3 6 7 8 11 48-3 100 0 151 9 278 48 473 255 436 462z m-624-379c-80 14-149 48-197 96 42 42 109 47 156 9 33-26 47-66 41-105z m-187-74c-19 16-33 37-39 60 50-32 109-55 174-68-42-25-95-24-135 8z m360 75c-34-7-69-9-102-8 8 62-16 128-68 170-73 59-175 54-244-5-9 20-16 40-20 61-28 159 121 317 333 354s407-60 434-217c28-159-121-318-333-355z\\\",ascent:850,descent:-150},selectbox:{width:1e3,path:\\\"m0 850l0-143 143 0 0 143-143 0z m286 0l0-143 143 0 0 143-143 0z m285 0l0-143 143 0 0 143-143 0z m286 0l0-143 143 0 0 143-143 0z m-857-286l0-143 143 0 0 143-143 0z m857 0l0-143 143 0 0 143-143 0z m-857-285l0-143 143 0 0 143-143 0z m857 0l0-143 143 0 0 143-143 0z m-857-286l0-143 143 0 0 143-143 0z m286 0l0-143 143 0 0 143-143 0z m285 0l0-143 143 0 0 143-143 0z m286 0l0-143 143 0 0 143-143 0z\\\",ascent:850,descent:-150}}},{}],3:[function(t,e,r){e.exports=t(\\\"../src/traces/bar\\\")},{\\\"../src/traces/bar\\\":453}],4:[function(t,e,r){e.exports=t(\\\"../src/traces/box\\\")},{\\\"../src/traces/box\\\":464}],5:[function(t,e,r){e.exports=t(\\\"../src/traces/choropleth\\\")},{\\\"../src/traces/choropleth\\\":473}],6:[function(t,e,r){e.exports=t(\\\"../src/traces/contour\\\")},{\\\"../src/traces/contour\\\":480}],7:[function(t,e,r){e.exports=t(\\\"../src/core\\\")},{\\\"../src/core\\\":363}],8:[function(t,e,r){e.exports=t(\\\"../src/traces/heatmap\\\")},{\\\"../src/traces/heatmap\\\":492}],9:[function(t,e,r){e.exports=t(\\\"../src/traces/histogram\\\")},{\\\"../src/traces/histogram\\\":503}],10:[function(t,e,r){e.exports=t(\\\"../src/traces/histogram2d\\\")},{\\\"../src/traces/histogram2d\\\":508}],11:[function(t,e,r){e.exports=t(\\\"../src/traces/histogram2dcontour\\\")},{\\\"../src/traces/histogram2dcontour\\\":512}],12:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"./core\\\");n.register([t(\\\"./bar\\\"),t(\\\"./box\\\"),t(\\\"./heatmap\\\"),t(\\\"./histogram\\\"),t(\\\"./histogram2d\\\"),t(\\\"./histogram2dcontour\\\"),t(\\\"./pie\\\"),t(\\\"./contour\\\"),t(\\\"./scatter3d\\\"),t(\\\"./surface\\\"),t(\\\"./mesh3d\\\"),t(\\\"./scattergeo\\\"),t(\\\"./choropleth\\\"),t(\\\"./scattergl\\\")]),e.exports=n},{\\\"./bar\\\":3,\\\"./box\\\":4,\\\"./choropleth\\\":5,\\\"./contour\\\":6,\\\"./core\\\":7,\\\"./heatmap\\\":8,\\\"./histogram\\\":9,\\\"./histogram2d\\\":10,\\\"./histogram2dcontour\\\":11,\\\"./mesh3d\\\":13,\\\"./pie\\\":14,\\\"./scatter3d\\\":15,\\\"./scattergeo\\\":16,\\\"./scattergl\\\":17,\\\"./surface\\\":18}],13:[function(t,e,r){e.exports=t(\\\"../src/traces/mesh3d\\\")},{\\\"../src/traces/mesh3d\\\":516}],14:[function(t,e,r){e.exports=t(\\\"../src/traces/pie\\\")},{\\\"../src/traces/pie\\\":521}],15:[function(t,e,r){e.exports=t(\\\"../src/traces/scatter3d\\\")},{\\\"../src/traces/scatter3d\\\":554}],16:[function(t,e,r){e.exports=t(\\\"../src/traces/scattergeo\\\")},{\\\"../src/traces/scattergeo\\\":558}],17:[function(t,e,r){e.exports=t(\\\"../src/traces/scattergl\\\")},{\\\"../src/traces/scattergl\\\":563}],18:[function(t,e,r){e.exports=t(\\\"../src/traces/surface\\\")},{\\\"../src/traces/surface\\\":569}],19:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){return Math.min(e,Math.max(t,r))}function i(t,e,r){this.dimension=t.length,this.bounds=[new Array(this.dimension),new Array(this.dimension)];for(var n=0;n<this.dimension;++n)this.bounds[0][n]=-(1/0),this.bounds[1][n]=1/0;this._state=t.slice().reverse(),this._velocity=e.slice().reverse(),this._time=[r],this._scratch=[t.slice(),t.slice(),t.slice(),t.slice(),t.slice()]}function o(t){for(var e=new Array(t),r=0;t>r;++r)e[r]=0;return e}function a(t,e,r){switch(arguments.length){case 0:return new i([0],[0],0);case 1:if(\\\"number\\\"==typeof t){var n=o(t);return new i(n,n,0)}return new i(t,o(t.length),0);case 2:if(\\\"number\\\"==typeof e){var n=o(t.length);return new i(t,n,+e)}r=0;case 3:if(t.length!==e.length)throw new Error(\\\"state and velocity lengths must match\\\");return new i(t,e,r)}}e.exports=a;var s=t(\\\"cubic-hermite\\\"),l=t(\\\"binary-search-bounds\\\"),c=i.prototype;c.flush=function(t){var e=l.gt(this._time,t)-1;0>=e||(this._time.splice(0,e),this._state.splice(0,e*this.dimension),this._velocity.splice(0,e*this.dimension))},c.curve=function(t){var e=this._time,r=e.length,i=l.le(e,t),o=this._scratch[0],a=this._state,c=this._velocity,u=this.dimension,h=this.bounds;if(0>i)for(var f=u-1,d=0;u>d;++d,--f)o[d]=a[f];else if(i>=r-1)for(var f=a.length-1,p=t-e[r-1],d=0;u>d;++d,--f)o[d]=a[f]+p*c[f];else{for(var f=u*(i+1)-1,g=e[i],v=e[i+1],m=v-g||1,y=this._scratch[1],b=this._scratch[2],x=this._scratch[3],_=this._scratch[4],w=!0,d=0;u>d;++d,--f)y[d]=a[f],x[d]=c[f]*m,b[d]=a[f+u],_[d]=c[f+u]*m,w=w&&y[d]===b[d]&&x[d]===_[d]&&0===x[d];if(w)for(var d=0;u>d;++d)o[d]=y[d];else s(y,x,b,_,(t-g)/m,o)}for(var A=h[0],k=h[1],d=0;u>d;++d)o[d]=n(A[d],k[d],o[d]);return o},c.dcurve=function(t){var e=this._time,r=e.length,n=l.le(e,t),i=this._scratch[0],o=this._state,a=this._velocity,c=this.dimension;if(n>=r-1)for(var u=o.length-1,h=(t-e[r-1],0);c>h;++h,--u)i[h]=a[u];else{for(var u=c*(n+1)-1,f=e[n],d=e[n+1],p=d-f||1,g=this._scratch[1],v=this._scratch[2],m=this._scratch[3],y=this._scratch[4],b=!0,h=0;c>h;++h,--u)g[h]=o[u],m[h]=a[u]*p,v[h]=o[u+c],y[h]=a[u+c]*p,b=b&&g[h]===v[h]&&m[h]===y[h]&&0===m[h];if(b)for(var h=0;c>h;++h)i[h]=0;else{s.derivative(g,m,v,y,(t-f)/p,i);for(var h=0;c>h;++h)i[h]/=p}}return i},c.lastT=function(){var t=this._time;return t[t.length-1]},c.stable=function(){for(var t=this._velocity,e=t.length,r=this.dimension-1;r>=0;--r)if(t[--e])return!1;return!0},c.jump=function(t){var e=this.lastT(),r=this.dimension;if(!(e>t||arguments.length!==r+1)){var i=this._state,o=this._velocity,a=i.length-this.dimension,s=this.bounds,l=s[0],c=s[1];this._time.push(e,t);for(var u=0;2>u;++u)for(var h=0;r>h;++h)i.push(i[a++]),o.push(0);this._time.push(t);for(var h=r;h>0;--h)i.push(n(l[h-1],c[h-1],arguments[h])),o.push(0)}},c.push=function(t){var e=this.lastT(),r=this.dimension;if(!(e>t||arguments.length!==r+1)){var i=this._state,o=this._velocity,a=i.length-this.dimension,s=t-e,l=this.bounds,c=l[0],u=l[1],h=s>1e-6?1/s:0;this._time.push(t);for(var f=r;f>0;--f){var d=n(c[f-1],u[f-1],arguments[f]);i.push(d),o.push((d-i[a++])*h)}}},c.set=function(t){var e=this.dimension;if(!(t<this.lastT()||arguments.length!==e+1)){var r=this._state,i=this._velocity,o=this.bounds,a=o[0],s=o[1];this._time.push(t);for(var l=e;l>0;--l)r.push(n(a[l-1],s[l-1],arguments[l])),i.push(0)}},c.move=function(t){var e=this.lastT(),r=this.dimension;if(!(e>=t||arguments.length!==r+1)){var i=this._state,o=this._velocity,a=i.length-this.dimension,s=this.bounds,l=s[0],c=s[1],u=t-e,h=u>1e-6?1/u:0;this._time.push(t);for(var f=r;f>0;--f){var d=arguments[f];i.push(n(l[f-1],c[f-1],i[a++]+d)),o.push(d*h)}}},c.idle=function(t){var e=this.lastT();if(!(e>t)){var r=this.dimension,i=this._state,o=this._velocity,a=i.length-r,s=this.bounds,l=s[0],c=s[1],u=t-e;this._time.push(t);for(var h=r-1;h>=0;--h)i.push(n(l[h],c[h],i[a]+u*o[a])),o.push(0),a+=1}}},{\\\"binary-search-bounds\\\":20,\\\"cubic-hermite\\\":21}],20:[function(t,e,r){\\\"use strict\\\";function n(t,e,r,n,i,o){var a=[\\\"function \\\",t,\\\"(a,l,h,\\\",n.join(\\\",\\\"),\\\"){\\\",o?\\\"\\\":\\\"var i=\\\",r?\\\"l-1\\\":\\\"h+1\\\",\\\";while(l<=h){var m=(l+h)>>>1,x=a\\\",i?\\\".get(m)\\\":\\\"[m]\\\"];return o?e.indexOf(\\\"c\\\")<0?a.push(\\\";if(x===y){return m}else if(x<=y){\\\"):a.push(\\\";var p=c(x,y);if(p===0){return m}else if(p<=0){\\\"):a.push(\\\";if(\\\",e,\\\"){i=m;\\\"),r?a.push(\\\"l=m+1}else{h=m-1}\\\"):a.push(\\\"h=m-1}else{l=m+1}\\\"),a.push(\\\"}\\\"),o?a.push(\\\"return -1};\\\"):a.push(\\\"return i};\\\"),a.join(\\\"\\\")}function i(t,e,r,i){var o=new Function([n(\\\"A\\\",\\\"x\\\"+t+\\\"y\\\",e,[\\\"y\\\"],!1,i),n(\\\"B\\\",\\\"x\\\"+t+\\\"y\\\",e,[\\\"y\\\"],!0,i),n(\\\"P\\\",\\\"c(x,y)\\\"+t+\\\"0\\\",e,[\\\"y\\\",\\\"c\\\"],!1,i),n(\\\"Q\\\",\\\"c(x,y)\\\"+t+\\\"0\\\",e,[\\\"y\\\",\\\"c\\\"],!0,i),\\\"function dispatchBsearch\\\",r,\\\"(a,y,c,l,h){if(a.shape){if(typeof(c)==='function'){return Q(a,(l===undefined)?0:l|0,(h===undefined)?a.shape[0]-1:h|0,y,c)}else{return B(a,(c===undefined)?0:c|0,(l===undefined)?a.shape[0]-1:l|0,y)}}else{if(typeof(c)==='function'){return P(a,(l===undefined)?0:l|0,(h===undefined)?a.length-1:h|0,y,c)}else{return A(a,(c===undefined)?0:c|0,(l===undefined)?a.length-1:l|0,y)}}}return dispatchBsearch\\\",r].join(\\\"\\\"));return o()}e.exports={ge:i(\\\">=\\\",!1,\\\"GE\\\"),gt:i(\\\">\\\",!1,\\\"GT\\\"),lt:i(\\\"<\\\",!0,\\\"LT\\\"),le:i(\\\"<=\\\",!0,\\\"LE\\\"),eq:i(\\\"-\\\",!0,\\\"EQ\\\",!0)}},{}],21:[function(t,e,r){\\\"use strict\\\";function n(t,e,r,n,i,o){var a=6*i*i-6*i,s=3*i*i-4*i+1,l=-6*i*i+6*i,c=3*i*i-2*i;if(t.length){o||(o=new Array(t.length));for(var u=t.length-1;u>=0;--u)o[u]=a*t[u]+s*e[u]+l*r[u]+c*n[u];return o}return a*t+s*e+l*r[u]+c*n}function i(t,e,r,n,i,o){var a=i-1,s=i*i,l=a*a,c=(1+2*i)*l,u=i*l,h=s*(3-2*i),f=s*a;if(t.length){o||(o=new Array(t.length));for(var d=t.length-1;d>=0;--d)o[d]=c*t[d]+u*e[d]+h*r[d]+f*n[d];return o}return c*t+u*e+h*r+f*n}e.exports=i,e.exports.derivative=n},{}],22:[function(t,e,r){function n(t,e,r){var n=e[0],i=e[1],o=e[2],a=r[0],s=r[1],l=r[2];return t[0]=i*l-o*s,t[1]=o*a-n*l,t[2]=n*s-i*a,t}e.exports=n},{}],23:[function(t,e,r){function n(t,e){return t[0]*e[0]+t[1]*e[1]+t[2]*e[2]}e.exports=n},{}],24:[function(t,e,r){function n(t){var e=t[0],r=t[1],n=t[2];return Math.sqrt(e*e+r*r+n*n)}e.exports=n},{}],25:[function(t,e,r){function n(t,e,r,n){var i=e[0],o=e[1],a=e[2];return t[0]=i+n*(r[0]-i),t[1]=o+n*(r[1]-o),t[2]=a+n*(r[2]-a),t}e.exports=n},{}],26:[function(t,e,r){function n(t,e){var r=e[0],n=e[1],i=e[2],o=r*r+n*n+i*i;return o>0&&(o=1/Math.sqrt(o),t[0]=e[0]*o,t[1]=e[1]*o,t[2]=e[2]*o),t}e.exports=n},{}],27:[function(t,e,r){\\\"use strict\\\";function n(t){this._components=t.slice(),this._time=[0],this.prevMatrix=t.slice(),this.nextMatrix=t.slice(),this.computedMatrix=t.slice(),this.computedInverse=t.slice(),this.computedEye=[0,0,0],this.computedUp=[0,0,0],this.computedCenter=[0,0,0],this.computedRadius=[0],this._limits=[-(1/0),1/0]}function i(t){t=t||{};var e=t.matrix||[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1];return new n(e)}var o=t(\\\"binary-search-bounds\\\"),a=t(\\\"mat4-interpolate\\\"),s=t(\\\"gl-mat4/invert\\\"),l=t(\\\"gl-mat4/rotateX\\\"),c=t(\\\"gl-mat4/rotateY\\\"),u=t(\\\"gl-mat4/rotateZ\\\"),h=t(\\\"gl-mat4/lookAt\\\"),f=t(\\\"gl-mat4/translate\\\"),d=(t(\\\"gl-mat4/scale\\\"),t(\\\"gl-vec3/normalize\\\")),p=[0,0,0];e.exports=i;var g=n.prototype;g.recalcMatrix=function(t){var e=this._time,r=o.le(e,t),n=this.computedMatrix;if(!(0>r)){var i=this._components;if(r===e.length-1)for(var l=16*r,c=0;16>c;++c)n[c]=i[l++];else{for(var u=e[r+1]-e[r],l=16*r,h=this.prevMatrix,f=!0,c=0;16>c;++c)h[c]=i[l++];for(var p=this.nextMatrix,c=0;16>c;++c)p[c]=i[l++],f=f&&h[c]===p[c];if(1e-6>u||f)for(var c=0;16>c;++c)n[c]=h[c];else a(n,h,p,(t-e[r])/u)}var g=this.computedUp;g[0]=n[1],g[1]=n[5],g[2]=n[6],d(g,g);var v=this.computedInverse;s(v,n);var m=this.computedEye,y=v[15];m[0]=v[12]/y,m[1]=v[13]/y,m[2]=v[14]/y;for(var b=this.computedCenter,x=Math.exp(this.computedRadius[0]),c=0;3>c;++c)b[c]=m[c]-n[2+4*c]*x}},g.idle=function(t){if(!(t<this.lastT())){for(var e=this._components,r=e.length-16,n=0;16>n;++n)e.push(e[r++]);this._time.push(t)}},g.flush=function(t){var e=o.gt(this._time,t)-2;0>e||(this._time.slice(0,e),this._components.slice(0,16*e))},g.lastT=function(){return this._time[this._time.length-1]},g.lookAt=function(t,e,r,n){this.recalcMatrix(t),e=e||this.computedEye,r=r||p,n=n||this.computedUp,this.setMatrix(t,h(this.computedMatrix,e,r,n));for(var i=0,o=0;3>o;++o)i+=Math.pow(r[o]-e[o],2);i=Math.log(Math.sqrt(i)),this.computedRadius[0]=i},g.rotate=function(t,e,r,n){this.recalcMatrix(t);var i=this.computedInverse;e&&c(i,i,e),r&&l(i,i,r),n&&u(i,i,n),this.setMatrix(t,s(this.computedMatrix,i))};var v=[0,0,0];g.pan=function(t,e,r,n){v[0]=-(e||0),v[1]=-(r||0),v[2]=-(n||0),this.recalcMatrix(t);var i=this.computedInverse;f(i,i,v),this.setMatrix(t,s(i,i))},g.translate=function(t,e,r,n){v[0]=e||0,v[1]=r||0,v[2]=n||0,this.recalcMatrix(t);var i=this.computedMatrix;f(i,i,v),this.setMatrix(t,i)},g.setMatrix=function(t,e){if(!(t<this.lastT())){this._time.push(t);for(var r=0;16>r;++r)this._components.push(e[r])}},g.setDistance=function(t,e){this.computedRadius[0]=e},g.setDistanceLimits=function(t,e){var r=this._limits;r[0]=t,r[1]=e},g.getDistanceLimits=function(t){var e=this._limits;return t?(t[0]=e[0],t[1]=e[1],t):e}},{\\\"binary-search-bounds\\\":28,\\\"gl-mat4/invert\\\":94,\\\"gl-mat4/lookAt\\\":95,\\\"gl-mat4/rotateX\\\":99,\\\"gl-mat4/rotateY\\\":100,\\\"gl-mat4/rotateZ\\\":101,\\\"gl-mat4/scale\\\":102,\\\"gl-mat4/translate\\\":103,\\\"gl-vec3/normalize\\\":26,\\\"mat4-interpolate\\\":29}],28:[function(t,e,r){arguments[4][20][0].apply(r,arguments)},{dup:20}],29:[function(t,e,r){function n(t,e,r,n){if(0===u(e)||0===u(r))return!1;var i=c(e,f.translate,f.scale,f.skew,f.perspective,f.quaternion),o=c(r,d.translate,d.scale,d.skew,d.perspective,d.quaternion);return i&&o?(s(p.translate,f.translate,d.translate,n),s(p.skew,f.skew,d.skew,n),s(p.scale,f.scale,d.scale,n),s(p.perspective,f.perspective,d.perspective,n),h(p.quaternion,f.quaternion,d.quaternion,n),l(t,p.translate,p.scale,p.skew,p.perspective,p.quaternion),!0):!1}function i(){return{translate:o(),scale:o(1),skew:o(),perspective:a(),quaternion:a()}}function o(t){return[t||0,t||0,t||0]}function a(){return[0,0,0,1]}var s=t(\\\"gl-vec3/lerp\\\"),l=t(\\\"mat4-recompose\\\"),c=t(\\\"mat4-decompose\\\"),u=t(\\\"gl-mat4/determinant\\\"),h=t(\\\"quat-slerp\\\"),f=i(),d=i(),p=i();e.exports=n},{\\\"gl-mat4/determinant\\\":90,\\\"gl-vec3/lerp\\\":25,\\\"mat4-decompose\\\":30,\\\"mat4-recompose\\\":32,\\\"quat-slerp\\\":33}],30:[function(t,e,r){function n(t,e,r){var n=e[0],i=e[1],o=e[2],a=e[3];return t[0]=r[0]*n+r[4]*i+r[8]*o+r[12]*a,t[1]=r[1]*n+r[5]*i+r[9]*o+r[13]*a,t[2]=r[2]*n+r[6]*i+r[10]*o+r[14]*a,t[3]=r[3]*n+r[7]*i+r[11]*o+r[15]*a,t}function i(t,e){t[0][0]=e[0],t[0][1]=e[1],t[0][2]=e[2],t[1][0]=e[4],t[1][1]=e[5],t[1][2]=e[6],t[2][0]=e[8],t[2][1]=e[9],t[2][2]=e[10]}function o(t,e,r,n,i){t[0]=e[0]*n+r[0]*i,t[1]=e[1]*n+r[1]*i,t[2]=e[2]*n+r[2]*i}var a=t(\\\"./normalize\\\"),s=t(\\\"gl-mat4/create\\\"),l=t(\\\"gl-mat4/clone\\\"),c=t(\\\"gl-mat4/determinant\\\"),u=t(\\\"gl-mat4/invert\\\"),h=t(\\\"gl-mat4/transpose\\\"),f={length:t(\\\"gl-vec3/length\\\"),normalize:t(\\\"gl-vec3/normalize\\\"),dot:t(\\\"gl-vec3/dot\\\"),cross:t(\\\"gl-vec3/cross\\\")},d=s(),p=s(),g=[0,0,0,0],v=[[0,0,0],[0,0,0],[0,0,0]],m=[0,0,0];e.exports=function(t,e,r,s,y,b){if(e||(e=[0,0,0]),r||(r=[0,0,0]),s||(s=[0,0,0]),y||(y=[0,0,0,1]),b||(b=[0,0,0,1]),!a(d,t))return!1;if(l(p,d),p[3]=0,p[7]=0,p[11]=0,p[15]=1,Math.abs(c(p)<1e-8))return!1;var x=d[3],_=d[7],w=d[11],A=d[12],k=d[13],M=d[14],T=d[15];if(0!==x||0!==_||0!==w){g[0]=x,g[1]=_,g[2]=w,g[3]=T;var E=u(p,p);if(!E)return!1;h(p,p),n(y,g,p)}else y[0]=y[1]=y[2]=0,y[3]=1;if(e[0]=A,e[1]=k,e[2]=M,i(v,d),r[0]=f.length(v[0]),f.normalize(v[0],v[0]),s[0]=f.dot(v[0],v[1]),o(v[1],v[1],v[0],1,-s[0]),r[1]=f.length(v[1]),f.normalize(v[1],v[1]),s[0]/=r[1],s[1]=f.dot(v[0],v[2]),o(v[2],v[2],v[0],1,-s[1]),s[2]=f.dot(v[1],v[2]),o(v[2],v[2],v[1],1,-s[2]),r[2]=f.length(v[2]),f.normalize(v[2],v[2]),s[1]/=r[2],s[2]/=r[2],f.cross(m,v[1],v[2]),f.dot(v[0],m)<0)for(var L=0;3>L;L++)r[L]*=-1,v[L][0]*=-1,v[L][1]*=-1,v[L][2]*=-1;return b[0]=.5*Math.sqrt(Math.max(1+v[0][0]-v[1][1]-v[2][2],0)),b[1]=.5*Math.sqrt(Math.max(1-v[0][0]+v[1][1]-v[2][2],0)),b[2]=.5*Math.sqrt(Math.max(1-v[0][0]-v[1][1]+v[2][2],0)),b[3]=.5*Math.sqrt(Math.max(1+v[0][0]+v[1][1]+v[2][2],0)),v[2][1]>v[1][2]&&(b[0]=-b[0]),v[0][2]>v[2][0]&&(b[1]=-b[1]),v[1][0]>v[0][1]&&(b[2]=-b[2]),!0}},{\\\"./normalize\\\":31,\\\"gl-mat4/clone\\\":88,\\\"gl-mat4/create\\\":89,\\\"gl-mat4/determinant\\\":90,\\\"gl-mat4/invert\\\":94,\\\"gl-mat4/transpose\\\":104,\\\"gl-vec3/cross\\\":22,\\\"gl-vec3/dot\\\":23,\\\"gl-vec3/length\\\":24,\\\"gl-vec3/normalize\\\":26}],31:[function(t,e,r){e.exports=function(t,e){var r=e[15];if(0===r)return!1;for(var n=1/r,i=0;16>i;i++)t[i]=e[i]*n;return!0}},{}],32:[function(t,e,r){var n={identity:t(\\\"gl-mat4/identity\\\"),translate:t(\\\"gl-mat4/translate\\\"),multiply:t(\\\"gl-mat4/multiply\\\"),create:t(\\\"gl-mat4/create\\\"),scale:t(\\\"gl-mat4/scale\\\"),fromRotationTranslation:t(\\\"gl-mat4/fromRotationTranslation\\\")},i=(n.create(),n.create());e.exports=function(t,e,r,o,a,s){return n.identity(t),n.fromRotationTranslation(t,s,e),t[3]=a[0],t[7]=a[1],t[11]=a[2],t[15]=a[3],n.identity(i),0!==o[2]&&(i[9]=o[2],n.multiply(t,t,i)),0!==o[1]&&(i[9]=0,i[8]=o[1],n.multiply(t,t,i)),0!==o[0]&&(i[8]=0,i[4]=o[0],n.multiply(t,t,i)),n.scale(t,t,r),t}},{\\\"gl-mat4/create\\\":89,\\\"gl-mat4/fromRotationTranslation\\\":92,\\\"gl-mat4/identity\\\":93,\\\"gl-mat4/multiply\\\":96,\\\"gl-mat4/scale\\\":102,\\\"gl-mat4/translate\\\":103}],33:[function(t,e,r){e.exports=t(\\\"gl-quat/slerp\\\")},{\\\"gl-quat/slerp\\\":34}],34:[function(t,e,r){function n(t,e,r,n){var i,o,a,s,l,c=e[0],u=e[1],h=e[2],f=e[3],d=r[0],p=r[1],g=r[2],v=r[3];return o=c*d+u*p+h*g+f*v,0>o&&(o=-o,d=-d,p=-p,g=-g,v=-v),1-o>1e-6?(i=Math.acos(o),a=Math.sin(i),s=Math.sin((1-n)*i)/a,l=Math.sin(n*i)/a):(s=1-n,l=n),t[0]=s*c+l*d,t[1]=s*u+l*p,t[2]=s*h+l*g,t[3]=s*f+l*v,t}e.exports=n},{}],35:[function(t,e,r){\\\"use strict\\\";function n(t,e,r,n,i,o,a,s,l,c){var u=e+o+c;if(h>0){var h=Math.sqrt(u+1);t[0]=.5*(a-l)/h,t[1]=.5*(s-n)/h,t[2]=.5*(r-o)/h,t[3]=.5*h}else{var f=Math.max(e,o,c),h=Math.sqrt(2*f-u+1);e>=f?(t[0]=.5*h,t[1]=.5*(i+r)/h,t[2]=.5*(s+n)/h,t[3]=.5*(a-l)/h):o>=f?(t[0]=.5*(r+i)/h,t[1]=.5*h,t[2]=.5*(l+a)/h,t[3]=.5*(s-n)/h):(t[0]=.5*(n+s)/h,t[1]=.5*(a+l)/h,t[2]=.5*h,t[3]=.5*(r-i)/h)}return t}e.exports=n},{}],36:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){return Math.sqrt(Math.pow(t,2)+Math.pow(e,2)+Math.pow(r,2))}function i(t,e,r,n){return Math.sqrt(Math.pow(t,2)+Math.pow(e,2)+Math.pow(r,2)+Math.pow(n,2))}function o(t,e){var r=e[0],n=e[1],o=e[2],a=e[3],s=i(r,n,o,a);s>1e-6?(t[0]=r/s,t[1]=n/s,t[2]=o/s,t[3]=a/s):(t[0]=t[1]=t[2]=0,t[3]=1)}function a(t,e,r){this.radius=l([r]),this.center=l(e),this.rotation=l(t),this.computedRadius=this.radius.curve(0),this.computedCenter=this.center.curve(0),this.computedRotation=this.rotation.curve(0),this.computedUp=[.1,0,0],this.computedEye=[.1,0,0],this.computedMatrix=[.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],this.recalcMatrix(0)}function s(t){t=t||{};var e=t.center||[0,0,0],r=t.rotation||[0,0,0,1],n=t.radius||1;e=[].slice.call(e,0,3),r=[].slice.call(r,0,4),o(r,r);var i=new a(r,e,Math.log(n));return i.setDistanceLimits(t.zoomMin,t.zoomMax),(\\\"eye\\\"in t||\\\"up\\\"in t)&&i.lookAt(0,t.eye,t.center,t.up),i}e.exports=s;var l=t(\\\"filtered-vector\\\"),c=t(\\\"gl-mat4/lookAt\\\"),u=t(\\\"gl-mat4/fromQuat\\\"),h=t(\\\"gl-mat4/invert\\\"),f=t(\\\"./lib/quatFromFrame\\\"),d=a.prototype;d.lastT=function(){return Math.max(this.radius.lastT(),this.center.lastT(),this.rotation.lastT())},d.recalcMatrix=function(t){this.radius.curve(t),this.center.curve(t),this.rotation.curve(t);var e=this.computedRotation;o(e,e);var r=this.computedMatrix;u(r,e);var n=this.computedCenter,i=this.computedEye,a=this.computedUp,s=Math.exp(this.computedRadius[0]);i[0]=n[0]+s*r[2],i[1]=n[1]+s*r[6],i[2]=n[2]+s*r[10],a[0]=r[1],a[1]=r[5],a[2]=r[9];for(var l=0;3>l;++l){for(var c=0,h=0;3>h;++h)c+=r[l+4*h]*i[h];r[12+l]=-c}},d.getMatrix=function(t,e){this.recalcMatrix(t);var r=this.computedMatrix;if(e){for(var n=0;16>n;++n)e[n]=r[n];return e}return r},d.idle=function(t){this.center.idle(t),this.radius.idle(t),this.rotation.idle(t)},d.flush=function(t){this.center.flush(t),this.radius.flush(t),this.rotation.flush(t)},d.pan=function(t,e,r,i){e=e||0,r=r||0,i=i||0,this.recalcMatrix(t);var o=this.computedMatrix,a=o[1],s=o[5],l=o[9],c=n(a,s,l);a/=c,s/=c,l/=c;var u=o[0],h=o[4],f=o[8],d=u*a+h*s+f*l;u-=a*d,h-=s*d,f-=l*d;var p=n(u,h,f);u/=p,h/=p,f/=p;var g=o[2],v=o[6],m=o[10],y=g*a+v*s+m*l,b=g*u+v*h+m*f;g-=y*a+b*u,v-=y*s+b*h,m-=y*l+b*f;var x=n(g,v,m);g/=x,v/=x,m/=x;var _=u*e+a*r,w=h*e+s*r,A=f*e+l*r;this.center.move(t,_,w,A);var k=Math.exp(this.computedRadius[0]);k=Math.max(1e-4,k+i),this.radius.set(t,Math.log(k))},d.rotate=function(t,e,r,o){this.recalcMatrix(t),e=e||0,r=r||0;var a=this.computedMatrix,s=a[0],l=a[4],c=a[8],u=a[1],h=a[5],f=a[9],d=a[2],p=a[6],g=a[10],v=e*s+r*u,m=e*l+r*h,y=e*c+r*f,b=-(p*y-g*m),x=-(g*v-d*y),_=-(d*m-p*v),w=Math.sqrt(Math.max(0,1-Math.pow(b,2)-Math.pow(x,2)-Math.pow(_,2))),A=i(b,x,_,w);A>1e-6?(b/=A,x/=A,_/=A,w/=A):(b=x=_=0,w=1);var k=this.computedRotation,M=k[0],T=k[1],E=k[2],L=k[3],S=M*w+L*b+T*_-E*x,C=T*w+L*x+E*b-M*_,P=E*w+L*_+M*x-T*b,z=L*w-M*b-T*x-E*_;if(o){b=d,x=p,_=g;var R=Math.sin(o)/n(b,x,_);b*=R,x*=R,_*=R,w=Math.cos(e),S=S*w+z*b+C*_-P*x,C=C*w+z*x+P*b-S*_,P=P*w+z*_+S*x-C*b,z=z*w-S*b-C*x-P*_}var O=i(S,C,P,z);O>1e-6?(S/=O,C/=O,P/=O,z/=O):(S=C=P=0,z=1),this.rotation.set(t,S,C,P,z)},d.lookAt=function(t,e,r,n){this.recalcMatrix(t),r=r||this.computedCenter,e=e||this.computedEye,n=n||this.computedUp;var i=this.computedMatrix;c(i,e,r,n);var a=this.computedRotation;f(a,i[0],i[1],i[2],i[4],i[5],i[6],i[8],i[9],i[10]),o(a,a),this.rotation.set(t,a[0],a[1],a[2],a[3]);for(var s=0,l=0;3>l;++l)s+=Math.pow(r[l]-e[l],2);this.radius.set(t,.5*Math.log(Math.max(s,1e-6))),this.center.set(t,r[0],r[1],r[2])},d.translate=function(t,e,r,n){this.center.move(t,e||0,r||0,n||0)},d.setMatrix=function(t,e){var r=this.computedRotation;f(r,e[0],e[1],e[2],e[4],e[5],e[6],e[8],e[9],e[10]),o(r,r),this.rotation.set(t,r[0],r[1],r[2],r[3]);var n=this.computedMatrix;h(n,e);var i=n[15];if(Math.abs(i)>1e-6){var a=n[12]/i,s=n[13]/i,l=n[14]/i;this.recalcMatrix(t);var c=Math.exp(this.computedRadius[0]);this.center.set(t,a-n[2]*c,s-n[6]*c,l-n[10]*c),this.radius.idle(t)}else this.center.idle(t),this.radius.idle(t)},d.setDistance=function(t,e){e>0&&this.radius.set(t,Math.log(e))},d.setDistanceLimits=function(t,e){t=t>0?Math.log(t):-(1/0),e=e>0?Math.log(e):1/0,e=Math.max(e,t),this.radius.bounds[0][0]=t,this.radius.bounds[1][0]=e},d.getDistanceLimits=function(t){var e=this.radius.bounds;return t?(t[0]=Math.exp(e[0][0]),t[1]=Math.exp(e[1][0]),t):[Math.exp(e[0][0]),Math.exp(e[1][0])]},d.toJSON=function(){return this.recalcMatrix(this.lastT()),\\n\",\n       \"{center:this.computedCenter.slice(),rotation:this.computedRotation.slice(),distance:Math.log(this.computedRadius[0]),zoomMin:this.radius.bounds[0][0],zoomMax:this.radius.bounds[1][0]}},d.fromJSON=function(t){var e=this.lastT(),r=t.center;r&&this.center.set(e,r[0],r[1],r[2]);var n=t.rotation;n&&this.rotation.set(e,n[0],n[1],n[2],n[3]);var i=t.distance;i&&i>0&&this.radius.set(e,Math.log(i)),this.setDistanceLimits(t.zoomMin,t.zoomMax)}},{\\\"./lib/quatFromFrame\\\":35,\\\"filtered-vector\\\":19,\\\"gl-mat4/fromQuat\\\":91,\\\"gl-mat4/invert\\\":94,\\\"gl-mat4/lookAt\\\":95}],37:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){return Math.sqrt(Math.pow(t,2)+Math.pow(e,2)+Math.pow(r,2))}function i(t){return Math.min(1,Math.max(-1,t))}function o(t){var e=Math.abs(t[0]),r=Math.abs(t[1]),n=Math.abs(t[2]),i=[0,0,0];e>Math.max(r,n)?i[2]=1:r>Math.max(e,n)?i[0]=1:i[1]=1;for(var o=0,a=0,s=0;3>s;++s)o+=t[s]*t[s],a+=i[s]*t[s];for(var s=0;3>s;++s)i[s]-=a/o*t[s];return f(i,i),i}function a(t,e,r,n,i,o,a,s){this.center=l(r),this.up=l(n),this.right=l(i),this.radius=l([o]),this.angle=l([a,s]),this.angle.bounds=[[-(1/0),-Math.PI/2],[1/0,Math.PI/2]],this.setDistanceLimits(t,e),this.computedCenter=this.center.curve(0),this.computedUp=this.up.curve(0),this.computedRight=this.right.curve(0),this.computedRadius=this.radius.curve(0),this.computedAngle=this.angle.curve(0),this.computedToward=[0,0,0],this.computedEye=[0,0,0],this.computedMatrix=new Array(16);for(var c=0;16>c;++c)this.computedMatrix[c]=.5;this.recalcMatrix(0)}function s(t){t=t||{};var e=t.center||[0,0,0],r=t.up||[0,1,0],i=t.right||o(r),s=t.radius||1,l=t.theta||0,c=t.phi||0;if(e=[].slice.call(e,0,3),r=[].slice.call(r,0,3),f(r,r),i=[].slice.call(i,0,3),f(i,i),\\\"eye\\\"in t){var u=t.eye,p=[u[0]-e[0],u[1]-e[1],u[2]-e[2]];h(i,p,r),n(i[0],i[1],i[2])<1e-6?i=o(r):f(i,i),s=n(p[0],p[1],p[2]);var g=d(r,p)/s,v=d(i,p)/s;c=Math.acos(g),l=Math.acos(v)}return s=Math.log(s),new a(t.zoomMin,t.zoomMax,e,r,i,s,l,c)}e.exports=s;var l=t(\\\"filtered-vector\\\"),c=t(\\\"gl-mat4/invert\\\"),u=t(\\\"gl-mat4/rotate\\\"),h=t(\\\"gl-vec3/cross\\\"),f=t(\\\"gl-vec3/normalize\\\"),d=t(\\\"gl-vec3/dot\\\"),p=a.prototype;p.setDistanceLimits=function(t,e){t=t>0?Math.log(t):-(1/0),e=e>0?Math.log(e):1/0,e=Math.max(e,t),this.radius.bounds[0][0]=t,this.radius.bounds[1][0]=e},p.getDistanceLimits=function(t){var e=this.radius.bounds[0];return t?(t[0]=Math.exp(e[0][0]),t[1]=Math.exp(e[1][0]),t):[Math.exp(e[0][0]),Math.exp(e[1][0])]},p.recalcMatrix=function(t){this.center.curve(t),this.up.curve(t),this.right.curve(t),this.radius.curve(t),this.angle.curve(t);for(var e=this.computedUp,r=this.computedRight,i=0,o=0,a=0;3>a;++a)o+=e[a]*r[a],i+=e[a]*e[a];for(var s=Math.sqrt(i),l=0,a=0;3>a;++a)r[a]-=e[a]*o/i,l+=r[a]*r[a],e[a]/=s;for(var c=Math.sqrt(l),a=0;3>a;++a)r[a]/=c;var u=this.computedToward;h(u,e,r),f(u,u);for(var d=Math.exp(this.computedRadius[0]),p=this.computedAngle[0],g=this.computedAngle[1],v=Math.cos(p),m=Math.sin(p),y=Math.cos(g),b=Math.sin(g),x=this.computedCenter,_=v*y,w=m*y,A=b,k=-v*b,M=-m*b,T=y,E=this.computedEye,L=this.computedMatrix,a=0;3>a;++a){var S=_*r[a]+w*u[a]+A*e[a];L[4*a+1]=k*r[a]+M*u[a]+T*e[a],L[4*a+2]=S,L[4*a+3]=0}var C=L[1],P=L[5],z=L[9],R=L[2],O=L[6],I=L[10],N=P*I-z*O,j=z*R-C*I,F=C*O-P*R,D=n(N,j,F);N/=D,j/=D,F/=D,L[0]=N,L[4]=j,L[8]=F;for(var a=0;3>a;++a)E[a]=x[a]+L[2+4*a]*d;for(var a=0;3>a;++a){for(var l=0,B=0;3>B;++B)l+=L[a+4*B]*E[B];L[12+a]=-l}L[15]=1},p.getMatrix=function(t,e){this.recalcMatrix(t);var r=this.computedMatrix;if(e){for(var n=0;16>n;++n)e[n]=r[n];return e}return r};var g=[0,0,0];p.rotate=function(t,e,r,n){if(this.angle.move(t,e,r),n){this.recalcMatrix(t);var i=this.computedMatrix;g[0]=i[2],g[1]=i[6],g[2]=i[10];for(var o=this.computedUp,a=this.computedRight,s=this.computedToward,l=0;3>l;++l)i[4*l]=o[l],i[4*l+1]=a[l],i[4*l+2]=s[l];u(i,i,n,g);for(var l=0;3>l;++l)o[l]=i[4*l],a[l]=i[4*l+1];this.up.set(t,o[0],o[1],o[2]),this.right.set(t,a[0],a[1],a[2])}},p.pan=function(t,e,r,i){e=e||0,r=r||0,i=i||0,this.recalcMatrix(t);var o=this.computedMatrix,a=(Math.exp(this.computedRadius[0]),o[1]),s=o[5],l=o[9],c=n(a,s,l);a/=c,s/=c,l/=c;var u=o[0],h=o[4],f=o[8],d=u*a+h*s+f*l;u-=a*d,h-=s*d,f-=l*d;var p=n(u,h,f);u/=p,h/=p,f/=p;var g=u*e+a*r,v=h*e+s*r,m=f*e+l*r;this.center.move(t,g,v,m);var y=Math.exp(this.computedRadius[0]);y=Math.max(1e-4,y+i),this.radius.set(t,Math.log(y))},p.translate=function(t,e,r,n){this.center.move(t,e||0,r||0,n||0)},p.setMatrix=function(t,e,r,o){var a=1;\\\"number\\\"==typeof r&&(a=0|r),(0>a||a>3)&&(a=1);var s=(a+2)%3;e||(this.recalcMatrix(t),e=this.computedMatrix);var l=e[a],u=e[a+4],h=e[a+8];if(o){var f=Math.abs(l),d=Math.abs(u),p=Math.abs(h),g=Math.max(f,d,p);f===g?(l=0>l?-1:1,u=h=0):p===g?(h=0>h?-1:1,l=u=0):(u=0>u?-1:1,l=h=0)}else{var v=n(l,u,h);l/=v,u/=v,h/=v}var m=e[s],y=e[s+4],b=e[s+8],x=m*l+y*u+b*h;m-=l*x,y-=u*x,b-=h*x;var _=n(m,y,b);m/=_,y/=_,b/=_;var w=u*b-h*y,A=h*m-l*b,k=l*y-u*m,M=n(w,A,k);w/=M,A/=M,k/=M,this.center.jump(t,H,G,Y),this.radius.idle(t),this.up.jump(t,l,u,h),this.right.jump(t,m,y,b);var T,E;if(2===a){var L=e[1],S=e[5],C=e[9],P=L*m+S*y+C*b,z=L*w+S*A+C*k;T=0>N?-Math.PI/2:Math.PI/2,E=Math.atan2(z,P)}else{var R=e[2],O=e[6],I=e[10],N=R*l+O*u+I*h,j=R*m+O*y+I*b,F=R*w+O*A+I*k;T=Math.asin(i(N)),E=Math.atan2(F,j)}this.angle.jump(t,E,T),this.recalcMatrix(t);var D=e[2],B=e[6],U=e[10],V=this.computedMatrix;c(V,e);var q=V[15],H=V[12]/q,G=V[13]/q,Y=V[14]/q,X=Math.exp(this.computedRadius[0]);this.center.jump(t,H-D*X,G-B*X,Y-U*X)},p.lastT=function(){return Math.max(this.center.lastT(),this.up.lastT(),this.right.lastT(),this.radius.lastT(),this.angle.lastT())},p.idle=function(t){this.center.idle(t),this.up.idle(t),this.right.idle(t),this.radius.idle(t),this.angle.idle(t)},p.flush=function(t){this.center.flush(t),this.up.flush(t),this.right.flush(t),this.radius.flush(t),this.angle.flush(t)},p.setDistance=function(t,e){e>0&&this.radius.set(t,Math.log(e))},p.lookAt=function(t,e,r,o){this.recalcMatrix(t),e=e||this.computedEye,r=r||this.computedCenter,o=o||this.computedUp;var a=o[0],s=o[1],l=o[2],c=n(a,s,l);if(!(1e-6>c)){a/=c,s/=c,l/=c;var u=e[0]-r[0],h=e[1]-r[1],f=e[2]-r[2],d=n(u,h,f);if(!(1e-6>d)){u/=d,h/=d,f/=d;var p=this.computedRight,g=p[0],v=p[1],m=p[2],y=a*g+s*v+l*m;g-=y*a,v-=y*s,m-=y*l;var b=n(g,v,m);if(!(.01>b&&(g=s*f-l*h,v=l*u-a*f,m=a*h-s*u,b=n(g,v,m),1e-6>b))){g/=b,v/=b,m/=b,this.up.set(t,a,s,l),this.right.set(t,g,v,m),this.center.set(t,r[0],r[1],r[2]),this.radius.set(t,Math.log(d));var x=s*m-l*v,_=l*g-a*m,w=a*v-s*g,A=n(x,_,w);x/=A,_/=A,w/=A;var k=a*u+s*h+l*f,M=g*u+v*h+m*f,T=x*u+_*h+w*f,E=Math.asin(i(k)),L=Math.atan2(T,M),S=this.angle._state,C=S[S.length-1],P=S[S.length-2];C%=2*Math.PI;var z=Math.abs(C+2*Math.PI-L),R=Math.abs(C-L),O=Math.abs(C-2*Math.PI-L);R>z&&(C+=2*Math.PI),R>O&&(C-=2*Math.PI),this.angle.jump(this.angle.lastT(),C,P),this.angle.set(t,L,E)}}}}},{\\\"filtered-vector\\\":19,\\\"gl-mat4/invert\\\":94,\\\"gl-mat4/rotate\\\":98,\\\"gl-vec3/cross\\\":22,\\\"gl-vec3/dot\\\":23,\\\"gl-vec3/normalize\\\":26}],38:[function(t,e,r){\\\"use strict\\\";function n(t,e){this._controllerNames=Object.keys(t),this._controllerList=this._controllerNames.map(function(e){return t[e]}),this._mode=e,this._active=t[e],this._active||(this._mode=\\\"turntable\\\",this._active=t.turntable),this.modes=this._controllerNames,this.computedMatrix=this._active.computedMatrix,this.computedEye=this._active.computedEye,this.computedUp=this._active.computedUp,this.computedCenter=this._active.computedCenter,this.computedRadius=this._active.computedRadius}function i(t){t=t||{};var e=t.eye||[0,0,1],r=t.center||[0,0,0],i=t.up||[0,1,0],l=t.distanceLimits||[0,1/0],c=t.mode||\\\"turntable\\\",u=o(),h=a(),f=s();return u.setDistanceLimits(l[0],l[1]),u.lookAt(0,e,r,i),h.setDistanceLimits(l[0],l[1]),h.lookAt(0,e,r,i),f.setDistanceLimits(l[0],l[1]),f.lookAt(0,e,r,i),new n({turntable:u,orbit:h,matrix:f},c)}e.exports=i;var o=t(\\\"turntable-camera-controller\\\"),a=t(\\\"orbit-camera-controller\\\"),s=t(\\\"matrix-camera-controller\\\"),l=n.prototype,c=[[\\\"flush\\\",1],[\\\"idle\\\",1],[\\\"lookAt\\\",4],[\\\"rotate\\\",4],[\\\"pan\\\",4],[\\\"translate\\\",4],[\\\"setMatrix\\\",2],[\\\"setDistanceLimits\\\",2],[\\\"setDistance\\\",2]];c.forEach(function(t){for(var e=t[0],r=[],n=0;n<t[1];++n)r.push(\\\"a\\\"+n);var i=\\\"var cc=this._controllerList;for(var i=0;i<cc.length;++i){cc[i].\\\"+t[0]+\\\"(\\\"+r.join()+\\\")}\\\";l[e]=Function.apply(null,r.concat(i))}),l.recalcMatrix=function(t){this._active.recalcMatrix(t)},l.getDistance=function(t){return this._active.getDistance(t)},l.getDistanceLimits=function(t){return this._active.getDistanceLimits(t)},l.lastT=function(){return this._active.lastT()},l.setMode=function(t){if(t!==this._mode){var e=this._controllerNames.indexOf(t);if(!(0>e)){var r=this._active,n=this._controllerList[e],i=Math.max(r.lastT(),n.lastT());r.recalcMatrix(i),n.setMatrix(i,r.computedMatrix),this._active=n,this._mode=t,this.computedMatrix=this._active.computedMatrix,this.computedEye=this._active.computedEye,this.computedUp=this._active.computedUp,this.computedCenter=this._active.computedCenter,this.computedRadius=this._active.computedRadius}}},l.getMode=function(){return this._mode}},{\\\"matrix-camera-controller\\\":27,\\\"orbit-camera-controller\\\":36,\\\"turntable-camera-controller\\\":37}],39:[function(t,e,r){function n(t,e){return o(i(t,e))}e.exports=n;var i=t(\\\"alpha-complex\\\"),o=t(\\\"simplicial-complex-boundary\\\")},{\\\"alpha-complex\\\":40,\\\"simplicial-complex-boundary\\\":43}],40:[function(t,e,r){\\\"use strict\\\";function n(t,e){return i(e).filter(function(r){for(var n=new Array(r.length),i=0;i<r.length;++i)n[i]=e[r[i]];return o(n)*t<1})}e.exports=n;var i=t(\\\"delaunay-triangulate\\\"),o=t(\\\"circumradius\\\")},{circumradius:41,\\\"delaunay-triangulate\\\":71}],41:[function(t,e,r){function n(t){for(var e=i(t),r=0,n=0;n<t.length;++n)for(var o=t[n],a=0;a<e.length;++a)r+=Math.pow(o[a]-e[a],2);return Math.sqrt(r/t.length)}e.exports=n;var i=t(\\\"circumcenter\\\")},{circumcenter:42}],42:[function(t,e,r){\\\"use strict\\\";function n(t,e){for(var r=0,n=t.length,i=0;n>i;++i)r+=t[i]*e[i];return r}function i(t){var e=t.length;if(0===e)return[];var r=(t[0].length,a([t.length+1,t.length+1],1)),i=a([t.length+1],1);r[e][e]=0;for(var o=0;e>o;++o){for(var l=0;o>=l;++l)r[l][o]=r[o][l]=2*n(t[o],t[l]);i[o]=n(t[o],t[o])}for(var c=s(r,i),u=0,h=c[e+1],o=0;o<h.length;++o)u+=h[o];for(var f=new Array(e),o=0;e>o;++o){for(var h=c[o],d=0,l=0;l<h.length;++l)d+=h[l];f[o]=d/u}return f}function o(t){if(0===t.length)return[];for(var e=t[0].length,r=a([e]),n=i(t),o=0;o<t.length;++o)for(var s=0;e>s;++s)r[s]+=t[o][s]*n[o];return r}var a=t(\\\"dup\\\"),s=t(\\\"robust-linear-solve\\\");o.barycenetric=i,e.exports=o},{dup:72,\\\"robust-linear-solve\\\":213}],43:[function(t,e,r){\\\"use strict\\\";function n(t){return o(i(t))}e.exports=n;var i=t(\\\"boundary-cells\\\"),o=t(\\\"reduce-simplicial-complex\\\")},{\\\"boundary-cells\\\":44,\\\"reduce-simplicial-complex\\\":47}],44:[function(t,e,r){\\\"use strict\\\";function n(t){for(var e=t.length,r=0,n=0;e>n;++n)r+=t[n].length;for(var i=new Array(r),o=0,n=0;e>n;++n)for(var a=t[n],s=a.length,l=0;s>l;++l)for(var c=i[o++]=new Array(s-1),u=1;s>u;++u)c[u-1]=a[(l+u)%s];return i}e.exports=n},{}],45:[function(t,e,r){\\\"use strict\\\";function n(t){for(var e=1,r=1;r<t.length;++r)for(var n=0;r>n;++n)if(t[r]<t[n])e=-e;else if(t[n]===t[r])return 0;return e}e.exports=n},{}],46:[function(t,e,r){\\\"use strict\\\";function n(t,e){return i(t,e)||o(t)-o(e)}var i=t(\\\"compare-cell\\\"),o=t(\\\"cell-orientation\\\");e.exports=n},{\\\"cell-orientation\\\":45,\\\"compare-cell\\\":59}],47:[function(t,e,r){\\\"use strict\\\";function n(t){t.sort(o);for(var e=t.length,r=0,n=0;e>n;++n){var s=t[n],l=a(s);if(0!==l){if(r>0){var c=t[r-1];if(0===i(s,c)&&a(c)!==l){r-=1;continue}}t[r++]=s}}return t.length=r,t}var i=t(\\\"compare-cell\\\"),o=t(\\\"compare-oriented-cell\\\"),a=t(\\\"cell-orientation\\\");e.exports=n},{\\\"cell-orientation\\\":45,\\\"compare-cell\\\":59,\\\"compare-oriented-cell\\\":46}],48:[function(t,e,r){\\\"use strict\\\";var n=function(){function t(t){return!Array.isArray(t)&&null!==t&&\\\"object\\\"==typeof t}function e(t,e,r){for(var n=(e-t)/Math.max(r-1,1),i=[],o=0;r>o;o++)i.push(t+o*n);return i}function r(){for(var t=[].slice.call(arguments),e=t.map(function(t){return t.length}),r=Math.min.apply(null,e),n=[],i=0;r>i;i++){n[i]=[];for(var o=0;o<t.length;++o)n[i][o]=t[o][i]}return n}function n(t,e,r){for(var n=Math.min.apply(null,[t.length,e.length,r.length]),i=[],o=0;n>o;o++)i.push([t[o],e[o],r[o]]);return i}function i(t){function e(t){for(var n=0;n<t.length;n++)Array.isArray(t[n])?e(t[n],r):r+=t[n]}var r=0;return e(t,r),r}function o(t){for(var e=[],r=0;r<t.length;++r){e[r]=[];for(var n=0;n<t[r].length;++n)e[r][n]=t[r][n]}return e}function a(t){for(var e=[],r=0;r<t.length;++r)e[r]=t[r];return e}function s(t,e){if(t.length!==e.length)return!1;for(var r=t.length;r--;)if(t[r]!==e[r])return!1;return!0}function l(t,e){var r,n;if(\\\"string\\\"!=typeof t)return t;if(r=[],\\\"#\\\"===t[0]?(t=t.substr(1),3===t.length&&(t+=t),n=parseInt(t,16),r[0]=n>>16&255,r[1]=n>>8&255,r[2]=255&n):h.test(t)&&(n=t.match(f),r[0]=parseInt(n[1]),r[1]=parseInt(n[2]),r[2]=parseInt(n[3])),!e)for(var i=0;3>i;++i)r[i]=r[i]/255;return r}function c(t,e){var r,n;if(\\\"string\\\"!=typeof t)return t;if(r=[],\\\"#\\\"===t[0]?(t=t.substr(1),3===t.length&&(t+=t),n=parseInt(t,16),r[0]=n>>16&255,r[1]=n>>8&255,r[2]=255&n):h.test(t)&&(n=t.match(f),r[0]=parseInt(n[1]),r[1]=parseInt(n[2]),r[2]=parseInt(n[3]),n[4]?r[3]=parseFloat(n[4]):r[3]=1),!e)for(var i=0;3>i;++i)r[i]=r[i]/255;return r}var u={},h=/^rgba?\\\\(\\\\s*\\\\d{1,3}\\\\s*,\\\\s*\\\\d{1,3}\\\\s*,\\\\s*\\\\d{1,3}\\\\s*(,.*)?\\\\)$/,f=/^rgba?\\\\(\\\\s*(\\\\d{1,3})\\\\s*,\\\\s*(\\\\d{1,3})\\\\s*,\\\\s*(\\\\d{1,3})\\\\s*,?\\\\s*(.*)?\\\\)$/;return u.isPlainObject=t,u.linspace=e,u.zip3=n,u.sum=i,u.zip=r,u.isEqual=s,u.copy2D=o,u.copy1D=a,u.str2RgbArray=l,u.str2RgbaArray=c,u};e.exports=n()},{}],49:[function(t,e,r){\\\"use strict\\\";\\\"use restrict\\\";function n(t){var e=32;return t&=-t,t&&e--,65535&t&&(e-=16),16711935&t&&(e-=8),252645135&t&&(e-=4),858993459&t&&(e-=2),1431655765&t&&(e-=1),e}var i=32;r.INT_BITS=i,r.INT_MAX=2147483647,r.INT_MIN=-1<<i-1,r.sign=function(t){return(t>0)-(0>t)},r.abs=function(t){var e=t>>i-1;return(t^e)-e},r.min=function(t,e){return e^(t^e)&-(e>t)},r.max=function(t,e){return t^(t^e)&-(e>t)},r.isPow2=function(t){return!(t&t-1||!t)},r.log2=function(t){var e,r;return e=(t>65535)<<4,t>>>=e,r=(t>255)<<3,t>>>=r,e|=r,r=(t>15)<<2,t>>>=r,e|=r,r=(t>3)<<1,t>>>=r,e|=r,e|t>>1},r.log10=function(t){return t>=1e9?9:t>=1e8?8:t>=1e7?7:t>=1e6?6:t>=1e5?5:t>=1e4?4:t>=1e3?3:t>=100?2:t>=10?1:0},r.popCount=function(t){return t-=t>>>1&1431655765,t=(858993459&t)+(t>>>2&858993459),16843009*(t+(t>>>4)&252645135)>>>24},r.countTrailingZeros=n,r.nextPow2=function(t){return t+=0===t,--t,t|=t>>>1,t|=t>>>2,t|=t>>>4,t|=t>>>8,t|=t>>>16,t+1},r.prevPow2=function(t){return t|=t>>>1,t|=t>>>2,t|=t>>>4,t|=t>>>8,t|=t>>>16,t-(t>>>1)},r.parity=function(t){return t^=t>>>16,t^=t>>>8,t^=t>>>4,t&=15,27030>>>t&1};var o=new Array(256);!function(t){for(var e=0;256>e;++e){var r=e,n=e,i=7;for(r>>>=1;r;r>>>=1)n<<=1,n|=1&r,--i;t[e]=n<<i&255}}(o),r.reverse=function(t){return o[255&t]<<24|o[t>>>8&255]<<16|o[t>>>16&255]<<8|o[t>>>24&255]},r.interleave2=function(t,e){return t&=65535,t=16711935&(t|t<<8),t=252645135&(t|t<<4),t=858993459&(t|t<<2),t=1431655765&(t|t<<1),e&=65535,e=16711935&(e|e<<8),e=252645135&(e|e<<4),e=858993459&(e|e<<2),e=1431655765&(e|e<<1),t|e<<1},r.deinterleave2=function(t,e){return t=t>>>e&1431655765,t=858993459&(t|t>>>1),t=252645135&(t|t>>>2),t=16711935&(t|t>>>4),t=65535&(t|t>>>16),t<<16>>16},r.interleave3=function(t,e,r){return t&=1023,t=4278190335&(t|t<<16),t=251719695&(t|t<<8),t=3272356035&(t|t<<4),t=1227133513&(t|t<<2),e&=1023,e=4278190335&(e|e<<16),e=251719695&(e|e<<8),e=3272356035&(e|e<<4),e=1227133513&(e|e<<2),t|=e<<1,r&=1023,r=4278190335&(r|r<<16),r=251719695&(r|r<<8),r=3272356035&(r|r<<4),r=1227133513&(r|r<<2),t|r<<2},r.deinterleave3=function(t,e){return t=t>>>e&1227133513,t=3272356035&(t|t>>>2),t=251719695&(t|t>>>4),t=4278190335&(t|t>>>8),t=1023&(t|t>>>16),t<<22>>22},r.nextCombination=function(t){var e=t|t-1;return e+1|(~e&-~e)-1>>>n(t)+1}},{}],50:[function(t,e,r){(function(e){\\\"use strict\\\";function n(){try{var t=new Uint8Array(1);return t.foo=function(){return 42},42===t.foo()&&\\\"function\\\"==typeof t.subarray&&0===t.subarray(1,1).byteLength}catch(e){return!1}}function i(){return o.TYPED_ARRAY_SUPPORT?2147483647:1073741823}function o(t){return this instanceof o?(o.TYPED_ARRAY_SUPPORT||(this.length=0,this.parent=void 0),\\\"number\\\"==typeof t?a(this,t):\\\"string\\\"==typeof t?s(this,t,arguments.length>1?arguments[1]:\\\"utf8\\\"):l(this,t)):arguments.length>1?new o(t,arguments[1]):new o(t)}function a(t,e){if(t=g(t,0>e?0:0|v(e)),!o.TYPED_ARRAY_SUPPORT)for(var r=0;e>r;r++)t[r]=0;return t}function s(t,e,r){\\\"string\\\"==typeof r&&\\\"\\\"!==r||(r=\\\"utf8\\\");var n=0|y(e,r);return t=g(t,n),t.write(e,r),t}function l(t,e){if(o.isBuffer(e))return c(t,e);if($(e))return u(t,e);if(null==e)throw new TypeError(\\\"must start with number, buffer, array or string\\\");if(\\\"undefined\\\"!=typeof ArrayBuffer){if(e.buffer instanceof ArrayBuffer)return h(t,e);if(e instanceof ArrayBuffer)return f(t,e)}return e.length?d(t,e):p(t,e)}function c(t,e){var r=0|v(e.length);return t=g(t,r),e.copy(t,0,0,r),t}function u(t,e){var r=0|v(e.length);t=g(t,r);for(var n=0;r>n;n+=1)t[n]=255&e[n];return t}function h(t,e){var r=0|v(e.length);t=g(t,r);for(var n=0;r>n;n+=1)t[n]=255&e[n];return t}function f(t,e){return e.byteLength,o.TYPED_ARRAY_SUPPORT?(t=new Uint8Array(e),t.__proto__=o.prototype):t=h(t,new Uint8Array(e)),t}function d(t,e){var r=0|v(e.length);t=g(t,r);for(var n=0;r>n;n+=1)t[n]=255&e[n];return t}function p(t,e){var r,n=0;\\\"Buffer\\\"===e.type&&$(e.data)&&(r=e.data,n=0|v(r.length)),t=g(t,n);for(var i=0;n>i;i+=1)t[i]=255&r[i];return t}function g(t,e){o.TYPED_ARRAY_SUPPORT?(t=new Uint8Array(e),t.__proto__=o.prototype):t.length=e;var r=0!==e&&e<=o.poolSize>>>1;return r&&(t.parent=K),t}function v(t){if(t>=i())throw new RangeError(\\\"Attempt to allocate Buffer larger than maximum size: 0x\\\"+i().toString(16)+\\\" bytes\\\");return 0|t}function m(t,e){if(!(this instanceof m))return new m(t,e);var r=new o(t,e);return delete r.parent,r}function y(t,e){\\\"string\\\"!=typeof t&&(t=\\\"\\\"+t);var r=t.length;if(0===r)return 0;for(var n=!1;;)switch(e){case\\\"ascii\\\":case\\\"binary\\\":case\\\"raw\\\":case\\\"raws\\\":return r;case\\\"utf8\\\":case\\\"utf-8\\\":return q(t).length;case\\\"ucs2\\\":case\\\"ucs-2\\\":case\\\"utf16le\\\":case\\\"utf-16le\\\":return 2*r;case\\\"hex\\\":return r>>>1;case\\\"base64\\\":return Y(t).length;default:if(n)return q(t).length;e=(\\\"\\\"+e).toLowerCase(),n=!0}}function b(t,e,r){var n=!1;if(e=0|e,r=void 0===r||r===1/0?this.length:0|r,t||(t=\\\"utf8\\\"),0>e&&(e=0),r>this.length&&(r=this.length),e>=r)return\\\"\\\";for(;;)switch(t){case\\\"hex\\\":return P(this,e,r);case\\\"utf8\\\":case\\\"utf-8\\\":return E(this,e,r);case\\\"ascii\\\":return S(this,e,r);case\\\"binary\\\":return C(this,e,r);case\\\"base64\\\":return T(this,e,r);case\\\"ucs2\\\":case\\\"ucs-2\\\":case\\\"utf16le\\\":case\\\"utf-16le\\\":return z(this,e,r);default:if(n)throw new TypeError(\\\"Unknown encoding: \\\"+t);t=(t+\\\"\\\").toLowerCase(),n=!0}}function x(t,e,r,n){r=Number(r)||0;var i=t.length-r;n?(n=Number(n),n>i&&(n=i)):n=i;var o=e.length;if(o%2!==0)throw new Error(\\\"Invalid hex string\\\");n>o/2&&(n=o/2);for(var a=0;n>a;a++){var s=parseInt(e.substr(2*a,2),16);if(isNaN(s))throw new Error(\\\"Invalid hex string\\\");t[r+a]=s}return a}function _(t,e,r,n){return X(q(e,t.length-r),t,r,n)}function w(t,e,r,n){return X(H(e),t,r,n)}function A(t,e,r,n){return w(t,e,r,n)}function k(t,e,r,n){return X(Y(e),t,r,n)}function M(t,e,r,n){return X(G(e,t.length-r),t,r,n)}function T(t,e,r){return 0===e&&r===t.length?W.fromByteArray(t):W.fromByteArray(t.slice(e,r))}function E(t,e,r){r=Math.min(t.length,r);for(var n=[],i=e;r>i;){var o=t[i],a=null,s=o>239?4:o>223?3:o>191?2:1;if(r>=i+s){var l,c,u,h;switch(s){case 1:128>o&&(a=o);break;case 2:l=t[i+1],128===(192&l)&&(h=(31&o)<<6|63&l,h>127&&(a=h));break;case 3:l=t[i+1],c=t[i+2],128===(192&l)&&128===(192&c)&&(h=(15&o)<<12|(63&l)<<6|63&c,h>2047&&(55296>h||h>57343)&&(a=h));break;case 4:l=t[i+1],c=t[i+2],u=t[i+3],128===(192&l)&&128===(192&c)&&128===(192&u)&&(h=(15&o)<<18|(63&l)<<12|(63&c)<<6|63&u,h>65535&&1114112>h&&(a=h))}}null===a?(a=65533,s=1):a>65535&&(a-=65536,n.push(a>>>10&1023|55296),a=56320|1023&a),n.push(a),i+=s}return L(n)}function L(t){var e=t.length;if(Q>=e)return String.fromCharCode.apply(String,t);for(var r=\\\"\\\",n=0;e>n;)r+=String.fromCharCode.apply(String,t.slice(n,n+=Q));return r}function S(t,e,r){var n=\\\"\\\";r=Math.min(t.length,r);for(var i=e;r>i;i++)n+=String.fromCharCode(127&t[i]);return n}function C(t,e,r){var n=\\\"\\\";r=Math.min(t.length,r);for(var i=e;r>i;i++)n+=String.fromCharCode(t[i]);return n}function P(t,e,r){var n=t.length;(!e||0>e)&&(e=0),(!r||0>r||r>n)&&(r=n);for(var i=\\\"\\\",o=e;r>o;o++)i+=V(t[o]);return i}function z(t,e,r){for(var n=t.slice(e,r),i=\\\"\\\",o=0;o<n.length;o+=2)i+=String.fromCharCode(n[o]+256*n[o+1]);return i}function R(t,e,r){if(t%1!==0||0>t)throw new RangeError(\\\"offset is not uint\\\");if(t+e>r)throw new RangeError(\\\"Trying to access beyond buffer length\\\")}function O(t,e,r,n,i,a){if(!o.isBuffer(t))throw new TypeError(\\\"buffer must be a Buffer instance\\\");if(e>i||a>e)throw new RangeError(\\\"value is out of bounds\\\");if(r+n>t.length)throw new RangeError(\\\"index out of range\\\")}function I(t,e,r,n){0>e&&(e=65535+e+1);for(var i=0,o=Math.min(t.length-r,2);o>i;i++)t[r+i]=(e&255<<8*(n?i:1-i))>>>8*(n?i:1-i)}function N(t,e,r,n){0>e&&(e=4294967295+e+1);for(var i=0,o=Math.min(t.length-r,4);o>i;i++)t[r+i]=e>>>8*(n?i:3-i)&255}function j(t,e,r,n,i,o){if(r+n>t.length)throw new RangeError(\\\"index out of range\\\");if(0>r)throw new RangeError(\\\"index out of range\\\")}function F(t,e,r,n,i){return i||j(t,e,r,4,3.4028234663852886e38,-3.4028234663852886e38),Z.write(t,e,r,n,23,4),r+4}function D(t,e,r,n,i){return i||j(t,e,r,8,1.7976931348623157e308,-1.7976931348623157e308),Z.write(t,e,r,n,52,8),r+8}function B(t){if(t=U(t).replace(J,\\\"\\\"),t.length<2)return\\\"\\\";for(;t.length%4!==0;)t+=\\\"=\\\";return t}function U(t){return t.trim?t.trim():t.replace(/^\\\\s+|\\\\s+$/g,\\\"\\\")}function V(t){return 16>t?\\\"0\\\"+t.toString(16):t.toString(16)}function q(t,e){e=e||1/0;for(var r,n=t.length,i=null,o=[],a=0;n>a;a++){if(r=t.charCodeAt(a),r>55295&&57344>r){if(!i){if(r>56319){(e-=3)>-1&&o.push(239,191,189);continue}if(a+1===n){(e-=3)>-1&&o.push(239,191,189);continue}i=r;continue}if(56320>r){(e-=3)>-1&&o.push(239,191,189),i=r;continue}r=(i-55296<<10|r-56320)+65536}else i&&(e-=3)>-1&&o.push(239,191,189);if(i=null,128>r){if((e-=1)<0)break;o.push(r)}else if(2048>r){if((e-=2)<0)break;o.push(r>>6|192,63&r|128)}else if(65536>r){if((e-=3)<0)break;o.push(r>>12|224,r>>6&63|128,63&r|128)}else{if(!(1114112>r))throw new Error(\\\"Invalid code point\\\");if((e-=4)<0)break;o.push(r>>18|240,r>>12&63|128,r>>6&63|128,63&r|128)}}return o}function H(t){for(var e=[],r=0;r<t.length;r++)e.push(255&t.charCodeAt(r));return e}function G(t,e){for(var r,n,i,o=[],a=0;a<t.length&&!((e-=2)<0);a++)r=t.charCodeAt(a),n=r>>8,i=r%256,o.push(i),o.push(n);return o}function Y(t){return W.toByteArray(B(t))}function X(t,e,r,n){for(var i=0;n>i&&!(i+r>=e.length||i>=t.length);i++)e[i+r]=t[i];return i}var W=t(\\\"base64-js\\\"),Z=t(\\\"ieee754\\\"),$=t(\\\"isarray\\\");r.Buffer=o,r.SlowBuffer=m,r.INSPECT_MAX_BYTES=50,o.poolSize=8192;var K={};o.TYPED_ARRAY_SUPPORT=void 0!==e.TYPED_ARRAY_SUPPORT?e.TYPED_ARRAY_SUPPORT:n(),o._augment=function(t){return t.__proto__=o.prototype,t},o.TYPED_ARRAY_SUPPORT?(o.prototype.__proto__=Uint8Array.prototype,o.__proto__=Uint8Array,\\\"undefined\\\"!=typeof Symbol&&Symbol.species&&o[Symbol.species]===o&&Object.defineProperty(o,Symbol.species,{value:null,configurable:!0})):(o.prototype.length=void 0,o.prototype.parent=void 0),o.isBuffer=function(t){return!(null==t||!t._isBuffer)},o.compare=function(t,e){if(!o.isBuffer(t)||!o.isBuffer(e))throw new TypeError(\\\"Arguments must be Buffers\\\");if(t===e)return 0;for(var r=t.length,n=e.length,i=0,a=Math.min(r,n);a>i&&t[i]===e[i];)++i;return i!==a&&(r=t[i],n=e[i]),n>r?-1:r>n?1:0},o.isEncoding=function(t){switch(String(t).toLowerCase()){case\\\"hex\\\":case\\\"utf8\\\":case\\\"utf-8\\\":case\\\"ascii\\\":case\\\"binary\\\":case\\\"base64\\\":case\\\"raw\\\":case\\\"ucs2\\\":case\\\"ucs-2\\\":case\\\"utf16le\\\":case\\\"utf-16le\\\":return!0;default:return!1}},o.concat=function(t,e){if(!$(t))throw new TypeError(\\\"list argument must be an Array of Buffers.\\\");if(0===t.length)return new o(0);var r;if(void 0===e)for(e=0,r=0;r<t.length;r++)e+=t[r].length;var n=new o(e),i=0;for(r=0;r<t.length;r++){var a=t[r];a.copy(n,i),i+=a.length}return n},o.byteLength=y,o.prototype._isBuffer=!0,o.prototype.toString=function(){var t=0|this.length;return 0===t?\\\"\\\":0===arguments.length?E(this,0,t):b.apply(this,arguments)},o.prototype.equals=function(t){if(!o.isBuffer(t))throw new TypeError(\\\"Argument must be a Buffer\\\");return this===t?!0:0===o.compare(this,t)},o.prototype.inspect=function(){var t=\\\"\\\",e=r.INSPECT_MAX_BYTES;return this.length>0&&(t=this.toString(\\\"hex\\\",0,e).match(/.{2}/g).join(\\\" \\\"),this.length>e&&(t+=\\\" ... \\\")),\\\"<Buffer \\\"+t+\\\">\\\"},o.prototype.compare=function(t){if(!o.isBuffer(t))throw new TypeError(\\\"Argument must be a Buffer\\\");return this===t?0:o.compare(this,t)},o.prototype.indexOf=function(t,e){function r(t,e,r){for(var n=-1,i=0;r+i<t.length;i++)if(t[r+i]===e[-1===n?0:i-n]){if(-1===n&&(n=i),i-n+1===e.length)return r+n}else n=-1;return-1}if(e>2147483647?e=2147483647:-2147483648>e&&(e=-2147483648),e>>=0,0===this.length)return-1;if(e>=this.length)return-1;if(0>e&&(e=Math.max(this.length+e,0)),\\\"string\\\"==typeof t)return 0===t.length?-1:String.prototype.indexOf.call(this,t,e);if(o.isBuffer(t))return r(this,t,e);if(\\\"number\\\"==typeof t)return o.TYPED_ARRAY_SUPPORT&&\\\"function\\\"===Uint8Array.prototype.indexOf?Uint8Array.prototype.indexOf.call(this,t,e):r(this,[t],e);throw new TypeError(\\\"val must be string, number or Buffer\\\")},o.prototype.write=function(t,e,r,n){if(void 0===e)n=\\\"utf8\\\",r=this.length,e=0;else if(void 0===r&&\\\"string\\\"==typeof e)n=e,r=this.length,e=0;else if(isFinite(e))e=0|e,isFinite(r)?(r=0|r,void 0===n&&(n=\\\"utf8\\\")):(n=r,r=void 0);else{var i=n;n=e,e=0|r,r=i}var o=this.length-e;if((void 0===r||r>o)&&(r=o),t.length>0&&(0>r||0>e)||e>this.length)throw new RangeError(\\\"attempt to write outside buffer bounds\\\");n||(n=\\\"utf8\\\");for(var a=!1;;)switch(n){case\\\"hex\\\":return x(this,t,e,r);case\\\"utf8\\\":case\\\"utf-8\\\":return _(this,t,e,r);case\\\"ascii\\\":return w(this,t,e,r);case\\\"binary\\\":return A(this,t,e,r);case\\\"base64\\\":return k(this,t,e,r);case\\\"ucs2\\\":case\\\"ucs-2\\\":case\\\"utf16le\\\":case\\\"utf-16le\\\":return M(this,t,e,r);default:if(a)throw new TypeError(\\\"Unknown encoding: \\\"+n);n=(\\\"\\\"+n).toLowerCase(),a=!0}},o.prototype.toJSON=function(){return{type:\\\"Buffer\\\",data:Array.prototype.slice.call(this._arr||this,0)}};var Q=4096;o.prototype.slice=function(t,e){var r=this.length;t=~~t,e=void 0===e?r:~~e,0>t?(t+=r,0>t&&(t=0)):t>r&&(t=r),0>e?(e+=r,0>e&&(e=0)):e>r&&(e=r),t>e&&(e=t);var n;if(o.TYPED_ARRAY_SUPPORT)n=this.subarray(t,e),n.__proto__=o.prototype;else{var i=e-t;n=new o(i,void 0);for(var a=0;i>a;a++)n[a]=this[a+t]}return n.length&&(n.parent=this.parent||this),n},o.prototype.readUIntLE=function(t,e,r){t=0|t,e=0|e,r||R(t,e,this.length);for(var n=this[t],i=1,o=0;++o<e&&(i*=256);)n+=this[t+o]*i;return n},o.prototype.readUIntBE=function(t,e,r){t=0|t,e=0|e,r||R(t,e,this.length);for(var n=this[t+--e],i=1;e>0&&(i*=256);)n+=this[t+--e]*i;return n},o.prototype.readUInt8=function(t,e){return e||R(t,1,this.length),this[t]},o.prototype.readUInt16LE=function(t,e){return e||R(t,2,this.length),this[t]|this[t+1]<<8},o.prototype.readUInt16BE=function(t,e){return e||R(t,2,this.length),this[t]<<8|this[t+1]},o.prototype.readUInt32LE=function(t,e){return e||R(t,4,this.length),(this[t]|this[t+1]<<8|this[t+2]<<16)+16777216*this[t+3]},o.prototype.readUInt32BE=function(t,e){return e||R(t,4,this.length),16777216*this[t]+(this[t+1]<<16|this[t+2]<<8|this[t+3])},o.prototype.readIntLE=function(t,e,r){t=0|t,e=0|e,r||R(t,e,this.length);for(var n=this[t],i=1,o=0;++o<e&&(i*=256);)n+=this[t+o]*i;return i*=128,n>=i&&(n-=Math.pow(2,8*e)),n},o.prototype.readIntBE=function(t,e,r){t=0|t,e=0|e,r||R(t,e,this.length);for(var n=e,i=1,o=this[t+--n];n>0&&(i*=256);)o+=this[t+--n]*i;return i*=128,o>=i&&(o-=Math.pow(2,8*e)),o},o.prototype.readInt8=function(t,e){return e||R(t,1,this.length),128&this[t]?-1*(255-this[t]+1):this[t]},o.prototype.readInt16LE=function(t,e){e||R(t,2,this.length);var r=this[t]|this[t+1]<<8;return 32768&r?4294901760|r:r},o.prototype.readInt16BE=function(t,e){e||R(t,2,this.length);var r=this[t+1]|this[t]<<8;return 32768&r?4294901760|r:r},o.prototype.readInt32LE=function(t,e){return e||R(t,4,this.length),this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24},o.prototype.readInt32BE=function(t,e){return e||R(t,4,this.length),this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]},o.prototype.readFloatLE=function(t,e){return e||R(t,4,this.length),Z.read(this,t,!0,23,4)},o.prototype.readFloatBE=function(t,e){return e||R(t,4,this.length),Z.read(this,t,!1,23,4)},o.prototype.readDoubleLE=function(t,e){return e||R(t,8,this.length),Z.read(this,t,!0,52,8)},o.prototype.readDoubleBE=function(t,e){return e||R(t,8,this.length),Z.read(this,t,!1,52,8)},o.prototype.writeUIntLE=function(t,e,r,n){t=+t,e=0|e,r=0|r,n||O(this,t,e,r,Math.pow(2,8*r),0);var i=1,o=0;for(this[e]=255&t;++o<r&&(i*=256);)this[e+o]=t/i&255;return e+r},o.prototype.writeUIntBE=function(t,e,r,n){t=+t,e=0|e,r=0|r,n||O(this,t,e,r,Math.pow(2,8*r),0);var i=r-1,o=1;for(this[e+i]=255&t;--i>=0&&(o*=256);)this[e+i]=t/o&255;return e+r},o.prototype.writeUInt8=function(t,e,r){return t=+t,e=0|e,r||O(this,t,e,1,255,0),o.TYPED_ARRAY_SUPPORT||(t=Math.floor(t)),this[e]=255&t,e+1},o.prototype.writeUInt16LE=function(t,e,r){return t=+t,e=0|e,r||O(this,t,e,2,65535,0),o.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8):I(this,t,e,!0),e+2},o.prototype.writeUInt16BE=function(t,e,r){return t=+t,e=0|e,r||O(this,t,e,2,65535,0),o.TYPED_ARRAY_SUPPORT?(this[e]=t>>>8,this[e+1]=255&t):I(this,t,e,!1),e+2},o.prototype.writeUInt32LE=function(t,e,r){return t=+t,e=0|e,r||O(this,t,e,4,4294967295,0),o.TYPED_ARRAY_SUPPORT?(this[e+3]=t>>>24,this[e+2]=t>>>16,this[e+1]=t>>>8,this[e]=255&t):N(this,t,e,!0),e+4},o.prototype.writeUInt32BE=function(t,e,r){return t=+t,e=0|e,r||O(this,t,e,4,4294967295,0),o.TYPED_ARRAY_SUPPORT?(this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t):N(this,t,e,!1),e+4},o.prototype.writeIntLE=function(t,e,r,n){if(t=+t,e=0|e,!n){var i=Math.pow(2,8*r-1);O(this,t,e,r,i-1,-i)}var o=0,a=1,s=0>t?1:0;for(this[e]=255&t;++o<r&&(a*=256);)this[e+o]=(t/a>>0)-s&255;return e+r},o.prototype.writeIntBE=function(t,e,r,n){if(t=+t,e=0|e,!n){var i=Math.pow(2,8*r-1);O(this,t,e,r,i-1,-i)}var o=r-1,a=1,s=0>t?1:0;for(this[e+o]=255&t;--o>=0&&(a*=256);)this[e+o]=(t/a>>0)-s&255;return e+r},o.prototype.writeInt8=function(t,e,r){return t=+t,e=0|e,r||O(this,t,e,1,127,-128),o.TYPED_ARRAY_SUPPORT||(t=Math.floor(t)),0>t&&(t=255+t+1),this[e]=255&t,e+1},o.prototype.writeInt16LE=function(t,e,r){return t=+t,e=0|e,r||O(this,t,e,2,32767,-32768),o.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8):I(this,t,e,!0),e+2},o.prototype.writeInt16BE=function(t,e,r){return t=+t,e=0|e,r||O(this,t,e,2,32767,-32768),o.TYPED_ARRAY_SUPPORT?(this[e]=t>>>8,this[e+1]=255&t):I(this,t,e,!1),e+2},o.prototype.writeInt32LE=function(t,e,r){return t=+t,e=0|e,r||O(this,t,e,4,2147483647,-2147483648),o.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8,this[e+2]=t>>>16,this[e+3]=t>>>24):N(this,t,e,!0),e+4},o.prototype.writeInt32BE=function(t,e,r){return t=+t,e=0|e,r||O(this,t,e,4,2147483647,-2147483648),0>t&&(t=4294967295+t+1),o.TYPED_ARRAY_SUPPORT?(this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t):N(this,t,e,!1),e+4},o.prototype.writeFloatLE=function(t,e,r){return F(this,t,e,!0,r)},o.prototype.writeFloatBE=function(t,e,r){return F(this,t,e,!1,r)},o.prototype.writeDoubleLE=function(t,e,r){return D(this,t,e,!0,r)},o.prototype.writeDoubleBE=function(t,e,r){return D(this,t,e,!1,r)},o.prototype.copy=function(t,e,r,n){if(r||(r=0),n||0===n||(n=this.length),e>=t.length&&(e=t.length),e||(e=0),n>0&&r>n&&(n=r),n===r)return 0;if(0===t.length||0===this.length)return 0;if(0>e)throw new RangeError(\\\"targetStart out of bounds\\\");if(0>r||r>=this.length)throw new RangeError(\\\"sourceStart out of bounds\\\");if(0>n)throw new RangeError(\\\"sourceEnd out of bounds\\\");n>this.length&&(n=this.length),t.length-e<n-r&&(n=t.length-e+r);var i,a=n-r;if(this===t&&e>r&&n>e)for(i=a-1;i>=0;i--)t[i+e]=this[i+r];else if(1e3>a||!o.TYPED_ARRAY_SUPPORT)for(i=0;a>i;i++)t[i+e]=this[i+r];else Uint8Array.prototype.set.call(t,this.subarray(r,r+a),e);\\n\",\n       \"return a},o.prototype.fill=function(t,e,r){if(t||(t=0),e||(e=0),r||(r=this.length),e>r)throw new RangeError(\\\"end < start\\\");if(r!==e&&0!==this.length){if(0>e||e>=this.length)throw new RangeError(\\\"start out of bounds\\\");if(0>r||r>this.length)throw new RangeError(\\\"end out of bounds\\\");var n;if(\\\"number\\\"==typeof t)for(n=e;r>n;n++)this[n]=t;else{var i=q(t.toString()),o=i.length;for(n=e;r>n;n++)this[n]=i[n%o]}return this}};var J=/[^+\\\\/0-9A-Za-z-_]/g}).call(this,\\\"undefined\\\"!=typeof global?global:\\\"undefined\\\"!=typeof self?self:\\\"undefined\\\"!=typeof window?window:{})},{\\\"base64-js\\\":51,ieee754:52,isarray:53}],51:[function(t,e,r){\\\"use strict\\\";function n(){var t,e=\\\"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/\\\",r=e.length;for(t=0;r>t;t++)l[t]=e[t];for(t=0;r>t;++t)c[e.charCodeAt(t)]=t;c[\\\"-\\\".charCodeAt(0)]=62,c[\\\"_\\\".charCodeAt(0)]=63}function i(t){var e,r,n,i,o,a,s=t.length;if(s%4>0)throw new Error(\\\"Invalid string. Length must be a multiple of 4\\\");o=\\\"=\\\"===t[s-2]?2:\\\"=\\\"===t[s-1]?1:0,a=new u(3*s/4-o),n=o>0?s-4:s;var l=0;for(e=0,r=0;n>e;e+=4,r+=3)i=c[t.charCodeAt(e)]<<18|c[t.charCodeAt(e+1)]<<12|c[t.charCodeAt(e+2)]<<6|c[t.charCodeAt(e+3)],a[l++]=(16711680&i)>>16,a[l++]=(65280&i)>>8,a[l++]=255&i;return 2===o?(i=c[t.charCodeAt(e)]<<2|c[t.charCodeAt(e+1)]>>4,a[l++]=255&i):1===o&&(i=c[t.charCodeAt(e)]<<10|c[t.charCodeAt(e+1)]<<4|c[t.charCodeAt(e+2)]>>2,a[l++]=i>>8&255,a[l++]=255&i),a}function o(t){return l[t>>18&63]+l[t>>12&63]+l[t>>6&63]+l[63&t]}function a(t,e,r){for(var n,i=[],a=e;r>a;a+=3)n=(t[a]<<16)+(t[a+1]<<8)+t[a+2],i.push(o(n));return i.join(\\\"\\\")}function s(t){for(var e,r=t.length,n=r%3,i=\\\"\\\",o=[],s=16383,c=0,u=r-n;u>c;c+=s)o.push(a(t,c,c+s>u?u:c+s));return 1===n?(e=t[r-1],i+=l[e>>2],i+=l[e<<4&63],i+=\\\"==\\\"):2===n&&(e=(t[r-2]<<8)+t[r-1],i+=l[e>>10],i+=l[e>>4&63],i+=l[e<<2&63],i+=\\\"=\\\"),o.push(i),o.join(\\\"\\\")}r.toByteArray=i,r.fromByteArray=s;var l=[],c=[],u=\\\"undefined\\\"!=typeof Uint8Array?Uint8Array:Array;n()},{}],52:[function(t,e,r){r.read=function(t,e,r,n,i){var o,a,s=8*i-n-1,l=(1<<s)-1,c=l>>1,u=-7,h=r?i-1:0,f=r?-1:1,d=t[e+h];for(h+=f,o=d&(1<<-u)-1,d>>=-u,u+=s;u>0;o=256*o+t[e+h],h+=f,u-=8);for(a=o&(1<<-u)-1,o>>=-u,u+=n;u>0;a=256*a+t[e+h],h+=f,u-=8);if(0===o)o=1-c;else{if(o===l)return a?NaN:(d?-1:1)*(1/0);a+=Math.pow(2,n),o-=c}return(d?-1:1)*a*Math.pow(2,o-n)},r.write=function(t,e,r,n,i,o){var a,s,l,c=8*o-i-1,u=(1<<c)-1,h=u>>1,f=23===i?Math.pow(2,-24)-Math.pow(2,-77):0,d=n?0:o-1,p=n?1:-1,g=0>e||0===e&&0>1/e?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(s=isNaN(e)?1:0,a=u):(a=Math.floor(Math.log(e)/Math.LN2),e*(l=Math.pow(2,-a))<1&&(a--,l*=2),e+=a+h>=1?f/l:f*Math.pow(2,1-h),e*l>=2&&(a++,l/=2),a+h>=u?(s=0,a=u):a+h>=1?(s=(e*l-1)*Math.pow(2,i),a+=h):(s=e*Math.pow(2,h-1)*Math.pow(2,i),a=0));i>=8;t[r+d]=255&s,d+=p,s/=256,i-=8);for(a=a<<i|s,c+=i;c>0;t[r+d]=255&a,d+=p,a/=256,c-=8);t[r+d-p]|=128*g}},{}],53:[function(t,e,r){var n={}.toString;e.exports=Array.isArray||function(t){return\\\"[object Array]\\\"==n.call(t)}},{}],54:[function(t,e,r){function n(){this._events=this._events||{},this._maxListeners=this._maxListeners||void 0}function i(t){return\\\"function\\\"==typeof t}function o(t){return\\\"number\\\"==typeof t}function a(t){return\\\"object\\\"==typeof t&&null!==t}function s(t){return void 0===t}e.exports=n,n.EventEmitter=n,n.prototype._events=void 0,n.prototype._maxListeners=void 0,n.defaultMaxListeners=10,n.prototype.setMaxListeners=function(t){if(!o(t)||0>t||isNaN(t))throw TypeError(\\\"n must be a positive number\\\");return this._maxListeners=t,this},n.prototype.emit=function(t){var e,r,n,o,l,c;if(this._events||(this._events={}),\\\"error\\\"===t&&(!this._events.error||a(this._events.error)&&!this._events.error.length)){if(e=arguments[1],e instanceof Error)throw e;throw TypeError('Uncaught, unspecified \\\"error\\\" event.')}if(r=this._events[t],s(r))return!1;if(i(r))switch(arguments.length){case 1:r.call(this);break;case 2:r.call(this,arguments[1]);break;case 3:r.call(this,arguments[1],arguments[2]);break;default:o=Array.prototype.slice.call(arguments,1),r.apply(this,o)}else if(a(r))for(o=Array.prototype.slice.call(arguments,1),c=r.slice(),n=c.length,l=0;n>l;l++)c[l].apply(this,o);return!0},n.prototype.addListener=function(t,e){var r;if(!i(e))throw TypeError(\\\"listener must be a function\\\");return this._events||(this._events={}),this._events.newListener&&this.emit(\\\"newListener\\\",t,i(e.listener)?e.listener:e),this._events[t]?a(this._events[t])?this._events[t].push(e):this._events[t]=[this._events[t],e]:this._events[t]=e,a(this._events[t])&&!this._events[t].warned&&(r=s(this._maxListeners)?n.defaultMaxListeners:this._maxListeners,r&&r>0&&this._events[t].length>r&&(this._events[t].warned=!0,console.error(\\\"(node) warning: possible EventEmitter memory leak detected. %d listeners added. Use emitter.setMaxListeners() to increase limit.\\\",this._events[t].length),\\\"function\\\"==typeof console.trace&&console.trace())),this},n.prototype.on=n.prototype.addListener,n.prototype.once=function(t,e){function r(){this.removeListener(t,r),n||(n=!0,e.apply(this,arguments))}if(!i(e))throw TypeError(\\\"listener must be a function\\\");var n=!1;return r.listener=e,this.on(t,r),this},n.prototype.removeListener=function(t,e){var r,n,o,s;if(!i(e))throw TypeError(\\\"listener must be a function\\\");if(!this._events||!this._events[t])return this;if(r=this._events[t],o=r.length,n=-1,r===e||i(r.listener)&&r.listener===e)delete this._events[t],this._events.removeListener&&this.emit(\\\"removeListener\\\",t,e);else if(a(r)){for(s=o;s-- >0;)if(r[s]===e||r[s].listener&&r[s].listener===e){n=s;break}if(0>n)return this;1===r.length?(r.length=0,delete this._events[t]):r.splice(n,1),this._events.removeListener&&this.emit(\\\"removeListener\\\",t,e)}return this},n.prototype.removeAllListeners=function(t){var e,r;if(!this._events)return this;if(!this._events.removeListener)return 0===arguments.length?this._events={}:this._events[t]&&delete this._events[t],this;if(0===arguments.length){for(e in this._events)\\\"removeListener\\\"!==e&&this.removeAllListeners(e);return this.removeAllListeners(\\\"removeListener\\\"),this._events={},this}if(r=this._events[t],i(r))this.removeListener(t,r);else if(r)for(;r.length;)this.removeListener(t,r[r.length-1]);return delete this._events[t],this},n.prototype.listeners=function(t){var e;return e=this._events&&this._events[t]?i(this._events[t])?[this._events[t]]:this._events[t].slice():[]},n.prototype.listenerCount=function(t){if(this._events){var e=this._events[t];if(i(e))return 1;if(e)return e.length}return 0},n.listenerCount=function(t,e){return t.listenerCount(e)}},{}],55:[function(t,e,r){function n(){u=!1,s.length?c=s.concat(c):h=-1,c.length&&i()}function i(){if(!u){var t=setTimeout(n);u=!0;for(var e=c.length;e;){for(s=c,c=[];++h<e;)s&&s[h].run();h=-1,e=c.length}s=null,u=!1,clearTimeout(t)}}function o(t,e){this.fun=t,this.array=e}function a(){}var s,l=e.exports={},c=[],u=!1,h=-1;l.nextTick=function(t){var e=new Array(arguments.length-1);if(arguments.length>1)for(var r=1;r<arguments.length;r++)e[r-1]=arguments[r];c.push(new o(t,e)),1!==c.length||u||setTimeout(i,0)},o.prototype.run=function(){this.fun.apply(null,this.array)},l.title=\\\"browser\\\",l.browser=!0,l.env={},l.argv=[],l.version=\\\"\\\",l.versions={},l.on=a,l.addListener=a,l.once=a,l.off=a,l.removeListener=a,l.removeAllListeners=a,l.emit=a,l.binding=function(t){throw new Error(\\\"process.binding is not supported\\\")},l.cwd=function(){return\\\"/\\\"},l.chdir=function(t){throw new Error(\\\"process.chdir is not supported\\\")},l.umask=function(){return 0}},{}],56:[function(t,e,r){e.exports={jet:[{index:0,rgb:[0,0,131]},{index:.125,rgb:[0,60,170]},{index:.375,rgb:[5,255,255]},{index:.625,rgb:[255,255,0]},{index:.875,rgb:[250,0,0]},{index:1,rgb:[128,0,0]}],hsv:[{index:0,rgb:[255,0,0]},{index:.169,rgb:[253,255,2]},{index:.173,rgb:[247,255,2]},{index:.337,rgb:[0,252,4]},{index:.341,rgb:[0,252,10]},{index:.506,rgb:[1,249,255]},{index:.671,rgb:[2,0,253]},{index:.675,rgb:[8,0,253]},{index:.839,rgb:[255,0,251]},{index:.843,rgb:[255,0,245]},{index:1,rgb:[255,0,6]}],hot:[{index:0,rgb:[0,0,0]},{index:.3,rgb:[230,0,0]},{index:.6,rgb:[255,210,0]},{index:1,rgb:[255,255,255]}],cool:[{index:0,rgb:[0,255,255]},{index:1,rgb:[255,0,255]}],spring:[{index:0,rgb:[255,0,255]},{index:1,rgb:[255,255,0]}],summer:[{index:0,rgb:[0,128,102]},{index:1,rgb:[255,255,102]}],autumn:[{index:0,rgb:[255,0,0]},{index:1,rgb:[255,255,0]}],winter:[{index:0,rgb:[0,0,255]},{index:1,rgb:[0,255,128]}],bone:[{index:0,rgb:[0,0,0]},{index:.376,rgb:[84,84,116]},{index:.753,rgb:[169,200,200]},{index:1,rgb:[255,255,255]}],copper:[{index:0,rgb:[0,0,0]},{index:.804,rgb:[255,160,102]},{index:1,rgb:[255,199,127]}],greys:[{index:0,rgb:[0,0,0]},{index:1,rgb:[255,255,255]}],yignbu:[{index:0,rgb:[8,29,88]},{index:.125,rgb:[37,52,148]},{index:.25,rgb:[34,94,168]},{index:.375,rgb:[29,145,192]},{index:.5,rgb:[65,182,196]},{index:.625,rgb:[127,205,187]},{index:.75,rgb:[199,233,180]},{index:.875,rgb:[237,248,217]},{index:1,rgb:[255,255,217]}],greens:[{index:0,rgb:[0,68,27]},{index:.125,rgb:[0,109,44]},{index:.25,rgb:[35,139,69]},{index:.375,rgb:[65,171,93]},{index:.5,rgb:[116,196,118]},{index:.625,rgb:[161,217,155]},{index:.75,rgb:[199,233,192]},{index:.875,rgb:[229,245,224]},{index:1,rgb:[247,252,245]}],yiorrd:[{index:0,rgb:[128,0,38]},{index:.125,rgb:[189,0,38]},{index:.25,rgb:[227,26,28]},{index:.375,rgb:[252,78,42]},{index:.5,rgb:[253,141,60]},{index:.625,rgb:[254,178,76]},{index:.75,rgb:[254,217,118]},{index:.875,rgb:[255,237,160]},{index:1,rgb:[255,255,204]}],bluered:[{index:0,rgb:[0,0,255]},{index:1,rgb:[255,0,0]}],rdbu:[{index:0,rgb:[5,10,172]},{index:.35,rgb:[106,137,247]},{index:.5,rgb:[190,190,190]},{index:.6,rgb:[220,170,132]},{index:.7,rgb:[230,145,90]},{index:1,rgb:[178,10,28]}],picnic:[{index:0,rgb:[0,0,255]},{index:.1,rgb:[51,153,255]},{index:.2,rgb:[102,204,255]},{index:.3,rgb:[153,204,255]},{index:.4,rgb:[204,204,255]},{index:.5,rgb:[255,255,255]},{index:.6,rgb:[255,204,255]},{index:.7,rgb:[255,153,255]},{index:.8,rgb:[255,102,204]},{index:.9,rgb:[255,102,102]},{index:1,rgb:[255,0,0]}],rainbow:[{index:0,rgb:[150,0,90]},{index:.125,rgb:[0,0,200]},{index:.25,rgb:[0,25,255]},{index:.375,rgb:[0,152,255]},{index:.5,rgb:[44,255,150]},{index:.625,rgb:[151,255,0]},{index:.75,rgb:[255,234,0]},{index:.875,rgb:[255,111,0]},{index:1,rgb:[255,0,0]}],portland:[{index:0,rgb:[12,51,131]},{index:.25,rgb:[10,136,186]},{index:.5,rgb:[242,211,56]},{index:.75,rgb:[242,143,56]},{index:1,rgb:[217,30,30]}],blackbody:[{index:0,rgb:[0,0,0]},{index:.2,rgb:[230,0,0]},{index:.4,rgb:[230,210,0]},{index:.7,rgb:[255,255,255]},{index:1,rgb:[160,200,255]}],earth:[{index:0,rgb:[0,0,130]},{index:.1,rgb:[0,180,180]},{index:.2,rgb:[40,210,40]},{index:.4,rgb:[230,230,50]},{index:.6,rgb:[120,70,20]},{index:1,rgb:[255,255,255]}],electric:[{index:0,rgb:[0,0,0]},{index:.15,rgb:[30,0,100]},{index:.4,rgb:[120,0,100]},{index:.6,rgb:[160,90,0]},{index:.8,rgb:[230,200,0]},{index:1,rgb:[255,250,220]}],alpha:[{index:0,rgb:[255,255,255,0]},{index:0,rgb:[255,255,255,1]}]}},{}],57:[function(t,e,r){\\\"use strict\\\";function n(t){for(var e,r=\\\"#\\\",n=0;3>n;++n)e=t[n],e=e.toString(16),r+=(\\\"00\\\"+e).substr(e.length);return r}function i(t){return\\\"rgba(\\\"+t.join(\\\",\\\")+\\\")\\\"}var o=t(\\\"arraytools\\\"),a=t(\\\"clone\\\"),s=t(\\\"./colorScales\\\");e.exports=function(t){var e,r,l,c,u,h,f,d,p,g,v,m,y,b=[],x=[],_=[],w=[];if(o.isPlainObject(t)||(t={}),p=t.nshades||72,d=t.format||\\\"hex\\\",f=t.colormap,f||(f=\\\"jet\\\"),\\\"string\\\"==typeof f){if(f=f.toLowerCase(),!s[f])throw Error(f+\\\" not a supported colorscale\\\");h=a(s[f])}else{if(!Array.isArray(f))throw Error(\\\"unsupported colormap option\\\",f);h=a(f)}if(h.length>p)throw new Error(f+\\\" map requires nshades to be at least size \\\"+h.length);for(v=Array.isArray(t.alpha)?2!==t.alpha.length?[1,1]:a(t.alpha):\\\"number\\\"==typeof t.alpha?[t.alpha,t.alpha]:[1,1],e=h.map(function(t){return Math.round(t.index*p)}),v[0]<0&&(v[0]=0),v[1]<0&&(v[0]=0),v[0]>1&&(v[0]=1),v[1]>1&&(v[0]=1),y=0;y<e.length;++y)m=h[y].index,r=h[y].rgb,4===r.length&&r[3]>=0&&r[3]<=1||(r[3]=v[0]+(v[1]-v[0])*m);for(y=0;y<e.length-1;++y)u=e[y+1]-e[y],l=h[y].rgb,c=h[y+1].rgb,b=b.concat(o.linspace(l[0],c[0],u)),x=x.concat(o.linspace(l[1],c[1],u)),_=_.concat(o.linspace(l[2],c[2],u)),w=w.concat(o.linspace(l[3],c[3],u));return b=b.map(Math.round),x=x.map(Math.round),_=_.map(Math.round),g=o.zip(b,x,_,w),\\\"hex\\\"===d&&(g=g.map(n)),\\\"rgbaString\\\"===d&&(g=g.map(i)),g}},{\\\"./colorScales\\\":56,arraytools:48,clone:58}],58:[function(t,e,r){(function(t){var r=function(){\\\"use strict\\\";function e(r,n,i,o){function s(r,i){if(null===r)return null;if(0==i)return r;var l,f;if(\\\"object\\\"!=typeof r)return r;if(e.__isArray(r))l=[];else if(e.__isRegExp(r))l=new RegExp(r.source,a(r)),r.lastIndex&&(l.lastIndex=r.lastIndex);else if(e.__isDate(r))l=new Date(r.getTime());else{if(h&&t.isBuffer(r))return l=new t(r.length),r.copy(l),l;\\\"undefined\\\"==typeof o?(f=Object.getPrototypeOf(r),l=Object.create(f)):(l=Object.create(o),f=o)}if(n){var d=c.indexOf(r);if(-1!=d)return u[d];c.push(r),u.push(l)}for(var p in r){var g;f&&(g=Object.getOwnPropertyDescriptor(f,p)),g&&null==g.set||(l[p]=s(r[p],i-1))}return l}var l;\\\"object\\\"==typeof n&&(i=n.depth,o=n.prototype,l=n.filter,n=n.circular);var c=[],u=[],h=\\\"undefined\\\"!=typeof t;return\\\"undefined\\\"==typeof n&&(n=!0),\\\"undefined\\\"==typeof i&&(i=1/0),s(r,i)}function r(t){return Object.prototype.toString.call(t)}function n(t){return\\\"object\\\"==typeof t&&\\\"[object Date]\\\"===r(t)}function i(t){return\\\"object\\\"==typeof t&&\\\"[object Array]\\\"===r(t)}function o(t){return\\\"object\\\"==typeof t&&\\\"[object RegExp]\\\"===r(t)}function a(t){var e=\\\"\\\";return t.global&&(e+=\\\"g\\\"),t.ignoreCase&&(e+=\\\"i\\\"),t.multiline&&(e+=\\\"m\\\"),e}return e.clonePrototype=function(t){if(null===t)return null;var e=function(){};return e.prototype=t,new e},e.__objToStr=r,e.__isDate=n,e.__isArray=i,e.__isRegExp=o,e.__getRegExpFlags=a,e}();\\\"object\\\"==typeof e&&e.exports&&(e.exports=r)}).call(this,t(\\\"buffer\\\").Buffer)},{buffer:50}],59:[function(t,e,r){function n(t,e){return t-e}function i(t,e){var r=t.length,i=t.length-e.length;if(i)return i;switch(r){case 0:return 0;case 1:return t[0]-e[0];case 2:return t[0]+t[1]-e[0]-e[1]||o(t[0],t[1])-o(e[0],e[1]);case 3:var a=t[0]+t[1],s=e[0]+e[1];if(i=a+t[2]-(s+e[2]))return i;var l=o(t[0],t[1]),c=o(e[0],e[1]);return o(l,t[2])-o(c,e[2])||o(l+t[2],a)-o(c+e[2],s);case 4:var u=t[0],h=t[1],f=t[2],d=t[3],p=e[0],g=e[1],v=e[2],m=e[3];return u+h+f+d-(p+g+v+m)||o(u,h,f,d)-o(p,g,v,m,p)||o(u+h,u+f,u+d,h+f,h+d,f+d)-o(p+g,p+v,p+m,g+v,g+m,v+m)||o(u+h+f,u+h+d,u+f+d,h+f+d)-o(p+g+v,p+g+m,p+v+m,g+v+m);default:for(var y=t.slice().sort(n),b=e.slice().sort(n),x=0;r>x;++x)if(i=y[x]-b[x])return i;return 0}}e.exports=i;var o=Math.min},{}],60:[function(t,e,r){\\\"use strict\\\";function n(t){var e=t.length;if(0===e)return[];if(1===e)return[[0]];var r=t[0].length;return 0===r?[]:1===r?i(t):2===r?o(t):a(t,r)}var i=t(\\\"./lib/ch1d\\\"),o=t(\\\"./lib/ch2d\\\"),a=t(\\\"./lib/chnd\\\");e.exports=n},{\\\"./lib/ch1d\\\":61,\\\"./lib/ch2d\\\":62,\\\"./lib/chnd\\\":63}],61:[function(t,e,r){\\\"use strict\\\";function n(t){for(var e=0,r=0,n=1;n<t.length;++n)t[n][0]<t[e][0]&&(e=n),t[n][0]>t[r][0]&&(r=n);return r>e?[[e],[r]]:e>r?[[r],[e]]:[[e]]}e.exports=n},{}],62:[function(t,e,r){\\\"use strict\\\";function n(t){var e=i(t),r=e.length;if(2>=r)return[];for(var n=new Array(r),o=e[r-1],a=0;r>a;++a){var s=e[a];n[a]=[o,s],o=s}return n}e.exports=n;var i=t(\\\"monotone-convex-hull-2d\\\")},{\\\"monotone-convex-hull-2d\\\":65}],63:[function(t,e,r){\\\"use strict\\\";function n(t,e){for(var r=t.length,n=new Array(r),i=0;i<e.length;++i)n[i]=t[e[i]];for(var o=e.length,i=0;r>i;++i)e.indexOf(i)<0&&(n[o++]=t[i]);return n}function i(t,e){for(var r=t.length,n=e.length,i=0;r>i;++i)for(var o=t[i],a=0;a<o.length;++a){var s=o[a];if(n>s)o[a]=e[s];else{s-=n;for(var l=0;n>l;++l)s>=e[l]&&(s+=1);o[a]=s}}return t}function o(t,e){try{return a(t,!0)}catch(r){var o=s(t);if(o.length<=e)return[];var l=n(t,o),c=a(l,!0);return i(c,o)}}e.exports=o;var a=t(\\\"incremental-convex-hull\\\"),s=t(\\\"affine-hull\\\")},{\\\"affine-hull\\\":64,\\\"incremental-convex-hull\\\":193}],64:[function(t,e,r){\\\"use strict\\\";function n(t,e){for(var r=new Array(e+1),n=0;n<t.length;++n)r[n]=t[n];for(var n=0;n<=t.length;++n){for(var i=t.length;e>=i;++i){for(var a=new Array(e),s=0;e>s;++s)a[s]=Math.pow(i+1-n,s);r[i]=a}var l=o.apply(void 0,r);if(l)return!0}return!1}function i(t){var e=t.length;if(0===e)return[];if(1===e)return[0];for(var r=t[0].length,i=[t[0]],o=[0],a=1;e>a;++a)if(i.push(t[a]),n(i,r)){if(o.push(a),o.length===r+1)return o}else i.pop();return o}e.exports=i;var o=t(\\\"robust-orientation\\\")},{\\\"robust-orientation\\\":216}],65:[function(t,e,r){\\\"use strict\\\";function n(t){var e=t.length;if(3>e){for(var r=new Array(e),n=0;e>n;++n)r[n]=n;return 2===e&&t[0][0]===t[1][0]&&t[0][1]===t[1][1]?[0]:r}for(var o=new Array(e),n=0;e>n;++n)o[n]=n;o.sort(function(e,r){var n=t[e][0]-t[r][0];return n?n:t[e][1]-t[r][1]});for(var a=[o[0],o[1]],s=[o[0],o[1]],n=2;e>n;++n){for(var l=o[n],c=t[l],u=a.length;u>1&&i(t[a[u-2]],t[a[u-1]],c)<=0;)u-=1,a.pop();for(a.push(l),u=s.length;u>1&&i(t[s[u-2]],t[s[u-1]],c)>=0;)u-=1,s.pop();s.push(l)}for(var r=new Array(s.length+a.length-2),h=0,n=0,f=a.length;f>n;++n)r[h++]=a[n];for(var d=s.length-2;d>0;--d)r[h++]=s[d];return r}e.exports=n;var i=t(\\\"robust-orientation\\\")[3]},{\\\"robust-orientation\\\":216}],66:[function(t,e,r){\\\"use strict\\\";function n(){this.argTypes=[],this.shimArgs=[],this.arrayArgs=[],this.arrayBlockIndices=[],this.scalarArgs=[],this.offsetArgs=[],this.offsetArgIndex=[],this.indexArgs=[],this.shapeArgs=[],this.funcName=\\\"\\\",this.pre=null,this.body=null,this.post=null,this.debug=!1}function i(t){var e=new n;e.pre=t.pre,e.body=t.body,e.post=t.post;var r=t.args.slice(0);e.argTypes=r;for(var i=0;i<r.length;++i){var a=r[i];if(\\\"array\\\"===a||\\\"object\\\"==typeof a&&a.blockIndices){if(e.argTypes[i]=\\\"array\\\",e.arrayArgs.push(i),e.arrayBlockIndices.push(a.blockIndices?a.blockIndices:0),e.shimArgs.push(\\\"array\\\"+i),i<e.pre.args.length&&e.pre.args[i].count>0)throw new Error(\\\"cwise: pre() block may not reference array args\\\");if(i<e.post.args.length&&e.post.args[i].count>0)throw new Error(\\\"cwise: post() block may not reference array args\\\")}else if(\\\"scalar\\\"===a)e.scalarArgs.push(i),e.shimArgs.push(\\\"scalar\\\"+i);else if(\\\"index\\\"===a){if(e.indexArgs.push(i),i<e.pre.args.length&&e.pre.args[i].count>0)throw new Error(\\\"cwise: pre() block may not reference array index\\\");if(i<e.body.args.length&&e.body.args[i].lvalue)throw new Error(\\\"cwise: body() block may not write to array index\\\");if(i<e.post.args.length&&e.post.args[i].count>0)throw new Error(\\\"cwise: post() block may not reference array index\\\")}else if(\\\"shape\\\"===a){if(e.shapeArgs.push(i),i<e.pre.args.length&&e.pre.args[i].lvalue)throw new Error(\\\"cwise: pre() block may not write to array shape\\\");if(i<e.body.args.length&&e.body.args[i].lvalue)throw new Error(\\\"cwise: body() block may not write to array shape\\\");if(i<e.post.args.length&&e.post.args[i].lvalue)throw new Error(\\\"cwise: post() block may not write to array shape\\\")}else{if(\\\"object\\\"!=typeof a||!a.offset)throw new Error(\\\"cwise: Unknown argument type \\\"+r[i]);e.argTypes[i]=\\\"offset\\\",e.offsetArgs.push({array:a.array,offset:a.offset}),e.offsetArgIndex.push(i)}}if(e.arrayArgs.length<=0)throw new Error(\\\"cwise: No array arguments specified\\\");if(e.pre.args.length>r.length)throw new Error(\\\"cwise: Too many arguments in pre() block\\\");if(e.body.args.length>r.length)throw new Error(\\\"cwise: Too many arguments in body() block\\\");if(e.post.args.length>r.length)throw new Error(\\\"cwise: Too many arguments in post() block\\\");return e.debug=!!t.printCode||!!t.debug,e.funcName=t.funcName||\\\"cwise\\\",e.blockSize=t.blockSize||64,o(e)}var o=t(\\\"./lib/thunk.js\\\");e.exports=i},{\\\"./lib/thunk.js\\\":68}],67:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){var n,i,o=t.length,a=e.arrayArgs.length,s=e.indexArgs.length>0,l=[],c=[],u=0,h=0;for(n=0;o>n;++n)c.push([\\\"i\\\",n,\\\"=0\\\"].join(\\\"\\\"));for(i=0;a>i;++i)for(n=0;o>n;++n)h=u,u=t[n],0===n?c.push([\\\"d\\\",i,\\\"s\\\",n,\\\"=t\\\",i,\\\"p\\\",u].join(\\\"\\\")):c.push([\\\"d\\\",i,\\\"s\\\",n,\\\"=(t\\\",i,\\\"p\\\",u,\\\"-s\\\",h,\\\"*t\\\",i,\\\"p\\\",h,\\\")\\\"].join(\\\"\\\"));for(l.push(\\\"var \\\"+c.join(\\\",\\\")),n=o-1;n>=0;--n)u=t[n],l.push([\\\"for(i\\\",n,\\\"=0;i\\\",n,\\\"<s\\\",u,\\\";++i\\\",n,\\\"){\\\"].join(\\\"\\\"));for(l.push(r),n=0;o>n;++n){for(h=u,u=t[n],i=0;a>i;++i)l.push([\\\"p\\\",i,\\\"+=d\\\",i,\\\"s\\\",n].join(\\\"\\\"));s&&(n>0&&l.push([\\\"index[\\\",h,\\\"]-=s\\\",h].join(\\\"\\\")),l.push([\\\"++index[\\\",u,\\\"]\\\"].join(\\\"\\\"))),l.push(\\\"}\\\")}return l.join(\\\"\\\\n\\\")}function i(t,e,r,i){for(var o=e.length,a=r.arrayArgs.length,s=r.blockSize,l=r.indexArgs.length>0,c=[],u=0;a>u;++u)c.push([\\\"var offset\\\",u,\\\"=p\\\",u].join(\\\"\\\"));for(var u=t;o>u;++u)c.push([\\\"for(var j\\\"+u+\\\"=SS[\\\",e[u],\\\"]|0;j\\\",u,\\\">0;){\\\"].join(\\\"\\\")),c.push([\\\"if(j\\\",u,\\\"<\\\",s,\\\"){\\\"].join(\\\"\\\")),c.push([\\\"s\\\",e[u],\\\"=j\\\",u].join(\\\"\\\")),c.push([\\\"j\\\",u,\\\"=0\\\"].join(\\\"\\\")),c.push([\\\"}else{s\\\",e[u],\\\"=\\\",s].join(\\\"\\\")),c.push([\\\"j\\\",u,\\\"-=\\\",s,\\\"}\\\"].join(\\\"\\\")),l&&c.push([\\\"index[\\\",e[u],\\\"]=j\\\",u].join(\\\"\\\"));for(var u=0;a>u;++u){for(var h=[\\\"offset\\\"+u],f=t;o>f;++f)h.push([\\\"j\\\",f,\\\"*t\\\",u,\\\"p\\\",e[f]].join(\\\"\\\"));c.push([\\\"p\\\",u,\\\"=(\\\",h.join(\\\"+\\\"),\\\")\\\"].join(\\\"\\\"))}c.push(n(e,r,i));for(var u=t;o>u;++u)c.push(\\\"}\\\");return c.join(\\\"\\\\n\\\")}function o(t){for(var e=0,r=t[0].length;r>e;){for(var n=1;n<t.length;++n)if(t[n][e]!==t[0][e])return e;++e}return e}function a(t,e,r){for(var n=t.body,i=[],o=[],a=0;a<t.args.length;++a){var s=t.args[a];if(!(s.count<=0)){var l=new RegExp(s.name,\\\"g\\\"),c=\\\"\\\",u=e.arrayArgs.indexOf(a);switch(e.argTypes[a]){case\\\"offset\\\":var h=e.offsetArgIndex.indexOf(a),f=e.offsetArgs[h];u=f.array,c=\\\"+q\\\"+h;case\\\"array\\\":c=\\\"p\\\"+u+c;var d=\\\"l\\\"+a,p=\\\"a\\\"+u;if(0===e.arrayBlockIndices[u])1===s.count?\\\"generic\\\"===r[u]?s.lvalue?(i.push([\\\"var \\\",d,\\\"=\\\",p,\\\".get(\\\",c,\\\")\\\"].join(\\\"\\\")),n=n.replace(l,d),o.push([p,\\\".set(\\\",c,\\\",\\\",d,\\\")\\\"].join(\\\"\\\"))):n=n.replace(l,[p,\\\".get(\\\",c,\\\")\\\"].join(\\\"\\\")):n=n.replace(l,[p,\\\"[\\\",c,\\\"]\\\"].join(\\\"\\\")):\\\"generic\\\"===r[u]?(i.push([\\\"var \\\",d,\\\"=\\\",p,\\\".get(\\\",c,\\\")\\\"].join(\\\"\\\")),n=n.replace(l,d),s.lvalue&&o.push([p,\\\".set(\\\",c,\\\",\\\",d,\\\")\\\"].join(\\\"\\\"))):(i.push([\\\"var \\\",d,\\\"=\\\",p,\\\"[\\\",c,\\\"]\\\"].join(\\\"\\\")),n=n.replace(l,d),s.lvalue&&o.push([p,\\\"[\\\",c,\\\"]=\\\",d].join(\\\"\\\")));else{for(var g=[s.name],v=[c],m=0;m<Math.abs(e.arrayBlockIndices[u]);m++)g.push(\\\"\\\\\\\\s*\\\\\\\\[([^\\\\\\\\]]+)\\\\\\\\]\\\"),v.push(\\\"$\\\"+(m+1)+\\\"*t\\\"+u+\\\"b\\\"+m);if(l=new RegExp(g.join(\\\"\\\"),\\\"g\\\"),c=v.join(\\\"+\\\"),\\\"generic\\\"===r[u])throw new Error(\\\"cwise: Generic arrays not supported in combination with blocks!\\\");n=n.replace(l,[p,\\\"[\\\",c,\\\"]\\\"].join(\\\"\\\"))}break;case\\\"scalar\\\":n=n.replace(l,\\\"Y\\\"+e.scalarArgs.indexOf(a));break;case\\\"index\\\":n=n.replace(l,\\\"index\\\");break;case\\\"shape\\\":n=n.replace(l,\\\"shape\\\")}}}return[i.join(\\\"\\\\n\\\"),n,o.join(\\\"\\\\n\\\")].join(\\\"\\\\n\\\").trim()}function s(t){for(var e=new Array(t.length),r=!0,n=0;n<t.length;++n){var i=t[n],o=i.match(/\\\\d+/);o=o?o[0]:\\\"\\\",0===i.charAt(0)?e[n]=\\\"u\\\"+i.charAt(1)+o:e[n]=i.charAt(0)+o,n>0&&(r=r&&e[n]===e[n-1])}return r?e[0]:e.join(\\\"\\\")}function l(t,e){for(var r=e[1].length-Math.abs(t.arrayBlockIndices[0])|0,l=new Array(t.arrayArgs.length),u=new Array(t.arrayArgs.length),h=0;h<t.arrayArgs.length;++h)u[h]=e[2*h],l[h]=e[2*h+1];for(var f=[],d=[],p=[],g=[],v=[],h=0;h<t.arrayArgs.length;++h){t.arrayBlockIndices[h]<0?(p.push(0),g.push(r),f.push(r),d.push(r+t.arrayBlockIndices[h])):(p.push(t.arrayBlockIndices[h]),g.push(t.arrayBlockIndices[h]+r),f.push(0),d.push(t.arrayBlockIndices[h]));for(var m=[],y=0;y<l[h].length;y++)p[h]<=l[h][y]&&l[h][y]<g[h]&&m.push(l[h][y]-p[h]);v.push(m)}for(var b=[\\\"SS\\\"],x=[\\\"'use strict'\\\"],_=[],y=0;r>y;++y)_.push([\\\"s\\\",y,\\\"=SS[\\\",y,\\\"]\\\"].join(\\\"\\\"));for(var h=0;h<t.arrayArgs.length;++h){b.push(\\\"a\\\"+h),b.push(\\\"t\\\"+h),b.push(\\\"p\\\"+h);for(var y=0;r>y;++y)_.push([\\\"t\\\",h,\\\"p\\\",y,\\\"=t\\\",h,\\\"[\\\",p[h]+y,\\\"]\\\"].join(\\\"\\\"));for(var y=0;y<Math.abs(t.arrayBlockIndices[h]);++y)_.push([\\\"t\\\",h,\\\"b\\\",y,\\\"=t\\\",h,\\\"[\\\",f[h]+y,\\\"]\\\"].join(\\\"\\\"))}for(var h=0;h<t.scalarArgs.length;++h)b.push(\\\"Y\\\"+h);if(t.shapeArgs.length>0&&_.push(\\\"shape=SS.slice(0)\\\"),t.indexArgs.length>0){for(var w=new Array(r),h=0;r>h;++h)w[h]=\\\"0\\\";_.push([\\\"index=[\\\",w.join(\\\",\\\"),\\\"]\\\"].join(\\\"\\\"))}for(var h=0;h<t.offsetArgs.length;++h){for(var A=t.offsetArgs[h],k=[],y=0;y<A.offset.length;++y)0!==A.offset[y]&&(1===A.offset[y]?k.push([\\\"t\\\",A.array,\\\"p\\\",y].join(\\\"\\\")):k.push([A.offset[y],\\\"*t\\\",A.array,\\\"p\\\",y].join(\\\"\\\")));0===k.length?_.push(\\\"q\\\"+h+\\\"=0\\\"):_.push([\\\"q\\\",h,\\\"=\\\",k.join(\\\"+\\\")].join(\\\"\\\"))}var M=c([].concat(t.pre.thisVars).concat(t.body.thisVars).concat(t.post.thisVars));_=_.concat(M),x.push(\\\"var \\\"+_.join(\\\",\\\"));for(var h=0;h<t.arrayArgs.length;++h)x.push(\\\"p\\\"+h+\\\"|=0\\\");t.pre.body.length>3&&x.push(a(t.pre,t,u));var T=a(t.body,t,u),E=o(v);r>E?x.push(i(E,v[0],t,T)):x.push(n(v[0],t,T)),t.post.body.length>3&&x.push(a(t.post,t,u)),t.debug&&console.log(\\\"-----Generated cwise routine for \\\",e,\\\":\\\\n\\\"+x.join(\\\"\\\\n\\\")+\\\"\\\\n----------\\\");var L=[t.funcName||\\\"unnamed\\\",\\\"_cwise_loop_\\\",l[0].join(\\\"s\\\"),\\\"m\\\",E,s(u)].join(\\\"\\\"),S=new Function([\\\"function \\\",L,\\\"(\\\",b.join(\\\",\\\"),\\\"){\\\",x.join(\\\"\\\\n\\\"),\\\"} return \\\",L].join(\\\"\\\"));return S()}var c=t(\\\"uniq\\\");e.exports=l},{uniq:236}],68:[function(t,e,r){\\\"use strict\\\";function n(t){var e=[\\\"'use strict'\\\",\\\"var CACHED={}\\\"],r=[],n=t.funcName+\\\"_cwise_thunk\\\";e.push([\\\"return function \\\",n,\\\"(\\\",t.shimArgs.join(\\\",\\\"),\\\"){\\\"].join(\\\"\\\"));for(var o=[],a=[],s=[[\\\"array\\\",t.arrayArgs[0],\\\".shape.slice(\\\",Math.max(0,t.arrayBlockIndices[0]),t.arrayBlockIndices[0]<0?\\\",\\\"+t.arrayBlockIndices[0]+\\\")\\\":\\\")\\\"].join(\\\"\\\")],l=[],c=[],u=0;u<t.arrayArgs.length;++u){var h=t.arrayArgs[u];r.push([\\\"t\\\",h,\\\"=array\\\",h,\\\".dtype,\\\",\\\"r\\\",h,\\\"=array\\\",h,\\\".order\\\"].join(\\\"\\\")),o.push(\\\"t\\\"+h),o.push(\\\"r\\\"+h),a.push(\\\"t\\\"+h),a.push(\\\"r\\\"+h+\\\".join()\\\"),s.push(\\\"array\\\"+h+\\\".data\\\"),s.push(\\\"array\\\"+h+\\\".stride\\\"),s.push(\\\"array\\\"+h+\\\".offset|0\\\"),u>0&&(l.push(\\\"array\\\"+t.arrayArgs[0]+\\\".shape.length===array\\\"+h+\\\".shape.length+\\\"+(Math.abs(t.arrayBlockIndices[0])-Math.abs(t.arrayBlockIndices[u]))),c.push(\\\"array\\\"+t.arrayArgs[0]+\\\".shape[shapeIndex+\\\"+Math.max(0,t.arrayBlockIndices[0])+\\\"]===array\\\"+h+\\\".shape[shapeIndex+\\\"+Math.max(0,t.arrayBlockIndices[u])+\\\"]\\\"))}t.arrayArgs.length>1&&(e.push(\\\"if (!(\\\"+l.join(\\\" && \\\")+\\\")) throw new Error('cwise: Arrays do not all have the same dimensionality!')\\\"),e.push(\\\"for(var shapeIndex=array\\\"+t.arrayArgs[0]+\\\".shape.length-\\\"+Math.abs(t.arrayBlockIndices[0])+\\\"; shapeIndex-->0;) {\\\"),e.push(\\\"if (!(\\\"+c.join(\\\" && \\\")+\\\")) throw new Error('cwise: Arrays do not all have the same shape!')\\\"),e.push(\\\"}\\\"));for(var u=0;u<t.scalarArgs.length;++u)s.push(\\\"scalar\\\"+t.scalarArgs[u]);r.push([\\\"type=[\\\",a.join(\\\",\\\"),\\\"].join()\\\"].join(\\\"\\\")),r.push(\\\"proc=CACHED[type]\\\"),e.push(\\\"var \\\"+r.join(\\\",\\\")),e.push([\\\"if(!proc){\\\",\\\"CACHED[type]=proc=compile([\\\",o.join(\\\",\\\"),\\\"])}\\\",\\\"return proc(\\\",s.join(\\\",\\\"),\\\")}\\\"].join(\\\"\\\")),t.debug&&console.log(\\\"-----Generated thunk:\\\\n\\\"+e.join(\\\"\\\\n\\\")+\\\"\\\\n----------\\\");var f=new Function(\\\"compile\\\",e.join(\\\"\\\\n\\\"));return f(i.bind(void 0,t))}var i=t(\\\"./compile.js\\\");e.exports=n},{\\\"./compile.js\\\":67}],69:[function(t,e,r){e.exports=t(\\\"cwise-compiler\\\")},{\\\"cwise-compiler\\\":66}],70:[function(e,r,n){!function(){function e(t){return t&&(t.ownerDocument||t.document||t).documentElement}function n(t){return t&&(t.ownerDocument&&t.ownerDocument.defaultView||t.document&&t||t.defaultView)}function i(t,e){return e>t?-1:t>e?1:t>=e?0:NaN}function o(t){return null===t?NaN:+t}function a(t){return!isNaN(t)}function s(t){return{left:function(e,r,n,i){for(arguments.length<3&&(n=0),arguments.length<4&&(i=e.length);i>n;){var o=n+i>>>1;t(e[o],r)<0?n=o+1:i=o}return n},right:function(e,r,n,i){for(arguments.length<3&&(n=0),arguments.length<4&&(i=e.length);i>n;){var o=n+i>>>1;t(e[o],r)>0?i=o:n=o+1}return n}}}function l(t){return t.length}function c(t){for(var e=1;t*e%1;)e*=10;return e}function u(t,e){for(var r in e)Object.defineProperty(t.prototype,r,{value:e[r],enumerable:!1})}function h(){this._=Object.create(null)}function f(t){return(t+=\\\"\\\")===Aa||t[0]===ka?ka+t:t}function d(t){return(t+=\\\"\\\")[0]===ka?t.slice(1):t}function p(t){return f(t)in this._}function g(t){return(t=f(t))in this._&&delete this._[t]}function v(){var t=[];for(var e in this._)t.push(d(e));return t}function m(){var t=0;for(var e in this._)++t;return t}function y(){for(var t in this._)return!1;return!0}function b(){this._=Object.create(null)}function x(t){return t}function _(t,e,r){return function(){var n=r.apply(e,arguments);return n===e?t:n}}function w(t,e){if(e in t)return e;e=e.charAt(0).toUpperCase()+e.slice(1);for(var r=0,n=Ma.length;n>r;++r){var i=Ma[r]+e;if(i in t)return i}}function A(){}function k(){}function M(t){function e(){for(var e,n=r,i=-1,o=n.length;++i<o;)(e=n[i].on)&&e.apply(this,arguments);return t}var r=[],n=new h;return e.on=function(e,i){var o,a=n.get(e);return arguments.length<2?a&&a.on:(a&&(a.on=null,r=r.slice(0,o=r.indexOf(a)).concat(r.slice(o+1)),n.remove(e)),i&&r.push(n.set(e,{on:i})),t)},e}function T(){ua.event.preventDefault()}function E(){for(var t,e=ua.event;t=e.sourceEvent;)e=t;return e}function L(t){for(var e=new k,r=0,n=arguments.length;++r<n;)e[arguments[r]]=M(e);return e.of=function(r,n){return function(i){try{var o=i.sourceEvent=ua.event;i.target=t,ua.event=i,e[i.type].apply(r,n)}finally{ua.event=o}}},e}function S(t){return Ea(t,Pa),t}function C(t){return\\\"function\\\"==typeof t?t:function(){return La(t,this)}}function P(t){return\\\"function\\\"==typeof t?t:function(){return Sa(t,this)}}function z(t,e){function r(){this.removeAttribute(t)}function n(){this.removeAttributeNS(t.space,t.local)}function i(){this.setAttribute(t,e)}function o(){this.setAttributeNS(t.space,t.local,e)}function a(){var r=e.apply(this,arguments);null==r?this.removeAttribute(t):this.setAttribute(t,r)}function s(){var r=e.apply(this,arguments);null==r?this.removeAttributeNS(t.space,t.local):this.setAttributeNS(t.space,t.local,r)}return t=ua.ns.qualify(t),null==e?t.local?n:r:\\\"function\\\"==typeof e?t.local?s:a:t.local?o:i}function R(t){return t.trim().replace(/\\\\s+/g,\\\" \\\")}function O(t){return new RegExp(\\\"(?:^|\\\\\\\\s+)\\\"+ua.requote(t)+\\\"(?:\\\\\\\\s+|$)\\\",\\\"g\\\")}function I(t){return(t+\\\"\\\").trim().split(/^|\\\\s+/)}function N(t,e){function r(){for(var r=-1;++r<i;)t[r](this,e)}function n(){for(var r=-1,n=e.apply(this,arguments);++r<i;)t[r](this,n)}t=I(t).map(j);var i=t.length;return\\\"function\\\"==typeof e?n:r}function j(t){var e=O(t);return function(r,n){if(i=r.classList)return n?i.add(t):i.remove(t);var i=r.getAttribute(\\\"class\\\")||\\\"\\\";n?(e.lastIndex=0,e.test(i)||r.setAttribute(\\\"class\\\",R(i+\\\" \\\"+t))):r.setAttribute(\\\"class\\\",R(i.replace(e,\\\" \\\")))}}function F(t,e,r){function n(){this.style.removeProperty(t)}function i(){this.style.setProperty(t,e,r)}function o(){var n=e.apply(this,arguments);null==n?this.style.removeProperty(t):this.style.setProperty(t,n,r)}return null==e?n:\\\"function\\\"==typeof e?o:i}function D(t,e){function r(){delete this[t]}function n(){this[t]=e}function i(){var r=e.apply(this,arguments);null==r?delete this[t]:this[t]=r}return null==e?r:\\\"function\\\"==typeof e?i:n}function B(t){function e(){var e=this.ownerDocument,r=this.namespaceURI;return r===za&&e.documentElement.namespaceURI===za?e.createElement(t):e.createElementNS(r,t)}function r(){return this.ownerDocument.createElementNS(t.space,t.local)}return\\\"function\\\"==typeof t?t:(t=ua.ns.qualify(t)).local?r:e}function U(){var t=this.parentNode;t&&t.removeChild(this)}function V(t){return{__data__:t}}function q(t){return function(){return Ca(this,t)}}function H(t){return arguments.length||(t=i),function(e,r){return e&&r?t(e.__data__,r.__data__):!e-!r}}function G(t,e){for(var r=0,n=t.length;n>r;r++)for(var i,o=t[r],a=0,s=o.length;s>a;a++)(i=o[a])&&e(i,a,r);return t}function Y(t){return Ea(t,Oa),t}function X(t){var e,r;return function(n,i,o){var a,s=t[o].update,l=s.length;for(o!=r&&(r=o,e=0),i>=e&&(e=i+1);!(a=s[e])&&++e<l;);return a}}function W(t,e,r){function n(){var e=this[a];e&&(this.removeEventListener(t,e,e.$),delete this[a])}function i(){var i=l(e,fa(arguments));n.call(this),this.addEventListener(t,this[a]=i,i.$=r),i._=e}function o(){var e,r=new RegExp(\\\"^__on([^.]+)\\\"+ua.requote(t)+\\\"$\\\");for(var n in this)if(e=n.match(r)){var i=this[n];this.removeEventListener(e[1],i,i.$),delete this[n]}}var a=\\\"__on\\\"+t,s=t.indexOf(\\\".\\\"),l=Z;s>0&&(t=t.slice(0,s));var c=Ia.get(t);return c&&(t=c,l=$),s?e?i:n:e?A:o}function Z(t,e){return function(r){var n=ua.event;ua.event=r,e[0]=this.__data__;try{t.apply(this,e)}finally{ua.event=n}}}function $(t,e){var r=Z(t,e);return function(t){var e=this,n=t.relatedTarget;n&&(n===e||8&n.compareDocumentPosition(e))||r.call(e,t)}}function K(t){var r=\\\".dragsuppress-\\\"+ ++ja,i=\\\"click\\\"+r,o=ua.select(n(t)).on(\\\"touchmove\\\"+r,T).on(\\\"dragstart\\\"+r,T).on(\\\"selectstart\\\"+r,T);\\n\",\n       \"if(null==Na&&(Na=\\\"onselectstart\\\"in t?!1:w(t.style,\\\"userSelect\\\")),Na){var a=e(t).style,s=a[Na];a[Na]=\\\"none\\\"}return function(t){if(o.on(r,null),Na&&(a[Na]=s),t){var e=function(){o.on(i,null)};o.on(i,function(){T(),e()},!0),setTimeout(e,0)}}}function Q(t,e){e.changedTouches&&(e=e.changedTouches[0]);var r=t.ownerSVGElement||t;if(r.createSVGPoint){var i=r.createSVGPoint();if(0>Fa){var o=n(t);if(o.scrollX||o.scrollY){r=ua.select(\\\"body\\\").append(\\\"svg\\\").style({position:\\\"absolute\\\",top:0,left:0,margin:0,padding:0,border:\\\"none\\\"},\\\"important\\\");var a=r[0][0].getScreenCTM();Fa=!(a.f||a.e),r.remove()}}return Fa?(i.x=e.pageX,i.y=e.pageY):(i.x=e.clientX,i.y=e.clientY),i=i.matrixTransform(t.getScreenCTM().inverse()),[i.x,i.y]}var s=t.getBoundingClientRect();return[e.clientX-s.left-t.clientLeft,e.clientY-s.top-t.clientTop]}function J(){return ua.event.changedTouches[0].identifier}function tt(t){return t>0?1:0>t?-1:0}function et(t,e,r){return(e[0]-t[0])*(r[1]-t[1])-(e[1]-t[1])*(r[0]-t[0])}function rt(t){return t>1?0:-1>t?Ua:Math.acos(t)}function nt(t){return t>1?Ha:-1>t?-Ha:Math.asin(t)}function it(t){return((t=Math.exp(t))-1/t)/2}function ot(t){return((t=Math.exp(t))+1/t)/2}function at(t){return((t=Math.exp(2*t))-1)/(t+1)}function st(t){return(t=Math.sin(t/2))*t}function lt(){}function ct(t,e,r){return this instanceof ct?(this.h=+t,this.s=+e,void(this.l=+r)):arguments.length<2?t instanceof ct?new ct(t.h,t.s,t.l):At(\\\"\\\"+t,kt,ct):new ct(t,e,r)}function ut(t,e,r){function n(t){return t>360?t-=360:0>t&&(t+=360),60>t?o+(a-o)*t/60:180>t?a:240>t?o+(a-o)*(240-t)/60:o}function i(t){return Math.round(255*n(t))}var o,a;return t=isNaN(t)?0:(t%=360)<0?t+360:t,e=isNaN(e)?0:0>e?0:e>1?1:e,r=0>r?0:r>1?1:r,a=.5>=r?r*(1+e):r+e-r*e,o=2*r-a,new bt(i(t+120),i(t),i(t-120))}function ht(t,e,r){return this instanceof ht?(this.h=+t,this.c=+e,void(this.l=+r)):arguments.length<2?t instanceof ht?new ht(t.h,t.c,t.l):t instanceof dt?gt(t.l,t.a,t.b):gt((t=Mt((t=ua.rgb(t)).r,t.g,t.b)).l,t.a,t.b):new ht(t,e,r)}function ft(t,e,r){return isNaN(t)&&(t=0),isNaN(e)&&(e=0),new dt(r,Math.cos(t*=Ga)*e,Math.sin(t)*e)}function dt(t,e,r){return this instanceof dt?(this.l=+t,this.a=+e,void(this.b=+r)):arguments.length<2?t instanceof dt?new dt(t.l,t.a,t.b):t instanceof ht?ft(t.h,t.c,t.l):Mt((t=bt(t)).r,t.g,t.b):new dt(t,e,r)}function pt(t,e,r){var n=(t+16)/116,i=n+e/500,o=n-r/200;return i=vt(i)*rs,n=vt(n)*ns,o=vt(o)*is,new bt(yt(3.2404542*i-1.5371385*n-.4985314*o),yt(-.969266*i+1.8760108*n+.041556*o),yt(.0556434*i-.2040259*n+1.0572252*o))}function gt(t,e,r){return t>0?new ht(Math.atan2(r,e)*Ya,Math.sqrt(e*e+r*r),t):new ht(NaN,NaN,t)}function vt(t){return t>.206893034?t*t*t:(t-4/29)/7.787037}function mt(t){return t>.008856?Math.pow(t,1/3):7.787037*t+4/29}function yt(t){return Math.round(255*(.00304>=t?12.92*t:1.055*Math.pow(t,1/2.4)-.055))}function bt(t,e,r){return this instanceof bt?(this.r=~~t,this.g=~~e,void(this.b=~~r)):arguments.length<2?t instanceof bt?new bt(t.r,t.g,t.b):At(\\\"\\\"+t,bt,ut):new bt(t,e,r)}function xt(t){return new bt(t>>16,t>>8&255,255&t)}function _t(t){return xt(t)+\\\"\\\"}function wt(t){return 16>t?\\\"0\\\"+Math.max(0,t).toString(16):Math.min(255,t).toString(16)}function At(t,e,r){var n,i,o,a=0,s=0,l=0;if(n=/([a-z]+)\\\\((.*)\\\\)/.exec(t=t.toLowerCase()))switch(i=n[2].split(\\\",\\\"),n[1]){case\\\"hsl\\\":return r(parseFloat(i[0]),parseFloat(i[1])/100,parseFloat(i[2])/100);case\\\"rgb\\\":return e(Et(i[0]),Et(i[1]),Et(i[2]))}return(o=ss.get(t))?e(o.r,o.g,o.b):(null==t||\\\"#\\\"!==t.charAt(0)||isNaN(o=parseInt(t.slice(1),16))||(4===t.length?(a=(3840&o)>>4,a=a>>4|a,s=240&o,s=s>>4|s,l=15&o,l=l<<4|l):7===t.length&&(a=(16711680&o)>>16,s=(65280&o)>>8,l=255&o)),e(a,s,l))}function kt(t,e,r){var n,i,o=Math.min(t/=255,e/=255,r/=255),a=Math.max(t,e,r),s=a-o,l=(a+o)/2;return s?(i=.5>l?s/(a+o):s/(2-a-o),n=t==a?(e-r)/s+(r>e?6:0):e==a?(r-t)/s+2:(t-e)/s+4,n*=60):(n=NaN,i=l>0&&1>l?0:n),new ct(n,i,l)}function Mt(t,e,r){t=Tt(t),e=Tt(e),r=Tt(r);var n=mt((.4124564*t+.3575761*e+.1804375*r)/rs),i=mt((.2126729*t+.7151522*e+.072175*r)/ns),o=mt((.0193339*t+.119192*e+.9503041*r)/is);return dt(116*i-16,500*(n-i),200*(i-o))}function Tt(t){return(t/=255)<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)}function Et(t){var e=parseFloat(t);return\\\"%\\\"===t.charAt(t.length-1)?Math.round(2.55*e):e}function Lt(t){return\\\"function\\\"==typeof t?t:function(){return t}}function St(t){return function(e,r,n){return 2===arguments.length&&\\\"function\\\"==typeof r&&(n=r,r=null),Ct(e,r,t,n)}}function Ct(t,e,r,n){function i(){var t,e=l.status;if(!e&&zt(l)||e>=200&&300>e||304===e){try{t=r.call(o,l)}catch(n){return void a.error.call(o,n)}a.load.call(o,t)}else a.error.call(o,l)}var o={},a=ua.dispatch(\\\"beforesend\\\",\\\"progress\\\",\\\"load\\\",\\\"error\\\"),s={},l=new XMLHttpRequest,c=null;return!this.XDomainRequest||\\\"withCredentials\\\"in l||!/^(http(s)?:)?\\\\/\\\\//.test(t)||(l=new XDomainRequest),\\\"onload\\\"in l?l.onload=l.onerror=i:l.onreadystatechange=function(){l.readyState>3&&i()},l.onprogress=function(t){var e=ua.event;ua.event=t;try{a.progress.call(o,l)}finally{ua.event=e}},o.header=function(t,e){return t=(t+\\\"\\\").toLowerCase(),arguments.length<2?s[t]:(null==e?delete s[t]:s[t]=e+\\\"\\\",o)},o.mimeType=function(t){return arguments.length?(e=null==t?null:t+\\\"\\\",o):e},o.responseType=function(t){return arguments.length?(c=t,o):c},o.response=function(t){return r=t,o},[\\\"get\\\",\\\"post\\\"].forEach(function(t){o[t]=function(){return o.send.apply(o,[t].concat(fa(arguments)))}}),o.send=function(r,n,i){if(2===arguments.length&&\\\"function\\\"==typeof n&&(i=n,n=null),l.open(r,t,!0),null==e||\\\"accept\\\"in s||(s.accept=e+\\\",*/*\\\"),l.setRequestHeader)for(var u in s)l.setRequestHeader(u,s[u]);return null!=e&&l.overrideMimeType&&l.overrideMimeType(e),null!=c&&(l.responseType=c),null!=i&&o.on(\\\"error\\\",i).on(\\\"load\\\",function(t){i(null,t)}),a.beforesend.call(o,l),l.send(null==n?null:n),o},o.abort=function(){return l.abort(),o},ua.rebind(o,a,\\\"on\\\"),null==n?o:o.get(Pt(n))}function Pt(t){return 1===t.length?function(e,r){t(null==e?r:null)}:t}function zt(t){var e=t.responseType;return e&&\\\"text\\\"!==e?t.response:t.responseText}function Rt(t,e,r){var n=arguments.length;2>n&&(e=0),3>n&&(r=Date.now());var i=r+e,o={c:t,t:i,n:null};return cs?cs.n=o:ls=o,cs=o,us||(hs=clearTimeout(hs),us=1,fs(Ot)),o}function Ot(){var t=It(),e=Nt()-t;e>24?(isFinite(e)&&(clearTimeout(hs),hs=setTimeout(Ot,e)),us=0):(us=1,fs(Ot))}function It(){for(var t=Date.now(),e=ls;e;)t>=e.t&&e.c(t-e.t)&&(e.c=null),e=e.n;return t}function Nt(){for(var t,e=ls,r=1/0;e;)e.c?(e.t<r&&(r=e.t),e=(t=e).n):e=t?t.n=e.n:ls=e.n;return cs=t,r}function jt(t,e){return e-(t?Math.ceil(Math.log(t)/Math.LN10):1)}function Ft(t,e){var r=Math.pow(10,3*wa(8-e));return{scale:e>8?function(t){return t/r}:function(t){return t*r},symbol:t}}function Dt(t){var e=t.decimal,r=t.thousands,n=t.grouping,i=t.currency,o=n&&r?function(t,e){for(var i=t.length,o=[],a=0,s=n[0],l=0;i>0&&s>0&&(l+s+1>e&&(s=Math.max(1,e-l)),o.push(t.substring(i-=s,i+s)),!((l+=s+1)>e));)s=n[a=(a+1)%n.length];return o.reverse().join(r)}:x;return function(t){var r=ps.exec(t),n=r[1]||\\\" \\\",a=r[2]||\\\">\\\",s=r[3]||\\\"-\\\",l=r[4]||\\\"\\\",c=r[5],u=+r[6],h=r[7],f=r[8],d=r[9],p=1,g=\\\"\\\",v=\\\"\\\",m=!1,y=!0;switch(f&&(f=+f.substring(1)),(c||\\\"0\\\"===n&&\\\"=\\\"===a)&&(c=n=\\\"0\\\",a=\\\"=\\\"),d){case\\\"n\\\":h=!0,d=\\\"g\\\";break;case\\\"%\\\":p=100,v=\\\"%\\\",d=\\\"f\\\";break;case\\\"p\\\":p=100,v=\\\"%\\\",d=\\\"r\\\";break;case\\\"b\\\":case\\\"o\\\":case\\\"x\\\":case\\\"X\\\":\\\"#\\\"===l&&(g=\\\"0\\\"+d.toLowerCase());case\\\"c\\\":y=!1;case\\\"d\\\":m=!0,f=0;break;case\\\"s\\\":p=-1,d=\\\"r\\\"}\\\"$\\\"===l&&(g=i[0],v=i[1]),\\\"r\\\"!=d||f||(d=\\\"g\\\"),null!=f&&(\\\"g\\\"==d?f=Math.max(1,Math.min(21,f)):\\\"e\\\"!=d&&\\\"f\\\"!=d||(f=Math.max(0,Math.min(20,f)))),d=gs.get(d)||Bt;var b=c&&h;return function(t){var r=v;if(m&&t%1)return\\\"\\\";var i=0>t||0===t&&0>1/t?(t=-t,\\\"-\\\"):\\\"-\\\"===s?\\\"\\\":s;if(0>p){var l=ua.formatPrefix(t,f);t=l.scale(t),r=l.symbol+v}else t*=p;t=d(t,f);var x,_,w=t.lastIndexOf(\\\".\\\");if(0>w){var A=y?t.lastIndexOf(\\\"e\\\"):-1;0>A?(x=t,_=\\\"\\\"):(x=t.substring(0,A),_=t.substring(A))}else x=t.substring(0,w),_=e+t.substring(w+1);!c&&h&&(x=o(x,1/0));var k=g.length+x.length+_.length+(b?0:i.length),M=u>k?new Array(k=u-k+1).join(n):\\\"\\\";return b&&(x=o(M+x,M.length?u-_.length:1/0)),i+=g,t=x+_,(\\\"<\\\"===a?i+t+M:\\\">\\\"===a?M+i+t:\\\"^\\\"===a?M.substring(0,k>>=1)+i+t+M.substring(k):i+(b?t:M+t))+r}}}function Bt(t){return t+\\\"\\\"}function Ut(){this._=new Date(arguments.length>1?Date.UTC.apply(this,arguments):arguments[0])}function Vt(t,e,r){function n(e){var r=t(e),n=o(r,1);return n-e>e-r?r:n}function i(r){return e(r=t(new ms(r-1)),1),r}function o(t,r){return e(t=new ms(+t),r),t}function a(t,n,o){var a=i(t),s=[];if(o>1)for(;n>a;)r(a)%o||s.push(new Date(+a)),e(a,1);else for(;n>a;)s.push(new Date(+a)),e(a,1);return s}function s(t,e,r){try{ms=Ut;var n=new Ut;return n._=t,a(n,e,r)}finally{ms=Date}}t.floor=t,t.round=n,t.ceil=i,t.offset=o,t.range=a;var l=t.utc=qt(t);return l.floor=l,l.round=qt(n),l.ceil=qt(i),l.offset=qt(o),l.range=s,t}function qt(t){return function(e,r){try{ms=Ut;var n=new Ut;return n._=e,t(n,r)._}finally{ms=Date}}}function Ht(t){function e(t){function e(e){for(var r,i,o,a=[],s=-1,l=0;++s<n;)37===t.charCodeAt(s)&&(a.push(t.slice(l,s)),null!=(i=bs[r=t.charAt(++s)])&&(r=t.charAt(++s)),(o=L[r])&&(r=o(e,null==i?\\\"e\\\"===r?\\\" \\\":\\\"0\\\":i)),a.push(r),l=s+1);return a.push(t.slice(l,s)),a.join(\\\"\\\")}var n=t.length;return e.parse=function(e){var n={y:1900,m:0,d:1,H:0,M:0,S:0,L:0,Z:null},i=r(n,t,e,0);if(i!=e.length)return null;\\\"p\\\"in n&&(n.H=n.H%12+12*n.p);var o=null!=n.Z&&ms!==Ut,a=new(o?Ut:ms);return\\\"j\\\"in n?a.setFullYear(n.y,0,n.j):\\\"W\\\"in n||\\\"U\\\"in n?(\\\"w\\\"in n||(n.w=\\\"W\\\"in n?1:0),a.setFullYear(n.y,0,1),a.setFullYear(n.y,0,\\\"W\\\"in n?(n.w+6)%7+7*n.W-(a.getDay()+5)%7:n.w+7*n.U-(a.getDay()+6)%7)):a.setFullYear(n.y,n.m,n.d),a.setHours(n.H+(n.Z/100|0),n.M+n.Z%100,n.S,n.L),o?a._:a},e.toString=function(){return t},e}function r(t,e,r,n){for(var i,o,a,s=0,l=e.length,c=r.length;l>s;){if(n>=c)return-1;if(i=e.charCodeAt(s++),37===i){if(a=e.charAt(s++),o=S[a in bs?e.charAt(s++):a],!o||(n=o(t,r,n))<0)return-1}else if(i!=r.charCodeAt(n++))return-1}return n}function n(t,e,r){w.lastIndex=0;var n=w.exec(e.slice(r));return n?(t.w=A.get(n[0].toLowerCase()),r+n[0].length):-1}function i(t,e,r){x.lastIndex=0;var n=x.exec(e.slice(r));return n?(t.w=_.get(n[0].toLowerCase()),r+n[0].length):-1}function o(t,e,r){T.lastIndex=0;var n=T.exec(e.slice(r));return n?(t.m=E.get(n[0].toLowerCase()),r+n[0].length):-1}function a(t,e,r){k.lastIndex=0;var n=k.exec(e.slice(r));return n?(t.m=M.get(n[0].toLowerCase()),r+n[0].length):-1}function s(t,e,n){return r(t,L.c.toString(),e,n)}function l(t,e,n){return r(t,L.x.toString(),e,n)}function c(t,e,n){return r(t,L.X.toString(),e,n)}function u(t,e,r){var n=b.get(e.slice(r,r+=2).toLowerCase());return null==n?-1:(t.p=n,r)}var h=t.dateTime,f=t.date,d=t.time,p=t.periods,g=t.days,v=t.shortDays,m=t.months,y=t.shortMonths;e.utc=function(t){function r(t){try{ms=Ut;var e=new ms;return e._=t,n(e)}finally{ms=Date}}var n=e(t);return r.parse=function(t){try{ms=Ut;var e=n.parse(t);return e&&e._}finally{ms=Date}},r.toString=n.toString,r},e.multi=e.utc.multi=ue;var b=ua.map(),x=Yt(g),_=Xt(g),w=Yt(v),A=Xt(v),k=Yt(m),M=Xt(m),T=Yt(y),E=Xt(y);p.forEach(function(t,e){b.set(t.toLowerCase(),e)});var L={a:function(t){return v[t.getDay()]},A:function(t){return g[t.getDay()]},b:function(t){return y[t.getMonth()]},B:function(t){return m[t.getMonth()]},c:e(h),d:function(t,e){return Gt(t.getDate(),e,2)},e:function(t,e){return Gt(t.getDate(),e,2)},H:function(t,e){return Gt(t.getHours(),e,2)},I:function(t,e){return Gt(t.getHours()%12||12,e,2)},j:function(t,e){return Gt(1+vs.dayOfYear(t),e,3)},L:function(t,e){return Gt(t.getMilliseconds(),e,3)},m:function(t,e){return Gt(t.getMonth()+1,e,2)},M:function(t,e){return Gt(t.getMinutes(),e,2)},p:function(t){return p[+(t.getHours()>=12)]},S:function(t,e){return Gt(t.getSeconds(),e,2)},U:function(t,e){return Gt(vs.sundayOfYear(t),e,2)},w:function(t){return t.getDay()},W:function(t,e){return Gt(vs.mondayOfYear(t),e,2)},x:e(f),X:e(d),y:function(t,e){return Gt(t.getFullYear()%100,e,2)},Y:function(t,e){return Gt(t.getFullYear()%1e4,e,4)},Z:le,\\\"%\\\":function(){return\\\"%\\\"}},S={a:n,A:i,b:o,B:a,c:s,d:re,e:re,H:ie,I:ie,j:ne,L:se,m:ee,M:oe,p:u,S:ae,U:Zt,w:Wt,W:$t,x:l,X:c,y:Qt,Y:Kt,Z:Jt,\\\"%\\\":ce};return e}function Gt(t,e,r){var n=0>t?\\\"-\\\":\\\"\\\",i=(n?-t:t)+\\\"\\\",o=i.length;return n+(r>o?new Array(r-o+1).join(e)+i:i)}function Yt(t){return new RegExp(\\\"^(?:\\\"+t.map(ua.requote).join(\\\"|\\\")+\\\")\\\",\\\"i\\\")}function Xt(t){for(var e=new h,r=-1,n=t.length;++r<n;)e.set(t[r].toLowerCase(),r);return e}function Wt(t,e,r){xs.lastIndex=0;var n=xs.exec(e.slice(r,r+1));return n?(t.w=+n[0],r+n[0].length):-1}function Zt(t,e,r){xs.lastIndex=0;var n=xs.exec(e.slice(r));return n?(t.U=+n[0],r+n[0].length):-1}function $t(t,e,r){xs.lastIndex=0;var n=xs.exec(e.slice(r));return n?(t.W=+n[0],r+n[0].length):-1}function Kt(t,e,r){xs.lastIndex=0;var n=xs.exec(e.slice(r,r+4));return n?(t.y=+n[0],r+n[0].length):-1}function Qt(t,e,r){xs.lastIndex=0;var n=xs.exec(e.slice(r,r+2));return n?(t.y=te(+n[0]),r+n[0].length):-1}function Jt(t,e,r){return/^[+-]\\\\d{4}$/.test(e=e.slice(r,r+5))?(t.Z=-e,r+5):-1}function te(t){return t+(t>68?1900:2e3)}function ee(t,e,r){xs.lastIndex=0;var n=xs.exec(e.slice(r,r+2));return n?(t.m=n[0]-1,r+n[0].length):-1}function re(t,e,r){xs.lastIndex=0;var n=xs.exec(e.slice(r,r+2));return n?(t.d=+n[0],r+n[0].length):-1}function ne(t,e,r){xs.lastIndex=0;var n=xs.exec(e.slice(r,r+3));return n?(t.j=+n[0],r+n[0].length):-1}function ie(t,e,r){xs.lastIndex=0;var n=xs.exec(e.slice(r,r+2));return n?(t.H=+n[0],r+n[0].length):-1}function oe(t,e,r){xs.lastIndex=0;var n=xs.exec(e.slice(r,r+2));return n?(t.M=+n[0],r+n[0].length):-1}function ae(t,e,r){xs.lastIndex=0;var n=xs.exec(e.slice(r,r+2));return n?(t.S=+n[0],r+n[0].length):-1}function se(t,e,r){xs.lastIndex=0;var n=xs.exec(e.slice(r,r+3));return n?(t.L=+n[0],r+n[0].length):-1}function le(t){var e=t.getTimezoneOffset(),r=e>0?\\\"-\\\":\\\"+\\\",n=wa(e)/60|0,i=wa(e)%60;return r+Gt(n,\\\"0\\\",2)+Gt(i,\\\"0\\\",2)}function ce(t,e,r){_s.lastIndex=0;var n=_s.exec(e.slice(r,r+1));return n?r+n[0].length:-1}function ue(t){for(var e=t.length,r=-1;++r<e;)t[r][0]=this(t[r][0]);return function(e){for(var r=0,n=t[r];!n[1](e);)n=t[++r];return n[0](e)}}function he(){}function fe(t,e,r){var n=r.s=t+e,i=n-t,o=n-i;r.t=t-o+(e-i)}function de(t,e){t&&Ms.hasOwnProperty(t.type)&&Ms[t.type](t,e)}function pe(t,e,r){var n,i=-1,o=t.length-r;for(e.lineStart();++i<o;)n=t[i],e.point(n[0],n[1],n[2]);e.lineEnd()}function ge(t,e){var r=-1,n=t.length;for(e.polygonStart();++r<n;)pe(t[r],e,1);e.polygonEnd()}function ve(){function t(t,e){t*=Ga,e=e*Ga/2+Ua/4;var r=t-n,a=r>=0?1:-1,s=a*r,l=Math.cos(e),c=Math.sin(e),u=o*c,h=i*l+u*Math.cos(s),f=u*a*Math.sin(s);Es.add(Math.atan2(f,h)),n=t,i=l,o=c}var e,r,n,i,o;Ls.point=function(a,s){Ls.point=t,n=(e=a)*Ga,i=Math.cos(s=(r=s)*Ga/2+Ua/4),o=Math.sin(s)},Ls.lineEnd=function(){t(e,r)}}function me(t){var e=t[0],r=t[1],n=Math.cos(r);return[n*Math.cos(e),n*Math.sin(e),Math.sin(r)]}function ye(t,e){return t[0]*e[0]+t[1]*e[1]+t[2]*e[2]}function be(t,e){return[t[1]*e[2]-t[2]*e[1],t[2]*e[0]-t[0]*e[2],t[0]*e[1]-t[1]*e[0]]}function xe(t,e){t[0]+=e[0],t[1]+=e[1],t[2]+=e[2]}function _e(t,e){return[t[0]*e,t[1]*e,t[2]*e]}function we(t){var e=Math.sqrt(t[0]*t[0]+t[1]*t[1]+t[2]*t[2]);t[0]/=e,t[1]/=e,t[2]/=e}function Ae(t){return[Math.atan2(t[1],t[0]),nt(t[2])]}function ke(t,e){return wa(t[0]-e[0])<Da&&wa(t[1]-e[1])<Da}function Me(t,e){t*=Ga;var r=Math.cos(e*=Ga);Te(r*Math.cos(t),r*Math.sin(t),Math.sin(e))}function Te(t,e,r){++Ss,Ps+=(t-Ps)/Ss,zs+=(e-zs)/Ss,Rs+=(r-Rs)/Ss}function Ee(){function t(t,i){t*=Ga;var o=Math.cos(i*=Ga),a=o*Math.cos(t),s=o*Math.sin(t),l=Math.sin(i),c=Math.atan2(Math.sqrt((c=r*l-n*s)*c+(c=n*a-e*l)*c+(c=e*s-r*a)*c),e*a+r*s+n*l);Cs+=c,Os+=c*(e+(e=a)),Is+=c*(r+(r=s)),Ns+=c*(n+(n=l)),Te(e,r,n)}var e,r,n;Bs.point=function(i,o){i*=Ga;var a=Math.cos(o*=Ga);e=a*Math.cos(i),r=a*Math.sin(i),n=Math.sin(o),Bs.point=t,Te(e,r,n)}}function Le(){Bs.point=Me}function Se(){function t(t,e){t*=Ga;var r=Math.cos(e*=Ga),a=r*Math.cos(t),s=r*Math.sin(t),l=Math.sin(e),c=i*l-o*s,u=o*a-n*l,h=n*s-i*a,f=Math.sqrt(c*c+u*u+h*h),d=n*a+i*s+o*l,p=f&&-rt(d)/f,g=Math.atan2(f,d);js+=p*c,Fs+=p*u,Ds+=p*h,Cs+=g,Os+=g*(n+(n=a)),Is+=g*(i+(i=s)),Ns+=g*(o+(o=l)),Te(n,i,o)}var e,r,n,i,o;Bs.point=function(a,s){e=a,r=s,Bs.point=t,a*=Ga;var l=Math.cos(s*=Ga);n=l*Math.cos(a),i=l*Math.sin(a),o=Math.sin(s),Te(n,i,o)},Bs.lineEnd=function(){t(e,r),Bs.lineEnd=Le,Bs.point=Me}}function Ce(t,e){function r(r,n){return r=t(r,n),e(r[0],r[1])}return t.invert&&e.invert&&(r.invert=function(r,n){return r=e.invert(r,n),r&&t.invert(r[0],r[1])}),r}function Pe(){return!0}function ze(t,e,r,n,i){var o=[],a=[];if(t.forEach(function(t){if(!((e=t.length-1)<=0)){var e,r=t[0],n=t[e];if(ke(r,n)){i.lineStart();for(var s=0;e>s;++s)i.point((r=t[s])[0],r[1]);return void i.lineEnd()}var l=new Oe(r,t,null,!0),c=new Oe(r,null,l,!1);l.o=c,o.push(l),a.push(c),l=new Oe(n,t,null,!1),c=new Oe(n,null,l,!0),l.o=c,o.push(l),a.push(c)}}),a.sort(e),Re(o),Re(a),o.length){for(var s=0,l=r,c=a.length;c>s;++s)a[s].e=l=!l;for(var u,h,f=o[0];;){for(var d=f,p=!0;d.v;)if((d=d.n)===f)return;u=d.z,i.lineStart();do{if(d.v=d.o.v=!0,d.e){if(p)for(var s=0,c=u.length;c>s;++s)i.point((h=u[s])[0],h[1]);else n(d.x,d.n.x,1,i);d=d.n}else{if(p){u=d.p.z;for(var s=u.length-1;s>=0;--s)i.point((h=u[s])[0],h[1])}else n(d.x,d.p.x,-1,i);d=d.p}d=d.o,u=d.z,p=!p}while(!d.v);i.lineEnd()}}}function Re(t){if(e=t.length){for(var e,r,n=0,i=t[0];++n<e;)i.n=r=t[n],r.p=i,i=r;i.n=r=t[0],r.p=i}}function Oe(t,e,r,n){this.x=t,this.z=e,this.o=r,this.e=n,this.v=!1,this.n=this.p=null}function Ie(t,e,r,n){return function(i,o){function a(e,r){var n=i(e,r);t(e=n[0],r=n[1])&&o.point(e,r)}function s(t,e){var r=i(t,e);v.point(r[0],r[1])}function l(){y.point=s,v.lineStart()}function c(){y.point=a,v.lineEnd()}function u(t,e){g.push([t,e]);var r=i(t,e);x.point(r[0],r[1])}function h(){x.lineStart(),g=[]}function f(){u(g[0][0],g[0][1]),x.lineEnd();var t,e=x.clean(),r=b.buffer(),n=r.length;if(g.pop(),p.push(g),g=null,n)if(1&e){t=r[0];var i,n=t.length-1,a=-1;if(n>0){for(_||(o.polygonStart(),_=!0),o.lineStart();++a<n;)o.point((i=t[a])[0],i[1]);o.lineEnd()}}else n>1&&2&e&&r.push(r.pop().concat(r.shift())),d.push(r.filter(Ne))}var d,p,g,v=e(o),m=i.invert(n[0],n[1]),y={point:a,lineStart:l,lineEnd:c,polygonStart:function(){y.point=u,y.lineStart=h,y.lineEnd=f,d=[],p=[]},polygonEnd:function(){y.point=a,y.lineStart=l,y.lineEnd=c,d=ua.merge(d);var t=Ve(m,p);d.length?(_||(o.polygonStart(),_=!0),ze(d,Fe,t,r,o)):t&&(_||(o.polygonStart(),_=!0),o.lineStart(),r(null,null,1,o),o.lineEnd()),_&&(o.polygonEnd(),_=!1),d=p=null},sphere:function(){o.polygonStart(),o.lineStart(),r(null,null,1,o),o.lineEnd(),o.polygonEnd()}},b=je(),x=e(b),_=!1;return y}}function Ne(t){return t.length>1}function je(){var t,e=[];return{lineStart:function(){e.push(t=[])},point:function(e,r){t.push([e,r])},lineEnd:A,buffer:function(){var r=e;return e=[],t=null,r},rejoin:function(){e.length>1&&e.push(e.pop().concat(e.shift()))}}}function Fe(t,e){return((t=t.x)[0]<0?t[1]-Ha-Da:Ha-t[1])-((e=e.x)[0]<0?e[1]-Ha-Da:Ha-e[1])}function De(t){var e,r=NaN,n=NaN,i=NaN;return{lineStart:function(){t.lineStart(),e=1},point:function(o,a){var s=o>0?Ua:-Ua,l=wa(o-r);wa(l-Ua)<Da?(t.point(r,n=(n+a)/2>0?Ha:-Ha),t.point(i,n),t.lineEnd(),t.lineStart(),t.point(s,n),t.point(o,n),e=0):i!==s&&l>=Ua&&(wa(r-i)<Da&&(r-=i*Da),wa(o-s)<Da&&(o-=s*Da),n=Be(r,n,o,a),t.point(i,n),t.lineEnd(),t.lineStart(),t.point(s,n),e=0),t.point(r=o,n=a),i=s},lineEnd:function(){t.lineEnd(),r=n=NaN},clean:function(){return 2-e}}}function Be(t,e,r,n){var i,o,a=Math.sin(t-r);return wa(a)>Da?Math.atan((Math.sin(e)*(o=Math.cos(n))*Math.sin(r)-Math.sin(n)*(i=Math.cos(e))*Math.sin(t))/(i*o*a)):(e+n)/2}function Ue(t,e,r,n){var i;if(null==t)i=r*Ha,n.point(-Ua,i),n.point(0,i),n.point(Ua,i),n.point(Ua,0),n.point(Ua,-i),n.point(0,-i),n.point(-Ua,-i),n.point(-Ua,0),n.point(-Ua,i);else if(wa(t[0]-e[0])>Da){var o=t[0]<e[0]?Ua:-Ua;i=r*o/2,n.point(-o,i),n.point(0,i),n.point(o,i)}else n.point(e[0],e[1])}function Ve(t,e){var r=t[0],n=t[1],i=[Math.sin(r),-Math.cos(r),0],o=0,a=0;Es.reset();for(var s=0,l=e.length;l>s;++s){var c=e[s],u=c.length;if(u)for(var h=c[0],f=h[0],d=h[1]/2+Ua/4,p=Math.sin(d),g=Math.cos(d),v=1;;){v===u&&(v=0),t=c[v];var m=t[0],y=t[1]/2+Ua/4,b=Math.sin(y),x=Math.cos(y),_=m-f,w=_>=0?1:-1,A=w*_,k=A>Ua,M=p*b;if(Es.add(Math.atan2(M*w*Math.sin(A),g*x+M*Math.cos(A))),o+=k?_+w*Va:_,k^f>=r^m>=r){var T=be(me(h),me(t));we(T);var E=be(i,T);we(E);var L=(k^_>=0?-1:1)*nt(E[2]);(n>L||n===L&&(T[0]||T[1]))&&(a+=k^_>=0?1:-1)}if(!v++)break;f=m,p=b,g=x,h=t}}return(-Da>o||Da>o&&0>Es)^1&a}function qe(t){function e(t,e){return Math.cos(t)*Math.cos(e)>o}function r(t){var r,o,l,c,u;return{lineStart:function(){c=l=!1,u=1},point:function(h,f){var d,p=[h,f],g=e(h,f),v=a?g?0:i(h,f):g?i(h+(0>h?Ua:-Ua),f):0;if(!r&&(c=l=g)&&t.lineStart(),g!==l&&(d=n(r,p),(ke(r,d)||ke(p,d))&&(p[0]+=Da,p[1]+=Da,g=e(p[0],p[1]))),g!==l)u=0,g?(t.lineStart(),d=n(p,r),t.point(d[0],d[1])):(d=n(r,p),t.point(d[0],d[1]),t.lineEnd()),r=d;else if(s&&r&&a^g){var m;v&o||!(m=n(p,r,!0))||(u=0,a?(t.lineStart(),t.point(m[0][0],m[0][1]),t.point(m[1][0],m[1][1]),t.lineEnd()):(t.point(m[1][0],m[1][1]),t.lineEnd(),t.lineStart(),t.point(m[0][0],m[0][1])))}!g||r&&ke(r,p)||t.point(p[0],p[1]),r=p,l=g,o=v},lineEnd:function(){l&&t.lineEnd(),r=null},clean:function(){return u|(c&&l)<<1}}}function n(t,e,r){var n=me(t),i=me(e),a=[1,0,0],s=be(n,i),l=ye(s,s),c=s[0],u=l-c*c;if(!u)return!r&&t;var h=o*l/u,f=-o*c/u,d=be(a,s),p=_e(a,h),g=_e(s,f);xe(p,g);var v=d,m=ye(p,v),y=ye(v,v),b=m*m-y*(ye(p,p)-1);if(!(0>b)){var x=Math.sqrt(b),_=_e(v,(-m-x)/y);if(xe(_,p),_=Ae(_),!r)return _;var w,A=t[0],k=e[0],M=t[1],T=e[1];A>k&&(w=A,A=k,k=w);var E=k-A,L=wa(E-Ua)<Da,S=L||Da>E;if(!L&&M>T&&(w=M,M=T,T=w),S?L?M+T>0^_[1]<(wa(_[0]-A)<Da?M:T):M<=_[1]&&_[1]<=T:E>Ua^(A<=_[0]&&_[0]<=k)){var C=_e(v,(-m+x)/y);return xe(C,p),[_,Ae(C)]}}}function i(e,r){var n=a?t:Ua-t,i=0;return-n>e?i|=1:e>n&&(i|=2),-n>r?i|=4:r>n&&(i|=8),i}var o=Math.cos(t),a=o>0,s=wa(o)>Da,l=vr(t,6*Ga);return Ie(e,r,l,a?[0,-t]:[-Ua,t-Ua])}function He(t,e,r,n){return function(i){var o,a=i.a,s=i.b,l=a.x,c=a.y,u=s.x,h=s.y,f=0,d=1,p=u-l,g=h-c;if(o=t-l,p||!(o>0)){if(o/=p,0>p){if(f>o)return;d>o&&(d=o)}else if(p>0){if(o>d)return;o>f&&(f=o)}if(o=r-l,p||!(0>o)){if(o/=p,0>p){if(o>d)return;o>f&&(f=o)}else if(p>0){if(f>o)return;d>o&&(d=o)}if(o=e-c,g||!(o>0)){if(o/=g,0>g){if(f>o)return;d>o&&(d=o)}else if(g>0){if(o>d)return;o>f&&(f=o)}if(o=n-c,g||!(0>o)){if(o/=g,0>g){if(o>d)return;o>f&&(f=o)}else if(g>0){if(f>o)return;d>o&&(d=o)}return f>0&&(i.a={x:l+f*p,y:c+f*g}),1>d&&(i.b={x:l+d*p,y:c+d*g}),i}}}}}}function Ge(t,e,r,n){function i(n,i){return wa(n[0]-t)<Da?i>0?0:3:wa(n[0]-r)<Da?i>0?2:1:wa(n[1]-e)<Da?i>0?1:0:i>0?3:2}function o(t,e){return a(t.x,e.x)}function a(t,e){var r=i(t,1),n=i(e,1);return r!==n?r-n:0===r?e[1]-t[1]:1===r?t[0]-e[0]:2===r?t[1]-e[1]:e[0]-t[0]}return function(s){function l(t){for(var e=0,r=v.length,n=t[1],i=0;r>i;++i)for(var o,a=1,s=v[i],l=s.length,c=s[0];l>a;++a)o=s[a],c[1]<=n?o[1]>n&&et(c,o,t)>0&&++e:o[1]<=n&&et(c,o,t)<0&&--e,c=o;return 0!==e}function c(o,s,l,c){var u=0,h=0;if(null==o||(u=i(o,l))!==(h=i(s,l))||a(o,s)<0^l>0){do c.point(0===u||3===u?t:r,u>1?n:e);while((u=(u+l+4)%4)!==h)}else c.point(s[0],s[1])}function u(i,o){return i>=t&&r>=i&&o>=e&&n>=o}function h(t,e){u(t,e)&&s.point(t,e)}function f(){S.point=p,v&&v.push(m=[]),k=!0,A=!1,_=w=NaN}function d(){g&&(p(y,b),x&&A&&E.rejoin(),g.push(E.buffer())),S.point=h,A&&s.lineEnd()}function p(t,e){t=Math.max(-Vs,Math.min(Vs,t)),e=Math.max(-Vs,Math.min(Vs,e));var r=u(t,e);if(v&&m.push([t,e]),k)y=t,b=e,x=r,k=!1,r&&(s.lineStart(),s.point(t,e));else if(r&&A)s.point(t,e);else{var n={a:{x:_,y:w},b:{x:t,y:e}};L(n)?(A||(s.lineStart(),s.point(n.a.x,n.a.y)),s.point(n.b.x,n.b.y),r||s.lineEnd(),M=!1):r&&(s.lineStart(),s.point(t,e),M=!1)}_=t,w=e,A=r}var g,v,m,y,b,x,_,w,A,k,M,T=s,E=je(),L=He(t,e,r,n),S={point:h,lineStart:f,lineEnd:d,polygonStart:function(){s=E,g=[],v=[],M=!0},polygonEnd:function(){s=T,g=ua.merge(g);var e=l([t,n]),r=M&&e,i=g.length;(r||i)&&(s.polygonStart(),r&&(s.lineStart(),c(null,null,1,s),s.lineEnd()),i&&ze(g,o,e,c,s),s.polygonEnd()),g=v=m=null}};return S}}function Ye(t){var e=0,r=Ua/3,n=lr(t),i=n(e,r);return i.parallels=function(t){return arguments.length?n(e=t[0]*Ua/180,r=t[1]*Ua/180):[e/Ua*180,r/Ua*180]},i}function Xe(t,e){function r(t,e){var r=Math.sqrt(o-2*i*Math.sin(e))/i;return[r*Math.sin(t*=i),a-r*Math.cos(t)]}var n=Math.sin(t),i=(n+Math.sin(e))/2,o=1+n*(2*i-n),a=Math.sqrt(o)/i;return r.invert=function(t,e){var r=a-e;return[Math.atan2(t,r)/i,nt((o-(t*t+r*r)*i*i)/(2*i))]},r}function We(){function t(t,e){Hs+=i*t-n*e,n=t,i=e}var e,r,n,i;Zs.point=function(o,a){Zs.point=t,e=n=o,r=i=a},Zs.lineEnd=function(){t(e,r)}}function Ze(t,e){Gs>t&&(Gs=t),t>Xs&&(Xs=t),Ys>e&&(Ys=e),e>Ws&&(Ws=e)}function $e(){function t(t,e){a.push(\\\"M\\\",t,\\\",\\\",e,o)}function e(t,e){a.push(\\\"M\\\",t,\\\",\\\",e),s.point=r}function r(t,e){a.push(\\\"L\\\",t,\\\",\\\",e)}function n(){s.point=t}function i(){a.push(\\\"Z\\\")}var o=Ke(4.5),a=[],s={point:t,lineStart:function(){s.point=e},lineEnd:n,polygonStart:function(){s.lineEnd=i},polygonEnd:function(){s.lineEnd=n,s.point=t},pointRadius:function(t){return o=Ke(t),s},result:function(){if(a.length){var t=a.join(\\\"\\\");return a=[],t}}};return s}function Ke(t){return\\\"m0,\\\"+t+\\\"a\\\"+t+\\\",\\\"+t+\\\" 0 1,1 0,\\\"+-2*t+\\\"a\\\"+t+\\\",\\\"+t+\\\" 0 1,1 0,\\\"+2*t+\\\"z\\\"}function Qe(t,e){Ps+=t,zs+=e,++Rs}function Je(){function t(t,n){var i=t-e,o=n-r,a=Math.sqrt(i*i+o*o);Os+=a*(e+t)/2,Is+=a*(r+n)/2,Ns+=a,Qe(e=t,r=n)}var e,r;Ks.point=function(n,i){Ks.point=t,Qe(e=n,r=i)}}function tr(){Ks.point=Qe}function er(){function t(t,e){var r=t-n,o=e-i,a=Math.sqrt(r*r+o*o);Os+=a*(n+t)/2,Is+=a*(i+e)/2,Ns+=a,a=i*t-n*e,js+=a*(n+t),Fs+=a*(i+e),Ds+=3*a,Qe(n=t,i=e)}var e,r,n,i;Ks.point=function(o,a){Ks.point=t,Qe(e=n=o,r=i=a)},Ks.lineEnd=function(){t(e,r)}}function rr(t){function e(e,r){t.moveTo(e+a,r),t.arc(e,r,a,0,Va)}function r(e,r){t.moveTo(e,r),s.point=n}function n(e,r){t.lineTo(e,r)}function i(){s.point=e}function o(){t.closePath()}var a=4.5,s={point:e,lineStart:function(){s.point=r},lineEnd:i,polygonStart:function(){s.lineEnd=o},polygonEnd:function(){s.lineEnd=i,s.point=e},pointRadius:function(t){return a=t,s},result:A};return s}function nr(t){function e(t){return(s?n:r)(t)}function r(e){return ar(e,function(r,n){r=t(r,n),e.point(r[0],r[1])})}function n(e){function r(r,n){r=t(r,n),e.point(r[0],r[1])}function n(){b=NaN,k.point=o,e.lineStart()}function o(r,n){var o=me([r,n]),a=t(r,n);i(b,x,y,_,w,A,b=a[0],x=a[1],y=r,_=o[0],w=o[1],A=o[2],s,e),e.point(b,x)}function a(){k.point=r,e.lineEnd()}function l(){n(),k.point=c,k.lineEnd=u}function c(t,e){o(h=t,f=e),d=b,p=x,g=_,v=w,m=A,k.point=o}function u(){i(b,x,y,_,w,A,d,p,h,g,v,m,s,e),k.lineEnd=a,a()}var h,f,d,p,g,v,m,y,b,x,_,w,A,k={point:r,lineStart:n,lineEnd:a,polygonStart:function(){e.polygonStart(),k.lineStart=l},polygonEnd:function(){e.polygonEnd(),k.lineStart=n}};return k}function i(e,r,n,s,l,c,u,h,f,d,p,g,v,m){var y=u-e,b=h-r,x=y*y+b*b;if(x>4*o&&v--){var _=s+d,w=l+p,A=c+g,k=Math.sqrt(_*_+w*w+A*A),M=Math.asin(A/=k),T=wa(wa(A)-1)<Da||wa(n-f)<Da?(n+f)/2:Math.atan2(w,_),E=t(T,M),L=E[0],S=E[1],C=L-e,P=S-r,z=b*C-y*P;(z*z/x>o||wa((y*C+b*P)/x-.5)>.3||a>s*d+l*p+c*g)&&(i(e,r,n,s,l,c,L,S,T,_/=k,w/=k,A,v,m),m.point(L,S),i(L,S,T,_,w,A,u,h,f,d,p,g,v,m))}}var o=.5,a=Math.cos(30*Ga),s=16;return e.precision=function(t){return arguments.length?(s=(o=t*t)>0&&16,e):Math.sqrt(o)},e}function ir(t){var e=nr(function(e,r){return t([e*Ya,r*Ya])});return function(t){return cr(e(t))}}function or(t){this.stream=t}function ar(t,e){return{point:e,sphere:function(){t.sphere()},lineStart:function(){t.lineStart()},lineEnd:function(){t.lineEnd()},polygonStart:function(){t.polygonStart()},polygonEnd:function(){t.polygonEnd()}}}function sr(t){return lr(function(){return t})()}function lr(t){function e(t){return t=s(t[0]*Ga,t[1]*Ga),[t[0]*f+l,c-t[1]*f]}function r(t){return t=s.invert((t[0]-l)/f,(c-t[1])/f),t&&[t[0]*Ya,t[1]*Ya]}function n(){s=Ce(a=fr(m,y,b),o);var t=o(g,v);return l=d-t[0]*f,c=p+t[1]*f,i()}function i(){return u&&(u.valid=!1,u=null),e}var o,a,s,l,c,u,h=nr(function(t,e){return t=o(t,e),[t[0]*f+l,c-t[1]*f]}),f=150,d=480,p=250,g=0,v=0,m=0,y=0,b=0,_=Us,w=x,A=null,k=null;return e.stream=function(t){return u&&(u.valid=!1),u=cr(_(a,h(w(t)))),u.valid=!0,u},e.clipAngle=function(t){return arguments.length?(_=null==t?(A=t,Us):qe((A=+t)*Ga),i()):A},e.clipExtent=function(t){return arguments.length?(k=t,w=t?Ge(t[0][0],t[0][1],t[1][0],t[1][1]):x,i()):k},e.scale=function(t){return arguments.length?(f=+t,n()):f},e.translate=function(t){return arguments.length?(d=+t[0],p=+t[1],n()):[d,p]},e.center=function(t){return arguments.length?(g=t[0]%360*Ga,v=t[1]%360*Ga,n()):[g*Ya,v*Ya]},e.rotate=function(t){return arguments.length?(m=t[0]%360*Ga,y=t[1]%360*Ga,b=t.length>2?t[2]%360*Ga:0,n()):[m*Ya,y*Ya,b*Ya]},ua.rebind(e,h,\\\"precision\\\"),function(){return o=t.apply(this,arguments),e.invert=o.invert&&r,n()}}function cr(t){return ar(t,function(e,r){t.point(e*Ga,r*Ga)})}function ur(t,e){return[t,e]}function hr(t,e){return[t>Ua?t-Va:-Ua>t?t+Va:t,e]}function fr(t,e,r){return t?e||r?Ce(pr(t),gr(e,r)):pr(t):e||r?gr(e,r):hr}function dr(t){return function(e,r){return e+=t,[e>Ua?e-Va:-Ua>e?e+Va:e,r]}}function pr(t){var e=dr(t);return e.invert=dr(-t),e}function gr(t,e){function r(t,e){var r=Math.cos(e),s=Math.cos(t)*r,l=Math.sin(t)*r,c=Math.sin(e),u=c*n+s*i;return[Math.atan2(l*o-u*a,s*n-c*i),nt(u*o+l*a)]}var n=Math.cos(t),i=Math.sin(t),o=Math.cos(e),a=Math.sin(e);return r.invert=function(t,e){var r=Math.cos(e),s=Math.cos(t)*r,l=Math.sin(t)*r,c=Math.sin(e),u=c*o-l*a;return[Math.atan2(l*o+c*a,s*n+u*i),nt(u*n-s*i)]},r}function vr(t,e){var r=Math.cos(t),n=Math.sin(t);return function(i,o,a,s){var l=a*e;null!=i?(i=mr(r,i),o=mr(r,o),(a>0?o>i:i>o)&&(i+=a*Va)):(i=t+a*Va,o=t-.5*l);for(var c,u=i;a>0?u>o:o>u;u-=l)s.point((c=Ae([r,-n*Math.cos(u),-n*Math.sin(u)]))[0],c[1])}}function mr(t,e){var r=me(e);r[0]-=t,we(r);var n=rt(-r[1]);return((-r[2]<0?-n:n)+2*Math.PI-Da)%(2*Math.PI)}function yr(t,e,r){var n=ua.range(t,e-Da,r).concat(e);return function(t){return n.map(function(e){return[t,e]})}}function br(t,e,r){var n=ua.range(t,e-Da,r).concat(e);return function(t){return n.map(function(e){return[e,t]})}}function xr(t){return t.source}function _r(t){return t.target}function wr(t,e,r,n){var i=Math.cos(e),o=Math.sin(e),a=Math.cos(n),s=Math.sin(n),l=i*Math.cos(t),c=i*Math.sin(t),u=a*Math.cos(r),h=a*Math.sin(r),f=2*Math.asin(Math.sqrt(st(n-e)+i*a*st(r-t))),d=1/Math.sin(f),p=f?function(t){var e=Math.sin(t*=f)*d,r=Math.sin(f-t)*d,n=r*l+e*u,i=r*c+e*h,a=r*o+e*s;return[Math.atan2(i,n)*Ya,Math.atan2(a,Math.sqrt(n*n+i*i))*Ya]}:function(){return[t*Ya,e*Ya]};return p.distance=f,p}function Ar(){function t(t,i){var o=Math.sin(i*=Ga),a=Math.cos(i),s=wa((t*=Ga)-e),l=Math.cos(s);Qs+=Math.atan2(Math.sqrt((s=a*Math.sin(s))*s+(s=n*o-r*a*l)*s),r*o+n*a*l),e=t,r=o,n=a}var e,r,n;Js.point=function(i,o){e=i*Ga,r=Math.sin(o*=Ga),n=Math.cos(o),Js.point=t},Js.lineEnd=function(){Js.point=Js.lineEnd=A}}function kr(t,e){function r(e,r){var n=Math.cos(e),i=Math.cos(r),o=t(n*i);return[o*i*Math.sin(e),o*Math.sin(r)]}return r.invert=function(t,r){var n=Math.sqrt(t*t+r*r),i=e(n),o=Math.sin(i),a=Math.cos(i);return[Math.atan2(t*o,n*a),Math.asin(n&&r*o/n)]},r}function Mr(t,e){function r(t,e){a>0?-Ha+Da>e&&(e=-Ha+Da):e>Ha-Da&&(e=Ha-Da);var r=a/Math.pow(i(e),o);return[r*Math.sin(o*t),a-r*Math.cos(o*t)]}var n=Math.cos(t),i=function(t){return Math.tan(Ua/4+t/2)},o=t===e?Math.sin(t):Math.log(n/Math.cos(e))/Math.log(i(e)/i(t)),a=n*Math.pow(i(t),o)/o;return o?(r.invert=function(t,e){var r=a-e,n=tt(o)*Math.sqrt(t*t+r*r);return[Math.atan2(t,r)/o,2*Math.atan(Math.pow(a/n,1/o))-Ha]},r):Er}function Tr(t,e){function r(t,e){var r=o-e;return[r*Math.sin(i*t),o-r*Math.cos(i*t)]}var n=Math.cos(t),i=t===e?Math.sin(t):(n-Math.cos(e))/(e-t),o=n/i+t;return wa(i)<Da?ur:(r.invert=function(t,e){var r=o-e;return[Math.atan2(t,r)/i,o-tt(i)*Math.sqrt(t*t+r*r)]},r)}function Er(t,e){return[t,Math.log(Math.tan(Ua/4+e/2))]}function Lr(t){var e,r=sr(t),n=r.scale,i=r.translate,o=r.clipExtent;return r.scale=function(){var t=n.apply(r,arguments);\\n\",\n       \"return t===r?e?r.clipExtent(null):r:t},r.translate=function(){var t=i.apply(r,arguments);return t===r?e?r.clipExtent(null):r:t},r.clipExtent=function(t){var a=o.apply(r,arguments);if(a===r){if(e=null==t){var s=Ua*n(),l=i();o([[l[0]-s,l[1]-s],[l[0]+s,l[1]+s]])}}else e&&(a=null);return a},r.clipExtent(null)}function Sr(t,e){return[Math.log(Math.tan(Ua/4+e/2)),-t]}function Cr(t){return t[0]}function Pr(t){return t[1]}function zr(t){for(var e=t.length,r=[0,1],n=2,i=2;e>i;i++){for(;n>1&&et(t[r[n-2]],t[r[n-1]],t[i])<=0;)--n;r[n++]=i}return r.slice(0,n)}function Rr(t,e){return t[0]-e[0]||t[1]-e[1]}function Or(t,e,r){return(r[0]-e[0])*(t[1]-e[1])<(r[1]-e[1])*(t[0]-e[0])}function Ir(t,e,r,n){var i=t[0],o=r[0],a=e[0]-i,s=n[0]-o,l=t[1],c=r[1],u=e[1]-l,h=n[1]-c,f=(s*(l-c)-h*(i-o))/(h*a-s*u);return[i+f*a,l+f*u]}function Nr(t){var e=t[0],r=t[t.length-1];return!(e[0]-r[0]||e[1]-r[1])}function jr(){on(this),this.edge=this.site=this.circle=null}function Fr(t){var e=hl.pop()||new jr;return e.site=t,e}function Dr(t){Zr(t),ll.remove(t),hl.push(t),on(t)}function Br(t){var e=t.circle,r=e.x,n=e.cy,i={x:r,y:n},o=t.P,a=t.N,s=[t];Dr(t);for(var l=o;l.circle&&wa(r-l.circle.x)<Da&&wa(n-l.circle.cy)<Da;)o=l.P,s.unshift(l),Dr(l),l=o;s.unshift(l),Zr(l);for(var c=a;c.circle&&wa(r-c.circle.x)<Da&&wa(n-c.circle.cy)<Da;)a=c.N,s.push(c),Dr(c),c=a;s.push(c),Zr(c);var u,h=s.length;for(u=1;h>u;++u)c=s[u],l=s[u-1],en(c.edge,l.site,c.site,i);l=s[0],c=s[h-1],c.edge=Jr(l.site,c.site,null,i),Wr(l),Wr(c)}function Ur(t){for(var e,r,n,i,o=t.x,a=t.y,s=ll._;s;)if(n=Vr(s,a)-o,n>Da)s=s.L;else{if(i=o-qr(s,a),!(i>Da)){n>-Da?(e=s.P,r=s):i>-Da?(e=s,r=s.N):e=r=s;break}if(!s.R){e=s;break}s=s.R}var l=Fr(t);if(ll.insert(e,l),e||r){if(e===r)return Zr(e),r=Fr(e.site),ll.insert(l,r),l.edge=r.edge=Jr(e.site,l.site),Wr(e),void Wr(r);if(!r)return void(l.edge=Jr(e.site,l.site));Zr(e),Zr(r);var c=e.site,u=c.x,h=c.y,f=t.x-u,d=t.y-h,p=r.site,g=p.x-u,v=p.y-h,m=2*(f*v-d*g),y=f*f+d*d,b=g*g+v*v,x={x:(v*y-d*b)/m+u,y:(f*b-g*y)/m+h};en(r.edge,c,p,x),l.edge=Jr(c,t,null,x),r.edge=Jr(t,p,null,x),Wr(e),Wr(r)}}function Vr(t,e){var r=t.site,n=r.x,i=r.y,o=i-e;if(!o)return n;var a=t.P;if(!a)return-(1/0);r=a.site;var s=r.x,l=r.y,c=l-e;if(!c)return s;var u=s-n,h=1/o-1/c,f=u/c;return h?(-f+Math.sqrt(f*f-2*h*(u*u/(-2*c)-l+c/2+i-o/2)))/h+n:(n+s)/2}function qr(t,e){var r=t.N;if(r)return Vr(r,e);var n=t.site;return n.y===e?n.x:1/0}function Hr(t){this.site=t,this.edges=[]}function Gr(t){for(var e,r,n,i,o,a,s,l,c,u,h=t[0][0],f=t[1][0],d=t[0][1],p=t[1][1],g=sl,v=g.length;v--;)if(o=g[v],o&&o.prepare())for(s=o.edges,l=s.length,a=0;l>a;)u=s[a].end(),n=u.x,i=u.y,c=s[++a%l].start(),e=c.x,r=c.y,(wa(n-e)>Da||wa(i-r)>Da)&&(s.splice(a,0,new rn(tn(o.site,u,wa(n-h)<Da&&p-i>Da?{x:h,y:wa(e-h)<Da?r:p}:wa(i-p)<Da&&f-n>Da?{x:wa(r-p)<Da?e:f,y:p}:wa(n-f)<Da&&i-d>Da?{x:f,y:wa(e-f)<Da?r:d}:wa(i-d)<Da&&n-h>Da?{x:wa(r-d)<Da?e:h,y:d}:null),o.site,null)),++l)}function Yr(t,e){return e.angle-t.angle}function Xr(){on(this),this.x=this.y=this.arc=this.site=this.cy=null}function Wr(t){var e=t.P,r=t.N;if(e&&r){var n=e.site,i=t.site,o=r.site;if(n!==o){var a=i.x,s=i.y,l=n.x-a,c=n.y-s,u=o.x-a,h=o.y-s,f=2*(l*h-c*u);if(!(f>=-Ba)){var d=l*l+c*c,p=u*u+h*h,g=(h*d-c*p)/f,v=(l*p-u*d)/f,h=v+s,m=fl.pop()||new Xr;m.arc=t,m.site=i,m.x=g+a,m.y=h+Math.sqrt(g*g+v*v),m.cy=h,t.circle=m;for(var y=null,b=ul._;b;)if(m.y<b.y||m.y===b.y&&m.x<=b.x){if(!b.L){y=b.P;break}b=b.L}else{if(!b.R){y=b;break}b=b.R}ul.insert(y,m),y||(cl=m)}}}}function Zr(t){var e=t.circle;e&&(e.P||(cl=e.N),ul.remove(e),fl.push(e),on(e),t.circle=null)}function $r(t){for(var e,r=al,n=He(t[0][0],t[0][1],t[1][0],t[1][1]),i=r.length;i--;)e=r[i],(!Kr(e,t)||!n(e)||wa(e.a.x-e.b.x)<Da&&wa(e.a.y-e.b.y)<Da)&&(e.a=e.b=null,r.splice(i,1))}function Kr(t,e){var r=t.b;if(r)return!0;var n,i,o=t.a,a=e[0][0],s=e[1][0],l=e[0][1],c=e[1][1],u=t.l,h=t.r,f=u.x,d=u.y,p=h.x,g=h.y,v=(f+p)/2,m=(d+g)/2;if(g===d){if(a>v||v>=s)return;if(f>p){if(o){if(o.y>=c)return}else o={x:v,y:l};r={x:v,y:c}}else{if(o){if(o.y<l)return}else o={x:v,y:c};r={x:v,y:l}}}else if(n=(f-p)/(g-d),i=m-n*v,-1>n||n>1)if(f>p){if(o){if(o.y>=c)return}else o={x:(l-i)/n,y:l};r={x:(c-i)/n,y:c}}else{if(o){if(o.y<l)return}else o={x:(c-i)/n,y:c};r={x:(l-i)/n,y:l}}else if(g>d){if(o){if(o.x>=s)return}else o={x:a,y:n*a+i};r={x:s,y:n*s+i}}else{if(o){if(o.x<a)return}else o={x:s,y:n*s+i};r={x:a,y:n*a+i}}return t.a=o,t.b=r,!0}function Qr(t,e){this.l=t,this.r=e,this.a=this.b=null}function Jr(t,e,r,n){var i=new Qr(t,e);return al.push(i),r&&en(i,t,e,r),n&&en(i,e,t,n),sl[t.i].edges.push(new rn(i,t,e)),sl[e.i].edges.push(new rn(i,e,t)),i}function tn(t,e,r){var n=new Qr(t,null);return n.a=e,n.b=r,al.push(n),n}function en(t,e,r,n){t.a||t.b?t.l===r?t.b=n:t.a=n:(t.a=n,t.l=e,t.r=r)}function rn(t,e,r){var n=t.a,i=t.b;this.edge=t,this.site=e,this.angle=r?Math.atan2(r.y-e.y,r.x-e.x):t.l===e?Math.atan2(i.x-n.x,n.y-i.y):Math.atan2(n.x-i.x,i.y-n.y)}function nn(){this._=null}function on(t){t.U=t.C=t.L=t.R=t.P=t.N=null}function an(t,e){var r=e,n=e.R,i=r.U;i?i.L===r?i.L=n:i.R=n:t._=n,n.U=i,r.U=n,r.R=n.L,r.R&&(r.R.U=r),n.L=r}function sn(t,e){var r=e,n=e.L,i=r.U;i?i.L===r?i.L=n:i.R=n:t._=n,n.U=i,r.U=n,r.L=n.R,r.L&&(r.L.U=r),n.R=r}function ln(t){for(;t.L;)t=t.L;return t}function cn(t,e){var r,n,i,o=t.sort(un).pop();for(al=[],sl=new Array(t.length),ll=new nn,ul=new nn;;)if(i=cl,o&&(!i||o.y<i.y||o.y===i.y&&o.x<i.x))o.x===r&&o.y===n||(sl[o.i]=new Hr(o),Ur(o),r=o.x,n=o.y),o=t.pop();else{if(!i)break;Br(i.arc)}e&&($r(e),Gr(e));var a={cells:sl,edges:al};return ll=ul=al=sl=null,a}function un(t,e){return e.y-t.y||e.x-t.x}function hn(t,e,r){return(t.x-r.x)*(e.y-t.y)-(t.x-e.x)*(r.y-t.y)}function fn(t){return t.x}function dn(t){return t.y}function pn(){return{leaf:!0,nodes:[],point:null,x:null,y:null}}function gn(t,e,r,n,i,o){if(!t(e,r,n,i,o)){var a=.5*(r+i),s=.5*(n+o),l=e.nodes;l[0]&&gn(t,l[0],r,n,a,s),l[1]&&gn(t,l[1],a,n,i,s),l[2]&&gn(t,l[2],r,s,a,o),l[3]&&gn(t,l[3],a,s,i,o)}}function vn(t,e,r,n,i,o,a){var s,l=1/0;return function c(t,u,h,f,d){if(!(u>o||h>a||n>f||i>d)){if(p=t.point){var p,g=e-t.x,v=r-t.y,m=g*g+v*v;if(l>m){var y=Math.sqrt(l=m);n=e-y,i=r-y,o=e+y,a=r+y,s=p}}for(var b=t.nodes,x=.5*(u+f),_=.5*(h+d),w=e>=x,A=r>=_,k=A<<1|w,M=k+4;M>k;++k)if(t=b[3&k])switch(3&k){case 0:c(t,u,h,x,_);break;case 1:c(t,x,h,f,_);break;case 2:c(t,u,_,x,d);break;case 3:c(t,x,_,f,d)}}}(t,n,i,o,a),s}function mn(t,e){t=ua.rgb(t),e=ua.rgb(e);var r=t.r,n=t.g,i=t.b,o=e.r-r,a=e.g-n,s=e.b-i;return function(t){return\\\"#\\\"+wt(Math.round(r+o*t))+wt(Math.round(n+a*t))+wt(Math.round(i+s*t))}}function yn(t,e){var r,n={},i={};for(r in t)r in e?n[r]=_n(t[r],e[r]):i[r]=t[r];for(r in e)r in t||(i[r]=e[r]);return function(t){for(r in n)i[r]=n[r](t);return i}}function bn(t,e){return t=+t,e=+e,function(r){return t*(1-r)+e*r}}function xn(t,e){var r,n,i,o=pl.lastIndex=gl.lastIndex=0,a=-1,s=[],l=[];for(t+=\\\"\\\",e+=\\\"\\\";(r=pl.exec(t))&&(n=gl.exec(e));)(i=n.index)>o&&(i=e.slice(o,i),s[a]?s[a]+=i:s[++a]=i),(r=r[0])===(n=n[0])?s[a]?s[a]+=n:s[++a]=n:(s[++a]=null,l.push({i:a,x:bn(r,n)})),o=gl.lastIndex;return o<e.length&&(i=e.slice(o),s[a]?s[a]+=i:s[++a]=i),s.length<2?l[0]?(e=l[0].x,function(t){return e(t)+\\\"\\\"}):function(){return e}:(e=l.length,function(t){for(var r,n=0;e>n;++n)s[(r=l[n]).i]=r.x(t);return s.join(\\\"\\\")})}function _n(t,e){for(var r,n=ua.interpolators.length;--n>=0&&!(r=ua.interpolators[n](t,e)););return r}function wn(t,e){var r,n=[],i=[],o=t.length,a=e.length,s=Math.min(t.length,e.length);for(r=0;s>r;++r)n.push(_n(t[r],e[r]));for(;o>r;++r)i[r]=t[r];for(;a>r;++r)i[r]=e[r];return function(t){for(r=0;s>r;++r)i[r]=n[r](t);return i}}function An(t){return function(e){return 0>=e?0:e>=1?1:t(e)}}function kn(t){return function(e){return 1-t(1-e)}}function Mn(t){return function(e){return.5*(.5>e?t(2*e):2-t(2-2*e))}}function Tn(t){return t*t}function En(t){return t*t*t}function Ln(t){if(0>=t)return 0;if(t>=1)return 1;var e=t*t,r=e*t;return 4*(.5>t?r:3*(t-e)+r-.75)}function Sn(t){return function(e){return Math.pow(e,t)}}function Cn(t){return 1-Math.cos(t*Ha)}function Pn(t){return Math.pow(2,10*(t-1))}function zn(t){return 1-Math.sqrt(1-t*t)}function Rn(t,e){var r;return arguments.length<2&&(e=.45),arguments.length?r=e/Va*Math.asin(1/t):(t=1,r=e/4),function(n){return 1+t*Math.pow(2,-10*n)*Math.sin((n-r)*Va/e)}}function On(t){return t||(t=1.70158),function(e){return e*e*((t+1)*e-t)}}function In(t){return 1/2.75>t?7.5625*t*t:2/2.75>t?7.5625*(t-=1.5/2.75)*t+.75:2.5/2.75>t?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375}function Nn(t,e){t=ua.hcl(t),e=ua.hcl(e);var r=t.h,n=t.c,i=t.l,o=e.h-r,a=e.c-n,s=e.l-i;return isNaN(a)&&(a=0,n=isNaN(n)?e.c:n),isNaN(o)?(o=0,r=isNaN(r)?e.h:r):o>180?o-=360:-180>o&&(o+=360),function(t){return ft(r+o*t,n+a*t,i+s*t)+\\\"\\\"}}function jn(t,e){t=ua.hsl(t),e=ua.hsl(e);var r=t.h,n=t.s,i=t.l,o=e.h-r,a=e.s-n,s=e.l-i;return isNaN(a)&&(a=0,n=isNaN(n)?e.s:n),isNaN(o)?(o=0,r=isNaN(r)?e.h:r):o>180?o-=360:-180>o&&(o+=360),function(t){return ut(r+o*t,n+a*t,i+s*t)+\\\"\\\"}}function Fn(t,e){t=ua.lab(t),e=ua.lab(e);var r=t.l,n=t.a,i=t.b,o=e.l-r,a=e.a-n,s=e.b-i;return function(t){return pt(r+o*t,n+a*t,i+s*t)+\\\"\\\"}}function Dn(t,e){return e-=t,function(r){return Math.round(t+e*r)}}function Bn(t){var e=[t.a,t.b],r=[t.c,t.d],n=Vn(e),i=Un(e,r),o=Vn(qn(r,e,-i))||0;e[0]*r[1]<r[0]*e[1]&&(e[0]*=-1,e[1]*=-1,n*=-1,i*=-1),this.rotate=(n?Math.atan2(e[1],e[0]):Math.atan2(-r[0],r[1]))*Ya,this.translate=[t.e,t.f],this.scale=[n,o],this.skew=o?Math.atan2(i,o)*Ya:0}function Un(t,e){return t[0]*e[0]+t[1]*e[1]}function Vn(t){var e=Math.sqrt(Un(t,t));return e&&(t[0]/=e,t[1]/=e),e}function qn(t,e,r){return t[0]+=r*e[0],t[1]+=r*e[1],t}function Hn(t){return t.length?t.pop()+\\\",\\\":\\\"\\\"}function Gn(t,e,r,n){if(t[0]!==e[0]||t[1]!==e[1]){var i=r.push(\\\"translate(\\\",null,\\\",\\\",null,\\\")\\\");n.push({i:i-4,x:bn(t[0],e[0])},{i:i-2,x:bn(t[1],e[1])})}else(e[0]||e[1])&&r.push(\\\"translate(\\\"+e+\\\")\\\")}function Yn(t,e,r,n){t!==e?(t-e>180?e+=360:e-t>180&&(t+=360),n.push({i:r.push(Hn(r)+\\\"rotate(\\\",null,\\\")\\\")-2,x:bn(t,e)})):e&&r.push(Hn(r)+\\\"rotate(\\\"+e+\\\")\\\")}function Xn(t,e,r,n){t!==e?n.push({i:r.push(Hn(r)+\\\"skewX(\\\",null,\\\")\\\")-2,x:bn(t,e)}):e&&r.push(Hn(r)+\\\"skewX(\\\"+e+\\\")\\\")}function Wn(t,e,r,n){if(t[0]!==e[0]||t[1]!==e[1]){var i=r.push(Hn(r)+\\\"scale(\\\",null,\\\",\\\",null,\\\")\\\");n.push({i:i-4,x:bn(t[0],e[0])},{i:i-2,x:bn(t[1],e[1])})}else 1===e[0]&&1===e[1]||r.push(Hn(r)+\\\"scale(\\\"+e+\\\")\\\")}function Zn(t,e){var r=[],n=[];return t=ua.transform(t),e=ua.transform(e),Gn(t.translate,e.translate,r,n),Yn(t.rotate,e.rotate,r,n),Xn(t.skew,e.skew,r,n),Wn(t.scale,e.scale,r,n),t=e=null,function(t){for(var e,i=-1,o=n.length;++i<o;)r[(e=n[i]).i]=e.x(t);return r.join(\\\"\\\")}}function $n(t,e){return e=(e-=t=+t)||1/e,function(r){return(r-t)/e}}function Kn(t,e){return e=(e-=t=+t)||1/e,function(r){return Math.max(0,Math.min(1,(r-t)/e))}}function Qn(t){for(var e=t.source,r=t.target,n=ti(e,r),i=[e];e!==n;)e=e.parent,i.push(e);for(var o=i.length;r!==n;)i.splice(o,0,r),r=r.parent;return i}function Jn(t){for(var e=[],r=t.parent;null!=r;)e.push(t),t=r,r=r.parent;return e.push(t),e}function ti(t,e){if(t===e)return t;for(var r=Jn(t),n=Jn(e),i=r.pop(),o=n.pop(),a=null;i===o;)a=i,i=r.pop(),o=n.pop();return a}function ei(t){t.fixed|=2}function ri(t){t.fixed&=-7}function ni(t){t.fixed|=4,t.px=t.x,t.py=t.y}function ii(t){t.fixed&=-5}function oi(t,e,r){var n=0,i=0;if(t.charge=0,!t.leaf)for(var o,a=t.nodes,s=a.length,l=-1;++l<s;)o=a[l],null!=o&&(oi(o,e,r),t.charge+=o.charge,n+=o.charge*o.cx,i+=o.charge*o.cy);if(t.point){t.leaf||(t.point.x+=Math.random()-.5,t.point.y+=Math.random()-.5);var c=e*r[t.point.index];t.charge+=t.pointCharge=c,n+=c*t.point.x,i+=c*t.point.y}t.cx=n/t.charge,t.cy=i/t.charge}function ai(t,e){return ua.rebind(t,e,\\\"sort\\\",\\\"children\\\",\\\"value\\\"),t.nodes=t,t.links=fi,t}function si(t,e){for(var r=[t];null!=(t=r.pop());)if(e(t),(i=t.children)&&(n=i.length))for(var n,i;--n>=0;)r.push(i[n])}function li(t,e){for(var r=[t],n=[];null!=(t=r.pop());)if(n.push(t),(o=t.children)&&(i=o.length))for(var i,o,a=-1;++a<i;)r.push(o[a]);for(;null!=(t=n.pop());)e(t)}function ci(t){return t.children}function ui(t){return t.value}function hi(t,e){return e.value-t.value}function fi(t){return ua.merge(t.map(function(t){return(t.children||[]).map(function(e){return{source:t,target:e}})}))}function di(t){return t.x}function pi(t){return t.y}function gi(t,e,r){t.y0=e,t.y=r}function vi(t){return ua.range(t.length)}function mi(t){for(var e=-1,r=t[0].length,n=[];++e<r;)n[e]=0;return n}function yi(t){for(var e,r=1,n=0,i=t[0][1],o=t.length;o>r;++r)(e=t[r][1])>i&&(n=r,i=e);return n}function bi(t){return t.reduce(xi,0)}function xi(t,e){return t+e[1]}function _i(t,e){return wi(t,Math.ceil(Math.log(e.length)/Math.LN2+1))}function wi(t,e){for(var r=-1,n=+t[0],i=(t[1]-n)/e,o=[];++r<=e;)o[r]=i*r+n;return o}function Ai(t){return[ua.min(t),ua.max(t)]}function ki(t,e){return t.value-e.value}function Mi(t,e){var r=t._pack_next;t._pack_next=e,e._pack_prev=t,e._pack_next=r,r._pack_prev=e}function Ti(t,e){t._pack_next=e,e._pack_prev=t}function Ei(t,e){var r=e.x-t.x,n=e.y-t.y,i=t.r+e.r;return.999*i*i>r*r+n*n}function Li(t){function e(t){u=Math.min(t.x-t.r,u),h=Math.max(t.x+t.r,h),f=Math.min(t.y-t.r,f),d=Math.max(t.y+t.r,d)}if((r=t.children)&&(c=r.length)){var r,n,i,o,a,s,l,c,u=1/0,h=-(1/0),f=1/0,d=-(1/0);if(r.forEach(Si),n=r[0],n.x=-n.r,n.y=0,e(n),c>1&&(i=r[1],i.x=i.r,i.y=0,e(i),c>2))for(o=r[2],zi(n,i,o),e(o),Mi(n,o),n._pack_prev=o,Mi(o,i),i=n._pack_next,a=3;c>a;a++){zi(n,i,o=r[a]);var p=0,g=1,v=1;for(s=i._pack_next;s!==i;s=s._pack_next,g++)if(Ei(s,o)){p=1;break}if(1==p)for(l=n._pack_prev;l!==s._pack_prev&&!Ei(l,o);l=l._pack_prev,v++);p?(v>g||g==v&&i.r<n.r?Ti(n,i=s):Ti(n=l,i),a--):(Mi(n,o),i=o,e(o))}var m=(u+h)/2,y=(f+d)/2,b=0;for(a=0;c>a;a++)o=r[a],o.x-=m,o.y-=y,b=Math.max(b,o.r+Math.sqrt(o.x*o.x+o.y*o.y));t.r=b,r.forEach(Ci)}}function Si(t){t._pack_next=t._pack_prev=t}function Ci(t){delete t._pack_next,delete t._pack_prev}function Pi(t,e,r,n){var i=t.children;if(t.x=e+=n*t.x,t.y=r+=n*t.y,t.r*=n,i)for(var o=-1,a=i.length;++o<a;)Pi(i[o],e,r,n)}function zi(t,e,r){var n=t.r+r.r,i=e.x-t.x,o=e.y-t.y;if(n&&(i||o)){var a=e.r+r.r,s=i*i+o*o;a*=a,n*=n;var l=.5+(n-a)/(2*s),c=Math.sqrt(Math.max(0,2*a*(n+s)-(n-=s)*n-a*a))/(2*s);r.x=t.x+l*i+c*o,r.y=t.y+l*o-c*i}else r.x=t.x+n,r.y=t.y}function Ri(t,e){return t.parent==e.parent?1:2}function Oi(t){var e=t.children;return e.length?e[0]:t.t}function Ii(t){var e,r=t.children;return(e=r.length)?r[e-1]:t.t}function Ni(t,e,r){var n=r/(e.i-t.i);e.c-=n,e.s+=r,t.c+=n,e.z+=r,e.m+=r}function ji(t){for(var e,r=0,n=0,i=t.children,o=i.length;--o>=0;)e=i[o],e.z+=r,e.m+=r,r+=e.s+(n+=e.c)}function Fi(t,e,r){return t.a.parent===e.parent?t.a:r}function Di(t){return 1+ua.max(t,function(t){return t.y})}function Bi(t){return t.reduce(function(t,e){return t+e.x},0)/t.length}function Ui(t){var e=t.children;return e&&e.length?Ui(e[0]):t}function Vi(t){var e,r=t.children;return r&&(e=r.length)?Vi(r[e-1]):t}function qi(t){return{x:t.x,y:t.y,dx:t.dx,dy:t.dy}}function Hi(t,e){var r=t.x+e[3],n=t.y+e[0],i=t.dx-e[1]-e[3],o=t.dy-e[0]-e[2];return 0>i&&(r+=i/2,i=0),0>o&&(n+=o/2,o=0),{x:r,y:n,dx:i,dy:o}}function Gi(t){var e=t[0],r=t[t.length-1];return r>e?[e,r]:[r,e]}function Yi(t){return t.rangeExtent?t.rangeExtent():Gi(t.range())}function Xi(t,e,r,n){var i=r(t[0],t[1]),o=n(e[0],e[1]);return function(t){return o(i(t))}}function Wi(t,e){var r,n=0,i=t.length-1,o=t[n],a=t[i];return o>a&&(r=n,n=i,i=r,r=o,o=a,a=r),t[n]=e.floor(o),t[i]=e.ceil(a),t}function Zi(t){return t?{floor:function(e){return Math.floor(e/t)*t},ceil:function(e){return Math.ceil(e/t)*t}}:Tl}function $i(t,e,r,n){var i=[],o=[],a=0,s=Math.min(t.length,e.length)-1;for(t[s]<t[0]&&(t=t.slice().reverse(),e=e.slice().reverse());++a<=s;)i.push(r(t[a-1],t[a])),o.push(n(e[a-1],e[a]));return function(e){var r=ua.bisect(t,e,1,s)-1;return o[r](i[r](e))}}function Ki(t,e,r,n){function i(){var i=Math.min(t.length,e.length)>2?$i:Xi,l=n?Kn:$n;return a=i(t,e,l,r),s=i(e,t,l,_n),o}function o(t){return a(t)}var a,s;return o.invert=function(t){return s(t)},o.domain=function(e){return arguments.length?(t=e.map(Number),i()):t},o.range=function(t){return arguments.length?(e=t,i()):e},o.rangeRound=function(t){return o.range(t).interpolate(Dn)},o.clamp=function(t){return arguments.length?(n=t,i()):n},o.interpolate=function(t){return arguments.length?(r=t,i()):r},o.ticks=function(e){return eo(t,e)},o.tickFormat=function(e,r){return ro(t,e,r)},o.nice=function(e){return Ji(t,e),i()},o.copy=function(){return Ki(t,e,r,n)},i()}function Qi(t,e){return ua.rebind(t,e,\\\"range\\\",\\\"rangeRound\\\",\\\"interpolate\\\",\\\"clamp\\\")}function Ji(t,e){return Wi(t,Zi(to(t,e)[2])),Wi(t,Zi(to(t,e)[2])),t}function to(t,e){null==e&&(e=10);var r=Gi(t),n=r[1]-r[0],i=Math.pow(10,Math.floor(Math.log(n/e)/Math.LN10)),o=e/n*i;return.15>=o?i*=10:.35>=o?i*=5:.75>=o&&(i*=2),r[0]=Math.ceil(r[0]/i)*i,r[1]=Math.floor(r[1]/i)*i+.5*i,r[2]=i,r}function eo(t,e){return ua.range.apply(ua,to(t,e))}function ro(t,e,r){var n=to(t,e);if(r){var i=ps.exec(r);if(i.shift(),\\\"s\\\"===i[8]){var o=ua.formatPrefix(Math.max(wa(n[0]),wa(n[1])));return i[7]||(i[7]=\\\".\\\"+no(o.scale(n[2]))),i[8]=\\\"f\\\",r=ua.format(i.join(\\\"\\\")),function(t){return r(o.scale(t))+o.symbol}}i[7]||(i[7]=\\\".\\\"+io(i[8],n)),r=i.join(\\\"\\\")}else r=\\\",.\\\"+no(n[2])+\\\"f\\\";return ua.format(r)}function no(t){return-Math.floor(Math.log(t)/Math.LN10+.01)}function io(t,e){var r=no(e[2]);return t in El?Math.abs(r-no(Math.max(wa(e[0]),wa(e[1]))))+ +(\\\"e\\\"!==t):r-2*(\\\"%\\\"===t)}function oo(t,e,r,n){function i(t){return(r?Math.log(0>t?0:t):-Math.log(t>0?0:-t))/Math.log(e)}function o(t){return r?Math.pow(e,t):-Math.pow(e,-t)}function a(e){return t(i(e))}return a.invert=function(e){return o(t.invert(e))},a.domain=function(e){return arguments.length?(r=e[0]>=0,t.domain((n=e.map(Number)).map(i)),a):n},a.base=function(r){return arguments.length?(e=+r,t.domain(n.map(i)),a):e},a.nice=function(){var e=Wi(n.map(i),r?Math:Sl);return t.domain(e),n=e.map(o),a},a.ticks=function(){var t=Gi(n),a=[],s=t[0],l=t[1],c=Math.floor(i(s)),u=Math.ceil(i(l)),h=e%1?2:e;if(isFinite(u-c)){if(r){for(;u>c;c++)for(var f=1;h>f;f++)a.push(o(c)*f);a.push(o(c))}else for(a.push(o(c));c++<u;)for(var f=h-1;f>0;f--)a.push(o(c)*f);for(c=0;a[c]<s;c++);for(u=a.length;a[u-1]>l;u--);a=a.slice(c,u)}return a},a.tickFormat=function(t,r){if(!arguments.length)return Ll;arguments.length<2?r=Ll:\\\"function\\\"!=typeof r&&(r=ua.format(r));var n=Math.max(1,e*t/a.ticks().length);return function(t){var a=t/o(Math.round(i(t)));return e-.5>a*e&&(a*=e),n>=a?r(t):\\\"\\\"}},a.copy=function(){return oo(t.copy(),e,r,n)},Qi(a,t)}function ao(t,e,r){function n(e){return t(i(e))}var i=so(e),o=so(1/e);return n.invert=function(e){return o(t.invert(e))},n.domain=function(e){return arguments.length?(t.domain((r=e.map(Number)).map(i)),n):r},n.ticks=function(t){return eo(r,t)},n.tickFormat=function(t,e){return ro(r,t,e)},n.nice=function(t){return n.domain(Ji(r,t))},n.exponent=function(a){return arguments.length?(i=so(e=a),o=so(1/e),t.domain(r.map(i)),n):e},n.copy=function(){return ao(t.copy(),e,r)},Qi(n,t)}function so(t){return function(e){return 0>e?-Math.pow(-e,t):Math.pow(e,t)}}function lo(t,e){function r(r){return o[((i.get(r)||(\\\"range\\\"===e.t?i.set(r,t.push(r)):NaN))-1)%o.length]}function n(e,r){return ua.range(t.length).map(function(t){return e+r*t})}var i,o,a;return r.domain=function(n){if(!arguments.length)return t;t=[],i=new h;for(var o,a=-1,s=n.length;++a<s;)i.has(o=n[a])||i.set(o,t.push(o));return r[e.t].apply(r,e.a)},r.range=function(t){return arguments.length?(o=t,a=0,e={t:\\\"range\\\",a:arguments},r):o},r.rangePoints=function(i,s){arguments.length<2&&(s=0);var l=i[0],c=i[1],u=t.length<2?(l=(l+c)/2,0):(c-l)/(t.length-1+s);return o=n(l+u*s/2,u),a=0,e={t:\\\"rangePoints\\\",a:arguments},r},r.rangeRoundPoints=function(i,s){arguments.length<2&&(s=0);var l=i[0],c=i[1],u=t.length<2?(l=c=Math.round((l+c)/2),0):(c-l)/(t.length-1+s)|0;return o=n(l+Math.round(u*s/2+(c-l-(t.length-1+s)*u)/2),u),a=0,e={t:\\\"rangeRoundPoints\\\",a:arguments},r},r.rangeBands=function(i,s,l){arguments.length<2&&(s=0),arguments.length<3&&(l=s);var c=i[1]<i[0],u=i[c-0],h=i[1-c],f=(h-u)/(t.length-s+2*l);return o=n(u+f*l,f),c&&o.reverse(),a=f*(1-s),e={t:\\\"rangeBands\\\",a:arguments},r},r.rangeRoundBands=function(i,s,l){arguments.length<2&&(s=0),arguments.length<3&&(l=s);var c=i[1]<i[0],u=i[c-0],h=i[1-c],f=Math.floor((h-u)/(t.length-s+2*l));return o=n(u+Math.round((h-u-(t.length-s)*f)/2),f),c&&o.reverse(),a=Math.round(f*(1-s)),e={t:\\\"rangeRoundBands\\\",a:arguments},r},r.rangeBand=function(){return a},r.rangeExtent=function(){return Gi(e.a[0])},r.copy=function(){return lo(t,e)},r.domain(t)}function co(t,e){function r(){var r=0,i=e.length;for(s=[];++r<i;)s[r-1]=ua.quantile(t,r/i);return n}function n(t){return isNaN(t=+t)?void 0:e[ua.bisect(s,t)]}var s;return n.domain=function(e){return arguments.length?(t=e.map(o).filter(a).sort(i),r()):t},n.range=function(t){return arguments.length?(e=t,r()):e},n.quantiles=function(){return s},n.invertExtent=function(r){return r=e.indexOf(r),0>r?[NaN,NaN]:[r>0?s[r-1]:t[0],r<s.length?s[r]:t[t.length-1]]},n.copy=function(){return co(t,e)},r()}function uo(t,e,r){function n(e){return r[Math.max(0,Math.min(a,Math.floor(o*(e-t))))]}function i(){return o=r.length/(e-t),a=r.length-1,n}var o,a;return n.domain=function(r){return arguments.length?(t=+r[0],e=+r[r.length-1],i()):[t,e]},n.range=function(t){return arguments.length?(r=t,i()):r},n.invertExtent=function(e){return e=r.indexOf(e),e=0>e?NaN:e/o+t,[e,e+1/o]},n.copy=function(){return uo(t,e,r)},i()}function ho(t,e){function r(r){return r>=r?e[ua.bisect(t,r)]:void 0}return r.domain=function(e){return arguments.length?(t=e,r):t},r.range=function(t){return arguments.length?(e=t,r):e},r.invertExtent=function(r){return r=e.indexOf(r),[t[r-1],t[r]]},r.copy=function(){return ho(t,e)},r}function fo(t){function e(t){return+t}return e.invert=e,e.domain=e.range=function(r){return arguments.length?(t=r.map(e),e):t},e.ticks=function(e){return eo(t,e)},e.tickFormat=function(e,r){return ro(t,e,r)},e.copy=function(){return fo(t)},e}function po(){return 0}function go(t){return t.innerRadius}function vo(t){return t.outerRadius}function mo(t){return t.startAngle}function yo(t){return t.endAngle}function bo(t){return t&&t.padAngle}function xo(t,e,r,n){return(t-r)*e-(e-n)*t>0?0:1}function _o(t,e,r,n,i){var o=t[0]-e[0],a=t[1]-e[1],s=(i?n:-n)/Math.sqrt(o*o+a*a),l=s*a,c=-s*o,u=t[0]+l,h=t[1]+c,f=e[0]+l,d=e[1]+c,p=(u+f)/2,g=(h+d)/2,v=f-u,m=d-h,y=v*v+m*m,b=r-n,x=u*d-f*h,_=(0>m?-1:1)*Math.sqrt(Math.max(0,b*b*y-x*x)),w=(x*m-v*_)/y,A=(-x*v-m*_)/y,k=(x*m+v*_)/y,M=(-x*v+m*_)/y,T=w-p,E=A-g,L=k-p,S=M-g;return T*T+E*E>L*L+S*S&&(w=k,A=M),[[w-l,A-c],[w*r/b,A*r/b]]}function wo(t){function e(e){function a(){c.push(\\\"M\\\",o(t(u),s))}for(var l,c=[],u=[],h=-1,f=e.length,d=Lt(r),p=Lt(n);++h<f;)i.call(this,l=e[h],h)?u.push([+d.call(this,l,h),+p.call(this,l,h)]):u.length&&(a(),u=[]);return u.length&&a(),c.length?c.join(\\\"\\\"):null}var r=Cr,n=Pr,i=Pe,o=Ao,a=o.key,s=.7;return e.x=function(t){return arguments.length?(r=t,e):r},e.y=function(t){return arguments.length?(n=t,e):n},e.defined=function(t){return arguments.length?(i=t,e):i},e.interpolate=function(t){return arguments.length?(a=\\\"function\\\"==typeof t?o=t:(o=Il.get(t)||Ao).key,e):a},e.tension=function(t){return arguments.length?(s=t,e):s},e}function Ao(t){return t.length>1?t.join(\\\"L\\\"):t+\\\"Z\\\"}function ko(t){return t.join(\\\"L\\\")+\\\"Z\\\"}function Mo(t){for(var e=0,r=t.length,n=t[0],i=[n[0],\\\",\\\",n[1]];++e<r;)i.push(\\\"H\\\",(n[0]+(n=t[e])[0])/2,\\\"V\\\",n[1]);return r>1&&i.push(\\\"H\\\",n[0]),i.join(\\\"\\\")}function To(t){for(var e=0,r=t.length,n=t[0],i=[n[0],\\\",\\\",n[1]];++e<r;)i.push(\\\"V\\\",(n=t[e])[1],\\\"H\\\",n[0]);return i.join(\\\"\\\")}function Eo(t){for(var e=0,r=t.length,n=t[0],i=[n[0],\\\",\\\",n[1]];++e<r;)i.push(\\\"H\\\",(n=t[e])[0],\\\"V\\\",n[1]);return i.join(\\\"\\\")}function Lo(t,e){return t.length<4?Ao(t):t[1]+Po(t.slice(1,-1),zo(t,e))}function So(t,e){return t.length<3?ko(t):t[0]+Po((t.push(t[0]),t),zo([t[t.length-2]].concat(t,[t[1]]),e))}function Co(t,e){return t.length<3?Ao(t):t[0]+Po(t,zo(t,e))}function Po(t,e){if(e.length<1||t.length!=e.length&&t.length!=e.length+2)return Ao(t);var r=t.length!=e.length,n=\\\"\\\",i=t[0],o=t[1],a=e[0],s=a,l=1;if(r&&(n+=\\\"Q\\\"+(o[0]-2*a[0]/3)+\\\",\\\"+(o[1]-2*a[1]/3)+\\\",\\\"+o[0]+\\\",\\\"+o[1],i=t[1],l=2),e.length>1){s=e[1],o=t[l],l++,n+=\\\"C\\\"+(i[0]+a[0])+\\\",\\\"+(i[1]+a[1])+\\\",\\\"+(o[0]-s[0])+\\\",\\\"+(o[1]-s[1])+\\\",\\\"+o[0]+\\\",\\\"+o[1];for(var c=2;c<e.length;c++,l++)o=t[l],s=e[c],n+=\\\"S\\\"+(o[0]-s[0])+\\\",\\\"+(o[1]-s[1])+\\\",\\\"+o[0]+\\\",\\\"+o[1]}if(r){var u=t[l];n+=\\\"Q\\\"+(o[0]+2*s[0]/3)+\\\",\\\"+(o[1]+2*s[1]/3)+\\\",\\\"+u[0]+\\\",\\\"+u[1]}return n}function zo(t,e){for(var r,n=[],i=(1-e)/2,o=t[0],a=t[1],s=1,l=t.length;++s<l;)r=o,o=a,a=t[s],n.push([i*(a[0]-r[0]),i*(a[1]-r[1])]);return n}function Ro(t){if(t.length<3)return Ao(t);var e=1,r=t.length,n=t[0],i=n[0],o=n[1],a=[i,i,i,(n=t[1])[0]],s=[o,o,o,n[1]],l=[i,\\\",\\\",o,\\\"L\\\",jo(Fl,a),\\\",\\\",jo(Fl,s)];for(t.push(t[r-1]);++e<=r;)n=t[e],a.shift(),a.push(n[0]),s.shift(),s.push(n[1]),Fo(l,a,s);return t.pop(),l.push(\\\"L\\\",n),l.join(\\\"\\\")}function Oo(t){if(t.length<4)return Ao(t);for(var e,r=[],n=-1,i=t.length,o=[0],a=[0];++n<3;)e=t[n],o.push(e[0]),a.push(e[1]);for(r.push(jo(Fl,o)+\\\",\\\"+jo(Fl,a)),--n;++n<i;)e=t[n],o.shift(),o.push(e[0]),a.shift(),a.push(e[1]),Fo(r,o,a);return r.join(\\\"\\\")}function Io(t){for(var e,r,n=-1,i=t.length,o=i+4,a=[],s=[];++n<4;)r=t[n%i],a.push(r[0]),s.push(r[1]);for(e=[jo(Fl,a),\\\",\\\",jo(Fl,s)],--n;++n<o;)r=t[n%i],a.shift(),a.push(r[0]),s.shift(),s.push(r[1]),Fo(e,a,s);return e.join(\\\"\\\")}function No(t,e){var r=t.length-1;if(r)for(var n,i,o=t[0][0],a=t[0][1],s=t[r][0]-o,l=t[r][1]-a,c=-1;++c<=r;)n=t[c],i=c/r,n[0]=e*n[0]+(1-e)*(o+i*s),n[1]=e*n[1]+(1-e)*(a+i*l);return Ro(t)}function jo(t,e){return t[0]*e[0]+t[1]*e[1]+t[2]*e[2]+t[3]*e[3]}function Fo(t,e,r){t.push(\\\"C\\\",jo(Nl,e),\\\",\\\",jo(Nl,r),\\\",\\\",jo(jl,e),\\\",\\\",jo(jl,r),\\\",\\\",jo(Fl,e),\\\",\\\",jo(Fl,r))}function Do(t,e){return(e[1]-t[1])/(e[0]-t[0])}function Bo(t){for(var e=0,r=t.length-1,n=[],i=t[0],o=t[1],a=n[0]=Do(i,o);++e<r;)n[e]=(a+(a=Do(i=o,o=t[e+1])))/2;return n[e]=a,n}function Uo(t){for(var e,r,n,i,o=[],a=Bo(t),s=-1,l=t.length-1;++s<l;)e=Do(t[s],t[s+1]),wa(e)<Da?a[s]=a[s+1]=0:(r=a[s]/e,n=a[s+1]/e,i=r*r+n*n,i>9&&(i=3*e/Math.sqrt(i),a[s]=i*r,a[s+1]=i*n));for(s=-1;++s<=l;)i=(t[Math.min(l,s+1)][0]-t[Math.max(0,s-1)][0])/(6*(1+a[s]*a[s])),o.push([i||0,a[s]*i||0]);return o}function Vo(t){return t.length<3?Ao(t):t[0]+Po(t,Uo(t))}function qo(t){for(var e,r,n,i=-1,o=t.length;++i<o;)e=t[i],r=e[0],n=e[1]-Ha,e[0]=r*Math.cos(n),e[1]=r*Math.sin(n);return t}function Ho(t){function e(e){function l(){g.push(\\\"M\\\",s(t(m),h),u,c(t(v.reverse()),h),\\\"Z\\\")}for(var f,d,p,g=[],v=[],m=[],y=-1,b=e.length,x=Lt(r),_=Lt(i),w=r===n?function(){return d}:Lt(n),A=i===o?function(){return p}:Lt(o);++y<b;)a.call(this,f=e[y],y)?(v.push([d=+x.call(this,f,y),p=+_.call(this,f,y)]),m.push([+w.call(this,f,y),+A.call(this,f,y)])):v.length&&(l(),v=[],m=[]);return v.length&&l(),g.length?g.join(\\\"\\\"):null}var r=Cr,n=Cr,i=0,o=Pr,a=Pe,s=Ao,l=s.key,c=s,u=\\\"L\\\",h=.7;return e.x=function(t){return arguments.length?(r=n=t,e):n},e.x0=function(t){return arguments.length?(r=t,e):r},e.x1=function(t){return arguments.length?(n=t,e):n},e.y=function(t){return arguments.length?(i=o=t,e):o},e.y0=function(t){return arguments.length?(i=t,e):i},e.y1=function(t){return arguments.length?(o=t,e):o},e.defined=function(t){return arguments.length?(a=t,e):a},e.interpolate=function(t){return arguments.length?(l=\\\"function\\\"==typeof t?s=t:(s=Il.get(t)||Ao).key,c=s.reverse||s,u=s.closed?\\\"M\\\":\\\"L\\\",e):l},e.tension=function(t){return arguments.length?(h=t,e):h},e}function Go(t){return t.radius}function Yo(t){return[t.x,t.y]}function Xo(t){return function(){var e=t.apply(this,arguments),r=e[0],n=e[1]-Ha;return[r*Math.cos(n),r*Math.sin(n)]}}function Wo(){return 64}function Zo(){return\\\"circle\\\"}function $o(t){var e=Math.sqrt(t/Ua);return\\\"M0,\\\"+e+\\\"A\\\"+e+\\\",\\\"+e+\\\" 0 1,1 0,\\\"+-e+\\\"A\\\"+e+\\\",\\\"+e+\\\" 0 1,1 0,\\\"+e+\\\"Z\\\"}function Ko(t){return function(){var e,r,n;(e=this[t])&&(n=e[r=e.active])&&(n.timer.c=null,n.timer.t=NaN,--e.count?delete e[r]:delete this[t],e.active+=.5,n.event&&n.event.interrupt.call(this,this.__data__,n.index))}}function Qo(t,e,r){return Ea(t,Gl),t.namespace=e,t.id=r,t}function Jo(t,e,r,n){var i=t.id,o=t.namespace;return G(t,\\\"function\\\"==typeof r?function(t,a,s){t[o][i].tween.set(e,n(r.call(t,t.__data__,a,s)))}:(r=n(r),function(t){t[o][i].tween.set(e,r)}))}function ta(t){return null==t&&(t=\\\"\\\"),function(){this.textContent=t}}function ea(t){return null==t?\\\"__transition__\\\":\\\"__transition_\\\"+t+\\\"__\\\"}function ra(t,e,r,n,i){function o(t){var e=g.delay;return c.t=e+l,t>=e?a(t-e):void(c.c=a)}function a(r){var i=p.active,o=p[i];o&&(o.timer.c=null,o.timer.t=NaN,--p.count,delete p[i],o.event&&o.event.interrupt.call(t,t.__data__,o.index));for(var a in p)if(n>+a){var h=p[a];h.timer.c=null,h.timer.t=NaN,--p.count,delete p[a]}c.c=s,Rt(function(){return c.c&&s(r||1)&&(c.c=null,c.t=NaN),1},0,l),p.active=n,g.event&&g.event.start.call(t,t.__data__,e),d=[],g.tween.forEach(function(r,n){(n=n.call(t,t.__data__,e))&&d.push(n)}),f=g.ease,u=g.duration}function s(i){for(var o=i/u,a=f(o),s=d.length;s>0;)d[--s].call(t,a);return o>=1?(g.event&&g.event.end.call(t,t.__data__,e),--p.count?delete p[n]:delete t[r],1):void 0}var l,c,u,f,d,p=t[r]||(t[r]={active:0,count:0}),g=p[n];g||(l=i.time,c=Rt(o,0,l),g=p[n]={tween:new h,time:l,timer:c,delay:i.delay,duration:i.duration,ease:i.ease,index:e},i=null,++p.count)}function na(t,e,r){t.attr(\\\"transform\\\",function(t){var n=e(t);return\\\"translate(\\\"+(isFinite(n)?n:r(t))+\\\",0)\\\"})}function ia(t,e,r){t.attr(\\\"transform\\\",function(t){var n=e(t);return\\\"translate(0,\\\"+(isFinite(n)?n:r(t))+\\\")\\\"})}function oa(t){return t.toISOString()}function aa(t,e,r){function n(e){return t(e)}function i(t,r){var n=t[1]-t[0],i=n/r,o=ua.bisect(tc,i);return o==tc.length?[e.year,to(t.map(function(t){return t/31536e6}),r)[2]]:o?e[i/tc[o-1]<tc[o]/i?o-1:o]:[nc,to(t,r)[2]]}return n.invert=function(e){return sa(t.invert(e))},n.domain=function(e){return arguments.length?(t.domain(e),n):t.domain().map(sa)},n.nice=function(t,e){function r(r){return!isNaN(r)&&!t.range(r,sa(+r+1),e).length}var o=n.domain(),a=Gi(o),s=null==t?i(a,10):\\\"number\\\"==typeof t&&i(a,t);return s&&(t=s[0],e=s[1]),n.domain(Wi(o,e>1?{floor:function(e){for(;r(e=t.floor(e));)e=sa(e-1);return e},ceil:function(e){for(;r(e=t.ceil(e));)e=sa(+e+1);return e}}:t))},n.ticks=function(t,e){var r=Gi(n.domain()),o=null==t?i(r,10):\\\"number\\\"==typeof t?i(r,t):!t.range&&[{range:t},e];return o&&(t=o[0],e=o[1]),t.range(r[0],sa(+r[1]+1),1>e?1:e)},n.tickFormat=function(){return r},n.copy=function(){return aa(t.copy(),e,r)},Qi(n,t)}function sa(t){return new Date(t)}function la(t){return JSON.parse(t.responseText)}function ca(t){var e=da.createRange();return e.selectNode(da.body),e.createContextualFragment(t.responseText)}var ua={version:\\\"3.5.16\\\"},ha=[].slice,fa=function(t){return ha.call(t)},da=this.document;if(da)try{fa(da.documentElement.childNodes)[0].nodeType}catch(pa){fa=function(t){for(var e=t.length,r=new Array(e);e--;)r[e]=t[e];return r}}if(Date.now||(Date.now=function(){return+new Date}),da)try{da.createElement(\\\"DIV\\\").style.setProperty(\\\"opacity\\\",0,\\\"\\\")}catch(ga){var va=this.Element.prototype,ma=va.setAttribute,ya=va.setAttributeNS,ba=this.CSSStyleDeclaration.prototype,xa=ba.setProperty;va.setAttribute=function(t,e){ma.call(this,t,e+\\\"\\\")},va.setAttributeNS=function(t,e,r){ya.call(this,t,e,r+\\\"\\\")},ba.setProperty=function(t,e,r){xa.call(this,t,e+\\\"\\\",r)}}ua.ascending=i,ua.descending=function(t,e){return t>e?-1:e>t?1:e>=t?0:NaN},ua.min=function(t,e){var r,n,i=-1,o=t.length;if(1===arguments.length){for(;++i<o;)if(null!=(n=t[i])&&n>=n){r=n;break}for(;++i<o;)null!=(n=t[i])&&r>n&&(r=n)}else{for(;++i<o;)if(null!=(n=e.call(t,t[i],i))&&n>=n){r=n;break}for(;++i<o;)null!=(n=e.call(t,t[i],i))&&r>n&&(r=n)}return r},ua.max=function(t,e){var r,n,i=-1,o=t.length;if(1===arguments.length){for(;++i<o;)if(null!=(n=t[i])&&n>=n){r=n;break}for(;++i<o;)null!=(n=t[i])&&n>r&&(r=n)}else{for(;++i<o;)if(null!=(n=e.call(t,t[i],i))&&n>=n){r=n;break}for(;++i<o;)null!=(n=e.call(t,t[i],i))&&n>r&&(r=n)}return r},ua.extent=function(t,e){var r,n,i,o=-1,a=t.length;if(1===arguments.length){for(;++o<a;)if(null!=(n=t[o])&&n>=n){\\n\",\n       \"r=i=n;break}for(;++o<a;)null!=(n=t[o])&&(r>n&&(r=n),n>i&&(i=n))}else{for(;++o<a;)if(null!=(n=e.call(t,t[o],o))&&n>=n){r=i=n;break}for(;++o<a;)null!=(n=e.call(t,t[o],o))&&(r>n&&(r=n),n>i&&(i=n))}return[r,i]},ua.sum=function(t,e){var r,n=0,i=t.length,o=-1;if(1===arguments.length)for(;++o<i;)a(r=+t[o])&&(n+=r);else for(;++o<i;)a(r=+e.call(t,t[o],o))&&(n+=r);return n},ua.mean=function(t,e){var r,n=0,i=t.length,s=-1,l=i;if(1===arguments.length)for(;++s<i;)a(r=o(t[s]))?n+=r:--l;else for(;++s<i;)a(r=o(e.call(t,t[s],s)))?n+=r:--l;return l?n/l:void 0},ua.quantile=function(t,e){var r=(t.length-1)*e+1,n=Math.floor(r),i=+t[n-1],o=r-n;return o?i+o*(t[n]-i):i},ua.median=function(t,e){var r,n=[],s=t.length,l=-1;if(1===arguments.length)for(;++l<s;)a(r=o(t[l]))&&n.push(r);else for(;++l<s;)a(r=o(e.call(t,t[l],l)))&&n.push(r);return n.length?ua.quantile(n.sort(i),.5):void 0},ua.variance=function(t,e){var r,n,i=t.length,s=0,l=0,c=-1,u=0;if(1===arguments.length)for(;++c<i;)a(r=o(t[c]))&&(n=r-s,s+=n/++u,l+=n*(r-s));else for(;++c<i;)a(r=o(e.call(t,t[c],c)))&&(n=r-s,s+=n/++u,l+=n*(r-s));return u>1?l/(u-1):void 0},ua.deviation=function(){var t=ua.variance.apply(this,arguments);return t?Math.sqrt(t):t};var _a=s(i);ua.bisectLeft=_a.left,ua.bisect=ua.bisectRight=_a.right,ua.bisector=function(t){return s(1===t.length?function(e,r){return i(t(e),r)}:t)},ua.shuffle=function(t,e,r){(o=arguments.length)<3&&(r=t.length,2>o&&(e=0));for(var n,i,o=r-e;o;)i=Math.random()*o--|0,n=t[o+e],t[o+e]=t[i+e],t[i+e]=n;return t},ua.permute=function(t,e){for(var r=e.length,n=new Array(r);r--;)n[r]=t[e[r]];return n},ua.pairs=function(t){for(var e,r=0,n=t.length-1,i=t[0],o=new Array(0>n?0:n);n>r;)o[r]=[e=i,i=t[++r]];return o},ua.transpose=function(t){if(!(i=t.length))return[];for(var e=-1,r=ua.min(t,l),n=new Array(r);++e<r;)for(var i,o=-1,a=n[e]=new Array(i);++o<i;)a[o]=t[o][e];return n},ua.zip=function(){return ua.transpose(arguments)},ua.keys=function(t){var e=[];for(var r in t)e.push(r);return e},ua.values=function(t){var e=[];for(var r in t)e.push(t[r]);return e},ua.entries=function(t){var e=[];for(var r in t)e.push({key:r,value:t[r]});return e},ua.merge=function(t){for(var e,r,n,i=t.length,o=-1,a=0;++o<i;)a+=t[o].length;for(r=new Array(a);--i>=0;)for(n=t[i],e=n.length;--e>=0;)r[--a]=n[e];return r};var wa=Math.abs;ua.range=function(t,e,r){if(arguments.length<3&&(r=1,arguments.length<2&&(e=t,t=0)),(e-t)/r===1/0)throw new Error(\\\"infinite range\\\");var n,i=[],o=c(wa(r)),a=-1;if(t*=o,e*=o,r*=o,0>r)for(;(n=t+r*++a)>e;)i.push(n/o);else for(;(n=t+r*++a)<e;)i.push(n/o);return i},ua.map=function(t,e){var r=new h;if(t instanceof h)t.forEach(function(t,e){r.set(t,e)});else if(Array.isArray(t)){var n,i=-1,o=t.length;if(1===arguments.length)for(;++i<o;)r.set(i,t[i]);else for(;++i<o;)r.set(e.call(t,n=t[i],i),n)}else for(var a in t)r.set(a,t[a]);return r};var Aa=\\\"__proto__\\\",ka=\\\"\\\\x00\\\";u(h,{has:p,get:function(t){return this._[f(t)]},set:function(t,e){return this._[f(t)]=e},remove:g,keys:v,values:function(){var t=[];for(var e in this._)t.push(this._[e]);return t},entries:function(){var t=[];for(var e in this._)t.push({key:d(e),value:this._[e]});return t},size:m,empty:y,forEach:function(t){for(var e in this._)t.call(this,d(e),this._[e])}}),ua.nest=function(){function t(e,a,s){if(s>=o.length)return n?n.call(i,a):r?a.sort(r):a;for(var l,c,u,f,d=-1,p=a.length,g=o[s++],v=new h;++d<p;)(f=v.get(l=g(c=a[d])))?f.push(c):v.set(l,[c]);return e?(c=e(),u=function(r,n){c.set(r,t(e,n,s))}):(c={},u=function(r,n){c[r]=t(e,n,s)}),v.forEach(u),c}function e(t,r){if(r>=o.length)return t;var n=[],i=a[r++];return t.forEach(function(t,i){n.push({key:t,values:e(i,r)})}),i?n.sort(function(t,e){return i(t.key,e.key)}):n}var r,n,i={},o=[],a=[];return i.map=function(e,r){return t(r,e,0)},i.entries=function(r){return e(t(ua.map,r,0),0)},i.key=function(t){return o.push(t),i},i.sortKeys=function(t){return a[o.length-1]=t,i},i.sortValues=function(t){return r=t,i},i.rollup=function(t){return n=t,i},i},ua.set=function(t){var e=new b;if(t)for(var r=0,n=t.length;n>r;++r)e.add(t[r]);return e},u(b,{has:p,add:function(t){return this._[f(t+=\\\"\\\")]=!0,t},remove:g,values:v,size:m,empty:y,forEach:function(t){for(var e in this._)t.call(this,d(e))}}),ua.behavior={},ua.rebind=function(t,e){for(var r,n=1,i=arguments.length;++n<i;)t[r=arguments[n]]=_(t,e,e[r]);return t};var Ma=[\\\"webkit\\\",\\\"ms\\\",\\\"moz\\\",\\\"Moz\\\",\\\"o\\\",\\\"O\\\"];ua.dispatch=function(){for(var t=new k,e=-1,r=arguments.length;++e<r;)t[arguments[e]]=M(t);return t},k.prototype.on=function(t,e){var r=t.indexOf(\\\".\\\"),n=\\\"\\\";if(r>=0&&(n=t.slice(r+1),t=t.slice(0,r)),t)return arguments.length<2?this[t].on(n):this[t].on(n,e);if(2===arguments.length){if(null==e)for(t in this)this.hasOwnProperty(t)&&this[t].on(n,null);return this}},ua.event=null,ua.requote=function(t){return t.replace(Ta,\\\"\\\\\\\\$&\\\")};var Ta=/[\\\\\\\\\\\\^\\\\$\\\\*\\\\+\\\\?\\\\|\\\\[\\\\]\\\\(\\\\)\\\\.\\\\{\\\\}]/g,Ea={}.__proto__?function(t,e){t.__proto__=e}:function(t,e){for(var r in e)t[r]=e[r]},La=function(t,e){return e.querySelector(t)},Sa=function(t,e){return e.querySelectorAll(t)},Ca=function(t,e){var r=t.matches||t[w(t,\\\"matchesSelector\\\")];return(Ca=function(t,e){return r.call(t,e)})(t,e)};\\\"function\\\"==typeof Sizzle&&(La=function(t,e){return Sizzle(t,e)[0]||null},Sa=Sizzle,Ca=Sizzle.matchesSelector),ua.selection=function(){return ua.select(da.documentElement)};var Pa=ua.selection.prototype=[];Pa.select=function(t){var e,r,n,i,o=[];t=C(t);for(var a=-1,s=this.length;++a<s;){o.push(e=[]),e.parentNode=(n=this[a]).parentNode;for(var l=-1,c=n.length;++l<c;)(i=n[l])?(e.push(r=t.call(i,i.__data__,l,a)),r&&\\\"__data__\\\"in i&&(r.__data__=i.__data__)):e.push(null)}return S(o)},Pa.selectAll=function(t){var e,r,n=[];t=P(t);for(var i=-1,o=this.length;++i<o;)for(var a=this[i],s=-1,l=a.length;++s<l;)(r=a[s])&&(n.push(e=fa(t.call(r,r.__data__,s,i))),e.parentNode=r);return S(n)};var za=\\\"http://www.w3.org/1999/xhtml\\\",Ra={svg:\\\"http://www.w3.org/2000/svg\\\",xhtml:za,xlink:\\\"http://www.w3.org/1999/xlink\\\",xml:\\\"http://www.w3.org/XML/1998/namespace\\\",xmlns:\\\"http://www.w3.org/2000/xmlns/\\\"};ua.ns={prefix:Ra,qualify:function(t){var e=t.indexOf(\\\":\\\"),r=t;return e>=0&&\\\"xmlns\\\"!==(r=t.slice(0,e))&&(t=t.slice(e+1)),Ra.hasOwnProperty(r)?{space:Ra[r],local:t}:t}},Pa.attr=function(t,e){if(arguments.length<2){if(\\\"string\\\"==typeof t){var r=this.node();return t=ua.ns.qualify(t),t.local?r.getAttributeNS(t.space,t.local):r.getAttribute(t)}for(e in t)this.each(z(e,t[e]));return this}return this.each(z(t,e))},Pa.classed=function(t,e){if(arguments.length<2){if(\\\"string\\\"==typeof t){var r=this.node(),n=(t=I(t)).length,i=-1;if(e=r.classList){for(;++i<n;)if(!e.contains(t[i]))return!1}else for(e=r.getAttribute(\\\"class\\\");++i<n;)if(!O(t[i]).test(e))return!1;return!0}for(e in t)this.each(N(e,t[e]));return this}return this.each(N(t,e))},Pa.style=function(t,e,r){var i=arguments.length;if(3>i){if(\\\"string\\\"!=typeof t){2>i&&(e=\\\"\\\");for(r in t)this.each(F(r,t[r],e));return this}if(2>i){var o=this.node();return n(o).getComputedStyle(o,null).getPropertyValue(t)}r=\\\"\\\"}return this.each(F(t,e,r))},Pa.property=function(t,e){if(arguments.length<2){if(\\\"string\\\"==typeof t)return this.node()[t];for(e in t)this.each(D(e,t[e]));return this}return this.each(D(t,e))},Pa.text=function(t){return arguments.length?this.each(\\\"function\\\"==typeof t?function(){var e=t.apply(this,arguments);this.textContent=null==e?\\\"\\\":e}:null==t?function(){this.textContent=\\\"\\\"}:function(){this.textContent=t}):this.node().textContent},Pa.html=function(t){return arguments.length?this.each(\\\"function\\\"==typeof t?function(){var e=t.apply(this,arguments);this.innerHTML=null==e?\\\"\\\":e}:null==t?function(){this.innerHTML=\\\"\\\"}:function(){this.innerHTML=t}):this.node().innerHTML},Pa.append=function(t){return t=B(t),this.select(function(){return this.appendChild(t.apply(this,arguments))})},Pa.insert=function(t,e){return t=B(t),e=C(e),this.select(function(){return this.insertBefore(t.apply(this,arguments),e.apply(this,arguments)||null)})},Pa.remove=function(){return this.each(U)},Pa.data=function(t,e){function r(t,r){var n,i,o,a=t.length,u=r.length,f=Math.min(a,u),d=new Array(u),p=new Array(u),g=new Array(a);if(e){var v,m=new h,y=new Array(a);for(n=-1;++n<a;)(i=t[n])&&(m.has(v=e.call(i,i.__data__,n))?g[n]=i:m.set(v,i),y[n]=v);for(n=-1;++n<u;)(i=m.get(v=e.call(r,o=r[n],n)))?i!==!0&&(d[n]=i,i.__data__=o):p[n]=V(o),m.set(v,!0);for(n=-1;++n<a;)n in y&&m.get(y[n])!==!0&&(g[n]=t[n])}else{for(n=-1;++n<f;)i=t[n],o=r[n],i?(i.__data__=o,d[n]=i):p[n]=V(o);for(;u>n;++n)p[n]=V(r[n]);for(;a>n;++n)g[n]=t[n]}p.update=d,p.parentNode=d.parentNode=g.parentNode=t.parentNode,s.push(p),l.push(d),c.push(g)}var n,i,o=-1,a=this.length;if(!arguments.length){for(t=new Array(a=(n=this[0]).length);++o<a;)(i=n[o])&&(t[o]=i.__data__);return t}var s=Y([]),l=S([]),c=S([]);if(\\\"function\\\"==typeof t)for(;++o<a;)r(n=this[o],t.call(n,n.parentNode.__data__,o));else for(;++o<a;)r(n=this[o],t);return l.enter=function(){return s},l.exit=function(){return c},l},Pa.datum=function(t){return arguments.length?this.property(\\\"__data__\\\",t):this.property(\\\"__data__\\\")},Pa.filter=function(t){var e,r,n,i=[];\\\"function\\\"!=typeof t&&(t=q(t));for(var o=0,a=this.length;a>o;o++){i.push(e=[]),e.parentNode=(r=this[o]).parentNode;for(var s=0,l=r.length;l>s;s++)(n=r[s])&&t.call(n,n.__data__,s,o)&&e.push(n)}return S(i)},Pa.order=function(){for(var t=-1,e=this.length;++t<e;)for(var r,n=this[t],i=n.length-1,o=n[i];--i>=0;)(r=n[i])&&(o&&o!==r.nextSibling&&o.parentNode.insertBefore(r,o),o=r);return this},Pa.sort=function(t){t=H.apply(this,arguments);for(var e=-1,r=this.length;++e<r;)this[e].sort(t);return this.order()},Pa.each=function(t){return G(this,function(e,r,n){t.call(e,e.__data__,r,n)})},Pa.call=function(t){var e=fa(arguments);return t.apply(e[0]=this,e),this},Pa.empty=function(){return!this.node()},Pa.node=function(){for(var t=0,e=this.length;e>t;t++)for(var r=this[t],n=0,i=r.length;i>n;n++){var o=r[n];if(o)return o}return null},Pa.size=function(){var t=0;return G(this,function(){++t}),t};var Oa=[];ua.selection.enter=Y,ua.selection.enter.prototype=Oa,Oa.append=Pa.append,Oa.empty=Pa.empty,Oa.node=Pa.node,Oa.call=Pa.call,Oa.size=Pa.size,Oa.select=function(t){for(var e,r,n,i,o,a=[],s=-1,l=this.length;++s<l;){n=(i=this[s]).update,a.push(e=[]),e.parentNode=i.parentNode;for(var c=-1,u=i.length;++c<u;)(o=i[c])?(e.push(n[c]=r=t.call(i.parentNode,o.__data__,c,s)),r.__data__=o.__data__):e.push(null)}return S(a)},Oa.insert=function(t,e){return arguments.length<2&&(e=X(this)),Pa.insert.call(this,t,e)},ua.select=function(t){var r;return\\\"string\\\"==typeof t?(r=[La(t,da)],r.parentNode=da.documentElement):(r=[t],r.parentNode=e(t)),S([r])},ua.selectAll=function(t){var e;return\\\"string\\\"==typeof t?(e=fa(Sa(t,da)),e.parentNode=da.documentElement):(e=fa(t),e.parentNode=null),S([e])},Pa.on=function(t,e,r){var n=arguments.length;if(3>n){if(\\\"string\\\"!=typeof t){2>n&&(e=!1);for(r in t)this.each(W(r,t[r],e));return this}if(2>n)return(n=this.node()[\\\"__on\\\"+t])&&n._;r=!1}return this.each(W(t,e,r))};var Ia=ua.map({mouseenter:\\\"mouseover\\\",mouseleave:\\\"mouseout\\\"});da&&Ia.forEach(function(t){\\\"on\\\"+t in da&&Ia.remove(t)});var Na,ja=0;ua.mouse=function(t){return Q(t,E())};var Fa=this.navigator&&/WebKit/.test(this.navigator.userAgent)?-1:0;ua.touch=function(t,e,r){if(arguments.length<3&&(r=e,e=E().changedTouches),e)for(var n,i=0,o=e.length;o>i;++i)if((n=e[i]).identifier===r)return Q(t,n)},ua.behavior.drag=function(){function t(){this.on(\\\"mousedown.drag\\\",o).on(\\\"touchstart.drag\\\",a)}function e(t,e,n,o,a){return function(){function s(){var t,r,n=e(f,g);n&&(t=n[0]-b[0],r=n[1]-b[1],p|=t|r,b=n,d({type:\\\"drag\\\",x:n[0]+c[0],y:n[1]+c[1],dx:t,dy:r}))}function l(){e(f,g)&&(m.on(o+v,null).on(a+v,null),y(p),d({type:\\\"dragend\\\"}))}var c,u=this,h=ua.event.target.correspondingElement||ua.event.target,f=u.parentNode,d=r.of(u,arguments),p=0,g=t(),v=\\\".drag\\\"+(null==g?\\\"\\\":\\\"-\\\"+g),m=ua.select(n(h)).on(o+v,s).on(a+v,l),y=K(h),b=e(f,g);i?(c=i.apply(u,arguments),c=[c.x-b[0],c.y-b[1]]):c=[0,0],d({type:\\\"dragstart\\\"})}}var r=L(t,\\\"drag\\\",\\\"dragstart\\\",\\\"dragend\\\"),i=null,o=e(A,ua.mouse,n,\\\"mousemove\\\",\\\"mouseup\\\"),a=e(J,ua.touch,x,\\\"touchmove\\\",\\\"touchend\\\");return t.origin=function(e){return arguments.length?(i=e,t):i},ua.rebind(t,r,\\\"on\\\")},ua.touches=function(t,e){return arguments.length<2&&(e=E().touches),e?fa(e).map(function(e){var r=Q(t,e);return r.identifier=e.identifier,r}):[]};var Da=1e-6,Ba=Da*Da,Ua=Math.PI,Va=2*Ua,qa=Va-Da,Ha=Ua/2,Ga=Ua/180,Ya=180/Ua,Xa=Math.SQRT2,Wa=2,Za=4;ua.interpolateZoom=function(t,e){var r,n,i=t[0],o=t[1],a=t[2],s=e[0],l=e[1],c=e[2],u=s-i,h=l-o,f=u*u+h*h;if(Ba>f)n=Math.log(c/a)/Xa,r=function(t){return[i+t*u,o+t*h,a*Math.exp(Xa*t*n)]};else{var d=Math.sqrt(f),p=(c*c-a*a+Za*f)/(2*a*Wa*d),g=(c*c-a*a-Za*f)/(2*c*Wa*d),v=Math.log(Math.sqrt(p*p+1)-p),m=Math.log(Math.sqrt(g*g+1)-g);n=(m-v)/Xa,r=function(t){var e=t*n,r=ot(v),s=a/(Wa*d)*(r*at(Xa*e+v)-it(v));return[i+s*u,o+s*h,a*r/ot(Xa*e+v)]}}return r.duration=1e3*n,r},ua.behavior.zoom=function(){function t(t){t.on(P,h).on(Ka+\\\".zoom\\\",d).on(\\\"dblclick.zoom\\\",p).on(O,f)}function e(t){return[(t[0]-k.x)/k.k,(t[1]-k.y)/k.k]}function r(t){return[t[0]*k.k+k.x,t[1]*k.k+k.y]}function i(t){k.k=Math.max(E[0],Math.min(E[1],t))}function o(t,e){e=r(e),k.x+=t[0]-e[0],k.y+=t[1]-e[1]}function a(e,r,n,a){e.__chart__={x:k.x,y:k.y,k:k.k},i(Math.pow(2,a)),o(v=r,n),e=ua.select(e),S>0&&(e=e.transition().duration(S)),e.call(t.event)}function s(){_&&_.domain(x.range().map(function(t){return(t-k.x)/k.k}).map(x.invert)),A&&A.domain(w.range().map(function(t){return(t-k.y)/k.k}).map(w.invert))}function l(t){C++||t({type:\\\"zoomstart\\\"})}function c(t){s(),t({type:\\\"zoom\\\",scale:k.k,translate:[k.x,k.y]})}function u(t){--C||(t({type:\\\"zoomend\\\"}),v=null)}function h(){function t(){s=1,o(ua.mouse(i),f),c(a)}function r(){h.on(z,null).on(R,null),d(s),u(a)}var i=this,a=I.of(i,arguments),s=0,h=ua.select(n(i)).on(z,t).on(R,r),f=e(ua.mouse(i)),d=K(i);Hl.call(i),l(a)}function f(){function t(){var t=ua.touches(p);return d=k.k,t.forEach(function(t){t.identifier in v&&(v[t.identifier]=e(t))}),t}function r(){var e=ua.event.target;ua.select(e).on(x,n).on(_,s),w.push(e);for(var r=ua.event.changedTouches,i=0,o=r.length;o>i;++i)v[r[i].identifier]=null;var l=t(),c=Date.now();if(1===l.length){if(500>c-b){var u=l[0];a(p,u,v[u.identifier],Math.floor(Math.log(k.k)/Math.LN2)+1),T()}b=c}else if(l.length>1){var u=l[0],h=l[1],f=u[0]-h[0],d=u[1]-h[1];m=f*f+d*d}}function n(){var t,e,r,n,a=ua.touches(p);Hl.call(p);for(var s=0,l=a.length;l>s;++s,n=null)if(r=a[s],n=v[r.identifier]){if(e)break;t=r,e=n}if(n){var u=(u=r[0]-t[0])*u+(u=r[1]-t[1])*u,h=m&&Math.sqrt(u/m);t=[(t[0]+r[0])/2,(t[1]+r[1])/2],e=[(e[0]+n[0])/2,(e[1]+n[1])/2],i(h*d)}b=null,o(t,e),c(g)}function s(){if(ua.event.touches.length){for(var e=ua.event.changedTouches,r=0,n=e.length;n>r;++r)delete v[e[r].identifier];for(var i in v)return void t()}ua.selectAll(w).on(y,null),A.on(P,h).on(O,f),M(),u(g)}var d,p=this,g=I.of(p,arguments),v={},m=0,y=\\\".zoom-\\\"+ua.event.changedTouches[0].identifier,x=\\\"touchmove\\\"+y,_=\\\"touchend\\\"+y,w=[],A=ua.select(p),M=K(p);r(),l(g),A.on(P,null).on(O,r)}function d(){var t=I.of(this,arguments);y?clearTimeout(y):(Hl.call(this),g=e(v=m||ua.mouse(this)),l(t)),y=setTimeout(function(){y=null,u(t)},50),T(),i(Math.pow(2,.002*$a())*k.k),o(v,g),c(t)}function p(){var t=ua.mouse(this),r=Math.log(k.k)/Math.LN2;a(this,t,e(t),ua.event.shiftKey?Math.ceil(r)-1:Math.floor(r)+1)}var g,v,m,y,b,x,_,w,A,k={x:0,y:0,k:1},M=[960,500],E=Qa,S=250,C=0,P=\\\"mousedown.zoom\\\",z=\\\"mousemove.zoom\\\",R=\\\"mouseup.zoom\\\",O=\\\"touchstart.zoom\\\",I=L(t,\\\"zoomstart\\\",\\\"zoom\\\",\\\"zoomend\\\");return Ka||(Ka=\\\"onwheel\\\"in da?($a=function(){return-ua.event.deltaY*(ua.event.deltaMode?120:1)},\\\"wheel\\\"):\\\"onmousewheel\\\"in da?($a=function(){return ua.event.wheelDelta},\\\"mousewheel\\\"):($a=function(){return-ua.event.detail},\\\"MozMousePixelScroll\\\")),t.event=function(t){t.each(function(){var t=I.of(this,arguments),e=k;Vl?ua.select(this).transition().each(\\\"start.zoom\\\",function(){k=this.__chart__||{x:0,y:0,k:1},l(t)}).tween(\\\"zoom:zoom\\\",function(){var r=M[0],n=M[1],i=v?v[0]:r/2,o=v?v[1]:n/2,a=ua.interpolateZoom([(i-k.x)/k.k,(o-k.y)/k.k,r/k.k],[(i-e.x)/e.k,(o-e.y)/e.k,r/e.k]);return function(e){var n=a(e),s=r/n[2];this.__chart__=k={x:i-n[0]*s,y:o-n[1]*s,k:s},c(t)}}).each(\\\"interrupt.zoom\\\",function(){u(t)}).each(\\\"end.zoom\\\",function(){u(t)}):(this.__chart__=k,l(t),c(t),u(t))})},t.translate=function(e){return arguments.length?(k={x:+e[0],y:+e[1],k:k.k},s(),t):[k.x,k.y]},t.scale=function(e){return arguments.length?(k={x:k.x,y:k.y,k:null},i(+e),s(),t):k.k},t.scaleExtent=function(e){return arguments.length?(E=null==e?Qa:[+e[0],+e[1]],t):E},t.center=function(e){return arguments.length?(m=e&&[+e[0],+e[1]],t):m},t.size=function(e){return arguments.length?(M=e&&[+e[0],+e[1]],t):M},t.duration=function(e){return arguments.length?(S=+e,t):S},t.x=function(e){return arguments.length?(_=e,x=e.copy(),k={x:0,y:0,k:1},t):_},t.y=function(e){return arguments.length?(A=e,w=e.copy(),k={x:0,y:0,k:1},t):A},ua.rebind(t,I,\\\"on\\\")};var $a,Ka,Qa=[0,1/0];ua.color=lt,lt.prototype.toString=function(){return this.rgb()+\\\"\\\"},ua.hsl=ct;var Ja=ct.prototype=new lt;Ja.brighter=function(t){return t=Math.pow(.7,arguments.length?t:1),new ct(this.h,this.s,this.l/t)},Ja.darker=function(t){return t=Math.pow(.7,arguments.length?t:1),new ct(this.h,this.s,t*this.l)},Ja.rgb=function(){return ut(this.h,this.s,this.l)},ua.hcl=ht;var ts=ht.prototype=new lt;ts.brighter=function(t){return new ht(this.h,this.c,Math.min(100,this.l+es*(arguments.length?t:1)))},ts.darker=function(t){return new ht(this.h,this.c,Math.max(0,this.l-es*(arguments.length?t:1)))},ts.rgb=function(){return ft(this.h,this.c,this.l).rgb()},ua.lab=dt;var es=18,rs=.95047,ns=1,is=1.08883,os=dt.prototype=new lt;os.brighter=function(t){return new dt(Math.min(100,this.l+es*(arguments.length?t:1)),this.a,this.b)},os.darker=function(t){return new dt(Math.max(0,this.l-es*(arguments.length?t:1)),this.a,this.b)},os.rgb=function(){return pt(this.l,this.a,this.b)},ua.rgb=bt;var as=bt.prototype=new lt;as.brighter=function(t){t=Math.pow(.7,arguments.length?t:1);var e=this.r,r=this.g,n=this.b,i=30;return e||r||n?(e&&i>e&&(e=i),r&&i>r&&(r=i),n&&i>n&&(n=i),new bt(Math.min(255,e/t),Math.min(255,r/t),Math.min(255,n/t))):new bt(i,i,i)},as.darker=function(t){return t=Math.pow(.7,arguments.length?t:1),new bt(t*this.r,t*this.g,t*this.b)},as.hsl=function(){return kt(this.r,this.g,this.b)},as.toString=function(){return\\\"#\\\"+wt(this.r)+wt(this.g)+wt(this.b)};var ss=ua.map({aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074});ss.forEach(function(t,e){ss.set(t,xt(e))}),ua.functor=Lt,ua.xhr=St(x),ua.dsv=function(t,e){function r(t,r,o){arguments.length<3&&(o=r,r=null);var a=Ct(t,e,null==r?n:i(r),o);return a.row=function(t){return arguments.length?a.response(null==(r=t)?n:i(t)):r},a}function n(t){return r.parse(t.responseText)}function i(t){return function(e){return r.parse(e.responseText,t)}}function o(e){return e.map(a).join(t)}function a(t){return s.test(t)?'\\\"'+t.replace(/\\\\\\\"/g,'\\\"\\\"')+'\\\"':t}var s=new RegExp('[\\\"'+t+\\\"\\\\n]\\\"),l=t.charCodeAt(0);return r.parse=function(t,e){var n;return r.parseRows(t,function(t,r){if(n)return n(t,r-1);var i=new Function(\\\"d\\\",\\\"return {\\\"+t.map(function(t,e){return JSON.stringify(t)+\\\": d[\\\"+e+\\\"]\\\"}).join(\\\",\\\")+\\\"}\\\");n=e?function(t,r){return e(i(t),r)}:i})},r.parseRows=function(t,e){function r(){if(u>=c)return a;if(i)return i=!1,o;var e=u;if(34===t.charCodeAt(e)){for(var r=e;r++<c;)if(34===t.charCodeAt(r)){if(34!==t.charCodeAt(r+1))break;++r}u=r+2;var n=t.charCodeAt(r+1);return 13===n?(i=!0,10===t.charCodeAt(r+2)&&++u):10===n&&(i=!0),t.slice(e+1,r).replace(/\\\"\\\"/g,'\\\"')}for(;c>u;){var n=t.charCodeAt(u++),s=1;if(10===n)i=!0;else if(13===n)i=!0,10===t.charCodeAt(u)&&(++u,++s);else if(n!==l)continue;return t.slice(e,u-s)}return t.slice(e)}for(var n,i,o={},a={},s=[],c=t.length,u=0,h=0;(n=r())!==a;){for(var f=[];n!==o&&n!==a;)f.push(n),n=r();e&&null==(f=e(f,h++))||s.push(f)}return s},r.format=function(e){if(Array.isArray(e[0]))return r.formatRows(e);var n=new b,i=[];return e.forEach(function(t){for(var e in t)n.has(e)||i.push(n.add(e))}),[i.map(a).join(t)].concat(e.map(function(e){return i.map(function(t){return a(e[t])}).join(t)})).join(\\\"\\\\n\\\")},r.formatRows=function(t){return t.map(o).join(\\\"\\\\n\\\")},r},ua.csv=ua.dsv(\\\",\\\",\\\"text/csv\\\"),ua.tsv=ua.dsv(\\\"\\t\\\",\\\"text/tab-separated-values\\\");var ls,cs,us,hs,fs=this[w(this,\\\"requestAnimationFrame\\\")]||function(t){setTimeout(t,17)};ua.timer=function(){Rt.apply(this,arguments)},ua.timer.flush=function(){It(),Nt()},ua.round=function(t,e){return e?Math.round(t*(e=Math.pow(10,e)))/e:Math.round(t)};var ds=[\\\"y\\\",\\\"z\\\",\\\"a\\\",\\\"f\\\",\\\"p\\\",\\\"n\\\",\\\"\\\\xb5\\\",\\\"m\\\",\\\"\\\",\\\"k\\\",\\\"M\\\",\\\"G\\\",\\\"T\\\",\\\"P\\\",\\\"E\\\",\\\"Z\\\",\\\"Y\\\"].map(Ft);ua.formatPrefix=function(t,e){var r=0;return(t=+t)&&(0>t&&(t*=-1),e&&(t=ua.round(t,jt(t,e))),r=1+Math.floor(1e-12+Math.log(t)/Math.LN10),r=Math.max(-24,Math.min(24,3*Math.floor((r-1)/3)))),ds[8+r/3]};var ps=/(?:([^{])?([<>=^]))?([+\\\\- ])?([$#])?(0)?(\\\\d+)?(,)?(\\\\.-?\\\\d+)?([a-z%])?/i,gs=ua.map({b:function(t){return t.toString(2)},c:function(t){return String.fromCharCode(t)},o:function(t){return t.toString(8)},x:function(t){return t.toString(16)},X:function(t){return t.toString(16).toUpperCase()},g:function(t,e){return t.toPrecision(e)},e:function(t,e){return t.toExponential(e)},f:function(t,e){return t.toFixed(e)},r:function(t,e){return(t=ua.round(t,jt(t,e))).toFixed(Math.max(0,Math.min(20,jt(t*(1+1e-15),e))))}}),vs=ua.time={},ms=Date;Ut.prototype={getDate:function(){return this._.getUTCDate()},getDay:function(){return this._.getUTCDay()},getFullYear:function(){return this._.getUTCFullYear()},getHours:function(){return this._.getUTCHours()},getMilliseconds:function(){return this._.getUTCMilliseconds()},getMinutes:function(){return this._.getUTCMinutes()},getMonth:function(){return this._.getUTCMonth()},getSeconds:function(){return this._.getUTCSeconds()},getTime:function(){return this._.getTime()},getTimezoneOffset:function(){return 0},valueOf:function(){return this._.valueOf()},setDate:function(){ys.setUTCDate.apply(this._,arguments)},setDay:function(){ys.setUTCDay.apply(this._,arguments)},setFullYear:function(){ys.setUTCFullYear.apply(this._,arguments)},setHours:function(){ys.setUTCHours.apply(this._,arguments)},setMilliseconds:function(){ys.setUTCMilliseconds.apply(this._,arguments)},setMinutes:function(){ys.setUTCMinutes.apply(this._,arguments)},setMonth:function(){ys.setUTCMonth.apply(this._,arguments)},setSeconds:function(){ys.setUTCSeconds.apply(this._,arguments)},setTime:function(){ys.setTime.apply(this._,arguments)}};var ys=Date.prototype;vs.year=Vt(function(t){return t=vs.day(t),t.setMonth(0,1),t},function(t,e){t.setFullYear(t.getFullYear()+e)},function(t){return t.getFullYear()}),vs.years=vs.year.range,vs.years.utc=vs.year.utc.range,vs.day=Vt(function(t){var e=new ms(2e3,0);return e.setFullYear(t.getFullYear(),t.getMonth(),t.getDate()),e},function(t,e){t.setDate(t.getDate()+e)},function(t){return t.getDate()-1}),vs.days=vs.day.range,vs.days.utc=vs.day.utc.range,vs.dayOfYear=function(t){var e=vs.year(t);return Math.floor((t-e-6e4*(t.getTimezoneOffset()-e.getTimezoneOffset()))/864e5)},[\\\"sunday\\\",\\\"monday\\\",\\\"tuesday\\\",\\\"wednesday\\\",\\\"thursday\\\",\\\"friday\\\",\\\"saturday\\\"].forEach(function(t,e){e=7-e;var r=vs[t]=Vt(function(t){return(t=vs.day(t)).setDate(t.getDate()-(t.getDay()+e)%7),t},function(t,e){t.setDate(t.getDate()+7*Math.floor(e))},function(t){var r=vs.year(t).getDay();return Math.floor((vs.dayOfYear(t)+(r+e)%7)/7)-(r!==e)});vs[t+\\\"s\\\"]=r.range,vs[t+\\\"s\\\"].utc=r.utc.range,vs[t+\\\"OfYear\\\"]=function(t){var r=vs.year(t).getDay();return Math.floor((vs.dayOfYear(t)+(r+e)%7)/7)}}),vs.week=vs.sunday,vs.weeks=vs.sunday.range,vs.weeks.utc=vs.sunday.utc.range,vs.weekOfYear=vs.sundayOfYear;var bs={\\\"-\\\":\\\"\\\",_:\\\" \\\",0:\\\"0\\\"},xs=/^\\\\s*\\\\d+/,_s=/^%/;ua.locale=function(t){return{numberFormat:Dt(t),timeFormat:Ht(t)}};var ws=ua.locale({decimal:\\\".\\\",thousands:\\\",\\\",grouping:[3],currency:[\\\"$\\\",\\\"\\\"],dateTime:\\\"%a %b %e %X %Y\\\",date:\\\"%m/%d/%Y\\\",time:\\\"%H:%M:%S\\\",periods:[\\\"AM\\\",\\\"PM\\\"],days:[\\\"Sunday\\\",\\\"Monday\\\",\\\"Tuesday\\\",\\\"Wednesday\\\",\\\"Thursday\\\",\\\"Friday\\\",\\\"Saturday\\\"],shortDays:[\\\"Sun\\\",\\\"Mon\\\",\\\"Tue\\\",\\\"Wed\\\",\\\"Thu\\\",\\\"Fri\\\",\\\"Sat\\\"],months:[\\\"January\\\",\\\"February\\\",\\\"March\\\",\\\"April\\\",\\\"May\\\",\\\"June\\\",\\\"July\\\",\\\"August\\\",\\\"September\\\",\\\"October\\\",\\\"November\\\",\\\"December\\\"],shortMonths:[\\\"Jan\\\",\\\"Feb\\\",\\\"Mar\\\",\\\"Apr\\\",\\\"May\\\",\\\"Jun\\\",\\\"Jul\\\",\\\"Aug\\\",\\\"Sep\\\",\\\"Oct\\\",\\\"Nov\\\",\\\"Dec\\\"]});ua.format=ws.numberFormat,ua.geo={},he.prototype={s:0,t:0,add:function(t){fe(t,this.t,As),fe(As.s,this.s,this),this.s?this.t+=As.t:this.s=As.t},reset:function(){this.s=this.t=0},valueOf:function(){return this.s}};var As=new he;ua.geo.stream=function(t,e){t&&ks.hasOwnProperty(t.type)?ks[t.type](t,e):de(t,e)};var ks={Feature:function(t,e){de(t.geometry,e)},FeatureCollection:function(t,e){for(var r=t.features,n=-1,i=r.length;++n<i;)de(r[n].geometry,e)}},Ms={Sphere:function(t,e){e.sphere()},Point:function(t,e){t=t.coordinates,e.point(t[0],t[1],t[2])},MultiPoint:function(t,e){for(var r=t.coordinates,n=-1,i=r.length;++n<i;)t=r[n],e.point(t[0],t[1],t[2])},LineString:function(t,e){pe(t.coordinates,e,0)},MultiLineString:function(t,e){for(var r=t.coordinates,n=-1,i=r.length;++n<i;)pe(r[n],e,0)},Polygon:function(t,e){ge(t.coordinates,e)},MultiPolygon:function(t,e){for(var r=t.coordinates,n=-1,i=r.length;++n<i;)ge(r[n],e)},GeometryCollection:function(t,e){for(var r=t.geometries,n=-1,i=r.length;++n<i;)de(r[n],e)}};ua.geo.area=function(t){return Ts=0,ua.geo.stream(t,Ls),Ts};var Ts,Es=new he,Ls={sphere:function(){Ts+=4*Ua},point:A,lineStart:A,lineEnd:A,polygonStart:function(){Es.reset(),Ls.lineStart=ve},polygonEnd:function(){var t=2*Es;Ts+=0>t?4*Ua+t:t,Ls.lineStart=Ls.lineEnd=Ls.point=A}};ua.geo.bounds=function(){function t(t,e){b.push(x=[u=t,f=t]),h>e&&(h=e),e>d&&(d=e)}function e(e,r){var n=me([e*Ga,r*Ga]);if(m){var i=be(m,n),o=[i[1],-i[0],0],a=be(o,i);we(a),a=Ae(a);var l=e-p,c=l>0?1:-1,g=a[0]*Ya*c,v=wa(l)>180;if(v^(g>c*p&&c*e>g)){var y=a[1]*Ya;y>d&&(d=y)}else if(g=(g+360)%360-180,v^(g>c*p&&c*e>g)){var y=-a[1]*Ya;h>y&&(h=y)}else h>r&&(h=r),r>d&&(d=r);v?p>e?s(u,e)>s(u,f)&&(f=e):s(e,f)>s(u,f)&&(u=e):f>=u?(u>e&&(u=e),e>f&&(f=e)):e>p?s(u,e)>s(u,f)&&(f=e):s(e,f)>s(u,f)&&(u=e)}else t(e,r);m=n,p=e}function r(){_.point=e}function n(){x[0]=u,x[1]=f,_.point=t,m=null}function i(t,r){if(m){var n=t-p;y+=wa(n)>180?n+(n>0?360:-360):n}else g=t,v=r;Ls.point(t,r),e(t,r)}function o(){Ls.lineStart()}function a(){i(g,v),Ls.lineEnd(),wa(y)>Da&&(u=-(f=180)),x[0]=u,x[1]=f,m=null}function s(t,e){return(e-=t)<0?e+360:e}function l(t,e){return t[0]-e[0]}function c(t,e){return e[0]<=e[1]?e[0]<=t&&t<=e[1]:t<e[0]||e[1]<t}var u,h,f,d,p,g,v,m,y,b,x,_={point:t,lineStart:r,lineEnd:n,polygonStart:function(){_.point=i,_.lineStart=o,_.lineEnd=a,y=0,Ls.polygonStart()},polygonEnd:function(){Ls.polygonEnd(),_.point=t,_.lineStart=r,_.lineEnd=n,0>Es?(u=-(f=180),h=-(d=90)):y>Da?d=90:-Da>y&&(h=-90),x[0]=u,x[1]=f}};return function(t){d=f=-(u=h=1/0),b=[],ua.geo.stream(t,_);var e=b.length;if(e){b.sort(l);for(var r,n=1,i=b[0],o=[i];e>n;++n)r=b[n],c(r[0],i)||c(r[1],i)?(s(i[0],r[1])>s(i[0],i[1])&&(i[1]=r[1]),s(r[0],i[1])>s(i[0],i[1])&&(i[0]=r[0])):o.push(i=r);for(var a,r,p=-(1/0),e=o.length-1,n=0,i=o[e];e>=n;i=r,++n)r=o[n],(a=s(i[1],r[0]))>p&&(p=a,u=r[0],f=i[1])}return b=x=null,u===1/0||h===1/0?[[NaN,NaN],[NaN,NaN]]:[[u,h],[f,d]]}}(),ua.geo.centroid=function(t){Ss=Cs=Ps=zs=Rs=Os=Is=Ns=js=Fs=Ds=0,ua.geo.stream(t,Bs);var e=js,r=Fs,n=Ds,i=e*e+r*r+n*n;return Ba>i&&(e=Os,r=Is,n=Ns,Da>Cs&&(e=Ps,r=zs,n=Rs),i=e*e+r*r+n*n,Ba>i)?[NaN,NaN]:[Math.atan2(r,e)*Ya,nt(n/Math.sqrt(i))*Ya]};var Ss,Cs,Ps,zs,Rs,Os,Is,Ns,js,Fs,Ds,Bs={sphere:A,point:Me,lineStart:Ee,lineEnd:Le,polygonStart:function(){Bs.lineStart=Se},polygonEnd:function(){Bs.lineStart=Ee}},Us=Ie(Pe,De,Ue,[-Ua,-Ua/2]),Vs=1e9;ua.geo.clipExtent=function(){var t,e,r,n,i,o,a={stream:function(t){return i&&(i.valid=!1),i=o(t),i.valid=!0,i},extent:function(s){return arguments.length?(o=Ge(t=+s[0][0],e=+s[0][1],r=+s[1][0],n=+s[1][1]),i&&(i.valid=!1,i=null),a):[[t,e],[r,n]]}};return a.extent([[0,0],[960,500]])},(ua.geo.conicEqualArea=function(){return Ye(Xe)}).raw=Xe,ua.geo.albers=function(){return ua.geo.conicEqualArea().rotate([96,0]).center([-.6,38.7]).parallels([29.5,45.5]).scale(1070)},ua.geo.albersUsa=function(){function t(t){var o=t[0],a=t[1];return e=null,r(o,a),e||(n(o,a),e)||i(o,a),e}var e,r,n,i,o=ua.geo.albers(),a=ua.geo.conicEqualArea().rotate([154,0]).center([-2,58.5]).parallels([55,65]),s=ua.geo.conicEqualArea().rotate([157,0]).center([-3,19.9]).parallels([8,18]),l={point:function(t,r){e=[t,r]}};return t.invert=function(t){var e=o.scale(),r=o.translate(),n=(t[0]-r[0])/e,i=(t[1]-r[1])/e;return(i>=.12&&.234>i&&n>=-.425&&-.214>n?a:i>=.166&&.234>i&&n>=-.214&&-.115>n?s:o).invert(t)},t.stream=function(t){var e=o.stream(t),r=a.stream(t),n=s.stream(t);return{point:function(t,i){e.point(t,i),r.point(t,i),n.point(t,i)},sphere:function(){e.sphere(),r.sphere(),n.sphere()},lineStart:function(){e.lineStart(),r.lineStart(),n.lineStart()},lineEnd:function(){e.lineEnd(),r.lineEnd(),n.lineEnd()},polygonStart:function(){e.polygonStart(),r.polygonStart(),n.polygonStart()},polygonEnd:function(){e.polygonEnd(),r.polygonEnd(),n.polygonEnd()}}},t.precision=function(e){return arguments.length?(o.precision(e),a.precision(e),s.precision(e),t):o.precision()},t.scale=function(e){return arguments.length?(o.scale(e),a.scale(.35*e),s.scale(e),t.translate(o.translate())):o.scale()},t.translate=function(e){if(!arguments.length)return o.translate();var c=o.scale(),u=+e[0],h=+e[1];return r=o.translate(e).clipExtent([[u-.455*c,h-.238*c],[u+.455*c,h+.238*c]]).stream(l).point,\\n\",\n       \"n=a.translate([u-.307*c,h+.201*c]).clipExtent([[u-.425*c+Da,h+.12*c+Da],[u-.214*c-Da,h+.234*c-Da]]).stream(l).point,i=s.translate([u-.205*c,h+.212*c]).clipExtent([[u-.214*c+Da,h+.166*c+Da],[u-.115*c-Da,h+.234*c-Da]]).stream(l).point,t},t.scale(1070)};var qs,Hs,Gs,Ys,Xs,Ws,Zs={point:A,lineStart:A,lineEnd:A,polygonStart:function(){Hs=0,Zs.lineStart=We},polygonEnd:function(){Zs.lineStart=Zs.lineEnd=Zs.point=A,qs+=wa(Hs/2)}},$s={point:Ze,lineStart:A,lineEnd:A,polygonStart:A,polygonEnd:A},Ks={point:Qe,lineStart:Je,lineEnd:tr,polygonStart:function(){Ks.lineStart=er},polygonEnd:function(){Ks.point=Qe,Ks.lineStart=Je,Ks.lineEnd=tr}};ua.geo.path=function(){function t(t){return t&&(\\\"function\\\"==typeof s&&o.pointRadius(+s.apply(this,arguments)),a&&a.valid||(a=i(o)),ua.geo.stream(t,a)),o.result()}function e(){return a=null,t}var r,n,i,o,a,s=4.5;return t.area=function(t){return qs=0,ua.geo.stream(t,i(Zs)),qs},t.centroid=function(t){return Ps=zs=Rs=Os=Is=Ns=js=Fs=Ds=0,ua.geo.stream(t,i(Ks)),Ds?[js/Ds,Fs/Ds]:Ns?[Os/Ns,Is/Ns]:Rs?[Ps/Rs,zs/Rs]:[NaN,NaN]},t.bounds=function(t){return Xs=Ws=-(Gs=Ys=1/0),ua.geo.stream(t,i($s)),[[Gs,Ys],[Xs,Ws]]},t.projection=function(t){return arguments.length?(i=(r=t)?t.stream||ir(t):x,e()):r},t.context=function(t){return arguments.length?(o=null==(n=t)?new $e:new rr(t),\\\"function\\\"!=typeof s&&o.pointRadius(s),e()):n},t.pointRadius=function(e){return arguments.length?(s=\\\"function\\\"==typeof e?e:(o.pointRadius(+e),+e),t):s},t.projection(ua.geo.albersUsa()).context(null)},ua.geo.transform=function(t){return{stream:function(e){var r=new or(e);for(var n in t)r[n]=t[n];return r}}},or.prototype={point:function(t,e){this.stream.point(t,e)},sphere:function(){this.stream.sphere()},lineStart:function(){this.stream.lineStart()},lineEnd:function(){this.stream.lineEnd()},polygonStart:function(){this.stream.polygonStart()},polygonEnd:function(){this.stream.polygonEnd()}},ua.geo.projection=sr,ua.geo.projectionMutator=lr,(ua.geo.equirectangular=function(){return sr(ur)}).raw=ur.invert=ur,ua.geo.rotation=function(t){function e(e){return e=t(e[0]*Ga,e[1]*Ga),e[0]*=Ya,e[1]*=Ya,e}return t=fr(t[0]%360*Ga,t[1]*Ga,t.length>2?t[2]*Ga:0),e.invert=function(e){return e=t.invert(e[0]*Ga,e[1]*Ga),e[0]*=Ya,e[1]*=Ya,e},e},hr.invert=ur,ua.geo.circle=function(){function t(){var t=\\\"function\\\"==typeof n?n.apply(this,arguments):n,e=fr(-t[0]*Ga,-t[1]*Ga,0).invert,i=[];return r(null,null,1,{point:function(t,r){i.push(t=e(t,r)),t[0]*=Ya,t[1]*=Ya}}),{type:\\\"Polygon\\\",coordinates:[i]}}var e,r,n=[0,0],i=6;return t.origin=function(e){return arguments.length?(n=e,t):n},t.angle=function(n){return arguments.length?(r=vr((e=+n)*Ga,i*Ga),t):e},t.precision=function(n){return arguments.length?(r=vr(e*Ga,(i=+n)*Ga),t):i},t.angle(90)},ua.geo.distance=function(t,e){var r,n=(e[0]-t[0])*Ga,i=t[1]*Ga,o=e[1]*Ga,a=Math.sin(n),s=Math.cos(n),l=Math.sin(i),c=Math.cos(i),u=Math.sin(o),h=Math.cos(o);return Math.atan2(Math.sqrt((r=h*a)*r+(r=c*u-l*h*s)*r),l*u+c*h*s)},ua.geo.graticule=function(){function t(){return{type:\\\"MultiLineString\\\",coordinates:e()}}function e(){return ua.range(Math.ceil(o/v)*v,i,v).map(f).concat(ua.range(Math.ceil(c/m)*m,l,m).map(d)).concat(ua.range(Math.ceil(n/p)*p,r,p).filter(function(t){return wa(t%v)>Da}).map(u)).concat(ua.range(Math.ceil(s/g)*g,a,g).filter(function(t){return wa(t%m)>Da}).map(h))}var r,n,i,o,a,s,l,c,u,h,f,d,p=10,g=p,v=90,m=360,y=2.5;return t.lines=function(){return e().map(function(t){return{type:\\\"LineString\\\",coordinates:t}})},t.outline=function(){return{type:\\\"Polygon\\\",coordinates:[f(o).concat(d(l).slice(1),f(i).reverse().slice(1),d(c).reverse().slice(1))]}},t.extent=function(e){return arguments.length?t.majorExtent(e).minorExtent(e):t.minorExtent()},t.majorExtent=function(e){return arguments.length?(o=+e[0][0],i=+e[1][0],c=+e[0][1],l=+e[1][1],o>i&&(e=o,o=i,i=e),c>l&&(e=c,c=l,l=e),t.precision(y)):[[o,c],[i,l]]},t.minorExtent=function(e){return arguments.length?(n=+e[0][0],r=+e[1][0],s=+e[0][1],a=+e[1][1],n>r&&(e=n,n=r,r=e),s>a&&(e=s,s=a,a=e),t.precision(y)):[[n,s],[r,a]]},t.step=function(e){return arguments.length?t.majorStep(e).minorStep(e):t.minorStep()},t.majorStep=function(e){return arguments.length?(v=+e[0],m=+e[1],t):[v,m]},t.minorStep=function(e){return arguments.length?(p=+e[0],g=+e[1],t):[p,g]},t.precision=function(e){return arguments.length?(y=+e,u=yr(s,a,90),h=br(n,r,y),f=yr(c,l,90),d=br(o,i,y),t):y},t.majorExtent([[-180,-90+Da],[180,90-Da]]).minorExtent([[-180,-80-Da],[180,80+Da]])},ua.geo.greatArc=function(){function t(){return{type:\\\"LineString\\\",coordinates:[e||n.apply(this,arguments),r||i.apply(this,arguments)]}}var e,r,n=xr,i=_r;return t.distance=function(){return ua.geo.distance(e||n.apply(this,arguments),r||i.apply(this,arguments))},t.source=function(r){return arguments.length?(n=r,e=\\\"function\\\"==typeof r?null:r,t):n},t.target=function(e){return arguments.length?(i=e,r=\\\"function\\\"==typeof e?null:e,t):i},t.precision=function(){return arguments.length?t:0},t},ua.geo.interpolate=function(t,e){return wr(t[0]*Ga,t[1]*Ga,e[0]*Ga,e[1]*Ga)},ua.geo.length=function(t){return Qs=0,ua.geo.stream(t,Js),Qs};var Qs,Js={sphere:A,point:A,lineStart:Ar,lineEnd:A,polygonStart:A,polygonEnd:A},tl=kr(function(t){return Math.sqrt(2/(1+t))},function(t){return 2*Math.asin(t/2)});(ua.geo.azimuthalEqualArea=function(){return sr(tl)}).raw=tl;var el=kr(function(t){var e=Math.acos(t);return e&&e/Math.sin(e)},x);(ua.geo.azimuthalEquidistant=function(){return sr(el)}).raw=el,(ua.geo.conicConformal=function(){return Ye(Mr)}).raw=Mr,(ua.geo.conicEquidistant=function(){return Ye(Tr)}).raw=Tr;var rl=kr(function(t){return 1/t},Math.atan);(ua.geo.gnomonic=function(){return sr(rl)}).raw=rl,Er.invert=function(t,e){return[t,2*Math.atan(Math.exp(e))-Ha]},(ua.geo.mercator=function(){return Lr(Er)}).raw=Er;var nl=kr(function(){return 1},Math.asin);(ua.geo.orthographic=function(){return sr(nl)}).raw=nl;var il=kr(function(t){return 1/(1+t)},function(t){return 2*Math.atan(t)});(ua.geo.stereographic=function(){return sr(il)}).raw=il,Sr.invert=function(t,e){return[-e,2*Math.atan(Math.exp(t))-Ha]},(ua.geo.transverseMercator=function(){var t=Lr(Sr),e=t.center,r=t.rotate;return t.center=function(t){return t?e([-t[1],t[0]]):(t=e(),[t[1],-t[0]])},t.rotate=function(t){return t?r([t[0],t[1],t.length>2?t[2]+90:90]):(t=r(),[t[0],t[1],t[2]-90])},r([0,0,90])}).raw=Sr,ua.geom={},ua.geom.hull=function(t){function e(t){if(t.length<3)return[];var e,i=Lt(r),o=Lt(n),a=t.length,s=[],l=[];for(e=0;a>e;e++)s.push([+i.call(this,t[e],e),+o.call(this,t[e],e),e]);for(s.sort(Rr),e=0;a>e;e++)l.push([s[e][0],-s[e][1]]);var c=zr(s),u=zr(l),h=u[0]===c[0],f=u[u.length-1]===c[c.length-1],d=[];for(e=c.length-1;e>=0;--e)d.push(t[s[c[e]][2]]);for(e=+h;e<u.length-f;++e)d.push(t[s[u[e]][2]]);return d}var r=Cr,n=Pr;return arguments.length?e(t):(e.x=function(t){return arguments.length?(r=t,e):r},e.y=function(t){return arguments.length?(n=t,e):n},e)},ua.geom.polygon=function(t){return Ea(t,ol),t};var ol=ua.geom.polygon.prototype=[];ol.area=function(){for(var t,e=-1,r=this.length,n=this[r-1],i=0;++e<r;)t=n,n=this[e],i+=t[1]*n[0]-t[0]*n[1];return.5*i},ol.centroid=function(t){var e,r,n=-1,i=this.length,o=0,a=0,s=this[i-1];for(arguments.length||(t=-1/(6*this.area()));++n<i;)e=s,s=this[n],r=e[0]*s[1]-s[0]*e[1],o+=(e[0]+s[0])*r,a+=(e[1]+s[1])*r;return[o*t,a*t]},ol.clip=function(t){for(var e,r,n,i,o,a,s=Nr(t),l=-1,c=this.length-Nr(this),u=this[c-1];++l<c;){for(e=t.slice(),t.length=0,i=this[l],o=e[(n=e.length-s)-1],r=-1;++r<n;)a=e[r],Or(a,u,i)?(Or(o,u,i)||t.push(Ir(o,a,u,i)),t.push(a)):Or(o,u,i)&&t.push(Ir(o,a,u,i)),o=a;s&&t.push(t[0]),u=i}return t};var al,sl,ll,cl,ul,hl=[],fl=[];Hr.prototype.prepare=function(){for(var t,e=this.edges,r=e.length;r--;)t=e[r].edge,t.b&&t.a||e.splice(r,1);return e.sort(Yr),e.length},rn.prototype={start:function(){return this.edge.l===this.site?this.edge.a:this.edge.b},end:function(){return this.edge.l===this.site?this.edge.b:this.edge.a}},nn.prototype={insert:function(t,e){var r,n,i;if(t){if(e.P=t,e.N=t.N,t.N&&(t.N.P=e),t.N=e,t.R){for(t=t.R;t.L;)t=t.L;t.L=e}else t.R=e;r=t}else this._?(t=ln(this._),e.P=null,e.N=t,t.P=t.L=e,r=t):(e.P=e.N=null,this._=e,r=null);for(e.L=e.R=null,e.U=r,e.C=!0,t=e;r&&r.C;)n=r.U,r===n.L?(i=n.R,i&&i.C?(r.C=i.C=!1,n.C=!0,t=n):(t===r.R&&(an(this,r),t=r,r=t.U),r.C=!1,n.C=!0,sn(this,n))):(i=n.L,i&&i.C?(r.C=i.C=!1,n.C=!0,t=n):(t===r.L&&(sn(this,r),t=r,r=t.U),r.C=!1,n.C=!0,an(this,n))),r=t.U;this._.C=!1},remove:function(t){t.N&&(t.N.P=t.P),t.P&&(t.P.N=t.N),t.N=t.P=null;var e,r,n,i=t.U,o=t.L,a=t.R;if(r=o?a?ln(a):o:a,i?i.L===t?i.L=r:i.R=r:this._=r,o&&a?(n=r.C,r.C=t.C,r.L=o,o.U=r,r!==a?(i=r.U,r.U=t.U,t=r.R,i.L=t,r.R=a,a.U=r):(r.U=i,i=r,t=r.R)):(n=t.C,t=r),t&&(t.U=i),!n){if(t&&t.C)return void(t.C=!1);do{if(t===this._)break;if(t===i.L){if(e=i.R,e.C&&(e.C=!1,i.C=!0,an(this,i),e=i.R),e.L&&e.L.C||e.R&&e.R.C){e.R&&e.R.C||(e.L.C=!1,e.C=!0,sn(this,e),e=i.R),e.C=i.C,i.C=e.R.C=!1,an(this,i),t=this._;break}}else if(e=i.L,e.C&&(e.C=!1,i.C=!0,sn(this,i),e=i.L),e.L&&e.L.C||e.R&&e.R.C){e.L&&e.L.C||(e.R.C=!1,e.C=!0,an(this,e),e=i.L),e.C=i.C,i.C=e.L.C=!1,sn(this,i),t=this._;break}e.C=!0,t=i,i=i.U}while(!t.C);t&&(t.C=!1)}}},ua.geom.voronoi=function(t){function e(t){var e=new Array(t.length),n=s[0][0],i=s[0][1],o=s[1][0],a=s[1][1];return cn(r(t),s).cells.forEach(function(r,s){var l=r.edges,c=r.site,u=e[s]=l.length?l.map(function(t){var e=t.start();return[e.x,e.y]}):c.x>=n&&c.x<=o&&c.y>=i&&c.y<=a?[[n,a],[o,a],[o,i],[n,i]]:[];u.point=t[s]}),e}function r(t){return t.map(function(t,e){return{x:Math.round(o(t,e)/Da)*Da,y:Math.round(a(t,e)/Da)*Da,i:e}})}var n=Cr,i=Pr,o=n,a=i,s=dl;return t?e(t):(e.links=function(t){return cn(r(t)).edges.filter(function(t){return t.l&&t.r}).map(function(e){return{source:t[e.l.i],target:t[e.r.i]}})},e.triangles=function(t){var e=[];return cn(r(t)).cells.forEach(function(r,n){for(var i,o,a=r.site,s=r.edges.sort(Yr),l=-1,c=s.length,u=s[c-1].edge,h=u.l===a?u.r:u.l;++l<c;)i=u,o=h,u=s[l].edge,h=u.l===a?u.r:u.l,n<o.i&&n<h.i&&hn(a,o,h)<0&&e.push([t[n],t[o.i],t[h.i]])}),e},e.x=function(t){return arguments.length?(o=Lt(n=t),e):n},e.y=function(t){return arguments.length?(a=Lt(i=t),e):i},e.clipExtent=function(t){return arguments.length?(s=null==t?dl:t,e):s===dl?null:s},e.size=function(t){return arguments.length?e.clipExtent(t&&[[0,0],t]):s===dl?null:s&&s[1]},e)};var dl=[[-1e6,-1e6],[1e6,1e6]];ua.geom.delaunay=function(t){return ua.geom.voronoi().triangles(t)},ua.geom.quadtree=function(t,e,r,n,i){function o(t){function o(t,e,r,n,i,o,a,s){if(!isNaN(r)&&!isNaN(n))if(t.leaf){var l=t.x,u=t.y;if(null!=l)if(wa(l-r)+wa(u-n)<.01)c(t,e,r,n,i,o,a,s);else{var h=t.point;t.x=t.y=t.point=null,c(t,h,l,u,i,o,a,s),c(t,e,r,n,i,o,a,s)}else t.x=r,t.y=n,t.point=e}else c(t,e,r,n,i,o,a,s)}function c(t,e,r,n,i,a,s,l){var c=.5*(i+s),u=.5*(a+l),h=r>=c,f=n>=u,d=f<<1|h;t.leaf=!1,t=t.nodes[d]||(t.nodes[d]=pn()),h?i=c:s=c,f?a=u:l=u,o(t,e,r,n,i,a,s,l)}var u,h,f,d,p,g,v,m,y,b=Lt(s),x=Lt(l);if(null!=e)g=e,v=r,m=n,y=i;else if(m=y=-(g=v=1/0),h=[],f=[],p=t.length,a)for(d=0;p>d;++d)u=t[d],u.x<g&&(g=u.x),u.y<v&&(v=u.y),u.x>m&&(m=u.x),u.y>y&&(y=u.y),h.push(u.x),f.push(u.y);else for(d=0;p>d;++d){var _=+b(u=t[d],d),w=+x(u,d);g>_&&(g=_),v>w&&(v=w),_>m&&(m=_),w>y&&(y=w),h.push(_),f.push(w)}var A=m-g,k=y-v;A>k?y=v+A:m=g+k;var M=pn();if(M.add=function(t){o(M,t,+b(t,++d),+x(t,d),g,v,m,y)},M.visit=function(t){gn(t,M,g,v,m,y)},M.find=function(t){return vn(M,t[0],t[1],g,v,m,y)},d=-1,null==e){for(;++d<p;)o(M,t[d],h[d],f[d],g,v,m,y);--d}else t.forEach(M.add);return h=f=t=u=null,M}var a,s=Cr,l=Pr;return(a=arguments.length)?(s=fn,l=dn,3===a&&(i=r,n=e,r=e=0),o(t)):(o.x=function(t){return arguments.length?(s=t,o):s},o.y=function(t){return arguments.length?(l=t,o):l},o.extent=function(t){return arguments.length?(null==t?e=r=n=i=null:(e=+t[0][0],r=+t[0][1],n=+t[1][0],i=+t[1][1]),o):null==e?null:[[e,r],[n,i]]},o.size=function(t){return arguments.length?(null==t?e=r=n=i=null:(e=r=0,n=+t[0],i=+t[1]),o):null==e?null:[n-e,i-r]},o)},ua.interpolateRgb=mn,ua.interpolateObject=yn,ua.interpolateNumber=bn,ua.interpolateString=xn;var pl=/[-+]?(?:\\\\d+\\\\.?\\\\d*|\\\\.?\\\\d+)(?:[eE][-+]?\\\\d+)?/g,gl=new RegExp(pl.source,\\\"g\\\");ua.interpolate=_n,ua.interpolators=[function(t,e){var r=typeof e;return(\\\"string\\\"===r?ss.has(e.toLowerCase())||/^(#|rgb\\\\(|hsl\\\\()/i.test(e)?mn:xn:e instanceof lt?mn:Array.isArray(e)?wn:\\\"object\\\"===r&&isNaN(e)?yn:bn)(t,e)}],ua.interpolateArray=wn;var vl=function(){return x},ml=ua.map({linear:vl,poly:Sn,quad:function(){return Tn},cubic:function(){return En},sin:function(){return Cn},exp:function(){return Pn},circle:function(){return zn},elastic:Rn,back:On,bounce:function(){return In}}),yl=ua.map({\\\"in\\\":x,out:kn,\\\"in-out\\\":Mn,\\\"out-in\\\":function(t){return Mn(kn(t))}});ua.ease=function(t){var e=t.indexOf(\\\"-\\\"),r=e>=0?t.slice(0,e):t,n=e>=0?t.slice(e+1):\\\"in\\\";return r=ml.get(r)||vl,n=yl.get(n)||x,An(n(r.apply(null,ha.call(arguments,1))))},ua.interpolateHcl=Nn,ua.interpolateHsl=jn,ua.interpolateLab=Fn,ua.interpolateRound=Dn,ua.transform=function(t){var e=da.createElementNS(ua.ns.prefix.svg,\\\"g\\\");return(ua.transform=function(t){if(null!=t){e.setAttribute(\\\"transform\\\",t);var r=e.transform.baseVal.consolidate()}return new Bn(r?r.matrix:bl)})(t)},Bn.prototype.toString=function(){return\\\"translate(\\\"+this.translate+\\\")rotate(\\\"+this.rotate+\\\")skewX(\\\"+this.skew+\\\")scale(\\\"+this.scale+\\\")\\\"};var bl={a:1,b:0,c:0,d:1,e:0,f:0};ua.interpolateTransform=Zn,ua.layout={},ua.layout.bundle=function(){return function(t){for(var e=[],r=-1,n=t.length;++r<n;)e.push(Qn(t[r]));return e}},ua.layout.chord=function(){function t(){var t,c,h,f,d,p={},g=[],v=ua.range(o),m=[];for(r=[],n=[],t=0,f=-1;++f<o;){for(c=0,d=-1;++d<o;)c+=i[f][d];g.push(c),m.push(ua.range(o)),t+=c}for(a&&v.sort(function(t,e){return a(g[t],g[e])}),s&&m.forEach(function(t,e){t.sort(function(t,r){return s(i[e][t],i[e][r])})}),t=(Va-u*o)/t,c=0,f=-1;++f<o;){for(h=c,d=-1;++d<o;){var y=v[f],b=m[y][d],x=i[y][b],_=c,w=c+=x*t;p[y+\\\"-\\\"+b]={index:y,subindex:b,startAngle:_,endAngle:w,value:x}}n[y]={index:y,startAngle:h,endAngle:c,value:g[y]},c+=u}for(f=-1;++f<o;)for(d=f-1;++d<o;){var A=p[f+\\\"-\\\"+d],k=p[d+\\\"-\\\"+f];(A.value||k.value)&&r.push(A.value<k.value?{source:k,target:A}:{source:A,target:k})}l&&e()}function e(){r.sort(function(t,e){return l((t.source.value+t.target.value)/2,(e.source.value+e.target.value)/2)})}var r,n,i,o,a,s,l,c={},u=0;return c.matrix=function(t){return arguments.length?(o=(i=t)&&i.length,r=n=null,c):i},c.padding=function(t){return arguments.length?(u=t,r=n=null,c):u},c.sortGroups=function(t){return arguments.length?(a=t,r=n=null,c):a},c.sortSubgroups=function(t){return arguments.length?(s=t,r=null,c):s},c.sortChords=function(t){return arguments.length?(l=t,r&&e(),c):l},c.chords=function(){return r||t(),r},c.groups=function(){return n||t(),n},c},ua.layout.force=function(){function t(t){return function(e,r,n,i){if(e.point!==t){var o=e.cx-t.x,a=e.cy-t.y,s=i-r,l=o*o+a*a;if(l>s*s/m){if(g>l){var c=e.charge/l;t.px-=o*c,t.py-=a*c}return!0}if(e.point&&l&&g>l){var c=e.pointCharge/l;t.px-=o*c,t.py-=a*c}}return!e.charge}}function e(t){t.px=ua.event.x,t.py=ua.event.y,l.resume()}var r,n,i,o,a,s,l={},c=ua.dispatch(\\\"start\\\",\\\"tick\\\",\\\"end\\\"),u=[1,1],h=.9,f=xl,d=_l,p=-30,g=wl,v=.1,m=.64,y=[],b=[];return l.tick=function(){if((i*=.99)<.005)return r=null,c.end({type:\\\"end\\\",alpha:i=0}),!0;var e,n,l,f,d,g,m,x,_,w=y.length,A=b.length;for(n=0;A>n;++n)l=b[n],f=l.source,d=l.target,x=d.x-f.x,_=d.y-f.y,(g=x*x+_*_)&&(g=i*a[n]*((g=Math.sqrt(g))-o[n])/g,x*=g,_*=g,d.x-=x*(m=f.weight+d.weight?f.weight/(f.weight+d.weight):.5),d.y-=_*m,f.x+=x*(m=1-m),f.y+=_*m);if((m=i*v)&&(x=u[0]/2,_=u[1]/2,n=-1,m))for(;++n<w;)l=y[n],l.x+=(x-l.x)*m,l.y+=(_-l.y)*m;if(p)for(oi(e=ua.geom.quadtree(y),i,s),n=-1;++n<w;)(l=y[n]).fixed||e.visit(t(l));for(n=-1;++n<w;)l=y[n],l.fixed?(l.x=l.px,l.y=l.py):(l.x-=(l.px-(l.px=l.x))*h,l.y-=(l.py-(l.py=l.y))*h);c.tick({type:\\\"tick\\\",alpha:i})},l.nodes=function(t){return arguments.length?(y=t,l):y},l.links=function(t){return arguments.length?(b=t,l):b},l.size=function(t){return arguments.length?(u=t,l):u},l.linkDistance=function(t){return arguments.length?(f=\\\"function\\\"==typeof t?t:+t,l):f},l.distance=l.linkDistance,l.linkStrength=function(t){return arguments.length?(d=\\\"function\\\"==typeof t?t:+t,l):d},l.friction=function(t){return arguments.length?(h=+t,l):h},l.charge=function(t){return arguments.length?(p=\\\"function\\\"==typeof t?t:+t,l):p},l.chargeDistance=function(t){return arguments.length?(g=t*t,l):Math.sqrt(g)},l.gravity=function(t){return arguments.length?(v=+t,l):v},l.theta=function(t){return arguments.length?(m=t*t,l):Math.sqrt(m)},l.alpha=function(t){return arguments.length?(t=+t,i?t>0?i=t:(r.c=null,r.t=NaN,r=null,c.end({type:\\\"end\\\",alpha:i=0})):t>0&&(c.start({type:\\\"start\\\",alpha:i=t}),r=Rt(l.tick)),l):i},l.start=function(){function t(t,n){if(!r){for(r=new Array(i),l=0;i>l;++l)r[l]=[];for(l=0;c>l;++l){var o=b[l];r[o.source.index].push(o.target),r[o.target.index].push(o.source)}}for(var a,s=r[e],l=-1,u=s.length;++l<u;)if(!isNaN(a=s[l][t]))return a;return Math.random()*n}var e,r,n,i=y.length,c=b.length,h=u[0],g=u[1];for(e=0;i>e;++e)(n=y[e]).index=e,n.weight=0;for(e=0;c>e;++e)n=b[e],\\\"number\\\"==typeof n.source&&(n.source=y[n.source]),\\\"number\\\"==typeof n.target&&(n.target=y[n.target]),++n.source.weight,++n.target.weight;for(e=0;i>e;++e)n=y[e],isNaN(n.x)&&(n.x=t(\\\"x\\\",h)),isNaN(n.y)&&(n.y=t(\\\"y\\\",g)),isNaN(n.px)&&(n.px=n.x),isNaN(n.py)&&(n.py=n.y);if(o=[],\\\"function\\\"==typeof f)for(e=0;c>e;++e)o[e]=+f.call(this,b[e],e);else for(e=0;c>e;++e)o[e]=f;if(a=[],\\\"function\\\"==typeof d)for(e=0;c>e;++e)a[e]=+d.call(this,b[e],e);else for(e=0;c>e;++e)a[e]=d;if(s=[],\\\"function\\\"==typeof p)for(e=0;i>e;++e)s[e]=+p.call(this,y[e],e);else for(e=0;i>e;++e)s[e]=p;return l.resume()},l.resume=function(){return l.alpha(.1)},l.stop=function(){return l.alpha(0)},l.drag=function(){return n||(n=ua.behavior.drag().origin(x).on(\\\"dragstart.force\\\",ei).on(\\\"drag.force\\\",e).on(\\\"dragend.force\\\",ri)),arguments.length?void this.on(\\\"mouseover.force\\\",ni).on(\\\"mouseout.force\\\",ii).call(n):n},ua.rebind(l,c,\\\"on\\\")};var xl=20,_l=1,wl=1/0;ua.layout.hierarchy=function(){function t(i){var o,a=[i],s=[];for(i.depth=0;null!=(o=a.pop());)if(s.push(o),(c=r.call(t,o,o.depth))&&(l=c.length)){for(var l,c,u;--l>=0;)a.push(u=c[l]),u.parent=o,u.depth=o.depth+1;n&&(o.value=0),o.children=c}else n&&(o.value=+n.call(t,o,o.depth)||0),delete o.children;return li(i,function(t){var r,i;e&&(r=t.children)&&r.sort(e),n&&(i=t.parent)&&(i.value+=t.value)}),s}var e=hi,r=ci,n=ui;return t.sort=function(r){return arguments.length?(e=r,t):e},t.children=function(e){return arguments.length?(r=e,t):r},t.value=function(e){return arguments.length?(n=e,t):n},t.revalue=function(e){return n&&(si(e,function(t){t.children&&(t.value=0)}),li(e,function(e){var r;e.children||(e.value=+n.call(t,e,e.depth)||0),(r=e.parent)&&(r.value+=e.value)})),e},t},ua.layout.partition=function(){function t(e,r,n,i){var o=e.children;if(e.x=r,e.y=e.depth*i,e.dx=n,e.dy=i,o&&(a=o.length)){var a,s,l,c=-1;for(n=e.value?n/e.value:0;++c<a;)t(s=o[c],r,l=s.value*n,i),r+=l}}function e(t){var r=t.children,n=0;if(r&&(i=r.length))for(var i,o=-1;++o<i;)n=Math.max(n,e(r[o]));return 1+n}function r(r,o){var a=n.call(this,r,o);return t(a[0],0,i[0],i[1]/e(a[0])),a}var n=ua.layout.hierarchy(),i=[1,1];return r.size=function(t){return arguments.length?(i=t,r):i},ai(r,n)},ua.layout.pie=function(){function t(a){var s,l=a.length,c=a.map(function(r,n){return+e.call(t,r,n)}),u=+(\\\"function\\\"==typeof n?n.apply(this,arguments):n),h=(\\\"function\\\"==typeof i?i.apply(this,arguments):i)-u,f=Math.min(Math.abs(h)/l,+(\\\"function\\\"==typeof o?o.apply(this,arguments):o)),d=f*(0>h?-1:1),p=ua.sum(c),g=p?(h-l*d)/p:0,v=ua.range(l),m=[];return null!=r&&v.sort(r===Al?function(t,e){return c[e]-c[t]}:function(t,e){return r(a[t],a[e])}),v.forEach(function(t){m[t]={data:a[t],value:s=c[t],startAngle:u,endAngle:u+=s*g+d,padAngle:f}}),m}var e=Number,r=Al,n=0,i=Va,o=0;return t.value=function(r){return arguments.length?(e=r,t):e},t.sort=function(e){return arguments.length?(r=e,t):r},t.startAngle=function(e){return arguments.length?(n=e,t):n},t.endAngle=function(e){return arguments.length?(i=e,t):i},t.padAngle=function(e){return arguments.length?(o=e,t):o},t};var Al={};ua.layout.stack=function(){function t(s,l){if(!(f=s.length))return s;var c=s.map(function(r,n){return e.call(t,r,n)}),u=c.map(function(e){return e.map(function(e,r){return[o.call(t,e,r),a.call(t,e,r)]})}),h=r.call(t,u,l);c=ua.permute(c,h),u=ua.permute(u,h);var f,d,p,g,v=n.call(t,u,l),m=c[0].length;for(p=0;m>p;++p)for(i.call(t,c[0][p],g=v[p],u[0][p][1]),d=1;f>d;++d)i.call(t,c[d][p],g+=u[d-1][p][1],u[d][p][1]);return s}var e=x,r=vi,n=mi,i=gi,o=di,a=pi;return t.values=function(r){return arguments.length?(e=r,t):e},t.order=function(e){return arguments.length?(r=\\\"function\\\"==typeof e?e:kl.get(e)||vi,t):r},t.offset=function(e){return arguments.length?(n=\\\"function\\\"==typeof e?e:Ml.get(e)||mi,t):n},t.x=function(e){return arguments.length?(o=e,t):o},t.y=function(e){return arguments.length?(a=e,t):a},t.out=function(e){return arguments.length?(i=e,t):i},t};var kl=ua.map({\\\"inside-out\\\":function(t){var e,r,n=t.length,i=t.map(yi),o=t.map(bi),a=ua.range(n).sort(function(t,e){return i[t]-i[e]}),s=0,l=0,c=[],u=[];for(e=0;n>e;++e)r=a[e],l>s?(s+=o[r],c.push(r)):(l+=o[r],u.push(r));return u.reverse().concat(c)},reverse:function(t){return ua.range(t.length).reverse()},\\\"default\\\":vi}),Ml=ua.map({silhouette:function(t){var e,r,n,i=t.length,o=t[0].length,a=[],s=0,l=[];for(r=0;o>r;++r){for(e=0,n=0;i>e;e++)n+=t[e][r][1];n>s&&(s=n),a.push(n)}for(r=0;o>r;++r)l[r]=(s-a[r])/2;return l},wiggle:function(t){var e,r,n,i,o,a,s,l,c,u=t.length,h=t[0],f=h.length,d=[];for(d[0]=l=c=0,r=1;f>r;++r){for(e=0,i=0;u>e;++e)i+=t[e][r][1];for(e=0,o=0,s=h[r][0]-h[r-1][0];u>e;++e){for(n=0,a=(t[e][r][1]-t[e][r-1][1])/(2*s);e>n;++n)a+=(t[n][r][1]-t[n][r-1][1])/s;o+=a*t[e][r][1]}d[r]=l-=i?o/i*s:0,c>l&&(c=l)}for(r=0;f>r;++r)d[r]-=c;return d},expand:function(t){var e,r,n,i=t.length,o=t[0].length,a=1/i,s=[];for(r=0;o>r;++r){for(e=0,n=0;i>e;e++)n+=t[e][r][1];if(n)for(e=0;i>e;e++)t[e][r][1]/=n;else for(e=0;i>e;e++)t[e][r][1]=a}for(r=0;o>r;++r)s[r]=0;return s},zero:mi});ua.layout.histogram=function(){function t(t,o){for(var a,s,l=[],c=t.map(r,this),u=n.call(this,c,o),h=i.call(this,u,c,o),o=-1,f=c.length,d=h.length-1,p=e?1:1/f;++o<d;)a=l[o]=[],a.dx=h[o+1]-(a.x=h[o]),a.y=0;if(d>0)for(o=-1;++o<f;)s=c[o],s>=u[0]&&s<=u[1]&&(a=l[ua.bisect(h,s,1,d)-1],a.y+=p,a.push(t[o]));return l}var e=!0,r=Number,n=Ai,i=_i;return t.value=function(e){return arguments.length?(r=e,t):r},t.range=function(e){return arguments.length?(n=Lt(e),t):n},t.bins=function(e){return arguments.length?(i=\\\"number\\\"==typeof e?function(t){return wi(t,e)}:Lt(e),t):i},t.frequency=function(r){return arguments.length?(e=!!r,t):e},t},ua.layout.pack=function(){function t(t,o){var a=r.call(this,t,o),s=a[0],l=i[0],c=i[1],u=null==e?Math.sqrt:\\\"function\\\"==typeof e?e:function(){return e};if(s.x=s.y=0,li(s,function(t){t.r=+u(t.value)}),li(s,Li),n){var h=n*(e?1:Math.max(2*s.r/l,2*s.r/c))/2;li(s,function(t){t.r+=h}),li(s,Li),li(s,function(t){t.r-=h})}return Pi(s,l/2,c/2,e?1:1/Math.max(2*s.r/l,2*s.r/c)),a}var e,r=ua.layout.hierarchy().sort(ki),n=0,i=[1,1];return t.size=function(e){return arguments.length?(i=e,t):i},t.radius=function(r){return arguments.length?(e=null==r||\\\"function\\\"==typeof r?r:+r,t):e},t.padding=function(e){return arguments.length?(n=+e,t):n},ai(t,r)},ua.layout.tree=function(){function t(t,i){var u=a.call(this,t,i),h=u[0],f=e(h);if(li(f,r),f.parent.m=-f.z,si(f,n),c)si(h,o);else{var d=h,p=h,g=h;si(h,function(t){t.x<d.x&&(d=t),t.x>p.x&&(p=t),t.depth>g.depth&&(g=t)});var v=s(d,p)/2-d.x,m=l[0]/(p.x+s(p,d)/2+v),y=l[1]/(g.depth||1);si(h,function(t){t.x=(t.x+v)*m,t.y=t.depth*y})}return u}function e(t){for(var e,r={A:null,children:[t]},n=[r];null!=(e=n.pop());)for(var i,o=e.children,a=0,s=o.length;s>a;++a)n.push((o[a]=i={_:o[a],parent:e,children:(i=o[a].children)&&i.slice()||[],A:null,a:null,z:0,m:0,c:0,s:0,t:null,i:a}).a=i);return r.children[0]}function r(t){var e=t.children,r=t.parent.children,n=t.i?r[t.i-1]:null;if(e.length){ji(t);var o=(e[0].z+e[e.length-1].z)/2;n?(t.z=n.z+s(t._,n._),t.m=t.z-o):t.z=o}else n&&(t.z=n.z+s(t._,n._));t.parent.A=i(t,n,t.parent.A||r[0])}function n(t){t._.x=t.z+t.parent.m,t.m+=t.parent.m}function i(t,e,r){if(e){for(var n,i=t,o=t,a=e,l=i.parent.children[0],c=i.m,u=o.m,h=a.m,f=l.m;a=Ii(a),i=Oi(i),a&&i;)l=Oi(l),o=Ii(o),o.a=t,n=a.z+h-i.z-c+s(a._,i._),n>0&&(Ni(Fi(a,t,r),t,n),c+=n,u+=n),h+=a.m,c+=i.m,f+=l.m,u+=o.m;a&&!Ii(o)&&(o.t=a,o.m+=h-u),i&&!Oi(l)&&(l.t=i,l.m+=c-f,r=t)}return r}function o(t){t.x*=l[0],t.y=t.depth*l[1]}var a=ua.layout.hierarchy().sort(null).value(null),s=Ri,l=[1,1],c=null;return t.separation=function(e){return arguments.length?(s=e,t):s},t.size=function(e){return arguments.length?(c=null==(l=e)?o:null,t):c?null:l},t.nodeSize=function(e){return arguments.length?(c=null==(l=e)?null:o,t):c?l:null},ai(t,a)},ua.layout.cluster=function(){function t(t,o){var a,s=e.call(this,t,o),l=s[0],c=0;li(l,function(t){var e=t.children;e&&e.length?(t.x=Bi(e),t.y=Di(e)):(t.x=a?c+=r(t,a):0,t.y=0,a=t)});var u=Ui(l),h=Vi(l),f=u.x-r(u,h)/2,d=h.x+r(h,u)/2;return li(l,i?function(t){t.x=(t.x-l.x)*n[0],t.y=(l.y-t.y)*n[1]}:function(t){t.x=(t.x-f)/(d-f)*n[0],t.y=(1-(l.y?t.y/l.y:1))*n[1]}),s}var e=ua.layout.hierarchy().sort(null).value(null),r=Ri,n=[1,1],i=!1;return t.separation=function(e){return arguments.length?(r=e,t):r},t.size=function(e){return arguments.length?(i=null==(n=e),t):i?null:n},t.nodeSize=function(e){return arguments.length?(i=null!=(n=e),t):i?n:null},ai(t,e)},ua.layout.treemap=function(){function t(t,e){for(var r,n,i=-1,o=t.length;++i<o;)n=(r=t[i]).value*(0>e?0:e),r.area=isNaN(n)||0>=n?0:n}function e(r){var o=r.children;if(o&&o.length){var a,s,l,c=h(r),u=[],f=o.slice(),p=1/0,g=\\\"slice\\\"===d?c.dx:\\\"dice\\\"===d?c.dy:\\\"slice-dice\\\"===d?1&r.depth?c.dy:c.dx:Math.min(c.dx,c.dy);for(t(f,c.dx*c.dy/r.value),u.area=0;(l=f.length)>0;)u.push(a=f[l-1]),u.area+=a.area,\\\"squarify\\\"!==d||(s=n(u,g))<=p?(f.pop(),p=s):(u.area-=u.pop().area,i(u,g,c,!1),g=Math.min(c.dx,c.dy),u.length=u.area=0,p=1/0);u.length&&(i(u,g,c,!0),u.length=u.area=0),o.forEach(e)}}function r(e){var n=e.children;if(n&&n.length){var o,a=h(e),s=n.slice(),l=[];for(t(s,a.dx*a.dy/e.value),l.area=0;o=s.pop();)l.push(o),l.area+=o.area,null!=o.z&&(i(l,o.z?a.dx:a.dy,a,!s.length),l.length=l.area=0);n.forEach(r)}}function n(t,e){for(var r,n=t.area,i=0,o=1/0,a=-1,s=t.length;++a<s;)(r=t[a].area)&&(o>r&&(o=r),r>i&&(i=r));return n*=n,e*=e,n?Math.max(e*i*p/n,n/(e*o*p)):1/0}function i(t,e,r,n){var i,o=-1,a=t.length,s=r.x,c=r.y,u=e?l(t.area/e):0;if(e==r.dx){for((n||u>r.dy)&&(u=r.dy);++o<a;)i=t[o],i.x=s,i.y=c,i.dy=u,s+=i.dx=Math.min(r.x+r.dx-s,u?l(i.area/u):0);i.z=!0,i.dx+=r.x+r.dx-s,r.y+=u,r.dy-=u}else{for((n||u>r.dx)&&(u=r.dx);++o<a;)i=t[o],i.x=s,i.y=c,i.dx=u,c+=i.dy=Math.min(r.y+r.dy-c,u?l(i.area/u):0);i.z=!1,i.dy+=r.y+r.dy-c,r.x+=u,r.dx-=u}}function o(n){var i=a||s(n),o=i[0];return o.x=o.y=0,o.value?(o.dx=c[0],o.dy=c[1]):o.dx=o.dy=0,a&&s.revalue(o),t([o],o.dx*o.dy/o.value),(a?r:e)(o),f&&(a=i),i}var a,s=ua.layout.hierarchy(),l=Math.round,c=[1,1],u=null,h=qi,f=!1,d=\\\"squarify\\\",p=.5*(1+Math.sqrt(5));return o.size=function(t){return arguments.length?(c=t,o):c},o.padding=function(t){function e(e){var r=t.call(o,e,e.depth);return null==r?qi(e):Hi(e,\\\"number\\\"==typeof r?[r,r,r,r]:r)}function r(e){return Hi(e,t)}if(!arguments.length)return u;var n;return h=null==(u=t)?qi:\\\"function\\\"==(n=typeof t)?e:\\\"number\\\"===n?(t=[t,t,t,t],r):r,o},o.round=function(t){return arguments.length?(l=t?Math.round:Number,o):l!=Number},o.sticky=function(t){return arguments.length?(f=t,a=null,o):f},o.ratio=function(t){return arguments.length?(p=t,o):p},o.mode=function(t){return arguments.length?(d=t+\\\"\\\",o):d},ai(o,s)},ua.random={normal:function(t,e){var r=arguments.length;return 2>r&&(e=1),1>r&&(t=0),function(){var r,n,i;do r=2*Math.random()-1,n=2*Math.random()-1,i=r*r+n*n;while(!i||i>1);return t+e*r*Math.sqrt(-2*Math.log(i)/i)}},logNormal:function(){var t=ua.random.normal.apply(ua,arguments);return function(){return Math.exp(t())}},bates:function(t){var e=ua.random.irwinHall(t);return function(){return e()/t}},irwinHall:function(t){return function(){for(var e=0,r=0;t>r;r++)e+=Math.random();return e}}},ua.scale={};var Tl={floor:x,ceil:x};ua.scale.linear=function(){return Ki([0,1],[0,1],_n,!1)};var El={s:1,g:1,p:1,r:1,e:1};ua.scale.log=function(){return oo(ua.scale.linear().domain([0,1]),10,!0,[1,10])};var Ll=ua.format(\\\".0e\\\"),Sl={floor:function(t){return-Math.ceil(-t)},ceil:function(t){return-Math.floor(-t)}};ua.scale.pow=function(){return ao(ua.scale.linear(),1,[0,1])},ua.scale.sqrt=function(){return ua.scale.pow().exponent(.5)},ua.scale.ordinal=function(){return lo([],{t:\\\"range\\\",a:[[]]})},ua.scale.category10=function(){return ua.scale.ordinal().range(Cl)},ua.scale.category20=function(){return ua.scale.ordinal().range(Pl)},ua.scale.category20b=function(){return ua.scale.ordinal().range(zl)},ua.scale.category20c=function(){return ua.scale.ordinal().range(Rl)};var Cl=[2062260,16744206,2924588,14034728,9725885,9197131,14907330,8355711,12369186,1556175].map(_t),Pl=[2062260,11454440,16744206,16759672,2924588,10018698,14034728,16750742,9725885,12955861,9197131,12885140,14907330,16234194,8355711,13092807,12369186,14408589,1556175,10410725].map(_t),zl=[3750777,5395619,7040719,10264286,6519097,9216594,11915115,13556636,9202993,12426809,15186514,15190932,8666169,11356490,14049643,15177372,8077683,10834324,13528509,14589654].map(_t),Rl=[3244733,7057110,10406625,13032431,15095053,16616764,16625259,16634018,3253076,7652470,10607003,13101504,7695281,10394312,12369372,14342891,6513507,9868950,12434877,14277081].map(_t);ua.scale.quantile=function(){return co([],[])},ua.scale.quantize=function(){return uo(0,1,[0,1])},ua.scale.threshold=function(){return ho([.5],[0,1])},ua.scale.identity=function(){return fo([0,1])},ua.svg={},ua.svg.arc=function(){function t(){var t=Math.max(0,+r.apply(this,arguments)),c=Math.max(0,+n.apply(this,arguments)),u=a.apply(this,arguments)-Ha,h=s.apply(this,arguments)-Ha,f=Math.abs(h-u),d=u>h?0:1;if(t>c&&(p=c,c=t,t=p),f>=qa)return e(c,d)+(t?e(t,1-d):\\\"\\\")+\\\"Z\\\";var p,g,v,m,y,b,x,_,w,A,k,M,T=0,E=0,L=[];if((m=(+l.apply(this,arguments)||0)/2)&&(v=o===Ol?Math.sqrt(t*t+c*c):+o.apply(this,arguments),d||(E*=-1),c&&(E=nt(v/c*Math.sin(m))),t&&(T=nt(v/t*Math.sin(m)))),c){y=c*Math.cos(u+E),b=c*Math.sin(u+E),x=c*Math.cos(h-E),_=c*Math.sin(h-E);var S=Math.abs(h-u-2*E)<=Ua?0:1;if(E&&xo(y,b,x,_)===d^S){var C=(u+h)/2;y=c*Math.cos(C),b=c*Math.sin(C),x=_=null}}else y=b=0;if(t){w=t*Math.cos(h-T),A=t*Math.sin(h-T),k=t*Math.cos(u+T),M=t*Math.sin(u+T);var P=Math.abs(u-h+2*T)<=Ua?0:1;if(T&&xo(w,A,k,M)===1-d^P){var z=(u+h)/2;w=t*Math.cos(z),A=t*Math.sin(z),k=M=null}}else w=A=0;if(f>Da&&(p=Math.min(Math.abs(c-t)/2,+i.apply(this,arguments)))>.001){g=c>t^d?0:1;var R=p,O=p;if(Ua>f){var I=null==k?[w,A]:null==x?[y,b]:Ir([y,b],[k,M],[x,_],[w,A]),N=y-I[0],j=b-I[1],F=x-I[0],D=_-I[1],B=1/Math.sin(Math.acos((N*F+j*D)/(Math.sqrt(N*N+j*j)*Math.sqrt(F*F+D*D)))/2),U=Math.sqrt(I[0]*I[0]+I[1]*I[1]);O=Math.min(p,(t-U)/(B-1)),R=Math.min(p,(c-U)/(B+1))}if(null!=x){var V=_o(null==k?[w,A]:[k,M],[y,b],c,R,d),q=_o([x,_],[w,A],c,R,d);p===R?L.push(\\\"M\\\",V[0],\\\"A\\\",R,\\\",\\\",R,\\\" 0 0,\\\",g,\\\" \\\",V[1],\\\"A\\\",c,\\\",\\\",c,\\\" 0 \\\",1-d^xo(V[1][0],V[1][1],q[1][0],q[1][1]),\\\",\\\",d,\\\" \\\",q[1],\\\"A\\\",R,\\\",\\\",R,\\\" 0 0,\\\",g,\\\" \\\",q[0]):L.push(\\\"M\\\",V[0],\\\"A\\\",R,\\\",\\\",R,\\\" 0 1,\\\",g,\\\" \\\",q[0])}else L.push(\\\"M\\\",y,\\\",\\\",b);if(null!=k){var H=_o([y,b],[k,M],t,-O,d),G=_o([w,A],null==x?[y,b]:[x,_],t,-O,d);p===O?L.push(\\\"L\\\",G[0],\\\"A\\\",O,\\\",\\\",O,\\\" 0 0,\\\",g,\\\" \\\",G[1],\\\"A\\\",t,\\\",\\\",t,\\\" 0 \\\",d^xo(G[1][0],G[1][1],H[1][0],H[1][1]),\\\",\\\",1-d,\\\" \\\",H[1],\\\"A\\\",O,\\\",\\\",O,\\\" 0 0,\\\",g,\\\" \\\",H[0]):L.push(\\\"L\\\",G[0],\\\"A\\\",O,\\\",\\\",O,\\\" 0 0,\\\",g,\\\" \\\",H[0])}else L.push(\\\"L\\\",w,\\\",\\\",A)}else L.push(\\\"M\\\",y,\\\",\\\",b),null!=x&&L.push(\\\"A\\\",c,\\\",\\\",c,\\\" 0 \\\",S,\\\",\\\",d,\\\" \\\",x,\\\",\\\",_),L.push(\\\"L\\\",w,\\\",\\\",A),null!=k&&L.push(\\\"A\\\",t,\\\",\\\",t,\\\" 0 \\\",P,\\\",\\\",1-d,\\\" \\\",k,\\\",\\\",M);return L.push(\\\"Z\\\"),L.join(\\\"\\\")}function e(t,e){return\\\"M0,\\\"+t+\\\"A\\\"+t+\\\",\\\"+t+\\\" 0 1,\\\"+e+\\\" 0,\\\"+-t+\\\"A\\\"+t+\\\",\\\"+t+\\\" 0 1,\\\"+e+\\\" 0,\\\"+t}var r=go,n=vo,i=po,o=Ol,a=mo,s=yo,l=bo;\\n\",\n       \"return t.innerRadius=function(e){return arguments.length?(r=Lt(e),t):r},t.outerRadius=function(e){return arguments.length?(n=Lt(e),t):n},t.cornerRadius=function(e){return arguments.length?(i=Lt(e),t):i},t.padRadius=function(e){return arguments.length?(o=e==Ol?Ol:Lt(e),t):o},t.startAngle=function(e){return arguments.length?(a=Lt(e),t):a},t.endAngle=function(e){return arguments.length?(s=Lt(e),t):s},t.padAngle=function(e){return arguments.length?(l=Lt(e),t):l},t.centroid=function(){var t=(+r.apply(this,arguments)+ +n.apply(this,arguments))/2,e=(+a.apply(this,arguments)+ +s.apply(this,arguments))/2-Ha;return[Math.cos(e)*t,Math.sin(e)*t]},t};var Ol=\\\"auto\\\";ua.svg.line=function(){return wo(x)};var Il=ua.map({linear:Ao,\\\"linear-closed\\\":ko,step:Mo,\\\"step-before\\\":To,\\\"step-after\\\":Eo,basis:Ro,\\\"basis-open\\\":Oo,\\\"basis-closed\\\":Io,bundle:No,cardinal:Co,\\\"cardinal-open\\\":Lo,\\\"cardinal-closed\\\":So,monotone:Vo});Il.forEach(function(t,e){e.key=t,e.closed=/-closed$/.test(t)});var Nl=[0,2/3,1/3,0],jl=[0,1/3,2/3,0],Fl=[0,1/6,2/3,1/6];ua.svg.line.radial=function(){var t=wo(qo);return t.radius=t.x,delete t.x,t.angle=t.y,delete t.y,t},To.reverse=Eo,Eo.reverse=To,ua.svg.area=function(){return Ho(x)},ua.svg.area.radial=function(){var t=Ho(qo);return t.radius=t.x,delete t.x,t.innerRadius=t.x0,delete t.x0,t.outerRadius=t.x1,delete t.x1,t.angle=t.y,delete t.y,t.startAngle=t.y0,delete t.y0,t.endAngle=t.y1,delete t.y1,t},ua.svg.chord=function(){function t(t,s){var l=e(this,o,t,s),c=e(this,a,t,s);return\\\"M\\\"+l.p0+n(l.r,l.p1,l.a1-l.a0)+(r(l,c)?i(l.r,l.p1,l.r,l.p0):i(l.r,l.p1,c.r,c.p0)+n(c.r,c.p1,c.a1-c.a0)+i(c.r,c.p1,l.r,l.p0))+\\\"Z\\\"}function e(t,e,r,n){var i=e.call(t,r,n),o=s.call(t,i,n),a=l.call(t,i,n)-Ha,u=c.call(t,i,n)-Ha;return{r:o,a0:a,a1:u,p0:[o*Math.cos(a),o*Math.sin(a)],p1:[o*Math.cos(u),o*Math.sin(u)]}}function r(t,e){return t.a0==e.a0&&t.a1==e.a1}function n(t,e,r){return\\\"A\\\"+t+\\\",\\\"+t+\\\" 0 \\\"+ +(r>Ua)+\\\",1 \\\"+e}function i(t,e,r,n){return\\\"Q 0,0 \\\"+n}var o=xr,a=_r,s=Go,l=mo,c=yo;return t.radius=function(e){return arguments.length?(s=Lt(e),t):s},t.source=function(e){return arguments.length?(o=Lt(e),t):o},t.target=function(e){return arguments.length?(a=Lt(e),t):a},t.startAngle=function(e){return arguments.length?(l=Lt(e),t):l},t.endAngle=function(e){return arguments.length?(c=Lt(e),t):c},t},ua.svg.diagonal=function(){function t(t,i){var o=e.call(this,t,i),a=r.call(this,t,i),s=(o.y+a.y)/2,l=[o,{x:o.x,y:s},{x:a.x,y:s},a];return l=l.map(n),\\\"M\\\"+l[0]+\\\"C\\\"+l[1]+\\\" \\\"+l[2]+\\\" \\\"+l[3]}var e=xr,r=_r,n=Yo;return t.source=function(r){return arguments.length?(e=Lt(r),t):e},t.target=function(e){return arguments.length?(r=Lt(e),t):r},t.projection=function(e){return arguments.length?(n=e,t):n},t},ua.svg.diagonal.radial=function(){var t=ua.svg.diagonal(),e=Yo,r=t.projection;return t.projection=function(t){return arguments.length?r(Xo(e=t)):e},t},ua.svg.symbol=function(){function t(t,n){return(Dl.get(e.call(this,t,n))||$o)(r.call(this,t,n))}var e=Zo,r=Wo;return t.type=function(r){return arguments.length?(e=Lt(r),t):e},t.size=function(e){return arguments.length?(r=Lt(e),t):r},t};var Dl=ua.map({circle:$o,cross:function(t){var e=Math.sqrt(t/5)/2;return\\\"M\\\"+-3*e+\\\",\\\"+-e+\\\"H\\\"+-e+\\\"V\\\"+-3*e+\\\"H\\\"+e+\\\"V\\\"+-e+\\\"H\\\"+3*e+\\\"V\\\"+e+\\\"H\\\"+e+\\\"V\\\"+3*e+\\\"H\\\"+-e+\\\"V\\\"+e+\\\"H\\\"+-3*e+\\\"Z\\\"},diamond:function(t){var e=Math.sqrt(t/(2*Ul)),r=e*Ul;return\\\"M0,\\\"+-e+\\\"L\\\"+r+\\\",0 0,\\\"+e+\\\" \\\"+-r+\\\",0Z\\\"},square:function(t){var e=Math.sqrt(t)/2;return\\\"M\\\"+-e+\\\",\\\"+-e+\\\"L\\\"+e+\\\",\\\"+-e+\\\" \\\"+e+\\\",\\\"+e+\\\" \\\"+-e+\\\",\\\"+e+\\\"Z\\\"},\\\"triangle-down\\\":function(t){var e=Math.sqrt(t/Bl),r=e*Bl/2;return\\\"M0,\\\"+r+\\\"L\\\"+e+\\\",\\\"+-r+\\\" \\\"+-e+\\\",\\\"+-r+\\\"Z\\\"},\\\"triangle-up\\\":function(t){var e=Math.sqrt(t/Bl),r=e*Bl/2;return\\\"M0,\\\"+-r+\\\"L\\\"+e+\\\",\\\"+r+\\\" \\\"+-e+\\\",\\\"+r+\\\"Z\\\"}});ua.svg.symbolTypes=Dl.keys();var Bl=Math.sqrt(3),Ul=Math.tan(30*Ga);Pa.transition=function(t){for(var e,r,n=Vl||++Yl,i=ea(t),o=[],a=ql||{time:Date.now(),ease:Ln,delay:0,duration:250},s=-1,l=this.length;++s<l;){o.push(e=[]);for(var c=this[s],u=-1,h=c.length;++u<h;)(r=c[u])&&ra(r,u,i,n,a),e.push(r)}return Qo(o,i,n)},Pa.interrupt=function(t){return this.each(null==t?Hl:Ko(ea(t)))};var Vl,ql,Hl=Ko(ea()),Gl=[],Yl=0;Gl.call=Pa.call,Gl.empty=Pa.empty,Gl.node=Pa.node,Gl.size=Pa.size,ua.transition=function(t,e){return t&&t.transition?Vl?t.transition(e):t:ua.selection().transition(t)},ua.transition.prototype=Gl,Gl.select=function(t){var e,r,n,i=this.id,o=this.namespace,a=[];t=C(t);for(var s=-1,l=this.length;++s<l;){a.push(e=[]);for(var c=this[s],u=-1,h=c.length;++u<h;)(n=c[u])&&(r=t.call(n,n.__data__,u,s))?(\\\"__data__\\\"in n&&(r.__data__=n.__data__),ra(r,u,o,i,n[o][i]),e.push(r)):e.push(null)}return Qo(a,o,i)},Gl.selectAll=function(t){var e,r,n,i,o,a=this.id,s=this.namespace,l=[];t=P(t);for(var c=-1,u=this.length;++c<u;)for(var h=this[c],f=-1,d=h.length;++f<d;)if(n=h[f]){o=n[s][a],r=t.call(n,n.__data__,f,c),l.push(e=[]);for(var p=-1,g=r.length;++p<g;)(i=r[p])&&ra(i,p,s,a,o),e.push(i)}return Qo(l,s,a)},Gl.filter=function(t){var e,r,n,i=[];\\\"function\\\"!=typeof t&&(t=q(t));for(var o=0,a=this.length;a>o;o++){i.push(e=[]);for(var r=this[o],s=0,l=r.length;l>s;s++)(n=r[s])&&t.call(n,n.__data__,s,o)&&e.push(n)}return Qo(i,this.namespace,this.id)},Gl.tween=function(t,e){var r=this.id,n=this.namespace;return arguments.length<2?this.node()[n][r].tween.get(t):G(this,null==e?function(e){e[n][r].tween.remove(t)}:function(i){i[n][r].tween.set(t,e)})},Gl.attr=function(t,e){function r(){this.removeAttribute(s)}function n(){this.removeAttributeNS(s.space,s.local)}function i(t){return null==t?r:(t+=\\\"\\\",function(){var e,r=this.getAttribute(s);return r!==t&&(e=a(r,t),function(t){this.setAttribute(s,e(t))})})}function o(t){return null==t?n:(t+=\\\"\\\",function(){var e,r=this.getAttributeNS(s.space,s.local);return r!==t&&(e=a(r,t),function(t){this.setAttributeNS(s.space,s.local,e(t))})})}if(arguments.length<2){for(e in t)this.attr(e,t[e]);return this}var a=\\\"transform\\\"==t?Zn:_n,s=ua.ns.qualify(t);return Jo(this,\\\"attr.\\\"+t,e,s.local?o:i)},Gl.attrTween=function(t,e){function r(t,r){var n=e.call(this,t,r,this.getAttribute(i));return n&&function(t){this.setAttribute(i,n(t))}}function n(t,r){var n=e.call(this,t,r,this.getAttributeNS(i.space,i.local));return n&&function(t){this.setAttributeNS(i.space,i.local,n(t))}}var i=ua.ns.qualify(t);return this.tween(\\\"attr.\\\"+t,i.local?n:r)},Gl.style=function(t,e,r){function i(){this.style.removeProperty(t)}function o(e){return null==e?i:(e+=\\\"\\\",function(){var i,o=n(this).getComputedStyle(this,null).getPropertyValue(t);return o!==e&&(i=_n(o,e),function(e){this.style.setProperty(t,i(e),r)})})}var a=arguments.length;if(3>a){if(\\\"string\\\"!=typeof t){2>a&&(e=\\\"\\\");for(r in t)this.style(r,t[r],e);return this}r=\\\"\\\"}return Jo(this,\\\"style.\\\"+t,e,o)},Gl.styleTween=function(t,e,r){function i(i,o){var a=e.call(this,i,o,n(this).getComputedStyle(this,null).getPropertyValue(t));return a&&function(e){this.style.setProperty(t,a(e),r)}}return arguments.length<3&&(r=\\\"\\\"),this.tween(\\\"style.\\\"+t,i)},Gl.text=function(t){return Jo(this,\\\"text\\\",t,ta)},Gl.remove=function(){var t=this.namespace;return this.each(\\\"end.transition\\\",function(){var e;this[t].count<2&&(e=this.parentNode)&&e.removeChild(this)})},Gl.ease=function(t){var e=this.id,r=this.namespace;return arguments.length<1?this.node()[r][e].ease:(\\\"function\\\"!=typeof t&&(t=ua.ease.apply(ua,arguments)),G(this,function(n){n[r][e].ease=t}))},Gl.delay=function(t){var e=this.id,r=this.namespace;return arguments.length<1?this.node()[r][e].delay:G(this,\\\"function\\\"==typeof t?function(n,i,o){n[r][e].delay=+t.call(n,n.__data__,i,o)}:(t=+t,function(n){n[r][e].delay=t}))},Gl.duration=function(t){var e=this.id,r=this.namespace;return arguments.length<1?this.node()[r][e].duration:G(this,\\\"function\\\"==typeof t?function(n,i,o){n[r][e].duration=Math.max(1,t.call(n,n.__data__,i,o))}:(t=Math.max(1,t),function(n){n[r][e].duration=t}))},Gl.each=function(t,e){var r=this.id,n=this.namespace;if(arguments.length<2){var i=ql,o=Vl;try{Vl=r,G(this,function(e,i,o){ql=e[n][r],t.call(e,e.__data__,i,o)})}finally{ql=i,Vl=o}}else G(this,function(i){var o=i[n][r];(o.event||(o.event=ua.dispatch(\\\"start\\\",\\\"end\\\",\\\"interrupt\\\"))).on(t,e)});return this},Gl.transition=function(){for(var t,e,r,n,i=this.id,o=++Yl,a=this.namespace,s=[],l=0,c=this.length;c>l;l++){s.push(t=[]);for(var e=this[l],u=0,h=e.length;h>u;u++)(r=e[u])&&(n=r[a][i],ra(r,u,a,o,{time:n.time,ease:n.ease,delay:n.delay+n.duration,duration:n.duration})),t.push(r)}return Qo(s,a,o)},ua.svg.axis=function(){function t(t){t.each(function(){var t,c=ua.select(this),u=this.__chart__||r,h=this.__chart__=r.copy(),f=null==l?h.ticks?h.ticks.apply(h,s):h.domain():l,d=null==e?h.tickFormat?h.tickFormat.apply(h,s):x:e,p=c.selectAll(\\\".tick\\\").data(f,h),g=p.enter().insert(\\\"g\\\",\\\".domain\\\").attr(\\\"class\\\",\\\"tick\\\").style(\\\"opacity\\\",Da),v=ua.transition(p.exit()).style(\\\"opacity\\\",Da).remove(),m=ua.transition(p.order()).style(\\\"opacity\\\",1),y=Math.max(i,0)+a,b=Yi(h),_=c.selectAll(\\\".domain\\\").data([0]),w=(_.enter().append(\\\"path\\\").attr(\\\"class\\\",\\\"domain\\\"),ua.transition(_));g.append(\\\"line\\\"),g.append(\\\"text\\\");var A,k,M,T,E=g.select(\\\"line\\\"),L=m.select(\\\"line\\\"),S=p.select(\\\"text\\\").text(d),C=g.select(\\\"text\\\"),P=m.select(\\\"text\\\"),z=\\\"top\\\"===n||\\\"left\\\"===n?-1:1;if(\\\"bottom\\\"===n||\\\"top\\\"===n?(t=na,A=\\\"x\\\",M=\\\"y\\\",k=\\\"x2\\\",T=\\\"y2\\\",S.attr(\\\"dy\\\",0>z?\\\"0em\\\":\\\".71em\\\").style(\\\"text-anchor\\\",\\\"middle\\\"),w.attr(\\\"d\\\",\\\"M\\\"+b[0]+\\\",\\\"+z*o+\\\"V0H\\\"+b[1]+\\\"V\\\"+z*o)):(t=ia,A=\\\"y\\\",M=\\\"x\\\",k=\\\"y2\\\",T=\\\"x2\\\",S.attr(\\\"dy\\\",\\\".32em\\\").style(\\\"text-anchor\\\",0>z?\\\"end\\\":\\\"start\\\"),w.attr(\\\"d\\\",\\\"M\\\"+z*o+\\\",\\\"+b[0]+\\\"H0V\\\"+b[1]+\\\"H\\\"+z*o)),E.attr(T,z*i),C.attr(M,z*y),L.attr(k,0).attr(T,z*i),P.attr(A,0).attr(M,z*y),h.rangeBand){var R=h,O=R.rangeBand()/2;u=h=function(t){return R(t)+O}}else u.rangeBand?u=h:v.call(t,h,u);g.call(t,u,h),m.call(t,h,h)})}var e,r=ua.scale.linear(),n=Xl,i=6,o=6,a=3,s=[10],l=null;return t.scale=function(e){return arguments.length?(r=e,t):r},t.orient=function(e){return arguments.length?(n=e in Wl?e+\\\"\\\":Xl,t):n},t.ticks=function(){return arguments.length?(s=fa(arguments),t):s},t.tickValues=function(e){return arguments.length?(l=e,t):l},t.tickFormat=function(r){return arguments.length?(e=r,t):e},t.tickSize=function(e){var r=arguments.length;return r?(i=+e,o=+arguments[r-1],t):i},t.innerTickSize=function(e){return arguments.length?(i=+e,t):i},t.outerTickSize=function(e){return arguments.length?(o=+e,t):o},t.tickPadding=function(e){return arguments.length?(a=+e,t):a},t.tickSubdivide=function(){return arguments.length&&t},t};var Xl=\\\"bottom\\\",Wl={top:1,right:1,bottom:1,left:1};ua.svg.brush=function(){function t(n){n.each(function(){var n=ua.select(this).style(\\\"pointer-events\\\",\\\"all\\\").style(\\\"-webkit-tap-highlight-color\\\",\\\"rgba(0,0,0,0)\\\").on(\\\"mousedown.brush\\\",o).on(\\\"touchstart.brush\\\",o),a=n.selectAll(\\\".background\\\").data([0]);a.enter().append(\\\"rect\\\").attr(\\\"class\\\",\\\"background\\\").style(\\\"visibility\\\",\\\"hidden\\\").style(\\\"cursor\\\",\\\"crosshair\\\"),n.selectAll(\\\".extent\\\").data([0]).enter().append(\\\"rect\\\").attr(\\\"class\\\",\\\"extent\\\").style(\\\"cursor\\\",\\\"move\\\");var s=n.selectAll(\\\".resize\\\").data(g,x);s.exit().remove(),s.enter().append(\\\"g\\\").attr(\\\"class\\\",function(t){return\\\"resize \\\"+t}).style(\\\"cursor\\\",function(t){return Zl[t]}).append(\\\"rect\\\").attr(\\\"x\\\",function(t){return/[ew]$/.test(t)?-3:null}).attr(\\\"y\\\",function(t){return/^[ns]/.test(t)?-3:null}).attr(\\\"width\\\",6).attr(\\\"height\\\",6).style(\\\"visibility\\\",\\\"hidden\\\"),s.style(\\\"display\\\",t.empty()?\\\"none\\\":null);var l,h=ua.transition(n),f=ua.transition(a);c&&(l=Yi(c),f.attr(\\\"x\\\",l[0]).attr(\\\"width\\\",l[1]-l[0]),r(h)),u&&(l=Yi(u),f.attr(\\\"y\\\",l[0]).attr(\\\"height\\\",l[1]-l[0]),i(h)),e(h)})}function e(t){t.selectAll(\\\".resize\\\").attr(\\\"transform\\\",function(t){return\\\"translate(\\\"+h[+/e$/.test(t)]+\\\",\\\"+f[+/^s/.test(t)]+\\\")\\\"})}function r(t){t.select(\\\".extent\\\").attr(\\\"x\\\",h[0]),t.selectAll(\\\".extent,.n>rect,.s>rect\\\").attr(\\\"width\\\",h[1]-h[0])}function i(t){t.select(\\\".extent\\\").attr(\\\"y\\\",f[0]),t.selectAll(\\\".extent,.e>rect,.w>rect\\\").attr(\\\"height\\\",f[1]-f[0])}function o(){function o(){32==ua.event.keyCode&&(S||(b=null,P[0]-=h[1],P[1]-=f[1],S=2),T())}function g(){32==ua.event.keyCode&&2==S&&(P[0]+=h[1],P[1]+=f[1],S=0,T())}function v(){var t=ua.mouse(_),n=!1;x&&(t[0]+=x[0],t[1]+=x[1]),S||(ua.event.altKey?(b||(b=[(h[0]+h[1])/2,(f[0]+f[1])/2]),P[0]=h[+(t[0]<b[0])],P[1]=f[+(t[1]<b[1])]):b=null),E&&m(t,c,0)&&(r(k),n=!0),L&&m(t,u,1)&&(i(k),n=!0),n&&(e(k),A({type:\\\"brush\\\",mode:S?\\\"move\\\":\\\"resize\\\"}))}function m(t,e,r){var n,i,o=Yi(e),l=o[0],c=o[1],u=P[r],g=r?f:h,v=g[1]-g[0];return S&&(l-=u,c-=v+u),n=(r?p:d)?Math.max(l,Math.min(c,t[r])):t[r],S?i=(n+=u)+v:(b&&(u=Math.max(l,Math.min(c,2*b[r]-n))),n>u?(i=n,n=u):i=u),g[0]!=n||g[1]!=i?(r?s=null:a=null,g[0]=n,g[1]=i,!0):void 0}function y(){v(),k.style(\\\"pointer-events\\\",\\\"all\\\").selectAll(\\\".resize\\\").style(\\\"display\\\",t.empty()?\\\"none\\\":null),ua.select(\\\"body\\\").style(\\\"cursor\\\",null),z.on(\\\"mousemove.brush\\\",null).on(\\\"mouseup.brush\\\",null).on(\\\"touchmove.brush\\\",null).on(\\\"touchend.brush\\\",null).on(\\\"keydown.brush\\\",null).on(\\\"keyup.brush\\\",null),C(),A({type:\\\"brushend\\\"})}var b,x,_=this,w=ua.select(ua.event.target),A=l.of(_,arguments),k=ua.select(_),M=w.datum(),E=!/^(n|s)$/.test(M)&&c,L=!/^(e|w)$/.test(M)&&u,S=w.classed(\\\"extent\\\"),C=K(_),P=ua.mouse(_),z=ua.select(n(_)).on(\\\"keydown.brush\\\",o).on(\\\"keyup.brush\\\",g);if(ua.event.changedTouches?z.on(\\\"touchmove.brush\\\",v).on(\\\"touchend.brush\\\",y):z.on(\\\"mousemove.brush\\\",v).on(\\\"mouseup.brush\\\",y),k.interrupt().selectAll(\\\"*\\\").interrupt(),S)P[0]=h[0]-P[0],P[1]=f[0]-P[1];else if(M){var R=+/w$/.test(M),O=+/^n/.test(M);x=[h[1-R]-P[0],f[1-O]-P[1]],P[0]=h[R],P[1]=f[O]}else ua.event.altKey&&(b=P.slice());k.style(\\\"pointer-events\\\",\\\"none\\\").selectAll(\\\".resize\\\").style(\\\"display\\\",null),ua.select(\\\"body\\\").style(\\\"cursor\\\",w.style(\\\"cursor\\\")),A({type:\\\"brushstart\\\"}),v()}var a,s,l=L(t,\\\"brushstart\\\",\\\"brush\\\",\\\"brushend\\\"),c=null,u=null,h=[0,0],f=[0,0],d=!0,p=!0,g=$l[0];return t.event=function(t){t.each(function(){var t=l.of(this,arguments),e={x:h,y:f,i:a,j:s},r=this.__chart__||e;this.__chart__=e,Vl?ua.select(this).transition().each(\\\"start.brush\\\",function(){a=r.i,s=r.j,h=r.x,f=r.y,t({type:\\\"brushstart\\\"})}).tween(\\\"brush:brush\\\",function(){var r=wn(h,e.x),n=wn(f,e.y);return a=s=null,function(i){h=e.x=r(i),f=e.y=n(i),t({type:\\\"brush\\\",mode:\\\"resize\\\"})}}).each(\\\"end.brush\\\",function(){a=e.i,s=e.j,t({type:\\\"brush\\\",mode:\\\"resize\\\"}),t({type:\\\"brushend\\\"})}):(t({type:\\\"brushstart\\\"}),t({type:\\\"brush\\\",mode:\\\"resize\\\"}),t({type:\\\"brushend\\\"}))})},t.x=function(e){return arguments.length?(c=e,g=$l[!c<<1|!u],t):c},t.y=function(e){return arguments.length?(u=e,g=$l[!c<<1|!u],t):u},t.clamp=function(e){return arguments.length?(c&&u?(d=!!e[0],p=!!e[1]):c?d=!!e:u&&(p=!!e),t):c&&u?[d,p]:c?d:u?p:null},t.extent=function(e){var r,n,i,o,l;return arguments.length?(c&&(r=e[0],n=e[1],u&&(r=r[0],n=n[0]),a=[r,n],c.invert&&(r=c(r),n=c(n)),r>n&&(l=r,r=n,n=l),r==h[0]&&n==h[1]||(h=[r,n])),u&&(i=e[0],o=e[1],c&&(i=i[1],o=o[1]),s=[i,o],u.invert&&(i=u(i),o=u(o)),i>o&&(l=i,i=o,o=l),i==f[0]&&o==f[1]||(f=[i,o])),t):(c&&(a?(r=a[0],n=a[1]):(r=h[0],n=h[1],c.invert&&(r=c.invert(r),n=c.invert(n)),r>n&&(l=r,r=n,n=l))),u&&(s?(i=s[0],o=s[1]):(i=f[0],o=f[1],u.invert&&(i=u.invert(i),o=u.invert(o)),i>o&&(l=i,i=o,o=l))),c&&u?[[r,i],[n,o]]:c?[r,n]:u&&[i,o])},t.clear=function(){return t.empty()||(h=[0,0],f=[0,0],a=s=null),t},t.empty=function(){return!!c&&h[0]==h[1]||!!u&&f[0]==f[1]},ua.rebind(t,l,\\\"on\\\")};var Zl={n:\\\"ns-resize\\\",e:\\\"ew-resize\\\",s:\\\"ns-resize\\\",w:\\\"ew-resize\\\",nw:\\\"nwse-resize\\\",ne:\\\"nesw-resize\\\",se:\\\"nwse-resize\\\",sw:\\\"nesw-resize\\\"},$l=[[\\\"n\\\",\\\"e\\\",\\\"s\\\",\\\"w\\\",\\\"nw\\\",\\\"ne\\\",\\\"se\\\",\\\"sw\\\"],[\\\"e\\\",\\\"w\\\"],[\\\"n\\\",\\\"s\\\"],[]],Kl=vs.format=ws.timeFormat,Ql=Kl.utc,Jl=Ql(\\\"%Y-%m-%dT%H:%M:%S.%LZ\\\");Kl.iso=Date.prototype.toISOString&&+new Date(\\\"2000-01-01T00:00:00.000Z\\\")?oa:Jl,oa.parse=function(t){var e=new Date(t);return isNaN(e)?null:e},oa.toString=Jl.toString,vs.second=Vt(function(t){return new ms(1e3*Math.floor(t/1e3))},function(t,e){t.setTime(t.getTime()+1e3*Math.floor(e))},function(t){return t.getSeconds()}),vs.seconds=vs.second.range,vs.seconds.utc=vs.second.utc.range,vs.minute=Vt(function(t){return new ms(6e4*Math.floor(t/6e4))},function(t,e){t.setTime(t.getTime()+6e4*Math.floor(e))},function(t){return t.getMinutes()}),vs.minutes=vs.minute.range,vs.minutes.utc=vs.minute.utc.range,vs.hour=Vt(function(t){var e=t.getTimezoneOffset()/60;return new ms(36e5*(Math.floor(t/36e5-e)+e))},function(t,e){t.setTime(t.getTime()+36e5*Math.floor(e))},function(t){return t.getHours()}),vs.hours=vs.hour.range,vs.hours.utc=vs.hour.utc.range,vs.month=Vt(function(t){return t=vs.day(t),t.setDate(1),t},function(t,e){t.setMonth(t.getMonth()+e)},function(t){return t.getMonth()}),vs.months=vs.month.range,vs.months.utc=vs.month.utc.range;var tc=[1e3,5e3,15e3,3e4,6e4,3e5,9e5,18e5,36e5,108e5,216e5,432e5,864e5,1728e5,6048e5,2592e6,7776e6,31536e6],ec=[[vs.second,1],[vs.second,5],[vs.second,15],[vs.second,30],[vs.minute,1],[vs.minute,5],[vs.minute,15],[vs.minute,30],[vs.hour,1],[vs.hour,3],[vs.hour,6],[vs.hour,12],[vs.day,1],[vs.day,2],[vs.week,1],[vs.month,1],[vs.month,3],[vs.year,1]],rc=Kl.multi([[\\\".%L\\\",function(t){return t.getMilliseconds()}],[\\\":%S\\\",function(t){return t.getSeconds()}],[\\\"%I:%M\\\",function(t){return t.getMinutes()}],[\\\"%I %p\\\",function(t){return t.getHours()}],[\\\"%a %d\\\",function(t){return t.getDay()&&1!=t.getDate()}],[\\\"%b %d\\\",function(t){return 1!=t.getDate()}],[\\\"%B\\\",function(t){return t.getMonth()}],[\\\"%Y\\\",Pe]]),nc={range:function(t,e,r){return ua.range(Math.ceil(t/r)*r,+e,r).map(sa)},floor:x,ceil:x};ec.year=vs.year,vs.scale=function(){return aa(ua.scale.linear(),ec,rc)};var ic=ec.map(function(t){return[t[0].utc,t[1]]}),oc=Ql.multi([[\\\".%L\\\",function(t){return t.getUTCMilliseconds()}],[\\\":%S\\\",function(t){return t.getUTCSeconds()}],[\\\"%I:%M\\\",function(t){return t.getUTCMinutes()}],[\\\"%I %p\\\",function(t){return t.getUTCHours()}],[\\\"%a %d\\\",function(t){return t.getUTCDay()&&1!=t.getUTCDate()}],[\\\"%b %d\\\",function(t){return 1!=t.getUTCDate()}],[\\\"%B\\\",function(t){return t.getUTCMonth()}],[\\\"%Y\\\",Pe]]);ic.year=vs.year.utc,vs.scale.utc=function(){return aa(ua.scale.linear(),ic,oc)},ua.text=St(function(t){return t.responseText}),ua.json=function(t,e){return Ct(t,\\\"application/json\\\",la,e)},ua.html=function(t,e){return Ct(t,\\\"text/html\\\",ca,e)},ua.xml=St(function(t){return t.responseXML}),\\\"function\\\"==typeof t&&t.amd?(this.d3=ua,t(ua)):\\\"object\\\"==typeof r&&r.exports?r.exports=ua:this.d3=ua}()},{}],71:[function(t,e,r){\\\"use strict\\\";function n(t,e){this.point=t,this.index=e}function i(t,e){for(var r=t.point,n=e.point,i=r.length,o=0;i>o;++o){var a=n[o]-r[o];if(a)return a}return 0}function o(t,e,r){if(1===t)return r?[[-1,0]]:[];var n=e.map(function(t,e){return[t[0],e]});n.sort(function(t,e){return t[0]-e[0]});for(var i=new Array(t-1),o=1;t>o;++o){var a=n[o-1],s=n[o];i[o-1]=[a[1],s[1]]}return r&&i.push([-1,i[0][1]],[i[t-1][1],-1]),i}function a(t,e){var r=t.length;if(0===r)return[];var a=t[0].length;if(1>a)return[];if(1===a)return o(r,t,e);for(var c=new Array(r),u=1,h=0;r>h;++h){for(var f=t[h],d=new Array(a+1),p=0,g=0;a>g;++g){var v=f[g];d[g]=v,p+=v*v}d[a]=p,c[h]=new n(d,h),u=Math.max(p,u)}l(c,i),r=c.length;for(var m=new Array(r+a+1),y=new Array(r+a+1),b=(a+1)*(a+1)*u,x=new Array(a+1),h=0;a>=h;++h)x[h]=0;x[a]=b,m[0]=x.slice(),y[0]=-1;for(var h=0;a>=h;++h){var d=x.slice();d[h]=1,m[h+1]=d,y[h+1]=-1}for(var h=0;r>h;++h){var _=c[h];m[h+a+1]=_.point,y[h+a+1]=_.index}var w=s(m,!1);if(w=e?w.filter(function(t){for(var e=0,r=0;a>=r;++r){var n=y[t[r]];if(0>n&&++e>=2)return!1;t[r]=n}return!0}):w.filter(function(t){for(var e=0;a>=e;++e){var r=y[t[e]];if(0>r)return!1;t[e]=r}return!0}),1&a)for(var h=0;h<w.length;++h){var _=w[h],d=_[0];_[0]=_[1],_[1]=d}return w}var s=t(\\\"incremental-convex-hull\\\"),l=t(\\\"uniq\\\");e.exports=a},{\\\"incremental-convex-hull\\\":193,uniq:236}],72:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){var i=0|t[r];if(0>=i)return[];var o,a=new Array(i);if(r===t.length-1)for(o=0;i>o;++o)a[o]=e;else for(o=0;i>o;++o)a[o]=n(t,e,r+1);return a}function i(t,e){var r,n;for(r=new Array(t),n=0;t>n;++n)r[n]=e;return r}function o(t,e){switch(\\\"undefined\\\"==typeof e&&(e=0),typeof t){case\\\"number\\\":if(t>0)return i(0|t,e);break;case\\\"object\\\":if(\\\"number\\\"==typeof t.length)return n(t,e,0)}return[]}e.exports=o},{}],73:[function(e,r,n){(function(n,i){(function(){\\\"use strict\\\";function o(t){return\\\"function\\\"==typeof t||\\\"object\\\"==typeof t&&null!==t}function a(t){return\\\"function\\\"==typeof t}function s(t){Y=t}function l(t){$=t}function c(){return function(){n.nextTick(p)}}function u(){return function(){G(p)}}function h(){var t=0,e=new J(p),r=document.createTextNode(\\\"\\\");return e.observe(r,{characterData:!0}),function(){r.data=t=++t%2}}function f(){var t=new MessageChannel;return t.port1.onmessage=p,function(){t.port2.postMessage(0)}}function d(){return function(){setTimeout(p,1)}}function p(){for(var t=0;Z>t;t+=2){var e=rt[t],r=rt[t+1];e(r),rt[t]=void 0,rt[t+1]=void 0}Z=0}function g(){try{var t=e,r=t(\\\"vertx\\\");return G=r.runOnLoop||r.runOnContext,u()}catch(n){return d()}}function v(t,e){var r=this,n=r._state;if(n===at&&!t||n===st&&!e)return this;var i=new this.constructor(y),o=r._result;if(n){var a=arguments[n-1];$(function(){O(n,i,a,o)})}else C(r,i,t,e);return i}function m(t){var e=this;if(t&&\\\"object\\\"==typeof t&&t.constructor===e)return t;var r=new e(y);return T(r,t),r}function y(){}function b(){return new TypeError(\\\"You cannot resolve a promise with itself\\\")}function x(){return new TypeError(\\\"A promises callback cannot return that same promise.\\\")}function _(t){try{return t.then}catch(e){return lt.error=e,lt}}function w(t,e,r,n){try{t.call(e,r,n)}catch(i){return i}}function A(t,e,r){$(function(t){var n=!1,i=w(r,e,function(r){n||(n=!0,e!==r?T(t,r):L(t,r))},function(e){n||(n=!0,S(t,e))},\\\"Settle: \\\"+(t._label||\\\" unknown promise\\\"));!n&&i&&(n=!0,S(t,i))},t)}function k(t,e){e._state===at?L(t,e._result):e._state===st?S(t,e._result):C(e,void 0,function(e){T(t,e)},function(e){S(t,e)})}function M(t,e,r){e.constructor===t.constructor&&r===nt&&constructor.resolve===it?k(t,e):r===lt?S(t,lt.error):void 0===r?L(t,e):a(r)?A(t,e,r):L(t,e)}function T(t,e){t===e?S(t,b()):o(e)?M(t,e,_(e)):L(t,e)}function E(t){t._onerror&&t._onerror(t._result),P(t)}function L(t,e){t._state===ot&&(t._result=e,t._state=at,0!==t._subscribers.length&&$(P,t))}function S(t,e){t._state===ot&&(t._state=st,t._result=e,$(E,t))}function C(t,e,r,n){var i=t._subscribers,o=i.length;t._onerror=null,i[o]=e,i[o+at]=r,i[o+st]=n,0===o&&t._state&&$(P,t)}function P(t){var e=t._subscribers,r=t._state;if(0!==e.length){for(var n,i,o=t._result,a=0;a<e.length;a+=3)n=e[a],i=e[a+r],n?O(r,n,i,o):i(o);t._subscribers.length=0}}function z(){this.error=null}function R(t,e){try{return t(e)}catch(r){return ct.error=r,ct}}function O(t,e,r,n){var i,o,s,l,c=a(r);if(c){if(i=R(r,n),i===ct?(l=!0,o=i.error,i=null):s=!0,e===i)return void S(e,x())}else i=n,s=!0;e._state!==ot||(c&&s?T(e,i):l?S(e,o):t===at?L(e,i):t===st&&S(e,i))}function I(t,e){try{e(function(e){T(t,e)},function(e){S(t,e)})}catch(r){S(t,r)}}function N(t){return new gt(this,t).promise}function j(t){function e(t){T(i,t)}function r(t){S(i,t)}var n=this,i=new n(y);if(!W(t))return S(i,new TypeError(\\\"You must pass an array to race.\\\")),i;for(var o=t.length,a=0;i._state===ot&&o>a;a++)C(n.resolve(t[a]),void 0,e,r);return i}function F(t){var e=this,r=new e(y);return S(r,t),r}function D(){throw new TypeError(\\\"You must pass a resolver function as the first argument to the promise constructor\\\")}function B(){throw new TypeError(\\\"Failed to construct 'Promise': Please use the 'new' operator, this object constructor cannot be called as a function.\\\")}function U(t){this._id=dt++,this._state=void 0,this._result=void 0,this._subscribers=[],y!==t&&(\\\"function\\\"!=typeof t&&D(),this instanceof U?I(this,t):B())}function V(t,e){this._instanceConstructor=t,this.promise=new t(y),Array.isArray(e)?(this._input=e,this.length=e.length,this._remaining=e.length,this._result=new Array(this.length),0===this.length?L(this.promise,this._result):(this.length=this.length||0,this._enumerate(),0===this._remaining&&L(this.promise,this._result))):S(this.promise,this._validationError())}function q(){var t;if(\\\"undefined\\\"!=typeof i)t=i;else if(\\\"undefined\\\"!=typeof self)t=self;else try{t=Function(\\\"return this\\\")()}catch(e){throw new Error(\\\"polyfill failed because global object is unavailable in this environment\\\")}var r=t.Promise;r&&\\\"[object Promise]\\\"===Object.prototype.toString.call(r.resolve())&&!r.cast||(t.Promise=pt)}var H;H=Array.isArray?Array.isArray:function(t){return\\\"[object Array]\\\"===Object.prototype.toString.call(t)};var G,Y,X,W=H,Z=0,$=function(t,e){rt[Z]=t,rt[Z+1]=e,Z+=2,2===Z&&(Y?Y(p):X())},K=\\\"undefined\\\"!=typeof window?window:void 0,Q=K||{},J=Q.MutationObserver||Q.WebKitMutationObserver,tt=\\\"undefined\\\"!=typeof n&&\\\"[object process]\\\"==={}.toString.call(n),et=\\\"undefined\\\"!=typeof Uint8ClampedArray&&\\\"undefined\\\"!=typeof importScripts&&\\\"undefined\\\"!=typeof MessageChannel,rt=new Array(1e3);X=tt?c():J?h():et?f():void 0===K&&\\\"function\\\"==typeof e?g():d();var nt=v,it=m,ot=void 0,at=1,st=2,lt=new z,ct=new z,ut=N,ht=j,ft=F,dt=0,pt=U;U.all=ut,U.race=ht,U.resolve=it,U.reject=ft,U._setScheduler=s,U._setAsap=l,U._asap=$,U.prototype={constructor:U,then:nt,\\\"catch\\\":function(t){return this.then(null,t)}};var gt=V;V.prototype._validationError=function(){return new Error(\\\"Array Methods must be provided an Array\\\")},V.prototype._enumerate=function(){for(var t=this.length,e=this._input,r=0;this._state===ot&&t>r;r++)this._eachEntry(e[r],r)},V.prototype._eachEntry=function(t,e){var r=this._instanceConstructor,n=r.resolve;if(n===it){var i=_(t);if(i===nt&&t._state!==ot)this._settledAt(t._state,e,t._result);else if(\\\"function\\\"!=typeof i)this._remaining--,this._result[e]=t;else if(r===pt){var o=new r(y);M(o,t,i),this._willSettleAt(o,e)}else this._willSettleAt(new r(function(e){e(t)}),e)}else this._willSettleAt(n(t),e)},V.prototype._settledAt=function(t,e,r){var n=this.promise;n._state===ot&&(this._remaining--,t===st?S(n,r):this._result[e]=r),0===this._remaining&&L(n,this._result)},V.prototype._willSettleAt=function(t,e){var r=this;C(t,void 0,function(t){r._settledAt(at,e,t)},function(t){r._settledAt(st,e,t)})};var vt=q,mt={Promise:pt,polyfill:vt};\\\"function\\\"==typeof t&&t.amd?t(function(){return mt}):\\\"undefined\\\"!=typeof r&&r.exports?r.exports=mt:\\\"undefined\\\"!=typeof this&&(this.ES6Promise=mt),vt()}).call(this)}).call(this,e(\\\"_process\\\"),\\\"undefined\\\"!=typeof global?global:\\\"undefined\\\"!=typeof self?self:\\\"undefined\\\"!=typeof window?window:{})},{_process:55}],74:[function(t,e,r){\\\"use strict\\\";function n(t){for(var e,r=t.length,n=0;r>n;n++)if(e=t.charCodeAt(n),(9>e||e>13)&&32!==e&&133!==e&&160!==e&&5760!==e&&6158!==e&&(8192>e||e>8205)&&8232!==e&&8233!==e&&8239!==e&&8287!==e&&8288!==e&&12288!==e&&65279!==e)return!1;return!0}e.exports=function(t){var e=typeof t;if(\\\"string\\\"===e){var r=t;if(t=+t,0===t&&n(r))return!1}else if(\\\"number\\\"!==e)return!1;return 1>t-t}},{}],75:[function(t,e,r){\\\"use strict\\\";function n(t,e,r,n,i){this.gl=t,this.type=e,this.handle=r,this.length=n,this.usage=i}function i(t,e,r,n,i,o){var a=i.length*i.BYTES_PER_ELEMENT;if(0>o)return t.bufferData(e,i,n),a;if(a+o>r)throw new Error(\\\"gl-buffer: If resizing buffer, must not specify offset\\\");return t.bufferSubData(e,o,i),r}function o(t,e){for(var r=l.malloc(t.length,e),n=t.length,i=0;n>i;++i)r[i]=t[i];return r}function a(t,e){for(var r=1,n=e.length-1;n>=0;--n){if(e[n]!==r)return!1;r*=t[n]}return!0}function s(t,e,r,i){if(r=r||t.ARRAY_BUFFER,i=i||t.DYNAMIC_DRAW,r!==t.ARRAY_BUFFER&&r!==t.ELEMENT_ARRAY_BUFFER)throw new Error(\\\"gl-buffer: Invalid type for webgl buffer, must be either gl.ARRAY_BUFFER or gl.ELEMENT_ARRAY_BUFFER\\\");if(i!==t.DYNAMIC_DRAW&&i!==t.STATIC_DRAW&&i!==t.STREAM_DRAW)throw new Error(\\\"gl-buffer: Invalid usage for buffer, must be either gl.DYNAMIC_DRAW, gl.STATIC_DRAW or gl.STREAM_DRAW\\\");var o=t.createBuffer(),a=new n(t,r,o,0,i);return a.update(e),a}var l=t(\\\"typedarray-pool\\\"),c=t(\\\"ndarray-ops\\\"),u=t(\\\"ndarray\\\"),h=[\\\"uint8\\\",\\\"uint8_clamped\\\",\\\"uint16\\\",\\\"uint32\\\",\\\"int8\\\",\\\"int16\\\",\\\"int32\\\",\\\"float32\\\"],f=n.prototype;f.bind=function(){this.gl.bindBuffer(this.type,this.handle)},f.unbind=function(){this.gl.bindBuffer(this.type,null)},f.dispose=function(){this.gl.deleteBuffer(this.handle)},f.update=function(t,e){if(\\\"number\\\"!=typeof e&&(e=-1),this.bind(),\\\"object\\\"==typeof t&&\\\"undefined\\\"!=typeof t.shape){var r=t.dtype;if(h.indexOf(r)<0&&(r=\\\"float32\\\"),this.type===this.gl.ELEMENT_ARRAY_BUFFER){var n=gl.getExtension(\\\"OES_element_index_uint\\\");r=n&&\\\"uint16\\\"!==r?\\\"uint32\\\":\\\"uint16\\\"}if(r===t.dtype&&a(t.shape,t.stride))0===t.offset&&t.data.length===t.shape[0]?this.length=i(this.gl,this.type,this.length,this.usage,t.data,e):this.length=i(this.gl,this.type,this.length,this.usage,t.data.subarray(t.offset,t.shape[0]),e);else{var s=l.malloc(t.size,r),f=u(s,t.shape);c.assign(f,t),0>e?this.length=i(this.gl,this.type,this.length,this.usage,s,e):this.length=i(this.gl,this.type,this.length,this.usage,s.subarray(0,t.size),e),l.free(s)}}else if(Array.isArray(t)){var d;d=this.type===this.gl.ELEMENT_ARRAY_BUFFER?o(t,\\\"uint16\\\"):o(t,\\\"float32\\\"),0>e?this.length=i(this.gl,this.type,this.length,this.usage,d,e):this.length=i(this.gl,this.type,this.length,this.usage,d.subarray(0,t.length),e),l.free(d)}else if(\\\"object\\\"==typeof t&&\\\"number\\\"==typeof t.length)this.length=i(this.gl,this.type,this.length,this.usage,t,e);else{if(\\\"number\\\"!=typeof t&&void 0!==t)throw new Error(\\\"gl-buffer: Invalid data type\\\");if(e>=0)throw new Error(\\\"gl-buffer: Cannot specify offset when resizing buffer\\\");t=0|t,0>=t&&(t=1),this.gl.bufferData(this.type,0|t,this.usage),this.length=t}},e.exports=s},{ndarray:210,\\\"ndarray-ops\\\":209,\\\"typedarray-pool\\\":235}],76:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){this.plot=t,this.shader=e,this.buffer=r,this.bounds=[1/0,1/0,-(1/0),-(1/0)],this.numPoints=0,this.color=[0,0,0,1]}function i(t,e){var r=o(t.gl,l.vertex,l.fragment),i=a(t.gl),s=new n(t,r,i);return s.update(e),t.addObject(s),s}var o=t(\\\"gl-shader\\\"),a=t(\\\"gl-buffer\\\"),s=t(\\\"typedarray-pool\\\"),l=t(\\\"./lib/shaders\\\");e.exports=i;var c=[[1,0,0,1,0,0],[1,0,0,-1,0,0],[-1,0,0,-1,0,0],[-1,0,0,-1,0,0],[-1,0,0,1,0,0],[1,0,0,1,0,0],[1,0,-1,0,0,1],[1,0,-1,0,0,-1],[1,0,1,0,0,-1],[1,0,1,0,0,-1],[1,0,1,0,0,1],[1,0,-1,0,0,1],[-1,0,-1,0,0,1],[-1,0,-1,0,0,-1],[-1,0,1,0,0,-1],[-1,0,1,0,0,-1],[-1,0,1,0,0,1],[-1,0,-1,0,0,1],[0,1,1,0,0,0],[0,1,-1,0,0,0],[0,-1,-1,0,0,0],[0,-1,-1,0,0,0],[0,1,1,0,0,0],[0,-1,1,0,0,0],[0,1,0,-1,1,0],[0,1,0,-1,-1,0],[0,1,0,1,-1,0],[0,1,0,1,1,0],[0,1,0,-1,1,0],[0,1,0,1,-1,0],[0,-1,0,-1,1,0],[0,-1,0,-1,-1,0],[0,-1,0,1,-1,0],[0,-1,0,1,1,0],[0,-1,0,-1,1,0],[0,-1,0,1,-1,0]],u=n.prototype;u.draw=function(){var t=[1,0,0,0,1,0,0,0,1],e=[1,1];return function(){var r=this.plot,n=this.shader,i=this.buffer,o=this.bounds,a=this.numPoints,s=(this.color,r.gl),l=r.dataBox,u=r.viewBox,h=r.pixelRatio,f=o[2]-o[0],d=o[3]-o[1],p=l[2]-l[0],g=l[3]-l[1];t[0]=2*f/p,t[4]=2*d/g,t[6]=2*(o[0]-l[0])/p-1,t[7]=2*(o[1]-l[1])/g-1;var v=u[2]-u[0],m=u[3]-u[1];e[0]=2*h/v,e[1]=2*h/m,i.bind(),n.bind(),n.uniforms.viewTransform=t,n.uniforms.pixelScale=e,n.uniforms.color=this.color,n.attributes.position.pointer(s.FLOAT,!1,16,0),n.attributes.pixelOffset.pointer(s.FLOAT,!1,16,8),s.drawArrays(s.TRIANGLES,0,a*c.length)}}(),u.drawPick=function(t){return t},u.pick=function(t,e){return null},u.update=function(t){t=t||{};var e=t.positions||[],r=t.errors||[],n=1;\\\"lineWidth\\\"in t&&(n=+t.lineWidth);var i=5;\\\"capSize\\\"in t&&(i=+t.capSize),this.color=(t.color||[0,0,0,1]).slice();for(var o=this.bounds=[1/0,1/0,-(1/0),-(1/0)],a=this.numPoints=e.length>>1,l=0;a>l;++l){var u=e[2*l],h=e[2*l+1];o[0]=Math.min(u,o[0]),o[1]=Math.min(h,o[1]),o[2]=Math.max(u,o[2]),o[3]=Math.max(h,o[3])}o[2]===o[0]&&(o[2]+=1),o[3]===o[1]&&(o[3]+=1);for(var f=1/(o[2]-o[0]),d=1/(o[3]-o[1]),p=o[0],g=o[1],v=s.mallocFloat32(a*c.length*4),m=0,l=0;a>l;++l)for(var u=e[2*l],h=e[2*l+1],y=r[4*l],b=r[4*l+1],x=r[4*l+2],_=r[4*l+3],w=0;w<c.length;++w){var A=c[w],k=A[0],M=A[1];0>k?k*=y:k>0&&(k*=b),0>M?M*=x:M>0&&(M*=_),v[m++]=f*(u-p+k),v[m++]=d*(h-g+M),v[m++]=n*A[2]+(i+n)*A[4],v[m++]=n*A[3]+(i+n)*A[5]}this.buffer.update(v),s.free(v)},u.dispose=function(){this.plot.removeObject(this),this.shader.dispose(),this.buffer.dispose()}},{\\\"./lib/shaders\\\":77,\\\"gl-buffer\\\":75,\\\"gl-shader\\\":154,\\\"typedarray-pool\\\":235}],77:[function(t,e,r){e.exports={vertex:\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nattribute vec2 position;\\\\nattribute vec2 pixelOffset;\\\\n\\\\nuniform mat3 viewTransform;\\\\nuniform vec2 pixelScale;\\\\n\\\\nvoid main() {\\\\n  vec3 scrPosition = viewTransform * vec3(position, 1);\\\\n  gl_Position = vec4(\\\\n    scrPosition.xy + scrPosition.z * pixelScale * pixelOffset,\\\\n    0,\\\\n    scrPosition.z);\\\\n}\\\\n\\\",\\n\",\n       \"fragment:\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nuniform vec4 color;\\\\n\\\\nvoid main() {\\\\n  gl_FragColor = vec4(color.rgb * color.a, color.a);\\\\n}\\\\n\\\"}},{}],78:[function(t,e,r){\\\"use strict\\\";function n(t,e,r,n){this.gl=t,this.shader=n,this.buffer=e,this.vao=r,this.pixelRatio=1,this.bounds=[[1/0,1/0,1/0],[-(1/0),-(1/0),-(1/0)]],this.clipBounds=[[-(1/0),-(1/0),-(1/0)],[1/0,1/0,1/0]],this.lineWidth=[1,1,1],this.capSize=[10,10,10],this.lineCount=[0,0,0],this.lineOffset=[0,0,0],this.opacity=1}function i(t,e){for(var r=0;3>r;++r)t[0][r]=Math.min(t[0][r],e[r]),t[1][r]=Math.max(t[1][r],e[r])}function o(t,e,r,n){for(var i=f[n],o=0;o<i.length;++o){var a=i[o];t.push(e[0],e[1],e[2],r[0],r[1],r[2],r[3],a[0],a[1],a[2])}return i.length}function a(t){var e=t.gl,r=s(e),i=l(e,[{buffer:r,type:e.FLOAT,size:3,offset:0,stride:40},{buffer:r,type:e.FLOAT,size:4,offset:12,stride:40},{buffer:r,type:e.FLOAT,size:3,offset:28,stride:40}]),o=c(e);o.attributes.position.location=0,o.attributes.color.location=1,o.attributes.offset.location=2;var a=new n(e,r,i,o);return a.update(t),a}e.exports=a;var s=t(\\\"gl-buffer\\\"),l=t(\\\"gl-vao\\\"),c=t(\\\"./shaders/index\\\"),u=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],h=n.prototype;h.isOpaque=function(){return this.opacity>=1},h.isTransparent=function(){return this.opacity<1},h.drawTransparent=h.draw=function(t){var e=this.gl,r=this.shader.uniforms;this.shader.bind();var n=r.view=t.view||u,i=r.projection=t.projection||u;r.model=t.model||u,r.clipBounds=this.clipBounds,r.opacity=this.opacity;var o=n[12],a=n[13],s=n[14],l=n[15],c=this.pixelRatio*(i[3]*o+i[7]*a+i[11]*s+i[15]*l)/e.drawingBufferHeight;this.vao.bind();for(var h=0;3>h;++h)e.lineWidth(this.lineWidth[h]),r.capSize=this.capSize[h]*c,e.drawArrays(e.LINES,this.lineOffset[h],this.lineCount[h]);this.vao.unbind()};var f=function(){for(var t=new Array(3),e=0;3>e;++e){for(var r=[],n=1;2>=n;++n)for(var i=-1;1>=i;i+=2){var o=(n+e)%3,a=[0,0,0];a[o]=i,r.push(a)}t[e]=r}return t}();h.update=function(t){t=t||{},\\\"lineWidth\\\"in t&&(this.lineWidth=t.lineWidth,Array.isArray(this.lineWidth)||(this.lineWidth=[this.lineWidth,this.lineWidth,this.lineWidth])),\\\"capSize\\\"in t&&(this.capSize=t.capSize,Array.isArray(this.capSize)||(this.capSize=[this.capSize,this.capSize,this.capSize])),\\\"opacity\\\"in t&&(this.opacity=t.opacity);var e=t.color||[[0,0,0],[0,0,0],[0,0,0]],r=t.position,n=t.error;if(Array.isArray(e[0])||(e=[e,e,e]),r&&n){var a=[],s=r.length,l=0;this.bounds=[[1/0,1/0,1/0],[-(1/0),-(1/0),-(1/0)]],this.lineCount=[0,0,0];for(var c=0;3>c;++c){this.lineOffset[c]=l;t:for(var u=0;s>u;++u){for(var h=r[u],f=0;3>f;++f)if(isNaN(h[f])||!isFinite(h[f]))continue t;var d=n[u],p=e[c];if(Array.isArray(p[0])&&(p=e[u]),3===p.length&&(p=[p[0],p[1],p[2],1]),!isNaN(d[0][c])&&!isNaN(d[1][c])){if(d[0][c]<0){var g=h.slice();g[c]+=d[0][c],a.push(h[0],h[1],h[2],p[0],p[1],p[2],p[3],0,0,0,g[0],g[1],g[2],p[0],p[1],p[2],p[3],0,0,0),i(this.bounds,g),l+=2+o(a,g,p,c)}if(d[1][c]>0){var g=h.slice();g[c]+=d[1][c],a.push(h[0],h[1],h[2],p[0],p[1],p[2],p[3],0,0,0,g[0],g[1],g[2],p[0],p[1],p[2],p[3],0,0,0),i(this.bounds,g),l+=2+o(a,g,p,c)}}}this.lineCount[c]=l-this.lineOffset[c]}this.buffer.update(a)}},h.dispose=function(){this.shader.dispose(),this.buffer.dispose(),this.vao.dispose()}},{\\\"./shaders/index\\\":79,\\\"gl-buffer\\\":75,\\\"gl-vao\\\":184}],79:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"gl-shader\\\"),i=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nattribute vec3 position, offset;\\\\nattribute vec4 color;\\\\nuniform mat4 model, view, projection;\\\\nuniform float capSize;\\\\nvarying vec4 fragColor;\\\\nvarying vec3 fragPosition;\\\\n\\\\nvoid main() {\\\\n  vec4 worldPosition  = model * vec4(position, 1.0);\\\\n  worldPosition       = (worldPosition / worldPosition.w) + vec4(capSize * offset, 0.0);\\\\n  gl_Position         = projection * view * worldPosition;\\\\n  fragColor           = color;\\\\n  fragPosition        = position;\\\\n}\\\",o=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\nuniform vec3 clipBounds[2];\\\\nuniform float opacity;\\\\nvarying vec3 fragPosition;\\\\nvarying vec4 fragColor;\\\\n\\\\nvoid main() {\\\\n  if(any(lessThan(fragPosition, clipBounds[0])) || any(greaterThan(fragPosition, clipBounds[1]))) {\\\\n    discard;\\\\n  }\\\\n  gl_FragColor = opacity * fragColor;\\\\n}\\\";e.exports=function(t){return n(t,i,o,null,[{name:\\\"position\\\",type:\\\"vec3\\\"},{name:\\\"offset\\\",type:\\\"vec3\\\"},{name:\\\"color\\\",type:\\\"vec4\\\"}])}},{\\\"gl-shader\\\":154}],80:[function(t,e,r){\\\"use strict\\\";function n(t){var e=t.getParameter(t.FRAMEBUFFER_BINDING),r=t.getParameter(t.RENDERBUFFER_BINDING),n=t.getParameter(t.TEXTURE_BINDING_2D);return[e,r,n]}function i(t,e){t.bindFramebuffer(t.FRAMEBUFFER,e[0]),t.bindRenderbuffer(t.RENDERBUFFER,e[1]),t.bindTexture(t.TEXTURE_2D,e[2])}function o(t,e){var r=t.getParameter(e.MAX_COLOR_ATTACHMENTS_WEBGL);y=new Array(r+1);for(var n=0;r>=n;++n){for(var i=new Array(r),o=0;n>o;++o)i[o]=t.COLOR_ATTACHMENT0+o;for(var o=n;r>o;++o)i[o]=t.NONE;y[n]=i}}function a(t){switch(t){case p:throw new Error(\\\"gl-fbo: Framebuffer unsupported\\\");case g:throw new Error(\\\"gl-fbo: Framebuffer incomplete attachment\\\");case v:throw new Error(\\\"gl-fbo: Framebuffer incomplete dimensions\\\");case m:throw new Error(\\\"gl-fbo: Framebuffer incomplete missing attachment\\\");default:throw new Error(\\\"gl-fbo: Framebuffer failed for unspecified reason\\\")}}function s(t,e,r,n,i,o){if(!n)return null;var a=d(t,e,r,i,n);return a.magFilter=t.NEAREST,a.minFilter=t.NEAREST,a.mipSamples=1,a.bind(),t.framebufferTexture2D(t.FRAMEBUFFER,o,t.TEXTURE_2D,a.handle,0),a}function l(t,e,r,n,i){var o=t.createRenderbuffer();return t.bindRenderbuffer(t.RENDERBUFFER,o),t.renderbufferStorage(t.RENDERBUFFER,n,e,r),t.framebufferRenderbuffer(t.FRAMEBUFFER,i,t.RENDERBUFFER,o),o}function c(t){var e=n(t.gl),r=t.gl,o=t.handle=r.createFramebuffer(),c=t._shape[0],u=t._shape[1],h=t.color.length,f=t._ext,d=t._useStencil,p=t._useDepth,g=t._colorType;r.bindFramebuffer(r.FRAMEBUFFER,o);for(var v=0;h>v;++v)t.color[v]=s(r,c,u,g,r.RGBA,r.COLOR_ATTACHMENT0+v);0===h?(t._color_rb=l(r,c,u,r.RGBA4,r.COLOR_ATTACHMENT0),f&&f.drawBuffersWEBGL(y[0])):h>1&&f.drawBuffersWEBGL(y[h]);var m=r.getExtension(\\\"WEBGL_depth_texture\\\");m?d?t.depth=s(r,c,u,m.UNSIGNED_INT_24_8_WEBGL,r.DEPTH_STENCIL,r.DEPTH_STENCIL_ATTACHMENT):p&&(t.depth=s(r,c,u,r.UNSIGNED_SHORT,r.DEPTH_COMPONENT,r.DEPTH_ATTACHMENT)):p&&d?t._depth_rb=l(r,c,u,r.DEPTH_STENCIL,r.DEPTH_STENCIL_ATTACHMENT):p?t._depth_rb=l(r,c,u,r.DEPTH_COMPONENT16,r.DEPTH_ATTACHMENT):d&&(t._depth_rb=l(r,c,u,r.STENCIL_INDEX,r.STENCIL_ATTACHMENT));var b=r.checkFramebufferStatus(r.FRAMEBUFFER);if(b!==r.FRAMEBUFFER_COMPLETE){t._destroyed=!0,r.bindFramebuffer(r.FRAMEBUFFER,null),r.deleteFramebuffer(t.handle),t.handle=null,t.depth&&(t.depth.dispose(),t.depth=null),t._depth_rb&&(r.deleteRenderbuffer(t._depth_rb),t._depth_rb=null);for(var v=0;v<t.color.length;++v)t.color[v].dispose(),t.color[v]=null;t._color_rb&&(r.deleteRenderbuffer(t._color_rb),t._color_rb=null),i(r,e),a(b)}i(r,e)}function u(t,e,r,n,i,o,a,s){this.gl=t,this._shape=[0|e,0|r],this._destroyed=!1,this._ext=s,this.color=new Array(i);for(var l=0;i>l;++l)this.color[l]=null;this._color_rb=null,this.depth=null,this._depth_rb=null,this._colorType=n,this._useDepth=o,this._useStencil=a;var u=this,h=[0|e,0|r];Object.defineProperties(h,{0:{get:function(){return u._shape[0]},set:function(t){return u.width=t}},1:{get:function(){return u._shape[1]},set:function(t){return u.height=t}}}),this._shapeVector=h,c(this)}function h(t,e,r){if(t._destroyed)throw new Error(\\\"gl-fbo: Can't resize destroyed FBO\\\");if(t._shape[0]!==e||t._shape[1]!==r){var o=t.gl,s=o.getParameter(o.MAX_RENDERBUFFER_SIZE);if(0>e||e>s||0>r||r>s)throw new Error(\\\"gl-fbo: Can't resize FBO, invalid dimensions\\\");t._shape[0]=e,t._shape[1]=r;for(var l=n(o),c=0;c<t.color.length;++c)t.color[c].shape=t._shape;t._color_rb&&(o.bindRenderbuffer(o.RENDERBUFFER,t._color_rb),o.renderbufferStorage(o.RENDERBUFFER,o.RGBA4,t._shape[0],t._shape[1])),t.depth&&(t.depth.shape=t._shape),t._depth_rb&&(o.bindRenderbuffer(o.RENDERBUFFER,t._depth_rb),t._useDepth&&t._useStencil?o.renderbufferStorage(o.RENDERBUFFER,o.DEPTH_STENCIL,t._shape[0],t._shape[1]):t._useDepth?o.renderbufferStorage(o.RENDERBUFFER,o.DEPTH_COMPONENT16,t._shape[0],t._shape[1]):t._useStencil&&o.renderbufferStorage(o.RENDERBUFFER,o.STENCIL_INDEX,t._shape[0],t._shape[1])),o.bindFramebuffer(o.FRAMEBUFFER,t.handle);var u=o.checkFramebufferStatus(o.FRAMEBUFFER);u!==o.FRAMEBUFFER_COMPLETE&&(t.dispose(),i(o,l),a(u)),i(o,l)}}function f(t,e,r,n){p||(p=t.FRAMEBUFFER_UNSUPPORTED,g=t.FRAMEBUFFER_INCOMPLETE_ATTACHMENT,v=t.FRAMEBUFFER_INCOMPLETE_DIMENSIONS,m=t.FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT);var i=t.getExtension(\\\"WEBGL_draw_buffers\\\");if(!y&&i&&o(t,i),Array.isArray(e)&&(n=r,r=0|e[1],e=0|e[0]),\\\"number\\\"!=typeof e)throw new Error(\\\"gl-fbo: Missing shape parameter\\\");var a=t.getParameter(t.MAX_RENDERBUFFER_SIZE);if(0>e||e>a||0>r||r>a)throw new Error(\\\"gl-fbo: Parameters are too large for FBO\\\");n=n||{};var s=1;if(\\\"color\\\"in n){if(s=Math.max(0|n.color,0),0>s)throw new Error(\\\"gl-fbo: Must specify a nonnegative number of colors\\\");if(s>1){if(!i)throw new Error(\\\"gl-fbo: Multiple draw buffer extension not supported\\\");if(s>t.getParameter(i.MAX_COLOR_ATTACHMENTS_WEBGL))throw new Error(\\\"gl-fbo: Context does not support \\\"+s+\\\" draw buffers\\\")}}var l=t.UNSIGNED_BYTE,c=t.getExtension(\\\"OES_texture_float\\\");if(n.float&&s>0){if(!c)throw new Error(\\\"gl-fbo: Context does not support floating point textures\\\");l=t.FLOAT}else n.preferFloat&&s>0&&c&&(l=t.FLOAT);var h=!0;\\\"depth\\\"in n&&(h=!!n.depth);var f=!1;return\\\"stencil\\\"in n&&(f=!!n.stencil),new u(t,e,r,l,s,h,f,i)}var d=t(\\\"gl-texture2d\\\");e.exports=f;var p,g,v,m,y=null,b=u.prototype;Object.defineProperties(b,{shape:{get:function(){return this._destroyed?[0,0]:this._shapeVector},set:function(t){if(Array.isArray(t)||(t=[0|t,0|t]),2!==t.length)throw new Error(\\\"gl-fbo: Shape vector must be length 2\\\");var e=0|t[0],r=0|t[1];return h(this,e,r),[e,r]},enumerable:!1},width:{get:function(){return this._destroyed?0:this._shape[0]},set:function(t){return t=0|t,h(this,t,this._shape[1]),t},enumerable:!1},height:{get:function(){return this._destroyed?0:this._shape[1]},set:function(t){return t=0|t,h(this,this._shape[0],t),t},enumerable:!1}}),b.bind=function(){if(!this._destroyed){var t=this.gl;t.bindFramebuffer(t.FRAMEBUFFER,this.handle),t.viewport(0,0,this._shape[0],this._shape[1])}},b.dispose=function(){if(!this._destroyed){this._destroyed=!0;var t=this.gl;t.deleteFramebuffer(this.handle),this.handle=null,this.depth&&(this.depth.dispose(),this.depth=null),this._depth_rb&&(t.deleteRenderbuffer(this._depth_rb),this._depth_rb=null);for(var e=0;e<this.color.length;++e)this.color[e].dispose(),this.color[e]=null;this._color_rb&&(t.deleteRenderbuffer(this._color_rb),this._color_rb=null)}}},{\\\"gl-texture2d\\\":180}],81:[function(t,e,r){r.lineVertex=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nfloat inverse_1_0(float m) {\\\\n  return 1.0 / m;\\\\n}\\\\n\\\\nmat2 inverse_1_0(mat2 m) {\\\\n  return mat2(m[1][1],-m[0][1],\\\\n             -m[1][0], m[0][0]) / (m[0][0]*m[1][1] - m[0][1]*m[1][0]);\\\\n}\\\\n\\\\nmat3 inverse_1_0(mat3 m) {\\\\n  float a00 = m[0][0], a01 = m[0][1], a02 = m[0][2];\\\\n  float a10 = m[1][0], a11 = m[1][1], a12 = m[1][2];\\\\n  float a20 = m[2][0], a21 = m[2][1], a22 = m[2][2];\\\\n\\\\n  float b01 = a22 * a11 - a12 * a21;\\\\n  float b11 = -a22 * a10 + a12 * a20;\\\\n  float b21 = a21 * a10 - a11 * a20;\\\\n\\\\n  float det = a00 * b01 + a01 * b11 + a02 * b21;\\\\n\\\\n  return mat3(b01, (-a22 * a01 + a02 * a21), (a12 * a01 - a02 * a11),\\\\n              b11, (a22 * a00 - a02 * a20), (-a12 * a00 + a02 * a10),\\\\n              b21, (-a21 * a00 + a01 * a20), (a11 * a00 - a01 * a10)) / det;\\\\n}\\\\n\\\\nmat4 inverse_1_0(mat4 m) {\\\\n  float\\\\n      a00 = m[0][0], a01 = m[0][1], a02 = m[0][2], a03 = m[0][3],\\\\n      a10 = m[1][0], a11 = m[1][1], a12 = m[1][2], a13 = m[1][3],\\\\n      a20 = m[2][0], a21 = m[2][1], a22 = m[2][2], a23 = m[2][3],\\\\n      a30 = m[3][0], a31 = m[3][1], a32 = m[3][2], a33 = m[3][3],\\\\n\\\\n      b00 = a00 * a11 - a01 * a10,\\\\n      b01 = a00 * a12 - a02 * a10,\\\\n      b02 = a00 * a13 - a03 * a10,\\\\n      b03 = a01 * a12 - a02 * a11,\\\\n      b04 = a01 * a13 - a03 * a11,\\\\n      b05 = a02 * a13 - a03 * a12,\\\\n      b06 = a20 * a31 - a21 * a30,\\\\n      b07 = a20 * a32 - a22 * a30,\\\\n      b08 = a20 * a33 - a23 * a30,\\\\n      b09 = a21 * a32 - a22 * a31,\\\\n      b10 = a21 * a33 - a23 * a31,\\\\n      b11 = a22 * a33 - a23 * a32,\\\\n\\\\n      det = b00 * b11 - b01 * b10 + b02 * b09 + b03 * b08 - b04 * b07 + b05 * b06;\\\\n\\\\n  return mat4(\\\\n      a11 * b11 - a12 * b10 + a13 * b09,\\\\n      a02 * b10 - a01 * b11 - a03 * b09,\\\\n      a31 * b05 - a32 * b04 + a33 * b03,\\\\n      a22 * b04 - a21 * b05 - a23 * b03,\\\\n      a12 * b08 - a10 * b11 - a13 * b07,\\\\n      a00 * b11 - a02 * b08 + a03 * b07,\\\\n      a32 * b02 - a30 * b05 - a33 * b01,\\\\n      a20 * b05 - a22 * b02 + a23 * b01,\\\\n      a10 * b10 - a11 * b08 + a13 * b06,\\\\n      a01 * b08 - a00 * b10 - a03 * b06,\\\\n      a30 * b04 - a31 * b02 + a33 * b00,\\\\n      a21 * b02 - a20 * b04 - a23 * b00,\\\\n      a11 * b07 - a10 * b09 - a12 * b06,\\\\n      a00 * b09 - a01 * b07 + a02 * b06,\\\\n      a31 * b01 - a30 * b03 - a32 * b00,\\\\n      a20 * b03 - a21 * b01 + a22 * b00) / det;\\\\n}\\\\n\\\\n\\\\n\\\\nattribute vec2 a, d;\\\\n\\\\nuniform mat3 matrix;\\\\nuniform vec2 screenShape;\\\\nuniform float width;\\\\n\\\\nvarying vec2 direction;\\\\n\\\\nvoid main() {\\\\n  vec2 dir = (matrix * vec3(d, 0)).xy;\\\\n  vec3 base = matrix * vec3(a, 1);\\\\n  vec2 n = 0.5 * width *\\\\n    normalize(screenShape.yx * vec2(dir.y, -dir.x)) / screenShape.xy;\\\\n  vec2 tangent = normalize(screenShape.xy * dir);\\\\n  if(dir.x < 0.0 || (dir.x == 0.0 && dir.y < 0.0)) {\\\\n    direction = -tangent;\\\\n  } else {\\\\n    direction = tangent;\\\\n  }\\\\n  gl_Position = vec4(base.xy/base.z + n, 0, 1);\\\\n}\\\\n\\\",r.lineFragment=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nuniform vec4 color;\\\\nuniform vec2 screenShape;\\\\nuniform sampler2D dashPattern;\\\\nuniform float dashLength;\\\\n\\\\nvarying vec2 direction;\\\\n\\\\nvoid main() {\\\\n  float t = fract(dot(direction, gl_FragCoord.xy) / dashLength);\\\\n  vec4 pcolor = color * texture2D(dashPattern, vec2(t, 0.0)).r;\\\\n  gl_FragColor = vec4(pcolor.rgb * pcolor.a, pcolor.a);\\\\n}\\\\n\\\",r.mitreVertex=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nattribute vec2 p;\\\\n\\\\nuniform mat3  matrix;\\\\nuniform vec2 screenShape;\\\\nuniform float radius;\\\\n\\\\nvoid main() {\\\\n  vec3 pp = matrix * vec3(p, 1);\\\\n  gl_Position  = vec4(pp.xy, 0, pp.z);\\\\n  gl_PointSize = radius;\\\\n}\\\\n\\\",r.mitreFragment=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nuniform vec4 color;\\\\n\\\\nvoid main() {\\\\n  if(length(gl_PointCoord.xy - 0.5) > 0.25) {\\\\n    discard;\\\\n  }\\\\n  gl_FragColor = vec4(color.rgb, color.a);\\\\n}\\\\n\\\",r.pickVertex=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nattribute vec2 a, d;\\\\nattribute vec4 pick0, pick1;\\\\n\\\\nuniform mat3 matrix;\\\\nuniform vec2 screenShape;\\\\nuniform float width;\\\\n\\\\nvarying vec4 pickA, pickB;\\\\n\\\\nfloat inverse_1_0(float m) {\\\\n  return 1.0 / m;\\\\n}\\\\n\\\\nmat2 inverse_1_0(mat2 m) {\\\\n  return mat2(m[1][1],-m[0][1],\\\\n             -m[1][0], m[0][0]) / (m[0][0]*m[1][1] - m[0][1]*m[1][0]);\\\\n}\\\\n\\\\nmat3 inverse_1_0(mat3 m) {\\\\n  float a00 = m[0][0], a01 = m[0][1], a02 = m[0][2];\\\\n  float a10 = m[1][0], a11 = m[1][1], a12 = m[1][2];\\\\n  float a20 = m[2][0], a21 = m[2][1], a22 = m[2][2];\\\\n\\\\n  float b01 = a22 * a11 - a12 * a21;\\\\n  float b11 = -a22 * a10 + a12 * a20;\\\\n  float b21 = a21 * a10 - a11 * a20;\\\\n\\\\n  float det = a00 * b01 + a01 * b11 + a02 * b21;\\\\n\\\\n  return mat3(b01, (-a22 * a01 + a02 * a21), (a12 * a01 - a02 * a11),\\\\n              b11, (a22 * a00 - a02 * a20), (-a12 * a00 + a02 * a10),\\\\n              b21, (-a21 * a00 + a01 * a20), (a11 * a00 - a01 * a10)) / det;\\\\n}\\\\n\\\\nmat4 inverse_1_0(mat4 m) {\\\\n  float\\\\n      a00 = m[0][0], a01 = m[0][1], a02 = m[0][2], a03 = m[0][3],\\\\n      a10 = m[1][0], a11 = m[1][1], a12 = m[1][2], a13 = m[1][3],\\\\n      a20 = m[2][0], a21 = m[2][1], a22 = m[2][2], a23 = m[2][3],\\\\n      a30 = m[3][0], a31 = m[3][1], a32 = m[3][2], a33 = m[3][3],\\\\n\\\\n      b00 = a00 * a11 - a01 * a10,\\\\n      b01 = a00 * a12 - a02 * a10,\\\\n      b02 = a00 * a13 - a03 * a10,\\\\n      b03 = a01 * a12 - a02 * a11,\\\\n      b04 = a01 * a13 - a03 * a11,\\\\n      b05 = a02 * a13 - a03 * a12,\\\\n      b06 = a20 * a31 - a21 * a30,\\\\n      b07 = a20 * a32 - a22 * a30,\\\\n      b08 = a20 * a33 - a23 * a30,\\\\n      b09 = a21 * a32 - a22 * a31,\\\\n      b10 = a21 * a33 - a23 * a31,\\\\n      b11 = a22 * a33 - a23 * a32,\\\\n\\\\n      det = b00 * b11 - b01 * b10 + b02 * b09 + b03 * b08 - b04 * b07 + b05 * b06;\\\\n\\\\n  return mat4(\\\\n      a11 * b11 - a12 * b10 + a13 * b09,\\\\n      a02 * b10 - a01 * b11 - a03 * b09,\\\\n      a31 * b05 - a32 * b04 + a33 * b03,\\\\n      a22 * b04 - a21 * b05 - a23 * b03,\\\\n      a12 * b08 - a10 * b11 - a13 * b07,\\\\n      a00 * b11 - a02 * b08 + a03 * b07,\\\\n      a32 * b02 - a30 * b05 - a33 * b01,\\\\n      a20 * b05 - a22 * b02 + a23 * b01,\\\\n      a10 * b10 - a11 * b08 + a13 * b06,\\\\n      a01 * b08 - a00 * b10 - a03 * b06,\\\\n      a30 * b04 - a31 * b02 + a33 * b00,\\\\n      a21 * b02 - a20 * b04 - a23 * b00,\\\\n      a11 * b07 - a10 * b09 - a12 * b06,\\\\n      a00 * b09 - a01 * b07 + a02 * b06,\\\\n      a31 * b01 - a30 * b03 - a32 * b00,\\\\n      a20 * b03 - a21 * b01 + a22 * b00) / det;\\\\n}\\\\n\\\\n\\\\n\\\\nvoid main() {\\\\n  vec3 base = matrix * vec3(a, 1);\\\\n  vec2 n = width *\\\\n    normalize(screenShape.yx * vec2(d.y, -d.x)) / screenShape.xy;\\\\n  gl_Position = vec4(base.xy/base.z + n, 0, 1);\\\\n  pickA = pick0;\\\\n  pickB = pick1;\\\\n}\\\\n\\\",r.pickFragment=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nuniform vec4 pickOffset;\\\\n\\\\nvarying vec4 pickA, pickB;\\\\n\\\\nvoid main() {\\\\n  vec4 fragId = vec4(pickA.xyz, 0.0);\\\\n  if(pickB.w > pickA.w) {\\\\n    fragId.xyz = pickB.xyz;\\\\n  }\\\\n\\\\n  fragId += pickOffset;\\\\n\\\\n  fragId.y += floor(fragId.x / 256.0);\\\\n  fragId.x -= floor(fragId.x / 256.0) * 256.0;\\\\n\\\\n  fragId.z += floor(fragId.y / 256.0);\\\\n  fragId.y -= floor(fragId.y / 256.0) * 256.0;\\\\n\\\\n  fragId.w += floor(fragId.z / 256.0);\\\\n  fragId.z -= floor(fragId.z / 256.0) * 256.0;\\\\n\\\\n  gl_FragColor = fragId / 255.0;\\\\n}\\\\n\\\",r.fillVertex=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nattribute vec2 a, d;\\\\n\\\\nuniform mat3 matrix;\\\\nuniform vec2 projectAxis;\\\\nuniform float projectValue;\\\\nuniform float depth;\\\\n\\\\nvoid main() {\\\\n  vec3 base = matrix * vec3(a, 1);\\\\n  vec2 p = base.xy / base.z;\\\\n  if(d.y < 0.0 || (d.y == 0.0 && d.x < 0.0)) {\\\\n    if(dot(p, projectAxis) < projectValue) {\\\\n      p = p * (1.0 - abs(projectAxis)) + projectAxis * projectValue;\\\\n    }\\\\n  }\\\\n  gl_Position = vec4(p, depth, 1);\\\\n}\\\\n\\\",r.fillFragment=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nuniform vec4 color;\\\\n\\\\nvoid main() {\\\\n  gl_FragColor = vec4(color.rgb * color.a, color.a);\\\\n}\\\\n\\\"},{}],82:[function(t,e,r){\\\"use strict\\\";function n(t,e,r,n,i,o,a,s){this.plot=t,this.dashPattern=e,this.lineBuffer=r,this.pickBuffer=n,this.lineShader=i,this.mitreShader=o,this.fillShader=a,this.pickShader=s,this.usingDashes=!1,this.bounds=[1/0,1/0,-(1/0),-(1/0)],this.width=1,this.color=[0,0,1,1],this.fill=[!1,!1,!1,!1],this.fillColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.data=null,this.numPoints=0,this.vertCount=0,this.pickOffset=0,this.lodBuffer=[]}function i(t){return t.map(function(t){return t.slice()})}function o(t,e){var r=t.gl,i=s(r),o=s(r),c=l(r,[1,1]),u=a(r,h.lineVertex,h.lineFragment),f=a(r,h.mitreVertex,h.mitreFragment),d=a(r,h.fillVertex,h.fillFragment),p=a(r,h.pickVertex,h.pickFragment),g=new n(t,c,i,o,u,f,d,p);return t.addObject(g),g.update(e),g}e.exports=o;var a=t(\\\"gl-shader\\\"),s=t(\\\"gl-buffer\\\"),l=t(\\\"gl-texture2d\\\"),c=t(\\\"ndarray\\\"),u=t(\\\"typedarray-pool\\\"),h=t(\\\"./lib/shaders\\\"),f=n.prototype;f.draw=function(){var t=[1,0,0,0,1,0,0,0,1],e=[0,0],r=[1,0],n=[-1,0],i=[0,1],o=[0,-1];return function(){var a=this.plot,s=this.color,l=this.width,c=(this.numPoints,this.bounds),u=this.vertCount;if(u){var h=a.gl,f=a.viewBox,d=a.dataBox,p=a.pixelRatio,g=c[2]-c[0],v=c[3]-c[1],m=d[2]-d[0],y=d[3]-d[1],b=f[2]-f[0],x=f[3]-f[1];t[0]=2*g/m,t[4]=2*v/y,t[6]=2*(c[0]-d[0])/m-1,t[7]=2*(c[1]-d[1])/y-1,e[0]=b,e[1]=x;var _=this.lineBuffer;_.bind();var w=this.fill;if(w[0]||w[1]||w[2]||w[3]){var A=this.fillShader;A.bind();var k=A.uniforms;k.matrix=t,k.depth=a.nextDepthValue();var M=A.attributes;M.a.pointer(h.FLOAT,!1,16,0),M.d.pointer(h.FLOAT,!1,16,8),h.depthMask(!0),h.enable(h.DEPTH_TEST);var T=this.fillColor;w[0]&&(k.color=T[0],k.projectAxis=n,k.projectValue=1,h.drawArrays(h.TRIANGLES,0,u)),w[1]&&(k.color=T[1],k.projectAxis=o,k.projectValue=1,h.drawArrays(h.TRIANGLES,0,u)),w[2]&&(k.color=T[2],k.projectAxis=r,k.projectValue=1,h.drawArrays(h.TRIANGLES,0,u)),w[3]&&(k.color=T[3],k.projectAxis=i,k.projectValue=1,h.drawArrays(h.TRIANGLES,0,u)),h.depthMask(!1),h.disable(h.DEPTH_TEST)}var E=this.lineShader;E.bind();var L=E.uniforms;L.matrix=t,L.color=s,L.width=l*p,L.screenShape=e,L.dashPattern=this.dashPattern.bind(),L.dashLength=this.dashLength*p;var S=E.attributes;if(S.a.pointer(h.FLOAT,!1,16,0),S.d.pointer(h.FLOAT,!1,16,8),h.drawArrays(h.TRIANGLES,0,u),l>2&&!this.usingDashes){var C=this.mitreShader;C.bind();var P=C.uniforms;P.matrix=t,P.color=s,P.screenShape=e,P.radius=l*p,C.attributes.p.pointer(h.FLOAT,!1,48,0),h.drawArrays(h.POINTS,0,u/3|0)}}}}(),f.drawPick=function(){var t=[1,0,0,0,1,0,0,0,1],e=[0,0],r=[0,0,0,0];return function(n){var i=this.plot,o=this.pickShader,a=this.lineBuffer,s=this.pickBuffer,l=this.width,c=this.numPoints,u=this.bounds,h=this.vertCount,f=i.gl,d=i.viewBox,p=i.dataBox,g=i.pickPixelRatio,v=u[2]-u[0],m=u[3]-u[1],y=p[2]-p[0],b=p[3]-p[1],x=d[2]-d[0],_=d[3]-d[1];if(this.pickOffset=n,!h)return n+c;t[0]=2*v/y,t[4]=2*m/b,t[6]=2*(u[0]-p[0])/y-1,t[7]=2*(u[1]-p[1])/b-1,e[0]=x,e[1]=_,r[0]=255&n,r[1]=n>>>8&255,r[2]=n>>>16&255,r[3]=n>>>24,o.bind();var w=o.uniforms;w.matrix=t,w.width=l*g,w.pickOffset=r,w.screenShape=e;var A=o.attributes;return a.bind(),A.a.pointer(f.FLOAT,!1,16,0),A.d.pointer(f.FLOAT,!1,16,8),s.bind(),A.pick0.pointer(f.UNSIGNED_BYTE,!1,8,0),A.pick1.pointer(f.UNSIGNED_BYTE,!1,8,4),f.drawArrays(f.TRIANGLES,0,h),n+c}}(),f.pick=function(t,e,r){var n=this.pickOffset,i=this.numPoints;if(n>r||r>=n+i)return null;var o=r-n,a=this.data;return{object:this,pointId:o,dataCoord:[a[2*o],a[2*o+1]]}},f.update=function(t){t=t||{};var e=this.plot.gl;this.color=(t.color||[0,0,1,1]).slice(),this.width=+(t.width||1),this.fill=(t.fill||[!1,!1,!1,!1]).slice(),this.fillColor=i(t.fillColor||[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]]);for(var r=t.dashes||[1],n=0,o=0;o<r.length;++o)n+=r[o];for(var a=u.mallocUint8(n),s=0,h=255,o=0;o<r.length;++o){for(var f=0;f<r[o];++f)a[s++]=h;h^=255}this.dashPattern.dispose(),this.usingDashes=r.length>1,this.dashPattern=l(e,c(a,[n,1,4],[1,0,0])),this.dashPattern.minFilter=e.NEAREST,this.dashPattern.magFilter=e.NEAREST,this.dashLength=n,u.free(a);var d=t.positions;this.data=d;var p=this.bounds;p[0]=p[1]=1/0,p[2]=p[3]=-(1/0);var g=this.numPoints=d.length>>>1;if(0!==g){for(var o=0;g>o;++o){var v=d[2*o],m=d[2*o+1];p[0]=Math.min(p[0],v),p[1]=Math.min(p[1],m),p[2]=Math.max(p[2],v),p[3]=Math.max(p[3],m)}p[0]===p[2]&&(p[2]+=1),p[3]===p[1]&&(p[3]+=1);var y=u.mallocFloat32(24*(g-1)),b=u.mallocUint32(12*(g-1)),x=y.length,_=b.length,s=g;for(this.vertCount=6*(g-1);s>1;){var w=--s,v=d[2*s],m=d[2*s+1];v=(v-p[0])/(p[2]-p[0]),m=(m-p[1])/(p[3]-p[1]);var A=w-1,k=d[2*A],M=d[2*A+1];k=(k-p[0])/(p[2]-p[0]),M=(M-p[1])/(p[3]-p[1]);var T=k-v,E=M-m,L=w|1<<24,S=w-1,C=w,P=w-1|1<<24;y[--x]=-E,y[--x]=-T,y[--x]=m,y[--x]=v,b[--_]=L,b[--_]=S,y[--x]=E,y[--x]=T,y[--x]=M,y[--x]=k,b[--_]=C,b[--_]=P,y[--x]=-E,y[--x]=-T,y[--x]=M,y[--x]=k,b[--_]=C,b[--_]=P,y[--x]=E,y[--x]=T,y[--x]=M,y[--x]=k,b[--_]=C,b[--_]=P,y[--x]=-E,y[--x]=-T,y[--x]=m,y[--x]=v,b[--_]=L,b[--_]=S,y[--x]=E,y[--x]=T,y[--x]=m,y[--x]=v,b[--_]=L,b[--_]=S}this.lineBuffer.update(y),this.pickBuffer.update(b),u.free(y),u.free(b)}},f.dispose=function(){this.plot.removeObject(this),this.lineBuffer.dispose(),this.pickBuffer.dispose(),this.lineShader.dispose(),this.mitreShader.dispose(),this.fillShader.dispose(),this.pickShader.dispose(),this.dashPattern.dispose()}},{\\\"./lib/shaders\\\":81,\\\"gl-buffer\\\":75,\\\"gl-shader\\\":154,\\\"gl-texture2d\\\":180,ndarray:210,\\\"typedarray-pool\\\":235}],83:[function(t,e,r){var n=t(\\\"gl-shader\\\"),i=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nattribute vec3 position, nextPosition;\\\\nattribute float arcLength, lineWidth;\\\\nattribute vec4 color;\\\\n\\\\nuniform vec2 screenShape;\\\\nuniform float pixelRatio;\\\\nuniform mat4 model, view, projection;\\\\n\\\\nvarying vec4 fragColor;\\\\nvarying vec3 worldPosition;\\\\nvarying float pixelArcLength;\\\\n\\\\nvoid main() {\\\\n  vec4 projected = projection * view * model * vec4(position, 1.0);\\\\n  vec4 tangentClip = projection * view * model * vec4(nextPosition - position, 0.0);\\\\n  vec2 tangent = normalize(screenShape * tangentClip.xy);\\\\n  vec2 offset = 0.5 * pixelRatio * lineWidth * vec2(tangent.y, -tangent.x) / screenShape;\\\\n\\\\n  gl_Position = vec4(projected.xy + projected.w * offset, projected.zw);\\\\n\\\\n  worldPosition = position;\\\\n  pixelArcLength = arcLength;\\\\n  fragColor = color;\\\\n}\\\\n\\\",o=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nuniform vec3      clipBounds[2];\\\\nuniform sampler2D dashTexture;\\\\nuniform float     dashScale;\\\\nuniform float     opacity;\\\\n\\\\nvarying vec3    worldPosition;\\\\nvarying float   pixelArcLength;\\\\nvarying vec4    fragColor;\\\\n\\\\nvoid main() {\\\\n  if(any(lessThan(worldPosition, clipBounds[0])) || any(greaterThan(worldPosition, clipBounds[1]))) {\\\\n    discard;\\\\n  }\\\\n  float dashWeight = texture2D(dashTexture, vec2(dashScale * pixelArcLength, 0)).r;\\\\n  if(dashWeight < 0.5) {\\\\n    discard;\\\\n  }\\\\n  gl_FragColor = fragColor * opacity;\\\\n}\\\\n\\\",a=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\n#define FLOAT_MAX  1.70141184e38\\\\n#define FLOAT_MIN  1.17549435e-38\\\\n\\\\nlowp vec4 encode_float_1_0(highp float v) {\\\\n  highp float av = abs(v);\\\\n\\\\n  //Handle special cases\\\\n  if(av < FLOAT_MIN) {\\\\n    return vec4(0.0, 0.0, 0.0, 0.0);\\\\n  } else if(v > FLOAT_MAX) {\\\\n    return vec4(127.0, 128.0, 0.0, 0.0) / 255.0;\\\\n  } else if(v < -FLOAT_MAX) {\\\\n    return vec4(255.0, 128.0, 0.0, 0.0) / 255.0;\\\\n  }\\\\n\\\\n  highp vec4 c = vec4(0,0,0,0);\\\\n\\\\n  //Compute exponent and mantissa\\\\n  highp float e = floor(log2(av));\\\\n  highp float m = av * pow(2.0, -e) - 1.0;\\\\n  \\\\n  //Unpack mantissa\\\\n  c[1] = floor(128.0 * m);\\\\n  m -= c[1] / 128.0;\\\\n  c[2] = floor(32768.0 * m);\\\\n  m -= c[2] / 32768.0;\\\\n  c[3] = floor(8388608.0 * m);\\\\n  \\\\n  //Unpack exponent\\\\n  highp float ebias = e + 127.0;\\\\n  c[0] = floor(ebias / 2.0);\\\\n  ebias -= c[0] * 2.0;\\\\n  c[1] += floor(ebias) * 128.0; \\\\n\\\\n  //Unpack sign bit\\\\n  c[0] += 128.0 * step(0.0, -v);\\\\n\\\\n  //Scale back to range\\\\n  return c / 255.0;\\\\n}\\\\n\\\\n\\\\n\\\\nuniform float pickId;\\\\nuniform vec3 clipBounds[2];\\\\n\\\\nvarying vec3 worldPosition;\\\\nvarying float pixelArcLength;\\\\nvarying vec4 fragColor;\\\\n\\\\nvoid main() {\\\\n  if(any(lessThan(worldPosition, clipBounds[0])) || any(greaterThan(worldPosition, clipBounds[1]))) {\\\\n    discard;\\\\n  }\\\\n  gl_FragColor = vec4(pickId/255.0, encode_float_1_0(pixelArcLength).xyz);\\\\n}\\\",s=[{name:\\\"position\\\",type:\\\"vec3\\\"},{name:\\\"nextPosition\\\",type:\\\"vec3\\\"},{name:\\\"arcLength\\\",type:\\\"float\\\"},{name:\\\"lineWidth\\\",type:\\\"float\\\"},{name:\\\"color\\\",type:\\\"vec4\\\"}];r.createShader=function(t){return n(t,i,o,null,s)},r.createPickShader=function(t){return n(t,i,a,null,s)}},{\\\"gl-shader\\\":154}],84:[function(t,e,r){\\\"use strict\\\";function n(t,e){for(var r=0,n=0;3>n;++n){var i=t[n]-e[n];r+=i*i}return Math.sqrt(r)}function i(t){for(var e=[[-1e6,-1e6,-1e6],[1e6,1e6,1e6]],r=0;3>r;++r)e[0][r]=Math.max(t[0][r],e[0][r]),e[1][r]=Math.min(t[1][r],e[1][r]);return e}function o(t,e,r,n){this.arcLength=t,this.position=e,this.index=r,this.dataCoordinate=n}function a(t,e,r,n,i,o){this.gl=t,this.shader=e,this.pickShader=r,this.buffer=n,this.vao=i,this.clipBounds=[[-(1/0),-(1/0),-(1/0)],[1/0,1/0,1/0]],this.points=[],this.arcLength=[],this.vertexCount=0,this.bounds=[[0,0,0],[0,0,0]],this.pickId=0,this.lineWidth=1,this.texture=o,this.dashScale=1,this.opacity=1,this.dirty=!0,this.pixelRatio=1}function s(t){var e=t.gl||t.scene&&t.scene.gl,r=g(e);r.attributes.position.location=0,r.attributes.nextPosition.location=1,r.attributes.arcLength.location=2,r.attributes.lineWidth.location=3,r.attributes.color.location=4;var n=v(e);n.attributes.position.location=0,n.attributes.nextPosition.location=1,n.attributes.arcLength.location=2,n.attributes.lineWidth.location=3,n.attributes.color.location=4;for(var i=l(e),o=c(e,[{buffer:i,size:3,offset:0,stride:48},{buffer:i,size:3,offset:12,stride:48},{buffer:i,size:1,offset:24,stride:48},{buffer:i,size:1,offset:28,stride:48},{buffer:i,size:4,offset:32,stride:48}]),s=d(new Array(1024),[256,1,4]),h=0;1024>h;++h)s.data[h]=255;var f=u(e,s);f.wrap=e.REPEAT;var p=new a(e,r,n,i,o,f);return p.update(t),p}e.exports=s;var l=t(\\\"gl-buffer\\\"),c=t(\\\"gl-vao\\\"),u=t(\\\"gl-texture2d\\\"),h=t(\\\"glsl-read-float\\\"),f=t(\\\"binary-search-bounds\\\"),d=t(\\\"ndarray\\\"),p=t(\\\"./lib/shaders\\\"),g=p.createShader,v=p.createPickShader,m=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],y=a.prototype;y.isTransparent=function(){return this.opacity<1},y.isOpaque=function(){return this.opacity>=1},y.pickSlots=1,y.setPickBase=function(t){this.pickId=t},y.drawTransparent=y.draw=function(t){var e=this.gl,r=this.shader,n=this.vao;r.bind(),r.uniforms={model:t.model||m,view:t.view||m,projection:t.projection||m,clipBounds:i(this.clipBounds),dashTexture:this.texture.bind(),dashScale:this.dashScale/this.arcLength[this.arcLength.length-1],opacity:this.opacity,screenShape:[e.drawingBufferWidth,e.drawingBufferHeight],pixelRatio:this.pixelRatio},n.bind(),n.draw(e.TRIANGLE_STRIP,this.vertexCount)},y.drawPick=function(t){var e=this.gl,r=this.pickShader,n=this.vao;r.bind(),r.uniforms={model:t.model||m,view:t.view||m,projection:t.projection||m,pickId:this.pickId,clipBounds:i(this.clipBounds),screenShape:[e.drawingBufferWidth,e.drawingBufferHeight],pixelRatio:this.pixelRatio},n.bind(),n.draw(e.TRIANGLE_STRIP,this.vertexCount)},y.update=function(t){var e,r;this.dirty=!0;var i=!!t.connectGaps;\\\"dashScale\\\"in t&&(this.dashScale=t.dashScale),\\\"opacity\\\"in t&&(this.opacity=+t.opacity);var o=t.position||t.positions;if(o){var a=t.color||t.colors||[0,0,0,1],s=t.lineWidth||1,l=[],c=[],u=[],h=0,p=0,g=[[1/0,1/0,1/0],[-(1/0),-(1/0),-(1/0)]],v=!1;t:for(e=1;e<o.length;++e){var m=o[e-1],y=o[e];for(c.push(h),u.push(m.slice()),r=0;3>r;++r){if(isNaN(m[r])||isNaN(y[r])||!isFinite(m[r])||!isFinite(y[r])){if(!i&&l.length>0){for(var b=0;24>b;++b)l.push(l[l.length-12]);p+=2,v=!0}continue t}g[0][r]=Math.min(g[0][r],m[r],y[r]),g[1][r]=Math.max(g[1][r],m[r],y[r])}var x,_;Array.isArray(a[0])?(x=a[e-1],_=a[e]):x=_=a,3===x.length&&(x=[x[0],x[1],x[2],1]),3===_.length&&(_=[_[0],_[1],_[2],1]);var w;w=Array.isArray(s)?s[e-1]:s;var A=h;if(h+=n(m,y),v){for(r=0;2>r;++r)l.push(m[0],m[1],m[2],y[0],y[1],y[2],A,w,x[0],x[1],x[2],x[3]);p+=2,v=!1}l.push(m[0],m[1],m[2],y[0],y[1],y[2],A,w,x[0],x[1],x[2],x[3],m[0],m[1],m[2],y[0],y[1],y[2],A,-w,x[0],x[1],x[2],x[3],y[0],y[1],y[2],m[0],m[1],m[2],h,-w,_[0],_[1],_[2],_[3],y[0],y[1],y[2],m[0],m[1],m[2],h,w,_[0],_[1],_[2],_[3]),p+=4}if(this.buffer.update(l),c.push(h),u.push(o[o.length-1].slice()),this.bounds=g,this.vertexCount=p,this.points=u,this.arcLength=c,\\\"dashes\\\"in t){var k=t.dashes,M=k.slice();for(M.unshift(0),e=1;e<M.length;++e)M[e]=M[e-1]+M[e];var T=d(new Array(1024),[256,1,4]);for(e=0;256>e;++e){for(r=0;4>r;++r)T.set(e,0,r,0);1&f.le(M,M[M.length-1]*e/255)?T.set(e,0,0,0):T.set(e,0,0,255)}this.texture.setPixels(T)}}},y.dispose=function(){this.shader.dispose(),this.vao.dispose(),this.buffer.dispose()},y.pick=function(t){if(!t)return null;if(t.id!==this.pickId)return null;var e=h(t.value[0],t.value[1],t.value[2],0),r=f.le(this.arcLength,e);if(0>r)return null;if(r===this.arcLength.length-1)return new o(this.arcLength[this.arcLength.length-1],this.points[this.points.length-1].slice(),r);for(var n=this.points[r],i=this.points[Math.min(r+1,this.points.length-1)],a=(e-this.arcLength[r])/(this.arcLength[r+1]-this.arcLength[r]),s=1-a,l=[0,0,0],c=0;3>c;++c)l[c]=s*n[c]+a*i[c];var u=Math.min(.5>a?r:r+1,this.points.length-1);return new o(e,l,u,this.points[u])}},{\\\"./lib/shaders\\\":83,\\\"binary-search-bounds\\\":85,\\\"gl-buffer\\\":75,\\\"gl-texture2d\\\":180,\\\"gl-vao\\\":184,\\\"glsl-read-float\\\":86,ndarray:210}],85:[function(t,e,r){arguments[4][20][0].apply(r,arguments)},{dup:20}],86:[function(t,e,r){\\n\",\n       \"function n(t,e,r,n){return i[0]=n,i[1]=r,i[2]=e,i[3]=t,o[0]}e.exports=n;var i=new Uint8Array(4),o=new Float32Array(i.buffer)},{}],87:[function(t,e,r){function n(t,e){var r=e[0],n=e[1],i=e[2],o=e[3],a=e[4],s=e[5],l=e[6],c=e[7],u=e[8],h=u*a-s*c,f=-u*o+s*l,d=c*o-a*l,p=r*h+n*f+i*d;return p?(p=1/p,t[0]=h*p,t[1]=(-u*n+i*c)*p,t[2]=(s*n-i*a)*p,t[3]=f*p,t[4]=(u*r-i*l)*p,t[5]=(-s*r+i*o)*p,t[6]=d*p,t[7]=(-c*r+n*l)*p,t[8]=(a*r-n*o)*p,t):null}e.exports=n},{}],88:[function(t,e,r){function n(t){var e=new Float32Array(16);return e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],e[4]=t[4],e[5]=t[5],e[6]=t[6],e[7]=t[7],e[8]=t[8],e[9]=t[9],e[10]=t[10],e[11]=t[11],e[12]=t[12],e[13]=t[13],e[14]=t[14],e[15]=t[15],e}e.exports=n},{}],89:[function(t,e,r){function n(){var t=new Float32Array(16);return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t}e.exports=n},{}],90:[function(t,e,r){function n(t){var e=t[0],r=t[1],n=t[2],i=t[3],o=t[4],a=t[5],s=t[6],l=t[7],c=t[8],u=t[9],h=t[10],f=t[11],d=t[12],p=t[13],g=t[14],v=t[15],m=e*a-r*o,y=e*s-n*o,b=e*l-i*o,x=r*s-n*a,_=r*l-i*a,w=n*l-i*s,A=c*p-u*d,k=c*g-h*d,M=c*v-f*d,T=u*g-h*p,E=u*v-f*p,L=h*v-f*g;return m*L-y*E+b*T+x*M-_*k+w*A}e.exports=n},{}],91:[function(t,e,r){function n(t,e){var r=e[0],n=e[1],i=e[2],o=e[3],a=r+r,s=n+n,l=i+i,c=r*a,u=n*a,h=n*s,f=i*a,d=i*s,p=i*l,g=o*a,v=o*s,m=o*l;return t[0]=1-h-p,t[1]=u+m,t[2]=f-v,t[3]=0,t[4]=u-m,t[5]=1-c-p,t[6]=d+g,t[7]=0,t[8]=f+v,t[9]=d-g,t[10]=1-c-h,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t}e.exports=n},{}],92:[function(t,e,r){function n(t,e,r){var n=e[0],i=e[1],o=e[2],a=e[3],s=n+n,l=i+i,c=o+o,u=n*s,h=n*l,f=n*c,d=i*l,p=i*c,g=o*c,v=a*s,m=a*l,y=a*c;return t[0]=1-(d+g),t[1]=h+y,t[2]=f-m,t[3]=0,t[4]=h-y,t[5]=1-(u+g),t[6]=p+v,t[7]=0,t[8]=f+m,t[9]=p-v,t[10]=1-(u+d),t[11]=0,t[12]=r[0],t[13]=r[1],t[14]=r[2],t[15]=1,t}e.exports=n},{}],93:[function(t,e,r){function n(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t}e.exports=n},{}],94:[function(t,e,r){function n(t,e){var r=e[0],n=e[1],i=e[2],o=e[3],a=e[4],s=e[5],l=e[6],c=e[7],u=e[8],h=e[9],f=e[10],d=e[11],p=e[12],g=e[13],v=e[14],m=e[15],y=r*s-n*a,b=r*l-i*a,x=r*c-o*a,_=n*l-i*s,w=n*c-o*s,A=i*c-o*l,k=u*g-h*p,M=u*v-f*p,T=u*m-d*p,E=h*v-f*g,L=h*m-d*g,S=f*m-d*v,C=y*S-b*L+x*E+_*T-w*M+A*k;return C?(C=1/C,t[0]=(s*S-l*L+c*E)*C,t[1]=(i*L-n*S-o*E)*C,t[2]=(g*A-v*w+m*_)*C,t[3]=(f*w-h*A-d*_)*C,t[4]=(l*T-a*S-c*M)*C,t[5]=(r*S-i*T+o*M)*C,t[6]=(v*x-p*A-m*b)*C,t[7]=(u*A-f*x+d*b)*C,t[8]=(a*L-s*T+c*k)*C,t[9]=(n*T-r*L-o*k)*C,t[10]=(p*w-g*x+m*y)*C,t[11]=(h*x-u*w-d*y)*C,t[12]=(s*M-a*E-l*k)*C,t[13]=(r*E-n*M+i*k)*C,t[14]=(g*b-p*_-v*y)*C,t[15]=(u*_-h*b+f*y)*C,t):null}e.exports=n},{}],95:[function(t,e,r){function n(t,e,r,n){var o,a,s,l,c,u,h,f,d,p,g=e[0],v=e[1],m=e[2],y=n[0],b=n[1],x=n[2],_=r[0],w=r[1],A=r[2];return Math.abs(g-_)<1e-6&&Math.abs(v-w)<1e-6&&Math.abs(m-A)<1e-6?i(t):(h=g-_,f=v-w,d=m-A,p=1/Math.sqrt(h*h+f*f+d*d),h*=p,f*=p,d*=p,o=b*d-x*f,a=x*h-y*d,s=y*f-b*h,p=Math.sqrt(o*o+a*a+s*s),p?(p=1/p,o*=p,a*=p,s*=p):(o=0,a=0,s=0),l=f*s-d*a,c=d*o-h*s,u=h*a-f*o,p=Math.sqrt(l*l+c*c+u*u),p?(p=1/p,l*=p,c*=p,u*=p):(l=0,c=0,u=0),t[0]=o,t[1]=l,t[2]=h,t[3]=0,t[4]=a,t[5]=c,t[6]=f,t[7]=0,t[8]=s,t[9]=u,t[10]=d,t[11]=0,t[12]=-(o*g+a*v+s*m),t[13]=-(l*g+c*v+u*m),t[14]=-(h*g+f*v+d*m),t[15]=1,t)}var i=t(\\\"./identity\\\");e.exports=n},{\\\"./identity\\\":93}],96:[function(t,e,r){function n(t,e,r){var n=e[0],i=e[1],o=e[2],a=e[3],s=e[4],l=e[5],c=e[6],u=e[7],h=e[8],f=e[9],d=e[10],p=e[11],g=e[12],v=e[13],m=e[14],y=e[15],b=r[0],x=r[1],_=r[2],w=r[3];return t[0]=b*n+x*s+_*h+w*g,t[1]=b*i+x*l+_*f+w*v,t[2]=b*o+x*c+_*d+w*m,t[3]=b*a+x*u+_*p+w*y,b=r[4],x=r[5],_=r[6],w=r[7],t[4]=b*n+x*s+_*h+w*g,t[5]=b*i+x*l+_*f+w*v,t[6]=b*o+x*c+_*d+w*m,t[7]=b*a+x*u+_*p+w*y,b=r[8],x=r[9],_=r[10],w=r[11],t[8]=b*n+x*s+_*h+w*g,t[9]=b*i+x*l+_*f+w*v,t[10]=b*o+x*c+_*d+w*m,t[11]=b*a+x*u+_*p+w*y,b=r[12],x=r[13],_=r[14],w=r[15],t[12]=b*n+x*s+_*h+w*g,t[13]=b*i+x*l+_*f+w*v,t[14]=b*o+x*c+_*d+w*m,t[15]=b*a+x*u+_*p+w*y,t}e.exports=n},{}],97:[function(t,e,r){function n(t,e,r,n,i){var o=1/Math.tan(e/2),a=1/(n-i);return t[0]=o/r,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=o,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=(i+n)*a,t[11]=-1,t[12]=0,t[13]=0,t[14]=2*i*n*a,t[15]=0,t}e.exports=n},{}],98:[function(t,e,r){function n(t,e,r,n){var i,o,a,s,l,c,u,h,f,d,p,g,v,m,y,b,x,_,w,A,k,M,T,E,L=n[0],S=n[1],C=n[2],P=Math.sqrt(L*L+S*S+C*C);return Math.abs(P)<1e-6?null:(P=1/P,L*=P,S*=P,C*=P,i=Math.sin(r),o=Math.cos(r),a=1-o,s=e[0],l=e[1],c=e[2],u=e[3],h=e[4],f=e[5],d=e[6],p=e[7],g=e[8],v=e[9],m=e[10],y=e[11],b=L*L*a+o,x=S*L*a+C*i,_=C*L*a-S*i,w=L*S*a-C*i,A=S*S*a+o,k=C*S*a+L*i,M=L*C*a+S*i,T=S*C*a-L*i,E=C*C*a+o,t[0]=s*b+h*x+g*_,t[1]=l*b+f*x+v*_,t[2]=c*b+d*x+m*_,t[3]=u*b+p*x+y*_,t[4]=s*w+h*A+g*k,t[5]=l*w+f*A+v*k,t[6]=c*w+d*A+m*k,t[7]=u*w+p*A+y*k,t[8]=s*M+h*T+g*E,t[9]=l*M+f*T+v*E,t[10]=c*M+d*T+m*E,t[11]=u*M+p*T+y*E,e!==t&&(t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15]),t)}e.exports=n},{}],99:[function(t,e,r){function n(t,e,r){var n=Math.sin(r),i=Math.cos(r),o=e[4],a=e[5],s=e[6],l=e[7],c=e[8],u=e[9],h=e[10],f=e[11];return e!==t&&(t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15]),t[4]=o*i+c*n,t[5]=a*i+u*n,t[6]=s*i+h*n,t[7]=l*i+f*n,t[8]=c*i-o*n,t[9]=u*i-a*n,t[10]=h*i-s*n,t[11]=f*i-l*n,t}e.exports=n},{}],100:[function(t,e,r){function n(t,e,r){var n=Math.sin(r),i=Math.cos(r),o=e[0],a=e[1],s=e[2],l=e[3],c=e[8],u=e[9],h=e[10],f=e[11];return e!==t&&(t[4]=e[4],t[5]=e[5],t[6]=e[6],t[7]=e[7],t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15]),t[0]=o*i-c*n,t[1]=a*i-u*n,t[2]=s*i-h*n,t[3]=l*i-f*n,t[8]=o*n+c*i,t[9]=a*n+u*i,t[10]=s*n+h*i,t[11]=l*n+f*i,t}e.exports=n},{}],101:[function(t,e,r){function n(t,e,r){var n=Math.sin(r),i=Math.cos(r),o=e[0],a=e[1],s=e[2],l=e[3],c=e[4],u=e[5],h=e[6],f=e[7];return e!==t&&(t[8]=e[8],t[9]=e[9],t[10]=e[10],t[11]=e[11],t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15]),t[0]=o*i+c*n,t[1]=a*i+u*n,t[2]=s*i+h*n,t[3]=l*i+f*n,t[4]=c*i-o*n,t[5]=u*i-a*n,t[6]=h*i-s*n,t[7]=f*i-l*n,t}e.exports=n},{}],102:[function(t,e,r){function n(t,e,r){var n=r[0],i=r[1],o=r[2];return t[0]=e[0]*n,t[1]=e[1]*n,t[2]=e[2]*n,t[3]=e[3]*n,t[4]=e[4]*i,t[5]=e[5]*i,t[6]=e[6]*i,t[7]=e[7]*i,t[8]=e[8]*o,t[9]=e[9]*o,t[10]=e[10]*o,t[11]=e[11]*o,t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15],t}e.exports=n},{}],103:[function(t,e,r){function n(t,e,r){var n,i,o,a,s,l,c,u,h,f,d,p,g=r[0],v=r[1],m=r[2];return e===t?(t[12]=e[0]*g+e[4]*v+e[8]*m+e[12],t[13]=e[1]*g+e[5]*v+e[9]*m+e[13],t[14]=e[2]*g+e[6]*v+e[10]*m+e[14],t[15]=e[3]*g+e[7]*v+e[11]*m+e[15]):(n=e[0],i=e[1],o=e[2],a=e[3],s=e[4],l=e[5],c=e[6],u=e[7],h=e[8],f=e[9],d=e[10],p=e[11],t[0]=n,t[1]=i,t[2]=o,t[3]=a,t[4]=s,t[5]=l,t[6]=c,t[7]=u,t[8]=h,t[9]=f,t[10]=d,t[11]=p,t[12]=n*g+s*v+h*m+e[12],t[13]=i*g+l*v+f*m+e[13],t[14]=o*g+c*v+d*m+e[14],t[15]=a*g+u*v+p*m+e[15]),t}e.exports=n},{}],104:[function(t,e,r){function n(t,e){if(t===e){var r=e[1],n=e[2],i=e[3],o=e[6],a=e[7],s=e[11];t[1]=e[4],t[2]=e[8],t[3]=e[12],t[4]=r,t[6]=e[9],t[7]=e[13],t[8]=n,t[9]=o,t[11]=e[14],t[12]=i,t[13]=a,t[14]=s}else t[0]=e[0],t[1]=e[4],t[2]=e[8],t[3]=e[12],t[4]=e[1],t[5]=e[5],t[6]=e[9],t[7]=e[13],t[8]=e[2],t[9]=e[6],t[10]=e[10],t[11]=e[14],t[12]=e[3],t[13]=e[7],t[14]=e[11],t[15]=e[15];return t}e.exports=n},{}],105:[function(t,e,r){\\\"use strict\\\";function n(t,e){for(var r=[0,0,0,0],n=0;4>n;++n)for(var i=0;4>i;++i)r[i]+=t[4*n+i]*e[n];return r}function i(t,e,r,i,o){for(var a=n(i,n(r,n(e,[t[0],t[1],t[2],1]))),s=0;3>s;++s)a[s]/=a[3];return[.5*o[0]*(1+a[0]),.5*o[1]*(1-a[1])]}function o(t,e){if(2===t.length){for(var r=0,n=0,i=0;2>i;++i)r+=Math.pow(e[i]-t[0][i],2),n+=Math.pow(e[i]-t[1][i],2);return r=Math.sqrt(r),n=Math.sqrt(n),1e-6>r+n?[1,0]:[n/(r+n),r/(n+r)]}if(3===t.length){var o=[0,0];return c(t[0],t[1],t[2],e,o),l(t,o)}return[]}function a(t,e){for(var r=[0,0,0],n=0;n<t.length;++n)for(var i=t[n],o=e[n],a=0;3>a;++a)r[a]+=o*i[a];return r}function s(t,e,r,n,s,l){if(1===t.length)return[0,t[0].slice()];for(var c=new Array(t.length),u=0;u<t.length;++u)c[u]=i(t[u],r,n,s,l);for(var h=0,f=1/0,u=0;u<c.length;++u){for(var d=0,p=0;2>p;++p)d+=Math.pow(c[u][p]-e[p],2);f>d&&(f=d,h=u)}for(var g=o(c,e),v=0,u=0;3>u;++u){if(g[u]<-.001||g[u]>1.0001)return null;v+=g[u]}return Math.abs(v-1)>.001?null:[h,a(t,g),g]}var l=t(\\\"barycentric\\\"),c=t(\\\"polytope-closest-point/lib/closest_point_2d.js\\\");e.exports=s},{barycentric:108,\\\"polytope-closest-point/lib/closest_point_2d.js\\\":110}],106:[function(t,e,r){var n=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nattribute vec3 position, normal;\\\\nattribute vec4 color;\\\\nattribute vec2 uv;\\\\n\\\\nuniform mat4 model\\\\n           , view\\\\n           , projection;\\\\nuniform vec3 eyePosition\\\\n           , lightPosition;\\\\n\\\\nvarying vec3 f_normal\\\\n           , f_lightDirection\\\\n           , f_eyeDirection\\\\n           , f_data;\\\\nvarying vec4 f_color;\\\\nvarying vec2 f_uv;\\\\n\\\\nvoid main() {\\\\n  vec4 m_position  = model * vec4(position, 1.0);\\\\n  vec4 t_position  = view * m_position;\\\\n  gl_Position      = projection * t_position;\\\\n  f_color          = color;\\\\n  f_normal         = normal;\\\\n  f_data           = position;\\\\n  f_eyeDirection   = eyePosition   - position;\\\\n  f_lightDirection = lightPosition - position;\\\\n  f_uv             = uv;\\\\n}\\\",i=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nfloat beckmannDistribution_2_0(float x, float roughness) {\\\\n  float NdotH = max(x, 0.0001);\\\\n  float cos2Alpha = NdotH * NdotH;\\\\n  float tan2Alpha = (cos2Alpha - 1.0) / cos2Alpha;\\\\n  float roughness2 = roughness * roughness;\\\\n  float denom = 3.141592653589793 * roughness2 * cos2Alpha * cos2Alpha;\\\\n  return exp(tan2Alpha / roughness2) / denom;\\\\n}\\\\n\\\\n\\\\n\\\\nfloat cookTorranceSpecular_1_1(\\\\n  vec3 lightDirection,\\\\n  vec3 viewDirection,\\\\n  vec3 surfaceNormal,\\\\n  float roughness,\\\\n  float fresnel) {\\\\n\\\\n  float VdotN = max(dot(viewDirection, surfaceNormal), 0.0);\\\\n  float LdotN = max(dot(lightDirection, surfaceNormal), 0.0);\\\\n\\\\n  //Half angle vector\\\\n  vec3 H = normalize(lightDirection + viewDirection);\\\\n\\\\n  //Geometric term\\\\n  float NdotH = max(dot(surfaceNormal, H), 0.0);\\\\n  float VdotH = max(dot(viewDirection, H), 0.000001);\\\\n  float LdotH = max(dot(lightDirection, H), 0.000001);\\\\n  float G1 = (2.0 * NdotH * VdotN) / VdotH;\\\\n  float G2 = (2.0 * NdotH * LdotN) / LdotH;\\\\n  float G = min(1.0, min(G1, G2));\\\\n  \\\\n  //Distribution term\\\\n  float D = beckmannDistribution_2_0(NdotH, roughness);\\\\n\\\\n  //Fresnel term\\\\n  float F = pow(1.0 - VdotN, fresnel);\\\\n\\\\n  //Multiply terms and done\\\\n  return  G * F * D / max(3.14159265 * VdotN, 0.000001);\\\\n}\\\\n\\\\n\\\\n\\\\nuniform vec3 clipBounds[2];\\\\nuniform float roughness\\\\n            , fresnel\\\\n            , kambient\\\\n            , kdiffuse\\\\n            , kspecular\\\\n            , opacity;\\\\nuniform sampler2D texture;\\\\n\\\\nvarying vec3 f_normal\\\\n           , f_lightDirection\\\\n           , f_eyeDirection\\\\n           , f_data;\\\\nvarying vec4 f_color;\\\\nvarying vec2 f_uv;\\\\n\\\\nvoid main() {\\\\n  if(any(lessThan(f_data, clipBounds[0])) || \\\\n     any(greaterThan(f_data, clipBounds[1]))) {\\\\n    discard;\\\\n  }\\\\n\\\\n  vec3 N = normalize(f_normal);\\\\n  vec3 L = normalize(f_lightDirection);\\\\n  vec3 V = normalize(f_eyeDirection);\\\\n  \\\\n  if(!gl_FrontFacing) {\\\\n    N = -N;\\\\n  }\\\\n\\\\n  float specular = cookTorranceSpecular_1_1(L, V, N, roughness, fresnel);\\\\n  float diffuse  = min(kambient + kdiffuse * max(dot(N, L), 0.0), 1.0);\\\\n\\\\n  vec4 surfaceColor = f_color * texture2D(texture, f_uv);\\\\n  vec4 litColor = surfaceColor.a * vec4(diffuse * surfaceColor.rgb + kspecular * vec3(1,1,1) * specular,  1.0);\\\\n\\\\n  gl_FragColor = litColor * opacity;\\\\n}\\\",o=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nattribute vec3 position;\\\\nattribute vec4 color;\\\\nattribute vec2 uv;\\\\n\\\\nuniform mat4 model, view, projection;\\\\n\\\\nvarying vec4 f_color;\\\\nvarying vec3 f_data;\\\\nvarying vec2 f_uv;\\\\n\\\\nvoid main() {\\\\n  gl_Position = projection * view * model * vec4(position, 1.0);\\\\n  f_color = color;\\\\n  f_data  = position;\\\\n  f_uv    = uv;\\\\n}\\\",a=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nuniform vec3 clipBounds[2];\\\\nuniform sampler2D texture;\\\\nuniform float opacity;\\\\n\\\\nvarying vec4 f_color;\\\\nvarying vec3 f_data;\\\\nvarying vec2 f_uv;\\\\n\\\\nvoid main() {\\\\n  if(any(lessThan(f_data, clipBounds[0])) || \\\\n     any(greaterThan(f_data, clipBounds[1]))) {\\\\n    discard;\\\\n  }\\\\n\\\\n  gl_FragColor = f_color * texture2D(texture, f_uv) * opacity;\\\\n}\\\",s=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nattribute vec3 position;\\\\nattribute vec4 color;\\\\nattribute vec2 uv;\\\\nattribute float pointSize;\\\\n\\\\nuniform mat4 model, view, projection;\\\\nuniform vec3 clipBounds[2];\\\\n\\\\nvarying vec4 f_color;\\\\nvarying vec2 f_uv;\\\\n\\\\nvoid main() {\\\\n  if(any(lessThan(position, clipBounds[0])) || \\\\n     any(greaterThan(position, clipBounds[1]))) {\\\\n    gl_Position = vec4(0,0,0,0);\\\\n  } else {\\\\n    gl_Position = projection * view * model * vec4(position, 1.0);\\\\n  }\\\\n  gl_PointSize = pointSize;\\\\n  f_color = color;\\\\n  f_uv = uv;\\\\n}\\\",l=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nuniform sampler2D texture;\\\\nuniform float opacity;\\\\n\\\\nvarying vec4 f_color;\\\\nvarying vec2 f_uv;\\\\n\\\\nvoid main() {\\\\n  vec2 pointR = gl_PointCoord.xy - vec2(0.5,0.5);\\\\n  if(dot(pointR, pointR) > 0.25) {\\\\n    discard;\\\\n  }\\\\n  gl_FragColor = f_color * texture2D(texture, f_uv) * opacity;\\\\n}\\\",c=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nattribute vec3 position;\\\\nattribute vec4 id;\\\\n\\\\nuniform mat4 model, view, projection;\\\\n\\\\nvarying vec3 f_position;\\\\nvarying vec4 f_id;\\\\n\\\\nvoid main() {\\\\n  gl_Position = projection * view * model * vec4(position, 1.0);\\\\n  f_id        = id;\\\\n  f_position  = position;\\\\n}\\\",u=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nuniform vec3  clipBounds[2];\\\\nuniform float pickId;\\\\n\\\\nvarying vec3 f_position;\\\\nvarying vec4 f_id;\\\\n\\\\nvoid main() {\\\\n  if(any(lessThan(f_position, clipBounds[0])) || \\\\n     any(greaterThan(f_position, clipBounds[1]))) {\\\\n    discard;\\\\n  }\\\\n  gl_FragColor = vec4(pickId, f_id.xyz);\\\\n}\\\",h=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nattribute vec3  position;\\\\nattribute float pointSize;\\\\nattribute vec4  id;\\\\n\\\\nuniform mat4 model, view, projection;\\\\nuniform vec3 clipBounds[2];\\\\n\\\\nvarying vec3 f_position;\\\\nvarying vec4 f_id;\\\\n\\\\nvoid main() {\\\\n  if(any(lessThan(position, clipBounds[0])) || \\\\n     any(greaterThan(position, clipBounds[1]))) {\\\\n    gl_Position = vec4(0,0,0,0);\\\\n  } else {\\\\n    gl_Position  = projection * view * model * vec4(position, 1.0);\\\\n    gl_PointSize = pointSize;\\\\n  }\\\\n  f_id         = id;\\\\n  f_position   = position;\\\\n}\\\",f=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nattribute vec3 position;\\\\n\\\\nuniform mat4 model, view, projection;\\\\n\\\\nvoid main() {\\\\n  gl_Position = projection * view * model * vec4(position, 1.0);\\\\n}\\\",d=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nuniform vec3 contourColor;\\\\n\\\\nvoid main() {\\\\n  gl_FragColor = vec4(contourColor,1);\\\\n}\\\\n\\\";r.meshShader={vertex:n,fragment:i,attributes:[{name:\\\"position\\\",type:\\\"vec3\\\"},{name:\\\"normal\\\",type:\\\"vec3\\\"},{name:\\\"color\\\",type:\\\"vec4\\\"},{name:\\\"uv\\\",type:\\\"vec2\\\"}]},r.wireShader={vertex:o,fragment:a,attributes:[{name:\\\"position\\\",type:\\\"vec3\\\"},{name:\\\"color\\\",type:\\\"vec4\\\"},{name:\\\"uv\\\",type:\\\"vec2\\\"}]},r.pointShader={vertex:s,fragment:l,attributes:[{name:\\\"position\\\",type:\\\"vec3\\\"},{name:\\\"color\\\",type:\\\"vec4\\\"},{name:\\\"uv\\\",type:\\\"vec2\\\"},{name:\\\"pointSize\\\",type:\\\"float\\\"}]},r.pickShader={vertex:c,fragment:u,attributes:[{name:\\\"position\\\",type:\\\"vec3\\\"},{name:\\\"id\\\",type:\\\"vec4\\\"}]},r.pointPickShader={vertex:h,fragment:u,attributes:[{name:\\\"position\\\",type:\\\"vec3\\\"},{name:\\\"pointSize\\\",type:\\\"float\\\"},{name:\\\"id\\\",type:\\\"vec4\\\"}]},r.contourShader={vertex:f,fragment:d,attributes:[{name:\\\"position\\\",type:\\\"vec3\\\"}]}},{}],107:[function(t,e,r){\\\"use strict\\\";function n(t,e,r,n,i,o,a,s,l,c,u,h,f,d,p,g,v,m,y,b,x,_,w,A,k,M,T){this.gl=t,this.cells=[],this.positions=[],this.intensity=[],this.texture=e,this.dirty=!0,this.triShader=r,this.lineShader=n,this.pointShader=i,this.pickShader=o,this.pointPickShader=a,this.contourShader=s,this.trianglePositions=l,this.triangleColors=u,this.triangleNormals=f,this.triangleUVs=h,this.triangleIds=c,this.triangleVAO=d,this.triangleCount=0,this.lineWidth=1,this.edgePositions=p,this.edgeColors=v,this.edgeUVs=m,this.edgeIds=g,this.edgeVAO=y,this.edgeCount=0,this.pointPositions=b,this.pointColors=_,this.pointUVs=w,this.pointSizes=A,this.pointIds=x,this.pointVAO=k,this.pointCount=0,this.contourLineWidth=1,this.contourPositions=M,this.contourVAO=T,this.contourCount=0,this.contourColor=[0,0,0],this.contourEnable=!0,this.pickId=1,this.bounds=[[1/0,1/0,1/0],[-(1/0),-(1/0),-(1/0)]],this.clipBounds=[[-(1/0),-(1/0),-(1/0)],[1/0,1/0,1/0]],this.lightPosition=[1e5,1e5,0],this.ambientLight=.8,this.diffuseLight=.8,this.specularLight=2,this.roughness=.5,this.fresnel=1.5,this.opacity=1,this._model=R,this._view=R,this._projection=R,this._resolution=[1,1]}function i(t){for(var e=w({colormap:t,nshades:256,format:\\\"rgba\\\"}),r=new Uint8Array(1024),n=0;256>n;++n){for(var i=e[n],o=0;3>o;++o)r[4*n+o]=i[o];r[4*n+3]=255*i[3]}return _(r,[256,256,4],[4,0,1])}function o(t,e,r){for(var n=new Array(e),i=0;e>i;++i)n[i]=0;for(var o=t.length,i=0;o>i;++i)for(var a=t[i],s=0;s<a.length;++s)n[a[s]]=r[i];return n}function a(t){for(var e=t.length,r=new Array(e),n=0;e>n;++n)r[n]=t[n][2];return r}function s(t){var e=p(t,E);return e.attributes.position.location=0,e.attributes.color.location=2,e.attributes.uv.location=3,e.attributes.normal.location=4,e}function l(t){var e=p(t,L);return e.attributes.position.location=0,e.attributes.color.location=2,e.attributes.uv.location=3,e}function c(t){var e=p(t,S);return e.attributes.position.location=0,e.attributes.color.location=2,e.attributes.uv.location=3,e.attributes.pointSize.location=4,e}function u(t){var e=p(t,C);return e.attributes.position.location=0,e.attributes.id.location=1,e}function h(t){var e=p(t,P);return e.attributes.position.location=0,e.attributes.id.location=1,e.attributes.pointSize.location=4,e}function f(t){var e=p(t,z);return e.attributes.position.location=0,e}function d(t){var e=t.gl,r=s(e),i=l(e),o=c(e),a=u(e),d=h(e),p=f(e),y=m(e,_(new Uint8Array([255,255,255,255]),[1,1,4]));y.generateMipmap(),y.minFilter=e.LINEAR_MIPMAP_LINEAR,y.magFilter=e.LINEAR;var b=g(e),x=g(e),w=g(e),A=g(e),k=g(e),M=v(e,[{buffer:b,type:e.FLOAT,size:3},{buffer:k,type:e.UNSIGNED_BYTE,size:4,normalized:!0},{buffer:x,type:e.FLOAT,size:4},{buffer:w,type:e.FLOAT,size:2},{buffer:A,type:e.FLOAT,size:3}]),T=g(e),E=g(e),L=g(e),S=g(e),C=v(e,[{buffer:T,type:e.FLOAT,size:3},{buffer:S,type:e.UNSIGNED_BYTE,size:4,normalized:!0},{buffer:E,type:e.FLOAT,size:4},{buffer:L,type:e.FLOAT,size:2}]),P=g(e),z=g(e),R=g(e),O=g(e),I=g(e),N=v(e,[{buffer:P,type:e.FLOAT,size:3},{buffer:I,type:e.UNSIGNED_BYTE,size:4,normalized:!0},{buffer:z,type:e.FLOAT,size:4},{buffer:R,type:e.FLOAT,size:2},{buffer:O,type:e.FLOAT,size:1}]),j=g(e),F=v(e,[{buffer:j,type:e.FLOAT,size:3}]),D=new n(e,y,r,i,o,a,d,p,b,k,x,w,A,M,T,S,E,L,C,P,I,z,R,O,N,j,F);return D.update(t),D}var p=t(\\\"gl-shader\\\"),g=t(\\\"gl-buffer\\\"),v=t(\\\"gl-vao\\\"),m=t(\\\"gl-texture2d\\\"),y=t(\\\"normals\\\"),b=t(\\\"gl-mat4/multiply\\\"),x=t(\\\"gl-mat4/invert\\\"),_=t(\\\"ndarray\\\"),w=t(\\\"colormap\\\"),A=t(\\\"simplicial-complex-contour\\\"),k=t(\\\"typedarray-pool\\\"),M=t(\\\"./lib/shaders\\\"),T=t(\\\"./lib/closest-point\\\"),E=M.meshShader,L=M.wireShader,S=M.pointShader,C=M.pickShader,P=M.pointPickShader,z=M.contourShader,R=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],O=n.prototype;O.isOpaque=function(){return this.opacity>=1},O.isTransparent=function(){return this.opacity<1},O.pickSlots=1,O.setPickBase=function(t){this.pickId=t},O.highlight=function(t){if(!t||!this.contourEnable)return void(this.contourCount=0);for(var e=A(this.cells,this.intensity,t.intensity),r=e.cells,n=e.vertexIds,i=e.vertexWeights,o=r.length,a=k.mallocFloat32(6*o),s=0,l=0;o>l;++l)for(var c=r[l],u=0;2>u;++u){var h=c[0];2===c.length&&(h=c[u]);for(var f=n[h][0],d=n[h][1],p=i[h],g=1-p,v=this.positions[f],m=this.positions[d],y=0;3>y;++y)a[s++]=p*v[y]+g*m[y]}this.contourCount=s/3|0,this.contourPositions.update(a.subarray(0,s)),k.free(a)},O.update=function(t){t=t||{};var e=this.gl;this.dirty=!0,\\\"contourEnable\\\"in t&&(this.contourEnable=t.contourEnable),\\\"contourColor\\\"in t&&(this.contourColor=t.contourColor),\\\"lineWidth\\\"in t&&(this.lineWidth=t.lineWidth),\\\"opacity\\\"in t&&(this.opacity=t.opacity),t.texture?(this.texture.dispose(),this.texture=m(e,t.texture)):t.colormap&&(this.texture.shape=[256,256],this.texture.minFilter=e.LINEAR_MIPMAP_LINEAR,this.texture.magFilter=e.LINEAR,this.texture.setPixels(i(t.colormap)),this.texture.generateMipmap());var r=t.cells,n=t.positions;if(n&&r){var s=[],l=[],c=[],u=[],h=[],f=[],d=[],p=[],g=[],v=[],b=[],x=[],_=[],w=[];this.cells=r,this.positions=n;var A=t.vertexNormals,k=t.cellNormals;t.useFacetNormals&&!k&&(k=y.faceNormals(r,n)),k||A||(A=y.vertexNormals(r,n));var M=t.vertexColors,T=t.cellColors,E=t.meshColor||[1,1,1,1],L=t.vertexUVs,S=t.vertexIntensity,C=t.cellUVs,P=t.cellIntensity,z=1/0,R=-(1/0);if(!L&&!C)if(S)for(var O=0;O<S.length;++O){var I=S[O];z=Math.min(z,I),R=Math.max(R,I)}else if(P)for(var O=0;O<P.length;++O){var I=P[O];z=Math.min(z,I),R=Math.max(R,I)}else for(var O=0;O<n.length;++O){var I=n[O][2];z=Math.min(z,I),R=Math.max(R,I)}S?this.intensity=S:P?this.intensity=o(r,n.length,P):this.intensity=a(n);var N=t.pointSizes,j=t.pointSize||1;this.bounds=[[1/0,1/0,1/0],[-(1/0),-(1/0),-(1/0)]];for(var O=0;O<n.length;++O)for(var F=n[O],D=0;3>D;++D)!isNaN(F[D])&&isFinite(F[D])&&(this.bounds[0][D]=Math.min(this.bounds[0][D],F[D]),this.bounds[1][D]=Math.max(this.bounds[1][D],F[D]));var B=0,U=0,V=0;t:for(var O=0;O<r.length;++O){var q=r[O];switch(q.length){case 1:for(var H=q[0],F=n[H],D=0;3>D;++D)if(isNaN(F[D])||!isFinite(F[D]))continue t;v.push(F[0],F[1],F[2]);var G;G=M?M[H]:T?T[O]:E,3===G.length?b.push(G[0],G[1],G[2],1):b.push(G[0],G[1],G[2],G[3]);var Y;Y=L?L[H]:S?[(S[H]-z)/(R-z),0]:C?C[O]:P?[(P[O]-z)/(R-z),0]:[(F[2]-z)/(R-z),0],x.push(Y[0],Y[1]),N?_.push(N[H]):_.push(j),w.push(O),V+=1;break;case 2:for(var D=0;2>D;++D)for(var H=q[D],F=n[H],X=0;3>X;++X)if(isNaN(F[X])||!isFinite(F[X]))continue t;for(var D=0;2>D;++D){var H=q[D],F=n[H];f.push(F[0],F[1],F[2]);var G;G=M?M[H]:T?T[O]:E,3===G.length?d.push(G[0],G[1],G[2],1):d.push(G[0],G[1],G[2],G[3]);var Y;Y=L?L[H]:S?[(S[H]-z)/(R-z),0]:C?C[O]:P?[(P[O]-z)/(R-z),0]:[(F[2]-z)/(R-z),0],p.push(Y[0],Y[1]),g.push(O)}U+=1;break;case 3:for(var D=0;3>D;++D)for(var H=q[D],F=n[H],X=0;3>X;++X)if(isNaN(F[X])||!isFinite(F[X]))continue t;for(var D=0;3>D;++D){var H=q[D],F=n[H];s.push(F[0],F[1],F[2]);var G;G=M?M[H]:T?T[O]:E,3===G.length?l.push(G[0],G[1],G[2],1):l.push(G[0],G[1],G[2],G[3]);var Y;Y=L?L[H]:S?[(S[H]-z)/(R-z),0]:C?C[O]:P?[(P[O]-z)/(R-z),0]:[(F[2]-z)/(R-z),0],u.push(Y[0],Y[1]);var W;W=A?A[H]:k[O],c.push(W[0],W[1],W[2]),h.push(O)}B+=1}}this.pointCount=V,this.edgeCount=U,this.triangleCount=B,this.pointPositions.update(v),this.pointColors.update(b),this.pointUVs.update(x),this.pointSizes.update(_),this.pointIds.update(new Uint32Array(w)),this.edgePositions.update(f),this.edgeColors.update(d),this.edgeUVs.update(p),this.edgeIds.update(new Uint32Array(g)),this.trianglePositions.update(s),this.triangleColors.update(l),this.triangleUVs.update(u),this.triangleNormals.update(c),this.triangleIds.update(new Uint32Array(h))}},O.drawTransparent=O.draw=function(t){t=t||{};for(var e=this.gl,r=t.model||R,n=t.view||R,i=t.projection||R,o=[[-1e6,-1e6,-1e6],[1e6,1e6,1e6]],a=0;3>a;++a)o[0][a]=Math.max(o[0][a],this.clipBounds[0][a]),o[1][a]=Math.min(o[1][a],this.clipBounds[1][a]);var s={model:r,view:n,projection:i,clipBounds:o,kambient:this.ambientLight,kdiffuse:this.diffuseLight,kspecular:this.specularLight,roughness:this.roughness,fresnel:this.fresnel,eyePosition:[0,0,0],lightPosition:[0,0,0],opacity:this.opacity,contourColor:this.contourColor,texture:0};this.texture.bind(0);var l=new Array(16);b(l,s.view,s.model),b(l,s.projection,l),x(l,l);for(var a=0;3>a;++a)s.eyePosition[a]=l[12+a]/l[15];for(var c=l[15],a=0;3>a;++a)c+=this.lightPosition[a]*l[4*a+3];for(var a=0;3>a;++a){for(var u=l[12+a],h=0;3>h;++h)u+=l[4*h+a]*this.lightPosition[h];s.lightPosition[a]=u/c}if(this.triangleCount>0){var f=this.triShader;f.bind(),f.uniforms=s,this.triangleVAO.bind(),e.drawArrays(e.TRIANGLES,0,3*this.triangleCount),this.triangleVAO.unbind()}if(this.edgeCount>0&&this.lineWidth>0){var f=this.lineShader;f.bind(),f.uniforms=s,this.edgeVAO.bind(),e.lineWidth(this.lineWidth),e.drawArrays(e.LINES,0,2*this.edgeCount),this.edgeVAO.unbind()}if(this.pointCount>0){var f=this.pointShader;f.bind(),f.uniforms=s,this.pointVAO.bind(),e.drawArrays(e.POINTS,0,this.pointCount),this.pointVAO.unbind()}if(this.contourEnable&&this.contourCount>0&&this.contourLineWidth>0){var f=this.contourShader;f.bind(),f.uniforms=s,this.contourVAO.bind(),e.drawArrays(e.LINES,0,this.contourCount),this.contourVAO.unbind()}},O.drawPick=function(t){t=t||{};for(var e=this.gl,r=t.model||R,n=t.view||R,i=t.projection||R,o=[[-1e6,-1e6,-1e6],[1e6,1e6,1e6]],a=0;3>a;++a)o[0][a]=Math.max(o[0][a],this.clipBounds[0][a]),o[1][a]=Math.min(o[1][a],this.clipBounds[1][a]);this._model=[].slice.call(r),this._view=[].slice.call(n),this._projection=[].slice.call(i),this._resolution=[e.drawingBufferWidth,e.drawingBufferHeight];var s={model:r,view:n,projection:i,clipBounds:o,pickId:this.pickId/255},l=this.pickShader;if(l.bind(),l.uniforms=s,this.triangleCount>0&&(this.triangleVAO.bind(),e.drawArrays(e.TRIANGLES,0,3*this.triangleCount),this.triangleVAO.unbind()),this.edgeCount>0&&(this.edgeVAO.bind(),e.lineWidth(this.lineWidth),e.drawArrays(e.LINES,0,2*this.edgeCount),this.edgeVAO.unbind()),this.pointCount>0){var l=this.pointPickShader;l.bind(),l.uniforms=s,this.pointVAO.bind(),e.drawArrays(e.POINTS,0,this.pointCount),this.pointVAO.unbind()}},O.pick=function(t){if(!t)return null;if(t.id!==this.pickId)return null;for(var e=t.value[0]+256*t.value[1]+65536*t.value[2],r=this.cells[e],n=this.positions,i=new Array(r.length),o=0;o<r.length;++o)i[o]=n[r[o]];var a=T(i,[t.coord[0],this._resolution[1]-t.coord[1]],this._model,this._view,this._projection,this._resolution);if(!a)return null;for(var s=a[2],l=0,o=0;o<r.length;++o)l+=s[o]*this.intensity[r[o]];return{position:a[1],index:r[a[0]],cell:r,cellId:e,intensity:l,dataCoordinate:this.positions[r[a[0]]]}},O.dispose=function(){this.texture.dispose(),this.triShader.dispose(),this.lineShader.dispose(),this.pointShader.dispose(),this.pickShader.dispose(),this.pointPickShader.dispose(),this.triangleVAO.dispose(),this.trianglePositions.dispose(),this.triangleColors.dispose(),this.triangleUVs.dispose(),this.triangleNormals.dispose(),this.triangleIds.dispose(),this.edgeVAO.dispose(),this.edgePositions.dispose(),this.edgeColors.dispose(),this.edgeUVs.dispose(),this.edgeIds.dispose(),this.pointVAO.dispose(),this.pointPositions.dispose(),this.pointColors.dispose(),this.pointUVs.dispose(),this.pointSizes.dispose(),this.pointIds.dispose(),this.contourVAO.dispose(),this.contourPositions.dispose(),this.contourShader.dispose()},e.exports=d},{\\\"./lib/closest-point\\\":105,\\\"./lib/shaders\\\":106,colormap:57,\\\"gl-buffer\\\":75,\\\"gl-mat4/invert\\\":94,\\\"gl-mat4/multiply\\\":96,\\\"gl-shader\\\":154,\\\"gl-texture2d\\\":180,\\\"gl-vao\\\":184,ndarray:210,normals:109,\\\"simplicial-complex-contour\\\":111,\\\"typedarray-pool\\\":235}],108:[function(t,e,r){\\\"use strict\\\";function n(t){for(var e=0,r=0;r<t.length;++r)e+=t[r];return e}function i(t,e){for(var r=e.length,i=new Array(r+1),a=0;r>a;++a){for(var s=new Array(r+1),l=0;r>=l;++l)s[l]=t[l][a];i[a]=s}i[r]=new Array(r+1);for(var a=0;r>=a;++a)i[r][a]=1;for(var c=new Array(r+1),a=0;r>a;++a)c[a]=e[a];c[r]=1;var u=o(i,c),h=n(u[r+1]);0===h&&(h=1);for(var f=new Array(r+1),a=0;r>=a;++a)f[a]=n(u[a])/h;return f}e.exports=i;var o=t(\\\"robust-linear-solve\\\")},{\\\"robust-linear-solve\\\":213}],109:[function(t,e,r){var n=1e-6;r.vertexNormals=function(t,e){for(var r=e.length,i=new Array(r),o=0;r>o;++o)i[o]=[0,0,0];for(var o=0;o<t.length;++o)for(var a=t[o],s=0,l=a[a.length-1],c=a[0],u=0;u<a.length;++u){s=l,l=c,c=a[(u+1)%a.length];for(var h=e[s],f=e[l],d=e[c],p=new Array(3),g=0,v=new Array(3),m=0,y=0;3>y;++y)p[y]=h[y]-f[y],g+=p[y]*p[y],v[y]=d[y]-f[y],m+=v[y]*v[y];if(g*m>n)for(var b=i[l],x=1/Math.sqrt(g*m),y=0;3>y;++y){var _=(y+1)%3,w=(y+2)%3;b[y]+=x*(v[_]*p[w]-v[w]*p[_])}}for(var o=0;r>o;++o){for(var b=i[o],A=0,y=0;3>y;++y)A+=b[y]*b[y];if(A>n)for(var x=1/Math.sqrt(A),y=0;3>y;++y)b[y]*=x;else for(var y=0;3>y;++y)b[y]=0}return i},r.faceNormals=function(t,e){for(var r=t.length,i=new Array(r),o=0;r>o;++o){for(var a=t[o],s=new Array(3),l=0;3>l;++l)s[l]=e[a[l]];for(var c=new Array(3),u=new Array(3),l=0;3>l;++l)c[l]=s[1][l]-s[0][l],u[l]=s[2][l]-s[0][l];for(var h=new Array(3),f=0,l=0;3>l;++l){var d=(l+1)%3,p=(l+2)%3;h[l]=c[d]*u[p]-c[p]*u[d],f+=h[l]*h[l]}f=f>n?1/Math.sqrt(f):0;for(var l=0;3>l;++l)h[l]*=f;i[o]=h}return i}},{}],110:[function(t,e,r){\\\"use strict\\\";function n(t,e,r,n,s){i.length<n.length&&(i=new Float64Array(n.length),o=new Float64Array(n.length),a=new Float64Array(n.length));for(var l=0;l<n.length;++l)i[l]=t[l]-n[l],o[l]=e[l]-t[l],a[l]=r[l]-t[l];for(var c=0,u=0,h=0,f=0,d=0,p=0,l=0;l<n.length;++l){var g=o[l],v=a[l],m=i[l];c+=g*g,u+=g*v,h+=v*v,f+=m*g,d+=m*v,p+=m*m}var y,b=Math.abs(c*h-u*u),x=u*d-h*f,_=u*f-c*d;if(b>=x+_)if(0>x)0>_&&0>f?(_=0,-f>=c?(x=1,y=c+2*f+p):(x=-f/c,y=f*x+p)):(x=0,d>=0?(_=0,y=p):-d>=h?(_=1,y=h+2*d+p):(_=-d/h,y=d*_+p));else if(0>_)_=0,f>=0?(x=0,y=p):-f>=c?(x=1,y=c+2*f+p):(x=-f/c,y=f*x+p);else{var w=1/b;x*=w,_*=w,y=x*(c*x+u*_+2*f)+_*(u*x+h*_+2*d)+p}else{var A,k,M,T;0>x?(A=u+f,k=h+d,k>A?(M=k-A,T=c-2*u+h,M>=T?(x=1,_=0,y=c+2*f+p):(x=M/T,_=1-x,y=x*(c*x+u*_+2*f)+_*(u*x+h*_+2*d)+p)):(x=0,0>=k?(_=1,y=h+2*d+p):d>=0?(_=0,y=p):(_=-d/h,y=d*_+p))):0>_?(A=u+d,k=c+f,k>A?(M=k-A,T=c-2*u+h,M>=T?(_=1,x=0,y=h+2*d+p):(_=M/T,x=1-_,y=x*(c*x+u*_+2*f)+_*(u*x+h*_+2*d)+p)):(_=0,0>=k?(x=1,y=c+2*f+p):f>=0?(x=0,y=p):(x=-f/c,y=f*x+p))):(M=h+d-u-f,0>=M?(x=0,_=1,y=h+2*d+p):(T=c-2*u+h,M>=T?(x=1,_=0,y=c+2*f+p):(x=M/T,_=1-x,y=x*(c*x+u*_+2*f)+_*(u*x+h*_+2*d)+p)))}for(var E=1-x-_,l=0;l<n.length;++l)s[l]=E*t[l]+x*e[l]+_*r[l];return 0>y?0:y}var i=new Float64Array(4),o=new Float64Array(4),a=new Float64Array(4);e.exports=n},{}],111:[function(t,e,r){\\\"use strict\\\";function n(t){for(var e=t.length,r=0,n=0;e>n;++n)r=0|Math.max(r,t[n].length);return r-1}function i(t,e){for(var r=t.length,n=h.mallocUint8(r),i=0;r>i;++i)n[i]=t[i]<e|0;return n}function o(t,e){for(var r=t.length,n=e*(e+1)/2*r|0,i=h.mallocUint32(2*n),o=0,a=0;r>a;++a)for(var s=t[a],e=s.length,l=0;e>l;++l)for(var c=0;l>c;++c){var d=s[c],p=s[l];i[o++]=0|Math.min(d,p),i[o++]=0|Math.max(d,p)}var g=o/2|0;f(u(i,[g,2]));for(var v=2,a=2;o>a;a+=2)i[a-2]===i[a]&&i[a-1]===i[a+1]||(i[v++]=i[a],i[v++]=i[a+1]);return u(i,[v/2|0,2])}function a(t,e,r,n){for(var i=t.data,o=t.shape[0],a=h.mallocDouble(o),s=0,l=0;o>l;++l){var c=i[2*l],f=i[2*l+1];if(r[c]!==r[f]){var d=e[c],p=e[f];i[2*s]=c,i[2*s+1]=f,a[s++]=(p-n)/(p-d)}}return t.shape[0]=s,u(a,[s])}function s(t,e){var r=h.mallocInt32(2*e),n=t.shape[0],i=t.data;r[0]=0;for(var o=0,a=0;n>a;++a){var s=i[2*a];if(s!==o){for(r[2*o+1]=a;++o<s;)r[2*o]=a,r[2*o+1]=a;r[2*o]=a}}for(r[2*o+1]=n;++o<e;)r[2*o]=r[2*o+1]=n;return r}function l(t){for(var e=0|t.shape[0],r=t.data,n=new Array(e),i=0;e>i;++i)n[i]=[r[2*i],r[2*i+1]];return n}function c(t,e,r,c){r=r||0,\\\"undefined\\\"==typeof c&&(c=n(t));var u=t.length;if(0===u||1>c)return{cells:[],vertexIds:[],vertexWeights:[]};var f=i(e,+r),p=o(t,c),g=a(p,e,f,+r),v=s(p,0|e.length),m=d(c)(t,p.data,v,f),y=l(p),b=[].slice.call(g.data,0,g.shape[0]);return h.free(f),h.free(p.data),h.free(g.data),h.free(v),{cells:m,vertexIds:y,vertexWeights:b}}e.exports=c;var u=t(\\\"ndarray\\\"),h=t(\\\"typedarray-pool\\\"),f=t(\\\"ndarray-sort\\\"),d=t(\\\"./lib/codegen\\\")},{\\\"./lib/codegen\\\":112,ndarray:210,\\\"ndarray-sort\\\":115,\\\"typedarray-pool\\\":235}],112:[function(t,e,r){\\\"use strict\\\";function n(t){function e(t){if(!(t.length<=0)){c.push(\\\"R.push(\\\");for(var e=0;e<t.length;++e){var r=t[e];e>0&&c.push(\\\",\\\"),c.push(\\\"[\\\");for(var n=0;n<r.length;++n){var i=r[n];n>0&&c.push(\\\",\\\"),c.push(\\\"B(C,E,c[\\\",i[0],\\\"],c[\\\",i[1],\\\"])\\\")}c.push(\\\"]\\\")}c.push(\\\");\\\")}}var r=0,n=new Array(t+1);n[0]=[[]];for(var i=1;t>=i;++i)for(var s=n[i]=a(i),l=0;l<s.length;++l)r=Math.max(r,s[i].length);for(var c=[\\\"function B(C,E,i,j){\\\",\\\"var a=Math.min(i,j)|0,b=Math.max(i,j)|0,l=C[2*a],h=C[2*a+1];\\\",\\\"while(l<h){\\\",\\\"var m=(l+h)>>1,v=E[2*m+1];\\\",\\\"if(v===b){return m}\\\",\\\"if(b<v){h=m}else{l=m+1}\\\",\\\"}\\\",\\\"return l;\\\",\\\"};\\\",\\\"function getContour\\\",t,\\\"d(F,E,C,S){\\\",\\\"var n=F.length,R=[];\\\",\\\"for(var i=0;i<n;++i){var c=F[i],l=c.length;\\\"],i=t+1;i>1;--i){\\n\",\n       \"t+1>i&&c.push(\\\"else \\\"),c.push(\\\"if(l===\\\",i,\\\"){\\\");for(var u=[],l=0;i>l;++l)u.push(\\\"(S[c[\\\"+l+\\\"]]<<\\\"+l+\\\")\\\");c.push(\\\"var M=\\\",u.join(\\\"+\\\"),\\\";if(M===0||M===\\\",(1<<i)-1,\\\"){continue}switch(M){\\\");for(var s=n[i-1],l=0;l<s.length;++l)c.push(\\\"case \\\",l,\\\":\\\"),e(s[l]),c.push(\\\"break;\\\");c.push(\\\"}}\\\")}c.push(\\\"}return R;};return getContour\\\",t,\\\"d\\\");var h=new Function(\\\"pool\\\",c.join(\\\"\\\"));return h(o)}function i(t){var e=s[t];return e||(e=s[t]=n(t)),e}e.exports=i;var o=t(\\\"typedarray-pool\\\"),a=t(\\\"marching-simplex-table\\\"),s={}},{\\\"marching-simplex-table\\\":113,\\\"typedarray-pool\\\":235}],113:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){for(var n=new Array(t),i=0;t>i;++i)n[i]=0,i===e&&(n[i]+=.5),i===r&&(n[i]+=.5);return n}function i(t,e){if(0===e||e===(1<<t+1)-1)return[];for(var r=[],i=[],o=0;t>=o;++o)if(e&1<<o){r.push(n(t,o-1,o-1)),i.push(null);for(var s=0;t>=s;++s)~e&1<<s&&(r.push(n(t,o-1,s-1)),i.push([o,s]))}var l=a(r),c=[];t:for(var o=0;o<l.length;++o){for(var u=l[o],h=[],s=0;s<u.length;++s){if(!i[u[s]])continue t;h.push(i[u[s]].slice())}c.push(h)}return c}function o(t){for(var e=1<<t+1,r=new Array(e),n=0;e>n;++n)r[n]=i(t,n);return r}e.exports=o;var a=t(\\\"convex-hull\\\")},{\\\"convex-hull\\\":60}],114:[function(t,e,r){\\\"use strict\\\";function n(t){switch(t){case\\\"uint8\\\":return[l.mallocUint8,l.freeUint8];case\\\"uint16\\\":return[l.mallocUint16,l.freeUint16];case\\\"uint32\\\":return[l.mallocUint32,l.freeUint32];case\\\"int8\\\":return[l.mallocInt8,l.freeInt8];case\\\"int16\\\":return[l.mallocInt16,l.freeInt16];case\\\"int32\\\":return[l.mallocInt32,l.freeInt32];case\\\"float32\\\":return[l.mallocFloat,l.freeFloat];case\\\"float64\\\":return[l.mallocDouble,l.freeDouble];default:return null}}function i(t){for(var e=[],r=0;t>r;++r)e.push(\\\"s\\\"+r);for(var r=0;t>r;++r)e.push(\\\"n\\\"+r);for(var r=1;t>r;++r)e.push(\\\"d\\\"+r);for(var r=1;t>r;++r)e.push(\\\"e\\\"+r);for(var r=1;t>r;++r)e.push(\\\"f\\\"+r);return e}function o(t,e){function r(t){return\\\"generic\\\"===e?[\\\"data.get(\\\",t,\\\")\\\"].join(\\\"\\\"):[\\\"data[\\\",t,\\\"]\\\"].join(\\\"\\\")}function o(t,r){return\\\"generic\\\"===e?[\\\"data.set(\\\",t,\\\",\\\",r,\\\")\\\"].join(\\\"\\\"):[\\\"data[\\\",t,\\\"]=\\\",r].join(\\\"\\\")}var a=[\\\"'use strict'\\\"],s=[\\\"ndarrayInsertionSort\\\",t.join(\\\"d\\\"),e].join(\\\"\\\"),l=[\\\"left\\\",\\\"right\\\",\\\"data\\\",\\\"offset\\\"].concat(i(t.length)),c=n(e),u=[\\\"i,j,cptr,ptr=left*s0+offset\\\"];if(t.length>1){for(var h=[],f=1;f<t.length;++f)u.push(\\\"i\\\"+f),h.push(\\\"n\\\"+f);c?u.push(\\\"scratch=malloc(\\\"+h.join(\\\"*\\\")+\\\")\\\"):u.push(\\\"scratch=new Array(\\\"+h.join(\\\"*\\\")+\\\")\\\"),u.push(\\\"dptr\\\",\\\"sptr\\\",\\\"a\\\",\\\"b\\\")}else u.push(\\\"scratch\\\");if(a.push([\\\"function \\\",s,\\\"(\\\",l.join(\\\",\\\"),\\\"){var \\\",u.join(\\\",\\\")].join(\\\"\\\"),\\\"for(i=left+1;i<=right;++i){\\\",\\\"j=i;ptr+=s0\\\",\\\"cptr=ptr\\\"),t.length>1){a.push(\\\"dptr=0;sptr=ptr\\\");for(var f=t.length-1;f>=0;--f){var d=t[f];0!==d&&a.push([\\\"for(i\\\",d,\\\"=0;i\\\",d,\\\"<n\\\",d,\\\";++i\\\",d,\\\"){\\\"].join(\\\"\\\"))}a.push(\\\"scratch[dptr++]=\\\",r(\\\"sptr\\\"));for(var f=0;f<t.length;++f){var d=t[f];0!==d&&a.push(\\\"sptr+=d\\\"+d,\\\"}\\\")}a.push(\\\"__g:while(j-->left){\\\",\\\"dptr=0\\\",\\\"sptr=cptr-s0\\\");for(var f=1;f<t.length;++f)1===f&&a.push(\\\"__l:\\\"),a.push([\\\"for(i\\\",f,\\\"=0;i\\\",f,\\\"<n\\\",f,\\\";++i\\\",f,\\\"){\\\"].join(\\\"\\\"));a.push([\\\"a=\\\",r(\\\"sptr\\\"),\\\"\\\\nb=scratch[dptr]\\\\nif(a<b){break __g}\\\\nif(a>b){break __l}\\\"].join(\\\"\\\"));for(var f=t.length-1;f>=1;--f)a.push(\\\"sptr+=e\\\"+f,\\\"dptr+=f\\\"+f,\\\"}\\\");a.push(\\\"dptr=cptr;sptr=cptr-s0\\\");for(var f=t.length-1;f>=0;--f){var d=t[f];0!==d&&a.push([\\\"for(i\\\",d,\\\"=0;i\\\",d,\\\"<n\\\",d,\\\";++i\\\",d,\\\"){\\\"].join(\\\"\\\"))}a.push(o(\\\"dptr\\\",r(\\\"sptr\\\")));for(var f=0;f<t.length;++f){var d=t[f];0!==d&&a.push([\\\"dptr+=d\\\",d,\\\";sptr+=d\\\",d].join(\\\"\\\"),\\\"}\\\")}a.push(\\\"cptr-=s0\\\\n}\\\"),a.push(\\\"dptr=cptr;sptr=0\\\");for(var f=t.length-1;f>=0;--f){var d=t[f];0!==d&&a.push([\\\"for(i\\\",d,\\\"=0;i\\\",d,\\\"<n\\\",d,\\\";++i\\\",d,\\\"){\\\"].join(\\\"\\\"))}a.push(o(\\\"dptr\\\",\\\"scratch[sptr++]\\\"));for(var f=0;f<t.length;++f){var d=t[f];0!==d&&a.push(\\\"dptr+=d\\\"+d,\\\"}\\\")}}else a.push(\\\"scratch=\\\"+r(\\\"ptr\\\"),\\\"while((j-->left)&&(\\\"+r(\\\"cptr-s0\\\")+\\\">scratch)){\\\",o(\\\"cptr\\\",r(\\\"cptr-s0\\\")),\\\"cptr-=s0\\\",\\\"}\\\",o(\\\"cptr\\\",\\\"scratch\\\"));if(a.push(\\\"}\\\"),t.length>1&&c&&a.push(\\\"free(scratch)\\\"),a.push(\\\"} return \\\"+s),c){var p=new Function(\\\"malloc\\\",\\\"free\\\",a.join(\\\"\\\\n\\\"));return p(c[0],c[1])}var p=new Function(a.join(\\\"\\\\n\\\"));return p()}function a(t,e,r){function o(t){return[\\\"(offset+\\\",t,\\\"*s0)\\\"].join(\\\"\\\")}function a(t){return\\\"generic\\\"===e?[\\\"data.get(\\\",t,\\\")\\\"].join(\\\"\\\"):[\\\"data[\\\",t,\\\"]\\\"].join(\\\"\\\")}function s(t,r){return\\\"generic\\\"===e?[\\\"data.set(\\\",t,\\\",\\\",r,\\\")\\\"].join(\\\"\\\"):[\\\"data[\\\",t,\\\"]=\\\",r].join(\\\"\\\")}function l(e,r,n){if(1===e.length)_.push(\\\"ptr0=\\\"+o(e[0]));else for(var i=0;i<e.length;++i)_.push([\\\"b_ptr\\\",i,\\\"=s0*\\\",e[i]].join(\\\"\\\"));r&&_.push(\\\"pivot_ptr=0\\\"),_.push(\\\"ptr_shift=offset\\\");for(var i=t.length-1;i>=0;--i){var a=t[i];0!==a&&_.push([\\\"for(i\\\",a,\\\"=0;i\\\",a,\\\"<n\\\",a,\\\";++i\\\",a,\\\"){\\\"].join(\\\"\\\"))}if(e.length>1)for(var i=0;i<e.length;++i)_.push([\\\"ptr\\\",i,\\\"=b_ptr\\\",i,\\\"+ptr_shift\\\"].join(\\\"\\\"));_.push(n),r&&_.push(\\\"++pivot_ptr\\\");for(var i=0;i<t.length;++i){var a=t[i];0!==a&&(e.length>1?_.push(\\\"ptr_shift+=d\\\"+a):_.push(\\\"ptr0+=d\\\"+a),_.push(\\\"}\\\"))}}function u(e,r,n,i){if(1===r.length)_.push(\\\"ptr0=\\\"+o(r[0]));else{for(var a=0;a<r.length;++a)_.push([\\\"b_ptr\\\",a,\\\"=s0*\\\",r[a]].join(\\\"\\\"));_.push(\\\"ptr_shift=offset\\\")}n&&_.push(\\\"pivot_ptr=0\\\"),e&&_.push(e+\\\":\\\");for(var a=1;a<t.length;++a)_.push([\\\"for(i\\\",a,\\\"=0;i\\\",a,\\\"<n\\\",a,\\\";++i\\\",a,\\\"){\\\"].join(\\\"\\\"));if(r.length>1)for(var a=0;a<r.length;++a)_.push([\\\"ptr\\\",a,\\\"=b_ptr\\\",a,\\\"+ptr_shift\\\"].join(\\\"\\\"));_.push(i);for(var a=t.length-1;a>=1;--a)n&&_.push(\\\"pivot_ptr+=f\\\"+a),r.length>1?_.push(\\\"ptr_shift+=e\\\"+a):_.push(\\\"ptr0+=e\\\"+a),_.push(\\\"}\\\")}function h(){t.length>1&&k&&_.push(\\\"free(pivot1)\\\",\\\"free(pivot2)\\\")}function f(e,r){var n=\\\"el\\\"+e,i=\\\"el\\\"+r;if(t.length>1){var s=\\\"__l\\\"+ ++M;u(s,[n,i],!1,[\\\"comp=\\\",a(\\\"ptr0\\\"),\\\"-\\\",a(\\\"ptr1\\\"),\\\"\\\\n\\\",\\\"if(comp>0){tmp0=\\\",n,\\\";\\\",n,\\\"=\\\",i,\\\";\\\",i,\\\"=tmp0;break \\\",s,\\\"}\\\\n\\\",\\\"if(comp<0){break \\\",s,\\\"}\\\"].join(\\\"\\\"))}else _.push([\\\"if(\\\",a(o(n)),\\\">\\\",a(o(i)),\\\"){tmp0=\\\",n,\\\";\\\",n,\\\"=\\\",i,\\\";\\\",i,\\\"=tmp0}\\\"].join(\\\"\\\"))}function d(e,r){t.length>1?l([e,r],!1,s(\\\"ptr0\\\",a(\\\"ptr1\\\"))):_.push(s(o(e),a(o(r))))}function p(e,r,n){if(t.length>1){var i=\\\"__l\\\"+ ++M;u(i,[r],!0,[e,\\\"=\\\",a(\\\"ptr0\\\"),\\\"-pivot\\\",n,\\\"[pivot_ptr]\\\\n\\\",\\\"if(\\\",e,\\\"!==0){break \\\",i,\\\"}\\\"].join(\\\"\\\"))}else _.push([e,\\\"=\\\",a(o(r)),\\\"-pivot\\\",n].join(\\\"\\\"))}function g(e,r){t.length>1?l([e,r],!1,[\\\"tmp=\\\",a(\\\"ptr0\\\"),\\\"\\\\n\\\",s(\\\"ptr0\\\",a(\\\"ptr1\\\")),\\\"\\\\n\\\",s(\\\"ptr1\\\",\\\"tmp\\\")].join(\\\"\\\")):_.push([\\\"ptr0=\\\",o(e),\\\"\\\\n\\\",\\\"ptr1=\\\",o(r),\\\"\\\\n\\\",\\\"tmp=\\\",a(\\\"ptr0\\\"),\\\"\\\\n\\\",s(\\\"ptr0\\\",a(\\\"ptr1\\\")),\\\"\\\\n\\\",s(\\\"ptr1\\\",\\\"tmp\\\")].join(\\\"\\\"))}function v(e,r,n){t.length>1?(l([e,r,n],!1,[\\\"tmp=\\\",a(\\\"ptr0\\\"),\\\"\\\\n\\\",s(\\\"ptr0\\\",a(\\\"ptr1\\\")),\\\"\\\\n\\\",s(\\\"ptr1\\\",a(\\\"ptr2\\\")),\\\"\\\\n\\\",s(\\\"ptr2\\\",\\\"tmp\\\")].join(\\\"\\\")),_.push(\\\"++\\\"+r,\\\"--\\\"+n)):_.push([\\\"ptr0=\\\",o(e),\\\"\\\\n\\\",\\\"ptr1=\\\",o(r),\\\"\\\\n\\\",\\\"ptr2=\\\",o(n),\\\"\\\\n\\\",\\\"++\\\",r,\\\"\\\\n\\\",\\\"--\\\",n,\\\"\\\\n\\\",\\\"tmp=\\\",a(\\\"ptr0\\\"),\\\"\\\\n\\\",s(\\\"ptr0\\\",a(\\\"ptr1\\\")),\\\"\\\\n\\\",s(\\\"ptr1\\\",a(\\\"ptr2\\\")),\\\"\\\\n\\\",s(\\\"ptr2\\\",\\\"tmp\\\")].join(\\\"\\\"))}function m(t,e){g(t,e),_.push(\\\"--\\\"+e)}function y(e,r,n){t.length>1?l([e,r],!0,[s(\\\"ptr0\\\",a(\\\"ptr1\\\")),\\\"\\\\n\\\",s(\\\"ptr1\\\",[\\\"pivot\\\",n,\\\"[pivot_ptr]\\\"].join(\\\"\\\"))].join(\\\"\\\")):_.push(s(o(e),a(o(r))),s(o(r),\\\"pivot\\\"+n))}function b(e,r){_.push([\\\"if((\\\",r,\\\"-\\\",e,\\\")<=\\\",c,\\\"){\\\\n\\\",\\\"insertionSort(\\\",e,\\\",\\\",r,\\\",data,offset,\\\",i(t.length).join(\\\",\\\"),\\\")\\\\n\\\",\\\"}else{\\\\n\\\",w,\\\"(\\\",e,\\\",\\\",r,\\\",data,offset,\\\",i(t.length).join(\\\",\\\"),\\\")\\\\n\\\",\\\"}\\\"].join(\\\"\\\"))}function x(e,r,n){t.length>1?(_.push([\\\"__l\\\",++M,\\\":while(true){\\\"].join(\\\"\\\")),l([e],!0,[\\\"if(\\\",a(\\\"ptr0\\\"),\\\"!==pivot\\\",r,\\\"[pivot_ptr]){break __l\\\",M,\\\"}\\\"].join(\\\"\\\")),_.push(n,\\\"}\\\")):_.push([\\\"while(\\\",a(o(e)),\\\"===pivot\\\",r,\\\"){\\\",n,\\\"}\\\"].join(\\\"\\\"))}var _=[\\\"'use strict'\\\"],w=[\\\"ndarrayQuickSort\\\",t.join(\\\"d\\\"),e].join(\\\"\\\"),A=[\\\"left\\\",\\\"right\\\",\\\"data\\\",\\\"offset\\\"].concat(i(t.length)),k=n(e),M=0;_.push([\\\"function \\\",w,\\\"(\\\",A.join(\\\",\\\"),\\\"){\\\"].join(\\\"\\\"));var T=[\\\"sixth=((right-left+1)/6)|0\\\",\\\"index1=left+sixth\\\",\\\"index5=right-sixth\\\",\\\"index3=(left+right)>>1\\\",\\\"index2=index3-sixth\\\",\\\"index4=index3+sixth\\\",\\\"el1=index1\\\",\\\"el2=index2\\\",\\\"el3=index3\\\",\\\"el4=index4\\\",\\\"el5=index5\\\",\\\"less=left+1\\\",\\\"great=right-1\\\",\\\"pivots_are_equal=true\\\",\\\"tmp\\\",\\\"tmp0\\\",\\\"x\\\",\\\"y\\\",\\\"z\\\",\\\"k\\\",\\\"ptr0\\\",\\\"ptr1\\\",\\\"ptr2\\\",\\\"comp_pivot1=0\\\",\\\"comp_pivot2=0\\\",\\\"comp=0\\\"];if(t.length>1){for(var E=[],L=1;L<t.length;++L)E.push(\\\"n\\\"+L),T.push(\\\"i\\\"+L);for(var L=0;8>L;++L)T.push(\\\"b_ptr\\\"+L);T.push(\\\"ptr3\\\",\\\"ptr4\\\",\\\"ptr5\\\",\\\"ptr6\\\",\\\"ptr7\\\",\\\"pivot_ptr\\\",\\\"ptr_shift\\\",\\\"elementSize=\\\"+E.join(\\\"*\\\")),k?T.push(\\\"pivot1=malloc(elementSize)\\\",\\\"pivot2=malloc(elementSize)\\\"):T.push(\\\"pivot1=new Array(elementSize),pivot2=new Array(elementSize)\\\")}else T.push(\\\"pivot1\\\",\\\"pivot2\\\");if(_.push(\\\"var \\\"+T.join(\\\",\\\")),f(1,2),f(4,5),f(1,3),f(2,3),f(1,4),f(3,4),f(2,5),f(2,3),f(4,5),t.length>1?l([\\\"el1\\\",\\\"el2\\\",\\\"el3\\\",\\\"el4\\\",\\\"el5\\\",\\\"index1\\\",\\\"index3\\\",\\\"index5\\\"],!0,[\\\"pivot1[pivot_ptr]=\\\",a(\\\"ptr1\\\"),\\\"\\\\n\\\",\\\"pivot2[pivot_ptr]=\\\",a(\\\"ptr3\\\"),\\\"\\\\n\\\",\\\"pivots_are_equal=pivots_are_equal&&(pivot1[pivot_ptr]===pivot2[pivot_ptr])\\\\n\\\",\\\"x=\\\",a(\\\"ptr0\\\"),\\\"\\\\n\\\",\\\"y=\\\",a(\\\"ptr2\\\"),\\\"\\\\n\\\",\\\"z=\\\",a(\\\"ptr4\\\"),\\\"\\\\n\\\",s(\\\"ptr5\\\",\\\"x\\\"),\\\"\\\\n\\\",s(\\\"ptr6\\\",\\\"y\\\"),\\\"\\\\n\\\",s(\\\"ptr7\\\",\\\"z\\\")].join(\\\"\\\")):_.push([\\\"pivot1=\\\",a(o(\\\"el2\\\")),\\\"\\\\n\\\",\\\"pivot2=\\\",a(o(\\\"el4\\\")),\\\"\\\\n\\\",\\\"pivots_are_equal=pivot1===pivot2\\\\n\\\",\\\"x=\\\",a(o(\\\"el1\\\")),\\\"\\\\n\\\",\\\"y=\\\",a(o(\\\"el3\\\")),\\\"\\\\n\\\",\\\"z=\\\",a(o(\\\"el5\\\")),\\\"\\\\n\\\",s(o(\\\"index1\\\"),\\\"x\\\"),\\\"\\\\n\\\",s(o(\\\"index3\\\"),\\\"y\\\"),\\\"\\\\n\\\",s(o(\\\"index5\\\"),\\\"z\\\")].join(\\\"\\\")),d(\\\"index2\\\",\\\"left\\\"),d(\\\"index4\\\",\\\"right\\\"),_.push(\\\"if(pivots_are_equal){\\\"),_.push(\\\"for(k=less;k<=great;++k){\\\"),p(\\\"comp\\\",\\\"k\\\",1),_.push(\\\"if(comp===0){continue}\\\"),_.push(\\\"if(comp<0){\\\"),_.push(\\\"if(k!==less){\\\"),g(\\\"k\\\",\\\"less\\\"),_.push(\\\"}\\\"),_.push(\\\"++less\\\"),_.push(\\\"}else{\\\"),_.push(\\\"while(true){\\\"),p(\\\"comp\\\",\\\"great\\\",1),_.push(\\\"if(comp>0){\\\"),_.push(\\\"great--\\\"),_.push(\\\"}else if(comp<0){\\\"),v(\\\"k\\\",\\\"less\\\",\\\"great\\\"),_.push(\\\"break\\\"),_.push(\\\"}else{\\\"),m(\\\"k\\\",\\\"great\\\"),_.push(\\\"break\\\"),_.push(\\\"}\\\"),_.push(\\\"}\\\"),_.push(\\\"}\\\"),_.push(\\\"}\\\"),_.push(\\\"}else{\\\"),_.push(\\\"for(k=less;k<=great;++k){\\\"),p(\\\"comp_pivot1\\\",\\\"k\\\",1),_.push(\\\"if(comp_pivot1<0){\\\"),_.push(\\\"if(k!==less){\\\"),g(\\\"k\\\",\\\"less\\\"),_.push(\\\"}\\\"),_.push(\\\"++less\\\"),_.push(\\\"}else{\\\"),p(\\\"comp_pivot2\\\",\\\"k\\\",2),_.push(\\\"if(comp_pivot2>0){\\\"),_.push(\\\"while(true){\\\"),p(\\\"comp\\\",\\\"great\\\",2),_.push(\\\"if(comp>0){\\\"),_.push(\\\"if(--great<k){break}\\\"),_.push(\\\"continue\\\"),_.push(\\\"}else{\\\"),p(\\\"comp\\\",\\\"great\\\",1),_.push(\\\"if(comp<0){\\\"),v(\\\"k\\\",\\\"less\\\",\\\"great\\\"),_.push(\\\"}else{\\\"),m(\\\"k\\\",\\\"great\\\"),_.push(\\\"}\\\"),_.push(\\\"break\\\"),_.push(\\\"}\\\"),_.push(\\\"}\\\"),_.push(\\\"}\\\"),_.push(\\\"}\\\"),_.push(\\\"}\\\"),_.push(\\\"}\\\"),y(\\\"left\\\",\\\"(less-1)\\\",1),y(\\\"right\\\",\\\"(great+1)\\\",2),b(\\\"left\\\",\\\"(less-2)\\\"),b(\\\"(great+2)\\\",\\\"right\\\"),_.push(\\\"if(pivots_are_equal){\\\"),h(),_.push(\\\"return\\\"),_.push(\\\"}\\\"),_.push(\\\"if(less<index1&&great>index5){\\\"),x(\\\"less\\\",1,\\\"++less\\\"),x(\\\"great\\\",2,\\\"--great\\\"),_.push(\\\"for(k=less;k<=great;++k){\\\"),p(\\\"comp_pivot1\\\",\\\"k\\\",1),_.push(\\\"if(comp_pivot1===0){\\\"),_.push(\\\"if(k!==less){\\\"),g(\\\"k\\\",\\\"less\\\"),_.push(\\\"}\\\"),_.push(\\\"++less\\\"),_.push(\\\"}else{\\\"),p(\\\"comp_pivot2\\\",\\\"k\\\",2),_.push(\\\"if(comp_pivot2===0){\\\"),_.push(\\\"while(true){\\\"),p(\\\"comp\\\",\\\"great\\\",2),_.push(\\\"if(comp===0){\\\"),_.push(\\\"if(--great<k){break}\\\"),_.push(\\\"continue\\\"),_.push(\\\"}else{\\\"),p(\\\"comp\\\",\\\"great\\\",1),_.push(\\\"if(comp<0){\\\"),v(\\\"k\\\",\\\"less\\\",\\\"great\\\"),_.push(\\\"}else{\\\"),m(\\\"k\\\",\\\"great\\\"),_.push(\\\"}\\\"),_.push(\\\"break\\\"),_.push(\\\"}\\\"),_.push(\\\"}\\\"),_.push(\\\"}\\\"),_.push(\\\"}\\\"),_.push(\\\"}\\\"),_.push(\\\"}\\\"),h(),b(\\\"less\\\",\\\"great\\\"),_.push(\\\"}return \\\"+w),t.length>1&&k){var S=new Function(\\\"insertionSort\\\",\\\"malloc\\\",\\\"free\\\",_.join(\\\"\\\\n\\\"));return S(r,k[0],k[1])}var S=new Function(\\\"insertionSort\\\",_.join(\\\"\\\\n\\\"));return S(r)}function s(t,e){var r=[\\\"'use strict'\\\"],n=[\\\"ndarraySortWrapper\\\",t.join(\\\"d\\\"),e].join(\\\"\\\"),s=[\\\"array\\\"];r.push([\\\"function \\\",n,\\\"(\\\",s.join(\\\",\\\"),\\\"){\\\"].join(\\\"\\\"));for(var l=[\\\"data=array.data,offset=array.offset|0,shape=array.shape,stride=array.stride\\\"],u=0;u<t.length;++u)l.push([\\\"s\\\",u,\\\"=stride[\\\",u,\\\"]|0,n\\\",u,\\\"=shape[\\\",u,\\\"]|0\\\"].join(\\\"\\\"));for(var h=new Array(t.length),f=[],u=0;u<t.length;++u){var d=t[u];0!==d&&(0===f.length?h[d]=\\\"1\\\":h[d]=f.join(\\\"*\\\"),f.push(\\\"n\\\"+d))}for(var p=-1,g=-1,u=0;u<t.length;++u){var v=t[u];0!==v&&(p>0?l.push([\\\"d\\\",v,\\\"=s\\\",v,\\\"-d\\\",p,\\\"*n\\\",p].join(\\\"\\\")):l.push([\\\"d\\\",v,\\\"=s\\\",v].join(\\\"\\\")),p=v);var d=t.length-1-u;0!==d&&(g>0?l.push([\\\"e\\\",d,\\\"=s\\\",d,\\\"-e\\\",g,\\\"*n\\\",g,\\\",f\\\",d,\\\"=\\\",h[d],\\\"-f\\\",g,\\\"*n\\\",g].join(\\\"\\\")):l.push([\\\"e\\\",d,\\\"=s\\\",d,\\\",f\\\",d,\\\"=\\\",h[d]].join(\\\"\\\")),g=d)}r.push(\\\"var \\\"+l.join(\\\",\\\"));var m=[\\\"0\\\",\\\"n0-1\\\",\\\"data\\\",\\\"offset\\\"].concat(i(t.length));r.push([\\\"if(n0<=\\\",c,\\\"){\\\",\\\"insertionSort(\\\",m.join(\\\",\\\"),\\\")}else{\\\",\\\"quickSort(\\\",m.join(\\\",\\\"),\\\")}\\\"].join(\\\"\\\")),r.push(\\\"}return \\\"+n);var y=new Function(\\\"insertionSort\\\",\\\"quickSort\\\",r.join(\\\"\\\\n\\\")),b=o(t,e),x=a(t,e,b);return y(b,x)}var l=t(\\\"typedarray-pool\\\"),c=32;e.exports=s},{\\\"typedarray-pool\\\":235}],115:[function(t,e,r){\\\"use strict\\\";function n(t){var e=t.order,r=t.dtype,n=[e,r],a=n.join(\\\":\\\"),s=o[a];return s||(o[a]=s=i(e,r)),s(t),t}var i=t(\\\"./lib/compile_sort.js\\\"),o={};e.exports=n},{\\\"./lib/compile_sort.js\\\":114}],116:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){this.plot=t,this.vbo=e,this.shader=r}function i(t){var e=t.gl,r=o(e,[0,0,0,1,1,0,1,1]),i=a(e,s.boxVert,s.lineFrag);return new n(t,r,i)}e.exports=i;var o=t(\\\"gl-buffer\\\"),a=t(\\\"gl-shader\\\"),s=t(\\\"./shaders\\\"),l=n.prototype;l.bind=function(){var t=this.shader;this.vbo.bind(),this.shader.bind(),t.attributes.coord.pointer(),t.uniforms.screenBox=this.plot.screenBox},l.drawBox=function(){var t=[0,0],e=[0,0];return function(r,n,i,o,a){var s=this.plot,l=this.shader,c=s.gl;t[0]=r,t[1]=n,e[0]=i,e[1]=o,l.uniforms.lo=t,l.uniforms.hi=e,l.uniforms.color=a,c.drawArrays(c.TRIANGLE_STRIP,0,4)}}(),l.dispose=function(){this.vbo.dispose(),this.shader.dispose()}},{\\\"./shaders\\\":119,\\\"gl-buffer\\\":75,\\\"gl-shader\\\":154}],117:[function(t,e,r){\\\"use strict\\\";function n(t,e,r,n){this.plot=t,this.vbo=e,this.shader=r,this.tickShader=n,this.ticks=[[],[]]}function i(t,e){return t-e}function o(t){var e=t.gl,r=a(e),i=s(e,c.gridVert,c.gridFrag),o=s(e,c.tickVert,c.gridFrag),l=new n(t,r,i,o);return l}e.exports=o;var a=t(\\\"gl-buffer\\\"),s=t(\\\"gl-shader\\\"),l=t(\\\"binary-search-bounds\\\"),c=t(\\\"./shaders\\\"),u=n.prototype;u.draw=function(){var t=[0,0],e=[0,0],r=[0,0];return function(){for(var n=this.plot,i=this.vbo,o=this.shader,a=this.ticks,s=n.gl,l=n._tickBounds,c=n.dataBox,u=n.viewBox,h=n.gridLineWidth,f=n.gridLineColor,d=n.gridLineEnable,p=n.pixelRatio,g=0;2>g;++g){var v=l[g],m=l[g+2],y=m-v,b=.5*(c[g+2]+c[g]),x=c[g+2]-c[g];e[g]=2*y/x,t[g]=2*(v-b)/x}o.bind(),i.bind(),o.attributes.dataCoord.pointer(),o.uniforms.dataShift=t,o.uniforms.dataScale=e;for(var _=0,g=0;2>g;++g){r[0]=r[1]=0,r[g]=1,o.uniforms.dataAxis=r,o.uniforms.lineWidth=h[g]/(u[g+2]-u[g])*p,o.uniforms.color=f[g];var w=6*a[g].length;d[g]&&w&&s.drawArrays(s.TRIANGLES,_,w),_+=w}}}(),u.drawTickMarks=function(){var t=[0,0],e=[0,0],r=[1,0],n=[0,1],o=[0,0],a=[0,0];return function(){for(var s=this.plot,c=this.vbo,u=this.tickShader,h=this.ticks,f=s.gl,d=s._tickBounds,p=s.dataBox,g=s.viewBox,v=s.pixelRatio,m=s.screenBox,y=m[2]-m[0],b=m[3]-m[1],x=g[2]-g[0],_=g[3]-g[1],w=0;2>w;++w){var A=d[w],k=d[w+2],M=k-A,T=.5*(p[w+2]+p[w]),E=p[w+2]-p[w];e[w]=2*M/E,t[w]=2*(A-T)/E}e[0]*=x/y,t[0]*=x/y,e[1]*=_/b,t[1]*=_/b,u.bind(),c.bind(),u.attributes.dataCoord.pointer();var L=u.uniforms;L.dataShift=t,L.dataScale=e;var S=s.tickMarkLength,C=s.tickMarkWidth,P=s.tickMarkColor,z=0,R=6*h[0].length,O=Math.min(l.ge(h[0],(p[0]-d[0])/(d[2]-d[0]),i),h[0].length),I=Math.min(l.gt(h[0],(p[2]-d[0])/(d[2]-d[0]),i),h[0].length),N=z+6*O,j=6*Math.max(0,I-O),F=Math.min(l.ge(h[1],(p[1]-d[1])/(d[3]-d[1]),i),h[1].length),D=Math.min(l.gt(h[1],(p[3]-d[1])/(d[3]-d[1]),i),h[1].length),B=R+6*F,U=6*Math.max(0,D-F);o[0]=2*(g[0]-S[1])/y-1,o[1]=(g[3]+g[1])/b-1,a[0]=S[1]*v/y,a[1]=C[1]*v/b,U&&(L.color=P[1],L.tickScale=a,L.dataAxis=n,L.screenOffset=o,f.drawArrays(f.TRIANGLES,B,U)),o[0]=(g[2]+g[0])/y-1,o[1]=2*(g[1]-S[0])/b-1,a[0]=C[0]*v/y,a[1]=S[0]*v/b,j&&(L.color=P[0],L.tickScale=a,L.dataAxis=r,L.screenOffset=o,f.drawArrays(f.TRIANGLES,N,j)),o[0]=2*(g[2]+S[3])/y-1,o[1]=(g[3]+g[1])/b-1,a[0]=S[3]*v/y,a[1]=C[3]*v/b,U&&(L.color=P[3],L.tickScale=a,L.dataAxis=n,L.screenOffset=o,f.drawArrays(f.TRIANGLES,B,U)),o[0]=(g[2]+g[0])/y-1,o[1]=2*(g[3]+S[2])/b-1,a[0]=C[2]*v/y,a[1]=S[2]*v/b,j&&(L.color=P[2],L.tickScale=a,L.dataAxis=r,L.screenOffset=o,f.drawArrays(f.TRIANGLES,N,j))}}(),u.update=function(){var t=[1,1,-1,-1,1,-1],e=[1,-1,1,1,-1,-1];return function(r){for(var n=r.ticks,i=r.bounds,o=new Float32Array(18*(n[0].length+n[1].length)),a=(this.plot.zeroLineEnable,0),s=[[],[]],l=0;2>l;++l)for(var c=s[l],u=n[l],h=i[l],f=i[l+2],d=0;d<u.length;++d){var p=(u[d].x-h)/(f-h);c.push(p);for(var g=0;6>g;++g)o[a++]=p,o[a++]=t[g],o[a++]=e[g]}this.ticks=s,this.vbo.update(o)}}(),u.dispose=function(){this.vbo.dispose(),this.shader.dispose(),this.tickShader.dispose()}},{\\\"./shaders\\\":119,\\\"binary-search-bounds\\\":121,\\\"gl-buffer\\\":75,\\\"gl-shader\\\":154}],118:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){this.plot=t,this.vbo=e,this.shader=r}function i(t){var e=t.gl,r=o(e,[-1,-1,-1,1,1,-1,1,1]),i=a(e,s.lineVert,s.lineFrag),l=new n(t,r,i);return l}e.exports=i;var o=t(\\\"gl-buffer\\\"),a=t(\\\"gl-shader\\\"),s=t(\\\"./shaders\\\"),l=n.prototype;l.bind=function(){var t=this.shader;this.vbo.bind(),this.shader.bind(),t.attributes.coord.pointer(),t.uniforms.screenBox=this.plot.screenBox},l.drawLine=function(){var t=[0,0],e=[0,0];return function(r,n,i,o,a,s){var l=this.plot,c=this.shader,u=l.gl;t[0]=r,t[1]=n,e[0]=i,e[1]=o,c.uniforms.start=t,c.uniforms.end=e,c.uniforms.width=a*l.pixelRatio,c.uniforms.color=s,u.drawArrays(u.TRIANGLE_STRIP,0,4)}}(),l.dispose=function(){this.vbo.dispose(),this.shader.dispose()}},{\\\"./shaders\\\":119,\\\"gl-buffer\\\":75,\\\"gl-shader\\\":154}],119:[function(t,e,r){\\\"use strict\\\";var n=\\\"precision lowp float;\\\\n#define GLSLIFY 1\\\\nuniform vec4 color;\\\\nvoid main() {\\\\n  gl_FragColor = vec4(color.xyz * color.w, color.w);\\\\n}\\\\n\\\";e.exports={lineVert:\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nattribute vec2 coord;\\\\n\\\\nuniform vec4 screenBox;\\\\nuniform vec2 start, end;\\\\nuniform float width;\\\\n\\\\nvec2 perp(vec2 v) {\\\\n  return vec2(v.y, -v.x);\\\\n}\\\\n\\\\nvec2 screen(vec2 v) {\\\\n  return 2.0 * (v - screenBox.xy) / (screenBox.zw - screenBox.xy) - 1.0;\\\\n}\\\\n\\\\nvoid main() {\\\\n  vec2 delta = normalize(perp(start - end));\\\\n  vec2 offset = mix(start, end, 0.5 * (coord.y+1.0));\\\\n  gl_Position = vec4(screen(offset + 0.5 * width * delta * coord.x), 0, 1);\\\\n}\\\\n\\\",lineFrag:n,textVert:\\\"#define GLSLIFY 1\\\\nattribute vec3 textCoordinate;\\\\n\\\\nuniform vec2 dataScale, dataShift, dataAxis, screenOffset, textScale;\\\\nuniform float angle;\\\\n\\\\nvoid main() {\\\\n  float dataOffset  = textCoordinate.z;\\\\n  vec2 glyphOffset  = textCoordinate.xy;\\\\n  mat2 glyphMatrix = mat2(cos(angle), sin(angle), -sin(angle), cos(angle));\\\\n  vec2 screenCoordinate = dataAxis * (dataScale * dataOffset + dataShift) +\\\\n    glyphMatrix * glyphOffset * textScale + screenOffset;\\\\n  gl_Position = vec4(screenCoordinate, 0, 1);\\\\n}\\\\n\\\",textFrag:n,gridVert:\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nattribute vec3 dataCoord;\\\\n\\\\nuniform vec2 dataAxis, dataShift, dataScale;\\\\nuniform float lineWidth;\\\\n\\\\nvoid main() {\\\\n  vec2 pos = dataAxis * (dataScale * dataCoord.x + dataShift);\\\\n  pos += 10.0 * dataCoord.y * vec2(dataAxis.y, -dataAxis.x) + dataCoord.z * lineWidth;\\\\n  gl_Position = vec4(pos, 0, 1);\\\\n}\\\\n\\\",gridFrag:n,boxVert:\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nattribute vec2 coord;\\\\n\\\\nuniform vec4 screenBox;\\\\nuniform vec2 lo, hi;\\\\n\\\\nvec2 screen(vec2 v) {\\\\n  return 2.0 * (v - screenBox.xy) / (screenBox.zw - screenBox.xy) - 1.0;\\\\n}\\\\n\\\\nvoid main() {\\\\n  gl_Position = vec4(screen(mix(lo, hi, coord)), 0, 1);\\\\n}\\\\n\\\",tickVert:\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nattribute vec3 dataCoord;\\\\n\\\\nuniform vec2 dataAxis, dataShift, dataScale, screenOffset, tickScale;\\\\n\\\\nvoid main() {\\\\n  vec2 pos = dataAxis * (dataScale * dataCoord.x + dataShift);\\\\n  gl_Position = vec4(pos + tickScale*dataCoord.yz + screenOffset, 0, 1);\\\\n}\\\\n\\\"}},{}],120:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){this.plot=t,this.vbo=e,this.shader=r,this.tickOffset=[[],[]],this.tickX=[[],[]],this.labelOffset=[0,0],this.labelCount=[0,0]}function i(t){var e=t.gl,r=o(e),i=a(e,c.textVert,c.textFrag),s=new n(t,r,i);return s}e.exports=i;var o=t(\\\"gl-buffer\\\"),a=t(\\\"gl-shader\\\"),s=t(\\\"text-cache\\\"),l=t(\\\"binary-search-bounds\\\"),c=t(\\\"./shaders\\\"),u=n.prototype;u.drawTicks=function(){var t=[0,0],e=[0,0],r=[0,0];return function(n){var i=this.plot,o=this.shader,a=this.tickX[n],s=this.tickOffset[n],c=i.gl,u=i.viewBox,h=i.dataBox,f=i.screenBox,d=i.pixelRatio,p=i.tickEnable,g=i.tickPad,v=i.tickColor,m=i.tickAngle,y=(i.tickMarkLength,i.labelEnable),b=i.labelPad,x=i.labelColor,_=i.labelAngle,w=this.labelOffset[n],A=this.labelCount[n],k=l.lt(a,h[n]),M=l.le(a,h[n+2]);t[0]=t[1]=0,t[n]=1,e[n]=(u[2+n]+u[n])/(f[2+n]-f[n])-1;var T=2/f[2+(1^n)]-f[1^n];e[1^n]=T*u[1^n]-1,p[n]&&(e[1^n]-=T*d*g[n],M>k&&s[M]>s[k]&&(o.uniforms.dataAxis=t,o.uniforms.screenOffset=e,o.uniforms.color=v[n],o.uniforms.angle=m[n],c.drawArrays(c.TRIANGLES,s[k],s[M]-s[k]))),y[n]&&A&&(e[1^n]-=T*d*b[n],o.uniforms.dataAxis=r,o.uniforms.screenOffset=e,o.uniforms.color=x[n],o.uniforms.angle=_[n],c.drawArrays(c.TRIANGLES,w,A)),e[1^n]=T*u[2+(1^n)]-1,p[n+2]&&(e[1^n]+=T*d*g[n+2],M>k&&s[M]>s[k]&&(o.uniforms.dataAxis=t,o.uniforms.screenOffset=e,o.uniforms.color=v[n+2],o.uniforms.angle=m[n+2],c.drawArrays(c.TRIANGLES,s[k],s[M]-s[k]))),y[n+2]&&A&&(e[1^n]+=T*d*b[n+2],o.uniforms.dataAxis=r,o.uniforms.screenOffset=e,o.uniforms.color=x[n+2],o.uniforms.angle=_[n+2],c.drawArrays(c.TRIANGLES,w,A))}}(),u.drawTitle=function(){var t=[0,0],e=[0,0];return function(){var r=this.plot,n=this.shader,i=r.gl,o=r.screenBox,a=r.titleCenter,s=r.titleAngle,l=r.titleColor,a=r.titleCenter,c=r.pixelRatio;if(this.titleCount){for(var u=0;2>u;++u)e[u]=2*(a[u]*c-o[u])/(o[2+u]-o[u])-1;n.bind(),n.uniforms.dataAxis=t,n.uniforms.screenOffset=e,n.uniforms.angle=s,n.uniforms.color=l,i.drawArrays(i.TRIANGLES,this.titleOffset,this.titleCount)}}}(),u.bind=function(){var t=[0,0],e=[0,0],r=[0,0];return function(){var n=this.plot,i=this.shader,o=n._tickBounds,a=n.dataBox,s=n.screenBox,l=n.viewBox;i.bind();for(var c=0;2>c;++c){var u=o[c],h=o[c+2],f=h-u,d=.5*(a[c+2]+a[c]),p=a[c+2]-a[c],g=l[c],v=l[c+2],m=v-g,y=s[c],b=s[c+2],x=b-y;e[c]=2*f/p*m/x,t[c]=2*(u-d)/p*m/x}r[1]=2*n.pixelRatio/(s[3]-s[1]),r[0]=r[1]*(s[3]-s[1])/(s[2]-s[0]),i.uniforms.dataScale=e,i.uniforms.dataShift=t,i.uniforms.textScale=r,this.vbo.bind(),i.attributes.textCoordinate.pointer()}}(),u.update=function(t){for(var e=[],r=t.ticks,n=t.bounds,i=0;2>i;++i){for(var o=[Math.floor(e.length/3)],a=[-(1/0)],l=r[i],c=0;c<l.length;++c){for(var u=l[c],h=u.x,f=u.text,d=u.font||\\\"sans-serif\\\",p=u.fontSize||12,g=s(d,f).data,v=1/(n[i+2]-n[i]),m=n[i],y=0;y<g.length;y+=2)e.push(g[y]*p,-g[y+1]*p,(h-m)*v);o.push(Math.floor(e.length/3)),a.push(h)}this.tickOffset[i]=o,this.tickX[i]=a}for(var i=0;2>i;++i){this.labelOffset[i]=Math.floor(e.length/3);for(var g=s(t.labelFont[i],t.labels[i]).data,p=t.labelSize[i],c=0;c<g.length;c+=2)e.push(g[c]*p,-g[c+1]*p,0);this.labelCount[i]=Math.floor(e.length/3)-this.labelOffset[i]}this.titleOffset=Math.floor(e.length/3);for(var g=s(t.titleFont,t.title).data,p=t.titleSize,c=0;c<g.length;c+=2)e.push(g[c]*p,-g[c+1]*p,0);this.titleCount=Math.floor(e.length/3)-this.titleOffset,this.vbo.update(e)},u.dispose=function(){this.vbo.dispose(),this.shader.dispose()}},{\\\"./shaders\\\":119,\\\"binary-search-bounds\\\":121,\\\"gl-buffer\\\":75,\\\"gl-shader\\\":154,\\\"text-cache\\\":230}],121:[function(t,e,r){\\\"use strict\\\";function n(t,e,r,n,i){var o=[\\\"function \\\",t,\\\"(a,l,h,\\\",n.join(\\\",\\\"),\\\"){\\\",i?\\\"\\\":\\\"var i=\\\",r?\\\"l-1\\\":\\\"h+1\\\",\\\";while(l<=h){var m=(l+h)>>>1,x=a[m]\\\"];return i?e.indexOf(\\\"c\\\")<0?o.push(\\\";if(x===y){return m}else if(x<=y){\\\"):o.push(\\\";var p=c(x,y);if(p===0){return m}else if(p<=0){\\\"):o.push(\\\";if(\\\",e,\\\"){i=m;\\\"),r?o.push(\\\"l=m+1}else{h=m-1}\\\"):o.push(\\\"h=m-1}else{l=m+1}\\\"),o.push(\\\"}\\\"),i?o.push(\\\"return -1};\\\"):o.push(\\\"return i};\\\"),o.join(\\\"\\\")}function i(t,e,r,i){var o=new Function([n(\\\"A\\\",\\\"x\\\"+t+\\\"y\\\",e,[\\\"y\\\"],i),n(\\\"P\\\",\\\"c(x,y)\\\"+t+\\\"0\\\",e,[\\\"y\\\",\\\"c\\\"],i),\\\"function dispatchBsearch\\\",r,\\\"(a,y,c,l,h){if(typeof(c)==='function'){return P(a,(l===void 0)?0:l|0,(h===void 0)?a.length-1:h|0,y,c)}else{return A(a,(c===void 0)?0:c|0,(l===void 0)?a.length-1:l|0,y)}}return dispatchBsearch\\\",r].join(\\\"\\\"));return o()}e.exports={ge:i(\\\">=\\\",!1,\\\"GE\\\"),gt:i(\\\">\\\",!1,\\\"GT\\\"),lt:i(\\\"<\\\",!0,\\\"LT\\\"),le:i(\\\"<=\\\",!0,\\\"LE\\\"),eq:i(\\\"-\\\",!0,\\\"EQ\\\",!0)}},{}],122:[function(t,e,r){\\\"use strict\\\";function n(t,e){this.gl=t,this.pickBuffer=e,this.screenBox=[0,0,t.drawingBufferWidth,t.drawingBufferHeight],this.viewBox=[0,0,0,0],this.dataBox=[-10,-10,10,10],this.gridLineEnable=[!0,!0],this.gridLineWidth=[1,1],this.gridLineColor=[[0,0,0,1],[0,0,0,1]],this.pixelRatio=1,this.tickMarkLength=[0,0,0,0],this.tickMarkWidth=[0,0,0,0],this.tickMarkColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.tickPad=[15,15,15,15],this.tickAngle=[0,0,0,0],this.tickEnable=[!0,!0,!0,!0],this.tickColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.labelPad=[15,15,15,15],this.labelAngle=[0,Math.PI/2,0,3*Math.PI/2],this.labelEnable=[!0,!0,!0,!0],this.labelColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.titleCenter=[0,0],this.titleEnable=!0,this.titleAngle=0,this.titleColor=[0,0,0,1],this.borderColor=[0,0,0,0],this.backgroundColor=[0,0,0,0],this.zeroLineEnable=[!0,!0],this.zeroLineWidth=[4,4],this.zeroLineColor=[[0,0,0,1],[0,0,0,1]],this.borderLineEnable=[!0,!0,!0,!0],this.borderLineWidth=[2,2,2,2],this.borderLineColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.grid=null,this.text=null,this.line=null,this.box=null,this.objects=[],this.overlays=[],this._tickBounds=[1/0,1/0,-(1/0),-(1/0)],this.dirty=!1,this.pickDirty=!1,this.pickDelay=120,this.pickRadius=10,this._pickTimeout=null,this._drawPick=this.drawPick.bind(this),this._depthCounter=0}function i(t){for(var e=t.slice(),r=0;r<e.length;++r)e[r]=e[r].slice();return e}function o(t,e){return t.x-e.x}function a(t){var e=t.gl,r=s(e,[e.drawingBufferWidth,e.drawingBufferHeight]),i=new n(e,r);return i.grid=l(i),i.text=c(i),i.line=u(i),i.box=h(i),i.update(t),i}e.exports=a;var s=t(\\\"gl-select-static\\\"),l=t(\\\"./lib/grid\\\"),c=t(\\\"./lib/text\\\"),u=t(\\\"./lib/line\\\"),h=t(\\\"./lib/box\\\"),f=n.prototype;f.setDirty=function(){this.dirty=this.pickDirty=!0},f.setOverlayDirty=function(){this.dirty=!0},f.nextDepthValue=function(){return this._depthCounter++/65536},f.draw=function(){return function(){var t=this.gl,e=this.screenBox,r=this.viewBox,n=this.dataBox,i=this.pixelRatio,o=this.grid,a=this.line,s=this.text,l=this.objects;if(this._depthCounter=0,this.pickDirty&&(this._pickTimeout&&clearTimeout(this._pickTimeout),this.pickDirty=!1,this._pickTimeout=setTimeout(this._drawPick,this.pickDelay)),this.dirty){this.dirty=!1,t.bindFramebuffer(t.FRAMEBUFFER,null),t.enable(t.SCISSOR_TEST),t.disable(t.DEPTH_TEST),t.depthFunc(t.LESS),t.depthMask(!1),t.enable(t.BLEND),t.blendEquation(t.FUNC_ADD,t.FUNC_ADD),t.blendFunc(t.ONE,t.ONE_MINUS_SRC_ALPHA),t.scissor(e[0],e[1],e[2]-e[0],e[3]-e[1]);var c=this.borderColor;t.clearColor(c[0]*c[3],c[1]*c[3],c[2]*c[3],c[3]),t.clear(t.COLOR_BUFFER_BIT|t.DEPTH_BUFFER_BIT),t.scissor(r[0],r[1],r[2]-r[0],r[3]-r[1]),t.viewport(r[0],r[1],r[2]-r[0],r[3]-r[1]);var u=this.backgroundColor;t.clearColor(u[0]*u[3],u[1]*u[3],u[2]*u[3],u[3]),t.clear(t.COLOR_BUFFER_BIT),o.draw();var h=this.zeroLineEnable,f=this.zeroLineColor,d=this.zeroLineWidth;if(h[0]||h[1]){a.bind();for(var p=0;2>p;++p)if(h[p]&&n[p]<=0&&n[p+2]>=0){var g=e[p]-n[p]*(e[p+2]-e[p])/(n[p+2]-n[p]);0===p?a.drawLine(g,e[1],g,e[3],d[p],f[p]):a.drawLine(e[0],g,e[2],g,d[p],f[p])}}for(var p=0;p<l.length;++p)l[p].draw();t.viewport(e[0],e[1],e[2]-e[0],e[3]-e[1]),t.scissor(e[0],e[1],e[2]-e[0],e[3]-e[1]),this.grid.drawTickMarks(),a.bind();var v=this.borderLineEnable,m=this.borderLineWidth,y=this.borderLineColor;v[1]&&a.drawLine(r[0],r[1]-.5*m[1]*i,r[0],r[3]+.5*m[3]*i,m[1],y[1]),v[0]&&a.drawLine(r[0]-.5*m[0]*i,r[1],r[2]+.5*m[2]*i,r[1],m[0],y[0]),v[3]&&a.drawLine(r[2],r[1]-.5*m[1]*i,r[2],r[3]+.5*m[3]*i,m[3],y[3]),v[2]&&a.drawLine(r[0]-.5*m[0]*i,r[3],r[2]+.5*m[2]*i,r[3],m[2],y[2]),s.bind();for(var p=0;2>p;++p)s.drawTicks(p);this.titleEnable&&s.drawTitle();for(var b=this.overlays,p=0;p<b.length;++p)b[p].draw();t.disable(t.SCISSOR_TEST),t.disable(t.BLEND),t.depthMask(!0)}}}(),f.drawPick=function(){return function(){var t=this.pickBuffer;this.gl;this._pickTimeout=null,t.begin();for(var e=1,r=this.objects,n=0;n<r.length;++n)e=r[n].drawPick(e);t.end()}}(),f.pick=function(){return function(t,e){var r=this.pixelRatio,n=this.pickPixelRatio,i=this.viewBox,o=0|Math.round((t-i[0]/r)*n),a=0|Math.round((e-i[1]/r)*n),s=this.pickBuffer.query(o,a,this.pickRadius);if(!s)return null;for(var l=s.id+(s.value[0]<<8)+(s.value[1]<<16)+(s.value[2]<<24),c=this.objects,u=0;u<c.length;++u){var h=c[u].pick(o,a,l);if(h)return h}return null}}(),f.setScreenBox=function(t){var e=this.screenBox,r=this.pixelRatio;e[0]=0|Math.round(t[0]*r),e[1]=0|Math.round(t[1]*r),e[2]=0|Math.round(t[2]*r),e[3]=0|Math.round(t[3]*r),this.setDirty()},f.setDataBox=function(t){var e=this.dataBox,r=e[0]!==t[0]||e[1]!==t[1]||e[2]!==t[2]||e[3]!==t[3];r&&(e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],this.setDirty())},f.setViewBox=function(t){var e=this.pixelRatio,r=this.viewBox;r[0]=0|Math.round(t[0]*e),r[1]=0|Math.round(t[1]*e),r[2]=0|Math.round(t[2]*e),r[3]=0|Math.round(t[3]*e);var n=this.pickPixelRatio;this.pickBuffer.shape=[0|Math.round((t[2]-t[0])*n),0|Math.round((t[3]-t[1])*n)],this.setDirty()},f.update=function(t){t=t||{};var e=this.gl;this.pixelRatio=t.pixelRatio||1;var r=this.pixelRatio;this.pickPixelRatio=Math.max(r,1),this.setScreenBox(t.screenBox||[0,0,e.drawingBufferWidth/r,e.drawingBufferHeight/r]);this.screenBox;this.setViewBox(t.viewBox||[.125*(this.screenBox[2]-this.screenBox[0])/r,.125*(this.screenBox[3]-this.screenBox[1])/r,.875*(this.screenBox[2]-this.screenBox[0])/r,.875*(this.screenBox[3]-this.screenBox[1])/r]);var n=this.viewBox,a=(n[2]-n[0])/(n[3]-n[1]);this.setDataBox(t.dataBox||[-10,-10/a,10,10/a]),this.borderColor=(t.borderColor||[0,0,0,0]).slice(),this.backgroundColor=(t.backgroundColor||[0,0,0,0]).slice(),this.gridLineEnable=(t.gridLineEnable||[!0,!0]).slice(),this.gridLineWidth=(t.gridLineWidth||[1,1]).slice(),this.gridLineColor=i(t.gridLineColor||[[.5,.5,.5,1],[.5,.5,.5,1]]),this.zeroLineEnable=(t.zeroLineEnable||[!0,!0]).slice(),this.zeroLineWidth=(t.zeroLineWidth||[4,4]).slice(),this.zeroLineColor=i(t.zeroLineColor||[[0,0,0,1],[0,0,0,1]]),this.tickMarkLength=(t.tickMarkLength||[0,0,0,0]).slice(),this.tickMarkWidth=(t.tickMarkWidth||[0,0,0,0]).slice(),this.tickMarkColor=i(t.tickMarkColor||[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]]),this.titleCenter=(t.titleCenter||[.5*(n[0]+n[2])/r,(n[3]+120)/r]).slice(),this.titleEnable=!(\\\"titleEnable\\\"in t&&!t.titleEnable),this.titleAngle=t.titleAngle||0,this.titleColor=(t.titleColor||[0,0,0,1]).slice(),this.labelPad=(t.labelPad||[15,15,15,15]).slice(),this.labelAngle=(t.labelAngle||[0,Math.PI/2,0,3*Math.PI/2]).slice(),this.labelEnable=(t.labelEnable||[!0,!0,!0,!0]).slice(),this.labelColor=i(t.labelColor||[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]]),this.tickPad=(t.tickPad||[15,15,15,15]).slice(),this.tickAngle=(t.tickAngle||[0,0,0,0]).slice(),this.tickEnable=(t.tickEnable||[!0,!0,!0,!0]).slice(),this.tickColor=i(t.tickColor||[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]]),this.borderLineEnable=(t.borderLineEnable||[!0,!0,!0,!0]).slice(),this.borderLineWidth=(t.borderLineWidth||[2,2,2,2]).slice(),this.borderLineColor=i(t.borderLineColor||[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]]);var s=t.ticks||[[],[]],l=this._tickBounds;l[0]=l[1]=1/0,l[2]=l[3]=-(1/0);for(var c=0;2>c;++c){var u=s[c].slice(0);0!==u.length&&(u.sort(o),l[c]=Math.min(l[c],u[0].x),l[c+2]=Math.max(l[c+2],u[u.length-1].x))}this.grid.update({bounds:l,ticks:s}),this.text.update({bounds:l,ticks:s,labels:t.labels||[\\\"x\\\",\\\"y\\\"],labelSize:t.labelSize||[12,12],labelFont:t.labelFont||[\\\"sans-serif\\\",\\\"sans-serif\\\"],title:t.title||\\\"\\\",titleSize:t.titleSize||18,titleFont:t.titleFont||\\\"sans-serif\\\"}),this.setDirty()},f.dispose=function(){this.box.dispose(),this.grid.dispose(),this.text.dispose(),this.line.dispose();for(var t=this.objects.length-1;t>=0;--t)this.objects[t].dispose();this.objects.length=0;for(var t=this.overlays.length-1;t>=0;--t)this.overlays[t].dispose();this.overlays.length=0,this.gl=null},f.addObject=function(t){this.objects.indexOf(t)<0&&(this.objects.push(t),this.setDirty())},f.removeObject=function(t){for(var e=this.objects,r=0;r<e.length;++r)if(e[r]===t){e.splice(r,1),this.setDirty();break}},f.addOverlay=function(t){this.overlays.indexOf(t)<0&&(this.overlays.push(t),this.setOverlayDirty())},f.removeOverlay=function(t){for(var e=this.overlays,r=0;r<e.length;++r)if(e[r]===t){e.splice(r,1),this.setOverlayDirty();break}}},{\\\"./lib/box\\\":116,\\\"./lib/grid\\\":117,\\\"./lib/line\\\":118,\\\"./lib/text\\\":120,\\\"gl-select-static\\\":153}],123:[function(t,e,r){var n=t(\\\"gl-shader\\\"),i=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\nattribute vec2 position;\\\\nvarying vec2 uv;\\\\nvoid main() {\\\\n  uv = position;\\\\n  gl_Position = vec4(position, 0, 1);\\\\n}\\\",o=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nuniform sampler2D accumBuffer;\\\\nvarying vec2 uv;\\\\n\\\\nvoid main() {\\\\n  vec4 accum = texture2D(accumBuffer, 0.5 * (uv + 1.0));\\\\n  gl_FragColor = min(vec4(1,1,1,1), accum);\\\\n}\\\";\\n\",\n       \"e.exports=function(t){return n(t,i,o,null,[{name:\\\"position\\\",type:\\\"vec2\\\"}])}},{\\\"gl-shader\\\":154}],124:[function(t,e,r){\\\"use strict\\\";function n(t,e){t=t||document.body,e=e||{};var r=[.01,1/0];\\\"distanceLimits\\\"in e&&(r[0]=e.distanceLimits[0],r[1]=e.distanceLimits[1]),\\\"zoomMin\\\"in e&&(r[0]=e.zoomMin),\\\"zoomMax\\\"in e&&(r[1]=e.zoomMax);var n=o({center:e.center||[0,0,0],up:e.up||[0,1,0],eye:e.eye||[0,0,10],mode:e.mode||\\\"orbit\\\",distanceLimits:r}),l=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],c=0,u=t.clientWidth,h=t.clientHeight,f={view:n,element:t,delay:e.delay||16,rotateSpeed:e.rotateSpeed||1,zoomSpeed:e.zoomSpeed||1,translateSpeed:e.translateSpeed||1,flipX:!!e.flipX,flipY:!!e.flipY,modes:n.modes,tick:function(){var e=i(),r=this.delay;n.idle(e-r),n.flush(e-(100+2*r));var o=e-2*r;n.recalcMatrix(o);for(var a=!0,s=n.computedMatrix,f=0;16>f;++f)a=a&&l[f]===s[f],l[f]=s[f];var d=t.clientWidth===u&&t.clientHeight===h;return u=t.clientWidth,h=t.clientHeight,a?!d:(c=Math.exp(n.computedRadius[0]),!0)},lookAt:function(t,e,r){n.lookAt(n.lastT(),t,e,r)},rotate:function(t,e,r){n.rotate(n.lastT(),t,e,r)},pan:function(t,e,r){n.pan(n.lastT(),t,e,r)},translate:function(t,e,r){n.translate(n.lastT(),t,e,r)}};Object.defineProperties(f,{matrix:{get:function(){return n.computedMatrix},set:function(t){return n.setMatrix(n.lastT(),t),n.computedMatrix},enumerable:!0},mode:{get:function(){return n.getMode()},set:function(t){return n.setMode(t),n.getMode()},enumerable:!0},center:{get:function(){return n.computedCenter},set:function(t){return n.lookAt(n.lastT(),t),n.computedCenter},enumerable:!0},eye:{get:function(){return n.computedEye},set:function(t){return n.lookAt(n.lastT(),null,t),n.computedEye},enumerable:!0},up:{get:function(){return n.computedUp},set:function(t){return n.lookAt(n.lastT(),null,null,t),n.computedUp},enumerable:!0},distance:{get:function(){return c},set:function(t){return n.setDistance(n.lastT(),t),t},enumerable:!0},distanceLimits:{get:function(){return n.getDistanceLimits(r)},set:function(t){return n.setDistanceLimits(t),t},enumerable:!0}}),t.addEventListener(\\\"contextmenu\\\",function(t){return t.preventDefault(),!1});var d=0,p=0;return a(t,function(e,r,o,a){var s=1/t.clientHeight,l=s*(r-d),u=s*(o-p),h=f.flipX?1:-1,g=f.flipY?1:-1,v=Math.PI*f.rotateSpeed,m=i();if(1&e)a.shift?n.rotate(m,0,0,-l*v):n.rotate(m,h*v*l,-g*v*u,0);else if(2&e)n.pan(m,-f.translateSpeed*l*c,f.translateSpeed*u*c,0);else if(4&e){var y=f.zoomSpeed*u/window.innerHeight*(m-n.lastT())*50;n.pan(m,0,0,c*(Math.exp(y)-1))}d=r,p=o}),s(t,function(t,e,r){var o=f.flipX?1:-1,a=f.flipY?1:-1,s=i();if(Math.abs(t)>Math.abs(e))n.rotate(s,0,0,-t*o*Math.PI*f.rotateSpeed/window.innerWidth);else{var l=f.zoomSpeed*a*e/window.innerHeight*(s-n.lastT())/100;n.pan(s,0,0,c*(Math.exp(l)-1))}},!0),f}e.exports=n;var i=t(\\\"right-now\\\"),o=t(\\\"3d-view\\\"),a=t(\\\"mouse-change\\\"),s=t(\\\"mouse-wheel\\\")},{\\\"3d-view\\\":38,\\\"mouse-change\\\":198,\\\"mouse-wheel\\\":202,\\\"right-now\\\":212}],125:[function(t,e,r){!function(){\\\"use strict\\\";function t(e){e.permitHostObjects___&&e.permitHostObjects___(t)}function r(t){return!(t.substr(0,d.length)==d&&\\\"___\\\"===t.substr(t.length-3))}function n(t){if(t!==Object(t))throw new TypeError(\\\"Not an object: \\\"+t);var e=t[p];if(e&&e.key===t)return e;if(f(t)){e={key:t};try{return h(t,p,{value:e,writable:!1,enumerable:!1,configurable:!1}),e}catch(r){return}}}function i(t){return t.prototype=null,Object.freeze(t)}function o(){y||\\\"undefined\\\"==typeof console||(y=!0,console.warn(\\\"WeakMap should be invoked as new WeakMap(), not WeakMap(). This will be an error in the future.\\\"))}if(\\\"undefined\\\"==typeof ses||!ses.ok||ses.ok()){\\\"undefined\\\"!=typeof ses&&(ses.weakMapPermitHostObjects=t);var a=!1;if(\\\"function\\\"==typeof WeakMap){var s=WeakMap;if(\\\"undefined\\\"!=typeof navigator&&/Firefox/.test(navigator.userAgent));else{var l=new s,c=Object.freeze({});if(l.set(c,1),1===l.get(c))return void(e.exports=WeakMap);a=!0}}var u=(Object.prototype.hasOwnProperty,Object.getOwnPropertyNames),h=Object.defineProperty,f=Object.isExtensible,d=\\\"weakmap:\\\",p=d+\\\"ident:\\\"+Math.random()+\\\"___\\\";if(\\\"undefined\\\"!=typeof crypto&&\\\"function\\\"==typeof crypto.getRandomValues&&\\\"function\\\"==typeof ArrayBuffer&&\\\"function\\\"==typeof Uint8Array){var g=new ArrayBuffer(25),v=new Uint8Array(g);crypto.getRandomValues(v),p=d+\\\"rand:\\\"+Array.prototype.map.call(v,function(t){return(t%36).toString(36)}).join(\\\"\\\")+\\\"___\\\"}if(h(Object,\\\"getOwnPropertyNames\\\",{value:function(t){return u(t).filter(r)}}),\\\"getPropertyNames\\\"in Object){var m=Object.getPropertyNames;h(Object,\\\"getPropertyNames\\\",{value:function(t){return m(t).filter(r)}})}!function(){var t=Object.freeze;h(Object,\\\"freeze\\\",{value:function(e){return n(e),t(e)}});var e=Object.seal;h(Object,\\\"seal\\\",{value:function(t){return n(t),e(t)}});var r=Object.preventExtensions;h(Object,\\\"preventExtensions\\\",{value:function(t){return n(t),r(t)}})}();var y=!1,b=0,x=function(){function t(t,e){var r,i=n(t);return i?c in i?i[c]:e:(r=s.indexOf(t),r>=0?l[r]:e)}function e(t){var e=n(t);return e?c in e:s.indexOf(t)>=0}function r(t,e){var r,i=n(t);return i?i[c]=e:(r=s.indexOf(t),r>=0?l[r]=e:(r=s.length,l[r]=e,s[r]=t)),this}function a(t){var e,r,i=n(t);return i?c in i&&delete i[c]:(e=s.indexOf(t),0>e?!1:(r=s.length-1,s[e]=void 0,l[e]=l[r],s[e]=s[r],s.length=r,l.length=r,!0))}this instanceof x||o();var s=[],l=[],c=b++;return Object.create(x.prototype,{get___:{value:i(t)},has___:{value:i(e)},set___:{value:i(r)},delete___:{value:i(a)}})};x.prototype=Object.create(Object.prototype,{get:{value:function(t,e){return this.get___(t,e)},writable:!0,configurable:!0},has:{value:function(t){return this.has___(t)},writable:!0,configurable:!0},set:{value:function(t,e){return this.set___(t,e)},writable:!0,configurable:!0},\\\"delete\\\":{value:function(t){return this.delete___(t)},writable:!0,configurable:!0}}),\\\"function\\\"==typeof s?!function(){function r(){function e(t,e){return u?c.has(t)?c.get(t):u.get___(t,e):c.get(t,e)}function r(t){return c.has(t)||(u?u.has___(t):!1)}function n(t){var e=!!c.delete(t);return u?u.delete___(t)||e:e}this instanceof x||o();var l,c=new s,u=void 0,h=!1;return l=a?function(t,e){return c.set(t,e),c.has(t)||(u||(u=new x),u.set(t,e)),this}:function(t,e){if(h)try{c.set(t,e)}catch(r){u||(u=new x),u.set___(t,e)}else c.set(t,e);return this},Object.create(x.prototype,{get___:{value:i(e)},has___:{value:i(r)},set___:{value:i(l)},delete___:{value:i(n)},permitHostObjects___:{value:i(function(e){if(e!==t)throw new Error(\\\"bogus call to permitHostObjects___\\\");h=!0})}})}a&&\\\"undefined\\\"!=typeof Proxy&&(Proxy=void 0),r.prototype=x.prototype,e.exports=r,Object.defineProperty(WeakMap.prototype,\\\"constructor\\\",{value:WeakMap,enumerable:!1,configurable:!0,writable:!0})}():(\\\"undefined\\\"!=typeof Proxy&&(Proxy=void 0),e.exports=x)}}()},{}],126:[function(t,e,r){\\\"use strict\\\";function n(t){var e=s.get(t);if(!e||!t.isBuffer(e._triangleBuffer.buffer)){var r=o(t,new Float32Array([-1,-1,-1,4,4,-1]));e=a(t,[{buffer:r,type:t.FLOAT,size:2}]),e._triangleBuffer=r,s.set(t,e)}e.bind(),t.drawArrays(t.TRIANGLES,0,3),e.unbind()}var i=\\\"undefined\\\"==typeof WeakMap?t(\\\"weak-map\\\"):WeakMap,o=t(\\\"gl-buffer\\\"),a=t(\\\"gl-vao\\\"),s=new i;e.exports=n},{\\\"gl-buffer\\\":75,\\\"gl-vao\\\":184,\\\"weak-map\\\":125}],127:[function(t,e,r){\\\"use strict\\\";function n(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t}function i(t){this.gl=t,this.pixelRatio=1,this.bounds=[[-10,-10,-10],[10,10,10]],this.ticks=[[],[],[]],this.autoTicks=!0,this.tickSpacing=[1,1,1],this.tickEnable=[!0,!0,!0],this.tickFont=[\\\"sans-serif\\\",\\\"sans-serif\\\",\\\"sans-serif\\\"],this.tickSize=[12,12,12],this.tickAngle=[0,0,0],this.tickColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.tickPad=[10,10,10],this.lastCubeProps={cubeEdges:[0,0,0],axis:[0,0,0]},this.labels=[\\\"x\\\",\\\"y\\\",\\\"z\\\"],this.labelEnable=[!0,!0,!0],this.labelFont=\\\"sans-serif\\\",this.labelSize=[20,20,20],this.labelAngle=[0,0,0],this.labelColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.labelPad=[10,10,10],this.lineEnable=[!0,!0,!0],this.lineMirror=[!1,!1,!1],this.lineWidth=[1,1,1],this.lineColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.lineTickEnable=[!0,!0,!0],this.lineTickMirror=[!1,!1,!1],this.lineTickLength=[0,0,0],this.lineTickWidth=[1,1,1],this.lineTickColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.gridEnable=[!0,!0,!0],this.gridWidth=[1,1,1],this.gridColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.zeroEnable=[!0,!0,!0],this.zeroLineColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.zeroLineWidth=[2,2,2],this.backgroundEnable=[!1,!1,!1],this.backgroundColor=[[.8,.8,.8,.5],[.8,.8,.8,.5],[.8,.8,.8,.5]],this._firstInit=!0,this._text=null,this._lines=null,this._background=u(t)}function o(){this.primalOffset=[0,0,0],this.primalMinor=[0,0,0],this.mirrorOffset=[0,0,0],this.mirrorMinor=[0,0,0]}function a(t,e,r,n,i){for(var o=t.primalOffset,a=t.primalMinor,s=t.mirrorOffset,l=t.mirrorMinor,c=n[e],u=0;3>u;++u)if(e!==u){var h=o,f=s,d=a,p=l;c&1<<u&&(h=s,f=o,d=l,p=a),h[u]=r[0][u],f[u]=r[1][u],i[u]>0?(d[u]=-1,p[u]=0):(d[u]=0,p[u]=1)}}function s(t,e){var r=new i(t);return r.update(e),r}e.exports=s;var l=t(\\\"./lib/text.js\\\"),c=t(\\\"./lib/lines.js\\\"),u=t(\\\"./lib/background.js\\\"),h=t(\\\"./lib/cube.js\\\"),f=t(\\\"./lib/ticks.js\\\"),d=new Float32Array([1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1]),p=i.prototype;p.update=function(t){function e(e,r,n){if(n in t){var i,o=t[n],a=this[n];(e?Array.isArray(o)&&Array.isArray(o[0]):Array.isArray(o))?this[n]=i=[r(o[0]),r(o[1]),r(o[2])]:this[n]=i=[r(o),r(o),r(o)];for(var s=0;3>s;++s)if(i[s]!==a[s])return!0}return!1}t=t||{};var r,n=e.bind(this,!1,Number),i=e.bind(this,!1,Boolean),o=e.bind(this,!1,String),a=e.bind(this,!0,function(t){if(Array.isArray(t)){if(3===t.length)return[+t[0],+t[1],+t[2],1];if(4===t.length)return[+t[0],+t[1],+t[2],+t[3]]}return[0,0,0,1]}),s=!1,u=!1;if(\\\"bounds\\\"in t)for(var h=t.bounds,d=0;2>d;++d)for(var p=0;3>p;++p)h[d][p]!==this.bounds[d][p]&&(u=!0),this.bounds[d][p]=h[d][p];if(\\\"ticks\\\"in t){r=t.ticks,s=!0,this.autoTicks=!1;for(var d=0;3>d;++d)this.tickSpacing[d]=0}else n(\\\"tickSpacing\\\")&&(this.autoTicks=!0,u=!0);if(this._firstInit&&(\\\"ticks\\\"in t||\\\"tickSpacing\\\"in t||(this.autoTicks=!0),u=!0,s=!0,this._firstInit=!1),u&&this.autoTicks&&(r=f.create(this.bounds,this.tickSpacing),s=!0),s){for(var d=0;3>d;++d)r[d].sort(function(t,e){return t.x-e.x});f.equal(r,this.ticks)?s=!1:this.ticks=r}i(\\\"tickEnable\\\"),o(\\\"tickFont\\\")&&(s=!0),n(\\\"tickSize\\\"),n(\\\"tickAngle\\\"),n(\\\"tickPad\\\"),a(\\\"tickColor\\\");var g=o(\\\"labels\\\");o(\\\"labelFont\\\")&&(g=!0),i(\\\"labelEnable\\\"),n(\\\"labelSize\\\"),n(\\\"labelPad\\\"),a(\\\"labelColor\\\"),i(\\\"lineEnable\\\"),i(\\\"lineMirror\\\"),n(\\\"lineWidth\\\"),a(\\\"lineColor\\\"),i(\\\"lineTickEnable\\\"),i(\\\"lineTickMirror\\\"),n(\\\"lineTickLength\\\"),n(\\\"lineTickWidth\\\"),a(\\\"lineTickColor\\\"),i(\\\"gridEnable\\\"),n(\\\"gridWidth\\\"),a(\\\"gridColor\\\"),i(\\\"zeroEnable\\\"),a(\\\"zeroLineColor\\\"),n(\\\"zeroLineWidth\\\"),i(\\\"backgroundEnable\\\"),a(\\\"backgroundColor\\\"),this._text?this._text&&(g||s)&&this._text.update(this.bounds,this.labels,this.labelFont,this.ticks,this.tickFont):this._text=l(this.gl,this.bounds,this.labels,this.labelFont,this.ticks,this.tickFont),this._lines&&s&&(this._lines.dispose(),this._lines=null),this._lines||(this._lines=c(this.gl,this.bounds,this.ticks))};var g=[new o,new o,new o],v=[0,0,0],m={model:d,view:d,projection:d};p.isOpaque=function(){return!0},p.isTransparent=function(){return!1},p.drawTransparent=function(t){};var y=[0,0,0],b=[0,0,0],x=[0,0,0];p.draw=function(t){t=t||m;for(var e=this.gl,r=t.model||d,i=t.view||d,o=t.projection||d,s=this.bounds,l=h(r,i,o,s),c=l.cubeEdges,u=l.axis,f=i[12],p=i[13],_=i[14],w=i[15],A=this.pixelRatio*(o[3]*f+o[7]*p+o[11]*_+o[15]*w)/e.drawingBufferHeight,k=0;3>k;++k)this.lastCubeProps.cubeEdges[k]=c[k],this.lastCubeProps.axis[k]=u[k];for(var M=g,k=0;3>k;++k)a(g[k],k,this.bounds,c,u);for(var e=this.gl,T=v,k=0;3>k;++k)this.backgroundEnable[k]?T[k]=u[k]:T[k]=0;this._background.draw(r,i,o,s,T,this.backgroundColor),this._lines.bind(r,i,o,this);for(var k=0;3>k;++k){var E=[0,0,0];u[k]>0?E[k]=s[1][k]:E[k]=s[0][k];for(var L=0;2>L;++L){var S=(k+1+L)%3,C=(k+1+(1^L))%3;this.gridEnable[S]&&this._lines.drawGrid(S,C,this.bounds,E,this.gridColor[S],this.gridWidth[S]*this.pixelRatio)}for(var L=0;2>L;++L){var S=(k+1+L)%3,C=(k+1+(1^L))%3;this.zeroEnable[C]&&s[0][C]<=0&&s[1][C]>=0&&this._lines.drawZero(S,C,this.bounds,E,this.zeroLineColor[C],this.zeroLineWidth[C]*this.pixelRatio)}}for(var k=0;3>k;++k){this.lineEnable[k]&&this._lines.drawAxisLine(k,this.bounds,M[k].primalOffset,this.lineColor[k],this.lineWidth[k]*this.pixelRatio),this.lineMirror[k]&&this._lines.drawAxisLine(k,this.bounds,M[k].mirrorOffset,this.lineColor[k],this.lineWidth[k]*this.pixelRatio);for(var P=n(y,M[k].primalMinor),z=n(b,M[k].mirrorMinor),R=this.lineTickLength,L=0;3>L;++L){var O=A/r[5*L];P[L]*=R[L]*O,z[L]*=R[L]*O}this.lineTickEnable[k]&&this._lines.drawAxisTicks(k,M[k].primalOffset,P,this.lineTickColor[k],this.lineTickWidth[k]*this.pixelRatio),this.lineTickMirror[k]&&this._lines.drawAxisTicks(k,M[k].mirrorOffset,z,this.lineTickColor[k],this.lineTickWidth[k]*this.pixelRatio)}this._text.bind(r,i,o,this.pixelRatio);for(var k=0;3>k;++k){for(var I=M[k].primalMinor,N=n(x,M[k].primalOffset),L=0;3>L;++L)this.lineTickEnable[k]&&(N[L]+=A*I[L]*Math.max(this.lineTickLength[L],0)/r[5*L]);if(this.tickEnable[k]){for(var L=0;3>L;++L)N[L]+=A*I[L]*this.tickPad[L]/r[5*L];this._text.drawTicks(k,this.tickSize[k],this.tickAngle[k],N,this.tickColor[k])}if(this.labelEnable[k]){for(var L=0;3>L;++L)N[L]+=A*I[L]*this.labelPad[L]/r[5*L];N[k]+=.5*(s[0][k]+s[1][k]),this._text.drawLabel(k,this.labelSize[k],this.labelAngle[k],N,this.labelColor[k])}}},p.dispose=function(){this._text.dispose(),this._lines.dispose(),this._background.dispose(),this._lines=null,this._text=null,this._background=null,this.gl=null}},{\\\"./lib/background.js\\\":128,\\\"./lib/cube.js\\\":129,\\\"./lib/lines.js\\\":130,\\\"./lib/text.js\\\":132,\\\"./lib/ticks.js\\\":133}],128:[function(t,e,r){\\\"use strict\\\";function n(t,e,r,n){this.gl=t,this.buffer=e,this.vao=r,this.shader=n}function i(t){for(var e=[],r=[],i=0,l=0;3>l;++l)for(var c=(l+1)%3,u=(l+2)%3,h=[0,0,0],f=[0,0,0],d=-1;1>=d;d+=2){r.push(i,i+2,i+1,i+1,i+2,i+3),h[l]=d,f[l]=d;for(var p=-1;1>=p;p+=2){h[c]=p;for(var g=-1;1>=g;g+=2)h[u]=g,e.push(h[0],h[1],h[2],f[0],f[1],f[2]),i+=1}var v=c;c=u,u=v}var m=o(t,new Float32Array(e)),y=o(t,new Uint16Array(r),t.ELEMENT_ARRAY_BUFFER),b=a(t,[{buffer:m,type:t.FLOAT,size:3,offset:0,stride:24},{buffer:m,type:t.FLOAT,size:3,offset:12,stride:24}],y),x=s(t);return x.attributes.position.location=0,x.attributes.normal.location=1,new n(t,m,b,x)}e.exports=i;var o=t(\\\"gl-buffer\\\"),a=t(\\\"gl-vao\\\"),s=t(\\\"./shaders\\\").bg,l=n.prototype;l.draw=function(t,e,r,n,i,o){for(var a=!1,s=0;3>s;++s)a=a||i[s];if(a){var l=this.gl;l.enable(l.POLYGON_OFFSET_FILL),l.polygonOffset(1,2),this.shader.bind(),this.shader.uniforms={model:t,view:e,projection:r,bounds:n,enable:i,colors:o},this.vao.bind(),this.vao.draw(this.gl.TRIANGLES,36),l.disable(l.POLYGON_OFFSET_FILL)}},l.dispose=function(){this.vao.dispose(),this.buffer.dispose(),this.shader.dispose()}},{\\\"./shaders\\\":131,\\\"gl-buffer\\\":75,\\\"gl-vao\\\":184}],129:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){for(var n=0;4>n;++n){t[n]=r[12+n];for(var i=0;3>i;++i)t[n]+=e[i]*r[4*i+n]}}function i(t){for(var e=0;e<g.length;++e)if(t=l.positive(t,g[e]),t.length<3)return 0;for(var r=t[0],n=r[0]/r[3],i=r[1]/r[3],o=0,e=1;e+1<t.length;++e){var a=t[e],s=t[e+1],c=a[0]/a[3],u=a[1]/a[3],h=s[0]/s[3],f=s[1]/s[3],d=c-n,p=u-i,v=h-n,m=f-i;o+=Math.abs(d*m-p*v)}return o}function o(t,e,r,o){s(u,e,t),s(u,r,u);for(var l=0,g=0;2>g;++g){d[2]=o[g][2];for(var b=0;2>b;++b){d[1]=o[b][1];for(var x=0;2>x;++x)d[0]=o[x][0],n(h[l],d,u),l+=1}}for(var _=-1,g=0;8>g;++g){for(var w=h[g][3],A=0;3>A;++A)f[g][A]=h[g][A]/w;0>w&&(0>_?_=g:f[g][2]<f[_][2]&&(_=g))}if(0>_){_=0;for(var k=0;3>k;++k){for(var M=(k+2)%3,T=(k+1)%3,E=-1,L=-1,S=0;2>S;++S){var C=S<<k,P=C+(S<<M)+(1-S<<T),z=C+(1-S<<M)+(S<<T);c(f[C],f[P],f[z],p)<0||(S?E=1:L=1)}if(0>E||0>L)L>E&&(_|=1<<k);else{for(var S=0;2>S;++S){var C=S<<k,P=C+(S<<M)+(1-S<<T),z=C+(1-S<<M)+(S<<T),R=i([h[C],h[P],h[z],h[C+(1<<M)+(1<<T)]]);S?E=R:L=R}L>E&&(_|=1<<k)}}}for(var O=7^_,I=-1,g=0;8>g;++g)g!==_&&g!==O&&(0>I?I=g:f[I][1]>f[g][1]&&(I=g));for(var N=-1,g=0;3>g;++g){var j=I^1<<g;if(j!==_&&j!==O){0>N&&(N=j);var T=f[j];T[0]<f[N][0]&&(N=j)}}for(var F=-1,g=0;3>g;++g){var j=I^1<<g;if(j!==_&&j!==O&&j!==N){0>F&&(F=j);var T=f[j];T[0]>f[F][0]&&(F=j)}}var D=v;D[0]=D[1]=D[2]=0,D[a.log2(N^I)]=I&N,D[a.log2(I^F)]=I&F;var B=7^F;B===_||B===O?(B=7^N,D[a.log2(F^B)]=B&F):D[a.log2(N^B)]=B&N;for(var U=m,V=_,k=0;3>k;++k)V&1<<k?U[k]=-1:U[k]=1;return y}e.exports=o;var a=t(\\\"bit-twiddle\\\"),s=t(\\\"gl-mat4/multiply\\\"),l=(t(\\\"gl-mat4/invert\\\"),t(\\\"split-polygon\\\")),c=t(\\\"robust-orientation\\\"),u=new Array(16),h=(new Array(16),new Array(8)),f=new Array(8),d=new Array(3),p=[0,0,0];!function(){for(var t=0;8>t;++t)h[t]=[1,1,1,1],f[t]=[1,1,1]}();var g=[[0,0,1,0,0],[0,0,-1,1,0],[0,-1,0,1,0],[0,1,0,1,0],[-1,0,0,1,0],[1,0,0,1,0]],v=[1,1,1],m=[0,0,0],y={cubeEdges:v,axis:m}},{\\\"bit-twiddle\\\":49,\\\"gl-mat4/invert\\\":94,\\\"gl-mat4/multiply\\\":96,\\\"robust-orientation\\\":216,\\\"split-polygon\\\":135}],130:[function(t,e,r){\\\"use strict\\\";function n(t){return t[0]=t[1]=t[2]=0,t}function i(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t}function o(t,e,r,n,i,o,a,s){this.gl=t,this.vertBuffer=e,this.vao=r,this.shader=n,this.tickCount=i,this.tickOffset=o,this.gridCount=a,this.gridOffset=s}function a(t,e,r){var n=[],i=[0,0,0],a=[0,0,0],u=[0,0,0],h=[0,0,0];n.push(0,0,1,0,1,1,0,0,-1,0,0,-1,0,1,1,0,1,-1);for(var f=0;3>f;++f){for(var d=n.length/3|0,p=0;p<r[f].length;++p){var g=+r[f][p].x;n.push(g,0,1,g,1,1,g,0,-1,g,0,-1,g,1,1,g,1,-1)}var v=n.length/3|0;i[f]=d,a[f]=v-d;for(var d=n.length/3|0,m=0;m<r[f].length;++m){var g=+r[f][m].x;n.push(g,0,1,g,1,1,g,0,-1,g,0,-1,g,1,1,g,1,-1)}var v=n.length/3|0;u[f]=d,h[f]=v-d}var y=s(t,new Float32Array(n)),b=l(t,[{buffer:y,type:t.FLOAT,size:3,stride:0,offset:0}]),x=c(t);return x.attributes.position.location=0,new o(t,y,b,x,a,i,h,u)}e.exports=a;var s=t(\\\"gl-buffer\\\"),l=t(\\\"gl-vao\\\"),c=t(\\\"./shaders\\\").line,u=[0,0,0],h=[0,0,0],f=[0,0,0],d=[0,0,0],p=[1,1],g=o.prototype;g.bind=function(t,e,r){this.shader.bind(),this.shader.uniforms.model=t,this.shader.uniforms.view=e,this.shader.uniforms.projection=r,p[0]=this.gl.drawingBufferWidth,p[1]=this.gl.drawingBufferHeight,this.shader.uniforms.screenShape=p,this.vao.bind()},g.drawAxisLine=function(t,e,r,o,a){var s=n(h);this.shader.uniforms.majorAxis=h,s[t]=e[1][t]-e[0][t],this.shader.uniforms.minorAxis=s;var l=i(d,r);l[t]+=e[0][t],this.shader.uniforms.offset=l,this.shader.uniforms.lineWidth=a,this.shader.uniforms.color=o;var c=n(f);c[(t+2)%3]=1,this.shader.uniforms.screenAxis=c,this.vao.draw(this.gl.TRIANGLES,6);var c=n(f);c[(t+1)%3]=1,this.shader.uniforms.screenAxis=c,this.vao.draw(this.gl.TRIANGLES,6)},g.drawAxisTicks=function(t,e,r,i,o){if(this.tickCount[t]){var a=n(u);a[t]=1,this.shader.uniforms.majorAxis=a,this.shader.uniforms.offset=e,this.shader.uniforms.minorAxis=r,this.shader.uniforms.color=i,this.shader.uniforms.lineWidth=o;var s=n(f);s[t]=1,this.shader.uniforms.screenAxis=s,this.vao.draw(this.gl.TRIANGLES,this.tickCount[t],this.tickOffset[t])}},g.drawGrid=function(t,e,r,o,a,s){if(this.gridCount[t]){var l=n(h);l[e]=r[1][e]-r[0][e],this.shader.uniforms.minorAxis=l;var c=i(d,o);c[e]+=r[0][e],this.shader.uniforms.offset=c;var p=n(u);p[t]=1,this.shader.uniforms.majorAxis=p;var g=n(f);g[t]=1,this.shader.uniforms.screenAxis=g,this.shader.uniforms.lineWidth=s,this.shader.uniforms.color=a,this.vao.draw(this.gl.TRIANGLES,this.gridCount[t],this.gridOffset[t])}},g.drawZero=function(t,e,r,o,a,s){var l=n(h);this.shader.uniforms.majorAxis=l,l[t]=r[1][t]-r[0][t],this.shader.uniforms.minorAxis=l;var c=i(d,o);c[t]+=r[0][t],this.shader.uniforms.offset=c;var u=n(f);u[e]=1,this.shader.uniforms.screenAxis=u,this.shader.uniforms.lineWidth=s,this.shader.uniforms.color=a,this.vao.draw(this.gl.TRIANGLES,6)},g.dispose=function(){this.vao.dispose(),this.vertBuffer.dispose(),this.shader.dispose()}},{\\\"./shaders\\\":131,\\\"gl-buffer\\\":75,\\\"gl-vao\\\":184}],131:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"gl-shader\\\"),i=\\\"#define GLSLIFY 1\\\\nattribute vec3 position;\\\\n\\\\nuniform mat4 model, view, projection;\\\\nuniform vec3 offset, majorAxis, minorAxis, screenAxis;\\\\nuniform float lineWidth;\\\\nuniform vec2 screenShape;\\\\n\\\\nvec3 project(vec3 p) {\\\\n  vec4 pp = projection * view * model * vec4(p, 1.0);\\\\n  return pp.xyz / max(pp.w, 0.0001);\\\\n}\\\\n\\\\nvoid main() {\\\\n  vec3 major = position.x * majorAxis;\\\\n  vec3 minor = position.y * minorAxis;\\\\n\\\\n  vec3 vPosition = major + minor + offset;\\\\n  vec3 pPosition = project(vPosition);\\\\n  vec3 offset = project(vPosition + screenAxis * position.z);\\\\n\\\\n  vec2 screen = normalize((offset - pPosition).xy * screenShape) / screenShape;\\\\n\\\\n  gl_Position = vec4(pPosition + vec3(0.5 * screen * lineWidth, 0), 1.0);\\\\n}\\\\n\\\",o=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\nuniform vec4 color;\\\\nvoid main() {\\\\n  gl_FragColor = color;\\\\n}\\\";r.line=function(t){return n(t,i,o,null,[{name:\\\"position\\\",type:\\\"vec3\\\"}])};var a=\\\"#define GLSLIFY 1\\\\nattribute vec3 position;\\\\n\\\\nuniform mat4 model, view, projection;\\\\nuniform vec3 offset, axis;\\\\nuniform float scale, angle, pixelScale;\\\\nuniform vec2 resolution;\\\\n\\\\nvoid main() {  \\\\n  //Compute plane offset\\\\n  vec2 planeCoord = position.xy * pixelScale;\\\\n  mat2 planeXform = scale * mat2(cos(angle), sin(angle),\\\\n                                -sin(angle), cos(angle));\\\\n  vec2 viewOffset = 2.0 * planeXform * planeCoord / resolution;\\\\n\\\\n  //Compute world offset\\\\n  float axisDistance = position.z;\\\\n  vec3 dataPosition = axisDistance * axis + offset;\\\\n  vec4 worldPosition = model * vec4(dataPosition, 1);\\\\n  \\\\n  //Compute clip position\\\\n  vec4 viewPosition = view * worldPosition;\\\\n  vec4 clipPosition = projection * viewPosition;\\\\n  clipPosition /= clipPosition.w;\\\\n\\\\n  //Apply text offset in clip coordinates\\\\n  clipPosition += vec4(viewOffset, 0, 0);\\\\n\\\\n  //Done\\\\n  gl_Position = clipPosition;\\\\n}\\\",s=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\nuniform vec4 color;\\\\nvoid main() {\\\\n  gl_FragColor = color;\\\\n}\\\";r.text=function(t){return n(t,a,s,null,[{name:\\\"position\\\",type:\\\"vec3\\\"}])};var l=\\\"#define GLSLIFY 1\\\\nattribute vec3 position;\\\\nattribute vec3 normal;\\\\n\\\\nuniform mat4 model, view, projection;\\\\nuniform vec3 enable;\\\\nuniform vec3 bounds[2];\\\\n\\\\nvarying vec3 colorChannel;\\\\n\\\\nvoid main() {\\\\n  if(dot(normal, enable) > 0.0) {\\\\n    vec3 nPosition = mix(bounds[0], bounds[1], 0.5 * (position + 1.0));\\\\n    gl_Position = projection * view * model * vec4(nPosition, 1.0);\\\\n  } else {\\\\n    gl_Position = vec4(0,0,0,0);\\\\n  }\\\\n  colorChannel = abs(normal);\\\\n}\\\",c=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nuniform vec4 colors[3];\\\\n\\\\nvarying vec3 colorChannel;\\\\n\\\\nvoid main() {\\\\n  gl_FragColor = colorChannel.x * colors[0] + \\\\n                 colorChannel.y * colors[1] +\\\\n                 colorChannel.z * colors[2];\\\\n}\\\";r.bg=function(t){return n(t,l,c,null,[{name:\\\"position\\\",type:\\\"vec3\\\"},{name:\\\"normal\\\",type:\\\"vec3\\\"}])}},{\\\"gl-shader\\\":154}],132:[function(t,e,r){(function(r){\\\"use strict\\\";function n(t,e,r,n){this.gl=t,this.shader=e,this.buffer=r,this.vao=n,this.tickOffset=this.tickCount=this.labelOffset=this.labelCount=null}function i(t,e){try{return l(t,e)}catch(r){return console.warn(\\\"error vectorizing text:\\\",r),{cells:[],positions:[]}}}function o(t,e,r,i,o,l){var u=a(t),h=s(t,[{buffer:u,size:3}]),f=c(t);f.attributes.position.location=0;var d=new n(t,f,u,h);return d.update(e,r,i,o,l),d}e.exports=o;var a=t(\\\"gl-buffer\\\"),s=t(\\\"gl-vao\\\"),l=t(\\\"vectorize-text\\\"),c=t(\\\"./shaders\\\").text,u=window||r.global||{},h=u.__TEXT_CACHE||{};u.__TEXT_CACHE={};var f=3,d=n.prototype,p=[0,0];d.bind=function(t,e,r,n){this.vao.bind(),this.shader.bind();var i=this.shader.uniforms;i.model=t,i.view=e,i.projection=r,i.pixelScale=n,p[0]=this.gl.drawingBufferWidth,p[1]=this.gl.drawingBufferHeight,this.shader.uniforms.resolution=p},d.update=function(t,e,r,n,o){function a(t,e,r,n){var o=h[r];o||(o=h[r]={});var a=o[e];a||(a=o[e]=i(e,{triangles:!0,font:r,textAlign:\\\"center\\\",textBaseline:\\\"middle\\\"}));for(var l=(n||12)/12,c=a.positions,u=a.cells,f=0,d=u.length;d>f;++f)for(var p=u[f],g=2;g>=0;--g){var v=c[p[g]];s.push(l*v[0],-l*v[1],t)}}for(var s=(this.gl,[]),l=[0,0,0],c=[0,0,0],u=[0,0,0],d=[0,0,0],p=0;3>p;++p){u[p]=s.length/f|0,a(.5*(t[0][p]+t[1][p]),e[p],r),d[p]=(s.length/f|0)-u[p],l[p]=s.length/f|0;for(var g=0;g<n[p].length;++g)n[p][g].text&&a(n[p][g].x,n[p][g].text,n[p][g].font||o,n[p][g].fontSize||12);c[p]=(s.length/f|0)-l[p]}this.buffer.update(s),this.tickOffset=l,this.tickCount=c,this.labelOffset=u,this.labelCount=d};var g=[0,0,0];d.drawTicks=function(t,e,r,n,i){if(this.tickCount[t]){var o=g;o[0]=o[1]=o[2]=0,o[t]=1,this.shader.uniforms.axis=o,this.shader.uniforms.color=i,this.shader.uniforms.angle=r,this.shader.uniforms.scale=e,this.shader.uniforms.offset=n,this.vao.draw(this.gl.TRIANGLES,this.tickCount[t],this.tickOffset[t])}};var v=[0,0,0];d.drawLabel=function(t,e,r,n,i){this.labelCount[t]&&(this.shader.uniforms.axis=v,this.shader.uniforms.color=i,this.shader.uniforms.angle=r,this.shader.uniforms.scale=e,this.shader.uniforms.offset=n,this.vao.draw(this.gl.TRIANGLES,this.labelCount[t],this.labelOffset[t]))},d.dispose=function(){this.shader.dispose(),this.vao.dispose(),this.buffer.dispose()}}).call(this,t(\\\"_process\\\"))},{\\\"./shaders\\\":131,_process:55,\\\"gl-buffer\\\":75,\\\"gl-vao\\\":184,\\\"vectorize-text\\\":237}],133:[function(t,e,r){\\\"use strict\\\";function n(t,e){var r=t+\\\"\\\",n=r.indexOf(\\\".\\\"),i=0;n>=0&&(i=r.length-n-1);var o=Math.pow(10,i),a=Math.round(t*e*o),s=a+\\\"\\\";if(s.indexOf(\\\"e\\\")>=0)return s;var l=a/o,c=a%o;0>a?(l=0|-Math.ceil(l),c=0|-c):(l=0|Math.floor(l),c=0|c);var u=\\\"\\\"+l;if(0>a&&(u=\\\"-\\\"+u),i){for(var h=\\\"\\\"+c;h.length<i;)h=\\\"0\\\"+h;return u+\\\".\\\"+h}return u}function i(t,e){for(var r=[],i=0;3>i;++i){for(var o=[],a=(.5*(t[0][i]+t[1][i]),0);a*e[i]<=t[1][i];++a)o.push({x:a*e[i],text:n(e[i],a)});for(var a=-1;a*e[i]>=t[0][i];--a)o.push({x:a*e[i],text:n(e[i],a)});r.push(o)}return r}function o(t,e){for(var r=0;3>r;++r){if(t[r].length!==e[r].length)return!1;for(var n=0;n<t[r].length;++n){var i=t[r][n],o=e[r][n];if(i.x!==o.x||i.text!==o.text)return!1}}return!0}r.create=i,r.equal=o},{}],134:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){var n=e||0,i=r||1;return[[t[12]+t[0],t[13]+t[1],t[14]+t[2],t[15]+t[3]],[t[12]-t[0],t[13]-t[1],t[14]-t[2],t[15]-t[3]],[t[12]+t[4],t[13]+t[5],t[14]+t[6],t[15]+t[7]],[t[12]-t[4],t[13]-t[5],t[14]-t[6],t[15]-t[7]],[n*t[12]+t[8],n*t[13]+t[9],n*t[14]+t[10],n*t[15]+t[11]],[i*t[12]-t[8],i*t[13]-t[9],i*t[14]-t[10],i*t[15]-t[11]]]}e.exports=n},{}],135:[function(t,e,r){\\\"use strict\\\";function n(t,e){var r=c(l(t,e),[e[e.length-1]]);return r[r.length-1]}function i(t,e,r,n){var i=n-e,o=-e/i;0>o?o=0:o>1&&(o=1);for(var a=1-o,s=t.length,l=new Array(s),c=0;s>c;++c)l[c]=o*t[c]+a*r[c];return l}function o(t,e){for(var r=[],o=[],a=n(t[t.length-1],e),s=t[t.length-1],l=t[0],c=0;c<t.length;++c,s=l){l=t[c];var u=n(l,e);if(0>a&&u>0||a>0&&0>u){var h=i(s,u,l,a);r.push(h),o.push(h.slice())}0>u?o.push(l.slice()):u>0?r.push(l.slice()):(r.push(l.slice()),o.push(l.slice())),a=u}return{positive:r,negative:o}}function a(t,e){for(var r=[],o=n(t[t.length-1],e),a=t[t.length-1],s=t[0],l=0;l<t.length;++l,a=s){s=t[l];var c=n(s,e);(0>o&&c>0||o>0&&0>c)&&r.push(i(a,c,s,o)),c>=0&&r.push(s.slice()),o=c}return r}function s(t,e){for(var r=[],o=n(t[t.length-1],e),a=t[t.length-1],s=t[0],l=0;l<t.length;++l,a=s){s=t[l];var c=n(s,e);(0>o&&c>0||o>0&&0>c)&&r.push(i(a,c,s,o)),0>=c&&r.push(s.slice()),o=c}return r}var l=t(\\\"robust-dot-product\\\"),c=t(\\\"robust-sum\\\");e.exports=o,e.exports.positive=a,e.exports.negative=s},{\\\"robust-dot-product\\\":136,\\\"robust-sum\\\":219}],136:[function(t,e,r){\\\"use strict\\\";function n(t,e){for(var r=i(t[0],e[0]),n=1;n<t.length;++n)r=o(r,i(t[n],e[n]));return r}var i=t(\\\"two-product\\\"),o=t(\\\"robust-sum\\\");e.exports=n},{\\\"robust-sum\\\":219,\\\"two-product\\\":233}],137:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){this.lo=t,this.hi=e,this.pixelsPerDataUnit=r}function i(t,e,r,n,i){for(var o=0;3>o;++o){for(var a=p,s=g,l=0;3>l;++l)s[l]=a[l]=r[l];s[3]=a[3]=1,s[o]+=1,h(s,s,e),s[3]<0&&(t[o]=1/0),a[o]-=1,h(a,a,e),a[3]<0&&(t[o]=1/0);var c=(a[0]/a[3]-s[0]/s[3])*n,u=(a[1]/a[3]-s[1]/s[3])*i;t[o]=.25*Math.sqrt(c*c+u*u)}return t}function o(t,e,r,n,o){var h=e.model||f,p=e.view||f,g=e.projection||f,y=t.bounds,o=o||l(h,p,g,y),b=o.axis;o.edges;c(d,p,h),c(d,g,d);for(var x=v,_=0;3>_;++_)x[_].lo=1/0,x[_].hi=-(1/0),x[_].pixelsPerDataUnit=1/0;var w=a(u(d,d));u(d,d);for(var A=0;3>A;++A){var k=(A+1)%3,M=(A+2)%3,T=m;t:for(var _=0;2>_;++_){var E=[];if(b[A]<0!=!!_){T[A]=y[_][A];for(var L=0;2>L;++L){T[k]=y[L^_][k];for(var S=0;2>S;++S)T[M]=y[S^L^_][M],E.push(T.slice())}for(var L=0;L<w.length;++L){if(0===E.length)continue t;E=s.positive(E,w[L])}for(var L=0;L<E.length;++L)for(var M=E[L],C=i(m,d,M,r,n),S=0;3>S;++S)x[S].lo=Math.min(x[S].lo,M[S]),x[S].hi=Math.max(x[S].hi,M[S]),S!==A&&(x[S].pixelsPerDataUnit=Math.min(x[S].pixelsPerDataUnit,Math.abs(C[S])))}}}return x}e.exports=o;var a=t(\\\"extract-frustum-planes\\\"),s=t(\\\"split-polygon\\\"),l=t(\\\"./lib/cube.js\\\"),c=t(\\\"gl-mat4/multiply\\\"),u=t(\\\"gl-mat4/transpose\\\"),h=t(\\\"gl-vec4/transformMat4\\\"),f=new Float32Array([1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1]),d=new Float32Array(16),p=[0,0,0,1],g=[0,0,0,1],v=[new n(1/0,-(1/0),1/0),new n(1/0,-(1/0),1/0),new n(1/0,-(1/0),1/0)],m=[0,0,0]},{\\\"./lib/cube.js\\\":129,\\\"extract-frustum-planes\\\":134,\\\"gl-mat4/multiply\\\":96,\\\"gl-mat4/transpose\\\":104,\\\"gl-vec4/transformMat4\\\":185,\\\"split-polygon\\\":135}],138:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"gl-shader\\\"),i=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nattribute vec3 position, color;\\\\nattribute float weight;\\\\n\\\\nuniform mat4 model, view, projection;\\\\nuniform vec3 coordinates[3];\\\\nuniform vec4 colors[3];\\\\nuniform vec2 screenShape;\\\\nuniform float lineWidth;\\\\n\\\\nvarying vec4 fragColor;\\\\n\\\\nvoid main() {\\\\n  vec3 vertexPosition = mix(coordinates[0],\\\\n    mix(coordinates[2], coordinates[1], 0.5 * (position + 1.0)), abs(position));\\\\n\\\\n  vec4 clipPos = projection * view * model * vec4(vertexPosition, 1.0);\\\\n  vec2 clipOffset = (projection * view * model * vec4(color, 0.0)).xy;\\\\n  vec2 delta = weight * clipOffset * screenShape;\\\\n  vec2 lineOffset = normalize(vec2(delta.y, -delta.x)) / screenShape;\\\\n\\\\n  gl_Position   = vec4(clipPos.xy + clipPos.w * 0.5 * lineWidth * lineOffset, clipPos.z, clipPos.w);\\\\n  fragColor     = color.x * colors[0] + color.y * colors[1] + color.z * colors[2];\\\\n}\\\\n\\\",o=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nvarying vec4 fragColor;\\\\n\\\\nvoid main() {\\\\n  gl_FragColor = fragColor;\\\\n}\\\";e.exports=function(t){return n(t,i,o,null,[{name:\\\"position\\\",type:\\\"vec3\\\"},{name:\\\"color\\\",type:\\\"vec3\\\"},{name:\\\"weight\\\",type:\\\"float\\\"}])}},{\\\"gl-shader\\\":154}],139:[function(t,e,r){\\\"use strict\\\";function n(t,e,r,n){this.gl=t,this.buffer=e,this.vao=r,this.shader=n,this.pixelRatio=1,this.bounds=[[-1e3,-1e3,-1e3],[1e3,1e3,1e3]],this.position=[0,0,0],this.lineWidth=[2,2,2],this.colors=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.enabled=[!0,!0,!0],this.drawSides=[!0,!0,!0],this.axes=null}function i(t,e){function r(t,e,r,n,o,a){var s=[t,e,r,0,0,0,1];s[n+3]=1,s[n]=o,i.push.apply(i,s),s[6]=-1,i.push.apply(i,s),s[n]=a,i.push.apply(i,s),i.push.apply(i,s),s[6]=1,i.push.apply(i,s),s[n]=o,i.push.apply(i,s)}var i=[];r(0,0,0,0,0,1),r(0,0,0,1,0,1),r(0,0,0,2,0,1),r(1,0,0,1,-1,1),r(1,0,0,2,-1,1),r(0,1,0,0,-1,1),r(0,1,0,2,-1,1),r(0,0,1,0,-1,1),r(0,0,1,1,-1,1);var l=o(t,i),c=a(t,[{type:t.FLOAT,buffer:l,size:3,offset:0,stride:28},{type:t.FLOAT,buffer:l,size:3,offset:12,stride:28},{type:t.FLOAT,buffer:l,size:1,offset:24,stride:28}]),u=s(t);u.attributes.position.location=0,u.attributes.color.location=1,u.attributes.weight.location=2;var h=new n(t,l,c,u);return h.update(e),h}var o=t(\\\"gl-buffer\\\"),a=t(\\\"gl-vao\\\"),s=t(\\\"./shaders/index\\\");e.exports=i;var l=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],c=n.prototype,u=[0,0,0],h=[0,0,0],f=[0,0];c.isTransparent=function(){return!1},c.drawTransparent=function(t){},c.draw=function(t){var e=this.gl,r=this.vao,n=this.shader;r.bind(),n.bind();var i,o=t.model||l,a=t.view||l,s=t.projection||l;this.axes&&(i=this.axes.lastCubeProps.axis);for(var c=u,d=h,p=0;3>p;++p)i&&i[p]<0?(c[p]=this.bounds[0][p],d[p]=this.bounds[1][p]):(c[p]=this.bounds[1][p],d[p]=this.bounds[0][p]);f[0]=e.drawingBufferWidth,f[1]=e.drawingBufferHeight,n.uniforms.model=o,n.uniforms.view=a,n.uniforms.projection=s,n.uniforms.coordinates=[this.position,c,d],\\n\",\n       \"n.uniforms.colors=this.colors,n.uniforms.screenShape=f;for(var p=0;3>p;++p)n.uniforms.lineWidth=this.lineWidth[p]*this.pixelRatio,this.enabled[p]&&(r.draw(e.TRIANGLES,6,6*p),this.drawSides[p]&&r.draw(e.TRIANGLES,12,18+12*p));r.unbind()},c.update=function(t){t&&(\\\"bounds\\\"in t&&(this.bounds=t.bounds),\\\"position\\\"in t&&(this.position=t.position),\\\"lineWidth\\\"in t&&(this.lineWidth=t.lineWidth),\\\"colors\\\"in t&&(this.colors=t.colors),\\\"enabled\\\"in t&&(this.enabled=t.enabled),\\\"drawSides\\\"in t&&(this.drawSides=t.drawSides))},c.dispose=function(){this.vao.dispose(),this.buffer.dispose(),this.shader.dispose()}},{\\\"./shaders/index\\\":138,\\\"gl-buffer\\\":75,\\\"gl-vao\\\":184}],140:[function(t,e,r){\\\"use strict\\\";function n(){this.mouse=[-1,-1],this.screen=null,this.distance=1/0,this.index=null,this.dataCoordinate=null,this.dataPosition=null,this.object=null,this.data=null}function i(t,e){var r=null;try{r=t.getContext(\\\"webgl\\\",e),r||(r=t.getContext(\\\"experimental-webgl\\\",e))}catch(n){return null}return r}function o(t){var e=Math.round(Math.log(Math.abs(t))/Math.log(10));if(0>e){var r=Math.round(Math.pow(10,-e));return Math.ceil(t*r)/r}if(e>0){var r=Math.round(Math.pow(10,e));return Math.ceil(t/r)*r}return Math.ceil(t)}function a(t){return\\\"boolean\\\"==typeof t?t:!0}function s(t){function e(){if(!_&&H.autoResize){var t=w.parentNode,e=1,r=1;t&&t!==document.body?(e=t.clientWidth,r=t.clientHeight):(e=window.innerWidth,r=window.innerHeight);var n=0|Math.ceil(e*H.pixelRatio),i=0|Math.ceil(r*H.pixelRatio);if(n!==w.width||i!==w.height){w.width=n,w.height=i;var o=w.style;o.position=o.position||\\\"absolute\\\",o.left=\\\"0px\\\",o.top=\\\"0px\\\",o.width=e+\\\"px\\\",o.height=r+\\\"px\\\",F=!0}}}function r(){for(var t=O.length,e=j.length,r=0;e>r;++r)N[r]=0;t:for(var r=0;t>r;++r){var n=O[r],i=n.pickSlots;if(i){for(var o=0;e>o;++o)if(N[o]+i<255){I[r]=o,n.setPickBase(N[o]+1),N[o]+=i;continue t}var a=f(k,q);I[r]=e,j.push(a),N.push(i),n.setPickBase(1),e+=1}else I[r]=-1}for(;e>0&&0===N[e-1];)N.pop(),j.pop().dispose()}function s(){return H.contextLost?!0:void(k.isContextLost()&&(H.contextLost=!0,H.mouseListener.enabled=!1,H.selection.object=null,H.oncontextloss&&H.oncontextloss()))}function y(){if(!s()){k.colorMask(!0,!0,!0,!0),k.depthMask(!0),k.disable(k.BLEND),k.enable(k.DEPTH_TEST);for(var t=O.length,e=j.length,r=0;e>r;++r){var n=j[r];n.shape=G,n.begin();for(var i=0;t>i;++i)if(I[i]===r){var o=O[i];o.drawPick&&(o.pixelRatio=1,o.drawPick(V))}n.end()}}}function b(){if(!s()){e();var t=H.camera.tick();V.view=H.camera.matrix,F=F||t,D=D||t,P.pixelRatio=H.pixelRatio,R.pixelRatio=H.pixelRatio;var r=O.length,n=W[0],i=W[1];n[0]=n[1]=n[2]=1/0,i[0]=i[1]=i[2]=-(1/0);for(var a=0;r>a;++a){var l=O[a];l.pixelRatio=H.pixelRatio,l.axes=H.axes,F=F||!!l.dirty,D=D||!!l.dirty;var c=l.bounds;if(c)for(var h=c[0],f=c[1],d=0;3>d;++d)n[d]=Math.min(n[d],h[d]),i[d]=Math.max(i[d],f[d])}var g=H.bounds;if(H.autoBounds)for(var d=0;3>d;++d){if(i[d]<n[d])n[d]=-1,i[d]=1;else{n[d]===i[d]&&(n[d]-=1,i[d]+=1);var m=.05*(i[d]-n[d]);n[d]=n[d]-m,i[d]=i[d]+m}g[0][d]=n[d],g[1][d]=i[d]}for(var b=!1,d=0;3>d;++d)b=b||Z[0][d]!==g[0][d]||Z[1][d]!==g[1][d],Z[0][d]=g[0][d],Z[1][d]=g[1][d];if(b){for(var x=[0,0,0],a=0;3>a;++a)x[a]=o((g[1][a]-g[0][a])/10);P.autoTicks?P.update({bounds:g,tickSpacing:x}):P.update({bounds:g})}D=D||b,F=F||b;var _=k.drawingBufferWidth,w=k.drawingBufferHeight;q[0]=_,q[1]=w,G[0]=0|Math.max(_/H.pixelRatio,1),G[1]=0|Math.max(w/H.pixelRatio,1),v(B,H.fovy,_/w,H.zNear,H.zFar);for(var a=0;16>a;++a)U[a]=0;U[15]=1;for(var A=0,a=0;3>a;++a)A=Math.max(A,g[1][a]-g[0][a]);for(var a=0;3>a;++a)H.autoScale?U[5*a]=H.aspect[a]/(g[1][a]-g[0][a]):U[5*a]=1/A,H.autoCenter&&(U[12+a]=.5*-U[5*a]*(g[0][a]+g[1][a]));for(var a=0;r>a;++a){var l=O[a];l.axesBounds=g,H.clipToBounds&&(l.clipBounds=g)}if(T.object&&(H.snapToData?R.position=T.dataCoordinate:R.position=T.dataPosition,R.bounds=g),D&&(D=!1,y()),F){H.axesPixels=u(H.axes,V,_,w),H.onrender&&H.onrender(),k.bindFramebuffer(k.FRAMEBUFFER,null),k.viewport(0,0,_,w);var M=H.clearColor;k.clearColor(M[0],M[1],M[2],M[3]),k.clear(k.COLOR_BUFFER_BIT|k.DEPTH_BUFFER_BIT),k.depthMask(!0),k.colorMask(!0,!0,!0,!0),k.enable(k.DEPTH_TEST),k.depthFunc(k.LEQUAL),k.disable(k.BLEND),k.disable(k.CULL_FACE);var S=!1;P.enable&&(S=S||P.isTransparent(),P.draw(V)),R.axes=P,T.object&&R.draw(V),k.disable(k.CULL_FACE);for(var a=0;r>a;++a){var l=O[a];l.axes=P,l.pixelRatio=H.pixelRatio,l.isOpaque&&l.isOpaque()&&l.draw(V),l.isTransparent&&l.isTransparent()&&(S=!0)}if(S){E.shape=q,E.bind(),k.clear(k.DEPTH_BUFFER_BIT),k.colorMask(!1,!1,!1,!1),k.depthMask(!0),k.depthFunc(k.LESS),P.enable&&P.isTransparent()&&P.drawTransparent(V);for(var a=0;r>a;++a){var l=O[a];l.isOpaque&&l.isOpaque()&&l.draw(V)}k.enable(k.BLEND),k.blendEquation(k.FUNC_ADD),k.blendFunc(k.ONE,k.ONE_MINUS_SRC_ALPHA),k.colorMask(!0,!0,!0,!0),k.depthMask(!1),k.clearColor(0,0,0,0),k.clear(k.COLOR_BUFFER_BIT),P.isTransparent()&&P.drawTransparent(V);for(var a=0;r>a;++a){var l=O[a];l.isTransparent&&l.isTransparent()&&l.drawTransparent(V)}k.bindFramebuffer(k.FRAMEBUFFER,null),k.blendFunc(k.ONE,k.ONE_MINUS_SRC_ALPHA),k.disable(k.DEPTH_TEST),L.bind(),E.color[0].bind(0),L.uniforms.accumBuffer=0,p(k),k.disable(k.BLEND)}F=!1;for(var a=0;r>a;++a)O[a].dirty=!1}}}function x(){_||H.contextLost||(requestAnimationFrame(x),b())}t=t||{};var _=!1,w=(t.pixelRatio||parseFloat(window.devicePixelRatio),t.canvas);if(!w)if(w=document.createElement(\\\"canvas\\\"),t.container){var A=t.container;A.appendChild(w)}else document.body.appendChild(w);var k=t.gl;if(k||(k=i(w,t.glOptions||{premultipliedAlpha:!0,antialias:!0})),!k)throw new Error(\\\"webgl not supported\\\");var M=t.bounds||[[-10,-10,-10],[10,10,10]],T=new n,E=d(k,[k.drawingBufferWidth,k.drawingBufferHeight],{preferFloat:!0}),L=m(k),S=t.camera||{eye:[2,0,0],center:[0,0,0],up:[0,1,0],zoomMin:.1,zoomMax:100,mode:\\\"turntable\\\"},C=t.axes||{},P=c(k,C);P.enable=!C.disable;var z=t.spikes||{},R=h(k,z),O=[],I=[],N=[],j=[],F=!0,D=!0,B=new Array(16),U=new Array(16),V={view:null,projection:B,model:U},D=!0,q=[k.drawingBufferWidth,k.drawingBufferHeight],H={gl:k,contextLost:!1,pixelRatio:t.pixelRatio||parseFloat(window.devicePixelRatio),canvas:w,selection:T,camera:l(w,S),axes:P,axesPixels:null,spikes:R,bounds:M,objects:O,shape:q,aspect:t.aspectRatio||[1,1,1],pickRadius:t.pickRadius||10,zNear:t.zNear||.01,zFar:t.zFar||1e3,fovy:t.fovy||Math.PI/4,clearColor:t.clearColor||[0,0,0,0],autoResize:a(t.autoResize),autoBounds:a(t.autoBounds),autoScale:!!t.autoScale,autoCenter:a(t.autoCenter),clipToBounds:a(t.clipToBounds),snapToData:!!t.snapToData,onselect:t.onselect||null,onrender:t.onrender||null,onclick:t.onclick||null,cameraParams:V,oncontextloss:null,mouseListener:null},G=[k.drawingBufferWidth/H.pixelRatio|0,k.drawingBufferHeight/H.pixelRatio|0];H.autoResize&&e(),window.addEventListener(\\\"resize\\\",e),H.update=function(t){_||(t=t||{},F=!0,D=!0)},H.add=function(t){_||(t.axes=P,O.push(t),I.push(-1),F=!0,D=!0,r())},H.remove=function(t){if(!_){var e=O.indexOf(t);0>e||(O.splice(e,1),I.pop(),F=!0,D=!0,r())}},H.dispose=function(){if(!_&&(_=!0,window.removeEventListener(\\\"resize\\\",e),w.removeEventListener(\\\"webglcontextlost\\\",s),H.mouseListener.enabled=!1,!H.contextLost)){P.dispose(),R.dispose();for(var t=0;t<O.length;++t)O[t].dispose();E.dispose();for(var t=0;t<j.length;++t)j[t].dispose();L.dispose(),k=null,P=null,R=null,O=[]}};var Y=!1,X=0;H.mouseListener=g(w,function(t,e,r){if(!_){var n=j.length,i=O.length,o=T.object;T.distance=1/0,T.mouse[0]=e,T.mouse[1]=r,T.object=null,T.screen=null,T.dataCoordinate=T.dataPosition=null;var a=!1;if(t&&X)Y=!0;else{Y&&(D=!0),Y=!1;for(var s=0;n>s;++s){var l=j[s].query(e,G[1]-r-1,H.pickRadius);if(l){if(l.distance>T.distance)continue;for(var c=0;i>c;++c){var u=O[c];if(I[c]===s){var h=u.pick(l);h&&(T.buttons=t,T.screen=l.coord,T.distance=l.distance,T.object=u,T.index=h.distance,T.dataPosition=h.position,T.dataCoordinate=h.dataCoordinate,T.data=h,a=!0)}}}}}o&&o!==T.object&&(o.highlight&&o.highlight(null),F=!0),T.object&&(T.object.highlight&&T.object.highlight(T.data),F=!0),a=a||T.object!==o,a&&H.onselect&&H.onselect(T),1&t&&!(1&X)&&H.onclick&&H.onclick(T),X=t}}),w.addEventListener(\\\"webglcontextlost\\\",s);var W=[[1/0,1/0,1/0],[-(1/0),-(1/0),-(1/0)]],Z=[W[0].slice(),W[1].slice()];return x(),H.redraw=function(){_||(F=!0,b())},H}e.exports=s;var l=t(\\\"3d-view-controls\\\"),c=t(\\\"gl-axes3d\\\"),u=t(\\\"gl-axes3d/properties\\\"),h=t(\\\"gl-spikes3d\\\"),f=t(\\\"gl-select-static\\\"),d=t(\\\"gl-fbo\\\"),p=t(\\\"a-big-triangle\\\"),g=t(\\\"mouse-change\\\"),v=t(\\\"gl-mat4/perspective\\\"),m=t(\\\"./lib/shader\\\")},{\\\"./lib/shader\\\":123,\\\"3d-view-controls\\\":124,\\\"a-big-triangle\\\":126,\\\"gl-axes3d\\\":127,\\\"gl-axes3d/properties\\\":137,\\\"gl-fbo\\\":80,\\\"gl-mat4/perspective\\\":97,\\\"gl-select-static\\\":153,\\\"gl-spikes3d\\\":139,\\\"mouse-change\\\":198}],141:[function(t,e,r){\\\"use strict\\\";e.exports={vertex:\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nattribute vec2 position;\\\\nattribute vec2 offset;\\\\nattribute vec4 color;\\\\n\\\\nuniform mat3 viewTransform;\\\\nuniform vec2 pixelScale;\\\\n\\\\nvarying vec4 fragColor;\\\\n\\\\nvec4 computePosition_1_0(vec2 position, vec2 offset, mat3 view, vec2 scale) {\\\\n  vec3 xposition = view * vec3(position, 1.0);\\\\n  return vec4(\\\\n    xposition.xy + scale * offset * xposition.z,\\\\n    0,\\\\n    xposition.z);\\\\n}\\\\n\\\\n\\\\n\\\\n\\\\nvoid main() {\\\\n  fragColor = color;\\\\n\\\\n  gl_Position = computePosition_1_0(\\\\n    position,\\\\n    offset,\\\\n    viewTransform,\\\\n    pixelScale);\\\\n}\\\\n\\\",fragment:\\\"precision lowp float;\\\\n#define GLSLIFY 1\\\\nvarying vec4 fragColor;\\\\nvoid main() {\\\\n  gl_FragColor = vec4(fragColor.rgb * fragColor.a, fragColor.a);\\\\n}\\\\n\\\",pickVertex:\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nattribute vec2 position;\\\\nattribute vec2 offset;\\\\nattribute vec4 id;\\\\n\\\\nuniform mat3 viewTransform;\\\\nuniform vec2 pixelScale;\\\\nuniform vec4 pickOffset;\\\\n\\\\nvarying vec4 fragColor;\\\\n\\\\nvec4 computePosition_1_0(vec2 position, vec2 offset, mat3 view, vec2 scale) {\\\\n  vec3 xposition = view * vec3(position, 1.0);\\\\n  return vec4(\\\\n    xposition.xy + scale * offset * xposition.z,\\\\n    0,\\\\n    xposition.z);\\\\n}\\\\n\\\\n\\\\n\\\\n\\\\nvoid main() {\\\\n  vec4 fragId = id + pickOffset;\\\\n\\\\n  fragId.y += floor(fragId.x / 256.0);\\\\n  fragId.x -= floor(fragId.x / 256.0) * 256.0;\\\\n\\\\n  fragId.z += floor(fragId.y / 256.0);\\\\n  fragId.y -= floor(fragId.y / 256.0) * 256.0;\\\\n\\\\n  fragId.w += floor(fragId.z / 256.0);\\\\n  fragId.z -= floor(fragId.z / 256.0) * 256.0;\\\\n\\\\n  fragColor = fragId / 255.0;\\\\n\\\\n  gl_Position = computePosition_1_0(\\\\n    position,\\\\n    offset,\\\\n    viewTransform,\\\\n    pixelScale);\\\\n}\\\\n\\\",pickFragment:\\\"precision lowp float;\\\\n#define GLSLIFY 1\\\\nvarying vec4 fragColor;\\\\nvoid main() {\\\\n  gl_FragColor = fragColor;\\\\n}\\\\n\\\"}},{}],142:[function(t,e,r){\\\"use strict\\\";function n(t){if(t in f)return f[t];var e=u(t,{polygons:!0,font:\\\"sans-serif\\\",textAlign:\\\"left\\\",textBaseline:\\\"alphabetic\\\"}),r=[],n=[];e.forEach(function(t){t.forEach(function(t){for(var e=0;e<t.length;++e){var i=t[(e+t.length-1)%t.length],o=t[e],a=t[(e+1)%t.length],s=t[(e+2)%t.length],l=o[0]-i[0],c=o[1]-i[1],u=Math.sqrt(l*l+c*c);l/=u,c/=u,r.push(i[0],i[1]+1.4),n.push(c,-l),r.push(i[0],i[1]+1.4),n.push(-c,l),r.push(o[0],o[1]+1.4),n.push(-c,l),r.push(o[0],o[1]+1.4),n.push(-c,l),r.push(i[0],i[1]+1.4),n.push(c,-l),r.push(o[0],o[1]+1.4),n.push(c,-l);var h=s[0]-a[0],f=s[1]-a[1],d=Math.sqrt(h*h+f*f);h/=d,f/=d,r.push(o[0],o[1]+1.4),n.push(c,-l),r.push(o[0],o[1]+1.4),n.push(-c,l),r.push(a[0],a[1]+1.4),n.push(-f,h),r.push(a[0],a[1]+1.4),n.push(-f,h),r.push(o[0],o[1]+1.4),n.push(f,-h),r.push(a[0],a[1]+1.4),n.push(f,-h)}})});for(var i=[1/0,1/0,-(1/0),-(1/0)],o=0;o<r.length;o+=2)for(var a=0;2>a;++a)i[a]=Math.min(i[a],r[o+a]),i[2+a]=Math.max(i[2+a],r[o+a]);return f[t]={coords:r,normals:n,bounds:i}}function i(t,e,r,n,i,o,a){this.plot=t,this.shader=e,this.pickShader=r,this.positionBuffer=n,this.offsetBuffer=i,this.colorBuffer=o,this.idBuffer=a,this.bounds=[1/0,1/0,-(1/0),-(1/0)],this.numPoints=0,this.numVertices=0,this.pickOffset=0,this.points=null}function o(t,e){var r=t.gl,n=a(r,h.vertex,h.fragment),o=a(r,h.pickVertex,h.pickFragment),l=s(r),c=s(r),u=s(r),f=s(r),d=new i(t,n,o,l,c,u,f);return d.update(e),t.addObject(d),d}e.exports=o;var a=t(\\\"gl-shader\\\"),s=t(\\\"gl-buffer\\\"),l=t(\\\"text-cache\\\"),c=t(\\\"typedarray-pool\\\"),u=t(\\\"vectorize-text\\\"),h=t(\\\"./lib/shaders\\\"),f={},d=i.prototype;!function(){function t(){var t=this.plot,n=this.bounds,i=t.viewBox,o=t.dataBox,a=t.pixelRatio,s=n[2]-n[0],l=n[3]-n[1],c=o[2]-o[0],u=o[3]-o[1];e[0]=2*s/c,e[4]=2*l/u,e[6]=2*(n[0]-o[0])/c-1,e[7]=2*(n[1]-o[1])/u-1;var h=i[2]-i[0],f=i[3]-i[1];r[0]=2*a/h,r[1]=2*a/f}var e=[1,0,0,0,1,0,0,0,1],r=[1,1];d.draw=function(){var n=this.plot,i=this.shader,o=this.numVertices;if(o){var a=n.gl;t.call(this),i.bind(),i.uniforms.pixelScale=r,i.uniforms.viewTransform=e,this.positionBuffer.bind(),i.attributes.position.pointer(),this.offsetBuffer.bind(),i.attributes.offset.pointer(),this.colorBuffer.bind(),i.attributes.color.pointer(a.UNSIGNED_BYTE,!0),a.drawArrays(a.TRIANGLES,0,o)}};var n=[0,0,0,0];d.drawPick=function(i){var o=this.plot,a=this.pickShader,s=this.numVertices,l=o.gl;if(this.pickOffset=i,!s)return i;for(var c=0;4>c;++c)n[c]=i>>8*c&255;return t.call(this),a.bind(),a.uniforms.pixelScale=r,a.uniforms.viewTransform=e,a.uniforms.pickOffset=n,this.positionBuffer.bind(),a.attributes.position.pointer(),this.offsetBuffer.bind(),a.attributes.offset.pointer(),this.idBuffer.bind(),a.attributes.id.pointer(l.UNSIGNED_BYTE,!1),l.drawArrays(l.TRIANGLES,0,s),i+this.numPoints}}(),d.pick=function(t,e,r){var n=this.pickOffset,i=this.numPoints;if(n>r||r>=n+i)return null;var o=r-n,a=this.points;return{object:this,pointId:o,dataCoord:[a[2*o],a[2*o+1]]}},d.update=function(t){t=t||{};var e=t.positions||[],r=t.colors||[],i=t.glyphs||[],o=t.sizes||[],a=t.borderWidths||[],s=t.borderColors||[];this.points=e;for(var u=this.bounds=[1/0,1/0,-(1/0),-(1/0)],h=0,f=0;f<i.length;++f){h+=l(\\\"sans-serif\\\",i[f]).data.length+n(i[f]).coords.length>>1;for(var d=0;2>d;++d)u[d]=Math.min(u[d],e[2*f+d]),u[2+d]=Math.max(u[2+d],e[2*f+d])}u[0]===u[2]&&(u[2]+=1),u[3]===u[1]&&(u[3]+=1);for(var p=1/(u[2]-u[0]),g=1/(u[3]-u[1]),v=u[0],m=u[1],y=c.mallocFloat32(2*h),b=c.mallocFloat32(2*h),x=c.mallocUint8(4*h),_=c.mallocUint32(h),w=0,f=0;f<i.length;++f){for(var A=l(\\\"sans-serif\\\",i[f]),k=n(i[f]),M=p*(e[2*f]-v),T=g*(e[2*f+1]-m),E=o[f],L=255*r[4*f],S=255*r[4*f+1],C=255*r[4*f+2],P=255*r[4*f+3],z=.5*(k.bounds[0]+k.bounds[2]),R=.5*(k.bounds[1]+k.bounds[3]),d=0;d<A.data.length;d+=2)y[2*w]=M,y[2*w+1]=T,b[2*w]=-E*(A.data[d]-z),b[2*w+1]=-E*(A.data[d+1]-R),x[4*w]=L,x[4*w+1]=S,x[4*w+2]=C,x[4*w+3]=P,_[w]=f,w+=1;var O=a[f];L=255*s[4*f],S=255*s[4*f+1],C=255*s[4*f+2],P=255*s[4*f+3];for(var d=0;d<k.coords.length;d+=2)y[2*w]=M,y[2*w+1]=T,b[2*w]=-(E*(k.coords[d]-z)+O*k.normals[d]),b[2*w+1]=-(E*(k.coords[d+1]-R)+O*k.normals[d+1]),x[4*w]=L,x[4*w+1]=S,x[4*w+2]=C,x[4*w+3]=P,_[w]=f,w+=1}this.numPoints=i.length,this.numVertices=h,this.positionBuffer.update(y),this.offsetBuffer.update(b),this.colorBuffer.update(x),this.idBuffer.update(_),c.free(y),c.free(b),c.free(x),c.free(_)},d.dispose=function(){this.shader.dispose(),this.pickShader.dispose(),this.positionBuffer.dispose(),this.offsetBuffer.dispose(),this.colorBuffer.dispose(),this.idBuffer.dispose(),this.plot.removeObject(this)}},{\\\"./lib/shaders\\\":141,\\\"gl-buffer\\\":75,\\\"gl-shader\\\":154,\\\"text-cache\\\":230,\\\"typedarray-pool\\\":235,\\\"vectorize-text\\\":237}],143:[function(t,e,r){r.pointVertex=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nattribute vec2 position;\\\\nattribute float weight;\\\\n\\\\nuniform mat3 matrix;\\\\nuniform float pointSize, useWeight;\\\\n\\\\nvarying float fragWeight;\\\\n\\\\nvoid main() {\\\\n  vec3 hgPosition = matrix * vec3(position, 1);\\\\n  gl_Position  = vec4(hgPosition.xy, 0, hgPosition.z);\\\\n  gl_PointSize = pointSize;\\\\n  fragWeight = mix(1.0, weight, useWeight);\\\\n}\\\\n\\\",r.pointFragment=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nuniform vec4 color, borderColor;\\\\nuniform float centerFraction;\\\\n\\\\nvarying float fragWeight;\\\\n\\\\nfloat smoothStep(float x, float y) {\\\\n  return 1.0 / (1.0 + exp(50.0*(x - y)));\\\\n}\\\\n\\\\nvoid main() {\\\\n  float radius = length(2.0*gl_PointCoord.xy-1.0);\\\\n  if(radius > 1.0) {\\\\n    discard;\\\\n  }\\\\n  vec4 baseColor = mix(borderColor, color, smoothStep(radius, centerFraction));\\\\n  float alpha = 1.0 - pow(1.0 - baseColor.a, fragWeight);\\\\n  gl_FragColor = vec4(baseColor.rgb * alpha, alpha);\\\\n}\\\\n\\\",r.pickVertex=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nattribute vec2 position;\\\\nattribute vec4 pickId;\\\\n\\\\nuniform mat3 matrix;\\\\nuniform float pointSize;\\\\nuniform vec4 pickOffset;\\\\n\\\\nvarying vec4 fragId;\\\\n\\\\nvoid main() {\\\\n  vec3 hgPosition = matrix * vec3(position, 1);\\\\n  gl_Position  = vec4(hgPosition.xy, 0, hgPosition.z);\\\\n  gl_PointSize = pointSize;\\\\n\\\\n  vec4 id = pickId + pickOffset;\\\\n  id.y += floor(id.x / 256.0);\\\\n  id.x -= floor(id.x / 256.0) * 256.0;\\\\n\\\\n  id.z += floor(id.y / 256.0);\\\\n  id.y -= floor(id.y / 256.0) * 256.0;\\\\n\\\\n  id.w += floor(id.z / 256.0);\\\\n  id.z -= floor(id.z / 256.0) * 256.0;\\\\n\\\\n  fragId = id;\\\\n}\\\\n\\\",r.pickFragment=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nvarying vec4 fragId;\\\\n\\\\nvoid main() {\\\\n  float radius = length(2.0*gl_PointCoord.xy-1.0);\\\\n  if(radius > 1.0) {\\\\n    discard;\\\\n  }\\\\n  gl_FragColor = fragId / 255.0;\\\\n}\\\\n\\\"},{}],144:[function(t,e,r){arguments[4][121][0].apply(r,arguments)},{dup:121}],145:[function(t,e,r){\\\"use strict\\\";function n(t,e,r,n,o){4*f>=o?i(0,o-1,t,e,r,n):h(0,o-1,t,e,r,n)}function i(t,e,r,n,i,o){for(var a=t+1;e>=a;++a){for(var s=r[a],l=n[2*a],c=n[2*a+1],u=i[a],h=o[a],f=a;f>t;){var d=r[f-1],p=n[2*(f-1)];if((d-s||l-p)>=0)break;r[f]=d,n[2*f]=p,n[2*f+1]=n[2*f-1],i[f]=i[f-1],o[f]=o[f-1],f-=1}r[f]=s,n[2*f]=l,n[2*f+1]=c,i[f]=u,o[f]=h}}function o(t,e,r,n,i,o){var a=r[t],s=n[2*t],l=n[2*t+1],c=i[t],u=o[t];r[t]=r[e],n[2*t]=n[2*e],n[2*t+1]=n[2*e+1],i[t]=i[e],o[t]=o[e],r[e]=a,n[2*e]=s,n[2*e+1]=l,i[e]=c,o[e]=u}function a(t,e,r,n,i,o){r[t]=r[e],n[2*t]=n[2*e],n[2*t+1]=n[2*e+1],i[t]=i[e],o[t]=o[e]}function s(t,e,r,n,i,o,a){var s=n[t],l=i[2*t],c=i[2*t+1],u=o[t],h=a[t];n[t]=n[e],i[2*t]=i[2*e],i[2*t+1]=i[2*e+1],o[t]=o[e],a[t]=a[e],n[e]=n[r],i[2*e]=i[2*r],i[2*e+1]=i[2*r+1],o[e]=o[r],a[e]=a[r],n[r]=s,i[2*r]=l,i[2*r+1]=c,o[r]=u,a[r]=h}function l(t,e,r,n,i,o,a,s,l,c,u){s[t]=s[e],l[2*t]=l[2*e],l[2*t+1]=l[2*e+1],c[t]=c[e],u[t]=u[e],s[e]=r,l[2*e]=n,l[2*e+1]=i,c[e]=o,u[e]=a}function c(t,e,r,n,i){return(r[t]-r[e]||n[2*e]-n[2*t]||i[t]-i[e])<0}function u(t,e,r,n,i,o,a,s){return(e-o[t]||a[2*t]-r||i-s[t])<0}function h(t,e,r,n,d,p){var g=(e-t+1)/6|0,v=t+g,m=e-g,y=t+e>>1,b=y-g,x=y+g,_=v,w=b,A=y,k=x,M=m,T=t+1,E=e-1,L=0;c(_,w,r,n,d,p)&&(L=_,_=w,w=L),c(k,M,r,n,d,p)&&(L=k,k=M,M=L),c(_,A,r,n,d,p)&&(L=_,_=A,A=L),c(w,A,r,n,d,p)&&(L=w,w=A,A=L),c(_,k,r,n,d,p)&&(L=_,_=k,k=L),c(A,k,r,n,d,p)&&(L=A,A=k,k=L),c(w,M,r,n,d,p)&&(L=w,w=M,M=L),c(w,A,r,n,d,p)&&(L=w,w=A,A=L),c(k,M,r,n,d,p)&&(L=k,k=M,M=L);var S=r[w],C=n[2*w],P=n[2*w+1],z=d[w],R=p[w],O=r[k],I=n[2*k],N=n[2*k+1],j=d[k],F=p[k],D=_,B=A,U=M,V=v,q=y,H=m,G=r[D],Y=r[B],X=r[U];r[V]=G,r[q]=Y,r[H]=X;for(var W=0;2>W;++W){var Z=n[2*D+W],$=n[2*B+W],K=n[2*U+W];n[2*V+W]=Z,n[2*q+W]=$,n[2*H+W]=K}var Q=d[D],J=d[B],tt=d[U];d[V]=Q,d[q]=J,d[H]=tt;var et=p[D],rt=p[B],nt=p[U];p[V]=et,p[q]=rt,p[H]=nt,a(b,t,r,n,d,p),a(x,e,r,n,d,p);for(var it=T;E>=it;++it)if(u(it,S,C,P,z,r,n,d))it!==T&&o(it,T,r,n,d,p),++T;else if(!u(it,O,I,N,j,r,n,d))for(;;){if(u(E,O,I,N,j,r,n,d)){u(E,S,C,P,z,r,n,d)?(s(it,T,E,r,n,d,p),++T,--E):(o(it,E,r,n,d,p),--E);break}if(--E<it)break}l(t,T-1,S,C,P,z,R,r,n,d,p),l(e,E+1,O,I,N,j,F,r,n,d,p),f>=T-2-t?i(t,T-2,r,n,d,p):h(t,T-2,r,n,d,p),f>=e-(E+2)?i(E+2,e,r,n,d,p):h(E+2,e,r,n,d,p),f>=E-T?i(T,E,r,n,d,p):h(T,E,r,n,d,p)}e.exports=n;var f=32},{}],146:[function(t,e,r){\\\"use strict\\\";function n(t,e,r,n,i,o,a,s){for(var l=r,c=r;n>c;++c){var u=t[2*c],h=t[2*c+1],f=e[c];u>=i&&a>=u&&h>=o&&s>=h&&(c===l?l+=1:(t[2*c]=t[2*l],t[2*c+1]=t[2*l+1],e[c]=e[l],t[2*l]=u,t[2*l+1]=h,e[l]=f,l+=1))}return l}function i(t,e,r){this.pixelSize=t,this.offset=e,this.count=r}function o(t,e,r,o){function l(i,o,a,s,c,u){var h=.5*a,f=s+1,d=c-s;r[_]=d,x[_++]=u;for(var p=0;2>p;++p)for(var g=0;2>g;++g){var v=i+p*h,m=o+g*h,y=n(t,e,f,c,v,m,v+h,m+h);if(y!==f){if(y-f>=Math.max(.9*d,32)){var b=c+s>>>1;l(v,m,h,f,b,u+1),f=b}l(v,m,h,f,y,u+1),f=y}}}var c=t.length>>>1;if(1>c)return[];for(var u=1/0,h=1/0,f=-(1/0),d=-(1/0),p=0;c>p;++p){var g=t[2*p],v=t[2*p+1];u=Math.min(u,g),f=Math.max(f,g),h=Math.min(h,v),d=Math.max(d,v),e[p]=p}u===f&&(f+=1+Math.abs(f)),h===d&&(d+=1+Math.abs(f));var m=1/(f-u),y=1/(d-h),b=Math.max(f-u,d-h);o=o||[0,0,0,0],o[0]=u,o[1]=h,o[2]=f,o[3]=d;var x=a.mallocInt32(c),_=0;l(u,h,b,0,c,0),s(x,t,e,r,c);for(var w=[],A=0,k=c,_=c-1;_>=0;--_){t[2*_]=(t[2*_]-u)*m,t[2*_+1]=(t[2*_+1]-h)*y;var M=x[_];M!==A&&(w.push(new i(b*Math.pow(.5,M),_+1,k-(_+1))),k=_+1,A=M)}return w.push(new i(b*Math.pow(.5,M+1),0,k)),a.free(x),w}var a=t(\\\"typedarray-pool\\\"),s=t(\\\"./lib/sort\\\");e.exports=o},{\\\"./lib/sort\\\":145,\\\"typedarray-pool\\\":235}],147:[function(t,e,r){\\\"use strict\\\";function n(t,e,r,n,i,o){this.plot=t,this.offsetBuffer=e,this.pickBuffer=r,this.weightBuffer=n,this.shader=i,this.pickShader=o,this.scales=[],this.size=12,this.borderSize=1,this.pointCount=0,this.color=[1,0,0,1],this.borderColor=[0,0,0,1],this.bounds=[1/0,1/0,-(1/0),-(1/0)],this.pickOffset=0,this.points=null,this.xCoords=null}function i(t,e){var r=t.gl,i=a(r),s=a(r),l=a(r),c=o(r,u.pointVertex,u.pointFragment),h=o(r,u.pickVertex,u.pickFragment),f=new n(t,i,s,l,c,h);return f.update(e),t.addObject(f),f}var o=t(\\\"gl-shader\\\"),a=t(\\\"gl-buffer\\\"),s=t(\\\"binary-search-bounds\\\"),l=t(\\\"snap-points-2d\\\"),c=t(\\\"typedarray-pool\\\"),u=t(\\\"./lib/shader\\\");e.exports=i;var h=n.prototype;h.dispose=function(){this.shader.dispose(),this.pickShader.dispose(),this.offsetBuffer.dispose(),this.pickBuffer.dispose(),this.xCoords&&c.free(this.xCoords),this.plot.removeObject(this)},h.update=function(t){function e(e,r){return e in t?t[e]:r}t=t||{},this.size=e(\\\"size\\\",12),this.color=e(\\\"color\\\",[1,0,0,1]).slice(),this.borderSize=e(\\\"borderSize\\\",1),this.borderColor=e(\\\"borderColor\\\",[0,0,0,1]).slice(),this.xCoords&&c.free(this.xCoords);var r=t.positions,n=c.mallocFloat32(r.length),i=c.mallocInt32(r.length>>>1);n.set(r);var o=c.mallocFloat32(r.length);this.points=r,this.scales=l(n,i,o,this.bounds),this.offsetBuffer.update(n),this.pickBuffer.update(i),this.weightBuffer.update(o);for(var a=c.mallocFloat32(r.length>>>1),s=0,u=0;s<r.length;s+=2,++u)a[u]=n[s];c.free(i),c.free(n),c.free(o),this.xCoords=a,this.pointCount=r.length>>>1,this.pickOffset=0},h.drawPick=function(){var t=[1,0,0,0,1,0,0,0,1],e=[0,0,0,0];return function(r){var n=this.plot,i=this.pickShader,o=this.scales,a=this.offsetBuffer,l=this.pickBuffer,c=this.bounds,u=this.size,h=this.borderSize,f=n.gl,d=n.pickPixelRatio,p=n.viewBox,g=n.dataBox;if(0===this.pointCount)return r;var v=c[2]-c[0],m=c[3]-c[1],y=g[2]-g[0],b=g[3]-g[1],x=(p[2]-p[0])*d/n.pixelRatio,_=(p[3]-p[1])*d/n.pixelRatio,w=Math.min(y/x,b/_);t[0]=2*v/y,t[4]=2*m/b,t[6]=2*(c[0]-g[0])/y-1,t[7]=2*(c[1]-g[1])/b-1,this.pickOffset=r,e[0]=255&r,e[1]=r>>8&255,e[2]=r>>16&255,e[3]=r>>24&255,i.bind(),i.uniforms.matrix=t,i.uniforms.color=this.color,i.uniforms.borderColor=this.borderColor,i.uniforms.pointSize=d*(u+h),i.uniforms.pickOffset=e,0===this.borderSize?i.uniforms.centerFraction=2:i.uniforms.centerFraction=u/(u+h+1.25),a.bind(),i.attributes.position.pointer(),l.bind(),i.attributes.pickId.pointer(f.UNSIGNED_BYTE);for(var A=this.xCoords,k=(g[0]-c[0]-w*u*d)/v,M=(g[2]-c[0]+w*u*d)/v,T=o.length-1;T>=0;--T){var E=o[T];if(!(E.pixelSize<w&&T>1)){var L=E.offset,S=E.count+L,C=s.ge(A,k,L,S-1),P=s.lt(A,M,C,S-1)+1;P>C&&f.drawArrays(f.POINTS,C,P-C)}}return r+this.pointCount}}(),h.draw=function(){var t=[1,0,0,0,1,0,0,0,1];return function(){var e=this.plot,r=this.shader,n=this.scales,i=this.offsetBuffer,o=this.bounds,a=this.size,l=this.borderSize,c=e.gl,u=e.pixelRatio,h=e.viewBox,f=e.dataBox;if(0!==this.pointCount){var d=o[2]-o[0],p=o[3]-o[1],g=f[2]-f[0],v=f[3]-f[1],m=h[2]-h[0],y=h[3]-h[1],b=Math.min(g/m,v/y);t[0]=2*d/g,t[4]=2*p/v,t[6]=2*(o[0]-f[0])/g-1,t[7]=2*(o[1]-f[1])/v-1,r.bind(),r.uniforms.matrix=t,r.uniforms.color=this.color,r.uniforms.borderColor=this.borderColor,r.uniforms.pointSize=u*(a+l),r.uniforms.useWeight=1,0===this.borderSize?r.uniforms.centerFraction=2:r.uniforms.centerFraction=a/(a+l+1.25),i.bind(),r.attributes.position.pointer(),this.weightBuffer.bind(),r.attributes.weight.pointer();for(var x=this.xCoords,_=(f[0]-o[0]-b*a*u)/d,w=(f[2]-o[0]+b*a*u)/d,A=!0,k=n.length-1;k>=0;--k){var M=n[k];if(!(M.pixelSize<b&&k>1)){var T=M.offset,E=M.count+T,L=s.ge(x,_,T,E-1),S=s.lt(x,w,L,E-1)+1;S>L&&c.drawArrays(c.POINTS,L,S-L),A&&(A=!1,r.uniforms.useWeight=0)}}}}}(),h.pick=function(t,e,r){var n=this.pickOffset,i=this.pointCount;if(n>r||r>=n+i)return null;var o=r-n,a=this.points;return{object:this,pointId:o,dataCoord:[a[2*o],a[2*o+1]]}}},{\\\"./lib/shader\\\":143,\\\"binary-search-bounds\\\":144,\\\"gl-buffer\\\":75,\\\"gl-shader\\\":154,\\\"snap-points-2d\\\":146,\\\"typedarray-pool\\\":235}],148:[function(t,e,r){\\\"use strict\\\";function n(t,e){var r=o[e];if(r||(r=o[e]={}),t in r)return r[t];for(var n=i(t,{textAlign:\\\"center\\\",textBaseline:\\\"middle\\\",lineHeight:1,font:e}),a=i(t,{triangles:!0,textAlign:\\\"center\\\",textBaseline:\\\"middle\\\",lineHeight:1,font:e}),s=[[1/0,1/0],[-(1/0),-(1/0)]],l=0;l<n.positions.length;++l)for(var c=n.positions[l],u=0;2>u;++u)s[0][u]=Math.min(s[0][u],c[u]),s[1][u]=Math.max(s[1][u],c[u]);return r[t]=[a,n,s]}var i=t(\\\"vectorize-text\\\");e.exports=n;var o={}},{\\\"vectorize-text\\\":237}],149:[function(t,e,r){function n(t,e){var r=i(t,e),n=r.attributes;return n.position.location=0,n.color.location=1,n.glyph.location=2,n.id.location=3,r}var i=t(\\\"gl-shader\\\"),o=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nattribute vec3 position;\\\\nattribute vec4 color;\\\\nattribute vec2 glyph;\\\\nattribute vec4 id;\\\\n\\\\n\\\\nuniform vec4 highlightId;\\\\nuniform float highlightScale;\\\\nuniform mat4 model, view, projection;\\\\nuniform vec3 clipBounds[2];\\\\n\\\\nvarying vec4 interpColor;\\\\nvarying vec4 pickId;\\\\nvarying vec3 dataCoordinate;\\\\n\\\\nvoid main() {\\\\n  if(any(lessThan(position, clipBounds[0]))   || \\\\n     any(greaterThan(position, clipBounds[1])) ) {\\\\n    gl_Position = vec4(0,0,0,0);\\\\n  } else {\\\\n    float scale = 1.0;\\\\n    if(distance(highlightId, id) < 0.0001) {\\\\n      scale = highlightScale;\\\\n    }\\\\n\\\\n    vec4 worldPosition = model * vec4(position, 1);\\\\n    vec4 viewPosition = view * worldPosition;\\\\n    viewPosition = viewPosition / viewPosition.w;\\\\n    vec4 clipPosition = projection * (viewPosition + scale * vec4(glyph.x, -glyph.y, 0, 0));\\\\n    \\\\n    gl_Position = clipPosition;\\\\n    interpColor = color;\\\\n    pickId = id;\\\\n    dataCoordinate = position;\\\\n  }\\\\n}\\\",a=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nattribute vec3 position;\\\\nattribute vec4 color;\\\\nattribute vec2 glyph;\\\\nattribute vec4 id;\\\\n\\\\nuniform mat4 model, view, projection;\\\\nuniform vec2 screenSize;\\\\nuniform vec3 clipBounds[2];\\\\nuniform float highlightScale, pixelRatio;\\\\nuniform vec4 highlightId;\\\\n\\\\nvarying vec4 interpColor;\\\\nvarying vec4 pickId;\\\\nvarying vec3 dataCoordinate;\\\\n\\\\nvoid main() {\\\\n  if(any(lessThan(position, clipBounds[0])) || any(greaterThan(position, clipBounds[1]))) {\\\\n    gl_Position = vec4(0,0,0,0);\\\\n  } else {\\\\n    float scale = pixelRatio;\\\\n    if(distance(highlightId.bgr, id.bgr) < 0.001) {\\\\n      scale *= highlightScale;\\\\n    }\\\\n\\\\n    vec4 worldPosition = model * vec4(position, 1.0);\\\\n    vec4 viewPosition = view * worldPosition;\\\\n    vec4 clipPosition = projection * viewPosition;\\\\n    clipPosition /= clipPosition.w;\\\\n    \\\\n    gl_Position = clipPosition + vec4(screenSize * scale * vec2(glyph.x, -glyph.y), 0.0, 0.0);\\\\n    interpColor = color;\\\\n    pickId = id;\\\\n    dataCoordinate = position;\\\\n  }\\\\n}\\\",s=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nattribute vec3 position;\\\\nattribute vec4 color;\\\\nattribute vec2 glyph;\\\\nattribute vec4 id;\\\\n\\\\nuniform float highlightScale;\\\\nuniform vec4 highlightId;\\\\nuniform vec3 axes[2];\\\\nuniform mat4 model, view, projection;\\\\nuniform vec2 screenSize;\\\\nuniform vec3 clipBounds[2];\\\\nuniform float scale, pixelRatio;\\\\n\\\\nvarying vec4 interpColor;\\\\nvarying vec4 pickId;\\\\nvarying vec3 dataCoordinate;\\\\n\\\\nvoid main() {\\\\n  if(any(lessThan(position, clipBounds[0]))   ||\\\\n     any(greaterThan(position, clipBounds[1])) ) {\\\\n    gl_Position = vec4(0,0,0,0);\\\\n  } else {\\\\n    float lscale = pixelRatio * scale;\\\\n    if(distance(highlightId, id) < 0.0001) {\\\\n      lscale *= highlightScale;\\\\n    }\\\\n\\\\n    vec4 clipCenter   = projection * view * model * vec4(position, 1);\\\\n    vec3 dataPosition = position + 0.5*lscale*(axes[0] * glyph.x + axes[1] * glyph.y) * clipCenter.w * screenSize.y;\\\\n    vec4 clipPosition = projection * view * model * vec4(dataPosition, 1);\\\\n\\\\n    gl_Position = clipPosition;\\\\n    interpColor = color;\\\\n    pickId = id;\\\\n    dataCoordinate = dataPosition;\\\\n  }\\\\n}\\\\n\\\",l=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nuniform vec3 fragClipBounds[2];\\\\nuniform float opacity;\\\\n\\\\nvarying vec4 interpColor;\\\\nvarying vec4 pickId;\\\\nvarying vec3 dataCoordinate;\\\\n\\\\nvoid main() {\\\\n  if(any(lessThan(dataCoordinate, fragClipBounds[0]))   ||\\\\n     any(greaterThan(dataCoordinate, fragClipBounds[1])) ) {\\\\n    discard;\\\\n  } else {\\\\n    gl_FragColor = interpColor * opacity;\\\\n  }\\\\n}\\\\n\\\",c=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nuniform vec3 fragClipBounds[2];\\\\nuniform float pickGroup;\\\\n\\\\nvarying vec4 pickId;\\\\nvarying vec3 dataCoordinate;\\\\n\\\\nvoid main() {\\\\n  if(any(lessThan(dataCoordinate, fragClipBounds[0]))   || \\\\n     any(greaterThan(dataCoordinate, fragClipBounds[1])) ) {\\\\n    discard;\\\\n  } else {\\\\n    gl_FragColor = vec4(pickGroup, pickId.bgr);\\\\n  }\\\\n}\\\",u=[{name:\\\"position\\\",type:\\\"vec3\\\"},{name:\\\"color\\\",type:\\\"vec4\\\"},{name:\\\"glyph\\\",type:\\\"vec2\\\"},{name:\\\"id\\\",type:\\\"vec4\\\"}],h={vertex:o,fragment:l,attributes:u},f={vertex:a,fragment:l,attributes:u},d={vertex:s,fragment:l,attributes:u},p={vertex:o,fragment:c,attributes:u},g={vertex:a,fragment:c,attributes:u},v={vertex:s,fragment:c,attributes:u};r.createPerspective=function(t){return n(t,h)},r.createOrtho=function(t){return n(t,f)},r.createProject=function(t){return n(t,d)},r.createPickPerspective=function(t){return n(t,p)},r.createPickOrtho=function(t){return n(t,g)},r.createPickProject=function(t){return n(t,v)}},{\\\"gl-shader\\\":154}],150:[function(t,e,r){\\\"use strict\\\";function n(t,e){var r=t[0],n=t[1],i=t[2],o=t[3];return t[0]=e[0]*r+e[4]*n+e[8]*i+e[12]*o,t[1]=e[1]*r+e[5]*n+e[9]*i+e[13]*o,t[2]=e[2]*r+e[6]*n+e[10]*i+e[14]*o,t[3]=e[3]*r+e[7]*n+e[11]*i+e[15]*o,t}function i(t,e,r,i){return n(i,i,r),n(i,i,e),n(i,i,t)}function o(t,e){this.index=t,this.dataCoordinate=this.position=e}function a(t,e,r,n,i,a,s,l,c,u,h,f){this.gl=t,this.pixelRatio=1,this.shader=e,this.orthoShader=r,this.projectShader=n,this.pointBuffer=i,this.colorBuffer=a,this.glyphBuffer=s,this.idBuffer=l,this.vao=c,this.vertexCount=0,this.lineVertexCount=0,this.opacity=1,this.lineWidth=0,this.projectScale=[2/3,2/3,2/3],this.projectOpacity=[1,1,1],this.pickId=0,this.pickPerspectiveShader=u,this.pickOrthoShader=h,this.pickProjectShader=f,this.points=[],this._selectResult=new o(0,[0,0,0]),this.useOrtho=!0,this.bounds=[[1/0,1/0,1/0],[-(1/0),-(1/0),-(1/0)]],this.axesProject=[!0,!0,!0],this.axesBounds=[[-(1/0),-(1/0),-(1/0)],[1/0,1/0,1/0]],this.highlightId=[1,1,1,1],this.highlightScale=2,this.clipBounds=[[-(1/0),-(1/0),-(1/0)],[1/0,1/0,1/0]],this.dirty=!0}function s(t){return t[0]=t[1]=t[2]=0,t}function l(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=1,t}function c(t,e,r,n){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[r]=n,t}function u(t){for(var e=S,r=0;2>r;++r)for(var n=0;3>n;++n)e[r][n]=Math.max(Math.min(t[r][n],1e8),-1e8);return e}function h(t,e,r,n,o){var a,h=e.axesProject,f=e.gl,d=t.uniforms,p=r.model||x,g=r.view||x,v=r.projection||x,y=e.axesBounds,b=u(e.clipBounds);a=e.axes?e.axes.lastCubeProps.axis:[1,1,1],w[0]=2/f.drawingBufferWidth,w[1]=2/f.drawingBufferHeight,t.bind(),d.view=g,d.projection=v,d.screenSize=w,d.highlightId=e.highlightId,d.highlightScale=e.highlightScale,d.clipBounds=b,d.pickGroup=e.pickId/255,d.pixelRatio=e.pixelRatio;for(var _=0;3>_;++_)if(h[_]&&e.projectOpacity[_]<1===n){d.scale=e.projectScale[_],d.opacity=e.projectOpacity[_];for(var S=E,C=0;16>C;++C)S[C]=0;for(var C=0;4>C;++C)S[5*C]=1;S[5*_]=0,a[_]<0?S[12+_]=y[0][_]:S[12+_]=y[1][_],m(S,p,S),d.model=S;var P=(_+1)%3,z=(_+2)%3,R=s(A),O=s(k);\\n\",\n       \"R[P]=1,O[z]=1;var I=i(v,g,p,l(M,R)),N=i(v,g,p,l(T,O));if(Math.abs(I[1])>Math.abs(N[1])){var j=I;I=N,N=j,j=R,R=O,O=j;var F=P;P=z,z=F}I[0]<0&&(R[P]=-1),N[1]>0&&(O[z]=-1);for(var D=0,B=0,C=0;4>C;++C)D+=Math.pow(p[4*P+C],2),B+=Math.pow(p[4*z+C],2);R[P]/=Math.sqrt(D),O[z]/=Math.sqrt(B),d.axes[0]=R,d.axes[1]=O,d.fragClipBounds[0]=c(L,b[0],_,-1e8),d.fragClipBounds[1]=c(L,b[1],_,1e8),e.vao.draw(f.TRIANGLES,e.vertexCount),e.lineWidth>0&&(f.lineWidth(e.lineWidth),e.vao.draw(f.LINES,e.lineVertexCount,e.vertexCount))}}function f(t,e,r,n,i,o){var a=r.gl;if(r.vao.bind(),i===r.opacity<1||o){t.bind();var s=t.uniforms;s.model=n.model||x,s.view=n.view||x,s.projection=n.projection||x,w[0]=2/a.drawingBufferWidth,w[1]=2/a.drawingBufferHeight,s.screenSize=w,s.highlightId=r.highlightId,s.highlightScale=r.highlightScale,s.fragClipBounds=z,s.clipBounds=r.axes.bounds,s.opacity=r.opacity,s.pickGroup=r.pickId/255,s.pixelRatio=r.pixelRatio,r.vao.draw(a.TRIANGLES,r.vertexCount),r.lineWidth>0&&(a.lineWidth(r.lineWidth),r.vao.draw(a.LINES,r.lineVertexCount,r.vertexCount))}h(e,r,n,i,o),r.vao.unbind()}function d(t){var e=t.gl,r=y.createPerspective(e),n=y.createOrtho(e),i=y.createProject(e),o=y.createPickPerspective(e),s=y.createPickOrtho(e),l=y.createPickProject(e),c=p(e),u=p(e),h=p(e),f=p(e),d=g(e,[{buffer:c,size:3,type:e.FLOAT},{buffer:u,size:4,type:e.FLOAT},{buffer:h,size:2,type:e.FLOAT},{buffer:f,size:4,type:e.UNSIGNED_BYTE,normalized:!0}]),v=new a(e,r,n,i,c,u,h,f,d,o,s,l);return v.update(t),v}var p=t(\\\"gl-buffer\\\"),g=t(\\\"gl-vao\\\"),v=t(\\\"typedarray-pool\\\"),m=t(\\\"gl-mat4/multiply\\\"),y=t(\\\"./lib/shaders\\\"),b=t(\\\"./lib/glyphs\\\"),x=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1];e.exports=d;var _=a.prototype;_.pickSlots=1,_.setPickBase=function(t){this.pickId=t},_.isTransparent=function(){if(this.opacity<1)return!0;for(var t=0;3>t;++t)if(this.axesProject[t]&&this.projectOpacity[t]<1)return!0;return!1},_.isOpaque=function(){if(this.opacity>=1)return!0;for(var t=0;3>t;++t)if(this.axesProject[t]&&this.projectOpacity[t]>=1)return!0;return!1};var w=[0,0],A=[0,0,0],k=[0,0,0],M=[0,0,0,1],T=[0,0,0,1],E=x.slice(),L=[0,0,0],S=[[0,0,0],[0,0,0]],C=[-1e8,-1e8,-1e8],P=[1e8,1e8,1e8],z=[C,P];_.draw=function(t){var e=this.useOrtho?this.orthoShader:this.shader;f(e,this.projectShader,this,t,!1,!1)},_.drawTransparent=function(t){var e=this.useOrtho?this.orthoShader:this.shader;f(e,this.projectShader,this,t,!0,!1)},_.drawPick=function(t){var e=this.useOrtho?this.pickOrthoShader:this.pickPerspectiveShader;f(e,this.pickProjectShader,this,t,!1,!0)},_.pick=function(t){if(!t)return null;if(t.id!==this.pickId)return null;var e=t.value[2]+(t.value[1]<<8)+(t.value[0]<<16);if(e>=this.pointCount||0>e)return null;var r=this.points[e],n=this._selectResult;n.index=e;for(var i=0;3>i;++i)n.position[i]=n.dataCoordinate[i]=r[i];return n},_.highlight=function(t){if(t){var e=t.index,r=255&e,n=e>>8&255,i=e>>16&255;this.highlightId=[r/255,n/255,i/255,0]}else this.highlightId=[1,1,1,1]},_.update=function(t){if(t=t||{},\\\"perspective\\\"in t&&(this.useOrtho=!t.perspective),\\\"orthographic\\\"in t&&(this.useOrtho=!!t.orthographic),\\\"lineWidth\\\"in t&&(this.lineWidth=t.lineWidth),\\\"project\\\"in t)if(Array.isArray(t.project))this.axesProject=t.project;else{var e=!!t.project;this.axesProject=[e,e,e]}if(\\\"projectScale\\\"in t)if(Array.isArray(t.projectScale))this.projectScale=t.projectScale.slice();else{var r=+t.projectScale;this.projectScale=[r,r,r]}if(\\\"projectOpacity\\\"in t)if(Array.isArray(t.projectOpacity))this.projectOpacity=t.projectOpacity.slice();else{var r=+t.projectOpacity;this.projectOpacity=[r,r,r]}\\\"opacity\\\"in t&&(this.opacity=t.opacity),this.dirty=!0;var n=t.position;if(n){var i=t.font||\\\"normal\\\",o=t.alignment||[0,0],a=[1/0,1/0,1/0],s=[-(1/0),-(1/0),-(1/0)],l=t.glyph,c=t.color,u=t.size,h=t.angle,f=t.lineColor,d=0,p=0,g=0,m=n.length;t:for(var y=0;m>y;++y){for(var x=n[y],_=0;3>_;++_)if(isNaN(x[_])||!isFinite(x[_]))continue t;var w;w=Array.isArray(l)?b(l[y],i):l?b(l,i):b(\\\"\\\\u25cf\\\",i);var A=w[0],k=w[1],M=w[2];p+=3*A.cells.length,g+=2*k.edges.length}var T=p+g,E=v.mallocFloat(3*T),L=v.mallocFloat(4*T),S=v.mallocFloat(2*T),C=v.mallocUint32(T),P=[0,o[1]],z=0,R=p,O=[0,0,0,1],I=[0,0,0,1],N=Array.isArray(c)&&Array.isArray(c[0]),j=Array.isArray(f)&&Array.isArray(f[0]);t:for(var y=0;m>y;++y){for(var x=n[y],_=0;3>_;++_){if(isNaN(x[_])||!isFinite(x[_])){d+=1;continue t}s[_]=Math.max(s[_],x[_]),a[_]=Math.min(a[_],x[_])}var w;w=Array.isArray(l)?b(l[y],i):l?b(l,i):b(\\\"\\\\u25cf\\\",i);var A=w[0],k=w[1],M=w[2];if(Array.isArray(c)){var F;if(F=N?c[y]:c,3===F.length){for(var _=0;3>_;++_)O[_]=F[_];O[3]=1}else if(4===F.length)for(var _=0;4>_;++_)O[_]=F[_]}else O[0]=O[1]=O[2]=0,O[3]=1;if(Array.isArray(f)){var F;if(F=j?f[y]:f,3===F.length){for(var _=0;3>_;++_)I[_]=F[_];I[_]=1}else if(4===F.length)for(var _=0;4>_;++_)I[_]=F[_]}else I[0]=I[1]=I[2]=0,I[3]=1;var D=.5;Array.isArray(u)?D=+u[y]:u?D=+u:this.useOrtho&&(D=12);var B=0;Array.isArray(h)?B=+h[y]:h&&(B=+h);for(var U=Math.cos(B),V=Math.sin(B),x=n[y],_=0;3>_;++_)s[_]=Math.max(s[_],x[_]),a[_]=Math.min(a[_],x[_]);o[0]<0?P[0]=o[0]*(1+M[1][0]):o[0]>0&&(P[0]=-o[0]*(1+M[0][0]));for(var q=A.cells,H=A.positions,_=0;_<q.length;++_)for(var G=q[_],Y=0;3>Y;++Y){for(var X=0;3>X;++X)E[3*z+X]=x[X];for(var X=0;4>X;++X)L[4*z+X]=O[X];C[z]=d;var W=H[G[Y]];S[2*z]=D*(U*W[0]-V*W[1]+P[0]),S[2*z+1]=D*(V*W[0]+U*W[1]+P[1]),z+=1}for(var q=k.edges,H=k.positions,_=0;_<q.length;++_)for(var G=q[_],Y=0;2>Y;++Y){for(var X=0;3>X;++X)E[3*R+X]=x[X];for(var X=0;4>X;++X)L[4*R+X]=I[X];C[R]=d;var W=H[G[Y]];S[2*R]=D*(U*W[0]-V*W[1]+P[0]),S[2*R+1]=D*(V*W[0]+U*W[1]+P[1]),R+=1}d+=1}this.vertexCount=p,this.lineVertexCount=g,this.pointBuffer.update(E),this.colorBuffer.update(L),this.glyphBuffer.update(S),this.idBuffer.update(new Uint32Array(C)),v.free(E),v.free(L),v.free(S),v.free(C),this.bounds=[a,s],this.points=n,this.pointCount=n.length}},_.dispose=function(){this.shader.dispose(),this.orthoShader.dispose(),this.pickPerspectiveShader.dispose(),this.pickOrthoShader.dispose(),this.vao.dispose(),this.pointBuffer.dispose(),this.colorBuffer.dispose(),this.glyphBuffer.dispose(),this.idBuffer.dispose()}},{\\\"./lib/glyphs\\\":148,\\\"./lib/shaders\\\":149,\\\"gl-buffer\\\":75,\\\"gl-mat4/multiply\\\":96,\\\"gl-vao\\\":184,\\\"typedarray-pool\\\":235}],151:[function(t,e,r){\\\"use strict\\\";r.boxVertex=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nattribute vec2 vertex;\\\\n\\\\nuniform vec2 cornerA, cornerB;\\\\n\\\\nvoid main() {\\\\n  gl_Position = vec4(mix(cornerA, cornerB, vertex), 0, 1);\\\\n}\\\\n\\\",r.boxFragment=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nuniform vec4 color;\\\\n\\\\nvoid main() {\\\\n  gl_FragColor = color;\\\\n}\\\\n\\\"},{}],152:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){this.plot=t,this.boxBuffer=e,this.boxShader=r,this.enabled=!0,this.selectBox=[1/0,1/0,-(1/0),-(1/0)],this.borderColor=[0,0,0,1],this.innerFill=!1,this.innerColor=[0,0,0,.25],this.outerFill=!0,this.outerColor=[0,0,0,.5],this.borderWidth=10}function i(t,e){var r=t.gl,i=a(r,[0,0,0,1,1,0,1,1]),l=o(r,s.boxVertex,s.boxFragment),c=new n(t,i,l);return c.update(e),t.addOverlay(c),c}var o=t(\\\"gl-shader\\\"),a=t(\\\"gl-buffer\\\"),s=t(\\\"./lib/shaders\\\");e.exports=i;var l=n.prototype;l.draw=function(){if(this.enabled){var t=this.plot,e=this.selectBox,r=this.borderWidth,n=(this.innerFill,this.innerColor),i=(this.outerFill,this.outerColor),o=this.borderColor,a=t.box,s=t.screenBox,l=t.dataBox,c=t.viewBox,u=t.pixelRatio,h=(e[0]-l[0])*(c[2]-c[0])/(l[2]-l[0])+c[0],f=(e[1]-l[1])*(c[3]-c[1])/(l[3]-l[1])+c[1],d=(e[2]-l[0])*(c[2]-c[0])/(l[2]-l[0])+c[0],p=(e[3]-l[1])*(c[3]-c[1])/(l[3]-l[1])+c[1];if(h=Math.max(h,c[0]),f=Math.max(f,c[1]),d=Math.min(d,c[2]),p=Math.min(p,c[3]),!(h>d||f>p)){a.bind();var g=s[2]-s[0],v=s[3]-s[1];if(this.outerFill&&(a.drawBox(0,0,g,f,i),a.drawBox(0,f,h,p,i),a.drawBox(0,p,g,v,i),a.drawBox(d,f,g,p,i)),this.innerFill&&a.drawBox(h,f,d,p,n),r>0){var m=r*u;a.drawBox(h-m,f-m,d+m,f+m,o),a.drawBox(h-m,p-m,d+m,p+m,o),a.drawBox(h-m,f-m,h+m,p+m,o),a.drawBox(d-m,f-m,d+m,p+m,o)}}}},l.update=function(t){t=t||{},this.innerFill=!!t.innerFill,this.outerFill=!!t.outerFill,this.innerColor=(t.innerColor||[0,0,0,.5]).slice(),this.outerColor=(t.outerColor||[0,0,0,.5]).slice(),this.borderColor=(t.borderColor||[0,0,0,1]).slice(),this.borderWidth=t.borderWidth||0,this.selectBox=(t.selectBox||this.selectBox).slice()},l.dispose=function(){this.boxBuffer.dispose(),this.boxShader.dispose(),this.plot.removeOverlay(this)}},{\\\"./lib/shaders\\\":151,\\\"gl-buffer\\\":75,\\\"gl-shader\\\":154}],153:[function(t,e,r){\\\"use strict\\\";function n(t,e,r,n,i){this.coord=[t,e],this.id=r,this.value=n,this.distance=i}function i(t,e,r){this.gl=t,this.fbo=e,this.buffer=r,this._readTimeout=null;var n=this;this._readCallback=function(){n.gl&&(e.bind(),t.readPixels(0,0,e.shape[0],e.shape[1],t.RGBA,t.UNSIGNED_BYTE,n.buffer),n._readTimeout=null)}}function o(t,e){var r=a(t,e),n=s.mallocUint8(e[0]*e[1]*4);return new i(t,r,n)}e.exports=o;var a=t(\\\"gl-fbo\\\"),s=t(\\\"typedarray-pool\\\"),l=t(\\\"ndarray\\\"),c=t(\\\"bit-twiddle\\\").nextPow2,u=t(\\\"cwise/lib/wrapper\\\")({args:[\\\"array\\\",{offset:[0,0,1],array:0},{offset:[0,0,2],array:0},{offset:[0,0,3],array:0},\\\"scalar\\\",\\\"scalar\\\",\\\"index\\\"],pre:{body:\\\"{this_closestD2=1e8,this_closestX=-1,this_closestY=-1}\\\",args:[],thisVars:[\\\"this_closestD2\\\",\\\"this_closestX\\\",\\\"this_closestY\\\"],localVars:[]},body:{body:\\\"{if(255>_inline_31_arg0_||255>_inline_31_arg1_||255>_inline_31_arg2_||255>_inline_31_arg3_){var _inline_31_l=_inline_31_arg4_-_inline_31_arg6_[0],_inline_31_a=_inline_31_arg5_-_inline_31_arg6_[1],_inline_31_f=_inline_31_l*_inline_31_l+_inline_31_a*_inline_31_a;_inline_31_f<this_closestD2&&(this_closestD2=_inline_31_f,this_closestX=_inline_31_arg6_[0],this_closestY=_inline_31_arg6_[1])}}\\\",args:[{name:\\\"_inline_31_arg0_\\\",lvalue:!1,rvalue:!0,count:1},{name:\\\"_inline_31_arg1_\\\",lvalue:!1,rvalue:!0,count:1},{name:\\\"_inline_31_arg2_\\\",lvalue:!1,rvalue:!0,count:1},{name:\\\"_inline_31_arg3_\\\",lvalue:!1,rvalue:!0,count:1},{name:\\\"_inline_31_arg4_\\\",lvalue:!1,rvalue:!0,count:1},{name:\\\"_inline_31_arg5_\\\",lvalue:!1,rvalue:!0,count:1},{name:\\\"_inline_31_arg6_\\\",lvalue:!1,rvalue:!0,count:4}],thisVars:[\\\"this_closestD2\\\",\\\"this_closestX\\\",\\\"this_closestY\\\"],localVars:[\\\"_inline_31_a\\\",\\\"_inline_31_f\\\",\\\"_inline_31_l\\\"]},post:{body:\\\"{return[this_closestX,this_closestY,this_closestD2]}\\\",args:[],thisVars:[\\\"this_closestD2\\\",\\\"this_closestX\\\",\\\"this_closestY\\\"],localVars:[]},debug:!1,funcName:\\\"cwise\\\",blockSize:64}),h=i.prototype;Object.defineProperty(h,\\\"shape\\\",{get:function(){return this.gl?this.fbo.shape.slice():[0,0]},set:function(t){if(this.gl){this.fbo.shape=t;var e=this.fbo.shape[0],r=this.fbo.shape[1];if(r*e*4>this.buffer.length){s.free(this.buffer);for(var n=this.buffer=s.mallocUint8(c(r*e*4)),i=0;r*e*4>i;++i)n[i]=255}return t}}}),h.begin=function(){var t=this.gl;this.shape;t&&(this.fbo.bind(),t.clearColor(1,1,1,1),t.clear(t.COLOR_BUFFER_BIT|t.DEPTH_BUFFER_BIT))},h.end=function(){var t=this.gl;t&&(t.bindFramebuffer(t.FRAMEBUFFER,null),this._readTimeout||clearTimeout(this._readTimeout),this._readTimeout=setTimeout(this._readCallback,1))},h.query=function(t,e,r){if(!this.gl)return null;var i=this.fbo.shape.slice();t=0|t,e=0|e,\\\"number\\\"!=typeof r&&(r=1);var o=0|Math.min(Math.max(t-r,0),i[0]),a=0|Math.min(Math.max(t+r,0),i[0]),s=0|Math.min(Math.max(e-r,0),i[1]),c=0|Math.min(Math.max(e+r,0),i[1]);if(o>=a||s>=c)return null;var h=[a-o,c-s],f=l(this.buffer,[h[0],h[1],4],[4,4*i[0],1],4*(o+i[0]*s)),d=u(f.hi(h[0],h[1],1),r,r),p=d[0],g=d[1];if(0>p||Math.pow(this.radius,2)<d[2])return null;var v=f.get(p,g,0),m=f.get(p,g,1),y=f.get(p,g,2),b=f.get(p,g,3);return new n(p+o|0,g+s|0,v,[m,y,b],Math.sqrt(d[2]))},h.dispose=function(){this.gl&&(this.fbo.dispose(),s.free(this.buffer),this.gl=null,this._readTimeout&&clearTimeout(this._readTimeout))}},{\\\"bit-twiddle\\\":49,\\\"cwise/lib/wrapper\\\":69,\\\"gl-fbo\\\":80,ndarray:210,\\\"typedarray-pool\\\":235}],154:[function(t,e,r){\\\"use strict\\\";function n(t){this.gl=t,this._vref=this._fref=this._relink=this.vertShader=this.fragShader=this.program=this.attributes=this.uniforms=this.types=null}function i(t,e){return t.name<e.name?-1:1}function o(t,e,r,i,o){var a=new n(t);return a.update(e,r,i,o),a}var a=t(\\\"./lib/create-uniforms\\\"),s=t(\\\"./lib/create-attributes\\\"),l=t(\\\"./lib/reflect\\\"),c=t(\\\"./lib/shader-cache\\\"),u=t(\\\"./lib/runtime-reflect\\\"),h=t(\\\"./lib/GLError\\\"),f=n.prototype;f.bind=function(){this.program||this._relink(),this.gl.useProgram(this.program)},f.dispose=function(){this._fref&&this._fref.dispose(),this._vref&&this._vref.dispose(),this.attributes=this.types=this.vertShader=this.fragShader=this.program=this._relink=this._fref=this._vref=null},f.update=function(t,e,r,n){function o(){d.program=c.program(p,d._vref,d._fref,x,_);for(var t=0;t<r.length;++t)L[t]=p.getUniformLocation(d.program,r[t].name)}if(!e||1===arguments.length){var f=t;t=f.vertex,e=f.fragment,r=f.uniforms,n=f.attributes}var d=this,p=d.gl,g=d._vref;d._vref=c.shader(p,p.VERTEX_SHADER,t),g&&g.dispose(),d.vertShader=d._vref.shader;var v=this._fref;if(d._fref=c.shader(p,p.FRAGMENT_SHADER,e),v&&v.dispose(),d.fragShader=d._fref.shader,!r||!n){var m=p.createProgram();if(p.attachShader(m,d.fragShader),p.attachShader(m,d.vertShader),p.linkProgram(m),!p.getProgramParameter(m,p.LINK_STATUS)){var y=p.getProgramInfoLog(m);throw new h(y,\\\"Error linking program:\\\"+y)}r=r||u.uniforms(p,m),n=n||u.attributes(p,m),p.deleteProgram(m)}n=n.slice(),n.sort(i);for(var b=[],x=[],_=[],w=0;w<n.length;++w){var A=n[w];if(A.type.indexOf(\\\"mat\\\")>=0){for(var k=0|A.type.charAt(A.type.length-1),M=new Array(k),T=0;k>T;++T)M[T]=_.length,x.push(A.name+\\\"[\\\"+T+\\\"]\\\"),\\\"number\\\"==typeof A.location?_.push(A.location+T):Array.isArray(A.location)&&A.location.length===k&&\\\"number\\\"==typeof A.location[T]?_.push(0|A.location[T]):_.push(-1);b.push({name:A.name,type:A.type,locations:M})}else b.push({name:A.name,type:A.type,locations:[_.length]}),x.push(A.name),\\\"number\\\"==typeof A.location?_.push(0|A.location):_.push(-1)}for(var E=0,w=0;w<_.length;++w)if(_[w]<0){for(;_.indexOf(E)>=0;)E+=1;_[w]=E}var L=new Array(r.length);o(),d._relink=o,d.types={uniforms:l(r),attributes:l(n)},d.attributes=s(p,d,b,_),Object.defineProperty(d,\\\"uniforms\\\",a(p,d,r,L))},e.exports=o},{\\\"./lib/GLError\\\":155,\\\"./lib/create-attributes\\\":156,\\\"./lib/create-uniforms\\\":157,\\\"./lib/reflect\\\":158,\\\"./lib/runtime-reflect\\\":159,\\\"./lib/shader-cache\\\":160}],155:[function(t,e,r){function n(t,e,r){this.shortMessage=e||\\\"\\\",this.longMessage=r||\\\"\\\",this.rawError=t||\\\"\\\",this.message=\\\"gl-shader: \\\"+(e||t||\\\"\\\")+(r?\\\"\\\\n\\\"+r:\\\"\\\"),this.stack=(new Error).stack}n.prototype=new Error,n.prototype.name=\\\"GLError\\\",n.prototype.constructor=n,e.exports=n},{}],156:[function(t,e,r){\\\"use strict\\\";function n(t,e,r,n,i,o){this._gl=t,this._wrapper=e,this._index=r,this._locations=n,this._dimension=i,this._constFunc=o}function i(t,e,r,i,o,a,s){for(var l=[\\\"gl\\\",\\\"v\\\"],c=[],u=0;o>u;++u)l.push(\\\"x\\\"+u),c.push(\\\"x\\\"+u);l.push(\\\"if(x0.length===void 0){return gl.vertexAttrib\\\"+o+\\\"f(v,\\\"+c.join()+\\\")}else{return gl.vertexAttrib\\\"+o+\\\"fv(v,x0)}\\\");var h=Function.apply(null,l),f=new n(t,e,r,i,o,h);Object.defineProperty(a,s,{set:function(e){return t.disableVertexAttribArray(i[r]),h(t,i[r],e),e},get:function(){return f},enumerable:!0})}function o(t,e,r,n,o,a,s){for(var l=new Array(o),c=new Array(o),u=0;o>u;++u)i(t,e,r[u],n,o,l,u),c[u]=l[u];Object.defineProperty(l,\\\"location\\\",{set:function(t){if(Array.isArray(t))for(var e=0;o>e;++e)c[e].location=t[e];else for(var e=0;o>e;++e)c[e].location=t+e;return t},get:function(){for(var t=new Array(o),e=0;o>e;++e)t[e]=n[r[e]];return t},enumerable:!0}),l.pointer=function(e,i,a,s){e=e||t.FLOAT,i=!!i,a=a||o*o,s=s||0;for(var l=0;o>l;++l){var c=n[r[l]];t.vertexAttribPointer(c,o,e,i,a,s+l*o),t.enableVertexAttribArray(c)}};var h=new Array(o),f=t[\\\"vertexAttrib\\\"+o+\\\"fv\\\"];Object.defineProperty(a,s,{set:function(e){for(var i=0;o>i;++i){var a=n[r[i]];if(t.disableVertexAttribArray(a),Array.isArray(e[0]))f.call(t,a,e[i]);else{for(var s=0;o>s;++s)h[s]=e[o*i+s];f.call(t,a,h)}}return e},get:function(){return l},enumerable:!0})}function a(t,e,r,n){for(var a={},l=0,c=r.length;c>l;++l){var u=r[l],h=u.name,f=u.type,d=u.locations;switch(f){case\\\"bool\\\":case\\\"int\\\":case\\\"float\\\":i(t,e,d[0],n,1,a,h);break;default:if(f.indexOf(\\\"vec\\\")>=0){var p=f.charCodeAt(f.length-1)-48;if(2>p||p>4)throw new s(\\\"\\\",\\\"Invalid data type for attribute \\\"+h+\\\": \\\"+f);i(t,e,d[0],n,p,a,h)}else{if(!(f.indexOf(\\\"mat\\\")>=0))throw new s(\\\"\\\",\\\"Unknown data type for attribute \\\"+h+\\\": \\\"+f);var p=f.charCodeAt(f.length-1)-48;if(2>p||p>4)throw new s(\\\"\\\",\\\"Invalid data type for attribute \\\"+h+\\\": \\\"+f);o(t,e,d,n,p,a,h)}}}return a}e.exports=a;var s=t(\\\"./GLError\\\"),l=n.prototype;l.pointer=function(t,e,r,n){var i=this,o=i._gl,a=i._locations[i._index];o.vertexAttribPointer(a,i._dimension,t||o.FLOAT,!!e,r||0,n||0),o.enableVertexAttribArray(a)},l.set=function(t,e,r,n){return this._constFunc(this._locations[this._index],t,e,r,n)},Object.defineProperty(l,\\\"location\\\",{get:function(){return this._locations[this._index]},set:function(t){return t!==this._locations[this._index]&&(this._locations[this._index]=0|t,this._wrapper.program=null),0|t}})},{\\\"./GLError\\\":155}],157:[function(t,e,r){\\\"use strict\\\";function n(t){var e=new Function(\\\"y\\\",\\\"return function(){return y}\\\");return e(t)}function i(t,e){for(var r=new Array(t),n=0;t>n;++n)r[n]=e;return r}function o(t,e,r,o){function l(r){var n=new Function(\\\"gl\\\",\\\"wrapper\\\",\\\"locations\\\",\\\"return function(){return gl.getUniform(wrapper.program,locations[\\\"+r+\\\"])}\\\");return n(t,e,o)}function c(t,e,r){switch(r){case\\\"bool\\\":case\\\"int\\\":case\\\"sampler2D\\\":case\\\"samplerCube\\\":return\\\"gl.uniform1i(locations[\\\"+e+\\\"],obj\\\"+t+\\\")\\\";case\\\"float\\\":return\\\"gl.uniform1f(locations[\\\"+e+\\\"],obj\\\"+t+\\\")\\\";default:var n=r.indexOf(\\\"vec\\\");if(!(n>=0&&1>=n&&r.length===4+n)){if(0===r.indexOf(\\\"mat\\\")&&4===r.length){var i=r.charCodeAt(r.length-1)-48;if(2>i||i>4)throw new s(\\\"\\\",\\\"Invalid uniform dimension type for matrix \\\"+name+\\\": \\\"+r);return\\\"gl.uniformMatrix\\\"+i+\\\"fv(locations[\\\"+e+\\\"],false,obj\\\"+t+\\\")\\\"}throw new s(\\\"\\\",\\\"Unknown uniform data type for \\\"+name+\\\": \\\"+r)}var i=r.charCodeAt(r.length-1)-48;if(2>i||i>4)throw new s(\\\"\\\",\\\"Invalid data type\\\");switch(r.charAt(0)){case\\\"b\\\":case\\\"i\\\":return\\\"gl.uniform\\\"+i+\\\"iv(locations[\\\"+e+\\\"],obj\\\"+t+\\\")\\\";case\\\"v\\\":return\\\"gl.uniform\\\"+i+\\\"fv(locations[\\\"+e+\\\"],obj\\\"+t+\\\")\\\";default:throw new s(\\\"\\\",\\\"Unrecognized data type for vector \\\"+name+\\\": \\\"+r)}}}function u(t,e){if(\\\"object\\\"!=typeof e)return[[t,e]];var r=[];for(var n in e){var i=e[n],o=t;o+=parseInt(n)+\\\"\\\"===n?\\\"[\\\"+n+\\\"]\\\":\\\".\\\"+n,\\\"object\\\"==typeof i?r.push.apply(r,u(o,i)):r.push([o,i])}return r}function h(e){for(var n=[\\\"return function updateProperty(obj){\\\"],i=u(\\\"\\\",e),a=0;a<i.length;++a){var s=i[a],l=s[0],h=s[1];o[h]&&n.push(c(l,h,r[h].type))}n.push(\\\"return obj}\\\");var f=new Function(\\\"gl\\\",\\\"locations\\\",n.join(\\\"\\\\n\\\"));return f(t,o)}function f(t){switch(t){case\\\"bool\\\":return!1;case\\\"int\\\":case\\\"sampler2D\\\":case\\\"samplerCube\\\":return 0;case\\\"float\\\":return 0;default:var e=t.indexOf(\\\"vec\\\");if(e>=0&&1>=e&&t.length===4+e){var r=t.charCodeAt(t.length-1)-48;if(2>r||r>4)throw new s(\\\"\\\",\\\"Invalid data type\\\");return\\\"b\\\"===t.charAt(0)?i(r,!1):i(r,0)}if(0===t.indexOf(\\\"mat\\\")&&4===t.length){var r=t.charCodeAt(t.length-1)-48;if(2>r||r>4)throw new s(\\\"\\\",\\\"Invalid uniform dimension type for matrix \\\"+name+\\\": \\\"+t);return i(r*r,0)}throw new s(\\\"\\\",\\\"Unknown uniform data type for \\\"+name+\\\": \\\"+t)}}function d(t,e,i){if(\\\"object\\\"==typeof i){var a=p(i);Object.defineProperty(t,e,{get:n(a),set:h(i),enumerable:!0,configurable:!1})}else o[i]?Object.defineProperty(t,e,{get:l(i),set:h(i),enumerable:!0,configurable:!1}):t[e]=f(r[i].type)}function p(t){var e;if(Array.isArray(t)){e=new Array(t.length);for(var r=0;r<t.length;++r)d(e,r,t[r])}else{e={};for(var n in t)d(e,n,t[n])}return e}var g=a(r,!0);return{get:n(p(g)),set:h(g),enumerable:!0,configurable:!0}}var a=t(\\\"./reflect\\\"),s=t(\\\"./GLError\\\");e.exports=o},{\\\"./GLError\\\":155,\\\"./reflect\\\":158}],158:[function(t,e,r){\\\"use strict\\\";function n(t,e){for(var r={},n=0;n<t.length;++n)for(var i=t[n].name,o=i.split(\\\".\\\"),a=r,s=0;s<o.length;++s){var l=o[s].split(\\\"[\\\");if(l.length>1){l[0]in a||(a[l[0]]=[]),a=a[l[0]];for(var c=1;c<l.length;++c){var u=parseInt(l[c]);c<l.length-1||s<o.length-1?(u in a||(c<l.length-1?a[u]=[]:a[u]={}),a=a[u]):e?a[u]=n:a[u]=t[n].type}}else s<o.length-1?(l[0]in a||(a[l[0]]={}),a=a[l[0]]):e?a[l[0]]=n:a[l[0]]=t[n].type}return r}e.exports=n},{}],159:[function(t,e,r){\\\"use strict\\\";function n(t,e){if(!s){var r=Object.keys(a);s={};for(var n=0;n<r.length;++n){var i=r[n];s[t[i]]=a[i]}}return s[e]}function i(t,e){for(var r=t.getProgramParameter(e,t.ACTIVE_UNIFORMS),i=[],o=0;r>o;++o){var a=t.getActiveUniform(e,o);if(a){var s=n(t,a.type);if(a.size>1)for(var l=0;l<a.size;++l)i.push({name:a.name.replace(\\\"[0]\\\",\\\"[\\\"+l+\\\"]\\\"),type:s});else i.push({name:a.name,type:s})}}return i}function o(t,e){for(var r=t.getProgramParameter(e,t.ACTIVE_ATTRIBUTES),i=[],o=0;r>o;++o){var a=t.getActiveAttrib(e,o);a&&i.push({name:a.name,type:n(t,a.type)})}return i}r.uniforms=i,r.attributes=o;var a={FLOAT:\\\"float\\\",FLOAT_VEC2:\\\"vec2\\\",FLOAT_VEC3:\\\"vec3\\\",FLOAT_VEC4:\\\"vec4\\\",INT:\\\"int\\\",INT_VEC2:\\\"ivec2\\\",INT_VEC3:\\\"ivec3\\\",INT_VEC4:\\\"ivec4\\\",BOOL:\\\"bool\\\",BOOL_VEC2:\\\"bvec2\\\",BOOL_VEC3:\\\"bvec3\\\",BOOL_VEC4:\\\"bvec4\\\",FLOAT_MAT2:\\\"mat2\\\",FLOAT_MAT3:\\\"mat3\\\",FLOAT_MAT4:\\\"mat4\\\",SAMPLER_2D:\\\"sampler2D\\\",SAMPLER_CUBE:\\\"samplerCube\\\"},s=null},{}],160:[function(t,e,r){\\\"use strict\\\";function n(t,e,r,n,i,o,a){this.id=t,this.src=e,this.type=r,this.shader=n,this.count=o,this.programs=[],this.cache=a}function i(t){this.gl=t,this.shaders=[{},{}],this.programs={}}function o(t,e,r){var n=t.createShader(e);if(t.shaderSource(n,r),t.compileShader(n),!t.getShaderParameter(n,t.COMPILE_STATUS)){var i=t.getShaderInfoLog(n);try{var o=h(i,r,e)}catch(a){throw console.warn(\\\"Failed to format compiler error: \\\"+a),new u(i,\\\"Error compiling shader:\\\\n\\\"+i)}throw new u(i,o.short,o.long)}return n}function a(t,e,r,n,i){var o=t.createProgram();t.attachShader(o,e),t.attachShader(o,r);for(var a=0;a<n.length;++a)t.bindAttribLocation(o,i[a],n[a]);if(t.linkProgram(o),!t.getProgramParameter(o,t.LINK_STATUS)){var s=t.getProgramInfoLog(o);throw new u(s,\\\"Error linking program: \\\"+s)}return o}function s(t){var e=d.get(t);return e||(e=new i(t),d.set(t,e)),e}function l(t,e,r){return s(t).getShaderReference(e,r)}function c(t,e,r,n,i){return s(t).getProgram(e,r,n,i)}r.shader=l,r.program=c;var u=t(\\\"./GLError\\\"),h=t(\\\"gl-format-compiler-error\\\"),f=\\\"undefined\\\"==typeof WeakMap?t(\\\"weakmap-shim\\\"):WeakMap,d=new f,p=0;n.prototype.dispose=function(){if(0===--this.count){for(var t=this.cache,e=t.gl,r=this.programs,n=0,i=r.length;i>n;++n){var o=t.programs[r[n]];o&&(delete t.programs[n],e.deleteProgram(o))}e.deleteShader(this.shader),delete t.shaders[this.type===e.FRAGMENT_SHADER|0][this.src]}};var g=i.prototype;g.getShaderReference=function(t,e){var r=this.gl,i=this.shaders[t===r.FRAGMENT_SHADER|0],a=i[e];if(a&&r.isShader(a.shader))a.count+=1;else{var s=o(r,t,e);a=i[e]=new n(p++,e,t,s,[],1,this)}return a},g.getProgram=function(t,e,r,n){var i=[t.id,e.id,r.join(\\\":\\\"),n.join(\\\":\\\")].join(\\\"@\\\"),o=this.programs[i];return o&&this.gl.isProgram(o)||(this.programs[i]=o=a(this.gl,t.shader,e.shader,r,n),t.programs.push(i),e.programs.push(i)),o}},{\\\"./GLError\\\":155,\\\"gl-format-compiler-error\\\":161,\\\"weakmap-shim\\\":172}],161:[function(t,e,r){function n(t,e,r){\\\"use strict\\\";var n=a(e)||\\\"of unknown name (see npm glsl-shader-name)\\\",l=\\\"unknown type\\\";void 0!==r&&(l=r===o.FRAGMENT_SHADER?\\\"fragment\\\":\\\"vertex\\\");for(var c=i(\\\"Error compiling %s shader %s:\\\\n\\\",l,n),u=i(\\\"%s%s\\\",c,t),h=t.split(\\\"\\\\n\\\"),f={},d=0;d<h.length;d++){var p=h[d];if(\\\"\\\"!==p){var g=parseInt(p.split(\\\":\\\")[2]);if(isNaN(g))throw new Error(i(\\\"Could not parse error: %s\\\",p));f[g]=p}}for(var v=s(e).split(\\\"\\\\n\\\"),d=0;d<v.length;d++)if(f[d+3]||f[d+2]||f[d+1]){var m=v[d];if(c+=m+\\\"\\\\n\\\",f[d+1]){var y=f[d+1];y=y.substr(y.split(\\\":\\\",3).join(\\\":\\\").length+1).trim(),c+=i(\\\"^^^ %s\\\\n\\\\n\\\",y)}}return{\\\"long\\\":c.trim(),\\\"short\\\":u.trim()}}var i=t(\\\"sprintf-js\\\").sprintf,o=t(\\\"gl-constants/lookup\\\"),a=t(\\\"glsl-shader-name\\\"),s=t(\\\"add-line-numbers\\\");e.exports=n},{\\\"add-line-numbers\\\":162,\\\"gl-constants/lookup\\\":166,\\\"glsl-shader-name\\\":167,\\\"sprintf-js\\\":169}],162:[function(t,e,r){function n(t,e,r){e=\\\"number\\\"==typeof e?e:1,r=r||\\\": \\\";var n=t.split(/\\\\r?\\\\n/),o=String(n.length+e-1).length;return n.map(function(t,n){var a=n+e,s=String(a).length,l=i(a,o-s);return l+r+t}).join(\\\"\\\\n\\\")}var i=t(\\\"pad-left\\\");e.exports=n},{\\\"pad-left\\\":163}],163:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"repeat-string\\\");e.exports=function(t,e,r){return r=\\\"undefined\\\"!=typeof r?r+\\\"\\\":\\\" \\\",n(r,e)+t}},{\\\"repeat-string\\\":164}],164:[function(t,e,r){\\\"use strict\\\";function n(t,e){if(\\\"string\\\"!=typeof t)throw new TypeError(\\\"repeat-string expects a string.\\\");if(1===e)return t;if(2===e)return t+t;var r=t.length*e;for(i===t&&\\\"undefined\\\"!=typeof i||(i=t,o=\\\"\\\");r>o.length&&e>0&&(1&e&&(o+=t),e>>=1);)t+=t;return o.substr(0,r)}var i,o=\\\"\\\";e.exports=n},{}],165:[function(t,e,r){e.exports={0:\\\"NONE\\\",1:\\\"ONE\\\",2:\\\"LINE_LOOP\\\",3:\\\"LINE_STRIP\\\",4:\\\"TRIANGLES\\\",5:\\\"TRIANGLE_STRIP\\\",6:\\\"TRIANGLE_FAN\\\",256:\\\"DEPTH_BUFFER_BIT\\\",512:\\\"NEVER\\\",513:\\\"LESS\\\",514:\\\"EQUAL\\\",515:\\\"LEQUAL\\\",516:\\\"GREATER\\\",517:\\\"NOTEQUAL\\\",518:\\\"GEQUAL\\\",519:\\\"ALWAYS\\\",768:\\\"SRC_COLOR\\\",769:\\\"ONE_MINUS_SRC_COLOR\\\",770:\\\"SRC_ALPHA\\\",771:\\\"ONE_MINUS_SRC_ALPHA\\\",772:\\\"DST_ALPHA\\\",773:\\\"ONE_MINUS_DST_ALPHA\\\",774:\\\"DST_COLOR\\\",775:\\\"ONE_MINUS_DST_COLOR\\\",776:\\\"SRC_ALPHA_SATURATE\\\",1024:\\\"STENCIL_BUFFER_BIT\\\",1028:\\\"FRONT\\\",1029:\\\"BACK\\\",1032:\\\"FRONT_AND_BACK\\\",1280:\\\"INVALID_ENUM\\\",1281:\\\"INVALID_VALUE\\\",1282:\\\"INVALID_OPERATION\\\",1285:\\\"OUT_OF_MEMORY\\\",1286:\\\"INVALID_FRAMEBUFFER_OPERATION\\\",2304:\\\"CW\\\",2305:\\\"CCW\\\",2849:\\\"LINE_WIDTH\\\",2884:\\\"CULL_FACE\\\",2885:\\\"CULL_FACE_MODE\\\",2886:\\\"FRONT_FACE\\\",2928:\\\"DEPTH_RANGE\\\",2929:\\\"DEPTH_TEST\\\",2930:\\\"DEPTH_WRITEMASK\\\",2931:\\\"DEPTH_CLEAR_VALUE\\\",2932:\\\"DEPTH_FUNC\\\",2960:\\\"STENCIL_TEST\\\",2961:\\\"STENCIL_CLEAR_VALUE\\\",2962:\\\"STENCIL_FUNC\\\",2963:\\\"STENCIL_VALUE_MASK\\\",2964:\\\"STENCIL_FAIL\\\",2965:\\\"STENCIL_PASS_DEPTH_FAIL\\\",2966:\\\"STENCIL_PASS_DEPTH_PASS\\\",2967:\\\"STENCIL_REF\\\",2968:\\\"STENCIL_WRITEMASK\\\",2978:\\\"VIEWPORT\\\",3024:\\\"DITHER\\\",3042:\\\"BLEND\\\",3088:\\\"SCISSOR_BOX\\\",3089:\\\"SCISSOR_TEST\\\",3106:\\\"COLOR_CLEAR_VALUE\\\",3107:\\\"COLOR_WRITEMASK\\\",3317:\\\"UNPACK_ALIGNMENT\\\",3333:\\\"PACK_ALIGNMENT\\\",3379:\\\"MAX_TEXTURE_SIZE\\\",3386:\\\"MAX_VIEWPORT_DIMS\\\",3408:\\\"SUBPIXEL_BITS\\\",3410:\\\"RED_BITS\\\",3411:\\\"GREEN_BITS\\\",3412:\\\"BLUE_BITS\\\",3413:\\\"ALPHA_BITS\\\",3414:\\\"DEPTH_BITS\\\",3415:\\\"STENCIL_BITS\\\",3553:\\\"TEXTURE_2D\\\",4352:\\\"DONT_CARE\\\",4353:\\\"FASTEST\\\",4354:\\\"NICEST\\\",5120:\\\"BYTE\\\",5121:\\\"UNSIGNED_BYTE\\\",5122:\\\"SHORT\\\",5123:\\\"UNSIGNED_SHORT\\\",5124:\\\"INT\\\",5125:\\\"UNSIGNED_INT\\\",5126:\\\"FLOAT\\\",5386:\\\"INVERT\\\",5890:\\\"TEXTURE\\\",6401:\\\"STENCIL_INDEX\\\",6402:\\\"DEPTH_COMPONENT\\\",6406:\\\"ALPHA\\\",6407:\\\"RGB\\\",6408:\\\"RGBA\\\",6409:\\\"LUMINANCE\\\",6410:\\\"LUMINANCE_ALPHA\\\",7680:\\\"KEEP\\\",7681:\\\"REPLACE\\\",7682:\\\"INCR\\\",7683:\\\"DECR\\\",7936:\\\"VENDOR\\\",7937:\\\"RENDERER\\\",7938:\\\"VERSION\\\",9728:\\\"NEAREST\\\",9729:\\\"LINEAR\\\",9984:\\\"NEAREST_MIPMAP_NEAREST\\\",9985:\\\"LINEAR_MIPMAP_NEAREST\\\",9986:\\\"NEAREST_MIPMAP_LINEAR\\\",9987:\\\"LINEAR_MIPMAP_LINEAR\\\",10240:\\\"TEXTURE_MAG_FILTER\\\",10241:\\\"TEXTURE_MIN_FILTER\\\",10242:\\\"TEXTURE_WRAP_S\\\",10243:\\\"TEXTURE_WRAP_T\\\",10497:\\\"REPEAT\\\",10752:\\\"POLYGON_OFFSET_UNITS\\\",16384:\\\"COLOR_BUFFER_BIT\\\",32769:\\\"CONSTANT_COLOR\\\",32770:\\\"ONE_MINUS_CONSTANT_COLOR\\\",32771:\\\"CONSTANT_ALPHA\\\",32772:\\\"ONE_MINUS_CONSTANT_ALPHA\\\",32773:\\\"BLEND_COLOR\\\",32774:\\\"FUNC_ADD\\\",32777:\\\"BLEND_EQUATION_RGB\\\",32778:\\\"FUNC_SUBTRACT\\\",32779:\\\"FUNC_REVERSE_SUBTRACT\\\",32819:\\\"UNSIGNED_SHORT_4_4_4_4\\\",32820:\\\"UNSIGNED_SHORT_5_5_5_1\\\",32823:\\\"POLYGON_OFFSET_FILL\\\",32824:\\\"POLYGON_OFFSET_FACTOR\\\",32854:\\\"RGBA4\\\",32855:\\\"RGB5_A1\\\",32873:\\\"TEXTURE_BINDING_2D\\\",32926:\\\"SAMPLE_ALPHA_TO_COVERAGE\\\",32928:\\\"SAMPLE_COVERAGE\\\",32936:\\\"SAMPLE_BUFFERS\\\",32937:\\\"SAMPLES\\\",32938:\\\"SAMPLE_COVERAGE_VALUE\\\",32939:\\\"SAMPLE_COVERAGE_INVERT\\\",32968:\\\"BLEND_DST_RGB\\\",32969:\\\"BLEND_SRC_RGB\\\",32970:\\\"BLEND_DST_ALPHA\\\",32971:\\\"BLEND_SRC_ALPHA\\\",33071:\\\"CLAMP_TO_EDGE\\\",33170:\\\"GENERATE_MIPMAP_HINT\\\",33189:\\\"DEPTH_COMPONENT16\\\",33306:\\\"DEPTH_STENCIL_ATTACHMENT\\\",33635:\\\"UNSIGNED_SHORT_5_6_5\\\",33648:\\\"MIRRORED_REPEAT\\\",33901:\\\"ALIASED_POINT_SIZE_RANGE\\\",33902:\\\"ALIASED_LINE_WIDTH_RANGE\\\",33984:\\\"TEXTURE0\\\",33985:\\\"TEXTURE1\\\",33986:\\\"TEXTURE2\\\",33987:\\\"TEXTURE3\\\",33988:\\\"TEXTURE4\\\",33989:\\\"TEXTURE5\\\",33990:\\\"TEXTURE6\\\",33991:\\\"TEXTURE7\\\",33992:\\\"TEXTURE8\\\",33993:\\\"TEXTURE9\\\",33994:\\\"TEXTURE10\\\",33995:\\\"TEXTURE11\\\",33996:\\\"TEXTURE12\\\",33997:\\\"TEXTURE13\\\",33998:\\\"TEXTURE14\\\",33999:\\\"TEXTURE15\\\",34e3:\\\"TEXTURE16\\\",34001:\\\"TEXTURE17\\\",34002:\\\"TEXTURE18\\\",34003:\\\"TEXTURE19\\\",34004:\\\"TEXTURE20\\\",34005:\\\"TEXTURE21\\\",34006:\\\"TEXTURE22\\\",34007:\\\"TEXTURE23\\\",34008:\\\"TEXTURE24\\\",34009:\\\"TEXTURE25\\\",34010:\\\"TEXTURE26\\\",34011:\\\"TEXTURE27\\\",34012:\\\"TEXTURE28\\\",34013:\\\"TEXTURE29\\\",34014:\\\"TEXTURE30\\\",34015:\\\"TEXTURE31\\\",34016:\\\"ACTIVE_TEXTURE\\\",34024:\\\"MAX_RENDERBUFFER_SIZE\\\",34041:\\\"DEPTH_STENCIL\\\",34055:\\\"INCR_WRAP\\\",34056:\\\"DECR_WRAP\\\",34067:\\\"TEXTURE_CUBE_MAP\\\",34068:\\\"TEXTURE_BINDING_CUBE_MAP\\\",34069:\\\"TEXTURE_CUBE_MAP_POSITIVE_X\\\",34070:\\\"TEXTURE_CUBE_MAP_NEGATIVE_X\\\",34071:\\\"TEXTURE_CUBE_MAP_POSITIVE_Y\\\",34072:\\\"TEXTURE_CUBE_MAP_NEGATIVE_Y\\\",34073:\\\"TEXTURE_CUBE_MAP_POSITIVE_Z\\\",34074:\\\"TEXTURE_CUBE_MAP_NEGATIVE_Z\\\",34076:\\\"MAX_CUBE_MAP_TEXTURE_SIZE\\\",34338:\\\"VERTEX_ATTRIB_ARRAY_ENABLED\\\",34339:\\\"VERTEX_ATTRIB_ARRAY_SIZE\\\",34340:\\\"VERTEX_ATTRIB_ARRAY_STRIDE\\\",34341:\\\"VERTEX_ATTRIB_ARRAY_TYPE\\\",34342:\\\"CURRENT_VERTEX_ATTRIB\\\",34373:\\\"VERTEX_ATTRIB_ARRAY_POINTER\\\",34466:\\\"NUM_COMPRESSED_TEXTURE_FORMATS\\\",34467:\\\"COMPRESSED_TEXTURE_FORMATS\\\",34660:\\\"BUFFER_SIZE\\\",34661:\\\"BUFFER_USAGE\\\",34816:\\\"STENCIL_BACK_FUNC\\\",34817:\\\"STENCIL_BACK_FAIL\\\",34818:\\\"STENCIL_BACK_PASS_DEPTH_FAIL\\\",34819:\\\"STENCIL_BACK_PASS_DEPTH_PASS\\\",34877:\\\"BLEND_EQUATION_ALPHA\\\",34921:\\\"MAX_VERTEX_ATTRIBS\\\",34922:\\\"VERTEX_ATTRIB_ARRAY_NORMALIZED\\\",34930:\\\"MAX_TEXTURE_IMAGE_UNITS\\\",34962:\\\"ARRAY_BUFFER\\\",34963:\\\"ELEMENT_ARRAY_BUFFER\\\",34964:\\\"ARRAY_BUFFER_BINDING\\\",34965:\\\"ELEMENT_ARRAY_BUFFER_BINDING\\\",34975:\\\"VERTEX_ATTRIB_ARRAY_BUFFER_BINDING\\\",35040:\\\"STREAM_DRAW\\\",35044:\\\"STATIC_DRAW\\\",35048:\\\"DYNAMIC_DRAW\\\",35632:\\\"FRAGMENT_SHADER\\\",35633:\\\"VERTEX_SHADER\\\",35660:\\\"MAX_VERTEX_TEXTURE_IMAGE_UNITS\\\",35661:\\\"MAX_COMBINED_TEXTURE_IMAGE_UNITS\\\",35663:\\\"SHADER_TYPE\\\",35664:\\\"FLOAT_VEC2\\\",35665:\\\"FLOAT_VEC3\\\",35666:\\\"FLOAT_VEC4\\\",35667:\\\"INT_VEC2\\\",35668:\\\"INT_VEC3\\\",35669:\\\"INT_VEC4\\\",35670:\\\"BOOL\\\",35671:\\\"BOOL_VEC2\\\",35672:\\\"BOOL_VEC3\\\",35673:\\\"BOOL_VEC4\\\",35674:\\\"FLOAT_MAT2\\\",35675:\\\"FLOAT_MAT3\\\",35676:\\\"FLOAT_MAT4\\\",35678:\\\"SAMPLER_2D\\\",35680:\\\"SAMPLER_CUBE\\\",35712:\\\"DELETE_STATUS\\\",35713:\\\"COMPILE_STATUS\\\",35714:\\\"LINK_STATUS\\\",35715:\\\"VALIDATE_STATUS\\\",35716:\\\"INFO_LOG_LENGTH\\\",35717:\\\"ATTACHED_SHADERS\\\",35718:\\\"ACTIVE_UNIFORMS\\\",35719:\\\"ACTIVE_UNIFORM_MAX_LENGTH\\\",35720:\\\"SHADER_SOURCE_LENGTH\\\",35721:\\\"ACTIVE_ATTRIBUTES\\\",35722:\\\"ACTIVE_ATTRIBUTE_MAX_LENGTH\\\",35724:\\\"SHADING_LANGUAGE_VERSION\\\",35725:\\\"CURRENT_PROGRAM\\\",36003:\\\"STENCIL_BACK_REF\\\",36004:\\\"STENCIL_BACK_VALUE_MASK\\\",36005:\\\"STENCIL_BACK_WRITEMASK\\\",36006:\\\"FRAMEBUFFER_BINDING\\\",36007:\\\"RENDERBUFFER_BINDING\\\",36048:\\\"FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE\\\",36049:\\\"FRAMEBUFFER_ATTACHMENT_OBJECT_NAME\\\",36050:\\\"FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL\\\",36051:\\\"FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE\\\",36053:\\\"FRAMEBUFFER_COMPLETE\\\",36054:\\\"FRAMEBUFFER_INCOMPLETE_ATTACHMENT\\\",36055:\\\"FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT\\\",36057:\\\"FRAMEBUFFER_INCOMPLETE_DIMENSIONS\\\",36061:\\\"FRAMEBUFFER_UNSUPPORTED\\\",36064:\\\"COLOR_ATTACHMENT0\\\",36096:\\\"DEPTH_ATTACHMENT\\\",36128:\\\"STENCIL_ATTACHMENT\\\",36160:\\\"FRAMEBUFFER\\\",36161:\\\"RENDERBUFFER\\\",36162:\\\"RENDERBUFFER_WIDTH\\\",36163:\\\"RENDERBUFFER_HEIGHT\\\",36164:\\\"RENDERBUFFER_INTERNAL_FORMAT\\\",36168:\\\"STENCIL_INDEX8\\\",36176:\\\"RENDERBUFFER_RED_SIZE\\\",36177:\\\"RENDERBUFFER_GREEN_SIZE\\\",36178:\\\"RENDERBUFFER_BLUE_SIZE\\\",36179:\\\"RENDERBUFFER_ALPHA_SIZE\\\",36180:\\\"RENDERBUFFER_DEPTH_SIZE\\\",36181:\\\"RENDERBUFFER_STENCIL_SIZE\\\",36194:\\\"RGB565\\\",36336:\\\"LOW_FLOAT\\\",36337:\\\"MEDIUM_FLOAT\\\",36338:\\\"HIGH_FLOAT\\\",36339:\\\"LOW_INT\\\",36340:\\\"MEDIUM_INT\\\",36341:\\\"HIGH_INT\\\",36346:\\\"SHADER_COMPILER\\\",36347:\\\"MAX_VERTEX_UNIFORM_VECTORS\\\",36348:\\\"MAX_VARYING_VECTORS\\\",36349:\\\"MAX_FRAGMENT_UNIFORM_VECTORS\\\",37440:\\\"UNPACK_FLIP_Y_WEBGL\\\",37441:\\\"UNPACK_PREMULTIPLY_ALPHA_WEBGL\\\",37442:\\\"CONTEXT_LOST_WEBGL\\\",37443:\\\"UNPACK_COLORSPACE_CONVERSION_WEBGL\\\",37444:\\\"BROWSER_DEFAULT_WEBGL\\\"}},{}],166:[function(t,e,r){var n=t(\\\"./1.0/numbers\\\");e.exports=function(t){return n[t]}},{\\\"./1.0/numbers\\\":165}],167:[function(t,e,r){function n(t){for(var e=Array.isArray(t)?t:i(t),r=0;r<e.length;r++){var n=e[r];if(\\\"preprocessor\\\"===n.type){var a=n.data.match(/\\\\#define\\\\s+SHADER_NAME(_B64)?\\\\s+(.+)$/);if(a&&a[2]){var s=a[1],l=a[2];return(s?o(l):l).trim()}}}}var i=t(\\\"glsl-tokenizer\\\"),o=t(\\\"atob-lite\\\");e.exports=n},{\\\"atob-lite\\\":168,\\\"glsl-tokenizer\\\":192}],168:[function(t,e,r){e.exports=function(t){return atob(t)}},{}],\\n\",\n       \"169:[function(e,r,n){!function(e){function r(){var t=arguments[0],e=r.cache;return e[t]&&e.hasOwnProperty(t)||(e[t]=r.parse(t)),r.format.call(null,e[t],arguments)}function i(t){return Object.prototype.toString.call(t).slice(8,-1).toLowerCase()}function o(t,e){return Array(e+1).join(t)}var a={not_string:/[^s]/,number:/[diefg]/,json:/[j]/,not_json:/[^j]/,text:/^[^\\\\x25]+/,modulo:/^\\\\x25{2}/,placeholder:/^\\\\x25(?:([1-9]\\\\d*)\\\\$|\\\\(([^\\\\)]+)\\\\))?(\\\\+)?(0|'[^$])?(-)?(\\\\d+)?(?:\\\\.(\\\\d+))?([b-gijosuxX])/,key:/^([a-z_][a-z_\\\\d]*)/i,key_access:/^\\\\.([a-z_][a-z_\\\\d]*)/i,index_access:/^\\\\[(\\\\d+)\\\\]/,sign:/^[\\\\+\\\\-]/};r.format=function(t,e){var n,s,l,c,u,h,f,d=1,p=t.length,g=\\\"\\\",v=[],m=!0,y=\\\"\\\";for(s=0;p>s;s++)if(g=i(t[s]),\\\"string\\\"===g)v[v.length]=t[s];else if(\\\"array\\\"===g){if(c=t[s],c[2])for(n=e[d],l=0;l<c[2].length;l++){if(!n.hasOwnProperty(c[2][l]))throw new Error(r(\\\"[sprintf] property '%s' does not exist\\\",c[2][l]));n=n[c[2][l]]}else n=c[1]?e[c[1]]:e[d++];if(\\\"function\\\"==i(n)&&(n=n()),a.not_string.test(c[8])&&a.not_json.test(c[8])&&\\\"number\\\"!=i(n)&&isNaN(n))throw new TypeError(r(\\\"[sprintf] expecting number but found %s\\\",i(n)));switch(a.number.test(c[8])&&(m=n>=0),c[8]){case\\\"b\\\":n=n.toString(2);break;case\\\"c\\\":n=String.fromCharCode(n);break;case\\\"d\\\":case\\\"i\\\":n=parseInt(n,10);break;case\\\"j\\\":n=JSON.stringify(n,null,c[6]?parseInt(c[6]):0);break;case\\\"e\\\":n=c[7]?n.toExponential(c[7]):n.toExponential();break;case\\\"f\\\":n=c[7]?parseFloat(n).toFixed(c[7]):parseFloat(n);break;case\\\"g\\\":n=c[7]?parseFloat(n).toPrecision(c[7]):parseFloat(n);break;case\\\"o\\\":n=n.toString(8);break;case\\\"s\\\":n=(n=String(n))&&c[7]?n.substring(0,c[7]):n;break;case\\\"u\\\":n>>>=0;break;case\\\"x\\\":n=n.toString(16);break;case\\\"X\\\":n=n.toString(16).toUpperCase()}a.json.test(c[8])?v[v.length]=n:(!a.number.test(c[8])||m&&!c[3]?y=\\\"\\\":(y=m?\\\"+\\\":\\\"-\\\",n=n.toString().replace(a.sign,\\\"\\\")),h=c[4]?\\\"0\\\"===c[4]?\\\"0\\\":c[4].charAt(1):\\\" \\\",f=c[6]-(y+n).length,u=c[6]&&f>0?o(h,f):\\\"\\\",v[v.length]=c[5]?y+n+u:\\\"0\\\"===h?y+u+n:u+y+n)}return v.join(\\\"\\\")},r.cache={},r.parse=function(t){for(var e=t,r=[],n=[],i=0;e;){if(null!==(r=a.text.exec(e)))n[n.length]=r[0];else if(null!==(r=a.modulo.exec(e)))n[n.length]=\\\"%\\\";else{if(null===(r=a.placeholder.exec(e)))throw new SyntaxError(\\\"[sprintf] unexpected placeholder\\\");if(r[2]){i|=1;var o=[],s=r[2],l=[];if(null===(l=a.key.exec(s)))throw new SyntaxError(\\\"[sprintf] failed to parse named argument key\\\");for(o[o.length]=l[1];\\\"\\\"!==(s=s.substring(l[0].length));)if(null!==(l=a.key_access.exec(s)))o[o.length]=l[1];else{if(null===(l=a.index_access.exec(s)))throw new SyntaxError(\\\"[sprintf] failed to parse named argument key\\\");o[o.length]=l[1]}r[2]=o}else i|=2;if(3===i)throw new Error(\\\"[sprintf] mixing positional and named placeholders is not (yet) supported\\\");n[n.length]=r}e=e.substring(r[0].length)}return n};var s=function(t,e,n){return n=(e||[]).slice(0),n.splice(0,0,t),r.apply(null,n)};\\\"undefined\\\"!=typeof n?(n.sprintf=r,n.vsprintf=s):(e.sprintf=r,e.vsprintf=s,\\\"function\\\"==typeof t&&t.amd&&t(function(){return{sprintf:r,vsprintf:s}}))}(\\\"undefined\\\"==typeof window?this:window)},{}],170:[function(t,e,r){function n(){var t={};return function(e){if((\\\"object\\\"!=typeof e||null===e)&&\\\"function\\\"!=typeof e)throw new Error(\\\"Weakmap-shim: Key must be object\\\");var r=e.valueOf(t);return r&&r.identity===t?r:i(e,t)}}var i=t(\\\"./hidden-store.js\\\");e.exports=n},{\\\"./hidden-store.js\\\":171}],171:[function(t,e,r){function n(t,e){var r={identity:e},n=t.valueOf;return Object.defineProperty(t,\\\"valueOf\\\",{value:function(t){return t!==e?n.apply(this,arguments):r},writable:!0}),r}e.exports=n},{}],172:[function(t,e,r){function n(){var t=i();return{get:function(e,r){var n=t(e);return n.hasOwnProperty(\\\"value\\\")?n.value:r},set:function(e,r){t(e).value=r},has:function(e){return\\\"value\\\"in t(e)},\\\"delete\\\":function(e){return delete t(e).value}}}var i=t(\\\"./create-store.js\\\");e.exports=n},{\\\"./create-store.js\\\":170}],173:[function(t,e,r){\\\"use strict\\\";function n(t){this.plot=t,this.enable=[!0,!0,!1,!1],this.width=[1,1,1,1],this.color=[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.center=[1/0,1/0]}function i(t,e){var r=new n(t);return r.update(e),t.addOverlay(r),r}e.exports=i;var o=n.prototype;o.update=function(t){t=t||{},this.enable=(t.enable||[!0,!0,!1,!1]).slice(),this.width=(t.width||[1,1,1,1]).slice(),this.color=(t.color||[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]]).map(function(t){return t.slice()}),this.center=(t.center||[1/0,1/0]).slice(),this.plot.setOverlayDirty()},o.draw=function(){var t=this.enable,e=this.width,r=this.color,n=this.center,i=this.plot,o=i.line,a=i.dataBox,s=i.viewBox;if(o.bind(),a[0]<=n[0]&&n[0]<=a[2]&&a[1]<=n[1]&&n[1]<=a[3]){var l=s[0]+(n[0]-a[0])/(a[2]-a[0])*(s[2]-s[0]),c=s[1]+(n[1]-a[1])/(a[3]-a[1])*(s[3]-s[1]);t[0]&&o.drawLine(l,c,s[0],c,e[0],r[0]),t[1]&&o.drawLine(l,c,l,s[1],e[1],r[1]),t[2]&&o.drawLine(l,c,s[2],c,e[2],r[2]),t[3]&&o.drawLine(l,c,l,s[3],e[3],r[3])}},o.dispose=function(){this.plot.removeOverlay(this)}},{}],174:[function(t,e,r){var n=t(\\\"gl-shader\\\"),i=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nattribute vec4 uv;\\\\nattribute vec3 f;\\\\nattribute vec3 normal;\\\\n\\\\nuniform mat4 model, view, projection, inverseModel;\\\\nuniform vec3 lightPosition, eyePosition;\\\\n\\\\nvarying float value, kill;\\\\nvarying vec3 worldCoordinate;\\\\nvarying vec2 planeCoordinate;\\\\nvarying vec3 lightDirection, eyeDirection, surfaceNormal;\\\\n\\\\nvoid main() {\\\\n  worldCoordinate = vec3(uv.zw, f.x);\\\\n  vec4 worldPosition = model * vec4(worldCoordinate, 1.0);\\\\n  vec4 clipPosition = projection * view * worldPosition;\\\\n  gl_Position = clipPosition;\\\\n  kill = f.y;\\\\n  value = f.z;\\\\n  planeCoordinate = uv.xy;\\\\n\\\\n  //Lighting geometry parameters\\\\n  vec4 cameraCoordinate = view * worldPosition;\\\\n  cameraCoordinate.xyz /= cameraCoordinate.w;\\\\n  lightDirection = lightPosition - cameraCoordinate.xyz;\\\\n  eyeDirection   = eyePosition - cameraCoordinate.xyz;\\\\n  surfaceNormal  = normalize((vec4(normal,0) * inverseModel).xyz);\\\\n}\\\\n\\\",o=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nfloat beckmannDistribution_2_0(float x, float roughness) {\\\\n  float NdotH = max(x, 0.0001);\\\\n  float cos2Alpha = NdotH * NdotH;\\\\n  float tan2Alpha = (cos2Alpha - 1.0) / cos2Alpha;\\\\n  float roughness2 = roughness * roughness;\\\\n  float denom = 3.141592653589793 * roughness2 * cos2Alpha * cos2Alpha;\\\\n  return exp(tan2Alpha / roughness2) / denom;\\\\n}\\\\n\\\\n\\\\n\\\\nfloat beckmannSpecular_1_1(\\\\n  vec3 lightDirection,\\\\n  vec3 viewDirection,\\\\n  vec3 surfaceNormal,\\\\n  float roughness) {\\\\n  return beckmannDistribution_2_0(dot(surfaceNormal, normalize(lightDirection + viewDirection)), roughness);\\\\n}\\\\n\\\\n\\\\n\\\\nuniform vec3 lowerBound, upperBound;\\\\nuniform float contourTint;\\\\nuniform vec4 contourColor;\\\\nuniform sampler2D colormap;\\\\nuniform vec3 clipBounds[2];\\\\nuniform float roughness, fresnel, kambient, kdiffuse, kspecular, opacity;\\\\n\\\\nvarying float value, kill;\\\\nvarying vec3 worldCoordinate;\\\\nvarying vec3 lightDirection, eyeDirection, surfaceNormal;\\\\n\\\\nvoid main() {\\\\n  if(kill > 0.0 ||\\\\n    any(lessThan(worldCoordinate, clipBounds[0])) || any(greaterThan(worldCoordinate, clipBounds[1]))) {\\\\n    discard;\\\\n  }\\\\n\\\\n  vec3 N = normalize(surfaceNormal);\\\\n  vec3 V = normalize(eyeDirection);\\\\n  vec3 L = normalize(lightDirection);\\\\n\\\\n  if(gl_FrontFacing) {\\\\n    N = -N;\\\\n  }\\\\n\\\\n  float specular = beckmannSpecular_1_1(L, V, N, roughness);\\\\n  float diffuse  = min(kambient + kdiffuse * max(dot(N, L), 0.0), 1.0);\\\\n\\\\n  vec4 surfaceColor = texture2D(colormap, vec2(value, value));\\\\n  vec4 litColor = surfaceColor.a * vec4(diffuse * surfaceColor.rgb + kspecular * vec3(1,1,1) * specular,  1.0);\\\\n\\\\n  gl_FragColor = mix(litColor, contourColor, contourTint) * opacity;\\\\n}\\\\n\\\",a=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nattribute vec4 uv;\\\\nattribute float f;\\\\n\\\\nuniform mat3 permutation;\\\\nuniform mat4 model, view, projection;\\\\nuniform float height, zOffset;\\\\n\\\\nvarying float value, kill;\\\\nvarying vec3 worldCoordinate;\\\\nvarying vec2 planeCoordinate;\\\\nvarying vec3 lightDirection, eyeDirection, surfaceNormal;\\\\n\\\\nvoid main() {\\\\n  vec3 dataCoordinate = permutation * vec3(uv.xy, height);\\\\n  vec4 worldPosition = model * vec4(dataCoordinate, 1.0);\\\\n\\\\n  vec4 clipPosition = projection * view * worldPosition;\\\\n  clipPosition.z = clipPosition.z + zOffset;\\\\n\\\\n  gl_Position = clipPosition;\\\\n  value = f;\\\\n  kill = -1.0;\\\\n  worldCoordinate = dataCoordinate;\\\\n  planeCoordinate = uv.zw;\\\\n\\\\n  //Don't do lighting for contours\\\\n  surfaceNormal   = vec3(1,0,0);\\\\n  eyeDirection    = vec3(0,1,0);\\\\n  lightDirection  = vec3(0,0,1);\\\\n}\\\\n\\\",s=\\\"precision mediump float;\\\\n#define GLSLIFY 1\\\\n\\\\nuniform vec2 shape;\\\\nuniform vec3 clipBounds[2];\\\\nuniform float pickId;\\\\n\\\\nvarying float value, kill;\\\\nvarying vec3 worldCoordinate;\\\\nvarying vec2 planeCoordinate;\\\\nvarying vec3 surfaceNormal;\\\\n\\\\nvec2 splitFloat(float v) {\\\\n  float vh = 255.0 * v;\\\\n  float upper = floor(vh);\\\\n  float lower = fract(vh);\\\\n  return vec2(upper / 255.0, floor(lower * 16.0) / 16.0);\\\\n}\\\\n\\\\nvoid main() {\\\\n  if(kill > 0.0 ||\\\\n    any(lessThan(worldCoordinate, clipBounds[0])) || any(greaterThan(worldCoordinate, clipBounds[1]))) {\\\\n    discard;\\\\n  }\\\\n  vec2 ux = splitFloat(planeCoordinate.x / shape.x);\\\\n  vec2 uy = splitFloat(planeCoordinate.y / shape.y);\\\\n  gl_FragColor = vec4(pickId, ux.x, uy.x, ux.y + (uy.y/16.0));\\\\n}\\\\n\\\";r.createShader=function(t){var e=n(t,i,o,null,[{name:\\\"uv\\\",type:\\\"vec4\\\"},{name:\\\"f\\\",type:\\\"vec3\\\"},{name:\\\"normal\\\",type:\\\"vec3\\\"}]);return e.attributes.uv.location=0,e.attributes.f.location=1,e.attributes.normal.location=2,e},r.createPickShader=function(t){var e=n(t,i,s,null,[{name:\\\"uv\\\",type:\\\"vec4\\\"},{name:\\\"f\\\",type:\\\"vec3\\\"},{name:\\\"normal\\\",type:\\\"vec3\\\"}]);return e.attributes.uv.location=0,e.attributes.f.location=1,e.attributes.normal.location=2,e},r.createContourShader=function(t){var e=n(t,a,o,null,[{name:\\\"uv\\\",type:\\\"vec4\\\"},{name:\\\"f\\\",type:\\\"float\\\"}]);return e.attributes.uv.location=0,e.attributes.f.location=1,e},r.createPickContourShader=function(t){var e=n(t,a,s,null,[{name:\\\"uv\\\",type:\\\"vec4\\\"},{name:\\\"f\\\",type:\\\"float\\\"}]);return e.attributes.uv.location=0,e.attributes.f.location=1,e}},{\\\"gl-shader\\\":154}],175:[function(t,e,r){arguments[4][20][0].apply(r,arguments)},{dup:20}],176:[function(t,e,r){\\\"use strict\\\";function n(t){if(t in l)return l[t];for(var e=[],r=0;t>r;++r)e.push(\\\"out\\\",r,\\\"s=0.5*(inp\\\",r,\\\"l-inp\\\",r,\\\"r);\\\");for(var n=[\\\"array\\\"],i=[\\\"junk\\\"],r=0;t>r;++r){n.push(\\\"array\\\"),i.push(\\\"out\\\"+r+\\\"s\\\");var o=a(t);o[r]=-1,n.push({array:0,offset:o.slice()}),o[r]=1,n.push({array:0,offset:o.slice()}),i.push(\\\"inp\\\"+r+\\\"l\\\",\\\"inp\\\"+r+\\\"r\\\")}return l[t]=s({args:n,pre:u,post:u,body:{body:e.join(\\\"\\\"),args:i.map(function(t){return{name:t,lvalue:0===t.indexOf(\\\"out\\\"),rvalue:0===t.indexOf(\\\"inp\\\"),count:\\\"junk\\\"!==t|0}}),thisVars:[],localVars:[]},funcName:\\\"fdTemplate\\\"+t})}function i(t){function e(e){for(var r=o-e.length,n=[],i=[],s=[],l=0;o>l;++l)e.indexOf(l+1)>=0?s.push(\\\"0\\\"):e.indexOf(-(l+1))>=0?s.push(\\\"s[\\\"+l+\\\"]-1\\\"):(s.push(\\\"-1\\\"),n.push(\\\"1\\\"),i.push(\\\"s[\\\"+l+\\\"]-2\\\"));var c=\\\".lo(\\\"+n.join()+\\\").hi(\\\"+i.join()+\\\")\\\";if(0===n.length&&(c=\\\"\\\"),r>0){a.push(\\\"if(1\\\");for(var l=0;o>l;++l)e.indexOf(l+1)>=0||e.indexOf(-(l+1))>=0||a.push(\\\"&&s[\\\",l,\\\"]>2\\\");a.push(\\\"){grad\\\",r,\\\"(src.pick(\\\",s.join(),\\\")\\\",c);for(var l=0;o>l;++l)e.indexOf(l+1)>=0||e.indexOf(-(l+1))>=0||a.push(\\\",dst.pick(\\\",s.join(),\\\",\\\",l,\\\")\\\",c);a.push(\\\");\\\")}for(var l=0;l<e.length;++l){var u=Math.abs(e[l])-1,h=\\\"dst.pick(\\\"+s.join()+\\\",\\\"+u+\\\")\\\"+c;switch(t[u]){case\\\"clamp\\\":var f=s.slice(),d=s.slice();e[l]<0?f[u]=\\\"s[\\\"+u+\\\"]-2\\\":d[u]=\\\"1\\\",0===r?a.push(\\\"if(s[\\\",u,\\\"]>1){dst.set(\\\",s.join(),\\\",\\\",u,\\\",0.5*(src.get(\\\",f.join(),\\\")-src.get(\\\",d.join(),\\\")))}else{dst.set(\\\",s.join(),\\\",\\\",u,\\\",0)};\\\"):a.push(\\\"if(s[\\\",u,\\\"]>1){diff(\\\",h,\\\",src.pick(\\\",f.join(),\\\")\\\",c,\\\",src.pick(\\\",d.join(),\\\")\\\",c,\\\");}else{zero(\\\",h,\\\");};\\\");break;case\\\"mirror\\\":0===r?a.push(\\\"dst.set(\\\",s.join(),\\\",\\\",u,\\\",0);\\\"):a.push(\\\"zero(\\\",h,\\\");\\\");break;case\\\"wrap\\\":var p=s.slice(),g=s.slice();e[l]<0?(p[u]=\\\"s[\\\"+u+\\\"]-2\\\",g[u]=\\\"0\\\"):(p[u]=\\\"s[\\\"+u+\\\"]-1\\\",g[u]=\\\"1\\\"),0===r?a.push(\\\"if(s[\\\",u,\\\"]>2){dst.set(\\\",s.join(),\\\",\\\",u,\\\",0.5*(src.get(\\\",p.join(),\\\")-src.get(\\\",g.join(),\\\")))}else{dst.set(\\\",s.join(),\\\",\\\",u,\\\",0)};\\\"):a.push(\\\"if(s[\\\",u,\\\"]>2){diff(\\\",h,\\\",src.pick(\\\",p.join(),\\\")\\\",c,\\\",src.pick(\\\",g.join(),\\\")\\\",c,\\\");}else{zero(\\\",h,\\\");};\\\");break;default:throw new Error(\\\"ndarray-gradient: Invalid boundary condition\\\")}}r>0&&a.push(\\\"};\\\")}var r=t.join(),i=c[r];if(i)return i;for(var o=t.length,a=[\\\"function gradient(dst,src){var s=src.shape.slice();\\\"],s=0;1<<o>s;++s){for(var u=[],d=0;o>d;++d)s&1<<d&&u.push(d+1);for(var p=0;p<1<<u.length;++p){for(var g=u.slice(),d=0;d<u.length;++d)p&1<<d&&(g[d]=-g[d]);e(g)}}a.push(\\\"return dst;};return gradient\\\");for(var v=[\\\"diff\\\",\\\"zero\\\"],m=[h,f],s=1;o>=s;++s)v.push(\\\"grad\\\"+s),m.push(n(s));v.push(a.join(\\\"\\\"));var y=Function.apply(void 0,v),i=y.apply(void 0,m);return l[r]=i,i}function o(t,e,r){if(Array.isArray(r)){if(r.length!==e.dimension)throw new Error(\\\"ndarray-gradient: invalid boundary conditions\\\")}else r=\\\"string\\\"==typeof r?a(e.dimension,r):a(e.dimension,\\\"clamp\\\");if(t.dimension!==e.dimension+1)throw new Error(\\\"ndarray-gradient: output dimension must be +1 input dimension\\\");if(t.shape[e.dimension]!==e.dimension)throw new Error(\\\"ndarray-gradient: output shape must match input shape\\\");for(var n=0;n<e.dimension;++n)if(t.shape[n]!==e.shape[n])throw new Error(\\\"ndarray-gradient: shape mismatch\\\");if(0===e.size)return t;if(e.dimension<=0)return t.set(0),t;var o=i(r);return o(t,e)}e.exports=o;var a=t(\\\"dup\\\"),s=t(\\\"cwise-compiler\\\"),l={},c={},u={body:\\\"\\\",args:[],thisVars:[],localVars:[]},h=s({args:[\\\"array\\\",\\\"array\\\",\\\"array\\\"],pre:u,post:u,body:{args:[{name:\\\"out\\\",lvalue:!0,rvalue:!1,count:1},{name:\\\"left\\\",lvalue:!1,rvalue:!0,count:1},{name:\\\"right\\\",lvalue:!1,rvalue:!0,count:1}],body:\\\"out=0.5*(left-right)\\\",thisVars:[],localVars:[]},funcName:\\\"cdiff\\\"}),f=s({args:[\\\"array\\\"],pre:u,post:u,body:{args:[{name:\\\"out\\\",lvalue:!0,rvalue:!1,count:1}],body:\\\"out=0\\\",thisVars:[],localVars:[]},funcName:\\\"zero\\\"})},{\\\"cwise-compiler\\\":66,dup:72}],177:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"ndarray\\\"),i=t(\\\"./doConvert.js\\\");e.exports=function(t,e){for(var r=[],o=t,a=1;o instanceof Array;)r.push(o.length),a*=o.length,o=o[0];return 0===r.length?n():(e||(e=n(new Float64Array(a),r)),i(e,t),e)}},{\\\"./doConvert.js\\\":178,ndarray:210}],178:[function(t,e,r){e.exports=t(\\\"cwise-compiler\\\")({args:[\\\"array\\\",\\\"scalar\\\",\\\"index\\\"],pre:{body:\\\"{}\\\",args:[],thisVars:[],localVars:[]},body:{body:\\\"{\\\\nvar _inline_1_v=_inline_1_arg1_,_inline_1_i\\\\nfor(_inline_1_i=0;_inline_1_i<_inline_1_arg2_.length-1;++_inline_1_i) {\\\\n_inline_1_v=_inline_1_v[_inline_1_arg2_[_inline_1_i]]\\\\n}\\\\n_inline_1_arg0_=_inline_1_v[_inline_1_arg2_[_inline_1_arg2_.length-1]]\\\\n}\\\",args:[{name:\\\"_inline_1_arg0_\\\",lvalue:!0,rvalue:!1,count:1},{name:\\\"_inline_1_arg1_\\\",lvalue:!1,rvalue:!0,count:1},{name:\\\"_inline_1_arg2_\\\",lvalue:!1,rvalue:!0,count:4}],thisVars:[],localVars:[\\\"_inline_1_i\\\",\\\"_inline_1_v\\\"]},post:{body:\\\"{}\\\",args:[],thisVars:[],localVars:[]},funcName:\\\"convert\\\",blockSize:64})},{\\\"cwise-compiler\\\":66}],179:[function(t,e,r){\\\"use strict\\\";function n(t,e,r,n,i){this.position=t,this.index=e,this.uv=r,this.level=n,this.dataCoordinate=i}function i(t){var e=x([y({colormap:t,nshades:N,format:\\\"rgba\\\"}).map(function(t){return[t[0],t[1],t[2],255*t[3]]})]);return b.divseq(e,255),e}function o(t,e,r,i,o,a,s,l,c,u,h,f,d,p){this.gl=t,this.shape=e,this.bounds=r,this.intensityBounds=[],this._shader=i,this._pickShader=o,this._coordinateBuffer=a,this._vao=s,this._colorMap=l,this._contourShader=c,this._contourPickShader=u,this._contourBuffer=h,this._contourVAO=f,this._contourOffsets=[[],[],[]],this._contourCounts=[[],[],[]],this._vertexCount=0,this._pickResult=new n([0,0,0],[0,0],[0,0],[0,0,0],[0,0,0]),this._dynamicBuffer=d,this._dynamicVAO=p,this._dynamicOffsets=[0,0,0],this._dynamicCounts=[0,0,0],this.contourWidth=[1,1,1],this.contourLevels=[[1],[1],[1]],this.contourTint=[0,0,0],this.contourColor=[[.5,.5,.5,1],[.5,.5,.5,1],[.5,.5,.5,1]],this.showContour=!0,this.showSurface=!0,this.enableHighlight=[!0,!0,!0],this.highlightColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.highlightTint=[1,1,1],this.highlightLevel=[-1,-1,-1],this.enableDynamic=[!0,!0,!0],this.dynamicLevel=[NaN,NaN,NaN],this.dynamicColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.dynamicTint=[1,1,1],this.dynamicWidth=[1,1,1],this.axesBounds=[[1/0,1/0,1/0],[-(1/0),-(1/0),-(1/0)]],this.surfaceProject=[!1,!1,!1],this.contourProject=[[!1,!1,!1],[!1,!1,!1],[!1,!1,!1]],this.colorBounds=[!1,!1],this._field=[_(m.mallocFloat(1024),[0,0]),_(m.mallocFloat(1024),[0,0]),_(m.mallocFloat(1024),[0,0])],this.pickId=1,this.clipBounds=[[-(1/0),-(1/0),-(1/0)],[1/0,1/0,1/0]],this.snapToData=!1,this.opacity=1,this.lightPosition=[10,1e4,0],this.ambientLight=.8,this.diffuseLight=.8,this.specularLight=2,this.roughness=.5,this.fresnel=1.5,this.dirty=!0}function a(t,e){var r,n,i,o=e.axes&&e.axes.lastCubeProps.axis||F,a=e.showSurface,s=e.showContour;for(r=0;3>r;++r)for(a=a||e.surfaceProject[r],n=0;3>n;++n)s=s||e.contourProject[r][n];for(r=0;3>r;++r){var l=D.projections[r];for(n=0;16>n;++n)l[n]=0;for(n=0;4>n;++n)l[5*n]=1;l[5*r]=0,l[12+r]=e.axesBounds[+(o[r]>0)][r],A(l,t.model,l);var c=D.clipBounds[r];for(i=0;2>i;++i)for(n=0;3>n;++n)c[i][n]=t.clipBounds[i][n];c[0][r]=-1e8,c[1][r]=1e8}return D.showSurface=a,D.showContour=s,D}function s(t,e){t=t||{};var r=this.gl;r.disable(r.CULL_FACE),this._colorMap.bind(0);var n=B;n.model=t.model||R,n.view=t.view||R,n.projection=t.projection||R,n.lowerBound=[this.bounds[0][0],this.bounds[0][1],this.colorBounds[0]||this.bounds[0][2]],n.upperBound=[this.bounds[1][0],this.bounds[1][1],this.colorBounds[1]||this.bounds[1][2]],n.contourColor=this.contourColor[0],n.inverseModel=k(n.inverseModel,n.model);for(var i=0;2>i;++i)for(var o=n.clipBounds[i],s=0;3>s;++s)o[s]=Math.min(Math.max(this.clipBounds[i][s],-1e8),1e8);n.kambient=this.ambientLight,n.kdiffuse=this.diffuseLight,n.kspecular=this.specularLight,n.roughness=this.roughness,n.fresnel=this.fresnel,n.opacity=this.opacity,n.height=0,n.permutation=V;var l=U;for(A(l,n.view,n.model),A(l,n.projection,l),k(l,l),i=0;3>i;++i)n.eyePosition[i]=l[12+i]/l[15];var c=l[15];for(i=0;3>i;++i)c+=this.lightPosition[i]*l[4*i+3];for(i=0;3>i;++i){var u=l[12+i];for(s=0;3>s;++s)u+=l[4*s+i]*this.lightPosition[s];n.lightPosition[i]=u/c}var h=a(n,this);if(h.showSurface&&e===this.opacity<1){for(this._shader.bind(),this._shader.uniforms=n,this._vao.bind(),this.showSurface&&this._vertexCount&&this._vao.draw(r.TRIANGLES,this._vertexCount),i=0;3>i;++i)this.surfaceProject[i]&&this.vertexCount&&(this._shader.uniforms.model=h.projections[i],this._shader.uniforms.clipBounds=h.clipBounds[i],this._vao.draw(r.TRIANGLES,this._vertexCount));this._vao.unbind()}if(h.showContour&&!e){var f=this._contourShader;n.kambient=1,n.kdiffuse=0,n.kspecular=0,n.opacity=1,f.bind(),f.uniforms=n;var d=this._contourVAO;for(d.bind(),i=0;3>i;++i)for(f.uniforms.permutation=I[i],r.lineWidth(this.contourWidth[i]),s=0;s<this.contourLevels[i].length;++s)this._contourCounts[i][s]&&(s===this.highlightLevel[i]?(f.uniforms.contourColor=this.highlightColor[i],f.uniforms.contourTint=this.highlightTint[i]):0!==s&&s-1!==this.highlightLevel[i]||(f.uniforms.contourColor=this.contourColor[i],f.uniforms.contourTint=this.contourTint[i]),f.uniforms.height=this.contourLevels[i][s],d.draw(r.LINES,this._contourCounts[i][s],this._contourOffsets[i][s]));for(i=0;3>i;++i)for(f.uniforms.model=h.projections[i],f.uniforms.clipBounds=h.clipBounds[i],s=0;3>s;++s)if(this.contourProject[i][s]){f.uniforms.permutation=I[s],r.lineWidth(this.contourWidth[s]);for(var p=0;p<this.contourLevels[s].length;++p)p===this.highlightLevel[s]?(f.uniforms.contourColor=this.highlightColor[s],f.uniforms.contourTint=this.highlightTint[s]):0!==p&&p-1!==this.highlightLevel[s]||(f.uniforms.contourColor=this.contourColor[s],f.uniforms.contourTint=this.contourTint[s]),f.uniforms.height=this.contourLevels[s][p],d.draw(r.LINES,this._contourCounts[s][p],this._contourOffsets[s][p])}for(d=this._dynamicVAO,d.bind(),i=0;3>i;++i)if(0!==this._dynamicCounts[i])for(f.uniforms.model=n.model,f.uniforms.clipBounds=n.clipBounds,f.uniforms.permutation=I[i],r.lineWidth(this.dynamicWidth[i]),f.uniforms.contourColor=this.dynamicColor[i],f.uniforms.contourTint=this.dynamicTint[i],f.uniforms.height=this.dynamicLevel[i],d.draw(r.LINES,this._dynamicCounts[i],this._dynamicOffsets[i]),s=0;3>s;++s)this.contourProject[s][i]&&(f.uniforms.model=h.projections[s],f.uniforms.clipBounds=h.clipBounds[s],d.draw(r.LINES,this._dynamicCounts[i],this._dynamicOffsets[i]));d.unbind()}}function l(t,e){var r=e.shape.slice(),n=t.shape.slice();b.assign(t.lo(1,1).hi(r[0],r[1]),e),b.assign(t.lo(1).hi(r[0],1),e.hi(r[0],1)),b.assign(t.lo(1,n[1]-1).hi(r[0],1),e.lo(0,r[1]-1).hi(r[0],1)),b.assign(t.lo(0,1).hi(1,r[1]),e.hi(1)),b.assign(t.lo(n[0]-1,1).hi(1,r[1]),e.lo(r[0]-1)),t.set(0,0,e.get(0,0)),t.set(0,n[1]-1,e.get(0,r[1]-1)),t.set(n[0]-1,0,e.get(r[0]-1,0)),t.set(n[0]-1,n[1]-1,e.get(r[0]-1,r[1]-1))}function c(t,e){return Array.isArray(t)?[e(t[0]),e(t[1]),e(t[2])]:[e(t),e(t),e(t)]}function u(t){return Array.isArray(t)?3===t.length?[t[0],t[1],t[2],1]:[t[0],t[1],t[2],t[3]]:[0,0,0,1]}function h(t){if(Array.isArray(t)){if(Array.isArray(t))return[u(t[0]),u(t[1]),u(t[2])];var e=u(t);return[e.slice(),e.slice(),e.slice()]}}function f(t){var e=t.gl,r=L(e),n=C(e),i=S(e),a=P(e),s=p(e),l=g(e,[{buffer:s,size:4,stride:z,offset:0},{buffer:s,size:3,stride:z,offset:16},{buffer:s,size:3,stride:z,offset:28}]),c=p(e),u=g(e,[{buffer:c,size:4,stride:20,offset:0},{buffer:c,size:1,stride:20,offset:16}]),h=p(e),f=g(e,[{buffer:h,size:2,type:e.FLOAT}]),d=v(e,1,N,e.RGBA,e.UNSIGNED_BYTE);d.minFilter=e.LINEAR,d.magFilter=e.LINEAR;var m=new o(e,[0,0],[[0,0,0],[0,0,0]],r,n,s,l,d,i,a,c,u,h,f),y={levels:[[],[],[]]};for(var b in t)y[b]=t[b];return y.colormap=y.colormap||\\\"jet\\\",m.update(y),m}e.exports=f;var d=t(\\\"bit-twiddle\\\"),p=t(\\\"gl-buffer\\\"),g=t(\\\"gl-vao\\\"),v=t(\\\"gl-texture2d\\\"),m=t(\\\"typedarray-pool\\\"),y=t(\\\"colormap\\\"),b=t(\\\"ndarray-ops\\\"),x=t(\\\"ndarray-pack\\\"),_=t(\\\"ndarray\\\"),w=t(\\\"surface-nets\\\"),A=t(\\\"gl-mat4/multiply\\\"),k=t(\\\"gl-mat4/invert\\\"),M=t(\\\"binary-search-bounds\\\"),T=t(\\\"ndarray-gradient\\\"),E=t(\\\"./lib/shaders\\\"),L=E.createShader,S=E.createContourShader,C=E.createPickShader,P=E.createPickContourShader,z=40,R=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],O=[[0,0],[0,1],[1,0],[1,1],[1,0],[0,1]],I=[[0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0]];!function(){for(var t=0;3>t;++t){var e=I[t],r=(t+1)%3,n=(t+2)%3;e[r+0]=1,e[n+3]=1,e[t+6]=1}}();var N=265,j=o.prototype;j.isTransparent=function(){return this.opacity<1},j.isOpaque=function(){if(this.opacity>=1)return!0;for(var t=0;3>t;++t)if(this._contourCounts[t].length>0||this._dynamicCounts[t]>0)return!0;return!1},j.pickSlots=1,j.setPickBase=function(t){this.pickId=t};var F=[0,0,0],D={showSurface:!1,showContour:!1,projections:[R.slice(),R.slice(),R.slice()],clipBounds:[[[0,0,0],[0,0,0]],[[0,0,0],[0,0,0]],[[0,0,0],[0,0,0]]]},B={model:R,view:R,projection:R,inverseModel:R.slice(),lowerBound:[0,0,0],upperBound:[0,0,0],colorMap:0,clipBounds:[[0,0,0],[0,0,0]],height:0,contourTint:0,contourColor:[0,0,0,1],permutation:[1,0,0,0,1,0,0,0,1],zOffset:-1e-4,kambient:1,kdiffuse:1,kspecular:1,lightPosition:[1e3,1e3,1e3],eyePosition:[0,0,0],roughness:1,fresnel:1,opacity:1},U=R.slice(),V=[1,0,0,0,1,0,0,0,1];j.draw=function(t){return s.call(this,t,!1)},j.drawTransparent=function(t){return s.call(this,t,!0)};var q={model:R,view:R,projection:R,inverseModel:R,clipBounds:[[0,0,0],[0,0,0]],height:0,shape:[0,0],pickId:0,lowerBound:[0,0,0],upperBound:[0,0,0],zOffset:0,permutation:[1,0,0,0,1,0,0,0,1],lightPosition:[0,0,0],eyePosition:[0,0,0]};j.drawPick=function(t){t=t||{};var e=this.gl;e.disable(e.CULL_FACE);var r=q;r.model=t.model||R,r.view=t.view||R,r.projection=t.projection||R,r.shape=this._field[2].shape,r.pickId=this.pickId/255,r.lowerBound=this.bounds[0],r.upperBound=this.bounds[1],r.permutation=V;for(var n=0;2>n;++n)for(var i=r.clipBounds[n],o=0;3>o;++o)i[o]=Math.min(Math.max(this.clipBounds[n][o],-1e8),1e8);var s=a(r,this);if(s.showSurface){for(this._pickShader.bind(),this._pickShader.uniforms=r,this._vao.bind(),this._vao.draw(e.TRIANGLES,this._vertexCount),n=0;3>n;++n)this.surfaceProject[n]&&(this._pickShader.uniforms.model=s.projections[n],this._pickShader.uniforms.clipBounds=s.clipBounds[n],this._vao.draw(e.TRIANGLES,this._vertexCount));this._vao.unbind()}if(s.showContour){var l=this._contourPickShader;l.bind(),l.uniforms=r;var c=this._contourVAO;for(c.bind(),o=0;3>o;++o)for(e.lineWidth(this.contourWidth[o]),l.uniforms.permutation=I[o],n=0;n<this.contourLevels[o].length;++n)this._contourCounts[o][n]&&(l.uniforms.height=this.contourLevels[o][n],c.draw(e.LINES,this._contourCounts[o][n],this._contourOffsets[o][n]));for(n=0;3>n;++n)for(l.uniforms.model=s.projections[n],l.uniforms.clipBounds=s.clipBounds[n],o=0;3>o;++o)if(this.contourProject[n][o]){l.uniforms.permutation=I[o],e.lineWidth(this.contourWidth[o]);for(var u=0;u<this.contourLevels[o].length;++u)this._contourCounts[o][u]&&(l.uniforms.height=this.contourLevels[o][u],c.draw(e.LINES,this._contourCounts[o][u],this._contourOffsets[o][u]))}c.unbind()}},j.pick=function(t){if(!t)return null;if(t.id!==this.pickId)return null;var e=this._field[2].shape,r=this._pickResult,n=e[0]*(t.value[0]+(t.value[2]>>4)/16)/255,i=Math.floor(n),o=n-i,a=e[1]*(t.value[1]+(15&t.value[2])/16)/255,s=Math.floor(a),l=a-s;i+=1,s+=1;var c=r.position;c[0]=c[1]=c[2]=0;for(var u=0;2>u;++u)for(var h=u?o:1-o,f=0;2>f;++f)for(var d=f?l:1-l,p=i+u,g=s+f,v=h*d,m=0;3>m;++m)c[m]+=this._field[m].get(p,g)*v;for(var y=this._pickResult.level,b=0;3>b;++b)if(y[b]=M.le(this.contourLevels[b],c[b]),y[b]<0)this.contourLevels[b].length>0&&(y[b]=0);else if(y[b]<this.contourLevels[b].length-1){var x=this.contourLevels[b][y[b]],_=this.contourLevels[b][y[b]+1];Math.abs(x-c[b])>Math.abs(_-c[b])&&(y[b]+=1)}for(r.index[0]=.5>o?i:i+1,r.index[1]=.5>l?s:s+1,r.uv[0]=n/e[0],r.uv[1]=a/e[1],m=0;3>m;++m)r.dataCoordinate[m]=this._field[m].get(r.index[0],r.index[1]);return r},j.update=function(t){t=t||{},this.dirty=!0,\\\"contourWidth\\\"in t&&(this.contourWidth=c(t.contourWidth,Number)),\\\"showContour\\\"in t&&(this.showContour=c(t.showContour,Boolean)),\\\"showSurface\\\"in t&&(this.showSurface=!!t.showSurface),\\\"contourTint\\\"in t&&(this.contourTint=c(t.contourTint,Boolean)),\\\"contourColor\\\"in t&&(this.contourColor=h(t.contourColor)),\\\"contourProject\\\"in t&&(this.contourProject=c(t.contourProject,function(t){return c(t,Boolean)})),\\\"surfaceProject\\\"in t&&(this.surfaceProject=t.surfaceProject),\\\"dynamicColor\\\"in t&&(this.dynamicColor=h(t.dynamicColor)),\\\"dynamicTint\\\"in t&&(this.dynamicTint=c(t.dynamicTint,Number)),\\\"dynamicWidth\\\"in t&&(this.dynamicWidth=c(t.dynamicWidth,Number)),\\\"opacity\\\"in t&&(this.opacity=t.opacity),\\\"colorBounds\\\"in t&&(this.colorBounds=t.colorBounds);var e=t.field||t.coords&&t.coords[2]||null,r=!1;if(e||(e=this._field[2].shape[0]||this._field[2].shape[2]?this._field[2].lo(1,1).hi(this._field[2].shape[0]-2,this._field[2].shape[1]-2):this._field[2].hi(0,0)),\\\"field\\\"in t||\\\"coords\\\"in t){var n=(e.shape[0]+2)*(e.shape[1]+2);n>this._field[2].data.length&&(m.freeFloat(this._field[2].data),this._field[2].data=m.mallocFloat(d.nextPow2(n))),this._field[2]=_(this._field[2].data,[e.shape[0]+2,e.shape[1]+2]),l(this._field[2],e),this.shape=e.shape.slice();for(var o=this.shape,a=0;2>a;++a)this._field[2].size>this._field[a].data.length&&(m.freeFloat(this._field[a].data),this._field[a].data=m.mallocFloat(this._field[2].size)),this._field[a]=_(this._field[a].data,[o[0]+2,o[1]+2]);if(t.coords){var s=t.coords;if(!Array.isArray(s)||3!==s.length)throw new Error(\\\"gl-surface: invalid coordinates for x/y\\\");for(a=0;2>a;++a){var u=s[a];for(y=0;2>y;++y)if(u.shape[y]!==o[y])throw new Error(\\\"gl-surface: coords have incorrect shape\\\");l(this._field[a],u)}}else if(t.ticks){var f=t.ticks;if(!Array.isArray(f)||2!==f.length)throw new Error(\\\"gl-surface: invalid ticks\\\");for(a=0;2>a;++a){var p=f[a];if((Array.isArray(p)||p.length)&&(p=_(p)),p.shape[0]!==o[a])throw new Error(\\\"gl-surface: invalid tick length\\\");var g=_(p.data,o);g.stride[a]=p.stride[0],g.stride[1^a]=0,l(this._field[a],g)}}else{for(a=0;2>a;++a){var v=[0,0];v[a]=1,this._field[a]=_(this._field[a].data,[o[0]+2,o[1]+2],v,0)}this._field[0].set(0,0,0);for(var y=0;y<o[0];++y)this._field[0].set(y+1,0,y);for(this._field[0].set(o[0]+1,0,o[0]-1),this._field[1].set(0,0,0),y=0;y<o[1];++y)this._field[1].set(0,y+1,y);this._field[1].set(0,o[1]+1,o[1]-1)}var b=this._field,x=_(m.mallocFloat(3*b[2].size*2),[3,o[0]+2,o[1]+2,2]);for(a=0;3>a;++a)T(x.pick(a),b[a],\\\"mirror\\\");var A=_(m.mallocFloat(3*b[2].size),[o[0]+2,o[1]+2,3]);for(a=0;a<o[0]+2;++a)for(y=0;y<o[1]+2;++y){var k=x.get(0,a,y,0),M=x.get(0,a,y,1),E=x.get(1,a,y,0),L=x.get(1,a,y,1),S=x.get(2,a,y,0),C=x.get(2,a,y,1),P=E*C-L*S,z=S*M-C*k,R=k*L-M*E,I=Math.sqrt(P*P+z*z+R*R);1e-8>I?(I=Math.max(Math.abs(P),Math.abs(z),Math.abs(R)),1e-8>I?(R=1,z=P=0,I=1):I=1/I):I=1/Math.sqrt(I),A.set(a,y,0,P*I),A.set(a,y,1,z*I),A.set(a,y,2,R*I)}m.free(x.data);var N=[1/0,1/0,1/0],j=[-(1/0),-(1/0),-(1/0)],F=1/0,D=-(1/0),B=(o[0]-1)*(o[1]-1)*6,U=m.mallocFloat(d.nextPow2(10*B)),V=0,q=0;for(a=0;a<o[0]-1;++a)t:for(y=0;y<o[1]-1;++y){for(var H=0;2>H;++H)for(var G=0;2>G;++G)for(var Y=0;3>Y;++Y){var X=this._field[Y].get(1+a+H,1+y+G);if(isNaN(X)||!isFinite(X))continue t}for(Y=0;6>Y;++Y){var W=a+O[Y][0],Z=y+O[Y][1],$=this._field[0].get(W+1,Z+1),K=this._field[1].get(W+1,Z+1);X=this._field[2].get(W+1,Z+1);var Q=X;P=A.get(W+1,Z+1,0),z=A.get(W+1,Z+1,1),R=A.get(W+1,Z+1,2),t.intensity&&(Q=t.intensity.get(W,Z)),U[V++]=W,U[V++]=Z,U[V++]=$,U[V++]=K,U[V++]=X,U[V++]=0,U[V++]=Q,U[V++]=P,U[V++]=z,U[V++]=R,N[0]=Math.min(N[0],$),N[1]=Math.min(N[1],K),N[2]=Math.min(N[2],X),F=Math.min(F,Q),j[0]=Math.max(j[0],$),j[1]=Math.max(j[1],K),j[2]=Math.max(j[2],X),D=Math.max(D,Q),q+=1}}for(t.intensityBounds&&(F=+t.intensityBounds[0],D=+t.intensityBounds[1]),a=6;V>a;a+=10)U[a]=(U[a]-F)/(D-F);this._vertexCount=q,this._coordinateBuffer.update(U.subarray(0,V)),m.freeFloat(U),m.free(A.data),this.bounds=[N,j],this.intensity=t.intensity||this._field[2],this.intensityBounds[0]===F&&this.intensityBounds[1]===D||(r=!0),this.intensityBounds=[F,D]}if(\\\"levels\\\"in t){var J=t.levels;for(J=Array.isArray(J[0])?J.slice():[[],[],J],a=0;3>a;++a)J[a]=J[a].slice(),J.sort(function(t,e){return t-e});t:for(a=0;3>a;++a){if(J[a].length!==this.contourLevels[a].length){r=!0;break}for(y=0;y<J[a].length;++y)if(J[a][y]!==this.contourLevels[a][y]){r=!0;break t}}this.contourLevels=J}if(r){b=this._field,o=this.shape;for(var tt=[],et=0;3>et;++et){J=this.contourLevels[et];var rt=[],nt=[],it=[0,0,0];for(a=0;a<J.length;++a){var ot=w(this._field[et],J[a]);rt.push(tt.length/5|0),q=0;t:for(y=0;y<ot.cells.length;++y){var at=ot.cells[y];for(Y=0;2>Y;++Y){var st=ot.positions[at[Y]],lt=st[0],ct=0|Math.floor(lt),ut=lt-ct,ht=st[1],ft=0|Math.floor(ht),dt=ht-ft,pt=!1;e:for(var gt=0;3>gt;++gt){it[gt]=0;var vt=(et+gt+1)%3;for(H=0;2>H;++H){var mt=H?ut:1-ut;for(W=0|Math.min(Math.max(ct+H,0),o[0]),G=0;2>G;++G){var yt=G?dt:1-dt;if(Z=0|Math.min(Math.max(ft+G,0),o[1]),X=2>gt?this._field[vt].get(W,Z):(this.intensity.get(W,Z)-this.intensityBounds[0])/(this.intensityBounds[1]-this.intensityBounds[0]),!isFinite(X)||isNaN(X)){pt=!0;break e}var bt=mt*yt;it[gt]+=bt*X}}}if(pt){if(Y>0){for(var xt=0;5>xt;++xt)tt.pop();q-=1}continue t}tt.push(it[0],it[1],st[0],st[1],it[2]),q+=1}}nt.push(q)}this._contourOffsets[et]=rt,this._contourCounts[et]=nt}var _t=m.mallocFloat(tt.length);for(a=0;a<tt.length;++a)_t[a]=tt[a];this._contourBuffer.update(_t),m.freeFloat(_t)}t.colormap&&this._colorMap.setPixels(i(t.colormap))},j.dispose=function(){this._shader.dispose(),this._vao.dispose(),this._coordinateBuffer.dispose(),this._colorMap.dispose(),this._contourBuffer.dispose(),this._contourVAO.dispose(),this._contourShader.dispose(),this._contourPickShader.dispose(),this._dynamicBuffer.dispose(),this._dynamicVAO.dispose();for(var t=0;3>t;++t)m.freeFloat(this._field[t].data)},j.highlight=function(t){if(!t)return this._dynamicCounts=[0,0,0],this.dyanamicLevel=[NaN,NaN,NaN],void(this.highlightLevel=[-1,-1,-1]);for(var e=0;3>e;++e)this.enableHighlight[e]?this.highlightLevel[e]=t.level[e]:this.highlightLevel[e]=-1;var r;if(r=this.snapToData?t.dataCoordinate:t.position,this.enableDynamic[0]&&r[0]!==this.dynamicLevel[0]||this.enableDynamic[1]&&r[1]!==this.dynamicLevel[1]||this.enableDynamic[2]&&r[2]!==this.dynamicLevel[2]){\\n\",\n       \"for(var n=0,i=this.shape,o=m.mallocFloat(12*i[0]*i[1]),a=0;3>a;++a)if(this.enableDynamic[a]){this.dynamicLevel[a]=r[a];var s=(a+1)%3,l=(a+2)%3,c=this._field[a],u=this._field[s],h=this._field[l],f=(this.intensity,w(c,r[a])),d=f.cells,p=f.positions;for(this._dynamicOffsets[a]=n,e=0;e<d.length;++e)for(var g=d[e],v=0;2>v;++v){var y=p[g[v]],b=+y[0],x=0|b,_=0|Math.min(x+1,i[0]),A=b-x,k=1-A,M=+y[1],T=0|M,E=0|Math.min(T+1,i[1]),L=M-T,S=1-L,C=k*S,P=k*L,z=A*S,R=A*L,O=C*u.get(x,T)+P*u.get(x,E)+z*u.get(_,T)+R*u.get(_,E),I=C*h.get(x,T)+P*h.get(x,E)+z*h.get(_,T)+R*h.get(_,E);if(isNaN(O)||isNaN(I)){v&&(n-=1);break}o[2*n+0]=O,o[2*n+1]=I,n+=1}this._dynamicCounts[a]=n-this._dynamicOffsets[a]}else this.dynamicLevel[a]=NaN,this._dynamicCounts[a]=0;this._dynamicBuffer.update(o.subarray(0,2*n)),m.freeFloat(o)}}},{\\\"./lib/shaders\\\":174,\\\"binary-search-bounds\\\":175,\\\"bit-twiddle\\\":49,colormap:57,\\\"gl-buffer\\\":75,\\\"gl-mat4/invert\\\":94,\\\"gl-mat4/multiply\\\":96,\\\"gl-texture2d\\\":180,\\\"gl-vao\\\":184,ndarray:210,\\\"ndarray-gradient\\\":176,\\\"ndarray-ops\\\":209,\\\"ndarray-pack\\\":177,\\\"surface-nets\\\":229,\\\"typedarray-pool\\\":235}],180:[function(t,e,r){\\\"use strict\\\";function n(t){v=[t.LINEAR,t.NEAREST_MIPMAP_LINEAR,t.LINEAR_MIPMAP_NEAREST,t.LINEAR_MIPMAP_NEAREST],m=[t.NEAREST,t.LINEAR,t.NEAREST_MIPMAP_NEAREST,t.NEAREST_MIPMAP_LINEAR,t.LINEAR_MIPMAP_NEAREST,t.LINEAR_MIPMAP_LINEAR],y=[t.REPEAT,t.CLAMP_TO_EDGE,t.MIRRORED_REPEAT]}function i(t,e,r){var n=t.gl,i=n.getParameter(n.MAX_TEXTURE_SIZE);if(0>e||e>i||0>r||r>i)throw new Error(\\\"gl-texture2d: Invalid texture size\\\");return t._shape=[e,r],t.bind(),n.texImage2D(n.TEXTURE_2D,0,t.format,e,r,0,t.format,t.type,null),t._mipLevels=[0],t}function o(t,e,r,n,i,o){this.gl=t,this.handle=e,this.format=i,this.type=o,this._shape=[r,n],this._mipLevels=[0],this._magFilter=t.NEAREST,this._minFilter=t.NEAREST,this._wrapS=t.CLAMP_TO_EDGE,this._wrapT=t.CLAMP_TO_EDGE,this._anisoSamples=1;var a=this,s=[this._wrapS,this._wrapT];Object.defineProperties(s,[{get:function(){return a._wrapS},set:function(t){return a.wrapS=t}},{get:function(){return a._wrapT},set:function(t){return a.wrapT=t}}]),this._wrapVector=s;var l=[this._shape[0],this._shape[1]];Object.defineProperties(l,[{get:function(){return a._shape[0]},set:function(t){return a.width=t}},{get:function(){return a._shape[1]},set:function(t){return a.height=t}}]),this._shapeVector=l}function a(t,e){return 3===t.length?1===e[2]&&e[1]===t[0]*t[2]&&e[0]===t[2]:1===e[0]&&e[1]===t[0]}function s(t,e,r,n,i,o,s,l){var c=l.dtype,u=l.shape.slice();if(u.length<2||u.length>3)throw new Error(\\\"gl-texture2d: Invalid ndarray, must be 2d or 3d\\\");var h=0,f=0,v=a(u,l.stride.slice());\\\"float32\\\"===c?h=t.FLOAT:\\\"float64\\\"===c?(h=t.FLOAT,v=!1,c=\\\"float32\\\"):\\\"uint8\\\"===c?h=t.UNSIGNED_BYTE:(h=t.UNSIGNED_BYTE,v=!1,c=\\\"uint8\\\");var m=1;if(2===u.length)f=t.LUMINANCE,u=[u[0],u[1],1],l=d(l.data,u,[l.stride[0],l.stride[1],1],l.offset);else{if(3!==u.length)throw new Error(\\\"gl-texture2d: Invalid shape for texture\\\");if(1===u[2])f=t.ALPHA;else if(2===u[2])f=t.LUMINANCE_ALPHA;else if(3===u[2])f=t.RGB;else{if(4!==u[2])throw new Error(\\\"gl-texture2d: Invalid shape for pixel coords\\\");f=t.RGBA}m=u[2]}if(f!==t.LUMINANCE&&f!==t.ALPHA||i!==t.LUMINANCE&&i!==t.ALPHA||(f=i),f!==i)throw new Error(\\\"gl-texture2d: Incompatible texture format for setPixels\\\");var y=l.size,x=s.indexOf(n)<0;if(x&&s.push(n),h===o&&v)0===l.offset&&l.data.length===y?x?t.texImage2D(t.TEXTURE_2D,n,i,u[0],u[1],0,i,o,l.data):t.texSubImage2D(t.TEXTURE_2D,n,e,r,u[0],u[1],i,o,l.data):x?t.texImage2D(t.TEXTURE_2D,n,i,u[0],u[1],0,i,o,l.data.subarray(l.offset,l.offset+y)):t.texSubImage2D(t.TEXTURE_2D,n,e,r,u[0],u[1],i,o,l.data.subarray(l.offset,l.offset+y));else{var _;_=o===t.FLOAT?g.mallocFloat32(y):g.mallocUint8(y);var w=d(_,u,[u[2],u[2]*u[0],1]);h===t.FLOAT&&o===t.UNSIGNED_BYTE?b(w,l):p.assign(w,l),x?t.texImage2D(t.TEXTURE_2D,n,i,u[0],u[1],0,i,o,_.subarray(0,y)):t.texSubImage2D(t.TEXTURE_2D,n,e,r,u[0],u[1],i,o,_.subarray(0,y)),o===t.FLOAT?g.freeFloat32(_):g.freeUint8(_)}}function l(t){var e=t.createTexture();return t.bindTexture(t.TEXTURE_2D,e),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_MIN_FILTER,t.NEAREST),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_MAG_FILTER,t.NEAREST),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_WRAP_S,t.CLAMP_TO_EDGE),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_WRAP_T,t.CLAMP_TO_EDGE),e}function c(t,e,r,n,i){var a=t.getParameter(t.MAX_TEXTURE_SIZE);if(0>e||e>a||0>r||r>a)throw new Error(\\\"gl-texture2d: Invalid texture shape\\\");if(i===t.FLOAT&&!t.getExtension(\\\"OES_texture_float\\\"))throw new Error(\\\"gl-texture2d: Floating point textures not supported on this platform\\\");var s=l(t);return t.texImage2D(t.TEXTURE_2D,0,n,e,r,0,n,i,null),new o(t,s,e,r,n,i)}function u(t,e,r,n){var i=l(t);return t.texImage2D(t.TEXTURE_2D,0,r,r,n,e),new o(t,i,0|e.width,0|e.height,r,n)}function h(t,e){var r=e.dtype,n=e.shape.slice(),i=t.getParameter(t.MAX_TEXTURE_SIZE);if(n[0]<0||n[0]>i||n[1]<0||n[1]>i)throw new Error(\\\"gl-texture2d: Invalid texture size\\\");var s=a(n,e.stride.slice()),c=0;\\\"float32\\\"===r?c=t.FLOAT:\\\"float64\\\"===r?(c=t.FLOAT,s=!1,r=\\\"float32\\\"):\\\"uint8\\\"===r?c=t.UNSIGNED_BYTE:(c=t.UNSIGNED_BYTE,s=!1,r=\\\"uint8\\\");var u=0;if(2===n.length)u=t.LUMINANCE,n=[n[0],n[1],1],e=d(e.data,n,[e.stride[0],e.stride[1],1],e.offset);else{if(3!==n.length)throw new Error(\\\"gl-texture2d: Invalid shape for texture\\\");if(1===n[2])u=t.ALPHA;else if(2===n[2])u=t.LUMINANCE_ALPHA;else if(3===n[2])u=t.RGB;else{if(4!==n[2])throw new Error(\\\"gl-texture2d: Invalid shape for pixel coords\\\");u=t.RGBA}}c!==t.FLOAT||t.getExtension(\\\"OES_texture_float\\\")||(c=t.UNSIGNED_BYTE,s=!1);var h,f,v=e.size;if(s)h=0===e.offset&&e.data.length===v?e.data:e.data.subarray(e.offset,e.offset+v);else{var m=[n[2],n[2]*n[0],1];f=g.malloc(v,r);var y=d(f,n,m,0);\\\"float32\\\"!==r&&\\\"float64\\\"!==r||c!==t.UNSIGNED_BYTE?p.assign(y,e):b(y,e),h=f.subarray(0,v)}var x=l(t);return t.texImage2D(t.TEXTURE_2D,0,u,n[0],n[1],0,u,c,h),s||g.free(f),new o(t,x,n[0],n[1],u,c)}function f(t){if(arguments.length<=1)throw new Error(\\\"gl-texture2d: Missing arguments for texture2d constructor\\\");if(v||n(t),\\\"number\\\"==typeof arguments[1])return c(t,arguments[1],arguments[2],arguments[3]||t.RGBA,arguments[4]||t.UNSIGNED_BYTE);if(Array.isArray(arguments[1]))return c(t,0|arguments[1][0],0|arguments[1][1],arguments[2]||t.RGBA,arguments[3]||t.UNSIGNED_BYTE);if(\\\"object\\\"==typeof arguments[1]){var e=arguments[1];if(e instanceof HTMLCanvasElement||e instanceof HTMLImageElement||e instanceof HTMLVideoElement||e instanceof ImageData)return u(t,e,arguments[2]||t.RGBA,arguments[3]||t.UNSIGNED_BYTE);if(e.shape&&e.data&&e.stride)return h(t,e)}throw new Error(\\\"gl-texture2d: Invalid arguments for texture2d constructor\\\")}var d=t(\\\"ndarray\\\"),p=t(\\\"ndarray-ops\\\"),g=t(\\\"typedarray-pool\\\");e.exports=f;var v=null,m=null,y=null,b=function(t,e){p.muls(t,e,255)},x=o.prototype;Object.defineProperties(x,{minFilter:{get:function(){return this._minFilter},set:function(t){this.bind();var e=this.gl;if(this.type===e.FLOAT&&v.indexOf(t)>=0&&(e.getExtension(\\\"OES_texture_float_linear\\\")||(t=e.NEAREST)),m.indexOf(t)<0)throw new Error(\\\"gl-texture2d: Unknown filter mode \\\"+t);return e.texParameteri(e.TEXTURE_2D,e.TEXTURE_MIN_FILTER,t),this._minFilter=t}},magFilter:{get:function(){return this._magFilter},set:function(t){this.bind();var e=this.gl;if(this.type===e.FLOAT&&v.indexOf(t)>=0&&(e.getExtension(\\\"OES_texture_float_linear\\\")||(t=e.NEAREST)),m.indexOf(t)<0)throw new Error(\\\"gl-texture2d: Unknown filter mode \\\"+t);return e.texParameteri(e.TEXTURE_2D,e.TEXTURE_MAG_FILTER,t),this._magFilter=t}},mipSamples:{get:function(){return this._anisoSamples},set:function(t){var e=this._anisoSamples;if(this._anisoSamples=0|Math.max(t,1),e!==this._anisoSamples){var r=gl.getExtension(\\\"EXT_texture_filter_anisotropic\\\");r&&this.gl.texParameterf(this.gl.TEXTURE_2D,r.TEXTURE_MAX_ANISOTROPY_EXT,this._anisoSamples)}return this._anisoSamples}},wrapS:{get:function(){return this._wrapS},set:function(t){if(this.bind(),y.indexOf(t)<0)throw new Error(\\\"gl-texture2d: Unknown wrap mode \\\"+t);return this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_WRAP_S,t),this._wrapS=t}},wrapT:{get:function(){return this._wrapT},set:function(t){if(this.bind(),y.indexOf(t)<0)throw new Error(\\\"gl-texture2d: Unknown wrap mode \\\"+t);return this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_WRAP_T,t),this._wrapT=t}},wrap:{get:function(){return this._wrapVector},set:function(t){if(Array.isArray(t)||(t=[t,t]),2!==t.length)throw new Error(\\\"gl-texture2d: Must specify wrap mode for rows and columns\\\");for(var e=0;2>e;++e)if(y.indexOf(t[e])<0)throw new Error(\\\"gl-texture2d: Unknown wrap mode \\\"+t);this._wrapS=t[0],this._wrapT=t[1];var r=this.gl;return this.bind(),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_WRAP_S,this._wrapS),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_WRAP_T,this._wrapT),t}},shape:{get:function(){return this._shapeVector},set:function(t){if(Array.isArray(t)){if(2!==t.length)throw new Error(\\\"gl-texture2d: Invalid texture shape\\\")}else t=[0|t,0|t];return i(this,0|t[0],0|t[1]),[0|t[0],0|t[1]]}},width:{get:function(){return this._shape[0]},set:function(t){return t=0|t,i(this,t,this._shape[1]),t}},height:{get:function(){return this._shape[1]},set:function(t){return t=0|t,i(this,this._shape[0],t),t}}}),x.bind=function(t){var e=this.gl;return void 0!==t&&e.activeTexture(e.TEXTURE0+(0|t)),e.bindTexture(e.TEXTURE_2D,this.handle),void 0!==t?0|t:e.getParameter(e.ACTIVE_TEXTURE)-e.TEXTURE0},x.dispose=function(){this.gl.deleteTexture(this.handle)},x.generateMipmap=function(){this.bind(),this.gl.generateMipmap(this.gl.TEXTURE_2D);for(var t=Math.min(this._shape[0],this._shape[1]),e=0;t>0;++e,t>>>=1)this._mipLevels.indexOf(e)<0&&this._mipLevels.push(e)},x.setPixels=function(t,e,r,n){var i=this.gl;if(this.bind(),Array.isArray(e)?(n=r,r=0|e[1],e=0|e[0]):(e=e||0,r=r||0),n=n||0,t instanceof HTMLCanvasElement||t instanceof ImageData||t instanceof HTMLImageElement||t instanceof HTMLVideoElement){var o=this._mipLevels.indexOf(n)<0;o?(i.texImage2D(i.TEXTURE_2D,0,this.format,this.format,this.type,t),this._mipLevels.push(n)):i.texSubImage2D(i.TEXTURE_2D,n,e,r,this.format,this.type,t)}else{if(!(t.shape&&t.stride&&t.data))throw new Error(\\\"gl-texture2d: Unsupported data type\\\");if(t.shape.length<2||e+t.shape[1]>this._shape[1]>>>n||r+t.shape[0]>this._shape[0]>>>n||0>e||0>r)throw new Error(\\\"gl-texture2d: Texture dimensions are out of bounds\\\");s(i,e,r,n,this.format,this.type,this._mipLevels,t)}}},{ndarray:210,\\\"ndarray-ops\\\":209,\\\"typedarray-pool\\\":235}],181:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){e?e.bind():t.bindBuffer(t.ELEMENT_ARRAY_BUFFER,null);var n=0|t.getParameter(t.MAX_VERTEX_ATTRIBS);if(r){if(r.length>n)throw new Error(\\\"gl-vao: Too many vertex attributes\\\");for(var i=0;i<r.length;++i){var o=r[i];if(o.buffer){var a=o.buffer,s=o.size||4,l=o.type||t.FLOAT,c=!!o.normalized,u=o.stride||0,h=o.offset||0;a.bind(),t.enableVertexAttribArray(i),t.vertexAttribPointer(i,s,l,c,u,h)}else{if(\\\"number\\\"==typeof o)t.vertexAttrib1f(i,o);else if(1===o.length)t.vertexAttrib1f(i,o[0]);else if(2===o.length)t.vertexAttrib2f(i,o[0],o[1]);else if(3===o.length)t.vertexAttrib3f(i,o[0],o[1],o[2]);else{if(4!==o.length)throw new Error(\\\"gl-vao: Invalid vertex attribute\\\");t.vertexAttrib4f(i,o[0],o[1],o[2],o[3])}t.disableVertexAttribArray(i)}}for(;n>i;++i)t.disableVertexAttribArray(i)}else{t.bindBuffer(t.ARRAY_BUFFER,null);for(var i=0;n>i;++i)t.disableVertexAttribArray(i)}}e.exports=n},{}],182:[function(t,e,r){\\\"use strict\\\";function n(t){this.gl=t,this._elements=null,this._attributes=null,this._elementsType=t.UNSIGNED_SHORT}function i(t){return new n(t)}var o=t(\\\"./do-bind.js\\\");n.prototype.bind=function(){o(this.gl,this._elements,this._attributes)},n.prototype.update=function(t,e,r){this._elements=e,this._attributes=t,this._elementsType=r||this.gl.UNSIGNED_SHORT},n.prototype.dispose=function(){},n.prototype.unbind=function(){},n.prototype.draw=function(t,e,r){r=r||0;var n=this.gl;this._elements?n.drawElements(t,e,this._elementsType,r):n.drawArrays(t,r,e)},e.exports=i},{\\\"./do-bind.js\\\":181}],183:[function(t,e,r){\\\"use strict\\\";function n(t,e,r,n,i,o){this.location=t,this.dimension=e,this.a=r,this.b=n,this.c=i,this.d=o}function i(t,e,r){this.gl=t,this._ext=e,this.handle=r,this._attribs=[],this._useElements=!1,this._elementsType=t.UNSIGNED_SHORT}function o(t,e){return new i(t,e,e.createVertexArrayOES())}var a=t(\\\"./do-bind.js\\\");n.prototype.bind=function(t){switch(this.dimension){case 1:t.vertexAttrib1f(this.location,this.a);break;case 2:t.vertexAttrib2f(this.location,this.a,this.b);break;case 3:t.vertexAttrib3f(this.location,this.a,this.b,this.c);break;case 4:t.vertexAttrib4f(this.location,this.a,this.b,this.c,this.d)}},i.prototype.bind=function(){this._ext.bindVertexArrayOES(this.handle);for(var t=0;t<this._attribs.length;++t)this._attribs[t].bind(this.gl)},i.prototype.unbind=function(){this._ext.bindVertexArrayOES(null)},i.prototype.dispose=function(){this._ext.deleteVertexArrayOES(this.handle)},i.prototype.update=function(t,e,r){if(this.bind(),a(this.gl,e,t),this.unbind(),this._attribs.length=0,t)for(var i=0;i<t.length;++i){var o=t[i];\\\"number\\\"==typeof o?this._attribs.push(new n(i,1,o)):Array.isArray(o)&&this._attribs.push(new n(i,o.length,o[0],o[1],o[2],o[3]))}this._useElements=!!e,this._elementsType=r||this.gl.UNSIGNED_SHORT},i.prototype.draw=function(t,e,r){r=r||0;var n=this.gl;this._useElements?n.drawElements(t,e,this._elementsType,r):n.drawArrays(t,r,e)},e.exports=o},{\\\"./do-bind.js\\\":181}],184:[function(t,e,r){\\\"use strict\\\";function n(t,e,r,n){var a,s=t.getExtension(\\\"OES_vertex_array_object\\\");return a=s?i(t,s):o(t),a.update(e,r,n),a}var i=t(\\\"./lib/vao-native.js\\\"),o=t(\\\"./lib/vao-emulated.js\\\");e.exports=n},{\\\"./lib/vao-emulated.js\\\":182,\\\"./lib/vao-native.js\\\":183}],185:[function(t,e,r){function n(t,e,r){var n=e[0],i=e[1],o=e[2],a=e[3];return t[0]=r[0]*n+r[4]*i+r[8]*o+r[12]*a,t[1]=r[1]*n+r[5]*i+r[9]*o+r[13]*a,t[2]=r[2]*n+r[6]*i+r[10]*o+r[14]*a,t[3]=r[3]*n+r[7]*i+r[11]*o+r[15]*a,t}e.exports=n},{}],186:[function(t,e,r){function n(t){function e(t){t.length&&V.push({type:A[B],data:t,position:G,line:q,column:H})}function r(t){F=0,W+=t,j=W.length;for(var e;I=W[F],j>F;){switch(e=F,B){case h:F=L();break;case f:F=E();break;case d:F=T();break;case p:F=S();break;case g:F=z();break;case w:F=P();break;case v:F=R();break;case u:F=O();break;case x:F=M();break;case c:F=k()}if(e!==F)switch(W[e]){case\\\"\\\\n\\\":H=0,++q;break;default:++H}}return D+=F,W=W.slice(F),V}function n(t){return U.length&&e(U.join(\\\"\\\")),B=_,e(\\\"(eof)\\\"),V}function k(){return U=U.length?[]:U,\\\"/\\\"===N&&\\\"*\\\"===I?(G=D+F-1,B=h,N=I,F+1):\\\"/\\\"===N&&\\\"/\\\"===I?(G=D+F-1,B=f,N=I,F+1):\\\"#\\\"===I?(B=d,G=D+F,F):/\\\\s/.test(I)?(B=x,G=D+F,F):(Y=/\\\\d/.test(I),X=/[^\\\\w_]/.test(I),G=D+F,B=Y?g:X?p:u,F)}function M(){return/[^\\\\s]/g.test(I)?(e(U.join(\\\"\\\")),B=c,F):(U.push(I),N=I,F+1)}function T(){return\\\"\\\\n\\\"===I&&\\\"\\\\\\\\\\\"!==N?(e(U.join(\\\"\\\")),B=c,F):(U.push(I),N=I,F+1)}function E(){return T()}function L(){return\\\"/\\\"===I&&\\\"*\\\"===N?(U.push(I),e(U.join(\\\"\\\")),B=c,F+1):(U.push(I),N=I,F+1)}function S(){if(\\\".\\\"===N&&/\\\\d/.test(I))return B=v,F;if(\\\"/\\\"===N&&\\\"*\\\"===I)return B=h,F;if(\\\"/\\\"===N&&\\\"/\\\"===I)return B=f,F;if(\\\".\\\"===I&&U.length){for(;C(U););return B=v,F}if(\\\";\\\"===I||\\\")\\\"===I||\\\"(\\\"===I){if(U.length)for(;C(U););return e(I),B=c,F+1}var t=2===U.length&&\\\"=\\\"!==I;if(/[\\\\w_\\\\d\\\\s]/.test(I)||t){for(;C(U););return B=c,F}return U.push(I),N=I,F+1}function C(t){for(var r,n,i=0;;){if(r=o.indexOf(t.slice(0,t.length+i).join(\\\"\\\")),n=o[r],-1===r){if(i--+t.length>0)continue;n=t.slice(0,1).join(\\\"\\\")}return e(n),G+=n.length,U=U.slice(n.length),U.length}}function P(){return/[^a-fA-F0-9]/.test(I)?(e(U.join(\\\"\\\")),B=c,F):(U.push(I),N=I,F+1)}function z(){return\\\".\\\"===I?(U.push(I),B=v,N=I,F+1):/[eE]/.test(I)?(U.push(I),B=v,N=I,F+1):\\\"x\\\"===I&&1===U.length&&\\\"0\\\"===U[0]?(B=w,U.push(I),N=I,F+1):/[^\\\\d]/.test(I)?(e(U.join(\\\"\\\")),B=c,F):(U.push(I),N=I,F+1)}function R(){return\\\"f\\\"===I&&(U.push(I),N=I,F+=1),/[eE]/.test(I)?(U.push(I),N=I,F+1):\\\"-\\\"===I&&/[eE]/.test(N)?(U.push(I),N=I,F+1):/[^\\\\d]/.test(I)?(e(U.join(\\\"\\\")),B=c,F):(U.push(I),N=I,F+1)}function O(){if(/[^\\\\d\\\\w_]/.test(I)){var t=U.join(\\\"\\\");return B=$.indexOf(t)>-1?b:Z.indexOf(t)>-1?y:m,e(U.join(\\\"\\\")),B=c,F}return U.push(I),N=I,F+1}var I,N,j,F=0,D=0,B=c,U=[],V=[],q=1,H=0,G=0,Y=!1,X=!1,W=\\\"\\\";t=t||{};var Z=a,$=i;return\\\"300 es\\\"===t.version&&(Z=l,$=s),function(t){return V=[],null!==t?r(t):n()}}e.exports=n;var i=t(\\\"./lib/literals\\\"),o=t(\\\"./lib/operators\\\"),a=t(\\\"./lib/builtins\\\"),s=t(\\\"./lib/literals-300es\\\"),l=t(\\\"./lib/builtins-300es\\\"),c=999,u=9999,h=0,f=1,d=2,p=3,g=4,v=5,m=6,y=7,b=8,x=9,_=10,w=11,A=[\\\"block-comment\\\",\\\"line-comment\\\",\\\"preprocessor\\\",\\\"operator\\\",\\\"integer\\\",\\\"float\\\",\\\"ident\\\",\\\"builtin\\\",\\\"keyword\\\",\\\"whitespace\\\",\\\"eof\\\",\\\"integer\\\"]},{\\\"./lib/builtins\\\":188,\\\"./lib/builtins-300es\\\":187,\\\"./lib/literals\\\":190,\\\"./lib/literals-300es\\\":189,\\\"./lib/operators\\\":191}],187:[function(t,e,r){var n=t(\\\"./builtins\\\");n=n.slice().filter(function(t){return!/^(gl\\\\_|texture)/.test(t)}),e.exports=n.concat([\\\"gl_VertexID\\\",\\\"gl_InstanceID\\\",\\\"gl_Position\\\",\\\"gl_PointSize\\\",\\\"gl_FragCoord\\\",\\\"gl_FrontFacing\\\",\\\"gl_FragDepth\\\",\\\"gl_PointCoord\\\",\\\"gl_MaxVertexAttribs\\\",\\\"gl_MaxVertexUniformVectors\\\",\\\"gl_MaxVertexOutputVectors\\\",\\\"gl_MaxFragmentInputVectors\\\",\\\"gl_MaxVertexTextureImageUnits\\\",\\\"gl_MaxCombinedTextureImageUnits\\\",\\\"gl_MaxTextureImageUnits\\\",\\\"gl_MaxFragmentUniformVectors\\\",\\\"gl_MaxDrawBuffers\\\",\\\"gl_MinProgramTexelOffset\\\",\\\"gl_MaxProgramTexelOffset\\\",\\\"gl_DepthRangeParameters\\\",\\\"gl_DepthRange\\\",\\\"trunc\\\",\\\"round\\\",\\\"roundEven\\\",\\\"isnan\\\",\\\"isinf\\\",\\\"floatBitsToInt\\\",\\\"floatBitsToUint\\\",\\\"intBitsToFloat\\\",\\\"uintBitsToFloat\\\",\\\"packSnorm2x16\\\",\\\"unpackSnorm2x16\\\",\\\"packUnorm2x16\\\",\\\"unpackUnorm2x16\\\",\\\"packHalf2x16\\\",\\\"unpackHalf2x16\\\",\\\"outerProduct\\\",\\\"transpose\\\",\\\"determinant\\\",\\\"inverse\\\",\\\"texture\\\",\\\"textureSize\\\",\\\"textureProj\\\",\\\"textureLod\\\",\\\"textureOffset\\\",\\\"texelFetch\\\",\\\"texelFetchOffset\\\",\\\"textureProjOffset\\\",\\\"textureLodOffset\\\",\\\"textureProjLod\\\",\\\"textureProjLodOffset\\\",\\\"textureGrad\\\",\\\"textureGradOffset\\\",\\\"textureProjGrad\\\",\\\"textureProjGradOffset\\\"])},{\\\"./builtins\\\":188}],188:[function(t,e,r){e.exports=[\\\"abs\\\",\\\"acos\\\",\\\"all\\\",\\\"any\\\",\\\"asin\\\",\\\"atan\\\",\\\"ceil\\\",\\\"clamp\\\",\\\"cos\\\",\\\"cross\\\",\\\"dFdx\\\",\\\"dFdy\\\",\\\"degrees\\\",\\\"distance\\\",\\\"dot\\\",\\\"equal\\\",\\\"exp\\\",\\\"exp2\\\",\\\"faceforward\\\",\\\"floor\\\",\\\"fract\\\",\\\"gl_BackColor\\\",\\\"gl_BackLightModelProduct\\\",\\\"gl_BackLightProduct\\\",\\\"gl_BackMaterial\\\",\\\"gl_BackSecondaryColor\\\",\\\"gl_ClipPlane\\\",\\\"gl_ClipVertex\\\",\\\"gl_Color\\\",\\\"gl_DepthRange\\\",\\\"gl_DepthRangeParameters\\\",\\\"gl_EyePlaneQ\\\",\\\"gl_EyePlaneR\\\",\\\"gl_EyePlaneS\\\",\\\"gl_EyePlaneT\\\",\\\"gl_Fog\\\",\\\"gl_FogCoord\\\",\\\"gl_FogFragCoord\\\",\\\"gl_FogParameters\\\",\\\"gl_FragColor\\\",\\\"gl_FragCoord\\\",\\\"gl_FragData\\\",\\\"gl_FragDepth\\\",\\\"gl_FragDepthEXT\\\",\\\"gl_FrontColor\\\",\\\"gl_FrontFacing\\\",\\\"gl_FrontLightModelProduct\\\",\\\"gl_FrontLightProduct\\\",\\\"gl_FrontMaterial\\\",\\\"gl_FrontSecondaryColor\\\",\\\"gl_LightModel\\\",\\\"gl_LightModelParameters\\\",\\\"gl_LightModelProducts\\\",\\\"gl_LightProducts\\\",\\\"gl_LightSource\\\",\\\"gl_LightSourceParameters\\\",\\\"gl_MaterialParameters\\\",\\\"gl_MaxClipPlanes\\\",\\\"gl_MaxCombinedTextureImageUnits\\\",\\\"gl_MaxDrawBuffers\\\",\\\"gl_MaxFragmentUniformComponents\\\",\\\"gl_MaxLights\\\",\\\"gl_MaxTextureCoords\\\",\\\"gl_MaxTextureImageUnits\\\",\\\"gl_MaxTextureUnits\\\",\\\"gl_MaxVaryingFloats\\\",\\\"gl_MaxVertexAttribs\\\",\\\"gl_MaxVertexTextureImageUnits\\\",\\\"gl_MaxVertexUniformComponents\\\",\\\"gl_ModelViewMatrix\\\",\\\"gl_ModelViewMatrixInverse\\\",\\\"gl_ModelViewMatrixInverseTranspose\\\",\\\"gl_ModelViewMatrixTranspose\\\",\\\"gl_ModelViewProjectionMatrix\\\",\\\"gl_ModelViewProjectionMatrixInverse\\\",\\\"gl_ModelViewProjectionMatrixInverseTranspose\\\",\\\"gl_ModelViewProjectionMatrixTranspose\\\",\\\"gl_MultiTexCoord0\\\",\\\"gl_MultiTexCoord1\\\",\\\"gl_MultiTexCoord2\\\",\\\"gl_MultiTexCoord3\\\",\\\"gl_MultiTexCoord4\\\",\\\"gl_MultiTexCoord5\\\",\\\"gl_MultiTexCoord6\\\",\\\"gl_MultiTexCoord7\\\",\\\"gl_Normal\\\",\\\"gl_NormalMatrix\\\",\\\"gl_NormalScale\\\",\\\"gl_ObjectPlaneQ\\\",\\\"gl_ObjectPlaneR\\\",\\\"gl_ObjectPlaneS\\\",\\\"gl_ObjectPlaneT\\\",\\\"gl_Point\\\",\\\"gl_PointCoord\\\",\\\"gl_PointParameters\\\",\\\"gl_PointSize\\\",\\\"gl_Position\\\",\\\"gl_ProjectionMatrix\\\",\\\"gl_ProjectionMatrixInverse\\\",\\\"gl_ProjectionMatrixInverseTranspose\\\",\\\"gl_ProjectionMatrixTranspose\\\",\\\"gl_SecondaryColor\\\",\\\"gl_TexCoord\\\",\\\"gl_TextureEnvColor\\\",\\\"gl_TextureMatrix\\\",\\\"gl_TextureMatrixInverse\\\",\\\"gl_TextureMatrixInverseTranspose\\\",\\\"gl_TextureMatrixTranspose\\\",\\\"gl_Vertex\\\",\\\"greaterThan\\\",\\\"greaterThanEqual\\\",\\\"inversesqrt\\\",\\\"length\\\",\\\"lessThan\\\",\\\"lessThanEqual\\\",\\\"log\\\",\\\"log2\\\",\\\"matrixCompMult\\\",\\\"max\\\",\\\"min\\\",\\\"mix\\\",\\\"mod\\\",\\\"normalize\\\",\\\"not\\\",\\\"notEqual\\\",\\\"pow\\\",\\\"radians\\\",\\\"reflect\\\",\\\"refract\\\",\\\"sign\\\",\\\"sin\\\",\\\"smoothstep\\\",\\\"sqrt\\\",\\\"step\\\",\\\"tan\\\",\\\"texture2D\\\",\\\"texture2DLod\\\",\\\"texture2DProj\\\",\\\"texture2DProjLod\\\",\\\"textureCube\\\",\\\"textureCubeLod\\\",\\\"texture2DLodEXT\\\",\\\"texture2DProjLodEXT\\\",\\\"textureCubeLodEXT\\\",\\\"texture2DGradEXT\\\",\\\"texture2DProjGradEXT\\\",\\\"textureCubeGradEXT\\\"]},{}],189:[function(t,e,r){var n=t(\\\"./literals\\\");e.exports=n.slice().concat([\\\"layout\\\",\\\"centroid\\\",\\\"smooth\\\",\\\"case\\\",\\\"mat2x2\\\",\\\"mat2x3\\\",\\\"mat2x4\\\",\\\"mat3x2\\\",\\\"mat3x3\\\",\\\"mat3x4\\\",\\\"mat4x2\\\",\\\"mat4x3\\\",\\\"mat4x4\\\",\\\"uint\\\",\\\"uvec2\\\",\\\"uvec3\\\",\\\"uvec4\\\",\\\"samplerCubeShadow\\\",\\\"sampler2DArray\\\",\\\"sampler2DArrayShadow\\\",\\\"isampler2D\\\",\\\"isampler3D\\\",\\\"isamplerCube\\\",\\\"isampler2DArray\\\",\\\"usampler2D\\\",\\\"usampler3D\\\",\\\"usamplerCube\\\",\\\"usampler2DArray\\\",\\\"coherent\\\",\\\"restrict\\\",\\\"readonly\\\",\\\"writeonly\\\",\\\"resource\\\",\\\"atomic_uint\\\",\\\"noperspective\\\",\\\"patch\\\",\\\"sample\\\",\\\"subroutine\\\",\\\"common\\\",\\\"partition\\\",\\\"active\\\",\\\"filter\\\",\\\"image1D\\\",\\\"image2D\\\",\\\"image3D\\\",\\\"imageCube\\\",\\\"iimage1D\\\",\\\"iimage2D\\\",\\\"iimage3D\\\",\\\"iimageCube\\\",\\\"uimage1D\\\",\\\"uimage2D\\\",\\\"uimage3D\\\",\\\"uimageCube\\\",\\\"image1DArray\\\",\\\"image2DArray\\\",\\\"iimage1DArray\\\",\\\"iimage2DArray\\\",\\\"uimage1DArray\\\",\\\"uimage2DArray\\\",\\\"image1DShadow\\\",\\\"image2DShadow\\\",\\\"image1DArrayShadow\\\",\\\"image2DArrayShadow\\\",\\\"imageBuffer\\\",\\\"iimageBuffer\\\",\\\"uimageBuffer\\\",\\\"sampler1DArray\\\",\\\"sampler1DArrayShadow\\\",\\\"isampler1D\\\",\\\"isampler1DArray\\\",\\\"usampler1D\\\",\\\"usampler1DArray\\\",\\\"isampler2DRect\\\",\\\"usampler2DRect\\\",\\\"samplerBuffer\\\",\\\"isamplerBuffer\\\",\\\"usamplerBuffer\\\",\\\"sampler2DMS\\\",\\\"isampler2DMS\\\",\\\"usampler2DMS\\\",\\\"sampler2DMSArray\\\",\\\"isampler2DMSArray\\\",\\\"usampler2DMSArray\\\"])},{\\\"./literals\\\":190}],190:[function(t,e,r){e.exports=[\\\"precision\\\",\\\"highp\\\",\\\"mediump\\\",\\\"lowp\\\",\\\"attribute\\\",\\\"const\\\",\\\"uniform\\\",\\\"varying\\\",\\\"break\\\",\\\"continue\\\",\\\"do\\\",\\\"for\\\",\\\"while\\\",\\\"if\\\",\\\"else\\\",\\\"in\\\",\\\"out\\\",\\\"inout\\\",\\\"float\\\",\\\"int\\\",\\\"void\\\",\\\"bool\\\",\\\"true\\\",\\\"false\\\",\\\"discard\\\",\\\"return\\\",\\\"mat2\\\",\\\"mat3\\\",\\\"mat4\\\",\\\"vec2\\\",\\\"vec3\\\",\\\"vec4\\\",\\\"ivec2\\\",\\\"ivec3\\\",\\\"ivec4\\\",\\\"bvec2\\\",\\\"bvec3\\\",\\\"bvec4\\\",\\\"sampler1D\\\",\\\"sampler2D\\\",\\\"sampler3D\\\",\\\"samplerCube\\\",\\\"sampler1DShadow\\\",\\\"sampler2DShadow\\\",\\\"struct\\\",\\\"asm\\\",\\\"class\\\",\\\"union\\\",\\\"enum\\\",\\\"typedef\\\",\\\"template\\\",\\\"this\\\",\\\"packed\\\",\\\"goto\\\",\\\"switch\\\",\\\"default\\\",\\\"inline\\\",\\\"noinline\\\",\\\"volatile\\\",\\\"public\\\",\\\"static\\\",\\\"extern\\\",\\\"external\\\",\\\"interface\\\",\\\"long\\\",\\\"short\\\",\\\"double\\\",\\\"half\\\",\\\"fixed\\\",\\\"unsigned\\\",\\\"input\\\",\\\"output\\\",\\\"hvec2\\\",\\\"hvec3\\\",\\\"hvec4\\\",\\\"dvec2\\\",\\\"dvec3\\\",\\\"dvec4\\\",\\\"fvec2\\\",\\\"fvec3\\\",\\\"fvec4\\\",\\\"sampler2DRect\\\",\\\"sampler3DRect\\\",\\\"sampler2DRectShadow\\\",\\\"sizeof\\\",\\\"cast\\\",\\\"namespace\\\",\\\"using\\\"]},{}],191:[function(t,e,r){e.exports=[\\\"<<=\\\",\\\">>=\\\",\\\"++\\\",\\\"--\\\",\\\"<<\\\",\\\">>\\\",\\\"<=\\\",\\\">=\\\",\\\"==\\\",\\\"!=\\\",\\\"&&\\\",\\\"||\\\",\\\"+=\\\",\\\"-=\\\",\\\"*=\\\",\\\"/=\\\",\\\"%=\\\",\\\"&=\\\",\\\"^^\\\",\\\"^=\\\",\\\"|=\\\",\\\"(\\\",\\\")\\\",\\\"[\\\",\\\"]\\\",\\\".\\\",\\\"!\\\",\\\"~\\\",\\\"*\\\",\\\"/\\\",\\\"%\\\",\\\"+\\\",\\\"-\\\",\\\"<\\\",\\\">\\\",\\\"&\\\",\\\"^\\\",\\\"|\\\",\\\"?\\\",\\\":\\\",\\\"=\\\",\\\",\\\",\\\";\\\",\\\"{\\\",\\\"}\\\"]},{}],192:[function(t,e,r){function n(t,e){var r=i(e),n=[];return n=n.concat(r(t)),n=n.concat(r(null))}var i=t(\\\"./index\\\");e.exports=n},{\\\"./index\\\":186}],193:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){this.vertices=t,this.adjacent=e,this.boundary=r,this.lastVisited=-1}function i(t,e,r){this.vertices=t,this.cell=e,this.index=r}function o(t,e){return u(t.vertices,e.vertices)}function a(t){for(var e=[\\\"function orient(){var tuple=this.tuple;return test(\\\"],r=0;t>=r;++r)r>0&&e.push(\\\",\\\"),e.push(\\\"tuple[\\\",r,\\\"]\\\");e.push(\\\")}return orient\\\");var n=new Function(\\\"test\\\",e.join(\\\"\\\")),i=c[t+1];return i||(i=c),n(i)}function s(t,e,r){this.dimension=t,this.vertices=e,this.simplices=r,this.interior=r.filter(function(t){return!t.boundary}),this.tuple=new Array(t+1);for(var n=0;t>=n;++n)this.tuple[n]=this.vertices[n];var i=h[t];i||(i=h[t]=a(t)),this.orient=i}function l(t,e){var r=t.length;if(0===r)throw new Error(\\\"Must have at least d+1 points\\\");var i=t[0].length;if(i>=r)throw new Error(\\\"Must input at least d+1 points\\\");var o=t.slice(0,i+1),a=c.apply(void 0,o);if(0===a)throw new Error(\\\"Input not in general position\\\");for(var l=new Array(i+1),u=0;i>=u;++u)l[u]=u;0>a&&(l[0]=1,l[1]=0);for(var h=new n(l,new Array(i+1),!1),f=h.adjacent,d=new Array(i+2),u=0;i>=u;++u){for(var p=l.slice(),g=0;i>=g;++g)g===u&&(p[g]=-1);var v=p[0];p[0]=p[1],p[1]=v;var m=new n(p,new Array(i+1),!0);f[u]=m,d[u]=m}d[i+1]=h;for(var u=0;i>=u;++u)for(var p=f[u].vertices,y=f[u].adjacent,g=0;i>=g;++g){var b=p[g];if(0>b)y[g]=h;else for(var x=0;i>=x;++x)f[x].vertices.indexOf(b)<0&&(y[g]=f[x])}for(var _=new s(i,o,d),w=!!e,u=i+1;r>u;++u)_.insert(t[u],w);return _.boundary()}e.exports=l;var c=t(\\\"robust-orientation\\\"),u=t(\\\"simplicial-complex\\\").compareCells;n.prototype.flip=function(){var t=this.vertices[0];this.vertices[0]=this.vertices[1],this.vertices[1]=t;var e=this.adjacent[0];this.adjacent[0]=this.adjacent[1],this.adjacent[1]=e};var h=[],f=s.prototype;f.handleBoundaryDegeneracy=function(t,e){var r=this.dimension,n=this.vertices.length-1,i=this.tuple,o=this.vertices,a=[t];for(t.lastVisited=-n;a.length>0;){t=a.pop();for(var s=(t.vertices,t.adjacent),l=0;r>=l;++l){var c=s[l];if(c.boundary&&!(c.lastVisited<=-n)){for(var u=c.vertices,h=0;r>=h;++h){var f=u[h];0>f?i[h]=e:i[h]=o[f]}var d=this.orient();if(d>0)return c;c.lastVisited=-n,0===d&&a.push(c)}}}return null},f.walk=function(t,e){var r=this.vertices.length-1,n=this.dimension,i=this.vertices,o=this.tuple,a=e?this.interior.length*Math.random()|0:this.interior.length-1,s=this.interior[a];t:for(;!s.boundary;){for(var l=s.vertices,c=s.adjacent,u=0;n>=u;++u)o[u]=i[l[u]];s.lastVisited=r;for(var u=0;n>=u;++u){var h=c[u];if(!(h.lastVisited>=r)){var f=o[u];o[u]=t;var d=this.orient();if(o[u]=f,0>d){s=h;continue t}h.boundary?h.lastVisited=-r:h.lastVisited=r}}return}return s},f.addPeaks=function(t,e){var r=this.vertices.length-1,a=this.dimension,s=this.vertices,l=this.tuple,c=this.interior,u=this.simplices,h=[e];e.lastVisited=r,e.vertices[e.vertices.indexOf(-1)]=r,e.boundary=!1,c.push(e);for(var f=[];h.length>0;){var e=h.pop(),d=e.vertices,p=e.adjacent,g=d.indexOf(r);if(!(0>g))for(var v=0;a>=v;++v)if(v!==g){var m=p[v];if(m.boundary&&!(m.lastVisited>=r)){var y=m.vertices;if(m.lastVisited!==-r){for(var b=0,x=0;a>=x;++x)y[x]<0?(b=x,l[x]=t):l[x]=s[y[x]];var _=this.orient();if(_>0){y[b]=r,m.boundary=!1,c.push(m),h.push(m),m.lastVisited=r;continue}m.lastVisited=-r}var w=m.adjacent,A=d.slice(),k=p.slice(),M=new n(A,k,!0);u.push(M);var T=w.indexOf(e);if(!(0>T)){w[T]=M,k[g]=m,A[v]=-1,k[v]=e,p[v]=M,M.flip();for(var x=0;a>=x;++x){var E=A[x];if(!(0>E||E===r)){for(var L=new Array(a-1),S=0,C=0;a>=C;++C){var P=A[C];0>P||C===x||(L[S++]=P)}f.push(new i(L,M,x))}}}}}}f.sort(o);for(var v=0;v+1<f.length;v+=2){var z=f[v],R=f[v+1],O=z.index,I=R.index;0>O||0>I||(z.cell.adjacent[z.index]=R.cell,R.cell.adjacent[R.index]=z.cell)}},f.insert=function(t,e){var r=this.vertices;r.push(t);var n=this.walk(t,e);if(n){for(var i=this.dimension,o=this.tuple,a=0;i>=a;++a){var s=n.vertices[a];0>s?o[a]=t:o[a]=r[s]}var l=this.orient(o);0>l||(0!==l||(n=this.handleBoundaryDegeneracy(n,t)))&&this.addPeaks(t,n)}},f.boundary=function(){for(var t=this.dimension,e=[],r=this.simplices,n=r.length,i=0;n>i;++i){var o=r[i];if(o.boundary){for(var a=new Array(t),s=o.vertices,l=0,c=0,u=0;t>=u;++u)s[u]>=0?a[l++]=s[u]:c=1&u;if(c===(1&t)){var h=a[0];a[0]=a[1],a[1]=h}e.push(a)}}return e}},{\\\"robust-orientation\\\":216,\\\"simplicial-complex\\\":196}],194:[function(t,e,r){arguments[4][49][0].apply(r,arguments)},{dup:49}],195:[function(t,e,r){\\\"use strict\\\";\\\"use restrict\\\";function n(t){this.roots=new Array(t),this.ranks=new Array(t);for(var e=0;t>e;++e)this.roots[e]=e,this.ranks[e]=0}e.exports=n;var i=n.prototype;Object.defineProperty(i,\\\"length\\\",{get:function(){return this.roots.length}}),i.makeSet=function(){var t=this.roots.length;return this.roots.push(t),this.ranks.push(0),t},i.find=function(t){for(var e=t,r=this.roots;r[t]!==t;)t=r[t];for(;r[e]!==t;){var n=r[e];r[e]=t,e=n}return t},i.link=function(t,e){var r=this.find(t),n=this.find(e);if(r!==n){var i=this.ranks,o=this.roots,a=i[r],s=i[n];s>a?o[r]=n:a>s?o[n]=r:(o[n]=r,++i[r])}}},{}],196:[function(t,e,r){\\\"use strict\\\";\\\"use restrict\\\";function n(t){for(var e=0,r=Math.max,n=0,i=t.length;i>n;++n)e=r(e,t[n].length);return e-1}function i(t){for(var e=-1,r=Math.max,n=0,i=t.length;i>n;++n)for(var o=t[n],a=0,s=o.length;s>a;++a)e=r(e,o[a]);return e+1}function o(t){for(var e=new Array(t.length),r=0,n=t.length;n>r;++r)e[r]=t[r].slice(0);return e}function a(t,e){var r=t.length,n=t.length-e.length,i=Math.min;if(n)return n;switch(r){case 0:return 0;case 1:return t[0]-e[0];case 2:var o=t[0]+t[1]-e[0]-e[1];return o?o:i(t[0],t[1])-i(e[0],e[1]);case 3:var a=t[0]+t[1],s=e[0]+e[1];if(o=a+t[2]-(s+e[2]))return o;var l=i(t[0],t[1]),c=i(e[0],e[1]),o=i(l,t[2])-i(c,e[2]);return o?o:i(l+t[2],a)-i(c+e[2],s);default:var u=t.slice(0);u.sort();var h=e.slice(0);h.sort();for(var f=0;r>f;++f)if(n=u[f]-h[f])return n;return 0}}function s(t,e){return a(t[0],e[0])}function l(t,e){if(e){for(var r=t.length,n=new Array(r),i=0;r>i;++i)n[i]=[t[i],e[i]];n.sort(s);for(var i=0;r>i;++i)t[i]=n[i][0],e[i]=n[i][1];return t}return t.sort(a),t}function c(t){if(0===t.length)return[];for(var e=1,r=t.length,n=1;r>n;++n){var i=t[n];if(a(i,t[n-1])){if(n===e){e++;continue}t[e++]=i}}return t.length=e,t}function u(t,e){for(var r=0,n=t.length-1,i=-1;n>=r;){var o=r+n>>1,s=a(t[o],e);0>=s?(0===s&&(i=o),r=o+1):s>0&&(n=o-1)}return i}function h(t,e){for(var r=new Array(t.length),n=0,i=r.length;i>n;++n)r[n]=[];for(var o=[],n=0,s=e.length;s>n;++n)for(var l=e[n],c=l.length,h=1,f=1<<c;f>h;++h){o.length=b.popCount(h);for(var d=0,p=0;c>p;++p)h&1<<p&&(o[d++]=l[p]);var g=u(t,o);if(!(0>g))for(;;)if(r[g++].push(n),g>=t.length||0!==a(t[g],o))break}return r}function f(t,e){if(!e)return h(c(p(t,0)),t,0);for(var r=new Array(e),n=0;e>n;++n)r[n]=[];for(var n=0,i=t.length;i>n;++n)for(var o=t[n],a=0,s=o.length;s>a;++a)r[o[a]].push(n);return r}function d(t){for(var e=[],r=0,n=t.length;n>r;++r)for(var i=t[r],o=0|i.length,a=1,s=1<<o;s>a;++a){for(var c=[],u=0;o>u;++u)a>>>u&1&&c.push(i[u]);e.push(c)}return l(e)}function p(t,e){if(0>e)return[];for(var r=[],n=(1<<e+1)-1,i=0;i<t.length;++i)for(var o=t[i],a=n;a<1<<o.length;a=b.nextCombination(a)){for(var s=new Array(e+1),c=0,u=0;u<o.length;++u)a&1<<u&&(s[c++]=o[u]);r.push(s)}return l(r)}function g(t){for(var e=[],r=0,n=t.length;n>r;++r)for(var i=t[r],o=0,a=i.length;a>o;++o){for(var s=new Array(i.length-1),c=0,u=0;a>c;++c)c!==o&&(s[u++]=i[c]);e.push(s)}return l(e)}function v(t,e){for(var r=new x(e),n=0;n<t.length;++n)for(var i=t[n],o=0;o<i.length;++o)for(var a=o+1;a<i.length;++a)r.link(i[o],i[a]);for(var s=[],l=r.ranks,n=0;n<l.length;++n)l[n]=-1;for(var n=0;n<t.length;++n){var c=r.find(t[n][0]);l[c]<0?(l[c]=s.length,s.push([t[n].slice(0)])):s[l[c]].push(t[n].slice(0))}return s}function m(t){for(var e=c(l(p(t,0))),r=new x(e.length),n=0;n<t.length;++n)for(var i=t[n],o=0;o<i.length;++o)for(var a=u(e,[i[o]]),s=o+1;s<i.length;++s)r.link(a,u(e,[i[s]]));for(var h=[],f=r.ranks,n=0;n<f.length;++n)f[n]=-1;for(var n=0;n<t.length;++n){var d=r.find(u(e,[t[n][0]]));f[d]<0?(f[d]=h.length,h.push([t[n].slice(0)])):h[f[d]].push(t[n].slice(0))}return h}function y(t,e){return e?v(t,e):m(t)}var b=t(\\\"bit-twiddle\\\"),x=t(\\\"union-find\\\");r.dimension=n,r.countVertices=i,r.cloneCells=o,r.compareCells=a,r.normalize=l,r.unique=c,r.findCell=u,r.incidence=h,r.dual=f,r.explode=d,r.skeleton=p,r.boundary=g,r.connectedComponents=y},{\\\"bit-twiddle\\\":194,\\\"union-find\\\":195}],197:[function(t,e,r){\\\"use strict\\\";function n(t){for(var e=new Array(t),r=0;t>r;++r)e[r]=r;return e}e.exports=n},{}],198:[function(t,e,r){\\\"use strict\\\";function n(t,e){function r(t){var e=!1;return\\\"altKey\\\"in t&&(e=e||t.altKey!==g.alt,g.alt=!!t.altKey),\\\"shiftKey\\\"in t&&(e=e||t.shiftKey!==g.shift,g.shift=!!t.shiftKey),\\\"ctrlKey\\\"in t&&(e=e||t.ctrlKey!==g.control,g.control=!!t.ctrlKey),\\\"metaKey\\\"in t&&(e=e||t.metaKey!==g.meta,g.meta=!!t.metaKey),e}function n(t,n){var o=i.x(n),a=i.y(n);\\\"buttons\\\"in n&&(t=0|n.buttons),(t!==f||o!==d||a!==p||r(n))&&(f=0|t,d=o||0,p=a||0,e(f,d,p,g))}function o(t){n(0,t)}function a(){(f||d||p||g.shift||g.alt||g.meta||g.control)&&(d=p=0,f=0,g.shift=g.alt=g.control=g.meta=!1,e(0,0,0,g))}function s(t){r(t)&&e(f,d,p,g)}function l(t){0===i.buttons(t)?n(0,t):n(f,t)}function c(t){n(f|i.buttons(t),t)}function u(t){\\n\",\n       \"n(f&~i.buttons(t),t)}function h(){v||(v=!0,t.addEventListener(\\\"mousemove\\\",l),t.addEventListener(\\\"mousedown\\\",c),t.addEventListener(\\\"mouseup\\\",u),t.addEventListener(\\\"mouseleave\\\",o),t.addEventListener(\\\"mouseenter\\\",o),t.addEventListener(\\\"mouseout\\\",o),t.addEventListener(\\\"mouseover\\\",o),t.addEventListener(\\\"blur\\\",a),t.addEventListener(\\\"keyup\\\",s),t.addEventListener(\\\"keydown\\\",s),t.addEventListener(\\\"keypress\\\",s),t!==window&&(window.addEventListener(\\\"blur\\\",a),window.addEventListener(\\\"keyup\\\",s),window.addEventListener(\\\"keydown\\\",s),window.addEventListener(\\\"keypress\\\",s)))}e||(e=t,t=window);var f=0,d=0,p=0,g={shift:!1,alt:!1,control:!1,meta:!1},v=!1;h();var m={element:t};return Object.defineProperties(m,{enabled:{get:function(){return v},set:function(t){t&&h()},enumerable:!0},buttons:{get:function(){return f},enumerable:!0},x:{get:function(){return d},enumerable:!0},y:{get:function(){return p},enumerable:!0},mods:{get:function(){return g},enumerable:!0}}),m}e.exports=n;var i=t(\\\"mouse-event\\\")},{\\\"mouse-event\\\":199}],199:[function(t,e,r){\\\"use strict\\\";function n(t){if(\\\"object\\\"==typeof t){if(\\\"buttons\\\"in t)return t.buttons;if(\\\"which\\\"in t){var e=t.which;if(2===e)return 4;if(3===e)return 2;if(e>0)return 1<<e-1}else if(\\\"button\\\"in t){var e=t.button;if(1===e)return 4;if(2===e)return 2;if(e>=0)return 1<<e}}return 0}function i(t){return t.target||t.srcElement||window}function o(t){if(\\\"object\\\"==typeof t){if(\\\"offsetX\\\"in t)return t.offsetX;var e=i(t),r=e.getBoundingClientRect();return t.clientX-r.left}return 0}function a(t){if(\\\"object\\\"==typeof t){if(\\\"offsetY\\\"in t)return t.offsetY;var e=i(t),r=e.getBoundingClientRect();return t.clientY-r.top}return 0}r.buttons=n,r.element=i,r.x=o,r.y=a},{}],200:[function(t,e,r){e.exports=function(t,e){e||(e=[0,\\\"\\\"]),t=String(t);var r=parseFloat(t,10);return e[0]=r,e[1]=t.match(/[\\\\d.\\\\-\\\\+]*\\\\s*(.*)/)[1]||\\\"\\\",e}},{}],201:[function(t,e,r){\\\"use strict\\\";function n(t,e){var r=a(getComputedStyle(t).getPropertyValue(e));return r[0]*o(r[1],t)}function i(t,e){var r=document.createElement(\\\"div\\\");r.style[\\\"font-size\\\"]=\\\"128\\\"+t,e.appendChild(r);var i=n(r,\\\"font-size\\\")/128;return e.removeChild(r),i}function o(t,e){switch(e=e||document.body,t=(t||\\\"px\\\").trim().toLowerCase(),e!==window&&e!==document||(e=document.body),t){case\\\"%\\\":return e.clientHeight/100;case\\\"ch\\\":case\\\"ex\\\":return i(t,e);case\\\"em\\\":return n(e,\\\"font-size\\\");case\\\"rem\\\":return n(document.body,\\\"font-size\\\");case\\\"vw\\\":return window.innerWidth/100;case\\\"vh\\\":return window.innerHeight/100;case\\\"vmin\\\":return Math.min(window.innerWidth,window.innerHeight)/100;case\\\"vmax\\\":return Math.max(window.innerWidth,window.innerHeight)/100;case\\\"in\\\":return s;case\\\"cm\\\":return s/2.54;case\\\"mm\\\":return s/25.4;case\\\"pt\\\":return s/72;case\\\"pc\\\":return s/6}return 1}var a=t(\\\"parse-unit\\\");e.exports=o;var s=96},{\\\"parse-unit\\\":200}],202:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){\\\"function\\\"==typeof t&&(r=!!e,e=t,t=window);var n=i(\\\"ex\\\",t),o=function(t){r&&t.preventDefault();var i=t.deltaX||0,o=t.deltaY||0,a=t.deltaZ||0,s=t.deltaMode,l=1;switch(s){case 1:l=n;break;case 2:l=window.innerHeight}return i*=l,o*=l,a*=l,i||o||a?e(i,o,a):void 0};return t.addEventListener(\\\"wheel\\\",o),o}var i=t(\\\"to-px\\\");e.exports=n},{\\\"to-px\\\":201}],203:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"cwise/lib/wrapper\\\")({args:[\\\"index\\\",\\\"array\\\",\\\"scalar\\\"],pre:{body:\\\"{}\\\",args:[],thisVars:[],localVars:[]},body:{body:\\\"{_inline_1_arg1_=_inline_1_arg2_.apply(void 0,_inline_1_arg0_)}\\\",args:[{name:\\\"_inline_1_arg0_\\\",lvalue:!1,rvalue:!0,count:1},{name:\\\"_inline_1_arg1_\\\",lvalue:!0,rvalue:!1,count:1},{name:\\\"_inline_1_arg2_\\\",lvalue:!1,rvalue:!0,count:1}],thisVars:[],localVars:[]},post:{body:\\\"{}\\\",args:[],thisVars:[],localVars:[]},debug:!1,funcName:\\\"cwise\\\",blockSize:64});e.exports=function(t,e){return n(t,e),t}},{\\\"cwise/lib/wrapper\\\":69}],204:[function(t,e,r){\\\"use strict\\\";function n(t,e){switch(e.length){case 0:break;case 1:t[0]=1/e[0];break;case 4:i(t,e);break;case 9:o(t,e);break;case 16:a(t,e);break;default:throw new Error(\\\"currently supports matrices up to 4x4\\\")}return t}e.exports=n;var i=t(\\\"gl-mat2/invert\\\"),o=t(\\\"gl-mat3/invert\\\"),a=t(\\\"gl-mat4/invert\\\")},{\\\"gl-mat2/invert\\\":205,\\\"gl-mat3/invert\\\":87,\\\"gl-mat4/invert\\\":94}],205:[function(t,e,r){function n(t,e){var r=e[0],n=e[1],i=e[2],o=e[3],a=r*o-i*n;return a?(a=1/a,t[0]=o*a,t[1]=-n*a,t[2]=-i*a,t[3]=r*a,t):null}e.exports=n},{}],206:[function(t,e,r){\\\"use strict\\\";function n(t,e){var r=Math.floor(e),n=e-r,i=r>=0&&r<t.shape[0],o=r+1>=0&&r+1<t.shape[0],a=i?+t.get(r):0,s=o?+t.get(r+1):0;return(1-n)*a+n*s}function i(t,e,r){var n=Math.floor(e),i=e-n,o=n>=0&&n<t.shape[0],a=n+1>=0&&n+1<t.shape[0],s=Math.floor(r),l=r-s,c=s>=0&&s<t.shape[1],u=s+1>=0&&s+1<t.shape[1],h=o&&c?t.get(n,s):0,f=o&&u?t.get(n,s+1):0,d=a&&c?t.get(n+1,s):0,p=a&&u?t.get(n+1,s+1):0;return(1-l)*((1-i)*h+i*d)+l*((1-i)*f+i*p)}function o(t,e,r,n){var i=Math.floor(e),o=e-i,a=i>=0&&i<t.shape[0],s=i+1>=0&&i+1<t.shape[0],l=Math.floor(r),c=r-l,u=l>=0&&l<t.shape[1],h=l+1>=0&&l+1<t.shape[1],f=Math.floor(n),d=n-f,p=f>=0&&f<t.shape[2],g=f+1>=0&&f+1<t.shape[2],v=a&&u&&p?t.get(i,l,f):0,m=a&&h&&p?t.get(i,l+1,f):0,y=s&&u&&p?t.get(i+1,l,f):0,b=s&&h&&p?t.get(i+1,l+1,f):0,x=a&&u&&g?t.get(i,l,f+1):0,_=a&&h&&g?t.get(i,l+1,f+1):0,w=s&&u&&g?t.get(i+1,l,f+1):0,A=s&&h&&g?t.get(i+1,l+1,f+1):0;return(1-d)*((1-c)*((1-o)*v+o*y)+c*((1-o)*m+o*b))+d*((1-c)*((1-o)*x+o*w)+c*((1-o)*_+o*A))}function a(t){var e,r,n=0|t.shape.length,i=new Array(n),o=new Array(n),a=new Array(n),s=new Array(n);for(e=0;n>e;++e)r=+arguments[e+1],i[e]=Math.floor(r),o[e]=r-i[e],a[e]=0<=i[e]&&i[e]<t.shape[e],s[e]=0<=i[e]+1&&i[e]+1<t.shape[e];var l,c,u,h=0;t:for(e=0;1<<n>e;++e){for(c=1,u=t.offset,l=0;n>l;++l)if(e&1<<l){if(!s[l])continue t;c*=o[l],u+=t.stride[l]*(i[l]+1)}else{if(!a[l])continue t;c*=1-o[l],u+=t.stride[l]*i[l]}h+=c*t.data[u]}return h}function s(t,e,r,s){switch(t.shape.length){case 0:return 0;case 1:return n(t,e);case 2:return i(t,e,r);case 3:return o(t,e,r,s);default:return a.apply(void 0,arguments)}}e.exports=s,e.exports.d1=n,e.exports.d2=i,e.exports.d3=o},{}],207:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"ndarray-linear-interpolate\\\"),i=t(\\\"cwise/lib/wrapper\\\")({args:[\\\"index\\\",\\\"array\\\",\\\"scalar\\\",\\\"scalar\\\",\\\"scalar\\\"],pre:{body:\\\"{this_warped=new Array(_inline_6_arg4_)}\\\",args:[{name:\\\"_inline_6_arg0_\\\",lvalue:!1,rvalue:!1,count:0},{name:\\\"_inline_6_arg1_\\\",lvalue:!1,rvalue:!1,count:0},{name:\\\"_inline_6_arg2_\\\",lvalue:!1,rvalue:!1,count:0},{name:\\\"_inline_6_arg3_\\\",lvalue:!1,rvalue:!1,count:0},{name:\\\"_inline_6_arg4_\\\",lvalue:!1,rvalue:!0,count:1}],thisVars:[\\\"this_warped\\\"],localVars:[]},body:{body:\\\"{_inline_7_arg2_(this_warped,_inline_7_arg0_),_inline_7_arg1_=_inline_7_arg3_.apply(void 0,this_warped)}\\\",args:[{name:\\\"_inline_7_arg0_\\\",lvalue:!1,rvalue:!0,count:1},{name:\\\"_inline_7_arg1_\\\",lvalue:!0,rvalue:!1,count:1},{name:\\\"_inline_7_arg2_\\\",lvalue:!1,rvalue:!0,count:1},{name:\\\"_inline_7_arg3_\\\",lvalue:!1,rvalue:!0,count:1},{name:\\\"_inline_7_arg4_\\\",lvalue:!1,rvalue:!1,count:0}],thisVars:[\\\"this_warped\\\"],localVars:[]},post:{body:\\\"{}\\\",args:[],thisVars:[],localVars:[]},debug:!1,funcName:\\\"warpND\\\",blockSize:64}),o=t(\\\"cwise/lib/wrapper\\\")({args:[\\\"index\\\",\\\"array\\\",\\\"scalar\\\",\\\"scalar\\\",\\\"scalar\\\"],pre:{body:\\\"{this_warped=[0]}\\\",args:[],thisVars:[\\\"this_warped\\\"],localVars:[]},body:{body:\\\"{_inline_10_arg2_(this_warped,_inline_10_arg0_),_inline_10_arg1_=_inline_10_arg3_(_inline_10_arg4_,this_warped[0])}\\\",args:[{name:\\\"_inline_10_arg0_\\\",lvalue:!1,rvalue:!0,count:1},{name:\\\"_inline_10_arg1_\\\",lvalue:!0,rvalue:!1,count:1},{name:\\\"_inline_10_arg2_\\\",lvalue:!1,rvalue:!0,count:1},{name:\\\"_inline_10_arg3_\\\",lvalue:!1,rvalue:!0,count:1},{name:\\\"_inline_10_arg4_\\\",lvalue:!1,rvalue:!0,count:1}],thisVars:[\\\"this_warped\\\"],localVars:[]},post:{body:\\\"{}\\\",args:[],thisVars:[],localVars:[]},debug:!1,funcName:\\\"warp1D\\\",blockSize:64}),a=t(\\\"cwise/lib/wrapper\\\")({args:[\\\"index\\\",\\\"array\\\",\\\"scalar\\\",\\\"scalar\\\",\\\"scalar\\\"],pre:{body:\\\"{this_warped=[0,0]}\\\",args:[],thisVars:[\\\"this_warped\\\"],localVars:[]},body:{body:\\\"{_inline_13_arg2_(this_warped,_inline_13_arg0_),_inline_13_arg1_=_inline_13_arg3_(_inline_13_arg4_,this_warped[0],this_warped[1])}\\\",args:[{name:\\\"_inline_13_arg0_\\\",lvalue:!1,rvalue:!0,count:1},{name:\\\"_inline_13_arg1_\\\",lvalue:!0,rvalue:!1,count:1},{name:\\\"_inline_13_arg2_\\\",lvalue:!1,rvalue:!0,count:1},{name:\\\"_inline_13_arg3_\\\",lvalue:!1,rvalue:!0,count:1},{name:\\\"_inline_13_arg4_\\\",lvalue:!1,rvalue:!0,count:1}],thisVars:[\\\"this_warped\\\"],localVars:[]},post:{body:\\\"{}\\\",args:[],thisVars:[],localVars:[]},debug:!1,funcName:\\\"warp2D\\\",blockSize:64}),s=t(\\\"cwise/lib/wrapper\\\")({args:[\\\"index\\\",\\\"array\\\",\\\"scalar\\\",\\\"scalar\\\",\\\"scalar\\\"],pre:{body:\\\"{this_warped=[0,0,0]}\\\",args:[],thisVars:[\\\"this_warped\\\"],localVars:[]},body:{body:\\\"{_inline_16_arg2_(this_warped,_inline_16_arg0_),_inline_16_arg1_=_inline_16_arg3_(_inline_16_arg4_,this_warped[0],this_warped[1],this_warped[2])}\\\",args:[{name:\\\"_inline_16_arg0_\\\",lvalue:!1,rvalue:!0,count:1},{name:\\\"_inline_16_arg1_\\\",lvalue:!0,rvalue:!1,count:1},{name:\\\"_inline_16_arg2_\\\",lvalue:!1,rvalue:!0,count:1},{name:\\\"_inline_16_arg3_\\\",lvalue:!1,rvalue:!0,count:1},{name:\\\"_inline_16_arg4_\\\",lvalue:!1,rvalue:!0,count:1}],thisVars:[\\\"this_warped\\\"],localVars:[]},post:{body:\\\"{}\\\",args:[],thisVars:[],localVars:[]},debug:!1,funcName:\\\"warp3D\\\",blockSize:64});e.exports=function(t,e,r){switch(e.shape.length){case 1:o(t,r,n.d1,e);break;case 2:a(t,r,n.d2,e);break;case 3:s(t,r,n.d3,e);break;default:i(t,r,n.bind(void 0,e),e.shape.length)}return t}},{\\\"cwise/lib/wrapper\\\":69,\\\"ndarray-linear-interpolate\\\":206}],208:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){var n=e.dimension,a=o([],r);return i(t,e,function(t,e){for(var r=0;n>r;++r){t[r]=a[(n+1)*n+r];for(var i=0;n>i;++i)t[r]+=a[(n+1)*i+r]*e[i]}for(var o=a[(n+1)*(n+1)-1],i=0;n>i;++i)o+=a[(n+1)*i+n]*e[i];for(var s=1/o,r=0;n>r;++r)t[r]*=s;return t}),t}var i=t(\\\"ndarray-warp\\\"),o=t(\\\"gl-matrix-invert\\\");e.exports=n},{\\\"gl-matrix-invert\\\":204,\\\"ndarray-warp\\\":207}],209:[function(t,e,r){\\\"use strict\\\";function n(t){if(!t)return s;for(var e=0;e<t.args.length;++e){var r=t.args[e];0===e?t.args[e]={name:r,lvalue:!0,rvalue:!!t.rvalue,count:t.count||1}:t.args[e]={name:r,lvalue:!1,rvalue:!0,count:1}}return t.thisVars||(t.thisVars=[]),t.localVars||(t.localVars=[]),t}function i(t){return a({args:t.args,pre:n(t.pre),body:n(t.body),post:n(t.proc),funcName:t.funcName})}function o(t){for(var e=[],r=0;r<t.args.length;++r)e.push(\\\"a\\\"+r);var n=new Function(\\\"P\\\",[\\\"return function \\\",t.funcName,\\\"_ndarrayops(\\\",e.join(\\\",\\\"),\\\") {P(\\\",e.join(\\\",\\\"),\\\");return a0}\\\"].join(\\\"\\\"));return n(i(t))}var a=t(\\\"cwise-compiler\\\"),s={body:\\\"\\\",args:[],thisVars:[],localVars:[]},l={add:\\\"+\\\",sub:\\\"-\\\",mul:\\\"*\\\",div:\\\"/\\\",mod:\\\"%\\\",band:\\\"&\\\",bor:\\\"|\\\",bxor:\\\"^\\\",lshift:\\\"<<\\\",rshift:\\\">>\\\",rrshift:\\\">>>\\\"};!function(){for(var t in l){var e=l[t];r[t]=o({args:[\\\"array\\\",\\\"array\\\",\\\"array\\\"],body:{args:[\\\"a\\\",\\\"b\\\",\\\"c\\\"],body:\\\"a=b\\\"+e+\\\"c\\\"},funcName:t}),r[t+\\\"eq\\\"]=o({args:[\\\"array\\\",\\\"array\\\"],body:{args:[\\\"a\\\",\\\"b\\\"],body:\\\"a\\\"+e+\\\"=b\\\"},rvalue:!0,funcName:t+\\\"eq\\\"}),r[t+\\\"s\\\"]=o({args:[\\\"array\\\",\\\"array\\\",\\\"scalar\\\"],body:{args:[\\\"a\\\",\\\"b\\\",\\\"s\\\"],body:\\\"a=b\\\"+e+\\\"s\\\"},funcName:t+\\\"s\\\"}),r[t+\\\"seq\\\"]=o({args:[\\\"array\\\",\\\"scalar\\\"],body:{args:[\\\"a\\\",\\\"s\\\"],body:\\\"a\\\"+e+\\\"=s\\\"},rvalue:!0,funcName:t+\\\"seq\\\"})}}();var c={not:\\\"!\\\",bnot:\\\"~\\\",neg:\\\"-\\\",recip:\\\"1.0/\\\"};!function(){for(var t in c){var e=c[t];r[t]=o({args:[\\\"array\\\",\\\"array\\\"],body:{args:[\\\"a\\\",\\\"b\\\"],body:\\\"a=\\\"+e+\\\"b\\\"},funcName:t}),r[t+\\\"eq\\\"]=o({args:[\\\"array\\\"],body:{args:[\\\"a\\\"],body:\\\"a=\\\"+e+\\\"a\\\"},rvalue:!0,count:2,funcName:t+\\\"eq\\\"})}}();var u={and:\\\"&&\\\",or:\\\"||\\\",eq:\\\"===\\\",neq:\\\"!==\\\",lt:\\\"<\\\",gt:\\\">\\\",leq:\\\"<=\\\",geq:\\\">=\\\"};!function(){for(var t in u){var e=u[t];r[t]=o({args:[\\\"array\\\",\\\"array\\\",\\\"array\\\"],body:{args:[\\\"a\\\",\\\"b\\\",\\\"c\\\"],body:\\\"a=b\\\"+e+\\\"c\\\"},funcName:t}),r[t+\\\"s\\\"]=o({args:[\\\"array\\\",\\\"array\\\",\\\"scalar\\\"],body:{args:[\\\"a\\\",\\\"b\\\",\\\"s\\\"],body:\\\"a=b\\\"+e+\\\"s\\\"},funcName:t+\\\"s\\\"}),r[t+\\\"eq\\\"]=o({args:[\\\"array\\\",\\\"array\\\"],body:{args:[\\\"a\\\",\\\"b\\\"],body:\\\"a=a\\\"+e+\\\"b\\\"},rvalue:!0,count:2,funcName:t+\\\"eq\\\"}),r[t+\\\"seq\\\"]=o({args:[\\\"array\\\",\\\"scalar\\\"],body:{args:[\\\"a\\\",\\\"s\\\"],body:\\\"a=a\\\"+e+\\\"s\\\"},rvalue:!0,count:2,funcName:t+\\\"seq\\\"})}}();var h=[\\\"abs\\\",\\\"acos\\\",\\\"asin\\\",\\\"atan\\\",\\\"ceil\\\",\\\"cos\\\",\\\"exp\\\",\\\"floor\\\",\\\"log\\\",\\\"round\\\",\\\"sin\\\",\\\"sqrt\\\",\\\"tan\\\"];!function(){for(var t=0;t<h.length;++t){var e=h[t];r[e]=o({args:[\\\"array\\\",\\\"array\\\"],pre:{args:[],body:\\\"this_f=Math.\\\"+e,thisVars:[\\\"this_f\\\"]},body:{args:[\\\"a\\\",\\\"b\\\"],body:\\\"a=this_f(b)\\\",thisVars:[\\\"this_f\\\"]},funcName:e}),r[e+\\\"eq\\\"]=o({args:[\\\"array\\\"],pre:{args:[],body:\\\"this_f=Math.\\\"+e,thisVars:[\\\"this_f\\\"]},body:{args:[\\\"a\\\"],body:\\\"a=this_f(a)\\\",thisVars:[\\\"this_f\\\"]},rvalue:!0,count:2,funcName:e+\\\"eq\\\"})}}();var f=[\\\"max\\\",\\\"min\\\",\\\"atan2\\\",\\\"pow\\\"];!function(){for(var t=0;t<f.length;++t){var e=f[t];r[e]=o({args:[\\\"array\\\",\\\"array\\\",\\\"array\\\"],pre:{args:[],body:\\\"this_f=Math.\\\"+e,thisVars:[\\\"this_f\\\"]},body:{args:[\\\"a\\\",\\\"b\\\",\\\"c\\\"],body:\\\"a=this_f(b,c)\\\",thisVars:[\\\"this_f\\\"]},funcName:e}),r[e+\\\"s\\\"]=o({args:[\\\"array\\\",\\\"array\\\",\\\"scalar\\\"],pre:{args:[],body:\\\"this_f=Math.\\\"+e,thisVars:[\\\"this_f\\\"]},body:{args:[\\\"a\\\",\\\"b\\\",\\\"c\\\"],body:\\\"a=this_f(b,c)\\\",thisVars:[\\\"this_f\\\"]},funcName:e+\\\"s\\\"}),r[e+\\\"eq\\\"]=o({args:[\\\"array\\\",\\\"array\\\"],pre:{args:[],body:\\\"this_f=Math.\\\"+e,thisVars:[\\\"this_f\\\"]},body:{args:[\\\"a\\\",\\\"b\\\"],body:\\\"a=this_f(a,b)\\\",thisVars:[\\\"this_f\\\"]},rvalue:!0,count:2,funcName:e+\\\"eq\\\"}),r[e+\\\"seq\\\"]=o({args:[\\\"array\\\",\\\"scalar\\\"],pre:{args:[],body:\\\"this_f=Math.\\\"+e,thisVars:[\\\"this_f\\\"]},body:{args:[\\\"a\\\",\\\"b\\\"],body:\\\"a=this_f(a,b)\\\",thisVars:[\\\"this_f\\\"]},rvalue:!0,count:2,funcName:e+\\\"seq\\\"})}}();var d=[\\\"atan2\\\",\\\"pow\\\"];!function(){for(var t=0;t<d.length;++t){var e=d[t];r[e+\\\"op\\\"]=o({args:[\\\"array\\\",\\\"array\\\",\\\"array\\\"],pre:{args:[],body:\\\"this_f=Math.\\\"+e,thisVars:[\\\"this_f\\\"]},body:{args:[\\\"a\\\",\\\"b\\\",\\\"c\\\"],body:\\\"a=this_f(c,b)\\\",thisVars:[\\\"this_f\\\"]},funcName:e+\\\"op\\\"}),r[e+\\\"ops\\\"]=o({args:[\\\"array\\\",\\\"array\\\",\\\"scalar\\\"],pre:{args:[],body:\\\"this_f=Math.\\\"+e,thisVars:[\\\"this_f\\\"]},body:{args:[\\\"a\\\",\\\"b\\\",\\\"c\\\"],body:\\\"a=this_f(c,b)\\\",thisVars:[\\\"this_f\\\"]},funcName:e+\\\"ops\\\"}),r[e+\\\"opeq\\\"]=o({args:[\\\"array\\\",\\\"array\\\"],pre:{args:[],body:\\\"this_f=Math.\\\"+e,thisVars:[\\\"this_f\\\"]},body:{args:[\\\"a\\\",\\\"b\\\"],body:\\\"a=this_f(b,a)\\\",thisVars:[\\\"this_f\\\"]},rvalue:!0,count:2,funcName:e+\\\"opeq\\\"}),r[e+\\\"opseq\\\"]=o({args:[\\\"array\\\",\\\"scalar\\\"],pre:{args:[],body:\\\"this_f=Math.\\\"+e,thisVars:[\\\"this_f\\\"]},body:{args:[\\\"a\\\",\\\"b\\\"],body:\\\"a=this_f(b,a)\\\",thisVars:[\\\"this_f\\\"]},rvalue:!0,count:2,funcName:e+\\\"opseq\\\"})}}(),r.any=a({args:[\\\"array\\\"],pre:s,body:{args:[{name:\\\"a\\\",lvalue:!1,rvalue:!0,count:1}],body:\\\"if(a){return true}\\\",localVars:[],thisVars:[]},post:{args:[],localVars:[],thisVars:[],body:\\\"return false\\\"},funcName:\\\"any\\\"}),r.all=a({args:[\\\"array\\\"],pre:s,body:{args:[{name:\\\"x\\\",lvalue:!1,rvalue:!0,count:1}],body:\\\"if(!x){return false}\\\",localVars:[],thisVars:[]},post:{args:[],localVars:[],thisVars:[],body:\\\"return true\\\"},funcName:\\\"all\\\"}),r.sum=a({args:[\\\"array\\\"],pre:{args:[],localVars:[],thisVars:[\\\"this_s\\\"],body:\\\"this_s=0\\\"},body:{args:[{name:\\\"a\\\",lvalue:!1,rvalue:!0,count:1}],body:\\\"this_s+=a\\\",localVars:[],thisVars:[\\\"this_s\\\"]},post:{args:[],localVars:[],thisVars:[\\\"this_s\\\"],body:\\\"return this_s\\\"},funcName:\\\"sum\\\"}),r.prod=a({args:[\\\"array\\\"],pre:{args:[],localVars:[],thisVars:[\\\"this_s\\\"],body:\\\"this_s=1\\\"},body:{args:[{name:\\\"a\\\",lvalue:!1,rvalue:!0,count:1}],body:\\\"this_s*=a\\\",localVars:[],thisVars:[\\\"this_s\\\"]},post:{args:[],localVars:[],thisVars:[\\\"this_s\\\"],body:\\\"return this_s\\\"},funcName:\\\"prod\\\"}),r.norm2squared=a({args:[\\\"array\\\"],pre:{args:[],localVars:[],thisVars:[\\\"this_s\\\"],body:\\\"this_s=0\\\"},body:{args:[{name:\\\"a\\\",lvalue:!1,rvalue:!0,count:2}],body:\\\"this_s+=a*a\\\",localVars:[],thisVars:[\\\"this_s\\\"]},post:{args:[],localVars:[],thisVars:[\\\"this_s\\\"],body:\\\"return this_s\\\"},funcName:\\\"norm2squared\\\"}),r.norm2=a({args:[\\\"array\\\"],pre:{args:[],localVars:[],thisVars:[\\\"this_s\\\"],body:\\\"this_s=0\\\"},body:{args:[{name:\\\"a\\\",lvalue:!1,rvalue:!0,count:2}],body:\\\"this_s+=a*a\\\",localVars:[],thisVars:[\\\"this_s\\\"]},post:{args:[],localVars:[],thisVars:[\\\"this_s\\\"],body:\\\"return Math.sqrt(this_s)\\\"},funcName:\\\"norm2\\\"}),r.norminf=a({args:[\\\"array\\\"],pre:{args:[],localVars:[],thisVars:[\\\"this_s\\\"],body:\\\"this_s=0\\\"},body:{args:[{name:\\\"a\\\",lvalue:!1,rvalue:!0,count:4}],body:\\\"if(-a>this_s){this_s=-a}else if(a>this_s){this_s=a}\\\",localVars:[],thisVars:[\\\"this_s\\\"]},post:{args:[],localVars:[],thisVars:[\\\"this_s\\\"],body:\\\"return this_s\\\"},funcName:\\\"norminf\\\"}),r.norm1=a({args:[\\\"array\\\"],pre:{args:[],localVars:[],thisVars:[\\\"this_s\\\"],body:\\\"this_s=0\\\"},body:{args:[{name:\\\"a\\\",lvalue:!1,rvalue:!0,count:3}],body:\\\"this_s+=a<0?-a:a\\\",localVars:[],thisVars:[\\\"this_s\\\"]},post:{args:[],localVars:[],thisVars:[\\\"this_s\\\"],body:\\\"return this_s\\\"},funcName:\\\"norm1\\\"}),r.sup=a({args:[\\\"array\\\"],pre:{body:\\\"this_h=-Infinity\\\",args:[],thisVars:[\\\"this_h\\\"],localVars:[]},body:{body:\\\"if(_inline_1_arg0_>this_h)this_h=_inline_1_arg0_\\\",args:[{name:\\\"_inline_1_arg0_\\\",lvalue:!1,rvalue:!0,count:2}],thisVars:[\\\"this_h\\\"],localVars:[]},post:{body:\\\"return this_h\\\",args:[],thisVars:[\\\"this_h\\\"],localVars:[]}}),r.inf=a({args:[\\\"array\\\"],pre:{body:\\\"this_h=Infinity\\\",args:[],thisVars:[\\\"this_h\\\"],localVars:[]},body:{body:\\\"if(_inline_1_arg0_<this_h)this_h=_inline_1_arg0_\\\",args:[{name:\\\"_inline_1_arg0_\\\",lvalue:!1,rvalue:!0,count:2}],thisVars:[\\\"this_h\\\"],localVars:[]},post:{body:\\\"return this_h\\\",args:[],thisVars:[\\\"this_h\\\"],localVars:[]}}),r.argmin=a({args:[\\\"index\\\",\\\"array\\\",\\\"shape\\\"],pre:{body:\\\"{this_v=Infinity;this_i=_inline_0_arg2_.slice(0)}\\\",args:[{name:\\\"_inline_0_arg0_\\\",lvalue:!1,rvalue:!1,count:0},{name:\\\"_inline_0_arg1_\\\",lvalue:!1,rvalue:!1,count:0},{name:\\\"_inline_0_arg2_\\\",lvalue:!1,rvalue:!0,count:1}],thisVars:[\\\"this_i\\\",\\\"this_v\\\"],localVars:[]},body:{body:\\\"{if(_inline_1_arg1_<this_v){this_v=_inline_1_arg1_;for(var _inline_1_k=0;_inline_1_k<_inline_1_arg0_.length;++_inline_1_k){this_i[_inline_1_k]=_inline_1_arg0_[_inline_1_k]}}}\\\",args:[{name:\\\"_inline_1_arg0_\\\",lvalue:!1,rvalue:!0,count:2},{name:\\\"_inline_1_arg1_\\\",lvalue:!1,rvalue:!0,count:2}],thisVars:[\\\"this_i\\\",\\\"this_v\\\"],localVars:[\\\"_inline_1_k\\\"]},post:{body:\\\"{return this_i}\\\",args:[],thisVars:[\\\"this_i\\\"],localVars:[]}}),r.argmax=a({args:[\\\"index\\\",\\\"array\\\",\\\"shape\\\"],pre:{body:\\\"{this_v=-Infinity;this_i=_inline_0_arg2_.slice(0)}\\\",args:[{name:\\\"_inline_0_arg0_\\\",lvalue:!1,rvalue:!1,count:0},{name:\\\"_inline_0_arg1_\\\",lvalue:!1,rvalue:!1,count:0},{name:\\\"_inline_0_arg2_\\\",lvalue:!1,rvalue:!0,count:1}],thisVars:[\\\"this_i\\\",\\\"this_v\\\"],localVars:[]},body:{body:\\\"{if(_inline_1_arg1_>this_v){this_v=_inline_1_arg1_;for(var _inline_1_k=0;_inline_1_k<_inline_1_arg0_.length;++_inline_1_k){this_i[_inline_1_k]=_inline_1_arg0_[_inline_1_k]}}}\\\",args:[{name:\\\"_inline_1_arg0_\\\",lvalue:!1,rvalue:!0,count:2},{name:\\\"_inline_1_arg1_\\\",lvalue:!1,rvalue:!0,count:2}],thisVars:[\\\"this_i\\\",\\\"this_v\\\"],localVars:[\\\"_inline_1_k\\\"]},post:{body:\\\"{return this_i}\\\",args:[],thisVars:[\\\"this_i\\\"],localVars:[]}}),r.random=o({args:[\\\"array\\\"],pre:{args:[],body:\\\"this_f=Math.random\\\",thisVars:[\\\"this_f\\\"]},body:{args:[\\\"a\\\"],body:\\\"a=this_f()\\\",thisVars:[\\\"this_f\\\"]},funcName:\\\"random\\\"}),r.assign=o({args:[\\\"array\\\",\\\"array\\\"],body:{args:[\\\"a\\\",\\\"b\\\"],body:\\\"a=b\\\"},funcName:\\\"assign\\\"}),r.assigns=o({args:[\\\"array\\\",\\\"scalar\\\"],body:{args:[\\\"a\\\",\\\"b\\\"],body:\\\"a=b\\\"},funcName:\\\"assigns\\\"}),r.equals=a({args:[\\\"array\\\",\\\"array\\\"],pre:s,body:{args:[{name:\\\"x\\\",lvalue:!1,rvalue:!0,count:1},{name:\\\"y\\\",lvalue:!1,rvalue:!0,count:1}],body:\\\"if(x!==y){return false}\\\",localVars:[],thisVars:[]},post:{args:[],localVars:[],thisVars:[],body:\\\"return true\\\"},funcName:\\\"equals\\\"})},{\\\"cwise-compiler\\\":66}],210:[function(t,e,r){function n(t,e){return t[0]-e[0]}function i(){var t,e=this.stride,r=new Array(e.length);for(t=0;t<r.length;++t)r[t]=[Math.abs(e[t]),t];r.sort(n);var i=new Array(r.length);for(t=0;t<i.length;++t)i[t]=r[t][1];return i}function o(t,e){var r=[\\\"View\\\",e,\\\"d\\\",t].join(\\\"\\\");0>e&&(r=\\\"View_Nil\\\"+t);var n=\\\"generic\\\"===t;if(-1===e){var o=\\\"function \\\"+r+\\\"(a){this.data=a;};var proto=\\\"+r+\\\".prototype;proto.dtype='\\\"+t+\\\"';proto.index=function(){return -1};proto.size=0;proto.dimension=-1;proto.shape=proto.stride=proto.order=[];proto.lo=proto.hi=proto.transpose=proto.step=function(){return new \\\"+r+\\\"(this.data);};proto.get=proto.set=function(){};proto.pick=function(){return null};return function construct_\\\"+r+\\\"(a){return new \\\"+r+\\\"(a);}\\\",a=new Function(o);return a()}if(0===e){var o=\\\"function \\\"+r+\\\"(a,d) {this.data = a;this.offset = d};var proto=\\\"+r+\\\".prototype;proto.dtype='\\\"+t+\\\"';proto.index=function(){return this.offset};proto.dimension=0;proto.size=1;proto.shape=proto.stride=proto.order=[];proto.lo=proto.hi=proto.transpose=proto.step=function \\\"+r+\\\"_copy() {return new \\\"+r+\\\"(this.data,this.offset)};proto.pick=function \\\"+r+\\\"_pick(){return TrivialArray(this.data);};proto.valueOf=proto.get=function \\\"+r+\\\"_get(){return \\\"+(n?\\\"this.data.get(this.offset)\\\":\\\"this.data[this.offset]\\\")+\\\"};proto.set=function \\\"+r+\\\"_set(v){return \\\"+(n?\\\"this.data.set(this.offset,v)\\\":\\\"this.data[this.offset]=v\\\")+\\\"};return function construct_\\\"+r+\\\"(a,b,c,d){return new \\\"+r+\\\"(a,d)}\\\",a=new Function(\\\"TrivialArray\\\",o);return a(h[t][0])}var o=[\\\"'use strict'\\\"],s=l(e),c=s.map(function(t){return\\\"i\\\"+t}),u=\\\"this.offset+\\\"+s.map(function(t){return\\\"this.stride[\\\"+t+\\\"]*i\\\"+t}).join(\\\"+\\\"),f=s.map(function(t){return\\\"b\\\"+t}).join(\\\",\\\"),d=s.map(function(t){return\\\"c\\\"+t}).join(\\\",\\\");o.push(\\\"function \\\"+r+\\\"(a,\\\"+f+\\\",\\\"+d+\\\",d){this.data=a\\\",\\\"this.shape=[\\\"+f+\\\"]\\\",\\\"this.stride=[\\\"+d+\\\"]\\\",\\\"this.offset=d|0}\\\",\\\"var proto=\\\"+r+\\\".prototype\\\",\\\"proto.dtype='\\\"+t+\\\"'\\\",\\\"proto.dimension=\\\"+e),o.push(\\\"Object.defineProperty(proto,'size',{get:function \\\"+r+\\\"_size(){return \\\"+s.map(function(t){return\\\"this.shape[\\\"+t+\\\"]\\\"}).join(\\\"*\\\"),\\\"}})\\\"),1===e?o.push(\\\"proto.order=[0]\\\"):(o.push(\\\"Object.defineProperty(proto,'order',{get:\\\"),4>e?(o.push(\\\"function \\\"+r+\\\"_order(){\\\"),2===e?o.push(\\\"return (Math.abs(this.stride[0])>Math.abs(this.stride[1]))?[1,0]:[0,1]}})\\\"):3===e&&o.push(\\\"var s0=Math.abs(this.stride[0]),s1=Math.abs(this.stride[1]),s2=Math.abs(this.stride[2]);if(s0>s1){if(s1>s2){return [2,1,0];}else if(s0>s2){return [1,2,0];}else{return [1,0,2];}}else if(s0>s2){return [2,0,1];}else if(s2>s1){return [0,1,2];}else{return [0,2,1];}}})\\\")):o.push(\\\"ORDER})\\\")),o.push(\\\"proto.set=function \\\"+r+\\\"_set(\\\"+c.join(\\\",\\\")+\\\",v){\\\"),n?o.push(\\\"return this.data.set(\\\"+u+\\\",v)}\\\"):o.push(\\\"return this.data[\\\"+u+\\\"]=v}\\\"),o.push(\\\"proto.get=function \\\"+r+\\\"_get(\\\"+c.join(\\\",\\\")+\\\"){\\\"),n?o.push(\\\"return this.data.get(\\\"+u+\\\")}\\\"):o.push(\\\"return this.data[\\\"+u+\\\"]}\\\"),o.push(\\\"proto.index=function \\\"+r+\\\"_index(\\\",c.join(),\\\"){return \\\"+u+\\\"}\\\"),o.push(\\\"proto.hi=function \\\"+r+\\\"_hi(\\\"+c.join(\\\",\\\")+\\\"){return new \\\"+r+\\\"(this.data,\\\"+s.map(function(t){return[\\\"(typeof i\\\",t,\\\"!=='number'||i\\\",t,\\\"<0)?this.shape[\\\",t,\\\"]:i\\\",t,\\\"|0\\\"].join(\\\"\\\")}).join(\\\",\\\")+\\\",\\\"+s.map(function(t){return\\\"this.stride[\\\"+t+\\\"]\\\"}).join(\\\",\\\")+\\\",this.offset)}\\\");var p=s.map(function(t){return\\\"a\\\"+t+\\\"=this.shape[\\\"+t+\\\"]\\\"}),g=s.map(function(t){return\\\"c\\\"+t+\\\"=this.stride[\\\"+t+\\\"]\\\"});o.push(\\\"proto.lo=function \\\"+r+\\\"_lo(\\\"+c.join(\\\",\\\")+\\\"){var b=this.offset,d=0,\\\"+p.join(\\\",\\\")+\\\",\\\"+g.join(\\\",\\\"));for(var v=0;e>v;++v)o.push(\\\"if(typeof i\\\"+v+\\\"==='number'&&i\\\"+v+\\\">=0){d=i\\\"+v+\\\"|0;b+=c\\\"+v+\\\"*d;a\\\"+v+\\\"-=d}\\\");o.push(\\\"return new \\\"+r+\\\"(this.data,\\\"+s.map(function(t){return\\\"a\\\"+t}).join(\\\",\\\")+\\\",\\\"+s.map(function(t){return\\\"c\\\"+t}).join(\\\",\\\")+\\\",b)}\\\"),o.push(\\\"proto.step=function \\\"+r+\\\"_step(\\\"+c.join(\\\",\\\")+\\\"){var \\\"+s.map(function(t){return\\\"a\\\"+t+\\\"=this.shape[\\\"+t+\\\"]\\\"}).join(\\\",\\\")+\\\",\\\"+s.map(function(t){return\\\"b\\\"+t+\\\"=this.stride[\\\"+t+\\\"]\\\"}).join(\\\",\\\")+\\\",c=this.offset,d=0,ceil=Math.ceil\\\");for(var v=0;e>v;++v)o.push(\\\"if(typeof i\\\"+v+\\\"==='number'){d=i\\\"+v+\\\"|0;if(d<0){c+=b\\\"+v+\\\"*(a\\\"+v+\\\"-1);a\\\"+v+\\\"=ceil(-a\\\"+v+\\\"/d)}else{a\\\"+v+\\\"=ceil(a\\\"+v+\\\"/d)}b\\\"+v+\\\"*=d}\\\");o.push(\\\"return new \\\"+r+\\\"(this.data,\\\"+s.map(function(t){return\\\"a\\\"+t}).join(\\\",\\\")+\\\",\\\"+s.map(function(t){return\\\"b\\\"+t}).join(\\\",\\\")+\\\",c)}\\\");for(var m=new Array(e),y=new Array(e),v=0;e>v;++v)m[v]=\\\"a[i\\\"+v+\\\"]\\\",y[v]=\\\"b[i\\\"+v+\\\"]\\\";o.push(\\\"proto.transpose=function \\\"+r+\\\"_transpose(\\\"+c+\\\"){\\\"+c.map(function(t,e){return t+\\\"=(\\\"+t+\\\"===undefined?\\\"+e+\\\":\\\"+t+\\\"|0)\\\"}).join(\\\";\\\"),\\\"var a=this.shape,b=this.stride;return new \\\"+r+\\\"(this.data,\\\"+m.join(\\\",\\\")+\\\",\\\"+y.join(\\\",\\\")+\\\",this.offset)}\\\"),o.push(\\\"proto.pick=function \\\"+r+\\\"_pick(\\\"+c+\\\"){var a=[],b=[],c=this.offset\\\");for(var v=0;e>v;++v)o.push(\\\"if(typeof i\\\"+v+\\\"==='number'&&i\\\"+v+\\\">=0){c=(c+this.stride[\\\"+v+\\\"]*i\\\"+v+\\\")|0}else{a.push(this.shape[\\\"+v+\\\"]);b.push(this.stride[\\\"+v+\\\"])}\\\");o.push(\\\"var ctor=CTOR_LIST[a.length+1];return ctor(this.data,a,b,c)}\\\"),o.push(\\\"return function construct_\\\"+r+\\\"(data,shape,stride,offset){return new \\\"+r+\\\"(data,\\\"+s.map(function(t){return\\\"shape[\\\"+t+\\\"]\\\"}).join(\\\",\\\")+\\\",\\\"+s.map(function(t){return\\\"stride[\\\"+t+\\\"]\\\"}).join(\\\",\\\")+\\\",offset)}\\\");var a=new Function(\\\"CTOR_LIST\\\",\\\"ORDER\\\",o.join(\\\"\\\\n\\\"));return a(h[t],i)}function a(t){if(c(t))return\\\"buffer\\\";if(u)switch(Object.prototype.toString.call(t)){case\\\"[object Float64Array]\\\":return\\\"float64\\\";case\\\"[object Float32Array]\\\":return\\\"float32\\\";case\\\"[object Int8Array]\\\":return\\\"int8\\\";case\\\"[object Int16Array]\\\":return\\\"int16\\\";case\\\"[object Int32Array]\\\":return\\\"int32\\\";case\\\"[object Uint8Array]\\\":return\\\"uint8\\\";case\\\"[object Uint16Array]\\\":return\\\"uint16\\\";case\\\"[object Uint32Array]\\\":return\\\"uint32\\\";case\\\"[object Uint8ClampedArray]\\\":return\\\"uint8_clamped\\\"}return Array.isArray(t)?\\\"array\\\":\\\"generic\\\"}function s(t,e,r,n){if(void 0===t){var i=h.array[0];return i([])}\\\"number\\\"==typeof t&&(t=[t]),void 0===e&&(e=[t.length]);var s=e.length;if(void 0===r){r=new Array(s);for(var l=s-1,c=1;l>=0;--l)r[l]=c,c*=e[l]}if(void 0===n){n=0;for(var l=0;s>l;++l)r[l]<0&&(n-=(e[l]-1)*r[l])}for(var u=a(t),f=h[u];f.length<=s+1;)f.push(o(u,f.length-1));var i=f[s+1];return i(t,e,r,n)}var l=t(\\\"iota-array\\\"),c=t(\\\"is-buffer\\\"),u=\\\"undefined\\\"!=typeof Float64Array,h={float32:[],float64:[],int8:[],int16:[],int32:[],uint8:[],uint16:[],uint32:[],array:[],uint8_clamped:[],buffer:[],generic:[]};e.exports=s},{\\\"iota-array\\\":197,\\\"is-buffer\\\":211}],211:[function(t,e,r){e.exports=function(t){return!(null==t||!(t._isBuffer||t.constructor&&\\\"function\\\"==typeof t.constructor.isBuffer&&t.constructor.isBuffer(t)))}},{}],212:[function(t,e,r){(function(t){e.exports=t.performance&&t.performance.now?function(){return performance.now()}:Date.now||function(){return+new Date}}).call(this,\\\"undefined\\\"!=typeof global?global:\\\"undefined\\\"!=typeof self?self:\\\"undefined\\\"!=typeof window?window:{})},{}],213:[function(t,e,r){\\\"use strict\\\";function n(t){for(var e=\\\"robustLinearSolve\\\"+t+\\\"d\\\",r=[\\\"function \\\",e,\\\"(A,b){return [\\\"],n=0;t>n;++n){r.push(\\\"det([\\\");for(var i=0;t>i;++i){i>0&&r.push(\\\",\\\"),r.push(\\\"[\\\");for(var o=0;t>o;++o)o>0&&r.push(\\\",\\\"),o===n?r.push(\\\"+b[\\\",i,\\\"]\\\"):r.push(\\\"+A[\\\",i,\\\"][\\\",o,\\\"]\\\");r.push(\\\"]\\\")}r.push(\\\"]),\\\")}r.push(\\\"det(A)]}return \\\",e);var a=new Function(\\\"det\\\",r.join(\\\"\\\"));return a(6>t?s[t]:s)}function i(){return[0]}function o(t,e){return[[e[0]],[t[0][0]]]}function a(){for(;c.length<l;)c.push(n(c.length));for(var t=[],r=[\\\"function dispatchLinearSolve(A,b){switch(A.length){\\\"],i=0;l>i;++i)t.push(\\\"s\\\"+i),r.push(\\\"case \\\",i,\\\":return s\\\",i,\\\"(A,b);\\\");r.push(\\\"}var s=CACHE[A.length];if(!s)s=CACHE[A.length]=g(A.length);return s(A,b)}return dispatchLinearSolve\\\"),t.push(\\\"CACHE\\\",\\\"g\\\",r.join(\\\"\\\"));var o=Function.apply(void 0,t);e.exports=o.apply(void 0,c.concat([c,n]));for(var i=0;l>i;++i)e.exports[i]=c[i]}var s=t(\\\"robust-determinant\\\"),l=6,c=[i,o];a()},{\\\"robust-determinant\\\":215}],214:[function(t,e,r){\\\"use strict\\\";function n(t){for(var e=t.length,r=t[t.length-1],n=e,i=e-2;i>=0;--i){var o=r,a=t[i];r=o+a;var s=r-o,l=a-s;l&&(t[--n]=r,r=l)}for(var c=0,i=n;e>i;++i){var o=t[i],a=r;r=o+a;var s=r-o,l=a-s;l&&(t[c++]=l)}return t[c++]=r,t.length=c,t}e.exports=n},{}],215:[function(t,e,r){\\\"use strict\\\";function n(t,e){for(var r=new Array(t.length-1),n=1;n<t.length;++n)for(var i=r[n-1]=new Array(t.length-1),o=0,a=0;o<t.length;++o)o!==e&&(i[a++]=t[n][o]);return r}function i(t){for(var e=new Array(t),r=0;t>r;++r){e[r]=new Array(t);for(var n=0;t>n;++n)e[r][n]=[\\\"m[\\\",r,\\\"][\\\",n,\\\"]\\\"].join(\\\"\\\")}return e}function o(t){return 1&t?\\\"-\\\":\\\"\\\"}function a(t){if(1===t.length)return t[0];if(2===t.length)return[\\\"sum(\\\",t[0],\\\",\\\",t[1],\\\")\\\"].join(\\\"\\\");var e=t.length>>1;return[\\\"sum(\\\",a(t.slice(0,e)),\\\",\\\",a(t.slice(e)),\\\")\\\"].join(\\\"\\\")}function s(t){if(2===t.length)return[\\\"sum(prod(\\\",t[0][0],\\\",\\\",t[1][1],\\\"),prod(-\\\",t[0][1],\\\",\\\",t[1][0],\\\"))\\\"].join(\\\"\\\");for(var e=[],r=0;r<t.length;++r)e.push([\\\"scale(\\\",s(n(t,r)),\\\",\\\",o(r),t[0][r],\\\")\\\"].join(\\\"\\\"));return a(e)}function l(t){var e=new Function(\\\"sum\\\",\\\"scale\\\",\\\"prod\\\",\\\"compress\\\",[\\\"function robustDeterminant\\\",t,\\\"(m){return compress(\\\",s(i(t)),\\\")};return robustDeterminant\\\",t].join(\\\"\\\"));return e(h,f,u,d)}function c(){for(;g.length<p;)g.push(l(g.length));for(var t=[],r=[\\\"function robustDeterminant(m){switch(m.length){\\\"],n=0;p>n;++n)t.push(\\\"det\\\"+n),r.push(\\\"case \\\",n,\\\":return det\\\",n,\\\"(m);\\\");r.push(\\\"}var det=CACHE[m.length];if(!det)det=CACHE[m.length]=gen(m.length);return det(m);}return robustDeterminant\\\"),t.push(\\\"CACHE\\\",\\\"gen\\\",r.join(\\\"\\\"));var i=Function.apply(void 0,t);e.exports=i.apply(void 0,g.concat([g,l]));for(var n=0;n<g.length;++n)e.exports[n]=g[n]}var u=t(\\\"two-product\\\"),h=t(\\\"robust-sum\\\"),f=t(\\\"robust-scale\\\"),d=t(\\\"robust-compress\\\"),p=6,g=[function(){return[0]},function(t){return[t[0][0]]}];c()},{\\\"robust-compress\\\":214,\\\"robust-scale\\\":217,\\\"robust-sum\\\":219,\\\"two-product\\\":233}],216:[function(t,e,r){\\\"use strict\\\";function n(t,e){for(var r=new Array(t.length-1),n=1;n<t.length;++n)for(var i=r[n-1]=new Array(t.length-1),o=0,a=0;o<t.length;++o)o!==e&&(i[a++]=t[n][o]);return r}function i(t){for(var e=new Array(t),r=0;t>r;++r){e[r]=new Array(t);for(var n=0;t>n;++n)e[r][n]=[\\\"m\\\",n,\\\"[\\\",t-r-1,\\\"]\\\"].join(\\\"\\\")}return e}function o(t){return 1&t?\\\"-\\\":\\\"\\\"}function a(t){if(1===t.length)return t[0];if(2===t.length)return[\\\"sum(\\\",t[0],\\\",\\\",t[1],\\\")\\\"].join(\\\"\\\");var e=t.length>>1;return[\\\"sum(\\\",a(t.slice(0,e)),\\\",\\\",a(t.slice(e)),\\\")\\\"].join(\\\"\\\")}function s(t){if(2===t.length)return[[\\\"sum(prod(\\\",t[0][0],\\\",\\\",t[1][1],\\\"),prod(-\\\",t[0][1],\\\",\\\",t[1][0],\\\"))\\\"].join(\\\"\\\")];for(var e=[],r=0;r<t.length;++r)e.push([\\\"scale(\\\",a(s(n(t,r))),\\\",\\\",o(r),t[0][r],\\\")\\\"].join(\\\"\\\"));return e}function l(t){for(var e=[],r=[],o=i(t),l=[],c=0;t>c;++c)0===(1&c)?e.push.apply(e,s(n(o,c))):r.push.apply(r,s(n(o,c))),l.push(\\\"m\\\"+c);var u=a(e),g=a(r),v=\\\"orientation\\\"+t+\\\"Exact\\\",m=[\\\"function \\\",v,\\\"(\\\",l.join(),\\\"){var p=\\\",u,\\\",n=\\\",g,\\\",d=sub(p,n);return d[d.length-1];};return \\\",v].join(\\\"\\\"),y=new Function(\\\"sum\\\",\\\"prod\\\",\\\"scale\\\",\\\"sub\\\",m);return y(f,h,d,p)}function c(t){var e=_[t.length];return e||(e=_[t.length]=l(t.length)),e.apply(void 0,t)}function u(){for(;_.length<=g;)_.push(l(_.length));for(var t=[],r=[\\\"slow\\\"],n=0;g>=n;++n)t.push(\\\"a\\\"+n),r.push(\\\"o\\\"+n);for(var i=[\\\"function getOrientation(\\\",t.join(),\\\"){switch(arguments.length){case 0:case 1:return 0;\\\"],n=2;g>=n;++n)i.push(\\\"case \\\",n,\\\":return o\\\",n,\\\"(\\\",t.slice(0,n).join(),\\\");\\\");i.push(\\\"}var s=new Array(arguments.length);for(var i=0;i<arguments.length;++i){s[i]=arguments[i]};return slow(s);}return getOrientation\\\"),r.push(i.join(\\\"\\\"));var o=Function.apply(void 0,r);e.exports=o.apply(void 0,[c].concat(_));for(var n=0;g>=n;++n)e.exports[n]=_[n]}var h=t(\\\"two-product\\\"),f=t(\\\"robust-sum\\\"),d=t(\\\"robust-scale\\\"),p=t(\\\"robust-subtract\\\"),g=5,v=1.1102230246251565e-16,m=(3+16*v)*v,y=(7+56*v)*v,b=l(3),x=l(4),_=[function(){return 0},function(){return 0},function(t,e){return e[0]-t[0]},function(t,e,r){var n,i=(t[1]-r[1])*(e[0]-r[0]),o=(t[0]-r[0])*(e[1]-r[1]),a=i-o;if(i>0){if(0>=o)return a;n=i+o}else{if(!(0>i))return a;if(o>=0)return a;n=-(i+o)}var s=m*n;return a>=s||-s>=a?a:b(t,e,r)},function(t,e,r,n){var i=t[0]-n[0],o=e[0]-n[0],a=r[0]-n[0],s=t[1]-n[1],l=e[1]-n[1],c=r[1]-n[1],u=t[2]-n[2],h=e[2]-n[2],f=r[2]-n[2],d=o*c,p=a*l,g=a*s,v=i*c,m=i*l,b=o*s,_=u*(d-p)+h*(g-v)+f*(m-b),w=(Math.abs(d)+Math.abs(p))*Math.abs(u)+(Math.abs(g)+Math.abs(v))*Math.abs(h)+(Math.abs(m)+Math.abs(b))*Math.abs(f),A=y*w;return _>A||-_>A?_:x(t,e,r,n)}];u()},{\\\"robust-scale\\\":217,\\\"robust-subtract\\\":218,\\\"robust-sum\\\":219,\\\"two-product\\\":233}],217:[function(t,e,r){\\\"use strict\\\";function n(t,e){var r=t.length;if(1===r){var n=i(t[0],e);return n[0]?n:[n[1]]}var a=new Array(2*r),s=[.1,.1],l=[.1,.1],c=0;i(t[0],e,s),s[0]&&(a[c++]=s[0]);for(var u=1;r>u;++u){i(t[u],e,l);var h=s[1];o(h,l[0],s),s[0]&&(a[c++]=s[0]);var f=l[1],d=s[1],p=f+d,g=p-f,v=d-g;s[1]=p,v&&(a[c++]=v)}return s[1]&&(a[c++]=s[1]),0===c&&(a[c++]=0),a.length=c,a}var i=t(\\\"two-product\\\"),o=t(\\\"two-sum\\\");e.exports=n},{\\\"two-product\\\":233,\\\"two-sum\\\":234}],218:[function(t,e,r){\\\"use strict\\\";function n(t,e){var r=t+e,n=r-t,i=r-n,o=e-n,a=t-i,s=a+o;return s?[s,r]:[r]}function i(t,e){var r=0|t.length,i=0|e.length;if(1===r&&1===i)return n(t[0],-e[0]);var o,a,s=r+i,l=new Array(s),c=0,u=0,h=0,f=Math.abs,d=t[u],p=f(d),g=-e[h],v=f(g);v>p?(a=d,u+=1,r>u&&(d=t[u],p=f(d))):(a=g,h+=1,i>h&&(g=-e[h],v=f(g))),r>u&&v>p||h>=i?(o=d,u+=1,r>u&&(d=t[u],p=f(d))):(o=g,h+=1,i>h&&(g=-e[h],v=f(g)));for(var m,y,b,x,_,w=o+a,A=w-o,k=a-A,M=k,T=w;r>u&&i>h;)v>p?(o=d,\\n\",\n       \"u+=1,r>u&&(d=t[u],p=f(d))):(o=g,h+=1,i>h&&(g=-e[h],v=f(g))),a=M,w=o+a,A=w-o,k=a-A,k&&(l[c++]=k),m=T+w,y=m-T,b=m-y,x=w-y,_=T-b,M=_+x,T=m;for(;r>u;)o=d,a=M,w=o+a,A=w-o,k=a-A,k&&(l[c++]=k),m=T+w,y=m-T,b=m-y,x=w-y,_=T-b,M=_+x,T=m,u+=1,r>u&&(d=t[u]);for(;i>h;)o=g,a=M,w=o+a,A=w-o,k=a-A,k&&(l[c++]=k),m=T+w,y=m-T,b=m-y,x=w-y,_=T-b,M=_+x,T=m,h+=1,i>h&&(g=-e[h]);return M&&(l[c++]=M),T&&(l[c++]=T),c||(l[c++]=0),l.length=c,l}e.exports=i},{}],219:[function(t,e,r){\\\"use strict\\\";function n(t,e){var r=t+e,n=r-t,i=r-n,o=e-n,a=t-i,s=a+o;return s?[s,r]:[r]}function i(t,e){var r=0|t.length,i=0|e.length;if(1===r&&1===i)return n(t[0],e[0]);var o,a,s=r+i,l=new Array(s),c=0,u=0,h=0,f=Math.abs,d=t[u],p=f(d),g=e[h],v=f(g);v>p?(a=d,u+=1,r>u&&(d=t[u],p=f(d))):(a=g,h+=1,i>h&&(g=e[h],v=f(g))),r>u&&v>p||h>=i?(o=d,u+=1,r>u&&(d=t[u],p=f(d))):(o=g,h+=1,i>h&&(g=e[h],v=f(g)));for(var m,y,b,x,_,w=o+a,A=w-o,k=a-A,M=k,T=w;r>u&&i>h;)v>p?(o=d,u+=1,r>u&&(d=t[u],p=f(d))):(o=g,h+=1,i>h&&(g=e[h],v=f(g))),a=M,w=o+a,A=w-o,k=a-A,k&&(l[c++]=k),m=T+w,y=m-T,b=m-y,x=w-y,_=T-b,M=_+x,T=m;for(;r>u;)o=d,a=M,w=o+a,A=w-o,k=a-A,k&&(l[c++]=k),m=T+w,y=m-T,b=m-y,x=w-y,_=T-b,M=_+x,T=m,u+=1,r>u&&(d=t[u]);for(;i>h;)o=g,a=M,w=o+a,A=w-o,k=a-A,k&&(l[c++]=k),m=T+w,y=m-T,b=m-y,x=w-y,_=T-b,M=_+x,T=m,h+=1,i>h&&(g=e[h]);return M&&(l[c++]=M),T&&(l[c++]=T),c||(l[c++]=0),l.length=c,l}e.exports=i},{}],220:[function(t,e,r){\\\"use strict\\\";function n(t){return t.split(\\\"\\\").map(function(t){return t in i?i[t]:\\\"\\\"}).join(\\\"\\\")}e.exports=n;var i={\\\" \\\":\\\" \\\",0:\\\"\\\\u2070\\\",1:\\\"\\\\xb9\\\",2:\\\"\\\\xb2\\\",3:\\\"\\\\xb3\\\",4:\\\"\\\\u2074\\\",5:\\\"\\\\u2075\\\",6:\\\"\\\\u2076\\\",7:\\\"\\\\u2077\\\",8:\\\"\\\\u2078\\\",9:\\\"\\\\u2079\\\",\\\"+\\\":\\\"\\\\u207a\\\",\\\"-\\\":\\\"\\\\u207b\\\",a:\\\"\\\\u1d43\\\",b:\\\"\\\\u1d47\\\",c:\\\"\\\\u1d9c\\\",d:\\\"\\\\u1d48\\\",e:\\\"\\\\u1d49\\\",f:\\\"\\\\u1da0\\\",g:\\\"\\\\u1d4d\\\",h:\\\"\\\\u02b0\\\",i:\\\"\\\\u2071\\\",j:\\\"\\\\u02b2\\\",k:\\\"\\\\u1d4f\\\",l:\\\"\\\\u02e1\\\",m:\\\"\\\\u1d50\\\",n:\\\"\\\\u207f\\\",o:\\\"\\\\u1d52\\\",p:\\\"\\\\u1d56\\\",r:\\\"\\\\u02b3\\\",s:\\\"\\\\u02e2\\\",t:\\\"\\\\u1d57\\\",u:\\\"\\\\u1d58\\\",v:\\\"\\\\u1d5b\\\",w:\\\"\\\\u02b7\\\",x:\\\"\\\\u02e3\\\",y:\\\"\\\\u02b8\\\",z:\\\"\\\\u1dbb\\\"}},{}],221:[function(t,e,r){\\\"use strict\\\";function n(t){return\\\"a\\\"+t}function i(t){return\\\"d\\\"+t}function o(t,e){return\\\"c\\\"+t+\\\"_\\\"+e}function a(t){return\\\"s\\\"+t}function s(t,e){return\\\"t\\\"+t+\\\"_\\\"+e}function l(t){return\\\"o\\\"+t}function c(t){return\\\"x\\\"+t}function u(t){return\\\"p\\\"+t}function h(t,e){return\\\"d\\\"+t+\\\"_\\\"+e}function f(t){return\\\"i\\\"+t}function d(t,e){return\\\"u\\\"+t+\\\"_\\\"+e}function p(t){return\\\"b\\\"+t}function g(t){return\\\"y\\\"+t}function v(t){return\\\"e\\\"+t}function m(t){return\\\"v\\\"+t}function y(t,e,r){for(var n=0,i=0;t>i;++i)e&1<<i&&(n|=1<<r[i]);return n}function b(t,e,r,b,x,L){function S(t,e){F.push(\\\"for(\\\",f(x[t]),\\\"=\\\",e,\\\";\\\",f(x[t]),\\\"<\\\",a(x[t]),\\\";\\\",\\\"++\\\",f(x[t]),\\\"){\\\")}function C(t){for(var e=0;I>e;++e)F.push(u(e),\\\"+=\\\",d(e,x[t]),\\\";\\\");F.push(\\\"}\\\")}function P(t){for(var e=t-1;e>=0;--e)S(e,0);for(var r=[],e=0;I>e;++e)L[e]?r.push(i(e)+\\\".get(\\\"+u(e)+\\\")\\\"):r.push(i(e)+\\\"[\\\"+u(e)+\\\"]\\\");for(var e=0;b>e;++e)r.push(c(e));F.push(A,\\\"[\\\",T,\\\"++]=phase(\\\",r.join(),\\\");\\\");for(var e=0;t>e;++e)C(e);for(var n=0;I>n;++n)F.push(u(n),\\\"+=\\\",d(n,x[t]),\\\";\\\")}function z(t){for(var e=0;I>e;++e)L[e]?F.push(o(e,0),\\\"=\\\",i(e),\\\".get(\\\",u(e),\\\");\\\"):F.push(o(e,0),\\\"=\\\",i(e),\\\"[\\\",u(e),\\\"];\\\");for(var r=[],e=0;I>e;++e)r.push(o(e,0));for(var e=0;b>e;++e)r.push(c(e));F.push(p(0),\\\"=\\\",A,\\\"[\\\",T,\\\"]=phase(\\\",r.join(),\\\");\\\");for(var n=1;1<<N>n;++n)F.push(p(n),\\\"=\\\",A,\\\"[\\\",T,\\\"+\\\",v(n),\\\"];\\\");for(var a=[],n=1;1<<N>n;++n)a.push(\\\"(\\\"+p(0)+\\\"!==\\\"+p(n)+\\\")\\\");F.push(\\\"if(\\\",a.join(\\\"||\\\"),\\\"){\\\");for(var s=[],e=0;N>e;++e)s.push(f(e));for(var e=0;I>e;++e){s.push(o(e,0));for(var n=1;1<<N>n;++n)L[e]?F.push(o(e,n),\\\"=\\\",i(e),\\\".get(\\\",u(e),\\\"+\\\",h(e,n),\\\");\\\"):F.push(o(e,n),\\\"=\\\",i(e),\\\"[\\\",u(e),\\\"+\\\",h(e,n),\\\"];\\\"),s.push(o(e,n))}for(var e=0;1<<N>e;++e)s.push(p(e));for(var e=0;b>e;++e)s.push(c(e));F.push(\\\"vertex(\\\",s.join(),\\\");\\\",m(0),\\\"=\\\",w,\\\"[\\\",T,\\\"]=\\\",k,\\\"++;\\\");for(var l=(1<<N)-1,d=p(l),n=0;N>n;++n)if(0===(t&~(1<<n))){for(var g=l^1<<n,y=p(g),x=[],_=g;_>0;_=_-1&g)x.push(w+\\\"[\\\"+T+\\\"+\\\"+v(_)+\\\"]\\\");x.push(m(0));for(var _=0;I>_;++_)1&n?x.push(o(_,l),o(_,g)):x.push(o(_,g),o(_,l));1&n?x.push(d,y):x.push(y,d);for(var _=0;b>_;++_)x.push(c(_));F.push(\\\"if(\\\",d,\\\"!==\\\",y,\\\"){\\\",\\\"face(\\\",x.join(),\\\")}\\\")}F.push(\\\"}\\\",T,\\\"+=1;\\\")}function R(){for(var t=1;1<<N>t;++t)F.push(E,\\\"=\\\",v(t),\\\";\\\",v(t),\\\"=\\\",g(t),\\\";\\\",g(t),\\\"=\\\",E,\\\";\\\")}function O(t,e){if(0>t)return void z(e);P(t),F.push(\\\"if(\\\",a(x[t]),\\\">0){\\\",f(x[t]),\\\"=1;\\\"),O(t-1,e|1<<x[t]);for(var r=0;I>r;++r)F.push(u(r),\\\"+=\\\",d(r,x[t]),\\\";\\\");t===N-1&&(F.push(T,\\\"=0;\\\"),R()),S(t,2),O(t-1,e),t===N-1&&(F.push(\\\"if(\\\",f(x[N-1]),\\\"&1){\\\",T,\\\"=0;}\\\"),R()),C(t),F.push(\\\"}\\\")}var I=L.length,N=x.length;if(2>N)throw new Error(\\\"ndarray-extract-contour: Dimension must be at least 2\\\");for(var j=\\\"extractContour\\\"+x.join(\\\"_\\\"),F=[],D=[],B=[],U=0;I>U;++U)B.push(n(U));for(var U=0;b>U;++U)B.push(c(U));for(var U=0;N>U;++U)D.push(a(U)+\\\"=\\\"+n(0)+\\\".shape[\\\"+U+\\\"]|0\\\");for(var U=0;I>U;++U){D.push(i(U)+\\\"=\\\"+n(U)+\\\".data\\\",l(U)+\\\"=\\\"+n(U)+\\\".offset|0\\\");for(var V=0;N>V;++V)D.push(s(U,V)+\\\"=\\\"+n(U)+\\\".stride[\\\"+V+\\\"]|0\\\")}for(var U=0;I>U;++U){D.push(u(U)+\\\"=\\\"+l(U)),D.push(o(U,0));for(var V=1;1<<N>V;++V){for(var q=[],H=0;N>H;++H)V&1<<H&&q.push(\\\"-\\\"+s(U,H));D.push(h(U,V)+\\\"=(\\\"+q.join(\\\"\\\")+\\\")|0\\\"),D.push(o(U,V)+\\\"=0\\\")}}for(var U=0;I>U;++U)for(var V=0;N>V;++V){var G=[s(U,x[V])];V>0&&G.push(s(U,x[V-1])+\\\"*\\\"+a(x[V-1])),D.push(d(U,x[V])+\\\"=(\\\"+G.join(\\\"-\\\")+\\\")|0\\\")}for(var U=0;N>U;++U)D.push(f(U)+\\\"=0\\\");D.push(k+\\\"=0\\\");for(var Y=[\\\"2\\\"],U=N-2;U>=0;--U)Y.push(a(x[U]));D.push(M+\\\"=(\\\"+Y.join(\\\"*\\\")+\\\")|0\\\",A+\\\"=mallocUint32(\\\"+M+\\\")\\\",w+\\\"=mallocUint32(\\\"+M+\\\")\\\",T+\\\"=0\\\"),D.push(p(0)+\\\"=0\\\");for(var V=1;1<<N>V;++V){for(var X=[],W=[],H=0;N>H;++H)V&1<<H&&(0===W.length?X.push(\\\"1\\\"):X.unshift(W.join(\\\"*\\\"))),W.push(a(x[H]));var Z=\\\"\\\";X[0].indexOf(a(x[N-2]))<0&&(Z=\\\"-\\\");var $=y(N,V,x);D.push(v($)+\\\"=(-\\\"+X.join(\\\"-\\\")+\\\")|0\\\",g($)+\\\"=(\\\"+Z+X.join(\\\"-\\\")+\\\")|0\\\",p($)+\\\"=0\\\")}D.push(m(0)+\\\"=0\\\",E+\\\"=0\\\"),O(N-1,0),F.push(\\\"freeUint32(\\\",w,\\\");freeUint32(\\\",A,\\\");\\\");var K=[\\\"'use strict';\\\",\\\"function \\\",j,\\\"(\\\",B.join(),\\\"){\\\",\\\"var \\\",D.join(),\\\";\\\",F.join(\\\"\\\"),\\\"}\\\",\\\"return \\\",j].join(\\\"\\\"),Q=new Function(\\\"vertex\\\",\\\"face\\\",\\\"phase\\\",\\\"mallocUint32\\\",\\\"freeUint32\\\",K);return Q(t,e,r,_.mallocUint32,_.freeUint32)}function x(t){function e(t){throw new Error(\\\"ndarray-extract-contour: \\\"+t)}\\\"object\\\"!=typeof t&&e(\\\"Must specify arguments\\\");var r=t.order;Array.isArray(r)||e(\\\"Must specify order\\\");var n=t.arrayArguments||1;1>n&&e(\\\"Must have at least one array argument\\\");var i=t.scalarArguments||0;0>i&&e(\\\"Scalar arg count must be > 0\\\"),\\\"function\\\"!=typeof t.vertex&&e(\\\"Must specify vertex creation function\\\"),\\\"function\\\"!=typeof t.cell&&e(\\\"Must specify cell creation function\\\"),\\\"function\\\"!=typeof t.phase&&e(\\\"Must specify phase function\\\");for(var o=t.getters||[],a=new Array(n),s=0;n>s;++s)o.indexOf(s)>=0?a[s]=!0:a[s]=!1;return b(t.vertex,t.cell,t.phase,i,r,a)}var _=t(\\\"typedarray-pool\\\");e.exports=x;var w=\\\"V\\\",A=\\\"P\\\",k=\\\"N\\\",M=\\\"Q\\\",T=\\\"X\\\",E=\\\"T\\\"},{\\\"typedarray-pool\\\":235}],222:[function(t,e,r){function n(t){if(0>t)return Number(\\\"0/0\\\");for(var e=s[0],r=s.length-1;r>0;--r)e+=s[r]/(t+r);var n=t+a+.5;return.5*Math.log(2*Math.PI)+(t+.5)*Math.log(n)-n+Math.log(e)-Math.log(t)}var i=7,o=[.9999999999998099,676.5203681218851,-1259.1392167224028,771.3234287776531,-176.6150291621406,12.507343278686905,-.13857109526572012,9984369578019572e-21,1.5056327351493116e-7],a=607/128,s=[.9999999999999971,57.15623566586292,-59.59796035547549,14.136097974741746,-.4919138160976202,3399464998481189e-20,4652362892704858e-20,-9837447530487956e-20,.0001580887032249125,-.00021026444172410488,.00021743961811521265,-.0001643181065367639,8441822398385275e-20,-26190838401581408e-21,36899182659531625e-22];e.exports=function l(t){if(.5>t)return Math.PI/(Math.sin(Math.PI*t)*l(1-t));if(t>100)return Math.exp(n(t));t-=1;for(var e=o[0],r=1;i+2>r;r++)e+=o[r]/(t+r);var a=t+i+.5;return Math.sqrt(2*Math.PI)*Math.pow(a,t+.5)*Math.exp(-a)*e},e.exports.log=n},{}],223:[function(t,e,r){\\\"use strict\\\";function n(t){var e=t.length;if(i>e){for(var r=1,n=0;e>n;++n)for(var a=0;n>a;++a)if(t[n]<t[a])r=-r;else if(t[n]===t[a])return 0;return r}for(var s=o.mallocUint8(e),n=0;e>n;++n)s[n]=0;for(var r=1,n=0;e>n;++n)if(!s[n]){var l=1;s[n]=1;for(var a=t[n];a!==n;a=t[a]){if(s[a])return o.freeUint8(s),0;l+=1,s[a]=1}1&l||(r=-r)}return o.freeUint8(s),r}e.exports=n;var i=32,o=t(\\\"typedarray-pool\\\")},{\\\"typedarray-pool\\\":235}],224:[function(t,e,r){\\\"use strict\\\";function n(t){var e=t.length;switch(e){case 0:case 1:return 0;case 2:return t[1]}var r,n,i,s=o.mallocUint32(e),l=o.mallocUint32(e),c=0;for(a(t,l),i=0;e>i;++i)s[i]=t[i];for(i=e-1;i>0;--i)n=l[i],r=s[i],s[i]=s[n],s[n]=r,l[i]=l[r],l[r]=n,c=(c+r)*i;return o.freeUint32(l),o.freeUint32(s),c}function i(t,e,r){switch(t){case 0:return r?r:[];case 1:return r?(r[0]=0,r):[0];case 2:return r?(e?(r[0]=0,r[1]=1):(r[0]=1,r[1]=0),r):e?[0,1]:[1,0]}r=r||new Array(t);var n,i,o,a=1;for(r[0]=0,o=1;t>o;++o)r[o]=o,a=a*o|0;for(o=t-1;o>0;--o)n=e/a|0,e=e-n*a|0,a=a/o|0,i=0|r[o],r[o]=0|r[n],r[n]=0|i;return r}var o=t(\\\"typedarray-pool\\\"),a=t(\\\"invert-permutation\\\");r.rank=n,r.unrank=i},{\\\"invert-permutation\\\":225,\\\"typedarray-pool\\\":235}],225:[function(t,e,r){\\\"use strict\\\";function n(t,e){e=e||new Array(t.length);for(var r=0;r<t.length;++r)e[t[r]]=r;return e}e.exports=n},{}],226:[function(t,e,r){\\\"use strict\\\";function n(t){if(0>t)return[];if(0===t)return[[0]];for(var e=0|Math.round(a(t+1)),r=[],n=0;e>n;++n){for(var s=i.unrank(t,n),l=[0],c=0,u=0;u<s.length;++u)c+=1<<s[u],l.push(c);o(s)<1&&(l[0]=c,l[t]=0),r.push(l)}return r}e.exports=n;var i=t(\\\"permutation-rank\\\"),o=t(\\\"permutation-parity\\\"),a=t(\\\"gamma\\\")},{gamma:222,\\\"permutation-parity\\\":223,\\\"permutation-rank\\\":224}],227:[function(t,e,r){e.exports=t(\\\"cwise-compiler\\\")({args:[\\\"array\\\",{offset:[1],array:0},\\\"scalar\\\",\\\"scalar\\\",\\\"index\\\"],pre:{body:\\\"{}\\\",args:[],thisVars:[],localVars:[]},post:{body:\\\"{}\\\",args:[],thisVars:[],localVars:[]},body:{body:\\\"{\\\\n        var _inline_1_da = _inline_1_arg0_ - _inline_1_arg3_\\\\n        var _inline_1_db = _inline_1_arg1_ - _inline_1_arg3_\\\\n        if((_inline_1_da >= 0) !== (_inline_1_db >= 0)) {\\\\n          _inline_1_arg2_.push(_inline_1_arg4_[0] + 0.5 + 0.5 * (_inline_1_da + _inline_1_db) / (_inline_1_da - _inline_1_db))\\\\n        }\\\\n      }\\\",args:[{name:\\\"_inline_1_arg0_\\\",lvalue:!1,rvalue:!0,count:1},{name:\\\"_inline_1_arg1_\\\",lvalue:!1,rvalue:!0,count:1},{name:\\\"_inline_1_arg2_\\\",lvalue:!1,rvalue:!0,count:1},{name:\\\"_inline_1_arg3_\\\",lvalue:!1,rvalue:!0,count:2},{name:\\\"_inline_1_arg4_\\\",lvalue:!1,rvalue:!0,count:1}],thisVars:[],localVars:[\\\"_inline_1_da\\\",\\\"_inline_1_db\\\"]},funcName:\\\"zeroCrossings\\\"})},{\\\"cwise-compiler\\\":66}],228:[function(t,e,r){\\\"use strict\\\";function n(t,e){var r=[];return e=+e||0,i(t.hi(t.shape[0]-1),r,e),r}e.exports=n;var i=t(\\\"./lib/zc-core\\\")},{\\\"./lib/zc-core\\\":227}],229:[function(t,e,r){\\\"use strict\\\";function n(t,e){var r=t.length,n=[\\\"'use strict';\\\"],i=\\\"surfaceNets\\\"+t.join(\\\"_\\\")+\\\"d\\\"+e;n.push(\\\"var contour=genContour({\\\",\\\"order:[\\\",t.join(),\\\"],\\\",\\\"scalarArguments: 3,\\\",\\\"phase:function phaseFunc(p,a,b,c) { return (p > c)|0 },\\\"),\\\"generic\\\"===e&&n.push(\\\"getters:[0],\\\");for(var o=[],l=[],c=0;r>c;++c)o.push(\\\"d\\\"+c),l.push(\\\"d\\\"+c);for(var c=0;1<<r>c;++c)o.push(\\\"v\\\"+c),l.push(\\\"v\\\"+c);for(var c=0;1<<r>c;++c)o.push(\\\"p\\\"+c),l.push(\\\"p\\\"+c);o.push(\\\"a\\\",\\\"b\\\",\\\"c\\\"),l.push(\\\"a\\\",\\\"c\\\"),n.push(\\\"vertex:function vertexFunc(\\\",o.join(),\\\"){\\\");for(var u=[],c=0;1<<r>c;++c)u.push(\\\"(p\\\"+c+\\\"<<\\\"+c+\\\")\\\");n.push(\\\"var m=(\\\",u.join(\\\"+\\\"),\\\")|0;if(m===0||m===\\\",(1<<(1<<r))-1,\\\"){return}\\\");var h=[],f=[];128>=1<<(1<<r)?(n.push(\\\"switch(m){\\\"),f=n):n.push(\\\"switch(m>>>7){\\\");for(var c=0;1<<(1<<r)>c;++c){if(1<<(1<<r)>128&&c%128===0){h.length>0&&f.push(\\\"}}\\\");var d=\\\"vExtra\\\"+h.length;n.push(\\\"case \\\",c>>>7,\\\":\\\",d,\\\"(m&0x7f,\\\",l.join(),\\\");break;\\\"),f=[\\\"function \\\",d,\\\"(m,\\\",l.join(),\\\"){switch(m){\\\"],h.push(f)}f.push(\\\"case \\\",127&c,\\\":\\\");for(var p=new Array(r),g=new Array(r),v=new Array(r),m=new Array(r),y=0,b=0;r>b;++b)p[b]=[],g[b]=[],v[b]=0,m[b]=0;for(var b=0;1<<r>b;++b)for(var x=0;r>x;++x){var _=b^1<<x;if(!(_>b)&&!(c&1<<_)!=!(c&1<<b)){var w=1;c&1<<_?g[x].push(\\\"v\\\"+_+\\\"-v\\\"+b):(g[x].push(\\\"v\\\"+b+\\\"-v\\\"+_),w=-w),0>w?(p[x].push(\\\"-v\\\"+b+\\\"-v\\\"+_),v[x]+=2):(p[x].push(\\\"v\\\"+b+\\\"+v\\\"+_),v[x]-=2),y+=1;for(var A=0;r>A;++A)A!==x&&(_&1<<A?m[A]+=1:m[A]-=1)}}for(var k=[],x=0;r>x;++x)if(0===p[x].length)k.push(\\\"d\\\"+x+\\\"-0.5\\\");else{var M=\\\"\\\";v[x]<0?M=v[x]+\\\"*c\\\":v[x]>0&&(M=\\\"+\\\"+v[x]+\\\"*c\\\");var T=.5*(p[x].length/y),E=.5+.5*(m[x]/y);k.push(\\\"d\\\"+x+\\\"-\\\"+E+\\\"-\\\"+T+\\\"*(\\\"+p[x].join(\\\"+\\\")+M+\\\")/(\\\"+g[x].join(\\\"+\\\")+\\\")\\\")}f.push(\\\"a.push([\\\",k.join(),\\\"]);\\\",\\\"break;\\\")}n.push(\\\"}},\\\"),h.length>0&&f.push(\\\"}}\\\");for(var L=[],c=0;1<<r-1>c;++c)L.push(\\\"v\\\"+c);L.push(\\\"c0\\\",\\\"c1\\\",\\\"p0\\\",\\\"p1\\\",\\\"a\\\",\\\"b\\\",\\\"c\\\"),n.push(\\\"cell:function cellFunc(\\\",L.join(),\\\"){\\\");var S=s(r-1);n.push(\\\"if(p0){b.push(\\\",S.map(function(t){return\\\"[\\\"+t.map(function(t){return\\\"v\\\"+t})+\\\"]\\\"}).join(),\\\")}else{b.push(\\\",S.map(function(t){var e=t.slice();return e.reverse(),\\\"[\\\"+e.map(function(t){return\\\"v\\\"+t})+\\\"]\\\"}).join(),\\\")}}});function \\\",i,\\\"(array,level){var verts=[],cells=[];contour(array,verts,cells,level);return {positions:verts,cells:cells};} return \\\",i,\\\";\\\");for(var c=0;c<h.length;++c)n.push(h[c].join(\\\"\\\"));var C=new Function(\\\"genContour\\\",n.join(\\\"\\\"));return C(a)}function i(t,e){for(var r=l(t,e),n=r.length,i=new Array(n),o=new Array(n),a=0;n>a;++a)i[a]=[r[a]],o[a]=[a];return{positions:i,cells:o}}function o(t,e){if(t.dimension<=0)return{positions:[],cells:[]};if(1===t.dimension)return i(t,e);var r=t.order.join()+\\\"-\\\"+t.dtype,o=c[r],e=+e||0;return o||(o=c[r]=n(t.order,t.dtype)),o(t,e)}e.exports=o;var a=t(\\\"ndarray-extract-contour\\\"),s=t(\\\"triangulate-hypercube\\\"),l=t(\\\"zero-crossings\\\"),c={}},{\\\"ndarray-extract-contour\\\":221,\\\"triangulate-hypercube\\\":226,\\\"zero-crossings\\\":228}],230:[function(t,e,r){(function(r){\\\"use strict\\\";function n(t){for(var e=t.cells,r=t.positions,n=new Float32Array(6*e.length),i=0,o=0,a=0;a<e.length;++a)for(var s=e[a],l=0;3>l;++l){var c=r[s[l]];n[i++]=c[0],n[i++]=c[1]+1.4,o=Math.max(c[0],o)}return{data:n,shape:o}}function i(t,e){var r=s[t];r||(r=s[t]={\\\" \\\":{data:new Float32Array(0),shape:.2}});var a=r[e];if(!a)if(e.length<=1||!/\\\\d/.test(e))a=r[e]=n(o(e,{triangles:!0,font:t,textAlign:\\\"left\\\",textBaseline:\\\"alphabetic\\\"}));else{for(var l=e.split(/(\\\\d|\\\\s)/),c=new Array(l.length),u=0,h=0,f=0;f<l.length;++f)c[f]=i(t,l[f]),u+=c[f].data.length,h+=c[f].shape,f>0&&(h+=.02);for(var d=new Float32Array(u),p=0,g=-.5*h,f=0;f<c.length;++f){for(var v=c[f].data,m=0;m<v.length;m+=2)d[p++]=v[m]+g,d[p++]=v[m+1];g+=c[f].shape+.02}a=r[e]={data:d,shape:h}}return a}e.exports=i;var o=t(\\\"vectorize-text\\\"),a=window||r.global||{},s=a.__TEXT_CACHE||{};a.__TEXT_CACHE={}}).call(this,t(\\\"_process\\\"))},{_process:55,\\\"vectorize-text\\\":237}],231:[function(e,r,n){!function(){function e(t,r){if(t=t?t:\\\"\\\",r=r||{},t instanceof e)return t;if(!(this instanceof e))return new e(t,r);var i=n(t);this._originalInput=t,this._r=i.r,this._g=i.g,this._b=i.b,this._a=i.a,this._roundA=U(100*this._a)/100,this._format=r.format||i.format,this._gradientType=r.gradientType,this._r<1&&(this._r=U(this._r)),this._g<1&&(this._g=U(this._g)),this._b<1&&(this._b=U(this._b)),this._ok=i.ok,this._tc_id=D++}function n(t){var e={r:0,g:0,b:0},r=1,n=!1,o=!1;return\\\"string\\\"==typeof t&&(t=I(t)),\\\"object\\\"==typeof t&&(t.hasOwnProperty(\\\"r\\\")&&t.hasOwnProperty(\\\"g\\\")&&t.hasOwnProperty(\\\"b\\\")?(e=i(t.r,t.g,t.b),n=!0,o=\\\"%\\\"===String(t.r).substr(-1)?\\\"prgb\\\":\\\"rgb\\\"):t.hasOwnProperty(\\\"h\\\")&&t.hasOwnProperty(\\\"s\\\")&&t.hasOwnProperty(\\\"v\\\")?(t.s=z(t.s),t.v=z(t.v),e=l(t.h,t.s,t.v),n=!0,o=\\\"hsv\\\"):t.hasOwnProperty(\\\"h\\\")&&t.hasOwnProperty(\\\"s\\\")&&t.hasOwnProperty(\\\"l\\\")&&(t.s=z(t.s),t.l=z(t.l),e=a(t.h,t.s,t.l),n=!0,o=\\\"hsl\\\"),t.hasOwnProperty(\\\"a\\\")&&(r=t.a)),r=M(r),{ok:n,format:t.format||o,r:V(255,q(e.r,0)),g:V(255,q(e.g,0)),b:V(255,q(e.b,0)),a:r}}function i(t,e,r){return{r:255*T(t,255),g:255*T(e,255),b:255*T(r,255)}}function o(t,e,r){t=T(t,255),e=T(e,255),r=T(r,255);var n,i,o=q(t,e,r),a=V(t,e,r),s=(o+a)/2;if(o==a)n=i=0;else{var l=o-a;switch(i=s>.5?l/(2-o-a):l/(o+a),o){case t:n=(e-r)/l+(r>e?6:0);break;case e:n=(r-t)/l+2;break;case r:n=(t-e)/l+4}n/=6}return{h:n,s:i,l:s}}function a(t,e,r){function n(t,e,r){return 0>r&&(r+=1),r>1&&(r-=1),1/6>r?t+6*(e-t)*r:.5>r?e:2/3>r?t+(e-t)*(2/3-r)*6:t}var i,o,a;if(t=T(t,360),e=T(e,100),r=T(r,100),0===e)i=o=a=r;else{var s=.5>r?r*(1+e):r+e-r*e,l=2*r-s;i=n(l,s,t+1/3),o=n(l,s,t),a=n(l,s,t-1/3)}return{r:255*i,g:255*o,b:255*a}}function s(t,e,r){t=T(t,255),e=T(e,255),r=T(r,255);var n,i,o=q(t,e,r),a=V(t,e,r),s=o,l=o-a;if(i=0===o?0:l/o,o==a)n=0;else{switch(o){case t:n=(e-r)/l+(r>e?6:0);break;case e:n=(r-t)/l+2;break;case r:n=(t-e)/l+4}n/=6}return{h:n,s:i,v:s}}function l(t,e,r){t=6*T(t,360),e=T(e,100),r=T(r,100);var n=B.floor(t),i=t-n,o=r*(1-e),a=r*(1-i*e),s=r*(1-(1-i)*e),l=n%6,c=[r,a,o,o,s,r][l],u=[s,r,r,a,o,o][l],h=[o,o,s,r,r,a][l];return{r:255*c,g:255*u,b:255*h}}function c(t,e,r,n){var i=[P(U(t).toString(16)),P(U(e).toString(16)),P(U(r).toString(16))];return n&&i[0].charAt(0)==i[0].charAt(1)&&i[1].charAt(0)==i[1].charAt(1)&&i[2].charAt(0)==i[2].charAt(1)?i[0].charAt(0)+i[1].charAt(0)+i[2].charAt(0):i.join(\\\"\\\")}function u(t,e,r,n){var i=[P(R(n)),P(U(t).toString(16)),P(U(e).toString(16)),P(U(r).toString(16))];return i.join(\\\"\\\")}function h(t,r){r=0===r?0:r||10;var n=e(t).toHsl();return n.s-=r/100,n.s=E(n.s),e(n)}function f(t,r){r=0===r?0:r||10;var n=e(t).toHsl();return n.s+=r/100,n.s=E(n.s),e(n)}function d(t){return e(t).desaturate(100)}function p(t,r){r=0===r?0:r||10;var n=e(t).toHsl();return n.l+=r/100,n.l=E(n.l),e(n)}function g(t,r){r=0===r?0:r||10;var n=e(t).toRgb();return n.r=q(0,V(255,n.r-U(255*-(r/100)))),n.g=q(0,V(255,n.g-U(255*-(r/100)))),n.b=q(0,V(255,n.b-U(255*-(r/100)))),e(n)}function v(t,r){r=0===r?0:r||10;var n=e(t).toHsl();return n.l-=r/100,n.l=E(n.l),e(n)}function m(t,r){var n=e(t).toHsl(),i=(U(n.h)+r)%360;return n.h=0>i?360+i:i,e(n)}function y(t){var r=e(t).toHsl();return r.h=(r.h+180)%360,e(r)}function b(t){var r=e(t).toHsl(),n=r.h;return[e(t),e({h:(n+120)%360,s:r.s,l:r.l}),e({h:(n+240)%360,s:r.s,l:r.l})]}function x(t){var r=e(t).toHsl(),n=r.h;return[e(t),e({h:(n+90)%360,s:r.s,l:r.l}),e({h:(n+180)%360,s:r.s,l:r.l}),e({h:(n+270)%360,s:r.s,l:r.l})]}function _(t){var r=e(t).toHsl(),n=r.h;return[e(t),e({h:(n+72)%360,s:r.s,l:r.l}),e({h:(n+216)%360,s:r.s,l:r.l})]}function w(t,r,n){r=r||6,n=n||30;var i=e(t).toHsl(),o=360/n,a=[e(t)];for(i.h=(i.h-(o*r>>1)+720)%360;--r;)i.h=(i.h+o)%360,a.push(e(i));return a}function A(t,r){r=r||6;for(var n=e(t).toHsv(),i=n.h,o=n.s,a=n.v,s=[],l=1/r;r--;)s.push(e({h:i,s:o,v:a})),a=(a+l)%1;return s}function k(t){var e={};for(var r in t)t.hasOwnProperty(r)&&(e[t[r]]=r);return e}function M(t){return t=parseFloat(t),(isNaN(t)||0>t||t>1)&&(t=1),t}function T(t,e){S(t)&&(t=\\\"100%\\\");var r=C(t);return t=V(e,q(0,parseFloat(t))),r&&(t=parseInt(t*e,10)/100),B.abs(t-e)<1e-6?1:t%e/parseFloat(e)}function E(t){return V(1,q(0,t))}function L(t){return parseInt(t,16)}function S(t){return\\\"string\\\"==typeof t&&-1!=t.indexOf(\\\".\\\")&&1===parseFloat(t)}function C(t){return\\\"string\\\"==typeof t&&-1!=t.indexOf(\\\"%\\\")}function P(t){return 1==t.length?\\\"0\\\"+t:\\\"\\\"+t}function z(t){return 1>=t&&(t=100*t+\\\"%\\\"),t}function R(t){return Math.round(255*parseFloat(t)).toString(16)}function O(t){return L(t)/255}function I(t){t=t.replace(j,\\\"\\\").replace(F,\\\"\\\").toLowerCase();var e=!1;if(G[t])t=G[t],e=!0;else if(\\\"transparent\\\"==t)return{r:0,g:0,b:0,a:0,format:\\\"name\\\"};var r;return(r=X.rgb.exec(t))?{r:r[1],g:r[2],b:r[3]}:(r=X.rgba.exec(t))?{r:r[1],g:r[2],b:r[3],a:r[4]}:(r=X.hsl.exec(t))?{h:r[1],s:r[2],l:r[3]}:(r=X.hsla.exec(t))?{h:r[1],s:r[2],l:r[3],a:r[4]}:(r=X.hsv.exec(t))?{h:r[1],s:r[2],v:r[3]}:(r=X.hsva.exec(t))?{h:r[1],s:r[2],v:r[3],a:r[4]}:(r=X.hex8.exec(t))?{a:O(r[1]),r:L(r[2]),g:L(r[3]),b:L(r[4]),format:e?\\\"name\\\":\\\"hex8\\\"}:(r=X.hex6.exec(t))?{r:L(r[1]),g:L(r[2]),b:L(r[3]),format:e?\\\"name\\\":\\\"hex\\\"}:(r=X.hex3.exec(t))?{r:L(r[1]+\\\"\\\"+r[1]),g:L(r[2]+\\\"\\\"+r[2]),b:L(r[3]+\\\"\\\"+r[3]),format:e?\\\"name\\\":\\\"hex\\\"}:!1}function N(t){var e,r;return t=t||{level:\\\"AA\\\",size:\\\"small\\\"},e=(t.level||\\\"AA\\\").toUpperCase(),r=(t.size||\\\"small\\\").toLowerCase(),\\\"AA\\\"!==e&&\\\"AAA\\\"!==e&&(e=\\\"AA\\\"),\\\"small\\\"!==r&&\\\"large\\\"!==r&&(r=\\\"small\\\"),{level:e,size:r}}var j=/^\\\\s+/,F=/\\\\s+$/,D=0,B=Math,U=B.round,V=B.min,q=B.max,H=B.random;e.prototype={isDark:function(){return this.getBrightness()<128},isLight:function(){return!this.isDark()},isValid:function(){return this._ok},getOriginalInput:function(){return this._originalInput},getFormat:function(){return this._format},getAlpha:function(){return this._a},getBrightness:function(){var t=this.toRgb();return(299*t.r+587*t.g+114*t.b)/1e3},getLuminance:function(){var t,e,r,n,i,o,a=this.toRgb();return t=a.r/255,e=a.g/255,r=a.b/255,n=.03928>=t?t/12.92:Math.pow((t+.055)/1.055,2.4),i=.03928>=e?e/12.92:Math.pow((e+.055)/1.055,2.4),o=.03928>=r?r/12.92:Math.pow((r+.055)/1.055,2.4),.2126*n+.7152*i+.0722*o},setAlpha:function(t){return this._a=M(t),this._roundA=U(100*this._a)/100,this},toHsv:function(){var t=s(this._r,this._g,this._b);return{h:360*t.h,s:t.s,v:t.v,a:this._a}},toHsvString:function(){var t=s(this._r,this._g,this._b),e=U(360*t.h),r=U(100*t.s),n=U(100*t.v);return 1==this._a?\\\"hsv(\\\"+e+\\\", \\\"+r+\\\"%, \\\"+n+\\\"%)\\\":\\\"hsva(\\\"+e+\\\", \\\"+r+\\\"%, \\\"+n+\\\"%, \\\"+this._roundA+\\\")\\\"},toHsl:function(){var t=o(this._r,this._g,this._b);return{h:360*t.h,s:t.s,l:t.l,a:this._a}},toHslString:function(){var t=o(this._r,this._g,this._b),e=U(360*t.h),r=U(100*t.s),n=U(100*t.l);return 1==this._a?\\\"hsl(\\\"+e+\\\", \\\"+r+\\\"%, \\\"+n+\\\"%)\\\":\\\"hsla(\\\"+e+\\\", \\\"+r+\\\"%, \\\"+n+\\\"%, \\\"+this._roundA+\\\")\\\"},toHex:function(t){return c(this._r,this._g,this._b,t)},toHexString:function(t){return\\\"#\\\"+this.toHex(t)},toHex8:function(){return u(this._r,this._g,this._b,this._a)},toHex8String:function(){return\\\"#\\\"+this.toHex8()},toRgb:function(){return{r:U(this._r),g:U(this._g),b:U(this._b),a:this._a}},toRgbString:function(){return 1==this._a?\\\"rgb(\\\"+U(this._r)+\\\", \\\"+U(this._g)+\\\", \\\"+U(this._b)+\\\")\\\":\\\"rgba(\\\"+U(this._r)+\\\", \\\"+U(this._g)+\\\", \\\"+U(this._b)+\\\", \\\"+this._roundA+\\\")\\\"},toPercentageRgb:function(){return{r:U(100*T(this._r,255))+\\\"%\\\",g:U(100*T(this._g,255))+\\\"%\\\",b:U(100*T(this._b,255))+\\\"%\\\",a:this._a}},toPercentageRgbString:function(){return 1==this._a?\\\"rgb(\\\"+U(100*T(this._r,255))+\\\"%, \\\"+U(100*T(this._g,255))+\\\"%, \\\"+U(100*T(this._b,255))+\\\"%)\\\":\\\"rgba(\\\"+U(100*T(this._r,255))+\\\"%, \\\"+U(100*T(this._g,255))+\\\"%, \\\"+U(100*T(this._b,255))+\\\"%, \\\"+this._roundA+\\\")\\\"},toName:function(){return 0===this._a?\\\"transparent\\\":this._a<1?!1:Y[c(this._r,this._g,this._b,!0)]||!1},toFilter:function(t){var r=\\\"#\\\"+u(this._r,this._g,this._b,this._a),n=r,i=this._gradientType?\\\"GradientType = 1, \\\":\\\"\\\";if(t){var o=e(t);n=o.toHex8String()}return\\\"progid:DXImageTransform.Microsoft.gradient(\\\"+i+\\\"startColorstr=\\\"+r+\\\",endColorstr=\\\"+n+\\\")\\\"},toString:function(t){var e=!!t;t=t||this._format;var r=!1,n=this._a<1&&this._a>=0,i=!e&&n&&(\\\"hex\\\"===t||\\\"hex6\\\"===t||\\\"hex3\\\"===t||\\\"name\\\"===t);return i?\\\"name\\\"===t&&0===this._a?this.toName():this.toRgbString():(\\\"rgb\\\"===t&&(r=this.toRgbString()),\\\"prgb\\\"===t&&(r=this.toPercentageRgbString()),\\\"hex\\\"!==t&&\\\"hex6\\\"!==t||(r=this.toHexString()),\\\"hex3\\\"===t&&(r=this.toHexString(!0)),\\\"hex8\\\"===t&&(r=this.toHex8String()),\\\"name\\\"===t&&(r=this.toName()),\\\"hsl\\\"===t&&(r=this.toHslString()),\\\"hsv\\\"===t&&(r=this.toHsvString()),r||this.toHexString())},clone:function(){return e(this.toString())},_applyModification:function(t,e){var r=t.apply(null,[this].concat([].slice.call(e)));return this._r=r._r,this._g=r._g,this._b=r._b,this.setAlpha(r._a),this},lighten:function(){return this._applyModification(p,arguments)},brighten:function(){return this._applyModification(g,arguments)},darken:function(){return this._applyModification(v,arguments)},desaturate:function(){return this._applyModification(h,arguments)},saturate:function(){return this._applyModification(f,arguments)},greyscale:function(){return this._applyModification(d,arguments)},spin:function(){return this._applyModification(m,arguments)},_applyCombination:function(t,e){return t.apply(null,[this].concat([].slice.call(e)))},analogous:function(){return this._applyCombination(w,arguments)},complement:function(){return this._applyCombination(y,arguments)},monochromatic:function(){return this._applyCombination(A,arguments)},splitcomplement:function(){return this._applyCombination(_,arguments)},triad:function(){return this._applyCombination(b,arguments)},tetrad:function(){return this._applyCombination(x,arguments)}},e.fromRatio=function(t,r){if(\\\"object\\\"==typeof t){var n={};for(var i in t)t.hasOwnProperty(i)&&(\\\"a\\\"===i?n[i]=t[i]:n[i]=z(t[i]));t=n}return e(t,r)},e.equals=function(t,r){return t&&r?e(t).toRgbString()==e(r).toRgbString():!1},e.random=function(){return e.fromRatio({r:H(),g:H(),b:H()})},e.mix=function(t,r,n){n=0===n?0:n||50;var i,o=e(t).toRgb(),a=e(r).toRgb(),s=n/100,l=2*s-1,c=a.a-o.a;i=l*c==-1?l:(l+c)/(1+l*c),i=(i+1)/2;var u=1-i,h={r:a.r*i+o.r*u,g:a.g*i+o.g*u,b:a.b*i+o.b*u,a:a.a*s+o.a*(1-s)};return e(h)},e.readability=function(t,r){var n=e(t),i=e(r);return(Math.max(n.getLuminance(),i.getLuminance())+.05)/(Math.min(n.getLuminance(),i.getLuminance())+.05)},e.isReadable=function(t,r,n){var i,o,a=e.readability(t,r);switch(o=!1,i=N(n),i.level+i.size){case\\\"AAsmall\\\":case\\\"AAAlarge\\\":o=a>=4.5;break;case\\\"AAlarge\\\":o=a>=3;break;case\\\"AAAsmall\\\":o=a>=7}return o},e.mostReadable=function(t,r,n){var i,o,a,s,l=null,c=0;n=n||{},o=n.includeFallbackColors,a=n.level,s=n.size;for(var u=0;u<r.length;u++)i=e.readability(t,r[u]),i>c&&(c=i,l=e(r[u]));return e.isReadable(t,l,{level:a,size:s})||!o?l:(n.includeFallbackColors=!1,e.mostReadable(t,[\\\"#fff\\\",\\\"#000\\\"],n))};var G=e.names={aliceblue:\\\"f0f8ff\\\",antiquewhite:\\\"faebd7\\\",aqua:\\\"0ff\\\",aquamarine:\\\"7fffd4\\\",azure:\\\"f0ffff\\\",beige:\\\"f5f5dc\\\",bisque:\\\"ffe4c4\\\",black:\\\"000\\\",blanchedalmond:\\\"ffebcd\\\",blue:\\\"00f\\\",blueviolet:\\\"8a2be2\\\",brown:\\\"a52a2a\\\",burlywood:\\\"deb887\\\",burntsienna:\\\"ea7e5d\\\",cadetblue:\\\"5f9ea0\\\",chartreuse:\\\"7fff00\\\",chocolate:\\\"d2691e\\\",coral:\\\"ff7f50\\\",cornflowerblue:\\\"6495ed\\\",cornsilk:\\\"fff8dc\\\",crimson:\\\"dc143c\\\",cyan:\\\"0ff\\\",darkblue:\\\"00008b\\\",darkcyan:\\\"008b8b\\\",darkgoldenrod:\\\"b8860b\\\",darkgray:\\\"a9a9a9\\\",darkgreen:\\\"006400\\\",darkgrey:\\\"a9a9a9\\\",darkkhaki:\\\"bdb76b\\\",darkmagenta:\\\"8b008b\\\",darkolivegreen:\\\"556b2f\\\",darkorange:\\\"ff8c00\\\",darkorchid:\\\"9932cc\\\",darkred:\\\"8b0000\\\",darksalmon:\\\"e9967a\\\",darkseagreen:\\\"8fbc8f\\\",darkslateblue:\\\"483d8b\\\",darkslategray:\\\"2f4f4f\\\",darkslategrey:\\\"2f4f4f\\\",darkturquoise:\\\"00ced1\\\",darkviolet:\\\"9400d3\\\",deeppink:\\\"ff1493\\\",deepskyblue:\\\"00bfff\\\",dimgray:\\\"696969\\\",dimgrey:\\\"696969\\\",dodgerblue:\\\"1e90ff\\\",firebrick:\\\"b22222\\\",floralwhite:\\\"fffaf0\\\",forestgreen:\\\"228b22\\\",fuchsia:\\\"f0f\\\",gainsboro:\\\"dcdcdc\\\",ghostwhite:\\\"f8f8ff\\\",gold:\\\"ffd700\\\",goldenrod:\\\"daa520\\\",gray:\\\"808080\\\",green:\\\"008000\\\",greenyellow:\\\"adff2f\\\",grey:\\\"808080\\\",honeydew:\\\"f0fff0\\\",hotpink:\\\"ff69b4\\\",indianred:\\\"cd5c5c\\\",indigo:\\\"4b0082\\\",ivory:\\\"fffff0\\\",khaki:\\\"f0e68c\\\",lavender:\\\"e6e6fa\\\",lavenderblush:\\\"fff0f5\\\",lawngreen:\\\"7cfc00\\\",lemonchiffon:\\\"fffacd\\\",lightblue:\\\"add8e6\\\",lightcoral:\\\"f08080\\\",lightcyan:\\\"e0ffff\\\",lightgoldenrodyellow:\\\"fafad2\\\",lightgray:\\\"d3d3d3\\\",lightgreen:\\\"90ee90\\\",lightgrey:\\\"d3d3d3\\\",lightpink:\\\"ffb6c1\\\",lightsalmon:\\\"ffa07a\\\",lightseagreen:\\\"20b2aa\\\",lightskyblue:\\\"87cefa\\\",lightslategray:\\\"789\\\",lightslategrey:\\\"789\\\",lightsteelblue:\\\"b0c4de\\\",lightyellow:\\\"ffffe0\\\",lime:\\\"0f0\\\",limegreen:\\\"32cd32\\\",linen:\\\"faf0e6\\\",magenta:\\\"f0f\\\",maroon:\\\"800000\\\",mediumaquamarine:\\\"66cdaa\\\",mediumblue:\\\"0000cd\\\",mediumorchid:\\\"ba55d3\\\",mediumpurple:\\\"9370db\\\",mediumseagreen:\\\"3cb371\\\",mediumslateblue:\\\"7b68ee\\\",mediumspringgreen:\\\"00fa9a\\\",mediumturquoise:\\\"48d1cc\\\",mediumvioletred:\\\"c71585\\\",midnightblue:\\\"191970\\\",mintcream:\\\"f5fffa\\\",mistyrose:\\\"ffe4e1\\\",moccasin:\\\"ffe4b5\\\",navajowhite:\\\"ffdead\\\",navy:\\\"000080\\\",oldlace:\\\"fdf5e6\\\",olive:\\\"808000\\\",olivedrab:\\\"6b8e23\\\",orange:\\\"ffa500\\\",orangered:\\\"ff4500\\\",orchid:\\\"da70d6\\\",palegoldenrod:\\\"eee8aa\\\",palegreen:\\\"98fb98\\\",paleturquoise:\\\"afeeee\\\",palevioletred:\\\"db7093\\\",papayawhip:\\\"ffefd5\\\",peachpuff:\\\"ffdab9\\\",peru:\\\"cd853f\\\",pink:\\\"ffc0cb\\\",plum:\\\"dda0dd\\\",powderblue:\\\"b0e0e6\\\",purple:\\\"800080\\\",rebeccapurple:\\\"663399\\\",red:\\\"f00\\\",rosybrown:\\\"bc8f8f\\\",royalblue:\\\"4169e1\\\",saddlebrown:\\\"8b4513\\\",salmon:\\\"fa8072\\\",sandybrown:\\\"f4a460\\\",seagreen:\\\"2e8b57\\\",seashell:\\\"fff5ee\\\",sienna:\\\"a0522d\\\",silver:\\\"c0c0c0\\\",skyblue:\\\"87ceeb\\\",slateblue:\\\"6a5acd\\\",slategray:\\\"708090\\\",slategrey:\\\"708090\\\",snow:\\\"fffafa\\\",springgreen:\\\"00ff7f\\\",steelblue:\\\"4682b4\\\",tan:\\\"d2b48c\\\",teal:\\\"008080\\\",thistle:\\\"d8bfd8\\\",tomato:\\\"ff6347\\\",turquoise:\\\"40e0d0\\\",violet:\\\"ee82ee\\\",wheat:\\\"f5deb3\\\",white:\\\"fff\\\",whitesmoke:\\\"f5f5f5\\\",yellow:\\\"ff0\\\",yellowgreen:\\\"9acd32\\\"},Y=e.hexNames=k(G),X=function(){var t=\\\"[-\\\\\\\\+]?\\\\\\\\d+%?\\\",e=\\\"[-\\\\\\\\+]?\\\\\\\\d*\\\\\\\\.\\\\\\\\d+%?\\\",r=\\\"(?:\\\"+e+\\\")|(?:\\\"+t+\\\")\\\",n=\\\"[\\\\\\\\s|\\\\\\\\(]+(\\\"+r+\\\")[,|\\\\\\\\s]+(\\\"+r+\\\")[,|\\\\\\\\s]+(\\\"+r+\\\")\\\\\\\\s*\\\\\\\\)?\\\",i=\\\"[\\\\\\\\s|\\\\\\\\(]+(\\\"+r+\\\")[,|\\\\\\\\s]+(\\\"+r+\\\")[,|\\\\\\\\s]+(\\\"+r+\\\")[,|\\\\\\\\s]+(\\\"+r+\\\")\\\\\\\\s*\\\\\\\\)?\\\";return{rgb:new RegExp(\\\"rgb\\\"+n),rgba:new RegExp(\\\"rgba\\\"+i),hsl:new RegExp(\\\"hsl\\\"+n),hsla:new RegExp(\\\"hsla\\\"+i),hsv:new RegExp(\\\"hsv\\\"+n),hsva:new RegExp(\\\"hsva\\\"+i),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/}}();\\\"undefined\\\"!=typeof r&&r.exports?r.exports=e:\\\"function\\\"==typeof t&&t.amd?t(function(){return e}):window.tinycolor=e}()},{}],232:[function(e,r,n){!function(e,i){\\\"object\\\"==typeof n&&\\\"undefined\\\"!=typeof r?i(n):\\\"function\\\"==typeof t&&t.amd?t([\\\"exports\\\"],i):i(e.topojson={})}(this,function(t){\\\"use strict\\\";function e(){}function r(t){if(!t)return e;var r,n,i=t.scale[0],o=t.scale[1],a=t.translate[0],s=t.translate[1];return function(t,e){e||(r=n=0),t[0]=(r+=t[0])*i+a,t[1]=(n+=t[1])*o+s}}function n(t){if(!t)return e;var r,n,i=t.scale[0],o=t.scale[1],a=t.translate[0],s=t.translate[1];return function(t,e){e||(r=n=0);var l=(t[0]-a)/i|0,c=(t[1]-s)/o|0;t[0]=l-r,t[1]=c-n,r=l,n=c}}function i(t,e){for(var r,n=t.length,i=n-e;i<--n;)r=t[i],t[i++]=t[n],t[n]=r}function o(t,e){for(var r=0,n=t.length;n>r;){var i=r+n>>>1;t[i]<e?r=i+1:n=i}return r}function a(t,e){return\\\"GeometryCollection\\\"===e.type?{type:\\\"FeatureCollection\\\",features:e.geometries.map(function(e){return s(t,e)})}:s(t,e)}function s(t,e){var r={type:\\\"Feature\\\",id:e.id,properties:e.properties||{},geometry:l(t,e)};return null==e.id&&delete r.id,r}function l(t,e){function n(t,e){e.length&&e.pop();for(var r,n=h[0>t?~t:t],o=0,a=n.length;a>o;++o)e.push(r=n[o].slice()),u(r,o);0>t&&i(e,a)}function o(t){return t=t.slice(),u(t,0),t}function a(t){for(var e=[],r=0,i=t.length;i>r;++r)n(t[r],e);return e.length<2&&e.push(e[0].slice()),e}function s(t){for(var e=a(t);e.length<4;)e.push(e[0].slice());return e}function l(t){return t.map(s)}function c(t){var e=t.type;return\\\"GeometryCollection\\\"===e?{type:e,geometries:t.geometries.map(c)}:e in f?{type:e,coordinates:f[e](t)}:null}var u=r(t.transform),h=t.arcs,f={Point:function(t){return o(t.coordinates)},MultiPoint:function(t){return t.coordinates.map(o)},LineString:function(t){return a(t.arcs)},MultiLineString:function(t){return t.arcs.map(a)},Polygon:function(t){return l(t.arcs)},MultiPolygon:function(t){return t.arcs.map(l)}};return c(e)}function c(t,e){function r(e){var r,n=t.arcs[0>e?~e:e],i=n[0];return t.transform?(r=[0,0],n.forEach(function(t){r[0]+=t[0],r[1]+=t[1]})):r=n[n.length-1],0>e?[r,i]:[i,r]}function n(t,e){for(var r in t){var n=t[r];delete e[n.start],delete n.start,delete n.end,n.forEach(function(t){i[0>t?~t:t]=1}),s.push(n)}}var i={},o={},a={},s=[],l=-1;return e.forEach(function(r,n){var i,o=t.arcs[0>r?~r:r];o.length<3&&!o[1][0]&&!o[1][1]&&(i=e[++l],e[l]=r,e[n]=i)}),e.forEach(function(t){var e,n,i=r(t),s=i[0],l=i[1];if(e=a[s])if(delete a[e.end],e.push(t),e.end=l,n=o[l]){delete o[n.start];var c=n===e?e:e.concat(n);o[c.start=e.start]=a[c.end=n.end]=c}else o[e.start]=a[e.end]=e;else if(e=o[l])if(delete o[e.start],e.unshift(t),e.start=s,n=a[s]){delete a[n.end];var u=n===e?e:n.concat(e);o[u.start=n.start]=a[u.end=e.end]=u}else o[e.start]=a[e.end]=e;else e=[t],o[e.start=s]=a[e.end=l]=e}),n(a,o),n(o,a),e.forEach(function(t){i[0>t?~t:t]||s.push([t])}),s}function u(t){return l(t,h.apply(this,arguments))}function h(t,e,r){function n(t){var e=0>t?~t:t;(u[e]||(u[e]=[])).push({i:t,g:l})}function i(t){t.forEach(n)}function o(t){t.forEach(i)}function a(t){\\\"GeometryCollection\\\"===t.type?t.geometries.forEach(a):t.type in h&&(l=t,h[t.type](t.arcs))}var s=[];if(arguments.length>1){var l,u=[],h={LineString:i,MultiLineString:o,Polygon:o,MultiPolygon:function(t){t.forEach(o)}};a(e),u.forEach(arguments.length<3?function(t){s.push(t[0].i)}:function(t){r(t[0].g,t[t.length-1].g)&&s.push(t[0].i)})}else for(var f=0,d=t.arcs.length;d>f;++f)s.push(f);return{type:\\\"MultiLineString\\\",arcs:c(t,s)}}function f(t){var e=t[0],r=t[1],n=t[2];return Math.abs((e[0]-n[0])*(r[1]-e[1])-(e[0]-r[0])*(n[1]-e[1]))}function d(t){for(var e,r=-1,n=t.length,i=t[n-1],o=0;++r<n;)e=i,\\n\",\n       \"i=t[r],o+=e[0]*i[1]-e[1]*i[0];return o/2}function p(t){return l(t,g.apply(this,arguments))}function g(t,e){function r(t){t.forEach(function(e){e.forEach(function(e){(i[e=0>e?~e:e]||(i[e]=[])).push(t)})}),o.push(t)}function n(e){return d(l(t,{type:\\\"Polygon\\\",arcs:[e]}).coordinates[0])>0}var i={},o=[],a=[];return e.forEach(function(t){\\\"Polygon\\\"===t.type?r(t.arcs):\\\"MultiPolygon\\\"===t.type&&t.arcs.forEach(r)}),o.forEach(function(t){if(!t._){var e=[],r=[t];for(t._=1,a.push(e);t=r.pop();)e.push(t),t.forEach(function(t){t.forEach(function(t){i[0>t?~t:t].forEach(function(t){t._||(t._=1,r.push(t))})})})}}),o.forEach(function(t){delete t._}),{type:\\\"MultiPolygon\\\",arcs:a.map(function(e){var r,o=[];if(e.forEach(function(t){t.forEach(function(t){t.forEach(function(t){i[0>t?~t:t].length<2&&o.push(t)})})}),o=c(t,o),(r=o.length)>1)for(var a,s=n(e[0][0]),l=0;r>l;++l)if(s===n(o[l])){a=o[0],o[0]=o[l],o[l]=a;break}return o})}}function v(t){function e(t,e){t.forEach(function(t){0>t&&(t=~t);var r=i[t];r?r.push(e):i[t]=[e]})}function r(t,r){t.forEach(function(t){e(t,r)})}function n(t,e){\\\"GeometryCollection\\\"===t.type?t.geometries.forEach(function(t){n(t,e)}):t.type in s&&s[t.type](t.arcs,e)}var i={},a=t.map(function(){return[]}),s={LineString:e,MultiLineString:r,Polygon:r,MultiPolygon:function(t,e){t.forEach(function(t){r(t,e)})}};t.forEach(n);for(var l in i)for(var c=i[l],u=c.length,h=0;u>h;++h)for(var f=h+1;u>f;++f){var d,p=c[h],g=c[f];(d=a[p])[l=o(d,g)]!==g&&d.splice(l,0,g),(d=a[g])[l=o(d,p)]!==p&&d.splice(l,0,p)}return a}function m(t,e){return t[1][2]-e[1][2]}function y(){function t(t,e){for(;e>0;){var r=(e+1>>1)-1,i=n[r];if(m(t,i)>=0)break;n[i._=e]=i,n[t._=e=r]=t}}function e(t,e){for(;;){var r=e+1<<1,o=r-1,a=e,s=n[a];if(i>o&&m(n[o],s)<0&&(s=n[a=o]),i>r&&m(n[r],s)<0&&(s=n[a=r]),a===e)break;n[s._=e]=s,n[t._=e=a]=t}}var r={},n=[],i=0;return r.push=function(e){return t(n[e._=i]=e,i++),i},r.pop=function(){if(!(0>=i)){var t,r=n[0];return--i>0&&(t=n[i],e(n[t._=0]=t,0)),r}},r.remove=function(r){var o,a=r._;if(n[a]===r)return a!==--i&&(o=n[i],(m(o,r)<0?t:e)(n[o._=a]=o,a)),a},r}function b(t,e){function i(t){s.remove(t),t[1][2]=e(t),s.push(t)}var o=r(t.transform),a=n(t.transform),s=y();return e||(e=f),t.arcs.forEach(function(t){var r,n,l,c,u=[],h=0;for(n=0,l=t.length;l>n;++n)c=t[n],o(t[n]=[c[0],c[1],1/0],n);for(n=1,l=t.length-1;l>n;++n)r=t.slice(n-1,n+2),r[1][2]=e(r),u.push(r),s.push(r);for(n=0,l=u.length;l>n;++n)r=u[n],r.previous=u[n-1],r.next=u[n+1];for(;r=s.pop();){var f=r.previous,d=r.next;r[1][2]<h?r[1][2]=h:h=r[1][2],f&&(f.next=d,f[2]=r[2],i(f)),d&&(d.previous=f,d[0]=r[0],i(d))}t.forEach(a)}),t}var x=\\\"1.6.24\\\";t.version=x,t.mesh=u,t.meshArcs=h,t.merge=p,t.mergeArcs=g,t.feature=a,t.neighbors=v,t.presimplify=b})},{}],233:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){var n=t*e,o=i*t,a=o-t,s=o-a,l=t-s,c=i*e,u=c-e,h=c-u,f=e-h,d=n-s*h,p=d-l*h,g=p-s*f,v=l*f-g;return r?(r[0]=v,r[1]=n,r):[v,n]}e.exports=n;var i=+(Math.pow(2,27)+1)},{}],234:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){var n=t+e,i=n-t,o=n-i,a=e-i,s=t-o;return r?(r[0]=s+a,r[1]=n,r):[s+a,n]}e.exports=n},{}],235:[function(t,e,r){(function(e,n){\\\"use strict\\\";function i(t){if(t){var e=t.length||t.byteLength,r=y.log2(e);w[r].push(t)}}function o(t){i(t.buffer)}function a(t){var t=y.nextPow2(t),e=y.log2(t),r=w[e];return r.length>0?r.pop():new ArrayBuffer(t)}function s(t){return new Uint8Array(a(t),0,t)}function l(t){return new Uint16Array(a(2*t),0,t)}function c(t){return new Uint32Array(a(4*t),0,t)}function u(t){return new Int8Array(a(t),0,t)}function h(t){return new Int16Array(a(2*t),0,t)}function f(t){return new Int32Array(a(4*t),0,t)}function d(t){return new Float32Array(a(4*t),0,t)}function p(t){return new Float64Array(a(8*t),0,t)}function g(t){return x?new Uint8ClampedArray(a(t),0,t):s(t)}function v(t){return new DataView(a(t),0,t)}function m(t){t=y.nextPow2(t);var e=y.log2(t),r=A[e];return r.length>0?r.pop():new n(t)}var y=t(\\\"bit-twiddle\\\"),b=t(\\\"dup\\\");e.__TYPEDARRAY_POOL||(e.__TYPEDARRAY_POOL={UINT8:b([32,0]),UINT16:b([32,0]),UINT32:b([32,0]),INT8:b([32,0]),INT16:b([32,0]),INT32:b([32,0]),FLOAT:b([32,0]),DOUBLE:b([32,0]),DATA:b([32,0]),UINT8C:b([32,0]),BUFFER:b([32,0])});var x=\\\"undefined\\\"!=typeof Uint8ClampedArray,_=e.__TYPEDARRAY_POOL;_.UINT8C||(_.UINT8C=b([32,0])),_.BUFFER||(_.BUFFER=b([32,0]));var w=_.DATA,A=_.BUFFER;r.free=function(t){if(n.isBuffer(t))A[y.log2(t.length)].push(t);else{if(\\\"[object ArrayBuffer]\\\"!==Object.prototype.toString.call(t)&&(t=t.buffer),!t)return;var e=t.length||t.byteLength,r=0|y.log2(e);w[r].push(t)}},r.freeUint8=r.freeUint16=r.freeUint32=r.freeInt8=r.freeInt16=r.freeInt32=r.freeFloat32=r.freeFloat=r.freeFloat64=r.freeDouble=r.freeUint8Clamped=r.freeDataView=o,r.freeArrayBuffer=i,r.freeBuffer=function(t){A[y.log2(t.length)].push(t)},r.malloc=function(t,e){if(void 0===e||\\\"arraybuffer\\\"===e)return a(t);switch(e){case\\\"uint8\\\":return s(t);case\\\"uint16\\\":return l(t);case\\\"uint32\\\":return c(t);case\\\"int8\\\":return u(t);case\\\"int16\\\":return h(t);case\\\"int32\\\":return f(t);case\\\"float\\\":case\\\"float32\\\":return d(t);case\\\"double\\\":case\\\"float64\\\":return p(t);case\\\"uint8_clamped\\\":return g(t);case\\\"buffer\\\":return m(t);case\\\"data\\\":case\\\"dataview\\\":return v(t);default:return null}return null},r.mallocArrayBuffer=a,r.mallocUint8=s,r.mallocUint16=l,r.mallocUint32=c,r.mallocInt8=u,r.mallocInt16=h,r.mallocInt32=f,r.mallocFloat32=r.mallocFloat=d,r.mallocFloat64=r.mallocDouble=p,r.mallocUint8Clamped=g,r.mallocDataView=v,r.mallocBuffer=m,r.clearCache=function(){for(var t=0;32>t;++t)_.UINT8[t].length=0,_.UINT16[t].length=0,_.UINT32[t].length=0,_.INT8[t].length=0,_.INT16[t].length=0,_.INT32[t].length=0,_.FLOAT[t].length=0,_.DOUBLE[t].length=0,_.UINT8C[t].length=0,w[t].length=0,A[t].length=0}}).call(this,\\\"undefined\\\"!=typeof global?global:\\\"undefined\\\"!=typeof self?self:\\\"undefined\\\"!=typeof window?window:{},t(\\\"buffer\\\").Buffer)},{\\\"bit-twiddle\\\":49,buffer:50,dup:72}],236:[function(t,e,r){\\\"use strict\\\";function n(t,e){for(var r=1,n=t.length,i=t[0],o=t[0],a=1;n>a;++a)if(o=i,i=t[a],e(i,o)){if(a===r){r++;continue}t[r++]=i}return t.length=r,t}function i(t){for(var e=1,r=t.length,n=t[0],i=t[0],o=1;r>o;++o,i=n)if(i=n,n=t[o],n!==i){if(o===e){e++;continue}t[e++]=n}return t.length=e,t}function o(t,e,r){return 0===t.length?t:e?(r||t.sort(e),n(t,e)):(r||t.sort(),i(t))}e.exports=o},{}],237:[function(t,e,r){\\\"use strict\\\";function n(t,e){return\\\"object\\\"==typeof e&&null!==e||(e={}),i(t,e.canvas||o,e.context||a,e)}e.exports=n;var i=t(\\\"./lib/vtext\\\"),o=null,a=null;\\\"undefined\\\"!=typeof document&&(o=document.createElement(\\\"canvas\\\"),o.width=8192,o.height=1024,a=o.getContext(\\\"2d\\\"))},{\\\"./lib/vtext\\\":238}],238:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){for(var n=e.textAlign||\\\"start\\\",i=e.textBaseline||\\\"alphabetic\\\",o=[1<<30,1<<30],a=[0,0],s=t.length,l=0;s>l;++l)for(var c=t[l],u=0;2>u;++u)o[u]=0|Math.min(o[u],c[u]),a[u]=0|Math.max(a[u],c[u]);var h=0;switch(n){case\\\"center\\\":h=-.5*(o[0]+a[0]);break;case\\\"right\\\":case\\\"end\\\":h=-a[0];break;case\\\"left\\\":case\\\"start\\\":h=-o[0];break;default:throw new Error(\\\"vectorize-text: Unrecognized textAlign: '\\\"+n+\\\"'\\\")}var f=0;switch(i){case\\\"hanging\\\":case\\\"top\\\":f=-o[1];break;case\\\"middle\\\":f=-.5*(o[1]+a[1]);break;case\\\"alphabetic\\\":case\\\"ideographic\\\":f=-3*r;break;case\\\"bottom\\\":f=-a[1];break;default:throw new Error(\\\"vectorize-text: Unrecoginized textBaseline: '\\\"+i+\\\"'\\\")}var d=1/r;return\\\"lineHeight\\\"in e?d*=+e.lineHeight:\\\"width\\\"in e?d=e.width/(a[0]-o[0]):\\\"height\\\"in e&&(d=e.height/(a[1]-o[1])),t.map(function(t){return[d*(t[0]+h),d*(t[1]+f)]})}function i(t,e,r,n){var i=0|Math.ceil(e.measureText(r).width+2*n);if(i>8192)throw new Error(\\\"vectorize-text: String too long (sorry, this will get fixed later)\\\");var o=3*n;t.height<o&&(t.height=o),e.fillStyle=\\\"#000\\\",e.fillRect(0,0,t.width,t.height),e.fillStyle=\\\"#fff\\\",e.fillText(r,n,2*n);var a=e.getImageData(0,0,i,o),s=u(a.data,[o,i,4]);return s.pick(-1,-1,0).transpose(1,0)}function o(t,e){var r=c(t,128);return e?h(r.cells,r.positions,.25):{edges:r.cells,positions:r.positions}}function a(t,e,r,i){var a=o(t,i),s=n(a.positions,e,r),l=a.edges,c=\\\"ccw\\\"===e.orientation;if(f(s,l),e.polygons||e.polygon||e.polyline){for(var u=p(l,s),h=new Array(u.length),g=0;g<u.length;++g){for(var v=u[g],m=new Array(v.length),y=0;y<v.length;++y){for(var b=v[y],x=new Array(b.length),_=0;_<b.length;++_)x[_]=s[b[_]].slice();c&&x.reverse(),m[y]=x}h[g]=m}return h}return e.triangles||e.triangulate||e.triangle?{cells:d(s,l,{delaunay:!1,exterior:!1,interior:!0}),positions:s}:{edges:l,positions:s}}function s(t,e,r){try{return a(t,e,r,!0)}catch(n){}try{return a(t,e,r,!1)}catch(n){}return e.polygons||e.polyline||e.polygon?[]:e.triangles||e.triangulate||e.triangle?{cells:[],positions:[]}:{edges:[],positions:[]}}function l(t,e,r,n){var o=n.size||64,a=n.font||\\\"normal\\\";r.font=o+\\\"px \\\"+a,r.textAlign=\\\"start\\\",r.textBaseline=\\\"alphabetic\\\",r.direction=\\\"ltr\\\";var l=i(e,r,t,o);return s(l,n,o)}e.exports=l,e.exports.processPixels=s;var c=t(\\\"surface-nets\\\"),u=t(\\\"ndarray\\\"),h=t(\\\"simplify-planar-graph\\\"),f=t(\\\"clean-pslg\\\"),d=t(\\\"cdt2d\\\"),p=t(\\\"planar-graph-to-polyline\\\")},{cdt2d:239,\\\"clean-pslg\\\":246,ndarray:210,\\\"planar-graph-to-polyline\\\":292,\\\"simplify-planar-graph\\\":296,\\\"surface-nets\\\":229}],239:[function(t,e,r){\\\"use strict\\\";function n(t){return[Math.min(t[0],t[1]),Math.max(t[0],t[1])]}function i(t,e){return t[0]-e[0]||t[1]-e[1]}function o(t){return t.map(n).sort(i)}function a(t,e,r){return e in t?t[e]:r}function s(t,e,r){Array.isArray(e)?(r=r||{},e=e||[]):(r=e||{},e=[]);var n=!!a(r,\\\"delaunay\\\",!0),i=!!a(r,\\\"interior\\\",!0),s=!!a(r,\\\"exterior\\\",!0),f=!!a(r,\\\"infinity\\\",!1);if(!i&&!s||0===t.length)return[];var d=l(t,e);if(n||i!==s||f){for(var p=c(t.length,o(e)),g=0;g<d.length;++g){var v=d[g];p.addTriangle(v[0],v[1],v[2])}return n&&u(t,p),s?i?f?h(p,0,f):p.cells():h(p,1,f):h(p,-1)}return d}var l=t(\\\"./lib/monotone\\\"),c=t(\\\"./lib/triangulation\\\"),u=t(\\\"./lib/delaunay\\\"),h=t(\\\"./lib/filter\\\");e.exports=s},{\\\"./lib/delaunay\\\":240,\\\"./lib/filter\\\":241,\\\"./lib/monotone\\\":242,\\\"./lib/triangulation\\\":243}],240:[function(t,e,r){\\\"use strict\\\";function n(t,e,r,n,i,a){var s=e.opposite(n,i);if(!(0>s)){if(n>i){var l=n;n=i,i=l,l=a,a=s,s=l}e.isConstraint(n,i)||o(t[n],t[i],t[a],t[s])<0&&r.push(n,i)}}function i(t,e){for(var r=[],i=t.length,a=e.stars,s=0;i>s;++s)for(var l=a[s],c=1;c<l.length;c+=2){var u=l[c];if(!(s>u||e.isConstraint(s,u))){for(var h=l[c-1],f=-1,d=1;d<l.length;d+=2)if(l[d-1]===u){f=l[d];break}0>f||o(t[s],t[u],t[h],t[f])<0&&r.push(s,u)}}for(;r.length>0;){for(var u=r.pop(),s=r.pop(),h=-1,f=-1,l=a[s],p=1;p<l.length;p+=2){var g=l[p-1],v=l[p];g===u?f=v:v===u&&(h=g)}0>h||0>f||o(t[s],t[u],t[h],t[f])>=0||(e.flip(s,u),n(t,e,r,h,s,f),n(t,e,r,s,f,h),n(t,e,r,f,u,h),n(t,e,r,u,h,f))}}var o=t(\\\"robust-in-sphere\\\")[4];t(\\\"binary-search-bounds\\\");e.exports=i},{\\\"binary-search-bounds\\\":244,\\\"robust-in-sphere\\\":245}],241:[function(t,e,r){\\\"use strict\\\";function n(t,e,r,n,i,o,a){this.cells=t,this.neighbor=e,this.flags=n,this.constraint=r,this.active=i,this.next=o,this.boundary=a}function i(t,e){return t[0]-e[0]||t[1]-e[1]||t[2]-e[2]}function o(t,e){for(var r=t.cells(),o=r.length,a=0;o>a;++a){var s=r[a],l=s[0],c=s[1],u=s[2];u>c?l>c&&(s[0]=c,s[1]=u,s[2]=l):l>u&&(s[0]=u,s[1]=l,s[2]=c)}r.sort(i);for(var h=new Array(o),a=0;a<h.length;++a)h[a]=0;var f=[],d=[],p=new Array(3*o),g=new Array(3*o),v=null;e&&(v=[]);for(var m=new n(r,p,g,h,f,d,v),a=0;o>a;++a)for(var s=r[a],y=0;3>y;++y){var l=s[y],c=s[(y+1)%3],b=p[3*a+y]=m.locate(c,l,t.opposite(c,l)),x=g[3*a+y]=t.isConstraint(l,c);0>b&&(x?d.push(a):(f.push(a),h[a]=1),e&&v.push([c,l,-1]))}return m}function a(t,e,r){for(var n=0,i=0;i<t.length;++i)e[i]===r&&(t[n++]=t[i]);return t.length=n,t}function s(t,e,r){var n=o(t,r);if(0===e)return r?n.cells.concat(n.boundary):n.cells;for(var i=1,s=n.active,l=n.next,c=n.flags,u=n.cells,h=n.constraint,f=n.neighbor;s.length>0||l.length>0;){for(;s.length>0;){var d=s.pop();if(c[d]!==-i){c[d]=i;for(var p=(u[d],0);3>p;++p){var g=f[3*d+p];g>=0&&0===c[g]&&(h[3*d+p]?l.push(g):(s.push(g),c[g]=i))}}}var v=l;l=s,s=v,l.length=0,i=-i}var m=a(u,c,e);return r?m.concat(n.boundary):m}var l=t(\\\"binary-search-bounds\\\");e.exports=s;var c=n.prototype;c.locate=function(){var t=[0,0,0];return function(e,r,n){var o=e,a=r,s=n;return n>r?e>r&&(o=r,a=n,s=e):e>n&&(o=n,a=e,s=r),0>o?-1:(t[0]=o,t[1]=a,t[2]=s,l.eq(this.cells,t,i))}}()},{\\\"binary-search-bounds\\\":244}],242:[function(t,e,r){\\\"use strict\\\";function n(t,e,r,n,i){this.a=t,this.b=e,this.idx=r,this.lowerIds=n,this.upperIds=i}function i(t,e,r,n){this.a=t,this.b=e,this.type=r,this.idx=n}function o(t,e){var r=t.a[0]-e.a[0]||t.a[1]-e.a[1]||t.type-e.type;return r?r:t.type!==p&&(r=d(t.a,t.b,e.b))?r:t.idx-e.idx}function a(t,e){return d(t.a,t.b,e)}function s(t,e,r,n,i){for(var o=f.lt(e,n,a),s=f.gt(e,n,a),l=o;s>l;++l){for(var c=e[l],u=c.lowerIds,h=u.length;h>1&&d(r[u[h-2]],r[u[h-1]],n)>0;)t.push([u[h-1],u[h-2],i]),h-=1;u.length=h,u.push(i);for(var p=c.upperIds,h=p.length;h>1&&d(r[p[h-2]],r[p[h-1]],n)<0;)t.push([p[h-2],p[h-1],i]),h-=1;p.length=h,p.push(i)}}function l(t,e){var r;return(r=t.a[0]<e.a[0]?d(t.a,t.b,e.a):d(e.b,e.a,t.a))?r:(r=e.b[0]<t.b[0]?d(t.a,t.b,e.b):d(e.b,e.a,t.b),r||t.idx-e.idx)}function c(t,e,r){var i=f.le(t,r,l),o=t[i],a=o.upperIds,s=a[a.length-1];o.upperIds=[s],t.splice(i+1,0,new n(r.a,r.b,r.idx,[s],a))}function u(t,e,r){var n=r.a;r.a=r.b,r.b=n;var i=f.eq(t,r,l),o=t[i],a=t[i-1];a.upperIds=o.upperIds,t.splice(i,1)}function h(t,e){for(var r=t.length,a=e.length,l=[],h=0;r>h;++h)l.push(new i(t[h],null,p,h));for(var h=0;a>h;++h){var f=e[h],d=t[f[0]],m=t[f[1]];d[0]<m[0]?l.push(new i(d,m,v,h),new i(m,d,g,h)):d[0]>m[0]&&l.push(new i(m,d,v,h),new i(d,m,g,h))}l.sort(o);for(var y=l[0].a[0]-(1+Math.abs(l[0].a[0]))*Math.pow(2,-52),b=[new n([y,1],[y,0],-1,[],[],[],[])],x=[],h=0,_=l.length;_>h;++h){var w=l[h],A=w.type;A===p?s(x,b,t,w.a,w.idx):A===v?c(b,t,w):u(b,t,w)}return x}var f=t(\\\"binary-search-bounds\\\"),d=t(\\\"robust-orientation\\\")[3],p=0,g=1,v=2;e.exports=h},{\\\"binary-search-bounds\\\":244,\\\"robust-orientation\\\":216}],243:[function(t,e,r){\\\"use strict\\\";function n(t,e){this.stars=t,this.edges=e}function i(t,e,r){for(var n=1,i=t.length;i>n;n+=2)if(t[n-1]===e&&t[n]===r)return t[n-1]=t[i-2],t[n]=t[i-1],void(t.length=i-2)}function o(t,e){for(var r=new Array(t),i=0;t>i;++i)r[i]=[];return new n(r,e)}var a=t(\\\"binary-search-bounds\\\");e.exports=o;var s=n.prototype;s.isConstraint=function(){function t(t,e){return t[0]-e[0]||t[1]-e[1]}var e=[0,0];return function(r,n){return e[0]=Math.min(r,n),e[1]=Math.max(r,n),a.eq(this.edges,e,t)>=0}}(),s.removeTriangle=function(t,e,r){var n=this.stars;i(n[t],e,r),i(n[e],r,t),i(n[r],t,e)},s.addTriangle=function(t,e,r){var n=this.stars;n[t].push(e,r),n[e].push(r,t),n[r].push(t,e)},s.opposite=function(t,e){for(var r=this.stars[e],n=1,i=r.length;i>n;n+=2)if(r[n]===t)return r[n-1];return-1},s.flip=function(t,e){var r=this.opposite(t,e),n=this.opposite(e,t);this.removeTriangle(t,e,r),this.removeTriangle(e,t,n),this.addTriangle(t,n,r),this.addTriangle(e,r,n)},s.edges=function(){for(var t=this.stars,e=[],r=0,n=t.length;n>r;++r)for(var i=t[r],o=0,a=i.length;a>o;o+=2)e.push([i[o],i[o+1]]);return e},s.cells=function(){for(var t=this.stars,e=[],r=0,n=t.length;n>r;++r)for(var i=t[r],o=0,a=i.length;a>o;o+=2){var s=i[o],l=i[o+1];r<Math.min(s,l)&&e.push([r,s,l])}return e}},{\\\"binary-search-bounds\\\":244}],244:[function(t,e,r){arguments[4][121][0].apply(r,arguments)},{dup:121}],245:[function(t,e,r){\\\"use strict\\\";function n(t,e){for(var r=new Array(t.length-1),n=1;n<t.length;++n)for(var i=r[n-1]=new Array(t.length-1),o=0,a=0;o<t.length;++o)o!==e&&(i[a++]=t[n][o]);return r}function i(t){for(var e=new Array(t),r=0;t>r;++r){e[r]=new Array(t);for(var n=0;t>n;++n)e[r][n]=[\\\"m\\\",n,\\\"[\\\",t-r-2,\\\"]\\\"].join(\\\"\\\")}return e}function o(t){if(1===t.length)return t[0];if(2===t.length)return[\\\"sum(\\\",t[0],\\\",\\\",t[1],\\\")\\\"].join(\\\"\\\");var e=t.length>>1;return[\\\"sum(\\\",o(t.slice(0,e)),\\\",\\\",o(t.slice(e)),\\\")\\\"].join(\\\"\\\")}function a(t,e){if(\\\"m\\\"===t.charAt(0)){if(\\\"w\\\"===e.charAt(0)){var r=t.split(\\\"[\\\");return[\\\"w\\\",e.substr(1),\\\"m\\\",r[0].substr(1)].join(\\\"\\\")}return[\\\"prod(\\\",t,\\\",\\\",e,\\\")\\\"].join(\\\"\\\")}return a(e,t)}function s(t){return t&!0?\\\"-\\\":\\\"\\\"}function l(t){if(2===t.length)return[[\\\"diff(\\\",a(t[0][0],t[1][1]),\\\",\\\",a(t[1][0],t[0][1]),\\\")\\\"].join(\\\"\\\")];for(var e=[],r=0;r<t.length;++r)e.push([\\\"scale(\\\",o(l(n(t,r))),\\\",\\\",s(r),t[0][r],\\\")\\\"].join(\\\"\\\"));return e}function c(t,e){for(var r=[],n=0;e-2>n;++n)r.push([\\\"prod(m\\\",t,\\\"[\\\",n,\\\"],m\\\",t,\\\"[\\\",n,\\\"])\\\"].join(\\\"\\\"));return o(r)}function u(t){for(var e=[],r=[],a=i(t),s=0;t>s;++s)a[0][s]=\\\"1\\\",a[t-1][s]=\\\"w\\\"+s;for(var s=0;t>s;++s)0===(1&s)?e.push.apply(e,l(n(a,s))):r.push.apply(r,l(n(a,s)));for(var u=o(e),h=o(r),f=\\\"exactInSphere\\\"+t,d=[],s=0;t>s;++s)d.push(\\\"m\\\"+s);for(var p=[\\\"function \\\",f,\\\"(\\\",d.join(),\\\"){\\\"],s=0;t>s;++s){p.push(\\\"var w\\\",s,\\\"=\\\",c(s,t),\\\";\\\");for(var g=0;t>g;++g)g!==s&&p.push(\\\"var w\\\",s,\\\"m\\\",g,\\\"=scale(w\\\",s,\\\",m\\\",g,\\\"[0]);\\\")}p.push(\\\"var p=\\\",u,\\\",n=\\\",h,\\\",d=diff(p,n);return d[d.length-1];}return \\\",f);var x=new Function(\\\"sum\\\",\\\"diff\\\",\\\"prod\\\",\\\"scale\\\",p.join(\\\"\\\"));return x(m,y,v,b)}function h(){return 0}function f(){return 0}function d(){return 0}function p(t){var e=_[t.length];return e||(e=_[t.length]=u(t.length)),e.apply(void 0,t)}function g(){for(;_.length<=x;)_.push(u(_.length));for(var t=[],r=[\\\"slow\\\"],n=0;x>=n;++n)t.push(\\\"a\\\"+n),r.push(\\\"o\\\"+n);for(var i=[\\\"function testInSphere(\\\",t.join(),\\\"){switch(arguments.length){case 0:case 1:return 0;\\\"],n=2;x>=n;++n)i.push(\\\"case \\\",n,\\\":return o\\\",n,\\\"(\\\",t.slice(0,n).join(),\\\");\\\");i.push(\\\"}var s=new Array(arguments.length);for(var i=0;i<arguments.length;++i){s[i]=arguments[i]};return slow(s);}return testInSphere\\\"),r.push(i.join(\\\"\\\"));var o=Function.apply(void 0,r);e.exports=o.apply(void 0,[p].concat(_));for(var n=0;x>=n;++n)e.exports[n]=_[n]}var v=t(\\\"two-product\\\"),m=t(\\\"robust-sum\\\"),y=t(\\\"robust-subtract\\\"),b=t(\\\"robust-scale\\\"),x=6,_=[h,f,d];g()},{\\\"robust-scale\\\":217,\\\"robust-subtract\\\":218,\\\"robust-sum\\\":219,\\\"two-product\\\":233}],246:[function(t,e,r){\\\"use strict\\\";function n(t){var e=x(t),r=b(y(e),t);return 0>r?[e,w(e,1/0)]:r>0?[w(e,-(1/0)),e]:[e,e]}function i(t,e){for(var r=new Array(e.length),n=0;n<e.length;++n){var i=e[n],o=t[i[0]],a=t[i[1]];r[n]=[Math.min(o[0],a[0]),Math.min(o[1],a[1]),Math.max(o[0],a[0]),Math.max(o[1],a[1])]}return r}function o(t){for(var e=new Array(t.length),r=0;r<t.length;++r){var n=t[r];e[r]=[n[0],n[1],n[0],n[1]]}return e}function a(t,e,r){var n=[];return v(r,function(r,i){var o=e[r],a=e[i];if(o[0]!==a[0]&&o[0]!==a[1]&&o[1]!==a[0]&&o[1]!==a[1]){var s=t[o[0]],l=t[o[1]],c=t[a[0]],u=t[a[1]];m(s,l,c,u)&&n.push([r,i])}}),n}function s(t,e,r,n){var i=[];return v(r,n,function(r,n){var o=e[r];if(o[0]!==n&&o[1]!==n){var a=t[n],s=t[o[0]],l=t[o[1]];m(s,l,a,a)&&i.push([r,n])}}),i}function l(t,e,r,n,i){function o(e){if(e>=t.length)return a[e-t.length];var r=t[e];return[y(r[0]),y(r[1])]}for(var a=[],s=0;s<r.length;++s){var l=r[s],c=l[0],u=l[1],h=e[c],f=e[u],d=A(_(t[h[0]]),_(t[h[1]]),_(t[f[0]]),_(t[f[1]]));if(d){var p=a.length+t.length;a.push(d),n.push([c,p],[u,p])}}n.sort(function(t,e){if(t[0]!==e[0])return t[0]-e[0];var r=o(t[1]),n=o(e[1]);return b(r[0],n[0])||b(r[1],n[1])});for(var s=n.length-1;s>=0;--s){var g=n[s],c=g[0],v=e[c],m=v[0],x=v[1],w=t[m],k=t[x];if((w[0]-k[0]||w[1]-k[1])<0){var M=m;m=x,x=M}v[0]=m;var T,E=v[1]=g[1];for(i&&(T=v[2]);s>0&&n[s-1][0]===c;){var g=n[--s],L=g[1];i?e.push([E,L,T]):e.push([E,L]),E=L}i?e.push([E,x,T]):e.push([E,x])}return a}function c(t,e,r){for(var i=t.length+e.length,o=new g(i),a=r,s=0;s<e.length;++s){var l=e[s],c=n(l[0]),u=n(l[1]);a.push([c[0],u[0],c[1],u[1]]),t.push([x(l[0]),x(l[1])])}v(a,function(t,e){o.link(t,e)});for(var h=0,f=!0,d=new Array(i),s=0;i>s;++s){var p=o.find(s);p===s?(d[s]=h,t[h++]=t[s]):(f=!1,d[s]=-1)}if(t.length=h,f)return null;for(var s=0;i>s;++s)d[s]<0&&(d[s]=d[o.find(s)]);return d}function u(t,e){return t[0]-e[0]||t[1]-e[1]}function h(t,e){var r=t[0]-e[0]||t[1]-e[1];return r?r:t[2]<e[2]?-1:t[2]>e[2]?1:0}function f(t,e,r){if(0!==t.length){if(e)for(var n=0;n<t.length;++n){var i=t[n],o=e[i[0]],a=e[i[1]];i[0]=Math.min(o,a),i[1]=Math.max(o,a)}else for(var n=0;n<t.length;++n){var i=t[n],o=i[0],a=i[1];i[0]=Math.min(o,a),i[1]=Math.max(o,a)}r?t.sort(h):t.sort(u);for(var s=1,n=1;n<t.length;++n){var l=t[n-1],c=t[n];(c[0]!==l[0]||c[1]!==l[1]||r&&c[2]!==l[2])&&(t[s++]=c)}t.length=s}}function d(t,e,r){var n=i(t,e),u=a(t,e,n),h=o(t),d=s(t,e,n,h),p=l(t,e,u,d,r),g=c(t,p,h);return f(e,g,r),g?!0:u.length>0||d.length>0}function p(t,e,r){var n,i=!1;if(r){n=e;for(var o=new Array(e.length),a=0;a<e.length;++a){var s=e[a];o[a]=[s[0],s[1],r[a]]}e=o}for(;d(t,e,!!r);)i=!0;if(r&&i){n.length=0,r.length=0;for(var a=0;a<e.length;++a){var s=e[a];n.push([s[0],s[1]]),r.push(s[2])}}return i}e.exports=p;var g=t(\\\"union-find\\\"),v=t(\\\"box-intersect\\\"),m=(t(\\\"compare-cell\\\"),t(\\\"robust-segment-intersect\\\")),y=t(\\\"big-rat\\\"),b=t(\\\"big-rat/cmp\\\"),x=t(\\\"big-rat/to-float\\\"),_=t(\\\"rat-vec\\\"),w=t(\\\"nextafter\\\"),A=t(\\\"./lib/rat-seg-intersect\\\")},{\\\"./lib/rat-seg-intersect\\\":247,\\\"big-rat\\\":251,\\\"big-rat/cmp\\\":249,\\\"big-rat/to-float\\\":264,\\\"box-intersect\\\":265,\\\"compare-cell\\\":59,nextafter:273,\\\"rat-vec\\\":275,\\\"robust-segment-intersect\\\":278,\\\"union-find\\\":279}],247:[function(t,e,r){\\\"use strict\\\";function n(t,e){return s(o(t[0],e[1]),o(t[1],e[0]))}function i(t,e,r,i){var o=c(e,t),s=c(i,r),f=n(o,s);if(0===l(f))return null;var d=c(t,r),p=n(s,d),g=a(p,f);return u(t,h(o,g))}e.exports=i;var o=t(\\\"big-rat/mul\\\"),a=t(\\\"big-rat/div\\\"),s=t(\\\"big-rat/sub\\\"),l=t(\\\"big-rat/sign\\\"),c=t(\\\"rat-vec/sub\\\"),u=t(\\\"rat-vec/add\\\"),h=t(\\\"rat-vec/muls\\\");t(\\\"big-rat/to-float\\\")},{\\\"big-rat/div\\\":250,\\\"big-rat/mul\\\":260,\\\"big-rat/sign\\\":262,\\\"big-rat/sub\\\":263,\\\"big-rat/to-float\\\":264,\\\"rat-vec/add\\\":274,\\\"rat-vec/muls\\\":276,\\\"rat-vec/sub\\\":277}],248:[function(t,e,r){\\\"use strict\\\";function n(t,e){return i(t[0].mul(e[1]).add(e[0].mul(t[1])),t[1].mul(e[1]))}var i=t(\\\"./lib/rationalize\\\");e.exports=n},{\\\"./lib/rationalize\\\":258}],249:[function(t,e,r){\\\"use strict\\\";function n(t,e){return t[0].mul(e[1]).cmp(e[0].mul(t[1]))}e.exports=n},{}],250:[function(t,e,r){\\\"use strict\\\";function n(t,e){return i(t[0].mul(e[1]),t[1].mul(e[0]))}var i=t(\\\"./lib/rationalize\\\");e.exports=n},{\\\"./lib/rationalize\\\":258}],251:[function(t,e,r){\\\"use strict\\\";function n(t,e){if(i(t))return e?c(t,n(e)):[t[0].clone(),t[1].clone()];var r,u,h=0;if(o(t))r=t.clone();else if(\\\"string\\\"==typeof t)r=s(t);else{if(0===t)return[a(0),a(1)];if(t===Math.floor(t))r=a(t);else{for(;t!==Math.floor(t);)t*=Math.pow(2,256),h-=256;r=a(t)}}if(i(e))r.mul(e[1]),u=e[0].clone();else if(o(e))u=e.clone();else if(\\\"string\\\"==typeof e)u=s(e);else if(e)if(e===Math.floor(e))u=a(e);else{for(;e!==Math.floor(e);)e*=Math.pow(2,256),h+=256;u=a(e)}else u=a(1);return h>0?r=r.shln(h):0>h&&(u=u.shln(-h)),l(r,u)}var i=t(\\\"./is-rat\\\"),o=t(\\\"./lib/is-bn\\\"),a=t(\\\"./lib/num-to-bn\\\"),s=t(\\\"./lib/str-to-bn\\\"),l=t(\\\"./lib/rationalize\\\"),c=t(\\\"./div\\\");e.exports=n},{\\\"./div\\\":250,\\\"./is-rat\\\":252,\\\"./lib/is-bn\\\":256,\\\"./lib/num-to-bn\\\":257,\\\"./lib/rationalize\\\":258,\\\"./lib/str-to-bn\\\":259}],252:[function(t,e,r){\\\"use strict\\\";function n(t){return Array.isArray(t)&&2===t.length&&i(t[0])&&i(t[1])}var i=t(\\\"./lib/is-bn\\\");e.exports=n},{\\\"./lib/is-bn\\\":256}],253:[function(t,e,r){\\\"use strict\\\";function n(t){return t.cmp(new i(0))}var i=t(\\\"bn.js\\\");e.exports=n},{\\\"bn.js\\\":261}],254:[function(t,e,r){\\\"use strict\\\";function n(t){var e=t.length,r=t.words,n=0;if(1===e)n=r[0];else if(2===e)n=r[0]+67108864*r[1];else for(var n=0,i=0;e>i;i++){var o=r[i];n+=o*Math.pow(67108864,i)}return t.sign?-n:n}e.exports=n},{}],255:[function(t,e,r){\\\"use strict\\\";function n(t){var e=o(i.lo(t));if(32>e)return e;var r=o(i.hi(t));return r>20?52:r+32}var i=t(\\\"double-bits\\\"),o=t(\\\"bit-twiddle\\\").countTrailingZeros;e.exports=n},{\\\"bit-twiddle\\\":49,\\\"double-bits\\\":272}],256:[function(t,e,r){\\\"use strict\\\";function n(t){return t&&\\\"object\\\"==typeof t&&Boolean(t.words)}t(\\\"bn.js\\\");e.exports=n},{\\\"bn.js\\\":261}],257:[function(t,e,r){\\\"use strict\\\";function n(t){var e=o.exponent(t);return 52>e?new i(t):new i(t*Math.pow(2,52-e)).shln(e-52)}var i=t(\\\"bn.js\\\"),o=t(\\\"double-bits\\\");e.exports=n},{\\\"bn.js\\\":261,\\\"double-bits\\\":272}],258:[function(t,e,r){\\\"use strict\\\";function n(t,e){var r=o(t),n=o(e);if(0===r)return[i(0),i(1)];if(0===n)return[i(0),i(0)];0>n&&(t=t.neg(),e=e.neg());var a=t.gcd(e);return a.cmpn(1)?[t.div(a),e.div(a)]:[t,e]}var i=t(\\\"./num-to-bn\\\"),o=t(\\\"./bn-sign\\\");e.exports=n},{\\\"./bn-sign\\\":253,\\\"./num-to-bn\\\":257}],259:[function(t,e,r){\\\"use strict\\\";function n(t){return new i(t)}var i=t(\\\"bn.js\\\");e.exports=n},{\\\"bn.js\\\":261}],260:[function(t,e,r){\\\"use strict\\\";function n(t,e){return i(t[0].mul(e[0]),t[1].mul(e[1]))}var i=t(\\\"./lib/rationalize\\\");e.exports=n},{\\\"./lib/rationalize\\\":258}],261:[function(t,e,r){!function(t,e){\\\"use strict\\\";function r(t,e){if(!t)throw new Error(e||\\\"Assertion failed\\\")}function n(t,e){t.super_=e;var r=function(){};r.prototype=e.prototype,t.prototype=new r,t.prototype.constructor=t}function i(t,e,r){return null!==t&&\\\"object\\\"==typeof t&&Array.isArray(t.words)?t:(this.sign=!1,this.words=null,this.length=0,this.red=null,\\\"le\\\"!==e&&\\\"be\\\"!==e||(r=e,e=10),void(null!==t&&this._init(t||0,e||10,r||\\\"be\\\")))}function o(t,e,r){for(var n=0,i=Math.min(t.length,r),o=e;i>o;o++){var a=t.charCodeAt(o)-48;n<<=4,n|=a>=49&&54>=a?a-49+10:a>=17&&22>=a?a-17+10:15&a}return n}function a(t,e,r,n){for(var i=0,o=Math.min(t.length,r),a=e;o>a;a++){var s=t.charCodeAt(a)-48;i*=n,i+=s>=49?s-49+10:s>=17?s-17+10:s}return i}function s(t,e){this.name=t,this.p=new i(e,16),this.n=this.p.bitLength(),this.k=new i(1).ishln(this.n).isub(this.p),this.tmp=this._tmp()}function l(){s.call(this,\\\"k256\\\",\\\"ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f\\\")}function c(){s.call(this,\\\"p224\\\",\\\"ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001\\\")}function u(){s.call(this,\\\"p192\\\",\\\"ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff\\\")}function h(){s.call(this,\\\"25519\\\",\\\"7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed\\\")}function f(t){if(\\\"string\\\"==typeof t){var e=i._prime(t);this.m=e.p,this.prime=e}else this.m=t,this.prime=null}function d(t){f.call(this,t),this.shift=this.m.bitLength(),this.shift%26!==0&&(this.shift+=26-this.shift%26),this.r=new i(1).ishln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv.sign=!0,this.minv=this.minv.mod(this.r)}\\\"object\\\"==typeof t?t.exports=i:e.BN=i,i.BN=i,i.wordSize=26,i.prototype._init=function(t,e,n){if(\\\"number\\\"==typeof t)return this._initNumber(t,e,n);if(\\\"object\\\"==typeof t)return this._initArray(t,e,n);\\\"hex\\\"===e&&(e=16),r(e===(0|e)&&e>=2&&36>=e),t=t.toString().replace(/\\\\s+/g,\\\"\\\");var i=0;\\\"-\\\"===t[0]&&i++,16===e?this._parseHex(t,i):this._parseBase(t,e,i),\\\"-\\\"===t[0]&&(this.sign=!0),this.strip(),\\\"le\\\"===n&&this._initArray(this.toArray(),e,n)},i.prototype._initNumber=function(t,e,n){0>t&&(this.sign=!0,t=-t),67108864>t?(this.words=[67108863&t],this.length=1):4503599627370496>t?(this.words=[67108863&t,t/67108864&67108863],this.length=2):(r(9007199254740992>t),this.words=[67108863&t,t/67108864&67108863,1],this.length=3),\\\"le\\\"===n&&this._initArray(this.toArray(),e,n)},i.prototype._initArray=function(t,e,n){if(r(\\\"number\\\"==typeof t.length),t.length<=0)return this.words=[0],this.length=1,this;this.length=Math.ceil(t.length/3),this.words=new Array(this.length);for(var i=0;i<this.length;i++)this.words[i]=0;var o=0;if(\\\"be\\\"===n)for(var i=t.length-1,a=0;i>=0;i-=3){var s=t[i]|t[i-1]<<8|t[i-2]<<16;this.words[a]|=s<<o&67108863,this.words[a+1]=s>>>26-o&67108863,o+=24,o>=26&&(o-=26,a++)}else if(\\\"le\\\"===n)for(var i=0,a=0;i<t.length;i+=3){var s=t[i]|t[i+1]<<8|t[i+2]<<16;this.words[a]|=s<<o&67108863,this.words[a+1]=s>>>26-o&67108863,o+=24,o>=26&&(o-=26,a++)}return this.strip()},i.prototype._parseHex=function(t,e){this.length=Math.ceil((t.length-e)/6),this.words=new Array(this.length);for(var r=0;r<this.length;r++)this.words[r]=0;for(var n=0,r=t.length-6,i=0;r>=e;r-=6){var a=o(t,r,r+6);this.words[i]|=a<<n&67108863,this.words[i+1]|=a>>>26-n&4194303,n+=24,n>=26&&(n-=26,i++)}if(r+6!==e){var a=o(t,e,r+6);this.words[i]|=a<<n&67108863,this.words[i+1]|=a>>>26-n&4194303}this.strip()},i.prototype._parseBase=function(t,e,r){this.words=[0],this.length=1;for(var n=0,i=1;67108863>=i;i*=e)n++;n--,i=i/e|0;for(var o=t.length-r,s=o%n,l=Math.min(o,o-s)+r,c=0,u=r;l>u;u+=n)c=a(t,u,u+n,e),this.imuln(i),this.words[0]+c<67108864?this.words[0]+=c:this._iaddn(c);if(0!==s){for(var h=1,c=a(t,u,t.length,e),u=0;s>u;u++)h*=e;this.imuln(h),this.words[0]+c<67108864?this.words[0]+=c:this._iaddn(c)}},i.prototype.copy=function(t){t.words=new Array(this.length);for(var e=0;e<this.length;e++)t.words[e]=this.words[e];t.length=this.length,t.sign=this.sign,t.red=this.red},i.prototype.clone=function(){var t=new i(null);return this.copy(t),t},i.prototype.strip=function(){for(;this.length>1&&0===this.words[this.length-1];)this.length--;return this._normSign()},i.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.sign=!1),this},i.prototype.inspect=function(){return(this.red?\\\"<BN-R: \\\":\\\"<BN: \\\")+this.toString(16)+\\\">\\\"};var p=[\\\"\\\",\\\"0\\\",\\\"00\\\",\\\"000\\\",\\\"0000\\\",\\\"00000\\\",\\\"000000\\\",\\\"0000000\\\",\\\"00000000\\\",\\\"000000000\\\",\\\"0000000000\\\",\\\"00000000000\\\",\\\"000000000000\\\",\\\"0000000000000\\\",\\\"00000000000000\\\",\\\"000000000000000\\\",\\\"0000000000000000\\\",\\\"00000000000000000\\\",\\\"000000000000000000\\\",\\\"0000000000000000000\\\",\\\"00000000000000000000\\\",\\\"000000000000000000000\\\",\\\"0000000000000000000000\\\",\\\"00000000000000000000000\\\",\\\"000000000000000000000000\\\",\\\"0000000000000000000000000\\\"],g=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],v=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];i.prototype.toString=function(t,e){if(t=t||10,16===t||\\\"hex\\\"===t){for(var n=\\\"\\\",i=0,e=0|e||1,o=0,a=0;a<this.length;a++){var s=this.words[a],l=(16777215&(s<<i|o)).toString(16);o=s>>>24-i&16777215,n=0!==o||a!==this.length-1?p[6-l.length]+l+n:l+n,i+=2,i>=26&&(i-=26,a--)}for(0!==o&&(n=o.toString(16)+n);n.length%e!==0;)n=\\\"0\\\"+n;return this.sign&&(n=\\\"-\\\"+n),n}if(t===(0|t)&&t>=2&&36>=t){var c=g[t],u=v[t],n=\\\"\\\",h=this.clone();for(h.sign=!1;0!==h.cmpn(0);){var f=h.modn(u).toString(t);h=h.idivn(u),n=0!==h.cmpn(0)?p[c-f.length]+f+n:f+n}return 0===this.cmpn(0)&&(n=\\\"0\\\"+n),this.sign&&(n=\\\"-\\\"+n),n}r(!1,\\\"Base should be between 2 and 36\\\")},i.prototype.toJSON=function(){return this.toString(16)},i.prototype.toArray=function(t){this.strip();var e=new Array(this.byteLength());e[0]=0;var r=this.clone();if(\\\"le\\\"!==t)for(var n=0;0!==r.cmpn(0);n++){var i=r.andln(255);r.ishrn(8),e[e.length-n-1]=i}else for(var n=0;0!==r.cmpn(0);n++){var i=r.andln(255);r.ishrn(8),e[n]=i}return e},Math.clz32?i.prototype._countBits=function(t){return 32-Math.clz32(t)}:i.prototype._countBits=function(t){var e=t,r=0;return e>=4096&&(r+=13,e>>>=13),e>=64&&(r+=7,e>>>=7),e>=8&&(r+=4,e>>>=4),e>=2&&(r+=2,e>>>=2),r+e},i.prototype._zeroBits=function(t){if(0===t)return 26;var e=t,r=0;return 0===(8191&e)&&(r+=13,e>>>=13),0===(127&e)&&(r+=7,e>>>=7),0===(15&e)&&(r+=4,e>>>=4),0===(3&e)&&(r+=2,e>>>=2),0===(1&e)&&r++,r},i.prototype.bitLength=function(){var t=0,e=this.words[this.length-1],t=this._countBits(e);return 26*(this.length-1)+t},i.prototype.zeroBits=function(){if(0===this.cmpn(0))return 0;for(var t=0,e=0;e<this.length;e++){var r=this._zeroBits(this.words[e]);if(t+=r,26!==r)break}return t},i.prototype.byteLength=function(){return Math.ceil(this.bitLength()/8)},i.prototype.neg=function(){if(0===this.cmpn(0))return this.clone();var t=this.clone();return t.sign=!this.sign,t},i.prototype.ior=function(t){for(this.sign=this.sign||t.sign;this.length<t.length;)this.words[this.length++]=0;for(var e=0;e<t.length;e++)this.words[e]=this.words[e]|t.words[e];return this.strip()},i.prototype.or=function(t){return this.length>t.length?this.clone().ior(t):t.clone().ior(this)},i.prototype.iand=function(t){this.sign=this.sign&&t.sign;var e;e=this.length>t.length?t:this;for(var r=0;r<e.length;r++)this.words[r]=this.words[r]&t.words[r];return this.length=e.length,this.strip()},i.prototype.and=function(t){return this.length>t.length?this.clone().iand(t):t.clone().iand(this)},i.prototype.ixor=function(t){\\n\",\n       \"this.sign=this.sign||t.sign;var e,r;this.length>t.length?(e=this,r=t):(e=t,r=this);for(var n=0;n<r.length;n++)this.words[n]=e.words[n]^r.words[n];if(this!==e)for(;n<e.length;n++)this.words[n]=e.words[n];return this.length=e.length,this.strip()},i.prototype.xor=function(t){return this.length>t.length?this.clone().ixor(t):t.clone().ixor(this)},i.prototype.setn=function(t,e){r(\\\"number\\\"==typeof t&&t>=0);for(var n=t/26|0,i=t%26;this.length<=n;)this.words[this.length++]=0;return e?this.words[n]=this.words[n]|1<<i:this.words[n]=this.words[n]&~(1<<i),this.strip()},i.prototype.iadd=function(t){if(this.sign&&!t.sign){this.sign=!1;var e=this.isub(t);return this.sign=!this.sign,this._normSign()}if(!this.sign&&t.sign){t.sign=!1;var e=this.isub(t);return t.sign=!0,e._normSign()}var r,n;this.length>t.length?(r=this,n=t):(r=t,n=this);for(var i=0,o=0;o<n.length;o++){var e=r.words[o]+n.words[o]+i;this.words[o]=67108863&e,i=e>>>26}for(;0!==i&&o<r.length;o++){var e=r.words[o]+i;this.words[o]=67108863&e,i=e>>>26}if(this.length=r.length,0!==i)this.words[this.length]=i,this.length++;else if(r!==this)for(;o<r.length;o++)this.words[o]=r.words[o];return this},i.prototype.add=function(t){if(t.sign&&!this.sign){t.sign=!1;var e=this.sub(t);return t.sign=!0,e}if(!t.sign&&this.sign){this.sign=!1;var e=t.sub(this);return this.sign=!0,e}return this.length>t.length?this.clone().iadd(t):t.clone().iadd(this)},i.prototype.isub=function(t){if(t.sign){t.sign=!1;var e=this.iadd(t);return t.sign=!0,e._normSign()}if(this.sign)return this.sign=!1,this.iadd(t),this.sign=!0,this._normSign();var r=this.cmp(t);if(0===r)return this.sign=!1,this.length=1,this.words[0]=0,this;var n,i;r>0?(n=this,i=t):(n=t,i=this);for(var o=0,a=0;a<i.length;a++){var e=n.words[a]-i.words[a]+o;o=e>>26,this.words[a]=67108863&e}for(;0!==o&&a<n.length;a++){var e=n.words[a]+o;o=e>>26,this.words[a]=67108863&e}if(0===o&&a<n.length&&n!==this)for(;a<n.length;a++)this.words[a]=n.words[a];return this.length=Math.max(this.length,a),n!==this&&(this.sign=!0),this.strip()},i.prototype.sub=function(t){return this.clone().isub(t)},i.prototype._smallMulTo=function(t,e){e.sign=t.sign!==this.sign,e.length=this.length+t.length;for(var r=0,n=0;n<e.length-1;n++){for(var i=r>>>26,o=67108863&r,a=Math.min(n,t.length-1),s=Math.max(0,n-this.length+1);a>=s;s++){var l=n-s,c=0|this.words[l],u=0|t.words[s],h=c*u,f=67108863&h;i=i+(h/67108864|0)|0,f=f+o|0,o=67108863&f,i=i+(f>>>26)|0}e.words[n]=o,r=i}return 0!==r?e.words[n]=r:e.length--,e.strip()},i.prototype._bigMulTo=function(t,e){e.sign=t.sign!==this.sign,e.length=this.length+t.length;for(var r=0,n=0,i=0;i<e.length-1;i++){var o=n;n=0;for(var a=67108863&r,s=Math.min(i,t.length-1),l=Math.max(0,i-this.length+1);s>=l;l++){var c=i-l,u=0|this.words[c],h=0|t.words[l],f=u*h,d=67108863&f;o=o+(f/67108864|0)|0,d=d+a|0,a=67108863&d,o=o+(d>>>26)|0,n+=o>>>26,o&=67108863}e.words[i]=a,r=o,o=n}return 0!==r?e.words[i]=r:e.length--,e.strip()},i.prototype.mulTo=function(t,e){var r;return r=this.length+t.length<63?this._smallMulTo(t,e):this._bigMulTo(t,e)},i.prototype.mul=function(t){var e=new i(null);return e.words=new Array(this.length+t.length),this.mulTo(t,e)},i.prototype.imul=function(t){if(0===this.cmpn(0)||0===t.cmpn(0))return this.words[0]=0,this.length=1,this;var e=this.length,r=t.length;this.sign=t.sign!==this.sign,this.length=this.length+t.length,this.words[this.length-1]=0;for(var n=this.length-2;n>=0;n--){for(var i=0,o=0,a=Math.min(n,r-1),s=Math.max(0,n-e+1);a>=s;s++){var l=n-s,c=this.words[l],u=t.words[s],h=c*u,f=67108863&h;i+=h/67108864|0,f+=o,o=67108863&f,i+=f>>>26}this.words[n]=o,this.words[n+1]+=i,i=0}for(var i=0,l=1;l<this.length;l++){var d=this.words[l]+i;this.words[l]=67108863&d,i=d>>>26}return this.strip()},i.prototype.imuln=function(t){r(\\\"number\\\"==typeof t);for(var e=0,n=0;n<this.length;n++){var i=this.words[n]*t,o=(67108863&i)+(67108863&e);e>>=26,e+=i/67108864|0,e+=o>>>26,this.words[n]=67108863&o}return 0!==e&&(this.words[n]=e,this.length++),this},i.prototype.muln=function(t){return this.clone().imuln(t)},i.prototype.sqr=function(){return this.mul(this)},i.prototype.isqr=function(){return this.mul(this)},i.prototype.ishln=function(t){r(\\\"number\\\"==typeof t&&t>=0);var e=t%26,n=(t-e)/26,i=67108863>>>26-e<<26-e;if(0!==e){for(var o=0,a=0;a<this.length;a++){var s=this.words[a]&i,l=this.words[a]-s<<e;this.words[a]=l|o,o=s>>>26-e}o&&(this.words[a]=o,this.length++)}if(0!==n){for(var a=this.length-1;a>=0;a--)this.words[a+n]=this.words[a];for(var a=0;n>a;a++)this.words[a]=0;this.length+=n}return this.strip()},i.prototype.ishrn=function(t,e,n){r(\\\"number\\\"==typeof t&&t>=0);var i;i=e?(e-e%26)/26:0;var o=t%26,a=Math.min((t-o)/26,this.length),s=67108863^67108863>>>o<<o,l=n;if(i-=a,i=Math.max(0,i),l){for(var c=0;a>c;c++)l.words[c]=this.words[c];l.length=a}if(0===a);else if(this.length>a){this.length-=a;for(var c=0;c<this.length;c++)this.words[c]=this.words[c+a]}else this.words[0]=0,this.length=1;for(var u=0,c=this.length-1;c>=0&&(0!==u||c>=i);c--){var h=this.words[c];this.words[c]=u<<26-o|h>>>o,u=h&s}return l&&0!==u&&(l.words[l.length++]=u),0===this.length&&(this.words[0]=0,this.length=1),this.strip(),this},i.prototype.shln=function(t){return this.clone().ishln(t)},i.prototype.shrn=function(t){return this.clone().ishrn(t)},i.prototype.testn=function(t){r(\\\"number\\\"==typeof t&&t>=0);var e=t%26,n=(t-e)/26,i=1<<e;if(this.length<=n)return!1;var o=this.words[n];return!!(o&i)},i.prototype.imaskn=function(t){r(\\\"number\\\"==typeof t&&t>=0);var e=t%26,n=(t-e)/26;if(r(!this.sign,\\\"imaskn works only with positive numbers\\\"),0!==e&&n++,this.length=Math.min(n,this.length),0!==e){var i=67108863^67108863>>>e<<e;this.words[this.length-1]&=i}return this.strip()},i.prototype.maskn=function(t){return this.clone().imaskn(t)},i.prototype.iaddn=function(t){return r(\\\"number\\\"==typeof t),0>t?this.isubn(-t):this.sign?1===this.length&&this.words[0]<t?(this.words[0]=t-this.words[0],this.sign=!1,this):(this.sign=!1,this.isubn(t),this.sign=!0,this):this._iaddn(t)},i.prototype._iaddn=function(t){this.words[0]+=t;for(var e=0;e<this.length&&this.words[e]>=67108864;e++)this.words[e]-=67108864,e===this.length-1?this.words[e+1]=1:this.words[e+1]++;return this.length=Math.max(this.length,e+1),this},i.prototype.isubn=function(t){if(r(\\\"number\\\"==typeof t),0>t)return this.iaddn(-t);if(this.sign)return this.sign=!1,this.iaddn(t),this.sign=!0,this;this.words[0]-=t;for(var e=0;e<this.length&&this.words[e]<0;e++)this.words[e]+=67108864,this.words[e+1]-=1;return this.strip()},i.prototype.addn=function(t){return this.clone().iaddn(t)},i.prototype.subn=function(t){return this.clone().isubn(t)},i.prototype.iabs=function(){return this.sign=!1,this},i.prototype.abs=function(){return this.clone().iabs()},i.prototype._ishlnsubmul=function(t,e,n){var i,o=t.length+n;if(this.words.length<o){for(var a=new Array(o),i=0;i<this.length;i++)a[i]=this.words[i];this.words=a}else i=this.length;for(this.length=Math.max(this.length,o);i<this.length;i++)this.words[i]=0;for(var s=0,i=0;i<t.length;i++){var l=this.words[i+n]+s,c=t.words[i]*e;l-=67108863&c,s=(l>>26)-(c/67108864|0),this.words[i+n]=67108863&l}for(;i<this.length-n;i++){var l=this.words[i+n]+s;s=l>>26,this.words[i+n]=67108863&l}if(0===s)return this.strip();r(-1===s),s=0;for(var i=0;i<this.length;i++){var l=-this.words[i]+s;s=l>>26,this.words[i]=67108863&l}return this.sign=!0,this.strip()},i.prototype._wordDiv=function(t,e){var r=this.length-t.length,n=this.clone(),o=t,a=o.words[o.length-1],s=this._countBits(a);r=26-s,0!==r&&(o=o.shln(r),n.ishln(r),a=o.words[o.length-1]);var l,c=n.length-o.length;if(\\\"mod\\\"!==e){l=new i(null),l.length=c+1,l.words=new Array(l.length);for(var u=0;u<l.length;u++)l.words[u]=0}var h=n.clone()._ishlnsubmul(o,1,c);h.sign||(n=h,l&&(l.words[c]=1));for(var f=c-1;f>=0;f--){var d=67108864*n.words[o.length+f]+n.words[o.length+f-1];for(d=Math.min(d/a|0,67108863),n._ishlnsubmul(o,d,f);n.sign;)d--,n.sign=!1,n._ishlnsubmul(o,1,f),0!==n.cmpn(0)&&(n.sign=!n.sign);l&&(l.words[f]=d)}return l&&l.strip(),n.strip(),\\\"div\\\"!==e&&0!==r&&n.ishrn(r),{div:l?l:null,mod:n}},i.prototype.divmod=function(t,e){if(r(0!==t.cmpn(0)),this.sign&&!t.sign){var n,o,a=this.neg().divmod(t,e);return\\\"mod\\\"!==e&&(n=a.div.neg()),\\\"div\\\"!==e&&(o=0===a.mod.cmpn(0)?a.mod:t.sub(a.mod)),{div:n,mod:o}}if(!this.sign&&t.sign){var n,a=this.divmod(t.neg(),e);return\\\"mod\\\"!==e&&(n=a.div.neg()),{div:n,mod:a.mod}}return this.sign&&t.sign?this.neg().divmod(t.neg(),e):t.length>this.length||this.cmp(t)<0?{div:new i(0),mod:this}:1===t.length?\\\"div\\\"===e?{div:this.divn(t.words[0]),mod:null}:\\\"mod\\\"===e?{div:null,mod:new i(this.modn(t.words[0]))}:{div:this.divn(t.words[0]),mod:new i(this.modn(t.words[0]))}:this._wordDiv(t,e)},i.prototype.div=function(t){return this.divmod(t,\\\"div\\\").div},i.prototype.mod=function(t){return this.divmod(t,\\\"mod\\\").mod},i.prototype.divRound=function(t){var e=this.divmod(t);if(0===e.mod.cmpn(0))return e.div;var r=e.div.sign?e.mod.isub(t):e.mod,n=t.shrn(1),i=t.andln(1),o=r.cmp(n);return 0>o||1===i&&0===o?e.div:e.div.sign?e.div.isubn(1):e.div.iaddn(1)},i.prototype.modn=function(t){r(67108863>=t);for(var e=(1<<26)%t,n=0,i=this.length-1;i>=0;i--)n=(e*n+this.words[i])%t;return n},i.prototype.idivn=function(t){r(67108863>=t);for(var e=0,n=this.length-1;n>=0;n--){var i=this.words[n]+67108864*e;this.words[n]=i/t|0,e=i%t}return this.strip()},i.prototype.divn=function(t){return this.clone().idivn(t)},i.prototype.egcd=function(t){r(!t.sign),r(0!==t.cmpn(0));var e=this,n=t.clone();e=e.sign?e.mod(t):e.clone();for(var o=new i(1),a=new i(0),s=new i(0),l=new i(1),c=0;e.isEven()&&n.isEven();)e.ishrn(1),n.ishrn(1),++c;for(var u=n.clone(),h=e.clone();0!==e.cmpn(0);){for(;e.isEven();)e.ishrn(1),o.isEven()&&a.isEven()?(o.ishrn(1),a.ishrn(1)):(o.iadd(u).ishrn(1),a.isub(h).ishrn(1));for(;n.isEven();)n.ishrn(1),s.isEven()&&l.isEven()?(s.ishrn(1),l.ishrn(1)):(s.iadd(u).ishrn(1),l.isub(h).ishrn(1));e.cmp(n)>=0?(e.isub(n),o.isub(s),a.isub(l)):(n.isub(e),s.isub(o),l.isub(a))}return{a:s,b:l,gcd:n.ishln(c)}},i.prototype._invmp=function(t){r(!t.sign),r(0!==t.cmpn(0));var e=this,n=t.clone();e=e.sign?e.mod(t):e.clone();for(var o=new i(1),a=new i(0),s=n.clone();e.cmpn(1)>0&&n.cmpn(1)>0;){for(;e.isEven();)e.ishrn(1),o.isEven()?o.ishrn(1):o.iadd(s).ishrn(1);for(;n.isEven();)n.ishrn(1),a.isEven()?a.ishrn(1):a.iadd(s).ishrn(1);e.cmp(n)>=0?(e.isub(n),o.isub(a)):(n.isub(e),a.isub(o))}return 0===e.cmpn(1)?o:a},i.prototype.gcd=function(t){if(0===this.cmpn(0))return t.clone();if(0===t.cmpn(0))return this.clone();var e=this.clone(),r=t.clone();e.sign=!1,r.sign=!1;for(var n=0;e.isEven()&&r.isEven();n++)e.ishrn(1),r.ishrn(1);for(;;){for(;e.isEven();)e.ishrn(1);for(;r.isEven();)r.ishrn(1);var i=e.cmp(r);if(0>i){var o=e;e=r,r=o}else if(0===i||0===r.cmpn(1))break;e.isub(r)}return r.ishln(n)},i.prototype.invm=function(t){return this.egcd(t).a.mod(t)},i.prototype.isEven=function(){return 0===(1&this.words[0])},i.prototype.isOdd=function(){return 1===(1&this.words[0])},i.prototype.andln=function(t){return this.words[0]&t},i.prototype.bincn=function(t){r(\\\"number\\\"==typeof t);var e=t%26,n=(t-e)/26,i=1<<e;if(this.length<=n){for(var o=this.length;n+1>o;o++)this.words[o]=0;return this.words[n]|=i,this.length=n+1,this}for(var a=i,o=n;0!==a&&o<this.length;o++){var s=this.words[o];s+=a,a=s>>>26,s&=67108863,this.words[o]=s}return 0!==a&&(this.words[o]=a,this.length++),this},i.prototype.cmpn=function(t){var e=0>t;if(e&&(t=-t),this.sign&&!e)return-1;if(!this.sign&&e)return 1;t&=67108863,this.strip();var r;if(this.length>1)r=1;else{var n=this.words[0];r=n===t?0:t>n?-1:1}return this.sign&&(r=-r),r},i.prototype.cmp=function(t){if(this.sign&&!t.sign)return-1;if(!this.sign&&t.sign)return 1;var e=this.ucmp(t);return this.sign?-e:e},i.prototype.ucmp=function(t){if(this.length>t.length)return 1;if(this.length<t.length)return-1;for(var e=0,r=this.length-1;r>=0;r--){var n=this.words[r],i=t.words[r];if(n!==i){i>n?e=-1:n>i&&(e=1);break}}return e},i.red=function(t){return new f(t)},i.prototype.toRed=function(t){return r(!this.red,\\\"Already a number in reduction context\\\"),r(!this.sign,\\\"red works only with positives\\\"),t.convertTo(this)._forceRed(t)},i.prototype.fromRed=function(){return r(this.red,\\\"fromRed works only with numbers in reduction context\\\"),this.red.convertFrom(this)},i.prototype._forceRed=function(t){return this.red=t,this},i.prototype.forceRed=function(t){return r(!this.red,\\\"Already a number in reduction context\\\"),this._forceRed(t)},i.prototype.redAdd=function(t){return r(this.red,\\\"redAdd works only with red numbers\\\"),this.red.add(this,t)},i.prototype.redIAdd=function(t){return r(this.red,\\\"redIAdd works only with red numbers\\\"),this.red.iadd(this,t)},i.prototype.redSub=function(t){return r(this.red,\\\"redSub works only with red numbers\\\"),this.red.sub(this,t)},i.prototype.redISub=function(t){return r(this.red,\\\"redISub works only with red numbers\\\"),this.red.isub(this,t)},i.prototype.redShl=function(t){return r(this.red,\\\"redShl works only with red numbers\\\"),this.red.shl(this,t)},i.prototype.redMul=function(t){return r(this.red,\\\"redMul works only with red numbers\\\"),this.red._verify2(this,t),this.red.mul(this,t)},i.prototype.redIMul=function(t){return r(this.red,\\\"redMul works only with red numbers\\\"),this.red._verify2(this,t),this.red.imul(this,t)},i.prototype.redSqr=function(){return r(this.red,\\\"redSqr works only with red numbers\\\"),this.red._verify1(this),this.red.sqr(this)},i.prototype.redISqr=function(){return r(this.red,\\\"redISqr works only with red numbers\\\"),this.red._verify1(this),this.red.isqr(this)},i.prototype.redSqrt=function(){return r(this.red,\\\"redSqrt works only with red numbers\\\"),this.red._verify1(this),this.red.sqrt(this)},i.prototype.redInvm=function(){return r(this.red,\\\"redInvm works only with red numbers\\\"),this.red._verify1(this),this.red.invm(this)},i.prototype.redNeg=function(){return r(this.red,\\\"redNeg works only with red numbers\\\"),this.red._verify1(this),this.red.neg(this)},i.prototype.redPow=function(t){return r(this.red&&!t.red,\\\"redPow(normalNum)\\\"),this.red._verify1(this),this.red.pow(this,t)};var m={k256:null,p224:null,p192:null,p25519:null};s.prototype._tmp=function(){var t=new i(null);return t.words=new Array(Math.ceil(this.n/13)),t},s.prototype.ireduce=function(t){var e,r=t;do this.split(r,this.tmp),r=this.imulK(r),r=r.iadd(this.tmp),e=r.bitLength();while(e>this.n);var n=e<this.n?-1:r.ucmp(this.p);return 0===n?(r.words[0]=0,r.length=1):n>0?r.isub(this.p):r.strip(),r},s.prototype.split=function(t,e){t.ishrn(this.n,0,e)},s.prototype.imulK=function(t){return t.imul(this.k)},n(l,s),l.prototype.split=function(t,e){for(var r=4194303,n=Math.min(t.length,9),i=0;n>i;i++)e.words[i]=t.words[i];if(e.length=n,t.length<=9)return t.words[0]=0,void(t.length=1);var o=t.words[9];e.words[e.length++]=o&r;for(var i=10;i<t.length;i++){var a=t.words[i];t.words[i-10]=(a&r)<<4|o>>>22,o=a}t.words[i-10]=o>>>22,t.length-=9},l.prototype.imulK=function(t){t.words[t.length]=0,t.words[t.length+1]=0,t.length+=2;for(var e,r=0,n=0;n<t.length;n++){var i=t.words[n];e=64*i,r+=977*i,e+=r/67108864|0,r&=67108863,t.words[n]=r,r=e}return 0===t.words[t.length-1]&&(t.length--,0===t.words[t.length-1]&&t.length--),t},n(c,s),n(u,s),n(h,s),h.prototype.imulK=function(t){for(var e=0,r=0;r<t.length;r++){var n=19*t.words[r]+e,i=67108863&n;n>>>=26,t.words[r]=i,e=n}return 0!==e&&(t.words[t.length++]=e),t},i._prime=function y(t){if(m[t])return m[t];var y;if(\\\"k256\\\"===t)y=new l;else if(\\\"p224\\\"===t)y=new c;else if(\\\"p192\\\"===t)y=new u;else{if(\\\"p25519\\\"!==t)throw new Error(\\\"Unknown prime \\\"+t);y=new h}return m[t]=y,y},f.prototype._verify1=function(t){r(!t.sign,\\\"red works only with positives\\\"),r(t.red,\\\"red works only with red numbers\\\")},f.prototype._verify2=function(t,e){r(!t.sign&&!e.sign,\\\"red works only with positives\\\"),r(t.red&&t.red===e.red,\\\"red works only with red numbers\\\")},f.prototype.imod=function(t){return this.prime?this.prime.ireduce(t)._forceRed(this):t.mod(this.m)._forceRed(this)},f.prototype.neg=function(t){var e=t.clone();return e.sign=!e.sign,e.iadd(this.m)._forceRed(this)},f.prototype.add=function(t,e){this._verify2(t,e);var r=t.add(e);return r.cmp(this.m)>=0&&r.isub(this.m),r._forceRed(this)},f.prototype.iadd=function(t,e){this._verify2(t,e);var r=t.iadd(e);return r.cmp(this.m)>=0&&r.isub(this.m),r},f.prototype.sub=function(t,e){this._verify2(t,e);var r=t.sub(e);return r.cmpn(0)<0&&r.iadd(this.m),r._forceRed(this)},f.prototype.isub=function(t,e){this._verify2(t,e);var r=t.isub(e);return r.cmpn(0)<0&&r.iadd(this.m),r},f.prototype.shl=function(t,e){return this._verify1(t),this.imod(t.shln(e))},f.prototype.imul=function(t,e){return this._verify2(t,e),this.imod(t.imul(e))},f.prototype.mul=function(t,e){return this._verify2(t,e),this.imod(t.mul(e))},f.prototype.isqr=function(t){return this.imul(t,t)},f.prototype.sqr=function(t){return this.mul(t,t)},f.prototype.sqrt=function(t){if(0===t.cmpn(0))return t.clone();var e=this.m.andln(3);if(r(e%2===1),3===e){var n=this.m.add(new i(1)).ishrn(2),o=this.pow(t,n);return o}for(var a=this.m.subn(1),s=0;0!==a.cmpn(0)&&0===a.andln(1);)s++,a.ishrn(1);r(0!==a.cmpn(0));var l=new i(1).toRed(this),c=l.redNeg(),u=this.m.subn(1).ishrn(1),h=this.m.bitLength();for(h=new i(2*h*h).toRed(this);0!==this.pow(h,u).cmp(c);)h.redIAdd(c);for(var f=this.pow(h,a),o=this.pow(t,a.addn(1).ishrn(1)),d=this.pow(t,a),p=s;0!==d.cmp(l);){for(var g=d,v=0;0!==g.cmp(l);v++)g=g.redSqr();r(p>v);var m=this.pow(f,new i(1).ishln(p-v-1));o=o.redMul(m),f=m.redSqr(),d=d.redMul(f),p=v}return o},f.prototype.invm=function(t){var e=t._invmp(this.m);return e.sign?(e.sign=!1,this.imod(e).redNeg()):this.imod(e)},f.prototype.pow=function(t,e){var r=[];if(0===e.cmpn(0))return new i(1);for(var n=e.clone();0!==n.cmpn(0);)r.push(n.andln(1)),n.ishrn(1);for(var o=t,a=0;a<r.length&&0===r[a];a++,o=this.sqr(o));if(++a<r.length)for(var n=this.sqr(o);a<r.length;a++,n=this.sqr(n))0!==r[a]&&(o=this.mul(o,n));return o},f.prototype.convertTo=function(t){var e=t.mod(this.m);return e===t?e.clone():e},f.prototype.convertFrom=function(t){var e=t.clone();return e.red=null,e},i.mont=function(t){return new d(t)},n(d,f),d.prototype.convertTo=function(t){return this.imod(t.shln(this.shift))},d.prototype.convertFrom=function(t){var e=this.imod(t.mul(this.rinv));return e.red=null,e},d.prototype.imul=function(t,e){if(0===t.cmpn(0)||0===e.cmpn(0))return t.words[0]=0,t.length=1,t;var r=t.imul(e),n=r.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),i=r.isub(n).ishrn(this.shift),o=i;return i.cmp(this.m)>=0?o=i.isub(this.m):i.cmpn(0)<0&&(o=i.iadd(this.m)),o._forceRed(this)},d.prototype.mul=function(t,e){if(0===t.cmpn(0)||0===e.cmpn(0))return new i(0)._forceRed(this);var r=t.mul(e),n=r.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),o=r.isub(n).ishrn(this.shift),a=o;return o.cmp(this.m)>=0?a=o.isub(this.m):o.cmpn(0)<0&&(a=o.iadd(this.m)),a._forceRed(this)},d.prototype.invm=function(t){var e=this.imod(t._invmp(this.m).mul(this.r2));return e._forceRed(this)}}(\\\"undefined\\\"==typeof e||e,this)},{}],262:[function(t,e,r){\\\"use strict\\\";function n(t){return i(t[0])*i(t[1])}var i=t(\\\"./lib/bn-sign\\\");e.exports=n},{\\\"./lib/bn-sign\\\":253}],263:[function(t,e,r){\\\"use strict\\\";function n(t,e){return i(t[0].mul(e[1]).sub(t[1].mul(e[0])),t[1].mul(e[1]))}var i=t(\\\"./lib/rationalize\\\");e.exports=n},{\\\"./lib/rationalize\\\":258}],264:[function(t,e,r){\\\"use strict\\\";function n(t){var e=t[0],r=t[1];if(0===e.cmpn(0))return 0;var n=e.divmod(r),a=n.div,s=i(a),l=n.mod;if(0===l.cmpn(0))return s;if(s){var c=o(s)+4,u=i(l.shln(c).divRound(r));return 0>s&&(u=-u),s+u*Math.pow(2,-c)}var h=r.bitLength()-l.bitLength()+53,u=i(l.shln(h).divRound(r));return 1023>h?u*Math.pow(2,-h):(u*=Math.pow(2,-1023),u*Math.pow(2,1023-h))}var i=t(\\\"./lib/bn-to-num\\\"),o=t(\\\"./lib/ctz\\\");e.exports=n},{\\\"./lib/bn-to-num\\\":254,\\\"./lib/ctz\\\":255}],265:[function(t,e,r){\\\"use strict\\\";function n(t,e){for(var r=0;t>r;++r)if(!(e[r]<=e[r+t]))return!0;return!1}function i(t,e,r,i){for(var o=0,a=0,s=0,l=t.length;l>s;++s){var c=t[s];if(!n(e,c)){for(var u=0;2*e>u;++u)r[o++]=c[u];i[a++]=s}}return a}function o(t,e,r,n){var o=t.length,a=e.length;if(!(0>=o||0>=a)){var s=t[0].length>>>1;if(!(0>=s)){var l,c=h.mallocDouble(2*s*o),u=h.mallocInt32(o);if(o=i(t,s,c,u),o>0){if(1===s&&n)f.init(o),l=f.sweepComplete(s,r,0,o,c,u,0,o,c,u);else{var p=h.mallocDouble(2*s*a),g=h.mallocInt32(a);a=i(e,s,p,g),a>0&&(f.init(o+a),l=1===s?f.sweepBipartite(s,r,0,o,c,u,0,a,p,g):d(s,r,n,o,c,u,a,p,g),h.free(p),h.free(g))}h.free(c),h.free(u)}return l}}}function a(t,e){u.push([t,e])}function s(t){return u=[],o(t,t,a,!0),u}function l(t,e){return u=[],o(t,e,a,!1),u}function c(t,e,r){switch(arguments.length){case 1:return s(t);case 2:return\\\"function\\\"==typeof e?o(t,t,e,!0):l(t,e);case 3:return o(t,e,r,!1);default:throw new Error(\\\"box-intersect: Invalid arguments\\\")}}e.exports=c;var u,h=t(\\\"typedarray-pool\\\"),f=t(\\\"./lib/sweep\\\"),d=t(\\\"./lib/intersect\\\")},{\\\"./lib/intersect\\\":267,\\\"./lib/sweep\\\":271,\\\"typedarray-pool\\\":235}],266:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){var n=\\\"bruteForce\\\"+(t?\\\"Red\\\":\\\"Blue\\\")+(e?\\\"Flip\\\":\\\"\\\")+(r?\\\"Full\\\":\\\"\\\"),i=[\\\"function \\\",n,\\\"(\\\",w.join(),\\\"){\\\",\\\"var \\\",c,\\\"=2*\\\",o,\\\";\\\"],l=\\\"for(var i=\\\"+u+\\\",\\\"+p+\\\"=\\\"+c+\\\"*\\\"+u+\\\";i<\\\"+h+\\\";++i,\\\"+p+\\\"+=\\\"+c+\\\"){var x0=\\\"+f+\\\"[\\\"+a+\\\"+\\\"+p+\\\"],x1=\\\"+f+\\\"[\\\"+a+\\\"+\\\"+p+\\\"+\\\"+o+\\\"],xi=\\\"+d+\\\"[i];\\\",A=\\\"for(var j=\\\"+g+\\\",\\\"+b+\\\"=\\\"+c+\\\"*\\\"+g+\\\";j<\\\"+v+\\\";++j,\\\"+b+\\\"+=\\\"+c+\\\"){var y0=\\\"+m+\\\"[\\\"+a+\\\"+\\\"+b+\\\"],\\\"+(r?\\\"y1=\\\"+m+\\\"[\\\"+a+\\\"+\\\"+b+\\\"+\\\"+o+\\\"],\\\":\\\"\\\")+\\\"yi=\\\"+y+\\\"[j];\\\";return t?i.push(l,_,\\\":\\\",A):i.push(A,_,\\\":\\\",l),r?i.push(\\\"if(y1<x0||x1<y0)continue;\\\"):e?i.push(\\\"if(y0<=x0||x1<y0)continue;\\\"):i.push(\\\"if(y0<x0||x1<y0)continue;\\\"),i.push(\\\"for(var k=\\\"+a+\\\"+1;k<\\\"+o+\\\";++k){var r0=\\\"+f+\\\"[k+\\\"+p+\\\"],r1=\\\"+f+\\\"[k+\\\"+o+\\\"+\\\"+p+\\\"],b0=\\\"+m+\\\"[k+\\\"+b+\\\"],b1=\\\"+m+\\\"[k+\\\"+o+\\\"+\\\"+b+\\\"];if(r1<b0||b1<r0)continue \\\"+_+\\\";}var \\\"+x+\\\"=\\\"+s+\\\"(\\\"),e?i.push(\\\"yi,xi\\\"):i.push(\\\"xi,yi\\\"),i.push(\\\");if(\\\"+x+\\\"!==void 0)return \\\"+x+\\\";}}}\\\"),{name:n,code:i.join(\\\"\\\")}}function i(t){function e(e,r){var o=n(e,r,t);i.push(o.code),a.push(\\\"return \\\"+o.name+\\\"(\\\"+w.join()+\\\");\\\")}var r=\\\"bruteForce\\\"+(t?\\\"Full\\\":\\\"Partial\\\"),i=[],o=w.slice();t||o.splice(3,0,l);var a=[\\\"function \\\"+r+\\\"(\\\"+o.join()+\\\"){\\\"];a.push(\\\"if(\\\"+h+\\\"-\\\"+u+\\\">\\\"+v+\\\"-\\\"+g+\\\"){\\\"),t?(e(!0,!1),a.push(\\\"}else{\\\"),e(!1,!1)):(a.push(\\\"if(\\\"+l+\\\"){\\\"),e(!0,!0),a.push(\\\"}else{\\\"),e(!0,!1),a.push(\\\"}}else{if(\\\"+l+\\\"){\\\"),e(!1,!0),a.push(\\\"}else{\\\"),e(!1,!1),a.push(\\\"}\\\")),a.push(\\\"}}return \\\"+r);var s=i.join(\\\"\\\")+a.join(\\\"\\\"),c=new Function(s);return c()}var o=\\\"d\\\",a=\\\"ax\\\",s=\\\"vv\\\",l=\\\"fp\\\",c=\\\"es\\\",u=\\\"rs\\\",h=\\\"re\\\",f=\\\"rb\\\",d=\\\"ri\\\",p=\\\"rp\\\",g=\\\"bs\\\",v=\\\"be\\\",m=\\\"bb\\\",y=\\\"bi\\\",b=\\\"bp\\\",x=\\\"rv\\\",_=\\\"Q\\\",w=[o,a,s,u,h,f,d,g,v,m,y];r.partial=i(!1),r.full=i(!0)},{}],267:[function(t,e,r){\\\"use strict\\\";function n(t,e){var r=8*c.log2(e+1)*(t+1)|0,n=c.nextPow2(M*r);L.length<n&&(l.free(L),L=l.mallocInt32(n));var i=c.nextPow2(T*r);i>S&&(l.free(S),S=l.mallocDouble(i))}function i(t,e,r,n,i,o,a,s,l){var c=M*t;L[c]=e,L[c+1]=r,L[c+2]=n,L[c+3]=i,L[c+4]=o,L[c+5]=a;var u=T*t;S[u]=s,S[u+1]=l}function o(t,e,r,n,i,o,a,s,l,c,u){var h=2*t,f=l*h,d=c[f+e];t:for(var p=i,g=i*h;o>p;++p,g+=h){var v=a[g+e],m=a[g+e+t];if(!(v>d||d>m||n&&d===v)){for(var y=s[p],b=e+1;t>b;++b){var v=a[g+b],m=a[g+b+t],x=c[f+b],_=c[f+b+t];if(x>m||v>_)continue t}var w;if(w=n?r(u,y):r(y,u),void 0!==w)return w}}}function a(t,e,r,n,i,o,a,s,l,c){var u=2*t,h=s*u,f=l[h+e];t:for(var d=n,p=n*u;i>d;++d,p+=u){var g=a[d];if(g!==c){var v=o[p+e],m=o[p+e+t];if(!(v>f||f>m)){for(var y=e+1;t>y;++y){var v=o[p+y],m=o[p+y+t],b=l[h+y],x=l[h+y+t];if(b>m||v>x)continue t}var _=r(g,c);if(void 0!==_)return _}}}}function s(t,e,r,s,l,c,u,g,E){n(t,s+u);var C,P=0,z=2*t;for(i(P++,0,0,s,0,u,r?16:0,-(1/0),1/0),r||i(P++,0,0,u,0,s,1,-(1/0),1/0);P>0;){P-=1;var R=P*M,O=L[R],I=L[R+1],N=L[R+2],j=L[R+3],F=L[R+4],D=L[R+5],B=P*T,U=S[B],V=S[B+1],q=1&D,H=!!(16&D),G=l,Y=c,X=g,W=E;if(q&&(G=g,Y=E,X=l,W=c),!(2&D&&(N=_(t,O,I,N,G,Y,V),I>=N)||4&D&&(I=w(t,O,I,N,G,Y,U),I>=N))){var Z=N-I,$=F-j;if(H){if(y>t*Z*(Z+$)){if(C=d.scanComplete(t,O,e,I,N,G,Y,j,F,X,W),void 0!==C)return C;continue}}else{if(t*Math.min(Z,$)<v){if(C=h(t,O,e,q,I,N,G,Y,j,F,X,W),void 0!==C)return C;continue}if(m>t*Z*$){if(C=d.scanBipartite(t,O,e,q,I,N,G,Y,j,F,X,W),void 0!==C)return C;continue}}var K=b(t,O,I,N,G,Y,U,V);if(K>I)if(v>t*(K-I)){if(C=f(t,O+1,e,I,K,G,Y,j,F,X,W),void 0!==C)return C}else if(O===t-2){if(C=q?d.sweepBipartite(t,e,j,F,X,W,I,K,G,Y):d.sweepBipartite(t,e,I,K,G,Y,j,F,X,W),void 0!==C)return C}else i(P++,O+1,I,K,j,F,q,-(1/0),1/0),i(P++,O+1,j,F,I,K,1^q,-(1/0),1/0);if(N>K){var Q=p(t,O,j,F,X,W),J=X[z*Q+O],tt=x(t,O,Q,F,X,W,J);if(F>tt&&i(P++,O,K,N,tt,F,(4|q)+(H?16:0),J,V),Q>j&&i(P++,O,K,N,j,Q,(2|q)+(H?16:0),U,J),Q+1===tt){if(C=H?a(t,O,e,K,N,G,Y,Q,X,W[Q]):o(t,O,e,q,K,N,G,Y,Q,X,W[Q]),void 0!==C)return C}else if(tt>Q){var et;if(H){if(et=A(t,O,K,N,G,Y,J),et>K){var rt=x(t,O,K,et,G,Y,J);if(O===t-2){if(rt>K&&(C=d.sweepComplete(t,e,K,rt,G,Y,Q,tt,X,W),void 0!==C))return C;if(et>rt&&(C=d.sweepBipartite(t,e,rt,et,G,Y,Q,tt,X,W),void 0!==C))return C}else rt>K&&i(P++,O+1,K,rt,Q,tt,16,-(1/0),1/0),et>rt&&(i(P++,O+1,rt,et,Q,tt,0,-(1/0),1/0),i(P++,O+1,Q,tt,rt,et,1,-(1/0),1/0))}}else et=q?k(t,O,K,N,G,Y,J):A(t,O,K,N,G,Y,J),et>K&&(O===t-2?C=q?d.sweepBipartite(t,e,Q,tt,X,W,K,et,G,Y):d.sweepBipartite(t,e,K,et,G,Y,Q,tt,X,W):(i(P++,O+1,K,et,Q,tt,q,-(1/0),1/0),i(P++,O+1,Q,tt,K,et,1^q,-(1/0),1/0)))}}}}}e.exports=s;var l=t(\\\"typedarray-pool\\\"),c=t(\\\"bit-twiddle\\\"),u=t(\\\"./brute\\\"),h=u.partial,f=u.full,d=t(\\\"./sweep\\\"),p=t(\\\"./median\\\"),g=t(\\\"./partition\\\"),v=128,m=1<<22,y=1<<22,b=g(\\\"!(lo>=p0)&&!(p1>=hi)\\\",[\\\"p0\\\",\\\"p1\\\"]),x=g(\\\"lo===p0\\\",[\\\"p0\\\"]),_=g(\\\"lo<p0\\\",[\\\"p0\\\"]),w=g(\\\"hi<=p0\\\",[\\\"p0\\\"]),A=g(\\\"lo<=p0&&p0<=hi\\\",[\\\"p0\\\"]),k=g(\\\"lo<p0&&p0<=hi\\\",[\\\"p0\\\"]),M=6,T=2,E=1024,L=l.mallocInt32(E),S=l.mallocDouble(E)},{\\\"./brute\\\":266,\\\"./median\\\":268,\\\"./partition\\\":269,\\\"./sweep\\\":271,\\\"bit-twiddle\\\":49,\\\"typedarray-pool\\\":235}],268:[function(t,e,r){\\\"use strict\\\";function n(t,e,r,n,i,o){for(var a=2*t,s=a*(r+1)+e,l=r+1;n>l;++l,s+=a)for(var c=i[s],u=l,h=a*(l-1);u>r&&i[h+e]>c;--u,h-=a){for(var f=h,d=h+a,p=0;a>p;++p,++f,++d){var g=i[f];i[f]=i[d],i[d]=g}var v=o[u];o[u]=o[u-1],o[u-1]=v}}function i(t,e,r,i,o,l){if(r+1>=i)return r;for(var c=r,u=i,h=i+r>>>1,f=2*t,d=h,p=o[f*h+e];u>c;){if(s>u-c){n(t,e,c,u,o,l),p=o[f*h+e];break}var g=u-c,v=Math.random()*g+c|0,m=o[f*v+e],y=Math.random()*g+c|0,b=o[f*y+e],x=Math.random()*g+c|0,_=o[f*x+e];b>=m?_>=b?(d=y,p=b):m>=_?(d=v,p=m):(d=x,p=_):b>=_?(d=y,p=b):_>=m?(d=v,p=m):(d=x,p=_);for(var w=f*(u-1),A=f*d,k=0;f>k;++k,++w,++A){var M=o[w];o[w]=o[A],o[A]=M}var T=l[u-1];l[u-1]=l[d],l[d]=T,d=a(t,e,c,u-1,o,l,p);for(var w=f*(u-1),A=f*d,k=0;f>k;++k,++w,++A){var M=o[w];o[w]=o[A],o[A]=M}var T=l[u-1];if(l[u-1]=l[d],l[d]=T,d>h){for(u=d-1;u>c&&o[f*(u-1)+e]===p;)u-=1;u+=1}else{if(!(h>d))break;for(c=d+1;u>c&&o[f*c+e]===p;)c+=1}}return a(t,e,r,h,o,l,o[f*h+e])}e.exports=i;var o=t(\\\"./partition\\\"),a=o(\\\"lo<p0\\\",[\\\"p0\\\"]),s=8},{\\\"./partition\\\":269}],269:[function(t,e,r){\\\"use strict\\\";function n(t,e){var r=\\\"abcdef\\\".split(\\\"\\\").concat(e),n=[];return t.indexOf(\\\"lo\\\")>=0&&n.push(\\\"lo=e[k+n]\\\"),t.indexOf(\\\"hi\\\")>=0&&n.push(\\\"hi=e[k+o]\\\"),r.push(i.replace(\\\"_\\\",n.join()).replace(\\\"$\\\",t)),Function.apply(void 0,r)}e.exports=n;var i=\\\"for(var j=2*a,k=j*c,l=k,m=c,n=b,o=a+b,p=c;d>p;++p,k+=j){var _;if($)if(m===p)m+=1,l+=j;else{for(var s=0;j>s;++s){var t=e[k+s];e[k+s]=e[l],e[l++]=t}var u=f[p];f[p]=f[m],f[m++]=u}}return m\\\"},{}],270:[function(t,e,r){\\\"use strict\\\";function n(t,e){4*f>=e?i(0,e-1,t):h(0,e-1,t)}function i(t,e,r){for(var n=2*(t+1),i=t+1;e>=i;++i){for(var o=r[n++],a=r[n++],s=i,l=n-2;s-- >t;){var c=r[l-2],u=r[l-1];if(o>c)break;if(c===o&&a>u)break;r[l]=c,r[l+1]=u,l-=2}r[l]=o,r[l+1]=a}}function o(t,e,r){t*=2,e*=2;var n=r[t],i=r[t+1];r[t]=r[e],r[t+1]=r[e+1],r[e]=n,r[e+1]=i}function a(t,e,r){t*=2,e*=2,r[t]=r[e],r[t+1]=r[e+1]}function s(t,e,r,n){t*=2,e*=2,r*=2;var i=n[t],o=n[t+1];n[t]=n[e],n[t+1]=n[e+1],n[e]=n[r],n[e+1]=n[r+1],n[r]=i,n[r+1]=o}function l(t,e,r,n,i){t*=2,e*=2,i[t]=i[e],i[e]=r,i[t+1]=i[e+1],i[e+1]=n}function c(t,e,r){t*=2,e*=2;var n=r[t],i=r[e];return i>n?!1:n===i?r[t+1]>r[e+1]:!0}function u(t,e,r,n){t*=2;var i=n[t];return e>i?!0:i===e?n[t+1]<r:!1}function h(t,e,r){var n=(e-t+1)/6|0,d=t+n,p=e-n,g=t+e>>1,v=g-n,m=g+n,y=d,b=v,x=g,_=m,w=p,A=t+1,k=e-1,M=0;c(y,b,r)&&(M=y,y=b,b=M),c(_,w,r)&&(M=_,_=w,w=M),c(y,x,r)&&(M=y,y=x,x=M),c(b,x,r)&&(M=b,b=x,x=M),c(y,_,r)&&(M=y,y=_,_=M),c(x,_,r)&&(M=x,x=_,_=M),c(b,w,r)&&(M=b,b=w,w=M),c(b,x,r)&&(M=b,b=x,x=M),c(_,w,r)&&(M=_,_=w,w=M);for(var T=r[2*b],E=r[2*b+1],L=r[2*_],S=r[2*_+1],C=2*y,P=2*x,z=2*w,R=2*d,O=2*g,I=2*p,N=0;2>N;++N){var j=r[C+N],F=r[P+N],D=r[z+N];r[R+N]=j,r[O+N]=F,r[I+N]=D}a(v,t,r),a(m,e,r);for(var B=A;k>=B;++B)if(u(B,T,E,r))B!==A&&o(B,A,r),++A;else if(!u(B,L,S,r))for(;;){if(u(k,L,S,r)){u(k,T,E,r)?(s(B,A,k,r),++A,--k):(o(B,k,r),--k);break}if(--k<B)break}l(t,A-1,T,E,r),l(e,k+1,L,S,r),f>=A-2-t?i(t,A-2,r):h(t,A-2,r),f>=e-(k+2)?i(k+2,e,r):h(k+2,e,r),f>=k-A?i(A,k,r):h(A,k,r)}e.exports=n;var f=32},{}],271:[function(t,e,r){\\\"use strict\\\";function n(t){var e=h.nextPow2(t);g.length<e&&(u.free(g),g=u.mallocInt32(e)),v.length<e&&(u.free(v),v=u.mallocInt32(e)),m.length<e&&(u.free(m),m=u.mallocInt32(e)),y.length<e&&(u.free(y),y=u.mallocInt32(e)),b.length<e&&(u.free(b),b=u.mallocInt32(e)),x.length<e&&(u.free(x),x=u.mallocInt32(e));var r=8*e;_.length<r&&(u.free(_),_=u.mallocDouble(r))}function i(t,e,r,n){var i=e[n],o=t[r-1];t[i]=o,e[o]=i}function o(t,e,r,n){t[r]=n,e[n]=r}function a(t,e,r,n,a,s,l,c,u,h){for(var p=0,b=2*t,x=t-1,w=b-1,A=r;n>A;++A){var k=s[A],M=b*A;_[p++]=a[M+x],_[p++]=-(k+1),_[p++]=a[M+w],_[p++]=k}for(var A=l;c>A;++A){var k=h[A]+d,T=b*A;_[p++]=u[T+x],_[p++]=-k,_[p++]=u[T+w],_[p++]=k}var E=p>>>1;f(_,E);for(var L=0,S=0,A=0;E>A;++A){var C=0|_[2*A+1];if(C>=d)C=C-d|0,i(m,y,S--,C);else if(C>=0)i(g,v,L--,C);else if(-d>=C){C=-C-d|0;for(var P=0;L>P;++P){var z=e(g[P],C);if(void 0!==z)return z}o(m,y,S++,C)}else{C=-C-1|0;for(var P=0;S>P;++P){var z=e(C,m[P]);if(void 0!==z)return z}o(g,v,L++,C)}}}function s(t,e,r,n,a,s,l,c,u,h){for(var d=0,p=2*t,w=t-1,A=p-1,k=r;n>k;++k){var M=s[k]+1<<1,T=p*k;_[d++]=a[T+w],_[d++]=-M,_[d++]=a[T+A],_[d++]=M}for(var k=l;c>k;++k){var M=h[k]+1<<1,E=p*k;_[d++]=u[E+w],_[d++]=1|-M,_[d++]=u[E+A],_[d++]=1|M}var L=d>>>1;f(_,L);for(var S=0,C=0,P=0,k=0;L>k;++k){var z=0|_[2*k+1],R=1&z;if(L-1>k&&z>>1===_[2*k+3]>>1&&(R=2,k+=1),0>z){for(var O=-(z>>1)-1,I=0;P>I;++I){var N=e(b[I],O);if(void 0!==N)return N}if(0!==R)for(var I=0;S>I;++I){var N=e(g[I],O);if(void 0!==N)return N}if(1!==R)for(var I=0;C>I;++I){var N=e(m[I],O);if(void 0!==N)return N}0===R?o(g,v,S++,O):1===R?o(m,y,C++,O):2===R&&o(b,x,P++,O)}else{var O=(z>>1)-1;0===R?i(g,v,S--,O):1===R?i(m,y,C--,O):2===R&&i(b,x,P--,O)}}}function l(t,e,r,n,a,s,l,c,u,h,p,m){var y=0,b=2*t,x=e,w=e+t,A=1,k=1;n?k=d:A=d;for(var M=a;s>M;++M){var T=M+A,E=b*M;_[y++]=l[E+x],_[y++]=-T,_[y++]=l[E+w],_[y++]=T}for(var M=u;h>M;++M){var T=M+k,L=b*M;_[y++]=p[L+x],_[y++]=-T}var S=y>>>1;f(_,S);for(var C=0,M=0;S>M;++M){var P=0|_[2*M+1];if(0>P){var T=-P,z=!1;if(T>=d?(z=!n,T-=d):(z=!!n,T-=1),z)o(g,v,C++,T);else{var R=m[T],O=b*T,I=p[O+e+1],N=p[O+e+1+t];t:for(var j=0;C>j;++j){var F=g[j],D=b*F;if(!(N<l[D+e+1]||l[D+e+1+t]<I)){for(var B=e+2;t>B;++B)if(p[O+B+t]<l[D+B]||l[D+B+t]<p[O+B])continue t;var U,V=c[F];if(U=n?r(R,V):r(V,R),void 0!==U)return U}}}}else i(g,v,C--,P-A)}}function c(t,e,r,n,i,o,a,s,l,c,u){for(var h=0,p=2*t,v=e,m=e+t,y=n;i>y;++y){var b=y+d,x=p*y;_[h++]=o[x+v],_[h++]=-b,_[h++]=o[x+m],_[h++]=b}for(var y=s;l>y;++y){var b=y+1,w=p*y;_[h++]=c[w+v],_[h++]=-b}var A=h>>>1;f(_,A);for(var k=0,y=0;A>y;++y){var M=0|_[2*y+1];if(0>M){var b=-M;if(b>=d)g[k++]=b-d;else{b-=1;var T=u[b],E=p*b,L=c[E+e+1],S=c[E+e+1+t];t:for(var C=0;k>C;++C){var P=g[C],z=a[P];if(z===T)break;var R=p*P;if(!(S<o[R+e+1]||o[R+e+1+t]<L)){for(var O=e+2;t>O;++O)if(c[E+O+t]<o[R+O]||o[R+O+t]<c[E+O])continue t;var I=r(z,T);if(void 0!==I)return I}}}}else{for(var b=M-d,C=k-1;C>=0;--C)if(g[C]===b){for(var O=C+1;k>O;++O)g[O-1]=g[O];break}--k}}}e.exports={init:n,sweepBipartite:a,sweepComplete:s,scanBipartite:l,scanComplete:c};var u=t(\\\"typedarray-pool\\\"),h=t(\\\"bit-twiddle\\\"),f=t(\\\"./sort\\\"),d=1<<28,p=1024,g=u.mallocInt32(p),v=u.mallocInt32(p),m=u.mallocInt32(p),y=u.mallocInt32(p),b=u.mallocInt32(p),x=u.mallocInt32(p),_=u.mallocDouble(8*p)},{\\\"./sort\\\":270,\\\"bit-twiddle\\\":49,\\\"typedarray-pool\\\":235}],272:[function(t,e,r){(function(t){function r(t,e){\\n\",\n       \"return d[0]=t,d[1]=e,f[0]}function n(t){return f[0]=t,d[0]}function i(t){return f[0]=t,d[1]}function o(t,e){return d[1]=t,d[0]=e,f[0]}function a(t){return f[0]=t,d[1]}function s(t){return f[0]=t,d[0]}function l(t,e){return p.writeUInt32LE(t,0,!0),p.writeUInt32LE(e,4,!0),p.readDoubleLE(0,!0)}function c(t){return p.writeDoubleLE(t,0,!0),p.readUInt32LE(0,!0)}function u(t){return p.writeDoubleLE(t,0,!0),p.readUInt32LE(4,!0)}var h=!1;if(\\\"undefined\\\"!=typeof Float64Array){var f=new Float64Array(1),d=new Uint32Array(f.buffer);f[0]=1,h=!0,1072693248===d[1]?(e.exports=function(t){return f[0]=t,[d[0],d[1]]},e.exports.pack=r,e.exports.lo=n,e.exports.hi=i):1072693248===d[0]?(e.exports=function(t){return f[0]=t,[d[1],d[0]]},e.exports.pack=o,e.exports.lo=a,e.exports.hi=s):h=!1}if(!h){var p=new t(8);e.exports=function(t){return p.writeDoubleLE(t,0,!0),[p.readUInt32LE(0,!0),p.readUInt32LE(4,!0)]},e.exports.pack=l,e.exports.lo=c,e.exports.hi=u}e.exports.sign=function(t){return e.exports.hi(t)>>>31},e.exports.exponent=function(t){var r=e.exports.hi(t);return(r<<1>>>21)-1023},e.exports.fraction=function(t){var r=e.exports.lo(t),n=e.exports.hi(t),i=1048575&n;return 2146435072&n&&(i+=1<<20),[r,i]},e.exports.denormalized=function(t){var r=e.exports.hi(t);return!(2146435072&r)}}).call(this,t(\\\"buffer\\\").Buffer)},{buffer:50}],273:[function(t,e,r){\\\"use strict\\\";function n(t,e){if(isNaN(t)||isNaN(e))return NaN;if(t===e)return t;if(0===t)return 0>e?-o:o;var r=i.hi(t),n=i.lo(t);return e>t==t>0?n===a?(r+=1,n=0):n+=1:0===n?(n=a,r-=1):n-=1,i.pack(n,r)}var i=t(\\\"double-bits\\\"),o=Math.pow(2,-1074),a=-1>>>0;e.exports=n},{\\\"double-bits\\\":272}],274:[function(t,e,r){\\\"use strict\\\";function n(t,e){for(var r=t.length,n=new Array(r),o=0;r>o;++o)n[o]=i(t[o],e[o]);return n}var i=t(\\\"big-rat/add\\\");e.exports=n},{\\\"big-rat/add\\\":248}],275:[function(t,e,r){\\\"use strict\\\";function n(t){for(var e=new Array(t.length),r=0;r<t.length;++r)e[r]=i(t[r]);return e}e.exports=n;var i=t(\\\"big-rat\\\")},{\\\"big-rat\\\":251}],276:[function(t,e,r){\\\"use strict\\\";function n(t,e){for(var r=i(e),n=t.length,a=new Array(n),s=0;n>s;++s)a[s]=o(t[s],r);return a}var i=t(\\\"big-rat\\\"),o=t(\\\"big-rat/mul\\\");e.exports=n},{\\\"big-rat\\\":251,\\\"big-rat/mul\\\":260}],277:[function(t,e,r){\\\"use strict\\\";function n(t,e){for(var r=t.length,n=new Array(r),o=0;r>o;++o)n[o]=i(t[o],e[o]);return n}var i=t(\\\"big-rat/sub\\\");e.exports=n},{\\\"big-rat/sub\\\":263}],278:[function(t,e,r){\\\"use strict\\\";function n(t,e,r,n){for(var i=0;2>i;++i){var o=t[i],a=e[i],s=Math.min(o,a),l=Math.max(o,a),c=r[i],u=n[i],h=Math.min(c,u),f=Math.max(c,u);if(s>f||h>l)return!1}return!0}function i(t,e,r,i){var a=o(t,r,i),s=o(e,r,i);if(a>0&&s>0||0>a&&0>s)return!1;var l=o(r,t,e),c=o(i,t,e);return l>0&&c>0||0>l&&0>c?!1:0===a&&0===s&&0===l&&0===c?n(t,e,r,i):!0}e.exports=i;var o=t(\\\"robust-orientation\\\")[3]},{\\\"robust-orientation\\\":216}],279:[function(t,e,r){arguments[4][195][0].apply(r,arguments)},{dup:195}],280:[function(t,e,r){\\\"use strict\\\";function n(t,e){for(var r=i(t,e.length),n=new Array(e.length),o=new Array(e.length),a=[],s=0;s<e.length;++s){var l=r[s].length;o[s]=l,n[s]=!0,1>=l&&a.push(s)}for(;a.length>0;){var c=a.pop();n[c]=!1;for(var u=r[c],s=0;s<u.length;++s){var h=u[s];0===--o[h]&&a.push(h)}}for(var f=new Array(e.length),d=[],s=0;s<e.length;++s)if(n[s]){var c=d.length;f[s]=c,d.push(e[s])}else f[s]=-1;for(var p=[],s=0;s<t.length;++s){var g=t[s];n[g[0]]&&n[g[1]]&&p.push([f[g[0]],f[g[1]]])}return[p,d]}e.exports=n;var i=t(\\\"edges-to-adjacency-list\\\")},{\\\"edges-to-adjacency-list\\\":281}],281:[function(t,e,r){\\\"use strict\\\";function n(t,e){var r=t.length;if(\\\"number\\\"!=typeof e){e=0;for(var n=0;r>n;++n){var o=t[n];e=Math.max(e,o[0],o[1])}e=(0|e)+1}e=0|e;for(var a=new Array(e),n=0;e>n;++n)a[n]=[];for(var n=0;r>n;++n){var o=t[n];a[o[0]].push(o[1]),a[o[1]].push(o[0])}for(var s=0;e>s;++s)i(a[s],function(t,e){return t-e});return a}e.exports=n;var i=t(\\\"uniq\\\")},{uniq:236}],282:[function(t,e,r){\\\"use strict\\\";function n(t,e){function r(t,e){var r=c[e][t[e]];r.splice(r.indexOf(t),1)}function n(t,n,o){for(var a,s,l,u=0;2>u;++u)if(c[u][n].length>0){a=c[u][n][0],l=u;break}s=a[1^l];for(var h=0;2>h;++h)for(var f=c[h][n],d=0;d<f.length;++d){var p=f[d],g=p[1^h],v=i(e[t],e[n],e[s],e[g]);v>0&&(a=p,s=g,l=h)}return o?s:(a&&r(a,l),s)}function o(t,o){var a=c[o][t][0],s=[t];r(a,o);for(var l=a[1^o];;){for(;l!==t;)s.push(l),l=n(s[s.length-2],l,!1);if(c[0][t].length+c[1][t].length===0)break;var u=s[s.length-1],h=t,f=s[1],d=n(u,h,!0);if(i(e[u],e[h],e[f],e[d])<0)break;s.push(t),l=n(u,h)}return s}function a(t,e){return e[1]===e[e.length-1]}for(var s=0|e.length,l=t.length,c=[new Array(s),new Array(s)],u=0;s>u;++u)c[0][u]=[],c[1][u]=[];for(var u=0;l>u;++u){var h=t[u];c[0][h[0]].push(h),c[1][h[1]].push(h)}for(var f=[],u=0;s>u;++u)c[0][u].length+c[1][u].length===0&&f.push([u]);for(var u=0;s>u;++u)for(var d=0;2>d;++d){for(var p=[];c[d][u].length>0;){var g=(c[0][u].length,o(u,d));a(p,g)?p.push.apply(p,g):(p.length>0&&f.push(p),p=g)}p.length>0&&f.push(p)}return f}e.exports=n;var i=t(\\\"compare-angle\\\")},{\\\"compare-angle\\\":283}],283:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){var n=s(t[0],-e[0]),i=s(t[1],-e[1]),o=s(r[0],-e[0]),a=s(r[1],-e[1]),u=c(l(n,o),l(i,a));return u[u.length-1]>=0}function i(t,e,r,i){var s=o(e,r,i);if(0===s){var l=a(o(t,e,r)),c=a(o(t,e,i));if(l===c){if(0===l){var u=n(t,e,r),h=n(t,e,i);return u===h?0:u?1:-1}return 0}return 0===c?l>0?-1:n(t,e,i)?-1:1:0===l?c>0?1:n(t,e,r)?1:-1:a(c-l)}var f=o(t,e,r);if(f>0)return s>0&&o(t,e,i)>0?1:-1;if(0>f)return s>0||o(t,e,i)>0?1:-1;var d=o(t,e,i);return d>0?1:n(t,e,r)?1:-1}e.exports=i;var o=t(\\\"robust-orientation\\\"),a=t(\\\"signum\\\"),s=t(\\\"two-sum\\\"),l=t(\\\"robust-product\\\"),c=t(\\\"robust-sum\\\")},{\\\"robust-orientation\\\":216,\\\"robust-product\\\":284,\\\"robust-sum\\\":219,signum:285,\\\"two-sum\\\":234}],284:[function(t,e,r){\\\"use strict\\\";function n(t,e){if(1===t.length)return o(e,t[0]);if(1===e.length)return o(t,e[0]);if(0===t.length||0===e.length)return[0];var r=[0];if(t.length<e.length)for(var n=0;n<t.length;++n)r=i(r,o(e,t[n]));else for(var n=0;n<e.length;++n)r=i(r,o(t,e[n]));return r}var i=t(\\\"robust-sum\\\"),o=t(\\\"robust-scale\\\");e.exports=n},{\\\"robust-scale\\\":217,\\\"robust-sum\\\":219}],285:[function(t,e,r){\\\"use strict\\\";e.exports=function(t){return 0>t?-1:t>0?1:0}},{}],286:[function(t,e,r){arguments[4][20][0].apply(r,arguments)},{dup:20}],287:[function(t,e,r){\\\"use strict\\\";function n(t,e,r,n,i){this.mid=t,this.left=e,this.right=r,this.leftPoints=n,this.rightPoints=i,this.count=(e?e.count:0)+(r?r.count:0)+n.length}function i(t,e){t.mid=e.mid,t.left=e.left,t.right=e.right,t.leftPoints=e.leftPoints,t.rightPoints=e.rightPoints,t.count=e.count}function o(t,e){var r=p(e);t.mid=r.mid,t.left=r.left,t.right=r.right,t.leftPoints=r.leftPoints,t.rightPoints=r.rightPoints,t.count=r.count}function a(t,e){var r=t.intervals([]);r.push(e),o(t,r)}function s(t,e){var r=t.intervals([]),n=r.indexOf(e);return 0>n?y:(r.splice(n,1),o(t,r),b)}function l(t,e,r){for(var n=0;n<t.length&&t[n][0]<=e;++n){var i=r(t[n]);if(i)return i}}function c(t,e,r){for(var n=t.length-1;n>=0&&t[n][1]>=e;--n){var i=r(t[n]);if(i)return i}}function u(t,e){for(var r=0;r<t.length;++r){var n=e(t[r]);if(n)return n}}function h(t,e){return t-e}function f(t,e){var r=t[0]-e[0];return r?r:t[1]-e[1]}function d(t,e){var r=t[1]-e[1];return r?r:t[0]-e[0]}function p(t){if(0===t.length)return null;for(var e=[],r=0;r<t.length;++r)e.push(t[r][0],t[r][1]);e.sort(h);for(var i=e[e.length>>1],o=[],a=[],s=[],r=0;r<t.length;++r){var l=t[r];l[1]<i?o.push(l):i<l[0]?a.push(l):s.push(l)}var c=s,u=s.slice();return c.sort(f),u.sort(d),new n(i,p(o),p(a),c,u)}function g(t){this.root=t}function v(t){return new g(t&&0!==t.length?p(t):null)}var m=t(\\\"binary-search-bounds\\\"),y=0,b=1,x=2;e.exports=v;var _=n.prototype;_.intervals=function(t){return t.push.apply(t,this.leftPoints),this.left&&this.left.intervals(t),this.right&&this.right.intervals(t),t},_.insert=function(t){var e=this.count-this.leftPoints.length;if(this.count+=1,t[1]<this.mid)this.left?4*(this.left.count+1)>3*(e+1)?a(this,t):this.left.insert(t):this.left=p([t]);else if(t[0]>this.mid)this.right?4*(this.right.count+1)>3*(e+1)?a(this,t):this.right.insert(t):this.right=p([t]);else{var r=m.ge(this.leftPoints,t,f),n=m.ge(this.rightPoints,t,d);this.leftPoints.splice(r,0,t),this.rightPoints.splice(n,0,t)}},_.remove=function(t){var e=this.count-this.leftPoints;if(t[1]<this.mid){if(!this.left)return y;var r=this.right?this.right.count:0;if(4*r>3*(e-1))return s(this,t);var n=this.left.remove(t);return n===x?(this.left=null,this.count-=1,b):(n===b&&(this.count-=1),n)}if(t[0]>this.mid){if(!this.right)return y;var o=this.left?this.left.count:0;if(4*o>3*(e-1))return s(this,t);var n=this.right.remove(t);return n===x?(this.right=null,this.count-=1,b):(n===b&&(this.count-=1),n)}if(1===this.count)return this.leftPoints[0]===t?x:y;if(1===this.leftPoints.length&&this.leftPoints[0]===t){if(this.left&&this.right){for(var a=this,l=this.left;l.right;)a=l,l=l.right;if(a===this)l.right=this.right;else{var c=this.left,n=this.right;a.count-=l.count,a.right=l.left,l.left=c,l.right=n}i(this,l),this.count=(this.left?this.left.count:0)+(this.right?this.right.count:0)+this.leftPoints.length}else this.left?i(this,this.left):i(this,this.right);return b}for(var c=m.ge(this.leftPoints,t,f);c<this.leftPoints.length&&this.leftPoints[c][0]===t[0];++c)if(this.leftPoints[c]===t){this.count-=1,this.leftPoints.splice(c,1);for(var n=m.ge(this.rightPoints,t,d);n<this.rightPoints.length&&this.rightPoints[n][1]===t[1];++n)if(this.rightPoints[n]===t)return this.rightPoints.splice(n,1),b}return y},_.queryPoint=function(t,e){if(t<this.mid){if(this.left){var r=this.left.queryPoint(t,e);if(r)return r}return l(this.leftPoints,t,e)}if(t>this.mid){if(this.right){var r=this.right.queryPoint(t,e);if(r)return r}return c(this.rightPoints,t,e)}return u(this.leftPoints,e)},_.queryInterval=function(t,e,r){if(t<this.mid&&this.left){var n=this.left.queryInterval(t,e,r);if(n)return n}if(e>this.mid&&this.right){var n=this.right.queryInterval(t,e,r);if(n)return n}return e<this.mid?l(this.leftPoints,e,r):t>this.mid?c(this.rightPoints,t,r):u(this.leftPoints,r)};var w=g.prototype;w.insert=function(t){this.root?this.root.insert(t):this.root=new n(t[0],null,null,[t],[t])},w.remove=function(t){if(this.root){var e=this.root.remove(t);return e===x&&(this.root=null),e!==y}return!1},w.queryPoint=function(t,e){return this.root?this.root.queryPoint(t,e):void 0},w.queryInterval=function(t,e,r){return e>=t&&this.root?this.root.queryInterval(t,e,r):void 0},Object.defineProperty(w,\\\"count\\\",{get:function(){return this.root?this.root.count:0}}),Object.defineProperty(w,\\\"intervals\\\",{get:function(){return this.root?this.root.intervals([]):[]}})},{\\\"binary-search-bounds\\\":286}],288:[function(t,e,r){\\\"use strict\\\";function n(t,e){var r,n;if(e[0][0]<e[1][0])r=e[0],n=e[1];else{if(!(e[0][0]>e[1][0])){var i=Math.min(t[0][1],t[1][1]),a=Math.max(t[0][1],t[1][1]),s=Math.min(e[0][1],e[1][1]),l=Math.max(e[0][1],e[1][1]);return s>a?a-s:i>l?i-l:a-l}r=e[1],n=e[0]}var c,u;t[0][1]<t[1][1]?(c=t[0],u=t[1]):(c=t[1],u=t[0]);var h=o(n,r,c);return h?h:(h=o(n,r,u),h?h:u-n)}function i(t,e){var r,i;if(e[0][0]<e[1][0])r=e[0],i=e[1];else{if(!(e[0][0]>e[1][0]))return n(e,t);r=e[1],i=e[0]}var a,s;if(t[0][0]<t[1][0])a=t[0],s=t[1];else{if(!(t[0][0]>t[1][0]))return-n(t,e);a=t[1],s=t[0]}var l=o(r,i,s),c=o(r,i,a);if(0>l){if(0>=c)return l}else if(l>0){if(c>=0)return l}else if(c)return c;if(l=o(s,a,i),c=o(s,a,r),0>l){if(0>=c)return l}else if(l>0){if(c>=0)return l}else if(c)return c;return i[0]-s[0]}e.exports=i;var o=t(\\\"robust-orientation\\\")},{\\\"robust-orientation\\\":216}],289:[function(t,e,r){\\\"use strict\\\";function n(t,e,r,n,i,o){this._color=t,this.key=e,this.value=r,this.left=n,this.right=i,this._count=o}function i(t){return new n(t._color,t.key,t.value,t.left,t.right,t._count)}function o(t,e){return new n(t,e.key,e.value,e.left,e.right,e._count)}function a(t){t._count=1+(t.left?t.left._count:0)+(t.right?t.right._count:0)}function s(t,e){this._compare=t,this.root=e}function l(t,e){if(e.left){var r=l(t,e.left);if(r)return r}var r=t(e.key,e.value);return r?r:e.right?l(t,e.right):void 0}function c(t,e,r,n){var i=e(t,n.key);if(0>=i){if(n.left){var o=c(t,e,r,n.left);if(o)return o}var o=r(n.key,n.value);if(o)return o}return n.right?c(t,e,r,n.right):void 0}function u(t,e,r,n,i){var o,a=r(t,i.key),s=r(e,i.key);if(0>=a){if(i.left&&(o=u(t,e,r,n,i.left)))return o;if(s>0&&(o=n(i.key,i.value)))return o}return s>0&&i.right?u(t,e,r,n,i.right):void 0}function h(t,e){this.tree=t,this._stack=e}function f(t,e){t.key=e.key,t.value=e.value,t.left=e.left,t.right=e.right,t._color=e._color,t._count=e._count}function d(t){for(var e,r,n,s,l=t.length-1;l>=0;--l){if(e=t[l],0===l)return void(e._color=m);if(r=t[l-1],r.left===e){if(n=r.right,n.right&&n.right._color===v){if(n=r.right=i(n),s=n.right=i(n.right),r.right=n.left,n.left=r,n.right=s,n._color=r._color,e._color=m,r._color=m,s._color=m,a(r),a(n),l>1){var c=t[l-2];c.left===r?c.left=n:c.right=n}return void(t[l-1]=n)}if(n.left&&n.left._color===v){if(n=r.right=i(n),s=n.left=i(n.left),r.right=s.left,n.left=s.right,s.left=r,s.right=n,s._color=r._color,r._color=m,n._color=m,e._color=m,a(r),a(n),a(s),l>1){var c=t[l-2];c.left===r?c.left=s:c.right=s}return void(t[l-1]=s)}if(n._color===m){if(r._color===v)return r._color=m,void(r.right=o(v,n));r.right=o(v,n);continue}if(n=i(n),r.right=n.left,n.left=r,n._color=r._color,r._color=v,a(r),a(n),l>1){var c=t[l-2];c.left===r?c.left=n:c.right=n}t[l-1]=n,t[l]=r,l+1<t.length?t[l+1]=e:t.push(e),l+=2}else{if(n=r.left,n.left&&n.left._color===v){if(n=r.left=i(n),s=n.left=i(n.left),r.left=n.right,n.right=r,n.left=s,n._color=r._color,e._color=m,r._color=m,s._color=m,a(r),a(n),l>1){var c=t[l-2];c.right===r?c.right=n:c.left=n}return void(t[l-1]=n)}if(n.right&&n.right._color===v){if(n=r.left=i(n),s=n.right=i(n.right),r.left=s.right,n.right=s.left,s.right=r,s.left=n,s._color=r._color,r._color=m,n._color=m,e._color=m,a(r),a(n),a(s),l>1){var c=t[l-2];c.right===r?c.right=s:c.left=s}return void(t[l-1]=s)}if(n._color===m){if(r._color===v)return r._color=m,void(r.left=o(v,n));r.left=o(v,n);continue}if(n=i(n),r.left=n.right,n.right=r,n._color=r._color,r._color=v,a(r),a(n),l>1){var c=t[l-2];c.right===r?c.right=n:c.left=n}t[l-1]=n,t[l]=r,l+1<t.length?t[l+1]=e:t.push(e),l+=2}}}function p(t,e){return e>t?-1:t>e?1:0}function g(t){return new s(t||p,null)}e.exports=g;var v=0,m=1,y=s.prototype;Object.defineProperty(y,\\\"keys\\\",{get:function(){var t=[];return this.forEach(function(e,r){t.push(e)}),t}}),Object.defineProperty(y,\\\"values\\\",{get:function(){var t=[];return this.forEach(function(e,r){t.push(r)}),t}}),Object.defineProperty(y,\\\"length\\\",{get:function(){return this.root?this.root._count:0}}),y.insert=function(t,e){for(var r=this._compare,i=this.root,l=[],c=[];i;){var u=r(t,i.key);l.push(i),c.push(u),i=0>=u?i.left:i.right}l.push(new n(v,t,e,null,null,1));for(var h=l.length-2;h>=0;--h){var i=l[h];c[h]<=0?l[h]=new n(i._color,i.key,i.value,l[h+1],i.right,i._count+1):l[h]=new n(i._color,i.key,i.value,i.left,l[h+1],i._count+1)}for(var h=l.length-1;h>1;--h){var f=l[h-1],i=l[h];if(f._color===m||i._color===m)break;var d=l[h-2];if(d.left===f)if(f.left===i){var p=d.right;if(!p||p._color!==v){if(d._color=v,d.left=f.right,f._color=m,f.right=d,l[h-2]=f,l[h-1]=i,a(d),a(f),h>=3){var g=l[h-3];g.left===d?g.left=f:g.right=f}break}f._color=m,d.right=o(m,p),d._color=v,h-=1}else{var p=d.right;if(!p||p._color!==v){if(f.right=i.left,d._color=v,d.left=i.right,i._color=m,i.left=f,i.right=d,l[h-2]=i,l[h-1]=f,a(d),a(f),a(i),h>=3){var g=l[h-3];g.left===d?g.left=i:g.right=i}break}f._color=m,d.right=o(m,p),d._color=v,h-=1}else if(f.right===i){var p=d.left;if(!p||p._color!==v){if(d._color=v,d.right=f.left,f._color=m,f.left=d,l[h-2]=f,l[h-1]=i,a(d),a(f),h>=3){var g=l[h-3];g.right===d?g.right=f:g.left=f}break}f._color=m,d.left=o(m,p),d._color=v,h-=1}else{var p=d.left;if(!p||p._color!==v){if(f.left=i.right,d._color=v,d.right=i.left,i._color=m,i.right=f,i.left=d,l[h-2]=i,l[h-1]=f,a(d),a(f),a(i),h>=3){var g=l[h-3];g.right===d?g.right=i:g.left=i}break}f._color=m,d.left=o(m,p),d._color=v,h-=1}}return l[0]._color=m,new s(r,l[0])},y.forEach=function(t,e,r){if(this.root)switch(arguments.length){case 1:return l(t,this.root);case 2:return c(e,this._compare,t,this.root);case 3:if(this._compare(e,r)>=0)return;return u(e,r,this._compare,t,this.root)}},Object.defineProperty(y,\\\"begin\\\",{get:function(){for(var t=[],e=this.root;e;)t.push(e),e=e.left;return new h(this,t)}}),Object.defineProperty(y,\\\"end\\\",{get:function(){for(var t=[],e=this.root;e;)t.push(e),e=e.right;return new h(this,t)}}),y.at=function(t){if(0>t)return new h(this,[]);for(var e=this.root,r=[];;){if(r.push(e),e.left){if(t<e.left._count){e=e.left;continue}t-=e.left._count}if(!t)return new h(this,r);if(t-=1,!e.right)break;if(t>=e.right._count)break;e=e.right}return new h(this,[])},y.ge=function(t){for(var e=this._compare,r=this.root,n=[],i=0;r;){var o=e(t,r.key);n.push(r),0>=o&&(i=n.length),r=0>=o?r.left:r.right}return n.length=i,new h(this,n)},y.gt=function(t){for(var e=this._compare,r=this.root,n=[],i=0;r;){var o=e(t,r.key);n.push(r),0>o&&(i=n.length),r=0>o?r.left:r.right}return n.length=i,new h(this,n)},y.lt=function(t){for(var e=this._compare,r=this.root,n=[],i=0;r;){var o=e(t,r.key);n.push(r),o>0&&(i=n.length),r=0>=o?r.left:r.right}return n.length=i,new h(this,n)},y.le=function(t){for(var e=this._compare,r=this.root,n=[],i=0;r;){var o=e(t,r.key);n.push(r),o>=0&&(i=n.length),r=0>o?r.left:r.right}return n.length=i,new h(this,n)},y.find=function(t){for(var e=this._compare,r=this.root,n=[];r;){var i=e(t,r.key);if(n.push(r),0===i)return new h(this,n);r=0>=i?r.left:r.right}return new h(this,[])},y.remove=function(t){var e=this.find(t);return e?e.remove():this},y.get=function(t){for(var e=this._compare,r=this.root;r;){var n=e(t,r.key);if(0===n)return r.value;r=0>=n?r.left:r.right}};var b=h.prototype;Object.defineProperty(b,\\\"valid\\\",{get:function(){return this._stack.length>0}}),Object.defineProperty(b,\\\"node\\\",{get:function(){return this._stack.length>0?this._stack[this._stack.length-1]:null},enumerable:!0}),b.clone=function(){return new h(this.tree,this._stack.slice())},b.remove=function(){var t=this._stack;if(0===t.length)return this.tree;var e=new Array(t.length),r=t[t.length-1];e[e.length-1]=new n(r._color,r.key,r.value,r.left,r.right,r._count);for(var i=t.length-2;i>=0;--i){var r=t[i];r.left===t[i+1]?e[i]=new n(r._color,r.key,r.value,e[i+1],r.right,r._count):e[i]=new n(r._color,r.key,r.value,r.left,e[i+1],r._count)}if(r=e[e.length-1],r.left&&r.right){var o=e.length;for(r=r.left;r.right;)e.push(r),r=r.right;var a=e[o-1];e.push(new n(r._color,a.key,a.value,r.left,r.right,r._count)),e[o-1].key=r.key,e[o-1].value=r.value;for(var i=e.length-2;i>=o;--i)r=e[i],e[i]=new n(r._color,r.key,r.value,r.left,e[i+1],r._count);e[o-1].left=e[o]}if(r=e[e.length-1],r._color===v){var l=e[e.length-2];l.left===r?l.left=null:l.right===r&&(l.right=null),e.pop();for(var i=0;i<e.length;++i)e[i]._count--;return new s(this.tree._compare,e[0])}if(r.left||r.right){r.left?f(r,r.left):r.right&&f(r,r.right),r._color=m;for(var i=0;i<e.length-1;++i)e[i]._count--;return new s(this.tree._compare,e[0])}if(1===e.length)return new s(this.tree._compare,null);for(var i=0;i<e.length;++i)e[i]._count--;var c=e[e.length-2];return d(e),c.left===r?c.left=null:c.right=null,new s(this.tree._compare,e[0])},Object.defineProperty(b,\\\"key\\\",{get:function(){return this._stack.length>0?this._stack[this._stack.length-1].key:void 0},enumerable:!0}),Object.defineProperty(b,\\\"value\\\",{get:function(){return this._stack.length>0?this._stack[this._stack.length-1].value:void 0},enumerable:!0}),Object.defineProperty(b,\\\"index\\\",{get:function(){var t=0,e=this._stack;if(0===e.length){var r=this.tree.root;return r?r._count:0}e[e.length-1].left&&(t=e[e.length-1].left._count);for(var n=e.length-2;n>=0;--n)e[n+1]===e[n].right&&(++t,e[n].left&&(t+=e[n].left._count));return t},enumerable:!0}),b.next=function(){var t=this._stack;if(0!==t.length){var e=t[t.length-1];if(e.right)for(e=e.right;e;)t.push(e),e=e.left;else for(t.pop();t.length>0&&t[t.length-1].right===e;)e=t[t.length-1],t.pop()}},Object.defineProperty(b,\\\"hasNext\\\",{get:function(){var t=this._stack;if(0===t.length)return!1;if(t[t.length-1].right)return!0;for(var e=t.length-1;e>0;--e)if(t[e-1].left===t[e])return!0;return!1}}),b.update=function(t){var e=this._stack;if(0===e.length)throw new Error(\\\"Can't update empty node!\\\");var r=new Array(e.length),i=e[e.length-1];r[r.length-1]=new n(i._color,i.key,t,i.left,i.right,i._count);for(var o=e.length-2;o>=0;--o)i=e[o],i.left===e[o+1]?r[o]=new n(i._color,i.key,i.value,r[o+1],i.right,i._count):r[o]=new n(i._color,i.key,i.value,i.left,r[o+1],i._count);return new s(this.tree._compare,r[0])},b.prev=function(){var t=this._stack;if(0!==t.length){var e=t[t.length-1];if(e.left)for(e=e.left;e;)t.push(e),e=e.right;else for(t.pop();t.length>0&&t[t.length-1].left===e;)e=t[t.length-1],t.pop()}},Object.defineProperty(b,\\\"hasPrev\\\",{get:function(){var t=this._stack;if(0===t.length)return!1;if(t[t.length-1].left)return!0;for(var e=t.length-1;e>0;--e)if(t[e-1].right===t[e])return!0;return!1}})},{}],290:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){this.slabs=t,this.coordinates=e,this.horizontal=r}function i(t,e){return t.y-e}function o(t,e){for(var r=null;t;){var n,i,a=t.key;a[0][0]<a[1][0]?(n=a[0],i=a[1]):(n=a[1],i=a[0]);var s=h(n,i,e);if(0>s)t=t.left;else if(s>0)if(e[0]!==a[1][0])r=t,t=t.right;else{var l=o(t.right,e);if(l)return l;t=t.left}else{if(e[0]!==a[1][0])return t;var l=o(t.right,e);if(l)return l;t=t.left}}return r}function a(t,e,r,n){this.y=t,this.index=e,this.start=r,this.closed=n}function s(t,e,r,n){this.x=t,this.segment=e,this.create=r,this.index=n}function l(t){for(var e=t.length,r=2*e,i=new Array(r),o=0;e>o;++o){var l=t[o],c=l[0][0]<l[1][0];i[2*o]=new s(l[0][0],l,c,o),i[2*o+1]=new s(l[1][0],l,!c,o)}i.sort(function(t,e){var r=t.x-e.x;return r?r:(r=t.create-e.create,r?r:Math.min(t.segment[0][1],t.segment[1][1])-Math.min(e.segment[0][1],e.segment[1][1]))});for(var h=u(f),d=[],p=[],g=[],o=0;r>o;){for(var v=i[o].x,m=[];r>o;){var y=i[o];if(y.x!==v)break;o+=1,y.segment[0][0]===y.x&&y.segment[1][0]===y.x?y.create&&(y.segment[0][1]<y.segment[1][1]?(m.push(new a(y.segment[0][1],y.index,!0,!0)),m.push(new a(y.segment[1][1],y.index,!1,!1))):(m.push(new a(y.segment[1][1],y.index,!0,!1)),m.push(new a(y.segment[0][1],y.index,!1,!0)))):h=y.create?h.insert(y.segment,y.index):h.remove(y.segment)}d.push(h.root),p.push(v),g.push(m)}return new n(d,p,g)}e.exports=l;var c=t(\\\"binary-search-bounds\\\"),u=t(\\\"functional-red-black-tree\\\"),h=t(\\\"robust-orientation\\\"),f=t(\\\"./lib/order-segments\\\"),d=n.prototype;d.castUp=function(t){var e=c.le(this.coordinates,t[0]);if(0>e)return-1;var r=(this.slabs[e],o(this.slabs[e],t)),n=-1;if(r&&(n=r.value),this.coordinates[e]===t[0]){var a=null;if(r&&(a=r.key),e>0){var s=o(this.slabs[e-1],t);s&&(a?f(s.key,a)>0&&(a=s.key,n=s.value):(n=s.value,a=s.key))}var l=this.horizontal[e];if(l.length>0){var u=c.ge(l,t[1],i);if(u<l.length){var d=l[u];if(t[1]===d.y){if(d.closed)return d.index;for(;u<l.length-1&&l[u+1].y===t[1];)if(u+=1,d=l[u],d.closed)return d.index;if(d.y===t[1]&&!d.start){if(u+=1,u>=l.length)return n;d=l[u]}}if(d.start)if(a){var p=h(a[0],a[1],[t[0],d.y]);a[0][0]>a[1][0]&&(p=-p),p>0&&(n=d.index)}else n=d.index;else d.y!==t[1]&&(n=d.index)}}}return n}},{\\\"./lib/order-segments\\\":288,\\\"binary-search-bounds\\\":286,\\\"functional-red-black-tree\\\":289,\\\"robust-orientation\\\":216}],291:[function(t,e,r){function n(){return!0}function i(t){return function(e,r){var i=t[e];return i?!!i.queryPoint(r,n):!1}}function o(t){for(var e={},r=0;r<t.length;++r){var n=t[r],o=n[0][0],a=n[0][1],s=n[1][1],l=[Math.min(a,s),Math.max(a,s)];o in e?e[o].push(l):e[o]=[l]}for(var c={},u=Object.keys(e),r=0;r<u.length;++r){var h=e[u[r]];c[u[r]]=d(h)}return i(c)}function a(t,e){return function(r){var n=p.le(e,r[0]);if(0>n)return 1;var i=t[n];if(!i){if(!(n>0&&e[n]===r[0]))return 1;i=t[n-1]}for(var o=1;i;){var a=i.key,s=h(r,a[0],a[1]);if(a[0][0]<a[1][0])if(0>s)i=i.left;else{if(!(s>0))return 0;o=-1,i=i.right}else if(s>0)i=i.left;else{if(!(0>s))return 0;o=1,i=i.right}}return o}}function s(t){return 1}function l(t){return function(e){return t(e[0],e[1])?0:1}}function c(t,e){return function(r){return t(r[0],r[1])?0:e(r)}}function u(t){for(var e=t.length,r=[],n=[],i=0;e>i;++i)for(var u=t[i],h=u.length,d=h-1,p=0;h>p;d=p++){var g=u[d],v=u[p];g[0]===v[0]?n.push([g,v]):r.push([g,v])}if(0===r.length)return 0===n.length?s:l(o(n));var m=f(r),y=a(m.slabs,m.coordinates);return 0===n.length?y:c(o(n),y)}e.exports=u;var h=t(\\\"robust-orientation\\\")[3],f=t(\\\"slab-decomposition\\\"),d=t(\\\"interval-tree-1d\\\"),p=t(\\\"binary-search-bounds\\\")},{\\\"binary-search-bounds\\\":286,\\\"interval-tree-1d\\\":287,\\\"robust-orientation\\\":216,\\\"slab-decomposition\\\":290}],292:[function(t,e,r){\\\"use strict\\\";function n(t,e){for(var r=new Array(t),n=0;t>n;++n)r[n]=e;return r}function i(t){for(var e=new Array(t),r=0;t>r;++r)e[r]=[];return e}function o(t,e){function r(t){for(var r=t.length,n=[0],i=0;r>i;++i){var o=e[t[i]],a=e[t[(i+1)%r]],s=c(-o[0],o[1]),l=c(-o[0],a[1]),h=c(a[0],o[1]),f=c(a[0],a[1]);n=u(n,u(u(s,l),u(h,f)))}return n[n.length-1]>0}function o(t){for(var e=t.length,r=0;e>r;++r)if(!O[t[r]])return!1;return!0}var d=f(t,e);t=d[0],e=d[1];for(var p=e.length,g=(t.length,a(t,e.length)),v=0;p>v;++v)if(g[v].length%2===1)throw new Error(\\\"planar-graph-to-polyline: graph must be manifold\\\");var m=s(t,e);m=m.filter(r);for(var y=m.length,b=new Array(y),x=new Array(y),v=0;y>v;++v){b[v]=v;var _=new Array(y),w=m[v].map(function(t){return e[t]}),A=l([w]),k=0;t:for(var M=0;y>M;++M)if(_[M]=0,v!==M){for(var T=m[M],E=T.length,L=0;E>L;++L){var S=A(e[T[L]]);if(0!==S){0>S&&(_[M]=1,k+=1);continue t}}_[M]=1,k+=1}x[v]=[k,v,_]}x.sort(function(t,e){return e[0]-t[0]});for(var v=0;y>v;++v)for(var _=x[v],C=_[1],P=_[2],M=0;y>M;++M)P[M]&&(b[M]=C);for(var z=i(y),v=0;y>v;++v)z[v].push(b[v]),z[b[v]].push(v);for(var R={},O=n(p,!1),v=0;y>v;++v)for(var T=m[v],E=T.length,M=0;E>M;++M){var I=T[M],N=T[(M+1)%E],j=Math.min(I,N)+\\\":\\\"+Math.max(I,N);if(j in R){var F=R[j];z[F].push(v),z[v].push(F),O[I]=O[N]=!0}else R[j]=v}for(var D=[],B=n(y,-1),v=0;y>v;++v)b[v]!==v||o(m[v])?B[v]=-1:(D.push(v),B[v]=0);for(var d=[];D.length>0;){var U=D.pop(),V=z[U];h(V,function(t,e){return t-e});var q,H=V.length,G=B[U];if(0===G){var T=m[U];q=[T]}for(var v=0;H>v;++v){var Y=V[v];if(!(B[Y]>=0)&&(B[Y]=1^G,D.push(Y),0===G)){var T=m[Y];o(T)||(T.reverse(),q.push(T))}}0===G&&d.push(q)}return d}e.exports=o;var a=t(\\\"edges-to-adjacency-list\\\"),s=t(\\\"planar-dual\\\"),l=t(\\\"point-in-big-polygon\\\"),c=t(\\\"two-product\\\"),u=t(\\\"robust-sum\\\"),h=t(\\\"uniq\\\"),f=t(\\\"./lib/trim-leaves\\\")},{\\\"./lib/trim-leaves\\\":280,\\\"edges-to-adjacency-list\\\":281,\\\"planar-dual\\\":282,\\\"point-in-big-polygon\\\":291,\\\"robust-sum\\\":219,\\\"two-product\\\":233,uniq:236}],293:[function(t,e,r){arguments[4][49][0].apply(r,arguments)},{dup:49}],294:[function(t,e,r){\\\"use strict\\\";\\\"use restrict\\\";function n(t){this.roots=new Array(t),this.ranks=new Array(t);for(var e=0;t>e;++e)this.roots[e]=e,this.ranks[e]=0}e.exports=n,n.prototype.length=function(){return this.roots.length},n.prototype.makeSet=function(){var t=this.roots.length;return this.roots.push(t),this.ranks.push(0),t},n.prototype.find=function(t){for(var e=this.roots;e[t]!==t;){var r=e[t];e[t]=e[r],t=r}return t},n.prototype.link=function(t,e){var r=this.find(t),n=this.find(e);if(r!==n){var i=this.ranks,o=this.roots,a=i[r],s=i[n];s>a?o[r]=n:a>s?o[n]=r:(o[n]=r,++i[r])}}},{}],295:[function(t,e,r){arguments[4][196][0].apply(r,arguments)},{\\\"bit-twiddle\\\":293,dup:196,\\\"union-find\\\":294}],296:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){var n=Math.abs(o(t,e,r)),i=Math.sqrt(Math.pow(e[0]-r[0],2)+Math.pow(e[1]-r[1],2));return n/i}function i(t,e,r){function i(t){if(x[t])return 1/0;var r=m[t],i=y[t];return 0>r||0>i?1/0:n(e[t],e[r],e[i])}function o(t,e){var r=M[t],n=M[e];M[t]=n,M[e]=r,T[r]=e,T[n]=t}function s(t){return b[M[t]]}function l(t){return 1&t?t-1>>1:(t>>1)-1}function c(t){for(var e=s(t);;){var r=e,n=2*t+1,i=2*(t+1),a=t;if(L>n){var l=s(n);r>l&&(a=n,r=l)}if(L>i){var c=s(i);r>c&&(a=i)}if(a===t)return t;o(t,a),t=a}}function u(t){for(var e=s(t);t>0;){var r=l(t);if(r>=0){var n=s(r);if(n>e){o(t,r),t=r;continue}}return t}}function h(){if(L>0){var t=M[0];return o(0,L-1),L-=1,c(0),t}return-1}function f(t,e){var r=M[t];return b[r]===e?t:(b[r]=-(1/0),u(t),h(),b[r]=e,L+=1,u(L-1))}function d(t){if(!x[t]){x[t]=!0;var e=m[t],r=y[t];m[r]>=0&&(m[r]=e),y[e]>=0&&(y[e]=r),T[e]>=0&&f(T[e],i(e)),T[r]>=0&&f(T[r],i(r))}}function p(t,e){if(t[e]<0)return e;var r=e,n=e;do{var i=t[n];if(!x[n]||0>i||i===n)break;if(n=i,i=t[n],!x[n]||0>i||i===n)break;n=i,r=t[r]}while(r!==n);for(var o=e;o!==n;o=t[o])t[o]=n;return n}for(var g=e.length,v=t.length,m=new Array(g),y=new Array(g),b=new Array(g),x=new Array(g),_=0;g>_;++_)m[_]=y[_]=-1,b[_]=1/0,x[_]=!1;for(var _=0;v>_;++_){var w=t[_];if(2!==w.length)throw new Error(\\\"Input must be a graph\\\");var A=w[1],k=w[0];-1!==y[k]?y[k]=-2:y[k]=A,-1!==m[A]?m[A]=-2:m[A]=k}for(var M=[],T=new Array(g),_=0;g>_;++_){var E=b[_]=i(_);1/0>E?(T[_]=M.length,M.push(_)):T[_]=-1}for(var L=M.length,_=L>>1;_>=0;--_)c(_);for(;;){var S=h();if(0>S||b[S]>r)break;d(S)}for(var C=[],_=0;g>_;++_)x[_]||(T[_]=C.length,C.push(e[_].slice()));var P=(C.length,[]);return t.forEach(function(t){var e=p(m,t[0]),r=p(y,t[1]);if(e>=0&&r>=0&&e!==r){var n=T[e],i=T[r];n!==i&&P.push([n,i])}}),a.unique(a.normalize(P)),{positions:C,edges:P}}e.exports=i;var o=t(\\\"robust-orientation\\\"),a=t(\\\"simplicial-complex\\\")},{\\\"robust-orientation\\\":216,\\\"simplicial-complex\\\":295}],297:[function(t,e,r){\\\"use strict\\\";e.exports=[\\\"\\\",{path:\\\"M-2.4,-3V3L0.6,0Z\\\",backoff:.6},{path:\\\"M-3.7,-2.5V2.5L1.3,0Z\\\",backoff:1.3},{path:\\\"M-4.45,-3L-1.65,-0.2V0.2L-4.45,3L1.55,0Z\\\",backoff:1.55},{path:\\\"M-2.2,-2.2L-0.2,-0.2V0.2L-2.2,2.2L-1.4,3L1.6,0L-1.4,-3Z\\\",backoff:1.6},{path:\\\"M-4.4,-2.1L-0.6,-0.2V0.2L-4.4,2.1L-4,3L2,0L-4,-3Z\\\",backoff:2},{path:\\\"M2,0A2,2 0 1,1 0,-2A2,2 0 0,1 2,0Z\\\",backoff:0},{path:\\\"M2,2V-2H-2V2Z\\\",backoff:0}]},{}],298:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"./arrow_paths\\\"),i=t(\\\"../../plots/cartesian\\\"),o=t(\\\"../../plots/font_attributes\\\"),a=t(\\\"../../lib/extend\\\").extendFlat;e.exports={_isLinkedToArray:!0,text:{valType:\\\"string\\\"},textangle:{valType:\\\"angle\\\",dflt:0},font:a({},o,{}),opacity:{valType:\\\"number\\\",min:0,max:1,dflt:1},align:{valType:\\\"enumerated\\\",values:[\\\"left\\\",\\\"center\\\",\\\"right\\\"],dflt:\\\"center\\\"},bgcolor:{valType:\\\"color\\\",dflt:\\\"rgba(0,0,0,0)\\\"},bordercolor:{valType:\\\"color\\\",dflt:\\\"rgba(0,0,0,0)\\\"},borderpad:{valType:\\\"number\\\",min:0,dflt:1},borderwidth:{valType:\\\"number\\\",min:0,dflt:1},showarrow:{valType:\\\"boolean\\\",dflt:!0},arrowcolor:{valType:\\\"color\\\"},arrowhead:{valType:\\\"integer\\\",min:0,max:n.length,dflt:1},arrowsize:{valType:\\\"number\\\",min:.3,dflt:1},arrowwidth:{valType:\\\"number\\\",min:.1},ax:{valType:\\\"number\\\",dflt:-10},ay:{valType:\\\"number\\\",dflt:-30},xref:{valType:\\\"enumerated\\\",values:[\\\"paper\\\",i.idRegex.x.toString()]},x:{valType:\\\"number\\\"},xanchor:{valType:\\\"enumerated\\\",values:[\\\"auto\\\",\\\"left\\\",\\\"center\\\",\\\"right\\\"],dflt:\\\"auto\\\"},yref:{valType:\\\"enumerated\\\",values:[\\\"paper\\\",i.idRegex.y.toString()]},y:{valType:\\\"number\\\"},yanchor:{valType:\\\"enumerated\\\",values:[\\\"auto\\\",\\\"top\\\",\\\"middle\\\",\\\"bottom\\\"],dflt:\\\"auto\\\"},_deprecated:{ref:{valType:\\\"string\\\"}}}},{\\\"../../lib/extend\\\":369,\\\"../../plots/cartesian\\\":399,\\\"../../plots/font_attributes\\\":407,\\\"./arrow_paths\\\":297}],299:[function(t,e,r){\\\"use strict\\\";function n(t,e){function r(e,r){return a.Lib.coerce(t,n,c.layoutAttributes,e,r)}var n={};r(\\\"opacity\\\"),r(\\\"align\\\"),r(\\\"bgcolor\\\");var i=r(\\\"bordercolor\\\"),o=a.Color.opacity(i);r(\\\"borderpad\\\");var s=r(\\\"borderwidth\\\"),l=r(\\\"showarrow\\\");l&&(r(\\\"arrowcolor\\\",o?n.bordercolor:a.Color.defaultLine),r(\\\"arrowhead\\\"),r(\\\"arrowsize\\\"),r(\\\"arrowwidth\\\",2*(o&&s||1)),r(\\\"ax\\\"),r(\\\"ay\\\"),a.Lib.noneOrAll(t,n,[\\\"ax\\\",\\\"ay\\\"])),r(\\\"text\\\",l?\\\"&nbsp;\\\":\\\"new text\\\"),r(\\\"textangle\\\"),a.Lib.coerceFont(r,\\\"font\\\",e.font);for(var u=[\\\"x\\\",\\\"y\\\"],h=0;2>h;h++){var f=u[h],d={_fullLayout:e},p=a.Axes.coerceRef(t,n,d,f),g=.5;if(\\\"paper\\\"!==p){var v=a.Axes.getFromId(d,p);if(g=v.range[0]+g*(v.range[1]-v.range[0]),-1!==[\\\"date\\\",\\\"category\\\"].indexOf(v.type)&&\\\"string\\\"==typeof t[f]){var m;\\n\",\n       \"\\\"date\\\"===v.type?(m=a.Lib.dateTime2ms(t[f]),m!==!1&&(t[f]=m)):(v._categories||[]).length&&(m=v._categories.indexOf(t[f]),-1!==m&&(t[f]=m))}}r(f,g),l||r(f+\\\"anchor\\\")}return a.Lib.noneOrAll(t,n,[\\\"x\\\",\\\"y\\\"]),n}function i(t){var e=t._fullLayout;e.annotations.forEach(function(e){var r=a.Axes.getFromId(t,e.xref),n=a.Axes.getFromId(t,e.yref);if(r||n){var i=(e._xsize||0)/2,o=e._xshift||0,s=(e._ysize||0)/2,l=e._yshift||0,c=i-o,u=i+o,h=s-l,f=s+l;if(e.showarrow){var d=3*e.arrowsize*e.arrowwidth;c=Math.max(c,d),u=Math.max(u,d),h=Math.max(h,d),f=Math.max(f,d)}r&&r.autorange&&a.Axes.expand(r,[r.l2c(e.x)],{ppadplus:u,ppadminus:c}),n&&n.autorange&&a.Axes.expand(n,[n.l2c(e.y)],{ppadplus:f,ppadminus:h})}})}function o(t,e,r,n,i,o,a,s){var l=r-t,c=i-t,u=a-i,h=n-e,f=o-e,d=s-o,p=l*d-u*h;if(0===p)return null;var g=(c*d-u*f)/p,v=(c*h-l*f)/p;return 0>v||v>1||0>g||g>1?null:{x:t+l*g,y:e+h*g}}var a=t(\\\"../../plotly\\\"),s=t(\\\"d3\\\"),l=t(\\\"fast-isnumeric\\\"),c=e.exports={};c.ARROWPATHS=t(\\\"./arrow_paths\\\"),c.layoutAttributes=t(\\\"./attributes\\\"),c.supplyLayoutDefaults=function(t,e){for(var r=t.annotations||[],i=e.annotations=[],o=0;o<r.length;o++)i.push(n(r[o]||{},e))},c.drawAll=function(t){var e=t._fullLayout;e._infolayer.selectAll(\\\".annotation\\\").remove();for(var r=0;r<e.annotations.length;r++)c.draw(t,r);return a.Plots.previousPromises(t)},c.add=function(t){var e=t._fullLayout.annotations.length;a.relayout(t,\\\"annotations[\\\"+e+\\\"]\\\",\\\"add\\\")},c.draw=function(t,e,r,i){function u(t){return t.call(a.Drawing.font,Y).attr({\\\"text-anchor\\\":{left:\\\"start\\\",right:\\\"end\\\"}[O.align]||\\\"middle\\\"}),a.util.convertToTspans(t,h),t}function h(){function r(t,e){return\\\"auto\\\"===e&&(e=1/3>t?\\\"left\\\":t>2/3?\\\"right\\\":\\\"center\\\"),{center:0,middle:0,left:.5,bottom:-.5,right:-.5,top:.5}[e]}X.selectAll(\\\"tspan.line\\\").attr({y:0,x:0});var n=U.select(\\\".annotation-math-group\\\"),i=!n.empty(),l=a.Drawing.bBox((i?n:X).node()),u=l.width,h=l.height,f=Math.round(u+2*H),d=Math.round(h+2*H);O._w=u,O._h=h;var g=!1;if([\\\"x\\\",\\\"y\\\"].forEach(function(e){var n,i=a.Axes.getFromId(t,O[e+\\\"ref\\\"]||e),o=(F+(\\\"x\\\"===e?0:90))*Math.PI/180,s=f*Math.abs(Math.cos(o))+d*Math.abs(Math.sin(o)),l=O[e+\\\"anchor\\\"];if(i){if(!i.autorange&&(O[e]-i.range[0])*(O[e]-i.range[1])>0)return void(g=!0);j[e]=i._offset+i.l2p(O[e]),n=.5}else n=O[e],\\\"y\\\"===e&&(n=1-n),j[e]=\\\"x\\\"===e?w.l+w.w*n:w.t+w.h*n;var c=0;c=O.showarrow?O[\\\"a\\\"+e]:s*r(n,l),j[e]+=c,O[\\\"_\\\"+e+\\\"type\\\"]=i&&i.type,O[\\\"_\\\"+e+\\\"size\\\"]=s,O[\\\"_\\\"+e+\\\"shift\\\"]=c}),g)return void U.remove();var v,m;O.showarrow&&(v=a.Lib.constrain(j.x-O.ax,1,p.width-1),m=a.Lib.constrain(j.y-O.ay,1,p.height-1)),j.x=a.Lib.constrain(j.x,1,p.width-1),j.y=a.Lib.constrain(j.y,1,p.height-1);var y=H-l.top,b=H-l.left;i?n.select(\\\"svg\\\").attr({x:H-1,y:H}):(X.attr({x:b,y:y}),X.selectAll(\\\"tspan.line\\\").attr({y:y,x:b})),G.call(a.Drawing.setRect,V/2,V/2,f-V,d-V),U.call(a.Drawing.setRect,Math.round(j.x-f/2),Math.round(j.y-d/2),f,d);var x=\\\"annotations[\\\"+e+\\\"]\\\",_=function(r,n){s.select(t).selectAll('.annotation-arrow-g[data-index=\\\"'+e+'\\\"]').remove();var i=j.x+r,l=j.y+n,u=a.Lib.rotationXYMatrix(F,i,l),h=a.Lib.apply2DTransform(u),f=a.Lib.apply2DTransform2(u),d=G.attr(\\\"width\\\")/2,p=G.attr(\\\"height\\\")/2,g=[[i-d,l-p,i-d,l+p],[i-d,l+p,i+d,l+p],[i+d,l+p,i+d,l-p],[i+d,l-p,i-d,l-p]].map(f);if(!g.reduce(function(t,e){return t^!!o(v,m,v+1e6,m+1e6,e[0],e[1],e[2],e[3])},!1)){g.forEach(function(t){var e=o(i,l,v,m,t[0],t[1],t[2],t[3]);e&&(i=e.x,l=e.y)});var y=O.arrowwidth,b=O.arrowcolor,_=D.append(\\\"g\\\").style({opacity:a.Color.opacity(b)}).classed(\\\"annotation-arrow-g\\\",!0).attr(\\\"data-index\\\",String(e)),A=_.append(\\\"path\\\").attr(\\\"d\\\",\\\"M\\\"+i+\\\",\\\"+l+\\\"L\\\"+v+\\\",\\\"+m).style(\\\"stroke-width\\\",y+\\\"px\\\").call(a.Color.stroke,a.Color.rgb(b));c.arrowhead(A,O.arrowhead,\\\"end\\\",O.arrowsize);var k=_.append(\\\"path\\\").classed(\\\"annotation\\\",!0).classed(\\\"anndrag\\\",!0).attr({\\\"data-index\\\":String(e),d:\\\"M3,3H-3V-3H3ZM0,0L\\\"+(i-v)+\\\",\\\"+(l-m),transform:\\\"translate(\\\"+v+\\\",\\\"+m+\\\")\\\"}).style(\\\"stroke-width\\\",y+6+\\\"px\\\").call(a.Color.stroke,\\\"rgba(0,0,0,0)\\\").call(a.Color.fill,\\\"rgba(0,0,0,0)\\\");if(t._context.editable){var M,T,E;a.Fx.dragElement({element:k.node(),prepFn:function(){T=Number(U.attr(\\\"x\\\")),E=Number(U.attr(\\\"y\\\")),M={},I&&I.autorange&&(M[I._name+\\\".autorange\\\"]=!0),N&&N.autorange&&(M[N._name+\\\".autorange\\\"]=!0)},moveFn:function(t,e){_.attr(\\\"transform\\\",\\\"translate(\\\"+t+\\\",\\\"+e+\\\")\\\");var r=h(T,E),n=r[0]+t,i=r[1]+e;U.call(a.Drawing.setPosition,n,i),M[x+\\\".x\\\"]=I?O.x+t/I._m:(v+t-w.l)/w.w,M[x+\\\".y\\\"]=N?O.y+e/N._m:1-(m+e-w.t)/w.h,B.attr({transform:\\\"rotate(\\\"+F+\\\",\\\"+n+\\\",\\\"+i+\\\")\\\"})},doneFn:function(e){if(e){a.relayout(t,M);var r=document.querySelector(\\\".js-notes-box-panel\\\");r&&r.redraw(r.selectedObj)}}})}}};O.showarrow&&_(0,0);var A=a.Lib.rotationXYMatrix(F,j.x,j.y),k=a.Lib.apply2DTransform(A);if(t._context.editable){var M,T,E;a.Fx.dragElement({element:U.node(),prepFn:function(){M=Number(U.attr(\\\"x\\\")),T=Number(U.attr(\\\"y\\\")),E={}},moveFn:function(t,e){U.call(a.Drawing.setPosition,M+t,T+e);var r=\\\"pointer\\\";if(O.showarrow)E[x+\\\".ax\\\"]=O.ax+t,E[x+\\\".ay\\\"]=O.ay+e,_(t,e);else{if(I)E[x+\\\".x\\\"]=O.x+t/I._m;else{var n=O._xsize/w.w,i=O.x+O._xshift/w.w-n/2;E[x+\\\".x\\\"]=a.Fx.dragAlign(i+t/w.w,n,0,1,O.xanchor)}if(N)E[x+\\\".y\\\"]=O.y+e/N._m;else{var o=O._ysize/w.h,s=O.y-O._yshift/w.h-o/2;E[x+\\\".y\\\"]=a.Fx.dragAlign(s-e/w.h,o,0,1,O.yanchor)}I&&N||(r=a.Fx.dragCursors(I?.5:E[x+\\\".x\\\"],N?.5:E[x+\\\".y\\\"],O.xanchor,O.yanchor))}var l=k(M,T),c=l[0]+t,u=l[1]+e;U.call(a.Drawing.setPosition,c,u),B.attr({transform:\\\"rotate(\\\"+F+\\\",\\\"+c+\\\",\\\"+u+\\\")\\\"}),a.Fx.setCursor(U,r)},doneFn:function(e){if(a.Fx.setCursor(U),e){a.relayout(t,E);var r=document.querySelector(\\\".js-notes-box-panel\\\");r&&r.redraw(r.selectedObj)}}})}}var f,d=t.layout,p=t._fullLayout;if(!l(e)||-1===e){if(!e&&Array.isArray(i))return d.annotations=i,c.supplyLayoutDefaults(d,p),void c.drawAll(t);if(\\\"remove\\\"===i)return delete d.annotations,p.annotations=[],void c.drawAll(t);if(r&&\\\"add\\\"!==i){for(f=0;f<p.annotations.length;f++)c.draw(t,f,r,i);return}e=p.annotations.length,p.annotations.push({})}if(!r&&i){if(\\\"remove\\\"===i){for(p._infolayer.selectAll('.annotation[data-index=\\\"'+e+'\\\"]').remove(),p.annotations.splice(e,1),d.annotations.splice(e,1),f=e;f<p.annotations.length;f++)p._infolayer.selectAll('.annotation[data-index=\\\"'+(f+1)+'\\\"]').attr(\\\"data-index\\\",String(f)),c.draw(t,f);return}if(\\\"add\\\"===i||a.Lib.isPlainObject(i)){p.annotations.splice(e,0,{});var g=a.Lib.isPlainObject(i)?a.Lib.extendFlat({},i):{text:\\\"New text\\\"};for(d.annotations?d.annotations.splice(e,0,g):d.annotations=[g],f=p.annotations.length-1;f>e;f--)p._infolayer.selectAll('.annotation[data-index=\\\"'+(f-1)+'\\\"]').attr(\\\"data-index\\\",String(f)),c.draw(t,f)}}p._infolayer.selectAll('.annotation[data-index=\\\"'+e+'\\\"]').remove();var v=d.annotations[e],m=p.annotations[e];if(v){var y={xref:v.xref,yref:v.yref},b={};\\\"string\\\"==typeof r&&r?b[r]=i:a.Lib.isPlainObject(r)&&(b=r);var x=Object.keys(b);for(f=0;f<x.length;f++){var _=x[f];a.Lib.nestedProperty(v,_).set(b[_])}var w=p._size,A=[\\\"x\\\",\\\"y\\\"];for(f=0;2>f;f++){var k=A[f];if(void 0===b[k]&&void 0!==v[k]){var M=a.Axes.getFromId(t,a.Axes.coerceRef(y,{},t,k)),T=a.Axes.getFromId(t,a.Axes.coerceRef(v,{},t,k)),E=v[k],L=m[\\\"_\\\"+k+\\\"type\\\"];if(void 0!==b[k+\\\"ref\\\"]){var S=\\\"auto\\\"===v[k+\\\"anchor\\\"],C=\\\"x\\\"===k?w.w:w.h,P=(m[\\\"_\\\"+k+\\\"size\\\"]||0)/(2*C);if(M&&T)E=(E-M.range[0])/(M.range[1]-M.range[0]),E=T.range[0]+E*(T.range[1]-T.range[0]);else if(M){if(E=(E-M.range[0])/(M.range[1]-M.range[0]),E=M.domain[0]+E*(M.domain[1]-M.domain[0]),S){var z=E+P,R=E-P;2/3>E+R?E=R:E+z>4/3&&(E=z)}}else T&&(S&&(1/3>E?E+=P:E>2/3&&(E-=P)),E=(E-T.domain[0])/(T.domain[1]-T.domain[0]),E=T.range[0]+E*(T.range[1]-T.range[0]))}T&&T===M&&L&&(\\\"log\\\"===L&&\\\"log\\\"!==T.type?E=Math.pow(10,E):\\\"log\\\"!==L&&\\\"log\\\"===T.type&&(E=E>0?Math.log(E)/Math.LN10:void 0)),v[k]=E}}var O=n(v,p);p.annotations[e]=O;var I=a.Axes.getFromId(t,O.xref),N=a.Axes.getFromId(t,O.yref),j={x:0,y:0},F=+O.textangle||0,D=p._infolayer.append(\\\"g\\\").classed(\\\"annotation\\\",!0).attr(\\\"data-index\\\",String(e)).style(\\\"opacity\\\",O.opacity).on(\\\"click\\\",function(){t._dragging=!1,t.emit(\\\"plotly_clickannotation\\\",{index:e,annotation:v,fullAnnotation:O})}),B=D.append(\\\"g\\\").classed(\\\"annotation-text-g\\\",!0).attr(\\\"data-index\\\",String(e)),U=B.append(\\\"svg\\\").call(a.Drawing.setPosition,0,0),V=O.borderwidth,q=O.borderpad,H=V+q,G=U.append(\\\"rect\\\").attr(\\\"class\\\",\\\"bg\\\").style(\\\"stroke-width\\\",V+\\\"px\\\").call(a.Color.stroke,O.bordercolor).call(a.Color.fill,O.bgcolor),Y=O.font,X=U.append(\\\"text\\\").classed(\\\"annotation\\\",!0).attr(\\\"data-unformatted\\\",O.text).text(O.text);t._context.editable?X.call(a.util.makeEditable,U).call(u).on(\\\"edit\\\",function(r){O.text=r,this.attr({\\\"data-unformatted\\\":O.text}),this.call(u);var n={};n[\\\"annotations[\\\"+e+\\\"].text\\\"]=O.text,I&&I.autorange&&(n[I._name+\\\".autorange\\\"]=!0),N&&N.autorange&&(n[N._name+\\\".autorange\\\"]=!0),a.relayout(t,n)}):X.call(u),B.attr({transform:\\\"rotate(\\\"+F+\\\",\\\"+j.x+\\\",\\\"+j.y+\\\")\\\"}).call(a.Drawing.setPosition,j.x,j.y)}},c.arrowhead=function(t,e,r,n){l(n)||(n=1);var i=t.node(),o=c.ARROWPATHS[e||0];if(o){\\\"string\\\"==typeof r&&r||(r=\\\"end\\\");var u,h,f,d,p=(a.Drawing.getPx(t,\\\"stroke-width\\\")||1)*n,g=t.style(\\\"stroke\\\")||a.Color.defaultLine,v=t.style(\\\"stroke-opacity\\\")||1,m=r.indexOf(\\\"start\\\")>=0,y=r.indexOf(\\\"end\\\")>=0,b=o.backoff*p;if(\\\"line\\\"===i.nodeName){if(u={x:+t.attr(\\\"x1\\\"),y:+t.attr(\\\"y1\\\")},h={x:+t.attr(\\\"x2\\\"),y:+t.attr(\\\"y2\\\")},f=Math.atan2(u.y-h.y,u.x-h.x),d=f+Math.PI,b){var x=b*Math.cos(f),_=b*Math.sin(f);m&&(u.x-=x,u.y-=_,t.attr({x1:u.x,y1:u.y})),y&&(h.x+=x,h.y+=_,t.attr({x2:h.x,y2:h.y}))}}else if(\\\"path\\\"===i.nodeName){var w=i.getTotalLength(),A=\\\"\\\";if(m){var k=i.getPointAtLength(0),M=i.getPointAtLength(.1);f=Math.atan2(k.y-M.y,k.x-M.x),u=i.getPointAtLength(Math.min(b,w)),b&&(A=\\\"0px,\\\"+b+\\\"px,\\\")}if(y){var T=i.getPointAtLength(w),E=i.getPointAtLength(w-.1);if(d=Math.atan2(T.y-E.y,T.x-E.x),h=i.getPointAtLength(Math.max(0,w-b)),b){var L=A?2*b:b;A+=w-L+\\\"px,\\\"+w+\\\"px\\\"}}else A&&(A+=w+\\\"px\\\");A&&t.style(\\\"stroke-dasharray\\\",A)}var S=function(r,n){e>5&&(n=0),s.select(i.parentElement).append(\\\"path\\\").attr({\\\"class\\\":t.attr(\\\"class\\\"),d:o.path,transform:\\\"translate(\\\"+r.x+\\\",\\\"+r.y+\\\")rotate(\\\"+180*n/Math.PI+\\\")scale(\\\"+p+\\\")\\\"}).style({fill:g,opacity:v,\\\"stroke-width\\\":0})};m&&S(u,f),y&&S(h,d)}},c.calcAutorange=function(t){var e=t._fullLayout,r=e.annotations;if(r.length&&t._fullData.length){var n={};r.forEach(function(t){n[t.xref]=!0,n[t.yref]=!0});var o=a.Axes.list(t).filter(function(t){return t.autorange&&n[t._id]});if(o.length)return a.Lib.syncOrAsync([c.drawAll,i],t)}}},{\\\"../../plotly\\\":390,\\\"./arrow_paths\\\":297,\\\"./attributes\\\":298,d3:70,\\\"fast-isnumeric\\\":74}],300:[function(t,e,r){\\\"use strict\\\";r.defaults=[\\\"#1f77b4\\\",\\\"#ff7f0e\\\",\\\"#2ca02c\\\",\\\"#d62728\\\",\\\"#9467bd\\\",\\\"#8c564b\\\",\\\"#e377c2\\\",\\\"#7f7f7f\\\",\\\"#bcbd22\\\",\\\"#17becf\\\"],r.defaultLine=\\\"#444\\\",r.lightLine=\\\"#eee\\\",r.background=\\\"#fff\\\"},{}],301:[function(t,e,r){\\\"use strict\\\";function n(t){if(o(t)||\\\"string\\\"!=typeof t)return t;var e=t.trim();if(\\\"rgb\\\"!==e.substr(0,3))return t;var r=e.match(/^rgba?\\\\s*\\\\(([^()]*)\\\\)$/);if(!r)return t;var n=r[1].trim().split(/\\\\s*[\\\\s,]\\\\s*/),i=\\\"a\\\"===e.charAt(3)&&4===n.length;if(!i&&3!==n.length)return t;for(var a=0;a<n.length;a++){if(!n[a].length)return t;if(n[a]=Number(n[a]),!(n[a]>=0))return t;if(3===a)n[a]>1&&(n[a]=1);else if(n[a]>=1)return t}var s=Math.round(255*n[0])+\\\", \\\"+Math.round(255*n[1])+\\\", \\\"+Math.round(255*n[2]);return i?\\\"rgba(\\\"+s+\\\", \\\"+n[3]+\\\")\\\":\\\"rgb(\\\"+s+\\\")\\\"}var i=t(\\\"tinycolor2\\\"),o=t(\\\"fast-isnumeric\\\"),a=e.exports={},s=t(\\\"./attributes\\\");a.defaults=s.defaults,a.defaultLine=s.defaultLine,a.lightLine=s.lightLine,a.background=s.background,a.tinyRGB=function(t){var e=t.toRgb();return\\\"rgb(\\\"+Math.round(e.r)+\\\", \\\"+Math.round(e.g)+\\\", \\\"+Math.round(e.b)+\\\")\\\"},a.rgb=function(t){return a.tinyRGB(i(t))},a.opacity=function(t){return t?i(t).getAlpha():0},a.addOpacity=function(t,e){var r=i(t).toRgb();return\\\"rgba(\\\"+Math.round(r.r)+\\\", \\\"+Math.round(r.g)+\\\", \\\"+Math.round(r.b)+\\\", \\\"+e+\\\")\\\"},a.combine=function(t,e){var r=i(t).toRgb();if(1===r.a)return i(t).toRgbString();var n=i(e||a.background).toRgb(),o=1===n.a?n:{r:255*(1-n.a)+n.r*n.a,g:255*(1-n.a)+n.g*n.a,b:255*(1-n.a)+n.b*n.a},s={r:o.r*(1-r.a)+r.r*r.a,g:o.g*(1-r.a)+r.g*r.a,b:o.b*(1-r.a)+r.b*r.a};return i(s).toRgbString()},a.stroke=function(t,e){var r=i(e);t.style({stroke:a.tinyRGB(r),\\\"stroke-opacity\\\":r.getAlpha()})},a.fill=function(t,e){var r=i(e);t.style({fill:a.tinyRGB(r),\\\"fill-opacity\\\":r.getAlpha()})},a.clean=function(t){if(t&&\\\"object\\\"==typeof t){var e,r,i,o,s=Object.keys(t);for(e=0;e<s.length;e++)if(i=s[e],o=t[i],\\\"color\\\"===i.substr(i.length-5))if(Array.isArray(o))for(r=0;r<o.length;r++)o[r]=n(o[r]);else t[i]=n(o);else if(\\\"colorscale\\\"===i.substr(i.length-10)&&Array.isArray(o))for(r=0;r<o.length;r++)Array.isArray(o[r])&&(o[r][1]=n(o[r][1]));else if(Array.isArray(o)){var l=o[0];if(!Array.isArray(l)&&l&&\\\"object\\\"==typeof l)for(r=0;r<o.length;r++)a.clean(o[r])}else o&&\\\"object\\\"==typeof o&&a.clean(o)}}},{\\\"./attributes\\\":300,\\\"fast-isnumeric\\\":74,tinycolor2:231}],302:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../plots/cartesian/layout_attributes\\\"),i=t(\\\"../../plots/font_attributes\\\"),o=t(\\\"../../lib/extend\\\").extendFlat;e.exports={thicknessmode:{valType:\\\"enumerated\\\",values:[\\\"fraction\\\",\\\"pixels\\\"],dflt:\\\"pixels\\\"},thickness:{valType:\\\"number\\\",min:0,dflt:30},lenmode:{valType:\\\"enumerated\\\",values:[\\\"fraction\\\",\\\"pixels\\\"],dflt:\\\"fraction\\\"},len:{valType:\\\"number\\\",min:0,dflt:1},x:{valType:\\\"number\\\",dflt:1.02,min:-2,max:3},xanchor:{valType:\\\"enumerated\\\",values:[\\\"left\\\",\\\"center\\\",\\\"right\\\"],dflt:\\\"left\\\"},xpad:{valType:\\\"number\\\",min:0,dflt:10},y:{valType:\\\"number\\\",dflt:.5,min:-2,max:3},yanchor:{valType:\\\"enumerated\\\",values:[\\\"top\\\",\\\"middle\\\",\\\"bottom\\\"],dflt:\\\"middle\\\"},ypad:{valType:\\\"number\\\",min:0,dflt:10},outlinecolor:n.linecolor,outlinewidth:n.linewidth,bordercolor:n.linecolor,borderwidth:{valType:\\\"number\\\",min:0,dflt:0},bgcolor:{valType:\\\"color\\\",dflt:\\\"rgba(0,0,0,0)\\\"},tickmode:n.tickmode,nticks:n.nticks,tick0:n.tick0,dtick:n.dtick,tickvals:n.tickvals,ticktext:n.ticktext,ticks:o({},n.ticks,{dflt:\\\"\\\"}),ticklen:n.ticklen,tickwidth:n.tickwidth,tickcolor:n.tickcolor,showticklabels:n.showticklabels,tickfont:n.tickfont,tickangle:n.tickangle,tickformat:n.tickformat,tickprefix:n.tickprefix,showtickprefix:n.showtickprefix,ticksuffix:n.ticksuffix,showticksuffix:n.showticksuffix,exponentformat:n.exponentformat,showexponent:n.showexponent,title:{valType:\\\"string\\\",dflt:\\\"Click to enter colorscale title\\\"},titlefont:o({},i,{}),titleside:{valType:\\\"enumerated\\\",values:[\\\"right\\\",\\\"top\\\",\\\"bottom\\\"],dflt:\\\"top\\\"}}},{\\\"../../lib/extend\\\":369,\\\"../../plots/cartesian/layout_attributes\\\":400,\\\"../../plots/font_attributes\\\":407}],303:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../lib\\\"),i=t(\\\"../../plots/cartesian/tick_value_defaults\\\"),o=t(\\\"../../plots/cartesian/tick_defaults\\\"),a=t(\\\"./attributes\\\");e.exports=function(t,e,r){function s(t,e){return n.coerce(c,l,a,t,e)}var l=e.colorbar={},c=t.colorbar||{},u=s(\\\"thicknessmode\\\");s(\\\"thickness\\\",\\\"fraction\\\"===u?30/(r.width-r.margin.l-r.margin.r):30);var h=s(\\\"lenmode\\\");s(\\\"len\\\",\\\"fraction\\\"===h?1:r.height-r.margin.t-r.margin.b),s(\\\"x\\\"),s(\\\"xanchor\\\"),s(\\\"xpad\\\"),s(\\\"y\\\"),s(\\\"yanchor\\\"),s(\\\"ypad\\\"),n.noneOrAll(c,l,[\\\"x\\\",\\\"y\\\"]),s(\\\"outlinecolor\\\"),s(\\\"outlinewidth\\\"),s(\\\"bordercolor\\\"),s(\\\"borderwidth\\\"),s(\\\"bgcolor\\\"),i(c,l,s,\\\"linear\\\"),o(c,l,s,\\\"linear\\\",{outerTicks:!1,font:r.font,noHover:!0}),s(\\\"title\\\"),n.coerceFont(s,\\\"titlefont\\\",r.font),s(\\\"titleside\\\")}},{\\\"../../lib\\\":373,\\\"../../plots/cartesian/tick_defaults\\\":405,\\\"../../plots/cartesian/tick_value_defaults\\\":406,\\\"./attributes\\\":302}],304:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"d3\\\"),i=t(\\\"../../plotly\\\"),o=t(\\\"../../plots/plots\\\"),a=t(\\\"../../plots/cartesian/axes\\\"),s=t(\\\"../../plots/cartesian/graph_interact\\\"),l=t(\\\"../../lib\\\"),c=t(\\\"../drawing\\\"),u=t(\\\"../color\\\"),h=t(\\\"../titles\\\"),f=t(\\\"../../plots/cartesian/axis_defaults\\\"),d=t(\\\"../../plots/cartesian/position_defaults\\\"),p=t(\\\"../../plots/cartesian/layout_attributes\\\"),g=t(\\\"./attributes\\\");e.exports=function(t,e){function r(){function g(t,e){return l.coerce(G,Y,p,t,e)}function m(){if(-1!==[\\\"top\\\",\\\"bottom\\\"].indexOf(v.titleside)){var e=Q.select(\\\".cbtitle\\\"),r=e.select(\\\"text\\\"),i=[-v.outlinewidth/2,v.outlinewidth/2],o=e.select(\\\".h\\\"+Y._id+\\\"title-math-group\\\").node(),s=15.6;if(r.node()&&(s=1.3*parseInt(r.style(\\\"font-size\\\"),10)),o?(tt=c.bBox(o).height,tt>s&&(i[1]-=(tt-s)/2)):r.node()&&!r.classed(\\\"js-placeholder\\\")&&(tt=c.bBox(e.node()).height),tt){if(tt+=5,\\\"top\\\"===v.titleside)Y.domain[1]-=tt/b._size.h,i[1]*=-1;else{Y.domain[0]+=tt/b._size.h;var l=Math.max(1,r.selectAll(\\\"tspan.line\\\").size());i[1]+=(1-l)*s}e.attr(\\\"transform\\\",\\\"translate(\\\"+i+\\\")\\\"),Y.setScale()}}Q.selectAll(\\\".cbfills,.cblines,.cbaxis\\\").attr(\\\"transform\\\",\\\"translate(0,\\\"+Math.round(b._size.h*(1-Y.domain[1]))+\\\")\\\");var u=Q.select(\\\".cbfills\\\").selectAll(\\\"rect.cbfill\\\").data(A);u.enter().append(\\\"rect\\\").classed(\\\"cbfill\\\",!0).style(\\\"stroke\\\",\\\"none\\\"),u.exit().remove(),u.each(function(t,e){var r=[0===e?_[0]:(A[e]+A[e-1])/2,e===A.length-1?_[1]:(A[e]+A[e+1])/2].map(Y.c2p).map(Math.round);e!==A.length-1&&(r[1]+=r[1]>r[0]?1:-1),n.select(this).attr({x:B,width:Math.max(R,2),y:n.min(r),height:Math.max(n.max(r)-n.min(r),2)}).style(\\\"fill\\\",M(t))});var h=Q.select(\\\".cblines\\\").selectAll(\\\"path.cbline\\\").data(v.line.color&&v.line.width?w:[]);return h.enter().append(\\\"path\\\").classed(\\\"cbline\\\",!0),h.exit().remove(),h.each(function(t){n.select(this).attr(\\\"d\\\",\\\"M\\\"+B+\\\",\\\"+(Math.round(Y.c2p(t))+v.line.width/2%1)+\\\"h\\\"+R).call(c.lineGroupStyle,v.line.width,k(t),v.line.dash)}),Y._axislayer.selectAll(\\\"g.\\\"+Y._id+\\\"tick,path\\\").remove(),Y._pos=B+R+(v.outlinewidth||0)/2-(\\\"outside\\\"===v.ticks?1:0),Y.side=\\\"right\\\",a.doTicks(t,Y)}function y(){var r=R+v.outlinewidth/2+c.bBox(Y._axislayer.node()).width;if(C=J.select(\\\"text\\\"),C.node()&&!C.classed(\\\"js-placeholder\\\")){var n,i=J.select(\\\".h\\\"+Y._id+\\\"title-math-group\\\").node();n=i&&-1!==[\\\"top\\\",\\\"bottom\\\"].indexOf(v.titleside)?c.bBox(i).width:c.bBox(J.node()).right-B-b._size.l,r=Math.max(r,n)}var a=2*v.xpad+r+v.borderwidth+v.outlinewidth/2,s=q-H;Q.select(\\\".cbbg\\\").attr({x:B-v.xpad-(v.borderwidth+v.outlinewidth)/2,y:H-F,width:Math.max(a,2),height:Math.max(s+2*F,2)}).call(u.fill,v.bgcolor).call(u.stroke,v.bordercolor).style({\\\"stroke-width\\\":v.borderwidth}),Q.selectAll(\\\".cboutline\\\").attr({x:B,y:H+v.ypad+(\\\"top\\\"===v.titleside?tt:0),width:Math.max(R,2),height:Math.max(s-2*v.ypad-tt,2)}).call(u.stroke,v.outlinecolor).style({fill:\\\"None\\\",\\\"stroke-width\\\":v.outlinewidth});var l=({center:.5,right:1}[v.xanchor]||0)*a;Q.attr(\\\"transform\\\",\\\"translate(\\\"+(b._size.l-l)+\\\",\\\"+b._size.t+\\\")\\\"),o.autoMargin(t,e,{x:v.x,y:v.y,l:a*({right:1,center:.5}[v.xanchor]||0),r:a*({left:1,center:.5}[v.xanchor]||0),t:s*({bottom:1,middle:.5}[v.yanchor]||0),b:s*({top:1,middle:.5}[v.yanchor]||0)})}var b=t._fullLayout;if(\\\"function\\\"!=typeof v.fillcolor&&\\\"function\\\"!=typeof v.line.color)return void b._infolayer.selectAll(\\\"g.\\\"+e).remove();var x,_=n.extent((\\\"function\\\"==typeof v.fillcolor?v.fillcolor:v.line.color).domain()),w=[],A=[],k=\\\"function\\\"==typeof v.line.color?v.line.color:function(){return v.line.color},M=\\\"function\\\"==typeof v.fillcolor?v.fillcolor:function(){return v.fillcolor},T=v.levels.end+v.levels.size/100,E=v.levels.size,L=1.001*_[0]-.001*_[1],S=1.001*_[1]-.001*_[0];for(x=v.levels.start;0>(x-T)*E;x+=E)x>L&&S>x&&w.push(x);if(\\\"function\\\"==typeof v.fillcolor)if(v.filllevels)for(T=v.filllevels.end+v.filllevels.size/100,E=v.filllevels.size,x=v.filllevels.start;0>(x-T)*E;x+=E)x>_[0]&&x<_[1]&&A.push(x);else A=w.map(function(t){return t-v.levels.size/2}),A.push(A[A.length-1]+v.levels.size);else v.fillcolor&&\\\"string\\\"==typeof v.fillcolor&&(A=[0]);v.levels.size<0&&(w.reverse(),A.reverse());var C,P=b.height-b.margin.t-b.margin.b,z=b.width-b.margin.l-b.margin.r,R=Math.round(v.thickness*(\\\"fraction\\\"===v.thicknessmode?z:1)),O=R/b._size.w,I=Math.round(v.len*(\\\"fraction\\\"===v.lenmode?P:1)),N=I/b._size.h,j=v.xpad/b._size.w,F=(v.borderwidth+v.outlinewidth)/2,D=v.ypad/b._size.h,B=Math.round(v.x*b._size.w+v.xpad),U=v.x-O*({middle:.5,right:1}[v.xanchor]||0),V=v.y+N*(({top:-.5,bottom:.5}[v.yanchor]||0)-.5),q=Math.round(b._size.h*(1-V)),H=q-I,G={type:\\\"linear\\\",range:_,tickmode:v.tickmode,nticks:v.nticks,tick0:v.tick0,dtick:v.dtick,tickvals:v.tickvals,ticktext:v.ticktext,ticks:v.ticks,ticklen:v.ticklen,tickwidth:v.tickwidth,tickcolor:v.tickcolor,showticklabels:v.showticklabels,tickfont:v.tickfont,tickangle:v.tickangle,tickformat:v.tickformat,exponentformat:v.exponentformat,showexponent:v.showexponent,showtickprefix:v.showtickprefix,tickprefix:v.tickprefix,showticksuffix:v.showticksuffix,ticksuffix:v.ticksuffix,title:v.title,titlefont:v.titlefont,anchor:\\\"free\\\",position:1},Y={},X={letter:\\\"y\\\",font:b.font,noHover:!0};if(f(G,Y,g,X),d(G,Y,g,X),Y._id=\\\"y\\\"+e,Y._td=t,Y.position=v.x+j+O,r.axis=Y,-1!==[\\\"top\\\",\\\"bottom\\\"].indexOf(v.titleside)&&(Y.titleside=v.titleside,Y.titlex=v.x+j,Y.titley=V+(\\\"top\\\"===v.titleside?N-D:D)),v.line.color&&\\\"auto\\\"===v.tickmode){Y.tickmode=\\\"linear\\\",Y.tick0=v.levels.start;var W=v.levels.size,Z=l.constrain((q-H)/50,4,15)+1,$=(_[1]-_[0])/((v.nticks||Z)*W);if($>1){var K=Math.pow(10,Math.floor(Math.log($)/Math.LN10));W*=K*l.roundUp($/K,[2,5,10]),(Math.abs(v.levels.start)/v.levels.size+1e-6)%1<2e-6&&(Y.tick0=0)}Y.dtick=W}Y.domain=[V+D,V+N-D],Y.setScale();var Q=b._infolayer.selectAll(\\\"g.\\\"+e).data([0]);Q.enter().append(\\\"g\\\").classed(e,!0).each(function(){var t=n.select(this);t.append(\\\"rect\\\").classed(\\\"cbbg\\\",!0),t.append(\\\"g\\\").classed(\\\"cbfills\\\",!0),t.append(\\\"g\\\").classed(\\\"cblines\\\",!0),t.append(\\\"g\\\").classed(\\\"cbaxis\\\",!0).classed(\\\"crisp\\\",!0),t.append(\\\"g\\\").classed(\\\"cbtitleunshift\\\",!0).append(\\\"g\\\").classed(\\\"cbtitle\\\",!0),t.append(\\\"rect\\\").classed(\\\"cboutline\\\",!0)}),Q.attr(\\\"transform\\\",\\\"translate(\\\"+Math.round(b._size.l)+\\\",\\\"+Math.round(b._size.t)+\\\")\\\");var J=Q.select(\\\".cbtitleunshift\\\").attr(\\\"transform\\\",\\\"translate(-\\\"+Math.round(b._size.l)+\\\",-\\\"+Math.round(b._size.t)+\\\")\\\");Y._axislayer=Q.select(\\\".cbaxis\\\");var tt=0;-1!==[\\\"top\\\",\\\"bottom\\\"].indexOf(v.titleside)&&h.draw(t,Y._id+\\\"title\\\");var et=l.syncOrAsync([o.previousPromises,m,o.previousPromises,y],t);if(et&&et.then&&(t._promises||[]).push(et),t._context.editable){var rt,nt,it;s.dragElement({element:Q.node(),prepFn:function(){rt=Q.attr(\\\"transform\\\"),s.setCursor(Q)},moveFn:function(e,r){var n=t._fullLayout._size;Q.attr(\\\"transform\\\",rt+\\\" translate(\\\"+e+\\\",\\\"+r+\\\")\\\"),nt=s.dragAlign(U+e/n.w,O,0,1,v.xanchor),it=s.dragAlign(V-r/n.h,N,0,1,v.yanchor);var i=s.dragCursors(nt,it,v.xanchor,v.yanchor);s.setCursor(Q,i)},doneFn:function(r){if(s.setCursor(Q),r&&void 0!==nt&&void 0!==it){var n,o=e.substr(2);t._fullData.some(function(t){return t.uid===o?(n=t.index,!0):void 0}),i.restyle(t,{\\\"colorbar.x\\\":nt,\\\"colorbar.y\\\":it},n)}}})}return et}var v={};return Object.keys(g).forEach(function(t){v[t]=null}),v.fillcolor=null,v.line={color:null,width:null,dash:null},v.levels={start:null,end:null,size:null},v.filllevels=null,Object.keys(v).forEach(function(t){r[t]=function(e){return arguments.length?(v[t]=l.isPlainObject(v[t])?l.extendFlat(v[t],e):e,r):v[t]}}),r.options=function(t){return Object.keys(t).forEach(function(e){\\\"function\\\"==typeof r[e]&&r[e](t[e])}),r},r._opts=v,r}},{\\\"../../lib\\\":373,\\\"../../plotly\\\":390,\\\"../../plots/cartesian/axes\\\":393,\\\"../../plots/cartesian/axis_defaults\\\":394,\\\"../../plots/cartesian/graph_interact\\\":398,\\\"../../plots/cartesian/layout_attributes\\\":400,\\\"../../plots/cartesian/position_defaults\\\":402,\\\"../../plots/plots\\\":437,\\\"../color\\\":301,\\\"../drawing\\\":319,\\\"../titles\\\":356,\\\"./attributes\\\":302,d3:70}],305:[function(t,e,r){\\\"use strict\\\";e.exports=function(t){return\\\"object\\\"==typeof t.colorbar&&null!==t.colorbar}},{}],306:[function(t,e,r){\\\"use strict\\\";r.attributes=t(\\\"./attributes\\\"),r.supplyDefaults=t(\\\"./defaults\\\"),r.draw=t(\\\"./draw\\\"),r.hasColorbar=t(\\\"./has_colorbar\\\")},{\\\"./attributes\\\":302,\\\"./defaults\\\":303,\\\"./draw\\\":304,\\\"./has_colorbar\\\":305}],307:[function(t,e,r){\\\"use strict\\\";e.exports={zauto:{valType:\\\"boolean\\\",dflt:!0},zmin:{valType:\\\"number\\\",dflt:null},zmax:{valType:\\\"number\\\",dflt:null},colorscale:{valType:\\\"colorscale\\\"},autocolorscale:{valType:\\\"boolean\\\",dflt:!0},reversescale:{valType:\\\"boolean\\\",dflt:!1},showscale:{valType:\\\"boolean\\\",dflt:!0},_deprecated:{scl:{valType:\\\"colorscale\\\"},reversescl:{valType:\\\"boolean\\\"}}}},{}],308:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../lib\\\"),i=t(\\\"./scales\\\"),o=t(\\\"./flip_scale\\\");e.exports=function(t,e,r,a){var s,l;r?(s=n.nestedProperty(t,r).get(),l=n.nestedProperty(t._input,r).get()):(s=t,l=t._input);var c=s[a+\\\"auto\\\"],u=s[a+\\\"min\\\"],h=s[a+\\\"max\\\"],f=s.colorscale;c===!1&&void 0!==u||(u=n.aggNums(Math.min,null,e)),c===!1&&void 0!==h||(h=n.aggNums(Math.max,null,e)),u===h&&(u-=.5,h+=.5),s[a+\\\"min\\\"]=u,s[a+\\\"max\\\"]=h,l[a+\\\"min\\\"]=u,l[a+\\\"max\\\"]=h,s.autocolorscale&&(f=0>u*h?i.RdBu:u>=0?i.Reds:i.Blues,l.colorscale=f,s.reversescale&&(f=o(f)),s.colorscale=f)}},{\\\"../../lib\\\":373,\\\"./flip_scale\\\":311,\\\"./scales\\\":318}],309:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"./scales\\\");e.exports=n.RdBu},{\\\"./scales\\\":318}],310:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"fast-isnumeric\\\"),i=t(\\\"../../lib\\\"),o=t(\\\"../colorbar/has_colorbar\\\"),a=t(\\\"../colorbar/defaults\\\"),s=t(\\\"./is_valid_scale\\\"),l=t(\\\"./flip_scale\\\");e.exports=function(t,e,r,c,u){var h=u.prefix,f=u.cLetter,d=h.slice(0,h.length-1),p=h?i.nestedProperty(t,d).get()||{}:t,g=h?i.nestedProperty(e,d).get()||{}:e,v=p[f+\\\"min\\\"],m=p[f+\\\"max\\\"],y=p.colorscale,b=n(v)&&n(m)&&m>v;c(h+f+\\\"auto\\\",!b),c(h+f+\\\"min\\\"),c(h+f+\\\"max\\\");var x;void 0!==y&&(x=!s(y)),c(h+\\\"autocolorscale\\\",x);var _=c(h+\\\"colorscale\\\"),w=c(h+\\\"reversescale\\\");if(w&&(g.colorscale=l(_)),\\\"marker.line.\\\"!==h){var A;h&&(A=o(p));var k=c(h+\\\"showscale\\\",A);k&&a(p,g,r)}}},{\\\"../../lib\\\":373,\\\"../colorbar/defaults\\\":303,\\\"../colorbar/has_colorbar\\\":305,\\\"./flip_scale\\\":311,\\\"./is_valid_scale\\\":315,\\\"fast-isnumeric\\\":74}],311:[function(t,e,r){\\\"use strict\\\";e.exports=function(t){for(var e,r=t.length,n=new Array(r),i=r-1,o=0;i>=0;i--,o++)e=t[i],n[o]=[1-e[0],e[1]];return n}},{}],312:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"./scales\\\"),i=t(\\\"./default_scale\\\"),o=t(\\\"./is_valid_scale_array\\\");e.exports=function(t,e){function r(){try{t=n[t]||JSON.parse(t)}catch(r){t=e}}return e||(e=i),t?(\\\"string\\\"==typeof t&&(r(),\\\"string\\\"==typeof t&&r()),o(t)?t:e):e}},{\\\"./default_scale\\\":309,\\\"./is_valid_scale_array\\\":316,\\\"./scales\\\":318}],313:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"fast-isnumeric\\\"),i=t(\\\"../../lib\\\"),o=t(\\\"./is_valid_scale\\\");e.exports=function(t,e){var r=e?i.nestedProperty(t,e).get()||{}:t,a=r.color,s=!1;if(Array.isArray(a))for(var l=0;l<a.length;l++)if(n(a[l])){s=!0;break}return\\\"object\\\"==typeof r&&null!==r&&(s||r.showscale===!0||n(r.cmin)&&n(r.cmax)||o(r.colorscale)||\\\"object\\\"==typeof r.colorbar&&null!==r.colorbar)}},{\\\"../../lib\\\":373,\\\"./is_valid_scale\\\":315,\\\"fast-isnumeric\\\":74}],314:[function(t,e,r){\\\"use strict\\\";r.scales=t(\\\"./scales\\\"),r.defaultScale=t(\\\"./default_scale\\\"),r.attributes=t(\\\"./attributes\\\"),r.handleDefaults=t(\\\"./defaults\\\"),r.calc=t(\\\"./calc\\\"),r.hasColorscale=t(\\\"./has_colorscale\\\"),r.isValidScale=t(\\\"./is_valid_scale\\\"),r.getScale=t(\\\"./get_scale\\\"),r.flipScale=t(\\\"./flip_scale\\\"),r.makeScaleFunction=t(\\\"./make_scale_function\\\")},{\\\"./attributes\\\":307,\\\"./calc\\\":308,\\\"./default_scale\\\":309,\\\"./defaults\\\":310,\\\"./flip_scale\\\":311,\\\"./get_scale\\\":312,\\\"./has_colorscale\\\":313,\\\"./is_valid_scale\\\":315,\\\"./make_scale_function\\\":317,\\\"./scales\\\":318}],315:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"./scales\\\"),i=t(\\\"./is_valid_scale_array\\\");e.exports=function(t){return void 0!==n[t]?!0:i(t)}},{\\\"./is_valid_scale_array\\\":316,\\\"./scales\\\":318}],316:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"tinycolor2\\\");e.exports=function(t){var e,r=!0,i=0;if(Array.isArray(t)){if(0!==+t[0][0]||1!==+t[t.length-1][0])return!1;for(var o=0;o<t.length;o++){if(e=t[o],2!==e.length||+e[0]<i||!n(e[1]).isValid()){r=!1;break}i=+e[0]}return r}return!1}},{tinycolor2:231}],317:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"d3\\\"),i=t(\\\"tinycolor2\\\"),o=t(\\\"fast-isnumeric\\\"),a=t(\\\"../color\\\");e.exports=function(t,e,r){for(var s,l=t.length,c=new Array(l),u=new Array(l),h=0;l>h;h++)s=t[h],c[h]=e+s[0]*(r-e),u[h]=s[1];var f=n.scale.linear().domain(c).interpolate(n.interpolateRgb).range(u);return function(t){return o(t)?f(t):i(t).isValid()?t:a.defaultLine}}},{\\\"../color\\\":301,d3:70,\\\"fast-isnumeric\\\":74,tinycolor2:231}],318:[function(t,e,r){\\\"use strict\\\";e.exports={Greys:[[0,\\\"rgb(0,0,0)\\\"],[1,\\\"rgb(255,255,255)\\\"]],YlGnBu:[[0,\\\"rgb(8,29,88)\\\"],[.125,\\\"rgb(37,52,148)\\\"],[.25,\\\"rgb(34,94,168)\\\"],[.375,\\\"rgb(29,145,192)\\\"],[.5,\\\"rgb(65,182,196)\\\"],[.625,\\\"rgb(127,205,187)\\\"],[.75,\\\"rgb(199,233,180)\\\"],[.875,\\\"rgb(237,248,217)\\\"],[1,\\\"rgb(255,255,217)\\\"]],Greens:[[0,\\\"rgb(0,68,27)\\\"],[.125,\\\"rgb(0,109,44)\\\"],[.25,\\\"rgb(35,139,69)\\\"],[.375,\\\"rgb(65,171,93)\\\"],[.5,\\\"rgb(116,196,118)\\\"],[.625,\\\"rgb(161,217,155)\\\"],[.75,\\\"rgb(199,233,192)\\\"],[.875,\\\"rgb(229,245,224)\\\"],[1,\\\"rgb(247,252,245)\\\"]],YlOrRd:[[0,\\\"rgb(128,0,38)\\\"],[.125,\\\"rgb(189,0,38)\\\"],[.25,\\\"rgb(227,26,28)\\\"],[.375,\\\"rgb(252,78,42)\\\"],[.5,\\\"rgb(253,141,60)\\\"],[.625,\\\"rgb(254,178,76)\\\"],[.75,\\\"rgb(254,217,118)\\\"],[.875,\\\"rgb(255,237,160)\\\"],[1,\\\"rgb(255,255,204)\\\"]],Bluered:[[0,\\\"rgb(0,0,255)\\\"],[1,\\\"rgb(255,0,0)\\\"]],RdBu:[[0,\\\"rgb(5,10,172)\\\"],[.35,\\\"rgb(106,137,247)\\\"],[.5,\\\"rgb(190,190,190)\\\"],[.6,\\\"rgb(220,170,132)\\\"],[.7,\\\"rgb(230,145,90)\\\"],[1,\\\"rgb(178,10,28)\\\"]],Reds:[[0,\\\"rgb(220,220,220)\\\"],[.2,\\\"rgb(245,195,157)\\\"],[.4,\\\"rgb(245,160,105)\\\"],[1,\\\"rgb(178,10,28)\\\"]],Blues:[[0,\\\"rgb(5,10,172)\\\"],[.35,\\\"rgb(40,60,190)\\\"],[.5,\\\"rgb(70,100,245)\\\"],[.6,\\\"rgb(90,120,245)\\\"],[.7,\\\"rgb(106,137,247)\\\"],[1,\\\"rgb(220,220,220)\\\"]],Picnic:[[0,\\\"rgb(0,0,255)\\\"],[.1,\\\"rgb(51,153,255)\\\"],[.2,\\\"rgb(102,204,255)\\\"],[.3,\\\"rgb(153,204,255)\\\"],[.4,\\\"rgb(204,204,255)\\\"],[.5,\\\"rgb(255,255,255)\\\"],[.6,\\\"rgb(255,204,255)\\\"],[.7,\\\"rgb(255,153,255)\\\"],[.8,\\\"rgb(255,102,204)\\\"],[.9,\\\"rgb(255,102,102)\\\"],[1,\\\"rgb(255,0,0)\\\"]],Rainbow:[[0,\\\"rgb(150,0,90)\\\"],[.125,\\\"rgb(0,0,200)\\\"],[.25,\\\"rgb(0,25,255)\\\"],[.375,\\\"rgb(0,152,255)\\\"],[.5,\\\"rgb(44,255,150)\\\"],[.625,\\\"rgb(151,255,0)\\\"],[.75,\\\"rgb(255,234,0)\\\"],[.875,\\\"rgb(255,111,0)\\\"],[1,\\\"rgb(255,0,0)\\\"]],Portland:[[0,\\\"rgb(12,51,131)\\\"],[.25,\\\"rgb(10,136,186)\\\"],[.5,\\\"rgb(242,211,56)\\\"],[.75,\\\"rgb(242,143,56)\\\"],[1,\\\"rgb(217,30,30)\\\"]],Jet:[[0,\\\"rgb(0,0,131)\\\"],[.125,\\\"rgb(0,60,170)\\\"],[.375,\\\"rgb(5,255,255)\\\"],[.625,\\\"rgb(255,255,0)\\\"],[.875,\\\"rgb(250,0,0)\\\"],[1,\\\"rgb(128,0,0)\\\"]],Hot:[[0,\\\"rgb(0,0,0)\\\"],[.3,\\\"rgb(230,0,0)\\\"],[.6,\\\"rgb(255,210,0)\\\"],[1,\\\"rgb(255,255,255)\\\"]],Blackbody:[[0,\\\"rgb(0,0,0)\\\"],[.2,\\\"rgb(230,0,0)\\\"],[.4,\\\"rgb(230,210,0)\\\"],[.7,\\\"rgb(255,255,255)\\\"],[1,\\\"rgb(160,200,255)\\\"]],Earth:[[0,\\\"rgb(0,0,130)\\\"],[.1,\\\"rgb(0,180,180)\\\"],[.2,\\\"rgb(40,210,40)\\\"],[.4,\\\"rgb(230,230,50)\\\"],[.6,\\\"rgb(120,70,20)\\\"],[1,\\\"rgb(255,255,255)\\\"]],Electric:[[0,\\\"rgb(0,0,0)\\\"],[.15,\\\"rgb(30,0,100)\\\"],[.4,\\\"rgb(120,0,100)\\\"],[.6,\\\"rgb(160,90,0)\\\"],[.8,\\\"rgb(230,200,0)\\\"],[1,\\\"rgb(255,250,220)\\\"]],Viridis:[[0,\\\"#440154\\\"],[.06274509803921569,\\\"#48186a\\\"],[.12549019607843137,\\\"#472d7b\\\"],[.18823529411764706,\\\"#424086\\\"],[.25098039215686274,\\\"#3b528b\\\"],[.3137254901960784,\\\"#33638d\\\"],[.3764705882352941,\\\"#2c728e\\\"],[.4392156862745098,\\\"#26828e\\\"],[.5019607843137255,\\\"#21918c\\\"],[.5647058823529412,\\\"#1fa088\\\"],[.6274509803921569,\\\"#28ae80\\\"],[.6901960784313725,\\\"#3fbc73\\\"],[.7529411764705882,\\\"#5ec962\\\"],[.8156862745098039,\\\"#84d44b\\\"],[.8784313725490196,\\\"#addc30\\\"],[.9411764705882353,\\\"#d8e219\\\"],[1,\\\"#fde725\\\"]]}},{}],319:[function(t,e,r){\\\"use strict\\\";function n(t,e,r,n){var o=t[0]-e[0],a=t[1]-e[1],s=r[0]-e[0],l=r[1]-e[1],c=Math.pow(o*o+a*a,x/2),u=Math.pow(s*s+l*l,x/2),h=(u*u*o-c*c*s)*n,f=(u*u*a-c*c*l)*n,d=3*u*(c+u),p=3*c*(c+u);return[[i.round(e[0]+(d&&h/d),2),i.round(e[1]+(d&&f/d),2)],[i.round(e[0]-(p&&h/p),2),i.round(e[1]-(p&&f/p),2)]]}var i=t(\\\"d3\\\"),o=t(\\\"fast-isnumeric\\\"),a=t(\\\"../../plots/plots\\\"),s=t(\\\"../color\\\"),l=t(\\\"../colorscale\\\"),c=t(\\\"../../lib\\\"),u=t(\\\"../../lib/svg_text_utils\\\"),h=t(\\\"../../constants/xmlns_namespaces\\\"),f=t(\\\"../../traces/scatter/subtypes\\\"),d=t(\\\"../../traces/scatter/make_bubble_size_func\\\"),p=e.exports={};p.font=function(t,e,r,n){e&&e.family&&(n=e.color,r=e.size,e=e.family),e&&t.style(\\\"font-family\\\",e),r+1&&t.style(\\\"font-size\\\",r+\\\"px\\\"),n&&t.call(s.fill,n)},p.setPosition=function(t,e,r){t.attr(\\\"x\\\",e).attr(\\\"y\\\",r)},p.setSize=function(t,e,r){t.attr(\\\"width\\\",e).attr(\\\"height\\\",r)},p.setRect=function(t,e,r,n,i){t.call(p.setPosition,e,r).call(p.setSize,n,i)},p.translatePoints=function(t,e,r){t.each(function(t){var n=t.xp||e.c2p(t.x),a=t.yp||r.c2p(t.y),s=i.select(this);o(n)&&o(a)?\\\"text\\\"===this.nodeName?s.attr(\\\"x\\\",n).attr(\\\"y\\\",a):s.attr(\\\"transform\\\",\\\"translate(\\\"+n+\\\",\\\"+a+\\\")\\\"):s.remove()})},p.getPx=function(t,e){return Number(t.style(e).replace(/px$/,\\\"\\\"))},p.crispRound=function(t,e,r){return e&&o(e)?t._context.staticPlot?e:1>e?1:Math.round(e):r||0},p.lineGroupStyle=function(t,e,r,n){t.style(\\\"fill\\\",\\\"none\\\").each(function(t){var o=(((t||[])[0]||{}).trace||{}).line||{},a=e||o.width||0,l=n||o.dash||\\\"\\\";\\n\",\n       \"i.select(this).call(s.stroke,r||o.color).call(p.dashLine,l,a)})},p.dashLine=function(t,e,r){var n=Math.max(r,3);\\\"solid\\\"===e?e=\\\"\\\":\\\"dot\\\"===e?e=n+\\\"px,\\\"+n+\\\"px\\\":\\\"dash\\\"===e?e=3*n+\\\"px,\\\"+3*n+\\\"px\\\":\\\"longdash\\\"===e?e=5*n+\\\"px,\\\"+5*n+\\\"px\\\":\\\"dashdot\\\"===e?e=3*n+\\\"px,\\\"+n+\\\"px,\\\"+n+\\\"px,\\\"+n+\\\"px\\\":\\\"longdashdot\\\"===e&&(e=5*n+\\\"px,\\\"+2*n+\\\"px,\\\"+n+\\\"px,\\\"+2*n+\\\"px\\\"),t.style({\\\"stroke-dasharray\\\":e,\\\"stroke-width\\\":r+\\\"px\\\"})},p.fillGroupStyle=function(t){t.style(\\\"stroke-width\\\",0).each(function(e){var r=i.select(this);try{r.call(s.fill,e[0].trace.fillcolor)}catch(n){console.log(n,t),r.remove()}})};var g=t(\\\"./symbol_defs\\\");p.symbolNames=[],p.symbolFuncs=[],p.symbolNeedLines={},p.symbolNoDot={},p.symbolList=[],Object.keys(g).forEach(function(t){var e=g[t];p.symbolList=p.symbolList.concat([e.n,t,e.n+100,t+\\\"-open\\\"]),p.symbolNames[e.n]=t,p.symbolFuncs[e.n]=e.f,e.needLine&&(p.symbolNeedLines[e.n]=!0),e.noDot?p.symbolNoDot[e.n]=!0:p.symbolList=p.symbolList.concat([e.n+200,t+\\\"-dot\\\",e.n+300,t+\\\"-open-dot\\\"])});var v=p.symbolNames.length,m=\\\"M0,0.5L0.5,0L0,-0.5L-0.5,0Z\\\";p.symbolNumber=function(t){if(\\\"string\\\"==typeof t){var e=0;t.indexOf(\\\"-open\\\")>0&&(e=100,t=t.replace(\\\"-open\\\",\\\"\\\")),t.indexOf(\\\"-dot\\\")>0&&(e+=200,t=t.replace(\\\"-dot\\\",\\\"\\\")),t=p.symbolNames.indexOf(t),t>=0&&(t+=e)}return t%100>=v||t>=400?0:Math.floor(Math.max(t,0))},p.pointStyle=function(t,e){if(t.size()){var r=e.marker,n=r.line;if(a.traceIs(e,\\\"symbols\\\")){var o=d(e);t.attr(\\\"d\\\",function(t){var n;n=\\\"various\\\"===t.ms||\\\"various\\\"===r.size?3:f.isBubble(e)?o(t.ms):(r.size||6)/2,t.mrc=n;var i=p.symbolNumber(t.mx||r.symbol)||0,a=i%100;return t.om=i%200>=100,p.symbolFuncs[a](n)+(i>=200?m:\\\"\\\")}).style(\\\"opacity\\\",function(t){return(t.mo+1||r.opacity+1)-1})}var l=(e._input||{}).marker||{},c=p.tryColorscale(r,l,\\\"\\\"),u=p.tryColorscale(r,l,\\\"line.\\\");t.each(function(t){var e,o,a;t.so?(a=n.outlierwidth,o=n.outliercolor,e=r.outliercolor):(a=(t.mlw+1||n.width+1||(t.trace?t.trace.marker.line.width:0)+1)-1,o=\\\"mlc\\\"in t?t.mlcc=u(t.mlc):Array.isArray(n.color)?s.defaultLine:n.color,e=\\\"mc\\\"in t?t.mcc=c(t.mc):Array.isArray(r.color)?s.defaultLine:r.color||\\\"rgba(0,0,0,0)\\\");var l=i.select(this);t.om?l.call(s.stroke,e).style({\\\"stroke-width\\\":(a||1)+\\\"px\\\",fill:\\\"none\\\"}):(l.style(\\\"stroke-width\\\",a+\\\"px\\\").call(s.fill,e),a&&l.call(s.stroke,o))})}},p.tryColorscale=function(t,e,r){var n=c.nestedProperty(t,r+\\\"color\\\").get(),i=c.nestedProperty(t,r+\\\"colorscale\\\").get(),a=c.nestedProperty(t,r+\\\"cauto\\\").get(),s=c.nestedProperty(t,r+\\\"cmin\\\"),u=c.nestedProperty(t,r+\\\"cmax\\\"),h=s.get(),f=u.get();return i&&Array.isArray(n)?(!a&&o(h)&&o(f)||(h=1/0,f=-(1/0),n.forEach(function(t){o(t)&&(h>t&&(h=+t),t>f&&(f=+t))}),h>f&&(h=0,f=1),s.set(h),u.set(f),c.nestedProperty(e,r+\\\"cmin\\\").set(h),c.nestedProperty(e,r+\\\"cmax\\\").set(f)),l.makeScaleFunction(i,h,f)):c.identity};var y={start:1,end:-1,middle:0,bottom:1,top:-1},b=1.3;p.textPointStyle=function(t,e){t.each(function(t){var r=i.select(this),n=t.tx||e.text;if(!n||Array.isArray(n))return void r.remove();var a=t.tp||e.textposition,s=-1!==a.indexOf(\\\"top\\\")?\\\"top\\\":-1!==a.indexOf(\\\"bottom\\\")?\\\"bottom\\\":\\\"middle\\\",l=-1!==a.indexOf(\\\"left\\\")?\\\"end\\\":-1!==a.indexOf(\\\"right\\\")?\\\"start\\\":\\\"middle\\\",c=t.ts||e.textfont.size,h=t.mrc?t.mrc/.8+1:0;c=o(c)&&c>0?c:0,r.call(p.font,t.tf||e.textfont.family,c,t.tc||e.textfont.color).attr(\\\"text-anchor\\\",l).text(n).call(u.convertToTspans);var f=i.select(this.parentNode),d=r.selectAll(\\\"tspan.line\\\"),g=((d[0].length||1)-1)*b+1,v=y[l]*h,m=.75*c+y[s]*h+(y[s]-1)*g*c/2;f.attr(\\\"transform\\\",\\\"translate(\\\"+v+\\\",\\\"+m+\\\")\\\"),g>1&&d.attr({x:r.attr(\\\"x\\\"),y:r.attr(\\\"y\\\")})})};var x=.5;p.smoothopen=function(t,e){if(t.length<3)return\\\"M\\\"+t.join(\\\"L\\\");var r,i=\\\"M\\\"+t[0],o=[];for(r=1;r<t.length-1;r++)o.push(n(t[r-1],t[r],t[r+1],e));for(i+=\\\"Q\\\"+o[0][0]+\\\" \\\"+t[1],r=2;r<t.length-1;r++)i+=\\\"C\\\"+o[r-2][1]+\\\" \\\"+o[r-1][0]+\\\" \\\"+t[r];return i+=\\\"Q\\\"+o[t.length-3][1]+\\\" \\\"+t[t.length-1]},p.smoothclosed=function(t,e){if(t.length<3)return\\\"M\\\"+t.join(\\\"L\\\")+\\\"Z\\\";var r,i=\\\"M\\\"+t[0],o=t.length-1,a=[n(t[o],t[0],t[1],e)];for(r=1;o>r;r++)a.push(n(t[r-1],t[r],t[r+1],e));for(a.push(n(t[o-1],t[o],t[0],e)),r=1;o>=r;r++)i+=\\\"C\\\"+a[r-1][1]+\\\" \\\"+a[r][0]+\\\" \\\"+t[r];return i+=\\\"C\\\"+a[o][1]+\\\" \\\"+a[0][0]+\\\" \\\"+t[0]+\\\"Z\\\"};var _={hv:function(t,e){return\\\"H\\\"+i.round(e[0],2)+\\\"V\\\"+i.round(e[1],2)},vh:function(t,e){return\\\"V\\\"+i.round(e[1],2)+\\\"H\\\"+i.round(e[0],2)},hvh:function(t,e){return\\\"H\\\"+i.round((t[0]+e[0])/2,2)+\\\"V\\\"+i.round(e[1],2)+\\\"H\\\"+i.round(e[0],2)},vhv:function(t,e){return\\\"V\\\"+i.round((t[1]+e[1])/2,2)+\\\"H\\\"+i.round(e[0],2)+\\\"V\\\"+i.round(e[1],2)}},w=function(t,e){return\\\"L\\\"+i.round(e[0],2)+\\\",\\\"+i.round(e[1],2)};p.steps=function(t){var e=_[t]||w;return function(t){for(var r=\\\"M\\\"+i.round(t[0][0],2)+\\\",\\\"+i.round(t[0][1],2),n=1;n<t.length;n++)r+=e(t[n-1],t[n]);return r}},p.makeTester=function(t){var e=i.select(\\\"body\\\").selectAll(\\\"#js-plotly-tester\\\").data([0]);e.enter().append(\\\"svg\\\").attr(\\\"id\\\",\\\"js-plotly-tester\\\").attr(h.svgAttrs).style({position:\\\"absolute\\\",left:\\\"-10000px\\\",top:\\\"-10000px\\\",width:\\\"9000px\\\",height:\\\"9000px\\\"});var r=e.selectAll(\\\".js-reference-point\\\").data([0]);r.enter().append(\\\"path\\\").classed(\\\"js-reference-point\\\",!0).attr(\\\"d\\\",\\\"M0,0H1V1H0Z\\\").style({\\\"stroke-width\\\":0,fill:\\\"black\\\"}),e.node()._cache||(e.node()._cache={}),t._tester=e,t._testref=r};var A=[],k=1e4;p.bBox=function(t){var e=t.attributes[\\\"data-bb\\\"];if(e&&e.value)return c.extendFlat({},A[e.value]);var r=i.select(\\\"#js-plotly-tester\\\"),n=r.node(),o=t.cloneNode(!0);n.appendChild(o),i.select(o).attr({x:0,y:0,transform:\\\"\\\"});var a=o.getBoundingClientRect(),s=r.select(\\\".js-reference-point\\\").node().getBoundingClientRect();n.removeChild(o);var l={height:a.height,width:a.width,left:a.left-s.left,top:a.top-s.top,right:a.right-s.left,bottom:a.bottom-s.top};return A.length>=k&&(i.selectAll(\\\"[data-bb]\\\").attr(\\\"data-bb\\\",null),A=[]),t.setAttribute(\\\"data-bb\\\",A.length),A.push(l),c.extendFlat({},l)},p.setClipUrl=function(t,e){if(!e)return void t.attr(\\\"clip-path\\\",null);var r=\\\"#\\\"+e,n=i.select(\\\"base\\\");n.size()&&n.attr(\\\"href\\\")&&(r=window.location.href+r),t.attr(\\\"clip-path\\\",\\\"url(\\\"+r+\\\")\\\")}},{\\\"../../constants/xmlns_namespaces\\\":362,\\\"../../lib\\\":373,\\\"../../lib/svg_text_utils\\\":384,\\\"../../plots/plots\\\":437,\\\"../../traces/scatter/make_bubble_size_func\\\":540,\\\"../../traces/scatter/subtypes\\\":546,\\\"../color\\\":301,\\\"../colorscale\\\":314,\\\"./symbol_defs\\\":320,d3:70,\\\"fast-isnumeric\\\":74}],320:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"d3\\\");e.exports={circle:{n:0,f:function(t){var e=n.round(t,2);return\\\"M\\\"+e+\\\",0A\\\"+e+\\\",\\\"+e+\\\" 0 1,1 0,-\\\"+e+\\\"A\\\"+e+\\\",\\\"+e+\\\" 0 0,1 \\\"+e+\\\",0Z\\\"}},square:{n:1,f:function(t){var e=n.round(t,2);return\\\"M\\\"+e+\\\",\\\"+e+\\\"H-\\\"+e+\\\"V-\\\"+e+\\\"H\\\"+e+\\\"Z\\\"}},diamond:{n:2,f:function(t){var e=n.round(1.3*t,2);return\\\"M\\\"+e+\\\",0L0,\\\"+e+\\\"L-\\\"+e+\\\",0L0,-\\\"+e+\\\"Z\\\"}},cross:{n:3,f:function(t){var e=n.round(.4*t,2),r=n.round(1.2*t,2);return\\\"M\\\"+r+\\\",\\\"+e+\\\"H\\\"+e+\\\"V\\\"+r+\\\"H-\\\"+e+\\\"V\\\"+e+\\\"H-\\\"+r+\\\"V-\\\"+e+\\\"H-\\\"+e+\\\"V-\\\"+r+\\\"H\\\"+e+\\\"V-\\\"+e+\\\"H\\\"+r+\\\"Z\\\"}},x:{n:4,f:function(t){var e=n.round(.8*t/Math.sqrt(2),2),r=\\\"l\\\"+e+\\\",\\\"+e,i=\\\"l\\\"+e+\\\",-\\\"+e,o=\\\"l-\\\"+e+\\\",-\\\"+e,a=\\\"l-\\\"+e+\\\",\\\"+e;return\\\"M0,\\\"+e+r+i+o+i+o+a+o+a+r+a+r+\\\"Z\\\"}},\\\"triangle-up\\\":{n:5,f:function(t){var e=n.round(2*t/Math.sqrt(3),2),r=n.round(t/2,2),i=n.round(t,2);return\\\"M-\\\"+e+\\\",\\\"+r+\\\"H\\\"+e+\\\"L0,-\\\"+i+\\\"Z\\\"}},\\\"triangle-down\\\":{n:6,f:function(t){var e=n.round(2*t/Math.sqrt(3),2),r=n.round(t/2,2),i=n.round(t,2);return\\\"M-\\\"+e+\\\",-\\\"+r+\\\"H\\\"+e+\\\"L0,\\\"+i+\\\"Z\\\"}},\\\"triangle-left\\\":{n:7,f:function(t){var e=n.round(2*t/Math.sqrt(3),2),r=n.round(t/2,2),i=n.round(t,2);return\\\"M\\\"+r+\\\",-\\\"+e+\\\"V\\\"+e+\\\"L-\\\"+i+\\\",0Z\\\"}},\\\"triangle-right\\\":{n:8,f:function(t){var e=n.round(2*t/Math.sqrt(3),2),r=n.round(t/2,2),i=n.round(t,2);return\\\"M-\\\"+r+\\\",-\\\"+e+\\\"V\\\"+e+\\\"L\\\"+i+\\\",0Z\\\"}},\\\"triangle-ne\\\":{n:9,f:function(t){var e=n.round(.6*t,2),r=n.round(1.2*t,2);return\\\"M-\\\"+r+\\\",-\\\"+e+\\\"H\\\"+e+\\\"V\\\"+r+\\\"Z\\\"}},\\\"triangle-se\\\":{n:10,f:function(t){var e=n.round(.6*t,2),r=n.round(1.2*t,2);return\\\"M\\\"+e+\\\",-\\\"+r+\\\"V\\\"+e+\\\"H-\\\"+r+\\\"Z\\\"}},\\\"triangle-sw\\\":{n:11,f:function(t){var e=n.round(.6*t,2),r=n.round(1.2*t,2);return\\\"M\\\"+r+\\\",\\\"+e+\\\"H-\\\"+e+\\\"V-\\\"+r+\\\"Z\\\"}},\\\"triangle-nw\\\":{n:12,f:function(t){var e=n.round(.6*t,2),r=n.round(1.2*t,2);return\\\"M-\\\"+e+\\\",\\\"+r+\\\"V-\\\"+e+\\\"H\\\"+r+\\\"Z\\\"}},pentagon:{n:13,f:function(t){var e=n.round(.951*t,2),r=n.round(.588*t,2),i=n.round(-t,2),o=n.round(t*-.309,2),a=n.round(.809*t,2);return\\\"M\\\"+e+\\\",\\\"+o+\\\"L\\\"+r+\\\",\\\"+a+\\\"H-\\\"+r+\\\"L-\\\"+e+\\\",\\\"+o+\\\"L0,\\\"+i+\\\"Z\\\"}},hexagon:{n:14,f:function(t){var e=n.round(t,2),r=n.round(t/2,2),i=n.round(t*Math.sqrt(3)/2,2);return\\\"M\\\"+i+\\\",-\\\"+r+\\\"V\\\"+r+\\\"L0,\\\"+e+\\\"L-\\\"+i+\\\",\\\"+r+\\\"V-\\\"+r+\\\"L0,-\\\"+e+\\\"Z\\\"}},hexagon2:{n:15,f:function(t){var e=n.round(t,2),r=n.round(t/2,2),i=n.round(t*Math.sqrt(3)/2,2);return\\\"M-\\\"+r+\\\",\\\"+i+\\\"H\\\"+r+\\\"L\\\"+e+\\\",0L\\\"+r+\\\",-\\\"+i+\\\"H-\\\"+r+\\\"L-\\\"+e+\\\",0Z\\\"}},octagon:{n:16,f:function(t){var e=n.round(.924*t,2),r=n.round(.383*t,2);return\\\"M-\\\"+r+\\\",-\\\"+e+\\\"H\\\"+r+\\\"L\\\"+e+\\\",-\\\"+r+\\\"V\\\"+r+\\\"L\\\"+r+\\\",\\\"+e+\\\"H-\\\"+r+\\\"L-\\\"+e+\\\",\\\"+r+\\\"V-\\\"+r+\\\"Z\\\"}},star:{n:17,f:function(t){var e=1.4*t,r=n.round(.225*e,2),i=n.round(.951*e,2),o=n.round(.363*e,2),a=n.round(.588*e,2),s=n.round(-e,2),l=n.round(e*-.309,2),c=n.round(.118*e,2),u=n.round(.809*e,2),h=n.round(.382*e,2);return\\\"M\\\"+r+\\\",\\\"+l+\\\"H\\\"+i+\\\"L\\\"+o+\\\",\\\"+c+\\\"L\\\"+a+\\\",\\\"+u+\\\"L0,\\\"+h+\\\"L-\\\"+a+\\\",\\\"+u+\\\"L-\\\"+o+\\\",\\\"+c+\\\"L-\\\"+i+\\\",\\\"+l+\\\"H-\\\"+r+\\\"L0,\\\"+s+\\\"Z\\\"}},hexagram:{n:18,f:function(t){var e=n.round(.66*t,2),r=n.round(.38*t,2),i=n.round(.76*t,2);return\\\"M-\\\"+i+\\\",0l-\\\"+r+\\\",-\\\"+e+\\\"h\\\"+i+\\\"l\\\"+r+\\\",-\\\"+e+\\\"l\\\"+r+\\\",\\\"+e+\\\"h\\\"+i+\\\"l-\\\"+r+\\\",\\\"+e+\\\"l\\\"+r+\\\",\\\"+e+\\\"h-\\\"+i+\\\"l-\\\"+r+\\\",\\\"+e+\\\"l-\\\"+r+\\\",-\\\"+e+\\\"h-\\\"+i+\\\"Z\\\"}},\\\"star-triangle-up\\\":{n:19,f:function(t){var e=n.round(t*Math.sqrt(3)*.8,2),r=n.round(.8*t,2),i=n.round(1.6*t,2),o=n.round(4*t,2),a=\\\"A \\\"+o+\\\",\\\"+o+\\\" 0 0 1 \\\";return\\\"M-\\\"+e+\\\",\\\"+r+a+e+\\\",\\\"+r+a+\\\"0,-\\\"+i+a+\\\"-\\\"+e+\\\",\\\"+r+\\\"Z\\\"}},\\\"star-triangle-down\\\":{n:20,f:function(t){var e=n.round(t*Math.sqrt(3)*.8,2),r=n.round(.8*t,2),i=n.round(1.6*t,2),o=n.round(4*t,2),a=\\\"A \\\"+o+\\\",\\\"+o+\\\" 0 0 1 \\\";return\\\"M\\\"+e+\\\",-\\\"+r+a+\\\"-\\\"+e+\\\",-\\\"+r+a+\\\"0,\\\"+i+a+e+\\\",-\\\"+r+\\\"Z\\\"}},\\\"star-square\\\":{n:21,f:function(t){var e=n.round(1.1*t,2),r=n.round(2*t,2),i=\\\"A \\\"+r+\\\",\\\"+r+\\\" 0 0 1 \\\";return\\\"M-\\\"+e+\\\",-\\\"+e+i+\\\"-\\\"+e+\\\",\\\"+e+i+e+\\\",\\\"+e+i+e+\\\",-\\\"+e+i+\\\"-\\\"+e+\\\",-\\\"+e+\\\"Z\\\"}},\\\"star-diamond\\\":{n:22,f:function(t){var e=n.round(1.4*t,2),r=n.round(1.9*t,2),i=\\\"A \\\"+r+\\\",\\\"+r+\\\" 0 0 1 \\\";return\\\"M-\\\"+e+\\\",0\\\"+i+\\\"0,\\\"+e+i+e+\\\",0\\\"+i+\\\"0,-\\\"+e+i+\\\"-\\\"+e+\\\",0Z\\\"}},\\\"diamond-tall\\\":{n:23,f:function(t){var e=n.round(.7*t,2),r=n.round(1.4*t,2);return\\\"M0,\\\"+r+\\\"L\\\"+e+\\\",0L0,-\\\"+r+\\\"L-\\\"+e+\\\",0Z\\\"}},\\\"diamond-wide\\\":{n:24,f:function(t){var e=n.round(1.4*t,2),r=n.round(.7*t,2);return\\\"M0,\\\"+r+\\\"L\\\"+e+\\\",0L0,-\\\"+r+\\\"L-\\\"+e+\\\",0Z\\\"}},hourglass:{n:25,f:function(t){var e=n.round(t,2);return\\\"M\\\"+e+\\\",\\\"+e+\\\"H-\\\"+e+\\\"L\\\"+e+\\\",-\\\"+e+\\\"H-\\\"+e+\\\"Z\\\"},noDot:!0},bowtie:{n:26,f:function(t){var e=n.round(t,2);return\\\"M\\\"+e+\\\",\\\"+e+\\\"V-\\\"+e+\\\"L-\\\"+e+\\\",\\\"+e+\\\"V-\\\"+e+\\\"Z\\\"},noDot:!0},\\\"circle-cross\\\":{n:27,f:function(t){var e=n.round(t,2);return\\\"M0,\\\"+e+\\\"V-\\\"+e+\\\"M\\\"+e+\\\",0H-\\\"+e+\\\"M\\\"+e+\\\",0A\\\"+e+\\\",\\\"+e+\\\" 0 1,1 0,-\\\"+e+\\\"A\\\"+e+\\\",\\\"+e+\\\" 0 0,1 \\\"+e+\\\",0Z\\\"},needLine:!0,noDot:!0},\\\"circle-x\\\":{n:28,f:function(t){var e=n.round(t,2),r=n.round(t/Math.sqrt(2),2);return\\\"M\\\"+r+\\\",\\\"+r+\\\"L-\\\"+r+\\\",-\\\"+r+\\\"M\\\"+r+\\\",-\\\"+r+\\\"L-\\\"+r+\\\",\\\"+r+\\\"M\\\"+e+\\\",0A\\\"+e+\\\",\\\"+e+\\\" 0 1,1 0,-\\\"+e+\\\"A\\\"+e+\\\",\\\"+e+\\\" 0 0,1 \\\"+e+\\\",0Z\\\"},needLine:!0,noDot:!0},\\\"square-cross\\\":{n:29,f:function(t){var e=n.round(t,2);return\\\"M0,\\\"+e+\\\"V-\\\"+e+\\\"M\\\"+e+\\\",0H-\\\"+e+\\\"M\\\"+e+\\\",\\\"+e+\\\"H-\\\"+e+\\\"V-\\\"+e+\\\"H\\\"+e+\\\"Z\\\"},needLine:!0,noDot:!0},\\\"square-x\\\":{n:30,f:function(t){var e=n.round(t,2);return\\\"M\\\"+e+\\\",\\\"+e+\\\"L-\\\"+e+\\\",-\\\"+e+\\\"M\\\"+e+\\\",-\\\"+e+\\\"L-\\\"+e+\\\",\\\"+e+\\\"M\\\"+e+\\\",\\\"+e+\\\"H-\\\"+e+\\\"V-\\\"+e+\\\"H\\\"+e+\\\"Z\\\"},needLine:!0,noDot:!0},\\\"diamond-cross\\\":{n:31,f:function(t){var e=n.round(1.3*t,2);return\\\"M\\\"+e+\\\",0L0,\\\"+e+\\\"L-\\\"+e+\\\",0L0,-\\\"+e+\\\"ZM0,-\\\"+e+\\\"V\\\"+e+\\\"M-\\\"+e+\\\",0H\\\"+e},needLine:!0,noDot:!0},\\\"diamond-x\\\":{n:32,f:function(t){var e=n.round(1.3*t,2),r=n.round(.65*t,2);return\\\"M\\\"+e+\\\",0L0,\\\"+e+\\\"L-\\\"+e+\\\",0L0,-\\\"+e+\\\"ZM-\\\"+r+\\\",-\\\"+r+\\\"L\\\"+r+\\\",\\\"+r+\\\"M-\\\"+r+\\\",\\\"+r+\\\"L\\\"+r+\\\",-\\\"+r},needLine:!0,noDot:!0},\\\"cross-thin\\\":{n:33,f:function(t){var e=n.round(1.4*t,2);return\\\"M0,\\\"+e+\\\"V-\\\"+e+\\\"M\\\"+e+\\\",0H-\\\"+e},needLine:!0,noDot:!0},\\\"x-thin\\\":{n:34,f:function(t){var e=n.round(t,2);return\\\"M\\\"+e+\\\",\\\"+e+\\\"L-\\\"+e+\\\",-\\\"+e+\\\"M\\\"+e+\\\",-\\\"+e+\\\"L-\\\"+e+\\\",\\\"+e},needLine:!0,noDot:!0},asterisk:{n:35,f:function(t){var e=n.round(1.2*t,2),r=n.round(.85*t,2);return\\\"M0,\\\"+e+\\\"V-\\\"+e+\\\"M\\\"+e+\\\",0H-\\\"+e+\\\"M\\\"+r+\\\",\\\"+r+\\\"L-\\\"+r+\\\",-\\\"+r+\\\"M\\\"+r+\\\",-\\\"+r+\\\"L-\\\"+r+\\\",\\\"+r},needLine:!0,noDot:!0},hash:{n:36,f:function(t){var e=n.round(t/2,2),r=n.round(t,2);return\\\"M\\\"+e+\\\",\\\"+r+\\\"V-\\\"+r+\\\"m-\\\"+r+\\\",0V\\\"+r+\\\"M\\\"+r+\\\",\\\"+e+\\\"H-\\\"+r+\\\"m0,-\\\"+r+\\\"H\\\"+r},needLine:!0},\\\"y-up\\\":{n:37,f:function(t){var e=n.round(1.2*t,2),r=n.round(1.6*t,2),i=n.round(.8*t,2);return\\\"M-\\\"+e+\\\",\\\"+i+\\\"L0,0M\\\"+e+\\\",\\\"+i+\\\"L0,0M0,-\\\"+r+\\\"L0,0\\\"},needLine:!0,noDot:!0},\\\"y-down\\\":{n:38,f:function(t){var e=n.round(1.2*t,2),r=n.round(1.6*t,2),i=n.round(.8*t,2);return\\\"M-\\\"+e+\\\",-\\\"+i+\\\"L0,0M\\\"+e+\\\",-\\\"+i+\\\"L0,0M0,\\\"+r+\\\"L0,0\\\"},needLine:!0,noDot:!0},\\\"y-left\\\":{n:39,f:function(t){var e=n.round(1.2*t,2),r=n.round(1.6*t,2),i=n.round(.8*t,2);return\\\"M\\\"+i+\\\",\\\"+e+\\\"L0,0M\\\"+i+\\\",-\\\"+e+\\\"L0,0M-\\\"+r+\\\",0L0,0\\\"},needLine:!0,noDot:!0},\\\"y-right\\\":{n:40,f:function(t){var e=n.round(1.2*t,2),r=n.round(1.6*t,2),i=n.round(.8*t,2);return\\\"M-\\\"+i+\\\",\\\"+e+\\\"L0,0M-\\\"+i+\\\",-\\\"+e+\\\"L0,0M\\\"+r+\\\",0L0,0\\\"},needLine:!0,noDot:!0},\\\"line-ew\\\":{n:41,f:function(t){var e=n.round(1.4*t,2);return\\\"M\\\"+e+\\\",0H-\\\"+e},needLine:!0,noDot:!0},\\\"line-ns\\\":{n:42,f:function(t){var e=n.round(1.4*t,2);return\\\"M0,\\\"+e+\\\"V-\\\"+e},needLine:!0,noDot:!0},\\\"line-ne\\\":{n:43,f:function(t){var e=n.round(t,2);return\\\"M\\\"+e+\\\",-\\\"+e+\\\"L-\\\"+e+\\\",\\\"+e},needLine:!0,noDot:!0},\\\"line-nw\\\":{n:44,f:function(t){var e=n.round(t,2);return\\\"M\\\"+e+\\\",\\\"+e+\\\"L-\\\"+e+\\\",-\\\"+e},needLine:!0,noDot:!0}}},{d3:70}],321:[function(t,e,r){\\\"use strict\\\";e.exports={visible:{valType:\\\"boolean\\\"},type:{valType:\\\"enumerated\\\",values:[\\\"percent\\\",\\\"constant\\\",\\\"sqrt\\\",\\\"data\\\"]},symmetric:{valType:\\\"boolean\\\"},array:{valType:\\\"data_array\\\"},arrayminus:{valType:\\\"data_array\\\"},value:{valType:\\\"number\\\",min:0,dflt:10},valueminus:{valType:\\\"number\\\",min:0,dflt:10},traceref:{valType:\\\"integer\\\",min:0,dflt:0},tracerefminus:{valType:\\\"integer\\\",min:0,dflt:0},copy_ystyle:{valType:\\\"boolean\\\"},copy_zstyle:{valType:\\\"boolean\\\"},color:{valType:\\\"color\\\"},thickness:{valType:\\\"number\\\",min:0,dflt:2},width:{valType:\\\"number\\\",min:0},_deprecated:{opacity:{valType:\\\"number\\\"}}}},{}],322:[function(t,e,r){\\\"use strict\\\";function n(t,e,r,n){var o=e[\\\"error_\\\"+n]||{},l=o.visible&&-1!==[\\\"linear\\\",\\\"log\\\"].indexOf(r.type),c=[];if(l){for(var u=s(o),h=0;h<t.length;h++){var f=t[h],d=f[n];if(i(r.c2l(d))){var p=u(d,h);if(i(p[0])&&i(p[1])){var g=f[n+\\\"s\\\"]=d-p[0],v=f[n+\\\"h\\\"]=d+p[1];c.push(g,v)}}}a.expand(r,c,{padded:!0})}}var i=t(\\\"fast-isnumeric\\\"),o=t(\\\"../../plots/plots\\\"),a=t(\\\"../../plots/cartesian/axes\\\"),s=t(\\\"./compute_error\\\");e.exports=function(t){for(var e=t.calcdata,r=0;r<e.length;r++){var i=e[r],s=i[0].trace;if(o.traceIs(s,\\\"errorBarsOK\\\")){var l=a.getFromId(t,s.xaxis),c=a.getFromId(t,s.yaxis);n(i,s,l,\\\"x\\\"),n(i,s,c,\\\"y\\\")}}}},{\\\"../../plots/cartesian/axes\\\":393,\\\"../../plots/plots\\\":437,\\\"./compute_error\\\":323,\\\"fast-isnumeric\\\":74}],323:[function(t,e,r){\\\"use strict\\\";function n(t,e){return\\\"percent\\\"===t?function(t){return Math.abs(t*e/100)}:\\\"constant\\\"===t?function(){return Math.abs(e)}:\\\"sqrt\\\"===t?function(t){return Math.sqrt(Math.abs(t))}:void 0}e.exports=function(t){var e=t.type,r=t.symmetric;if(\\\"data\\\"===e){var i=t.array,o=t.arrayminus;return r||void 0===o?function(t,e){var r=+i[e];return[r,r]}:function(t,e){return[+o[e],+i[e]]}}var a=n(e,t.value),s=n(e,t.valueminus);return r||void 0===t.valueminus?function(t){var e=a(t);return[e,e]}:function(t){return[s(t),a(t)]}}},{}],324:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"fast-isnumeric\\\"),i=t(\\\"../../plots/plots\\\"),o=t(\\\"../../lib\\\"),a=t(\\\"./attributes\\\");e.exports=function(t,e,r,s){function l(t,e){return o.coerce(h,u,a,t,e)}var c=\\\"error_\\\"+s.axis,u=e[c]={},h=t[c]||{},f=void 0!==h.array||void 0!==h.value||\\\"sqrt\\\"===h.type,d=l(\\\"visible\\\",f);if(d!==!1){var p=l(\\\"type\\\",\\\"array\\\"in h?\\\"data\\\":\\\"percent\\\"),g=!0;if(\\\"sqrt\\\"!==p&&(g=l(\\\"symmetric\\\",!((\\\"data\\\"===p?\\\"arrayminus\\\":\\\"valueminus\\\")in h))),\\\"data\\\"===p){var v=l(\\\"array\\\");if(v||(u.array=[]),l(\\\"traceref\\\"),!g){var m=l(\\\"arrayminus\\\");m||(u.arrayminus=[]),l(\\\"tracerefminus\\\")}}else\\\"percent\\\"!==p&&\\\"constant\\\"!==p||(l(\\\"value\\\"),g||l(\\\"valueminus\\\"));var y=\\\"copy_\\\"+s.inherit+\\\"style\\\";if(s.inherit){var b=e[\\\"error_\\\"+s.inherit];(b||{}).visible&&l(y,!(h.color||n(h.thickness)||n(h.width)))}s.inherit&&u[y]||(l(\\\"color\\\",r),l(\\\"thickness\\\"),l(\\\"width\\\",i.traceIs(e,\\\"gl3d\\\")?0:4))}}},{\\\"../../lib\\\":373,\\\"../../plots/plots\\\":437,\\\"./attributes\\\":321,\\\"fast-isnumeric\\\":74}],325:[function(t,e,r){\\\"use strict\\\";var n=e.exports={};n.attributes=t(\\\"./attributes\\\"),n.supplyDefaults=t(\\\"./defaults\\\"),n.calc=t(\\\"./calc\\\"),n.calcFromTrace=function(t,e){for(var r=t.x||[],i=t.y,o=r.length||i.length,a=new Array(o),s=0;o>s;s++)a[s]={x:r[s],y:i[s]};return a[0].trace=t,n.calc({calcdata:[a],_fullLayout:e}),a},n.plot=t(\\\"./plot\\\"),n.style=t(\\\"./style\\\"),n.hoverInfo=function(t,e,r){e.error_y.visible&&(r.yerr=t.yh-t.y,e.error_y.symmetric||(r.yerrneg=t.y-t.ys)),e.error_x.visible&&(r.xerr=t.xh-t.x,e.error_x.symmetric||(r.xerrneg=t.x-t.xs))}},{\\\"./attributes\\\":321,\\\"./calc\\\":322,\\\"./defaults\\\":324,\\\"./plot\\\":326,\\\"./style\\\":327}],326:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){var n={x:e.c2p(t.x),y:r.c2p(t.y)};return void 0!==t.yh&&(n.yh=r.c2p(t.yh),n.ys=r.c2p(t.ys),o(n.ys)||(n.noYS=!0,n.ys=r.c2p(t.ys,!0))),void 0!==t.xh&&(n.xh=e.c2p(t.xh),n.xs=e.c2p(t.xs),o(n.xs)||(n.noXS=!0,n.xs=e.c2p(t.xs,!0))),n}var i=t(\\\"d3\\\"),o=t(\\\"fast-isnumeric\\\"),a=t(\\\"../../lib\\\"),s=t(\\\"../../traces/scatter/subtypes\\\");e.exports=function(t,e){var r=e.x(),l=e.y();t.each(function(t){var e=t[0].trace,c=e.error_x,u=e.error_y,h=s.hasMarkers(e)&&e.marker.maxdisplayed>0;if(u.visible||c.visible){var f=i.select(this).selectAll(\\\"g.errorbar\\\").data(a.identity);f.enter().append(\\\"g\\\").classed(\\\"errorbar\\\",!0),f.each(function(t){var e=i.select(this),a=n(t,r,l);if(!h||t.vis){var s;if(u.visible&&o(a.x)&&o(a.yh)&&o(a.ys)){var f=u.width;s=\\\"M\\\"+(a.x-f)+\\\",\\\"+a.yh+\\\"h\\\"+2*f+\\\"m-\\\"+f+\\\",0V\\\"+a.ys,a.noYS||(s+=\\\"m-\\\"+f+\\\",0h\\\"+2*f),e.append(\\\"path\\\").classed(\\\"yerror\\\",!0).attr(\\\"d\\\",s)}if(c.visible&&o(a.y)&&o(a.xh)&&o(a.xs)){var d=(c.copy_ystyle?u:c).width;s=\\\"M\\\"+a.xh+\\\",\\\"+(a.y-d)+\\\"v\\\"+2*d+\\\"m0,-\\\"+d+\\\"H\\\"+a.xs,a.noXS||(s+=\\\"m0,-\\\"+d+\\\"v\\\"+2*d),e.append(\\\"path\\\").classed(\\\"xerror\\\",!0).attr(\\\"d\\\",s)}}})}})}},{\\\"../../lib\\\":373,\\\"../../traces/scatter/subtypes\\\":546,d3:70,\\\"fast-isnumeric\\\":74}],327:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"d3\\\"),i=t(\\\"../color\\\");e.exports=function(t){t.each(function(t){var e=t[0].trace,r=e.error_y||{},o=e.error_x||{},a=n.select(this);a.selectAll(\\\"path.yerror\\\").style(\\\"stroke-width\\\",r.thickness+\\\"px\\\").call(i.stroke,r.color),o.copy_ystyle&&(o=r),a.selectAll(\\\"path.xerror\\\").style(\\\"stroke-width\\\",o.thickness+\\\"px\\\").call(i.stroke,o.color)})}},{\\\"../color\\\":301,d3:70}],328:[function(t,e,r){\\\"use strict\\\";r.isRightAnchor=function(t){return\\\"right\\\"===t.xanchor||\\\"auto\\\"===t.xanchor&&t.x>=2/3},r.isCenterAnchor=function(t){return\\\"center\\\"===t.xanchor||\\\"auto\\\"===t.xanchor&&t.x>1/3&&t.x<2/3},r.isBottomAnchor=function(t){return\\\"bottom\\\"===t.yanchor||\\\"auto\\\"===t.yanchor&&t.y<=1/3},r.isMiddleAnchor=function(t){return\\\"middle\\\"===t.yanchor||\\\"auto\\\"===t.yanchor&&t.y>1/3&&t.y<2/3}},{}],329:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../plots/font_attributes\\\"),i=t(\\\"../color/attributes\\\"),o=t(\\\"../../lib/extend\\\").extendFlat;e.exports={bgcolor:{valType:\\\"color\\\"},bordercolor:{valType:\\\"color\\\",dflt:i.defaultLine},borderwidth:{valType:\\\"number\\\",min:0,dflt:0},font:o({},n,{}),traceorder:{valType:\\\"flaglist\\\",flags:[\\\"reversed\\\",\\\"grouped\\\"],extras:[\\\"normal\\\"]},tracegroupgap:{valType:\\\"number\\\",min:0,dflt:10},x:{valType:\\\"number\\\",min:-2,max:3,dflt:1.02},xanchor:{valType:\\\"enumerated\\\",values:[\\\"auto\\\",\\\"left\\\",\\\"center\\\",\\\"right\\\"],dflt:\\\"left\\\"},y:{valType:\\\"number\\\",min:-2,max:3,dflt:1},yanchor:{valType:\\\"enumerated\\\",values:[\\\"auto\\\",\\\"top\\\",\\\"middle\\\",\\\"bottom\\\"],dflt:\\\"auto\\\"}}},{\\\"../../lib/extend\\\":369,\\\"../../plots/font_attributes\\\":407,\\\"../color/attributes\\\":300}],330:[function(t,e,r){\\\"use strict\\\";e.exports={scrollBarWidth:4,scrollBarHeight:20,scrollBarColor:\\\"#808BA4\\\",scrollBarMargin:4}},{}],331:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../lib\\\"),i=t(\\\"../../plots/plots\\\"),o=t(\\\"./attributes\\\"),a=t(\\\"./helpers\\\");e.exports=function(t,e,r){function s(t,e){return n.coerce(l,c,o,t,e)}for(var l=t.legend||{},c=e.legend={},u=0,h=\\\"normal\\\",f=0;f<r.length;f++){var d=r[f];a.legendGetsTrace(d)&&(u++,i.traceIs(d,\\\"pie\\\")&&u++),(i.traceIs(d,\\\"bar\\\")&&\\\"stack\\\"===e.barmode||-1!==[\\\"tonextx\\\",\\\"tonexty\\\"].indexOf(d.fill))&&(h=a.isGrouped({traceorder:h})?\\\"grouped+reversed\\\":\\\"reversed\\\"),void 0!==d.legendgroup&&\\\"\\\"!==d.legendgroup&&(h=a.isReversed({traceorder:h})?\\\"reversed+grouped\\\":\\\"grouped\\\")}var p=n.coerce(t,e,i.layoutAttributes,\\\"showlegend\\\",u>1);p!==!1&&(s(\\\"bgcolor\\\",e.paper_bgcolor),s(\\\"bordercolor\\\"),s(\\\"borderwidth\\\"),n.coerceFont(s,\\\"font\\\",e.font),s(\\\"traceorder\\\",h),a.isGrouped(e.legend)&&s(\\\"tracegroupgap\\\"),s(\\\"x\\\"),s(\\\"xanchor\\\"),s(\\\"y\\\"),s(\\\"yanchor\\\"),n.noneOrAll(l,c,[\\\"x\\\",\\\"y\\\"]))}},{\\\"../../lib\\\":373,\\\"../../plots/plots\\\":437,\\\"./attributes\\\":329,\\\"./helpers\\\":334}],332:[function(t,e,r){\\\"use strict\\\";function n(t,e,r,n,s){function c(t){a.util.convertToTspans(t,function(){e.firstRender&&i(e,s)}),t.selectAll(\\\"tspan.line\\\").attr({x:t.attr(\\\"x\\\")})}var h=e._fullLayout,f=r[0].trace,d=l.traceIs(f,\\\"pie\\\"),p=f.index,g=d?r[0].label:f.name,v=o.select(t).selectAll(\\\"text.legendtext\\\").data([0]);v.enter().append(\\\"text\\\").classed(\\\"legendtext\\\",!0),v.attr({x:40,y:0,\\\"data-unformatted\\\":g}).style(\\\"text-anchor\\\",\\\"start\\\").classed(\\\"user-select-none\\\",!0).call(u.font,h.legend.font).text(g),e._context.editable&&!d?v.call(a.util.makeEditable).call(c).on(\\\"edit\\\",function(t){this.attr({\\\"data-unformatted\\\":t}),this.text(t).call(c),this.text()||(t=\\\"    \\\"),a.restyle(e,\\\"name\\\",t,p)}):v.call(c)}function i(t,e){var r=t._fullLayout,n=r._size,i=r.legend,a=i.borderwidth;i.width=0,i.height=0,e.each(function(t){var e,r,n=t[0].trace,s=o.select(this),l=s.selectAll(\\\".legendtoggle\\\"),c=s.selectAll(\\\".legendtext\\\"),h=s.selectAll(\\\".legendtext>tspan\\\"),f=1.3*i.font.size,d=h[0].length||1,p=c.node()&&u.bBox(c.node()).width,g=s.select(\\\"g[class*=math-group]\\\");if(!n.showlegend)return void s.remove();if(g.node()){var v=u.bBox(g.node());f=v.height,p=v.width,g.attr(\\\"transform\\\",\\\"translate(0,\\\"+f/4+\\\")\\\")}else e=f*(.3+(1-d)/2),c.attr(\\\"y\\\",e),h.attr(\\\"y\\\",e);r=Math.max(f*d,16)+3,s.attr(\\\"transform\\\",\\\"translate(\\\"+a+\\\",\\\"+(5+a+i.height+r/2)+\\\")\\\"),l.attr({x:0,y:-r/2,height:r}),i.height+=r,i.width=Math.max(i.width,p||0)}),i.width+=45+2*a,i.height+=10+2*a,g.isGrouped(i)&&(i.height+=(i._lgroupsLength-1)*i.tracegroupgap),e.selectAll(\\\".legendtoggle\\\").attr(\\\"width\\\",(t._context.editable?0:i.width)+40);var s=n.l+n.w*i.x,c=n.t+n.h*(1-i.y),h=\\\"left\\\";v.isRightAnchor(i)&&(s-=i.width,h=\\\"right\\\"),v.isCenterAnchor(i)&&(s-=i.width/2,h=\\\"center\\\");var f=\\\"top\\\";v.isBottomAnchor(i)&&(c-=i.height,f=\\\"bottom\\\"),v.isMiddleAnchor(i)&&(c-=i.height/2,f=\\\"middle\\\"),i.width=Math.ceil(i.width),i.height=Math.ceil(i.height),s=Math.round(s),c=Math.round(c),l.autoMargin(t,\\\"legend\\\",{x:i.x,y:i.y,l:i.width*({right:1,center:.5}[h]||0),r:i.width*({left:1,center:.5}[h]||0),b:i.height*({top:1,middle:.5}[f]||0),t:i.height*({bottom:1,middle:.5}[f]||0)})}var o=t(\\\"d3\\\"),a=t(\\\"../../plotly\\\"),s=t(\\\"../../lib\\\"),l=t(\\\"../../plots/plots\\\"),c=t(\\\"../../plots/cartesian/graph_interact\\\"),u=t(\\\"../drawing\\\"),h=t(\\\"../color\\\"),f=t(\\\"./constants\\\"),d=t(\\\"./get_legend_data\\\"),p=t(\\\"./style\\\"),g=t(\\\"./helpers\\\"),v=t(\\\"./anchor_utils\\\");e.exports=function(t){function e(t,e){var r=e-f.scrollBarHeight-2*f.scrollBarMargin,n=k.attr(\\\"data-scroll\\\"),i=s.constrain(n-t,e-y.height,0),o=-i/(y.height-e)*r+f.scrollBarMargin;k.attr(\\\"data-scroll\\\",i),k.attr(\\\"transform\\\",\\\"translate(0, \\\"+i+\\\")\\\"),M.call(u.setRect,y.width-(f.scrollBarWidth+f.scrollBarMargin),o,f.scrollBarWidth,f.scrollBarHeight)}var r=t._fullLayout,m=\\\"legend\\\"+r._uid;if(r._infolayer&&t.calcdata){var y=r.legend,b=r.showlegend&&d(t.calcdata,y),x=r.hiddenlabels||[];if(!r.showlegend||!b.length)return r._infolayer.selectAll(\\\".legend\\\").remove(),r._topdefs.select(\\\"#\\\"+m).remove(),void l.autoMargin(t,\\\"legend\\\");\\\"undefined\\\"==typeof t.firstRender?t.firstRender=!0:t.firstRender&&(t.firstRender=!1);var _=r._infolayer.selectAll(\\\"g.legend\\\").data([0]);_.enter().append(\\\"g\\\").attr({\\\"class\\\":\\\"legend\\\",\\\"pointer-events\\\":\\\"all\\\"});var w=r._topdefs.selectAll(\\\"#\\\"+m).data([0]);w.enter().append(\\\"clipPath\\\").attr(\\\"id\\\",m).append(\\\"rect\\\");var A=_.selectAll(\\\"rect.bg\\\").data([0]);A.enter().append(\\\"rect\\\").attr({\\\"class\\\":\\\"bg\\\",\\\"shape-rendering\\\":\\\"crispEdges\\\"}).call(h.stroke,y.bordercolor).call(h.fill,y.bgcolor).style(\\\"stroke-width\\\",y.borderwidth+\\\"px\\\");var k=_.selectAll(\\\"g.scrollbox\\\").data([0]);k.enter().append(\\\"g\\\").attr(\\\"class\\\",\\\"scrollbox\\\");var M=_.selectAll(\\\"rect.scrollbar\\\").data([0]);M.enter().append(\\\"rect\\\").attr({\\\"class\\\":\\\"scrollbar\\\",rx:20,ry:2,width:0,height:0}).call(h.fill,\\\"#808BA4\\\");var T=k.selectAll(\\\"g.groups\\\").data(b);T.enter().append(\\\"g\\\").attr(\\\"class\\\",\\\"groups\\\"),T.exit().remove(),g.isGrouped(y)&&T.attr(\\\"transform\\\",function(t,e){return\\\"translate(0,\\\"+e*y.tracegroupgap+\\\")\\\"});var E=T.selectAll(\\\"g.traces\\\").data(s.identity);E.enter().append(\\\"g\\\").attr(\\\"class\\\",\\\"traces\\\"),E.exit().remove(),E.call(p).style(\\\"opacity\\\",function(t){var e=t[0].trace;return l.traceIs(e,\\\"pie\\\")?-1!==x.indexOf(t[0].label)?.5:1:\\\"legendonly\\\"===e.visible?.5:1}).each(function(e,r){n(this,t,e,r,E);var i=o.select(this).selectAll(\\\"rect\\\").data([0]);i.enter().append(\\\"rect\\\").classed(\\\"legendtoggle\\\",!0).style(\\\"cursor\\\",\\\"pointer\\\").attr(\\\"pointer-events\\\",\\\"all\\\").call(h.fill,\\\"rgba(0,0,0,0)\\\"),i.on(\\\"click\\\",function(){if(!t._dragged){var r,n,i=t._fullData,o=e[0].trace,s=o.legendgroup,c=[];if(l.traceIs(o,\\\"pie\\\")){var u=e[0].label,h=x.slice(),f=h.indexOf(u);-1===f?h.push(u):h.splice(f,1),a.relayout(t,\\\"hiddenlabels\\\",h)}else{if(\\\"\\\"===s)c=[o.index];else for(var d=0;d<i.length;d++)r=i[d],r.legendgroup===s&&c.push(r.index);n=o.visible===!0?\\\"legendonly\\\":!0,a.restyle(t,\\\"visible\\\",n,c)}}})}),i(t,E);var L=r._size,S=L.l+L.w*y.x,C=L.t+L.h*(1-y.y);v.isRightAnchor(y)&&(S-=y.width),v.isCenterAnchor(y)&&(S-=y.width/2),v.isBottomAnchor(y)&&(C-=y.height),v.isMiddleAnchor(y)&&(C-=y.height/2);var P=r.height-r.margin.b,z=Math.min(P-C,y.height),R=k.attr(\\\"data-scroll\\\")?k.attr(\\\"data-scroll\\\"):0;if(k.attr(\\\"transform\\\",\\\"translate(0, \\\"+R+\\\")\\\"),A.attr({width:y.width-2*y.borderwidth,height:z-2*y.borderwidth,x:y.borderwidth,y:y.borderwidth}),_.attr(\\\"transform\\\",\\\"translate(\\\"+S+\\\",\\\"+C+\\\")\\\"),w.select(\\\"rect\\\").attr({width:y.width,height:z,x:0,y:0}),_.call(u.setClipUrl,m),y.height-z>0&&!t._context.staticPlot){A.attr({width:y.width-2*y.borderwidth+f.scrollBarWidth}),w.attr({width:y.width+f.scrollBarWidth}),t.firstRender&&(M.call(u.setRect,y.width-(f.scrollBarWidth+f.scrollBarMargin),f.scrollBarMargin,f.scrollBarWidth,f.scrollBarHeight),k.attr(\\\"data-scroll\\\",0)),e(0,z),_.on(\\\"wheel\\\",null),_.on(\\\"wheel\\\",function(){var t=o.event;t.preventDefault(),e(t.deltaY/20,z)}),M.on(\\\".drag\\\",null),k.on(\\\".drag\\\",null);var O=o.behavior.drag().on(\\\"drag\\\",function(){e(o.event.dy,z)});M.call(O),k.call(O)}if(t._context.editable){var I,N,j,F,D,B;c.dragElement({element:_.node(),prepFn:function(){j=Number(_.attr(\\\"x\\\")),F=Number(_.attr(\\\"y\\\")),D=Number(_.attr(\\\"width\\\")),B=Number(_.attr(\\\"height\\\")),c.setCursor(_)},moveFn:function(e,r){var n=t._fullLayout._size;_.call(u.setPosition,j+e,F+r),I=c.dragAlign(j+e,D,n.l,n.l+n.w,y.xanchor),N=c.dragAlign(F+r+B,-B,n.t+n.h,n.t,y.yanchor);var i=c.dragCursors(I,N,y.xanchor,y.yanchor);c.setCursor(_,i)},doneFn:function(e){c.setCursor(_),e&&void 0!==I&&void 0!==N&&a.relayout(t,{\\\"legend.x\\\":I,\\\"legend.y\\\":N})}})}}}},{\\\"../../lib\\\":373,\\\"../../plotly\\\":390,\\\"../../plots/cartesian/graph_interact\\\":398,\\\"../../plots/plots\\\":437,\\\"../color\\\":301,\\\"../drawing\\\":319,\\\"./anchor_utils\\\":328,\\\"./constants\\\":330,\\\"./get_legend_data\\\":333,\\\"./helpers\\\":334,\\\"./style\\\":336,d3:70}],333:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../plots/plots\\\"),i=t(\\\"./helpers\\\");e.exports=function(t,e){function r(t,r){if(\\\"\\\"!==t&&i.isGrouped(e))-1===l.indexOf(t)?(l.push(t),c=!0,s[t]=[[r]]):s[t].push([r]);else{var n=\\\"~~i\\\"+h;l.push(n),s[n]=[[r]],h++}}var o,a,s={},l=[],c=!1,u={},h=0;for(o=0;o<t.length;o++){var f=t[o],d=f[0],p=d.trace,g=p.legendgroup;if(i.legendGetsTrace(p)&&p.showlegend)if(n.traceIs(p,\\\"pie\\\"))for(u[g]||(u[g]={}),a=0;a<f.length;a++){var v=f[a].label;u[g][v]||(r(g,{label:v,color:f[a].color,i:f[a].i,trace:p}),u[g][v]=!0)}else r(g,d)}if(!l.length)return[];var m,y,b=l.length;if(c&&i.isGrouped(e))for(y=new Array(b),o=0;b>o;o++)m=s[l[o]],y[o]=i.isReversed(e)?m.reverse():m;else{for(y=[new Array(b)],o=0;b>o;o++)m=s[l[o]][0],y[0][i.isReversed(e)?b-o-1:o]=m;b=1}return e._lgroupsLength=b,y}},{\\\"../../plots/plots\\\":437,\\\"./helpers\\\":334}],334:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../plots/plots\\\");r.legendGetsTrace=function(t){return t.visible&&n.traceIs(t,\\\"showLegend\\\")},r.isGrouped=function(t){return-1!==(t.traceorder||\\\"\\\").indexOf(\\\"grouped\\\")},r.isReversed=function(t){return-1!==(t.traceorder||\\\"\\\").indexOf(\\\"reversed\\\")}},{\\\"../../plots/plots\\\":437}],335:[function(t,e,r){\\\"use strict\\\";var n=e.exports={};n.layoutAttributes=t(\\\"./attributes\\\"),n.supplyLayoutDefaults=t(\\\"./defaults\\\"),n.draw=t(\\\"./draw\\\"),n.style=t(\\\"./style\\\")},{\\\"./attributes\\\":329,\\\"./defaults\\\":331,\\\"./draw\\\":332,\\\"./style\\\":336}],336:[function(t,e,r){\\\"use strict\\\";function n(t){var e=t[0].trace,r=e.visible&&e.fill&&\\\"none\\\"!==e.fill,n=d.hasLines(e),i=l.select(this).select(\\\".legendfill\\\").selectAll(\\\"path\\\").data(r?[t]:[]);i.enter().append(\\\"path\\\").classed(\\\"js-fill\\\",!0),i.exit().remove(),i.attr(\\\"d\\\",\\\"M5,0h30v6h-30z\\\").call(h.fillGroupStyle);var o=l.select(this).select(\\\".legendlines\\\").selectAll(\\\"path\\\").data(n?[t]:[]);o.enter().append(\\\"path\\\").classed(\\\"js-line\\\",!0).attr(\\\"d\\\",\\\"M5,0h30\\\"),o.exit().remove(),o.call(h.lineGroupStyle)}function i(t){function e(t,e,r){var n=c.nestedProperty(a,t).get(),i=Array.isArray(n)&&e?e(n):n;if(r){if(i<r[0])return r[0];if(i>r[1])return r[1]}return i}function r(t){return t[0]}var n,i,o=t[0],a=o.trace,s=d.hasMarkers(a),u=d.hasText(a),f=d.hasLines(a);if(s||u||f){var p={},g={};s&&(p.mc=e(\\\"marker.color\\\",r),p.mo=e(\\\"marker.opacity\\\",c.mean,[.2,1]),p.ms=e(\\\"marker.size\\\",c.mean,[2,16]),p.mlc=e(\\\"marker.line.color\\\",r),p.mlw=e(\\\"marker.line.width\\\",c.mean,[0,5]),g.marker={sizeref:1,sizemin:1,sizemode:\\\"diameter\\\"}),f&&(g.line={width:e(\\\"line.width\\\",r,[0,10])}),u&&(p.tx=\\\"Aa\\\",p.tp=e(\\\"textposition\\\",r),p.ts=10,p.tc=e(\\\"textfont.color\\\",r),p.tf=e(\\\"textfont.family\\\",r)),n=[c.minExtend(o,p)],i=c.minExtend(a,g)}var v=l.select(this).select(\\\"g.legendpoints\\\"),m=v.selectAll(\\\"path.scatterpts\\\").data(s?n:[]);m.enter().append(\\\"path\\\").classed(\\\"scatterpts\\\",!0).attr(\\\"transform\\\",\\\"translate(20,0)\\\"),m.exit().remove(),m.call(h.pointStyle,i),s&&(n[0].mrc=3);var y=v.selectAll(\\\"g.pointtext\\\").data(u?n:[]);y.enter().append(\\\"g\\\").classed(\\\"pointtext\\\",!0).append(\\\"text\\\").attr(\\\"transform\\\",\\\"translate(20,0)\\\"),y.exit().remove(),y.selectAll(\\\"text\\\").call(h.textPointStyle,i)}function o(t){var e=t[0].trace,r=e.marker||{},n=r.line||{},i=l.select(this).select(\\\"g.legendpoints\\\").selectAll(\\\"path.legendbar\\\").data(u.traceIs(e,\\\"bar\\\")?[t]:[]);i.enter().append(\\\"path\\\").classed(\\\"legendbar\\\",!0).attr(\\\"d\\\",\\\"M6,6H-6V-6H6Z\\\").attr(\\\"transform\\\",\\\"translate(20,0)\\\"),i.exit().remove(),i.each(function(t){var e=(t.mlw+1||n.width+1)-1,i=l.select(this);i.style(\\\"stroke-width\\\",e+\\\"px\\\").call(f.fill,t.mc||r.color),e&&i.call(f.stroke,t.mlc||n.color)})}function a(t){var e=t[0].trace,r=l.select(this).select(\\\"g.legendpoints\\\").selectAll(\\\"path.legendbox\\\").data(u.traceIs(e,\\\"box\\\")&&e.visible?[t]:[]);r.enter().append(\\\"path\\\").classed(\\\"legendbox\\\",!0).attr(\\\"d\\\",\\\"M6,6H-6V-6H6Z\\\").attr(\\\"transform\\\",\\\"translate(20,0)\\\"),r.exit().remove(),r.each(function(t){var r=(t.lw+1||e.line.width+1)-1,n=l.select(this);n.style(\\\"stroke-width\\\",r+\\\"px\\\").call(f.fill,t.fc||e.fillcolor),r&&n.call(f.stroke,t.lc||e.line.color)})}function s(t){var e=t[0].trace,r=l.select(this).select(\\\"g.legendpoints\\\").selectAll(\\\"path.legendpie\\\").data(u.traceIs(e,\\\"pie\\\")&&e.visible?[t]:[]);r.enter().append(\\\"path\\\").classed(\\\"legendpie\\\",!0).attr(\\\"d\\\",\\\"M6,6H-6V-6H6Z\\\").attr(\\\"transform\\\",\\\"translate(20,0)\\\"),r.exit().remove(),r.size()&&r.call(p,t[0],e)}var l=t(\\\"d3\\\"),c=t(\\\"../../lib\\\"),u=t(\\\"../../plots/plots\\\"),h=t(\\\"../drawing\\\"),f=t(\\\"../color\\\"),d=t(\\\"../../traces/scatter/subtypes\\\"),p=t(\\\"../../traces/pie/style_one\\\");e.exports=function(t){t.each(function(t){var e=l.select(this),r=e.selectAll(\\\"g.legendfill\\\").data([t]);r.enter().append(\\\"g\\\").classed(\\\"legendfill\\\",!0);var n=e.selectAll(\\\"g.legendlines\\\").data([t]);n.enter().append(\\\"g\\\").classed(\\\"legendlines\\\",!0);var i=e.selectAll(\\\"g.legendsymbols\\\").data([t]);i.enter().append(\\\"g\\\").classed(\\\"legendsymbols\\\",!0),i.style(\\\"opacity\\\",t[0].trace.opacity),i.selectAll(\\\"g.legendpoints\\\").data([t]).enter().append(\\\"g\\\").classed(\\\"legendpoints\\\",!0)}).each(o).each(a).each(s).each(n).each(i)}},{\\\"../../lib\\\":373,\\\"../../plots/plots\\\":437,\\\"../../traces/pie/style_one\\\":526,\\\"../../traces/scatter/subtypes\\\":546,\\n\",\n       \"\\\"../color\\\":301,\\\"../drawing\\\":319,d3:70}],337:[function(t,e,r){\\\"use strict\\\";function n(t,e){var r=e.currentTarget,n=r.getAttribute(\\\"data-attr\\\"),i=r.getAttribute(\\\"data-val\\\")||!0,o=t._fullLayout,a={};if(\\\"zoom\\\"===n)for(var s,l,u,h=\\\"in\\\"===i?.5:2,f=(1+h)/2,d=(1-h)/2,g=c.Axes.list(t,null,!0),v=0;v<g.length;v++)s=g[v],s.fixedrange||(l=s._name,\\\"auto\\\"===i?a[l+\\\".autorange\\\"]=!0:\\\"reset\\\"===i?void 0===s._rangeInitial?a[l+\\\".autorange\\\"]=!0:a[l+\\\".range\\\"]=s._rangeInitial.slice():(u=s.range,a[l+\\\".range\\\"]=[f*u[0]+d*u[1],f*u[1]+d*u[0]]));else\\\"hovermode\\\"!==n||\\\"x\\\"!==i&&\\\"y\\\"!==i||(i=o._isHoriz?\\\"y\\\":\\\"x\\\",r.setAttribute(\\\"data-val\\\",i)),a[n]=i;c.relayout(t,a).then(function(){\\\"dragmode\\\"===n&&(o._hasCartesian&&c.Fx.setCursor(o._paper.select(\\\".nsewdrag\\\"),p[i]),c.Fx.supplyLayoutDefaults(t.layout,o,t._fullData),c.Fx.init(t))})}function i(t,e){for(var r=e.currentTarget,n=r.getAttribute(\\\"data-attr\\\"),i=r.getAttribute(\\\"data-val\\\")||!0,o=t._fullLayout,a=c.Plots.getSubplotIds(o,\\\"gl3d\\\"),s={},l=n.split(\\\".\\\"),u=0;u<a.length;u++)s[a[u]+\\\".\\\"+l[1]]=i;c.relayout(t,s)}function o(t,e){for(var r=e.currentTarget,n=r.getAttribute(\\\"data-attr\\\"),i=t._fullLayout,o=c.Plots.getSubplotIds(i,\\\"gl3d\\\"),a=0;a<o.length;a++){var s=o[a],l=i[s],u=l._scene;\\\"resetDefault\\\"===n?u.setCameraToDefault():\\\"resetLastSave\\\"===n&&u.setCamera(l.camera)}}function a(t,e){var r=e.currentTarget,n=r._previousVal||!1,i=t.layout,o=t._fullLayout,a=c.Plots.getSubplotIds(o,\\\"gl3d\\\"),s=[\\\"xaxis\\\",\\\"yaxis\\\",\\\"zaxis\\\"],l=[\\\"showspikes\\\",\\\"spikesides\\\",\\\"spikethickness\\\",\\\"spikecolor\\\"],h={},f={},d={};if(n)d=u.extendDeep(i,n),r._previousVal=null;else{d={\\\"allaxes.showspikes\\\":!1};for(var p=0;p<a.length;p++){var g=a[p],v=o[g],m=h[g]={};m.hovermode=v.hovermode,d[g+\\\".hovermode\\\"]=!1;for(var y=0;3>y;y++){var b=s[y];f=m[b]={};for(var x=0;x<l.length;x++){var _=l[x];f[_]=v[b][_]}}}r._previousVal=u.extendDeep({},h)}c.relayout(t,d)}function s(t,e){for(var r=e.currentTarget,n=r.getAttribute(\\\"data-attr\\\"),i=r.getAttribute(\\\"data-val\\\")||!0,o=t._fullLayout,a=c.Plots.getSubplotIds(o,\\\"geo\\\"),s=0;s<a.length;s++){var l=o[a[s]]._geo;if(\\\"zoom\\\"===n){var u=l.projection.scale(),h=\\\"in\\\"===i?2*u:.5*u;l.projection.scale(h),l.zoom.scale(h),l.render()}else\\\"reset\\\"===n&&l.zoomReset()}}function l(t){var e,r=t._fullLayout;e=r._hasCartesian?r._isHoriz?\\\"y\\\":\\\"x\\\":\\\"closest\\\";var n=t._fullLayout.hovermode?!1:e;c.relayout(t,\\\"hovermode\\\",n)}var c=t(\\\"../../plotly\\\"),u=t(\\\"../../lib\\\"),h=t(\\\"../../snapshot\\\"),f=t(\\\"../../../build/ploticon\\\"),d=e.exports={};d.toImage={name:\\\"toImage\\\",title:\\\"Download plot as a png\\\",icon:f.camera,click:function(t){var e=\\\"png\\\";if(u.isIE())return void u.notifier(\\\"Snapshotting is unavailable in Internet Explorer. Consider exporting your images using the Plotly Cloud\\\",\\\"long\\\");if(t._snapshotInProgress)return void u.notifier(\\\"Snapshotting is still in progress - please hold\\\",\\\"long\\\");t._snapshotInProgress=!0,u.notifier(\\\"Taking snapshot - this may take a few seconds\\\",\\\"long\\\");var r=h.toImage(t,{format:e}),n=t.fn||\\\"newplot\\\";n+=\\\".\\\"+e,r.once(\\\"success\\\",function(e){t._snapshotInProgress=!1;var i=document.createElement(\\\"a\\\");i.href=e,i.download=n,document.body.appendChild(i),i.click(),document.body.removeChild(i),r.clean()}),r.once(\\\"error\\\",function(n){t._snapshotInProgress=!1,u.notifier(\\\"Sorry there was a problem downloading your \\\"+e,\\\"long\\\"),console.error(n),r.clean()})}},d.sendDataToCloud={name:\\\"sendDataToCloud\\\",title:\\\"Save and edit plot in cloud\\\",icon:f.disk,click:function(t){c.Plots.sendDataToCloud(t)}},d.zoom2d={name:\\\"zoom2d\\\",title:\\\"Zoom\\\",attr:\\\"dragmode\\\",val:\\\"zoom\\\",icon:f.zoombox,click:n},d.pan2d={name:\\\"pan2d\\\",title:\\\"Pan\\\",attr:\\\"dragmode\\\",val:\\\"pan\\\",icon:f.pan,click:n},d.select2d={name:\\\"select2d\\\",title:\\\"Box Select\\\",attr:\\\"dragmode\\\",val:\\\"select\\\",icon:f.selectbox,click:n},d.lasso2d={name:\\\"lasso2d\\\",title:\\\"Lasso Select\\\",attr:\\\"dragmode\\\",val:\\\"lasso\\\",icon:f.lasso,click:n},d.zoomIn2d={name:\\\"zoomIn2d\\\",title:\\\"Zoom in\\\",attr:\\\"zoom\\\",val:\\\"in\\\",icon:f.zoom_plus,click:n},d.zoomOut2d={name:\\\"zoomOut2d\\\",title:\\\"Zoom out\\\",attr:\\\"zoom\\\",val:\\\"out\\\",icon:f.zoom_minus,click:n},d.autoScale2d={name:\\\"autoScale2d\\\",title:\\\"Autoscale\\\",attr:\\\"zoom\\\",val:\\\"auto\\\",icon:f.autoscale,click:n},d.resetScale2d={name:\\\"resetScale2d\\\",title:\\\"Reset axes\\\",attr:\\\"zoom\\\",val:\\\"reset\\\",icon:f.home,click:n},d.hoverClosestCartesian={name:\\\"hoverClosestCartesian\\\",title:\\\"Show closest data on hover\\\",attr:\\\"hovermode\\\",val:\\\"closest\\\",icon:f.tooltip_basic,gravity:\\\"ne\\\",click:n},d.hoverCompareCartesian={name:\\\"hoverCompareCartesian\\\",title:\\\"Compare data on hover\\\",attr:\\\"hovermode\\\",val:function(t){return t._fullLayout._isHoriz?\\\"y\\\":\\\"x\\\"},icon:f.tooltip_compare,gravity:\\\"ne\\\",click:n};var p={pan:\\\"move\\\",zoom:\\\"crosshair\\\",select:\\\"crosshair\\\",lasso:\\\"crosshair\\\"};d.zoom3d={name:\\\"zoom3d\\\",title:\\\"Zoom\\\",attr:\\\"scene.dragmode\\\",val:\\\"zoom\\\",icon:f.zoombox,click:i},d.pan3d={name:\\\"pan3d\\\",title:\\\"Pan\\\",attr:\\\"scene.dragmode\\\",val:\\\"pan\\\",icon:f.pan,click:i},d.orbitRotation={name:\\\"orbitRotation\\\",title:\\\"orbital rotation\\\",attr:\\\"scene.dragmode\\\",val:\\\"orbit\\\",icon:f[\\\"3d_rotate\\\"],click:i},d.tableRotation={name:\\\"tableRotation\\\",title:\\\"turntable rotation\\\",attr:\\\"scene.dragmode\\\",val:\\\"turntable\\\",icon:f[\\\"z-axis\\\"],click:i},d.resetCameraDefault3d={name:\\\"resetCameraDefault3d\\\",title:\\\"Reset camera to default\\\",attr:\\\"resetDefault\\\",icon:f.home,click:o},d.resetCameraLastSave3d={name:\\\"resetCameraLastSave3d\\\",title:\\\"Reset camera to last save\\\",attr:\\\"resetLastSave\\\",icon:f.movie,click:o},d.hoverClosest3d={name:\\\"hoverClosest3d\\\",title:\\\"Toggle show closest data on hover\\\",attr:\\\"hovermode\\\",val:null,toggle:!0,icon:f.tooltip_basic,gravity:\\\"ne\\\",click:a},d.zoomInGeo={name:\\\"zoomInGeo\\\",title:\\\"Zoom in\\\",attr:\\\"zoom\\\",val:\\\"in\\\",icon:f.zoom_plus,click:s},d.zoomOutGeo={name:\\\"zoomOutGeo\\\",title:\\\"Zoom out\\\",attr:\\\"zoom\\\",val:\\\"out\\\",icon:f.zoom_minus,click:s},d.resetGeo={name:\\\"resetGeo\\\",title:\\\"Reset\\\",attr:\\\"reset\\\",val:null,icon:f.autoscale,click:s},d.hoverClosestGeo={name:\\\"hoverClosestGeo\\\",title:\\\"Toggle show closest data on hover\\\",attr:\\\"hovermode\\\",val:null,toggle:!0,icon:f.tooltip_basic,gravity:\\\"ne\\\",click:l},d.hoverClosestGl2d={name:\\\"hoverClosestGl2d\\\",title:\\\"Toggle show closest data on hover\\\",attr:\\\"hovermode\\\",val:null,toggle:!0,icon:f.tooltip_basic,gravity:\\\"ne\\\",click:l},d.hoverClosestPie={name:\\\"hoverClosestPie\\\",title:\\\"Toggle show closest data on hover\\\",attr:\\\"hovermode\\\",val:\\\"closest\\\",icon:f.tooltip_basic,gravity:\\\"ne\\\",click:l},d.toggleHover={name:\\\"toggleHover\\\",title:\\\"Toggle show closest data on hover\\\",attr:\\\"hovermode\\\",val:null,toggle:!0,icon:f.tooltip_basic,gravity:\\\"ne\\\",click:function(t,e){l(t),a(t,e)}},d.resetViews={name:\\\"resetViews\\\",title:\\\"Reset views\\\",icon:f.home,click:function(t,e){var r=e.currentTarget;r.setAttribute(\\\"data-attr\\\",\\\"zoom\\\"),r.setAttribute(\\\"data-val\\\",\\\"reset\\\"),n(t,e),r.setAttribute(\\\"data-attr\\\",\\\"resetLastSave\\\"),o(t,e)}}},{\\\"../../../build/ploticon\\\":2,\\\"../../lib\\\":373,\\\"../../plotly\\\":390,\\\"../../snapshot\\\":444}],338:[function(t,e,r){\\\"use strict\\\";function n(t){this.container=t.container,this.element=document.createElement(\\\"div\\\"),this.update(t.graphInfo,t.buttons),this.container.appendChild(this.element)}function i(t,e){var r=t._fullLayout,i=new n({graphInfo:t,container:r._paperdiv.node(),buttons:e});return r._privateplot&&o.select(i.element).append(\\\"span\\\").classed(\\\"badge-private float--left\\\",!0).text(\\\"PRIVATE\\\"),i}var o=t(\\\"d3\\\"),a=t(\\\"../../lib\\\"),s=t(\\\"../../../build/ploticon\\\"),l=n.prototype;l.update=function(t,e){this.graphInfo=t;var r=this.graphInfo._context;\\\"hover\\\"===r.displayModeBar?this.element.className=\\\"modebar modebar--hover\\\":this.element.className=\\\"modebar\\\";var n=!this.hasButtons(e),i=this.hasLogo!==r.displaylogo;(n||i)&&(this.removeAllButtons(),this.updateButtons(e),r.displaylogo&&(this.element.appendChild(this.getLogo()),this.hasLogo=!0)),this.updateActiveButton()},l.updateButtons=function(t){var e=this;this.buttons=t,this.buttonElements=[],this.buttonsNames=[],this.buttons.forEach(function(t){var r=e.createGroup();t.forEach(function(t){var n=t.name;if(!n)throw new Error(\\\"must provide button 'name' in button config\\\");if(-1!==e.buttonsNames.indexOf(n))throw new Error(\\\"button name '\\\"+n+\\\"' is taken\\\");e.buttonsNames.push(n);var i=e.createButton(t);e.buttonElements.push(i),r.appendChild(i)}),e.element.appendChild(r)})},l.createGroup=function(){var t=document.createElement(\\\"div\\\");return t.className=\\\"modebar-group\\\",t},l.createButton=function(t){var e=this,r=document.createElement(\\\"a\\\");r.setAttribute(\\\"rel\\\",\\\"tooltip\\\"),r.className=\\\"modebar-btn\\\";var n=t.title;void 0===n&&(n=t.name),(n||0===n)&&r.setAttribute(\\\"data-title\\\",n),void 0!==t.attr&&r.setAttribute(\\\"data-attr\\\",t.attr);var i=t.val;void 0!==i&&(\\\"function\\\"==typeof i&&(i=i(this.graphInfo)),r.setAttribute(\\\"data-val\\\",i));var o=t.click;if(\\\"function\\\"!=typeof o)throw new Error(\\\"must provide button 'click' function in button config\\\");return r.addEventListener(\\\"click\\\",function(r){t.click(e.graphInfo,r),e.updateActiveButton(r.currentTarget)}),r.setAttribute(\\\"data-toggle\\\",t.toggle||!1),t.toggle&&r.classList.add(\\\"active\\\"),r.appendChild(this.createIcon(t.icon||s.question)),r.setAttribute(\\\"data-gravity\\\",t.gravity||\\\"n\\\"),r},l.createIcon=function(t){var e=t.ascent-t.descent,r=\\\"http://www.w3.org/2000/svg\\\",n=document.createElementNS(r,\\\"svg\\\"),i=document.createElementNS(r,\\\"path\\\");return n.setAttribute(\\\"height\\\",\\\"1em\\\"),n.setAttribute(\\\"width\\\",t.width/e+\\\"em\\\"),n.setAttribute(\\\"viewBox\\\",[0,0,t.width,e].join(\\\" \\\")),i.setAttribute(\\\"d\\\",t.path),i.setAttribute(\\\"transform\\\",\\\"matrix(1 0 0 -1 0 \\\"+t.ascent+\\\")\\\"),n.appendChild(i),n},l.updateActiveButton=function(t){var e=this.graphInfo._fullLayout,r=void 0!==t?t.getAttribute(\\\"data-attr\\\"):null;this.buttonElements.forEach(function(t){var n=t.getAttribute(\\\"data-val\\\")||!0,i=t.getAttribute(\\\"data-attr\\\"),s=\\\"true\\\"===t.getAttribute(\\\"data-toggle\\\"),l=o.select(t);if(s)i===r&&l.classed(\\\"active\\\",!l.classed(\\\"active\\\"));else{var c=null===i?i:a.nestedProperty(e,i).get();l.classed(\\\"active\\\",c===n)}})},l.hasButtons=function(t){var e=this.buttons;if(!e)return!1;if(t.length!==e.length)return!1;for(var r=0;r<t.length;++r){if(t[r].length!==e[r].length)return!1;for(var n=0;n<t[r].length;n++)if(t[r][n].name!==e[r][n].name)return!1}return!0},l.getLogo=function(){var t=this.createGroup(),e=document.createElement(\\\"a\\\");return e.href=\\\"https://plot.ly/\\\",e.target=\\\"_blank\\\",e.setAttribute(\\\"data-title\\\",\\\"Produced with Plotly\\\"),e.className=\\\"modebar-btn plotlyjsicon modebar-btn--logo\\\",e.appendChild(this.createIcon(s.plotlylogo)),t.appendChild(e),t},l.removeAllButtons=function(){for(;this.element.firstChild;)this.element.removeChild(this.element.firstChild);this.hasLogo=!1},l.destroy=function(){a.removeElement(this.container.querySelector(\\\".modebar\\\"))},e.exports=i},{\\\"../../../build/ploticon\\\":2,\\\"../../lib\\\":373,d3:70}],339:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){function n(t){for(var r=[],n=0;n<t.length;n++){var i=t[n];-1===e.indexOf(i)&&r.push(h[i])}g.push(r)}var s=t._fullLayout,l=t._fullData,c=s._hasCartesian,u=s._hasGL3D,f=s._hasGeo,d=s._hasPie,p=s._hasGL2D,g=[];if(n([\\\"toImage\\\",\\\"sendDataToCloud\\\"]),(c||p||d)+f+u>1)return n([\\\"resetViews\\\",\\\"toggleHover\\\"]),a(g,r);u&&(n([\\\"zoom3d\\\",\\\"pan3d\\\",\\\"orbitRotation\\\",\\\"tableRotation\\\"]),n([\\\"resetCameraDefault3d\\\",\\\"resetCameraLastSave3d\\\"]),n([\\\"hoverClosest3d\\\"])),f&&(n([\\\"zoomInGeo\\\",\\\"zoomOutGeo\\\",\\\"resetGeo\\\"]),n([\\\"hoverClosestGeo\\\"]));var v=i(s),m=[];return!c&&!p||v||(m=[\\\"zoom2d\\\",\\\"pan2d\\\"]),c&&o(l)&&(m.push(\\\"select2d\\\"),m.push(\\\"lasso2d\\\")),m.length&&n(m),!c&&!p||v||n([\\\"zoomIn2d\\\",\\\"zoomOut2d\\\",\\\"autoScale2d\\\",\\\"resetScale2d\\\"]),c&&d?n([\\\"toggleHover\\\"]):p?n([\\\"hoverClosestGl2d\\\"]):c?n([\\\"hoverClosestCartesian\\\",\\\"hoverCompareCartesian\\\"]):d&&n([\\\"hoverClosestPie\\\"]),a(g,r)}function i(t){for(var e=l.Axes.list({_fullLayout:t},null,!0),r=!0,n=0;n<e.length;n++)if(!e[n].fixedrange){r=!1;break}return r}function o(t){for(var e=!1,r=0;r<t.length&&!e;r++){var n=t[r];n._module&&n._module.selectPoints&&(\\\"scatter\\\"===n.type?(c.hasMarkers(n)||c.hasText(n))&&(e=!0):e=!0)}return e}function a(t,e){if(e.length)if(Array.isArray(e[0]))for(var r=0;r<e.length;r++)t.push(e[r]);else t.push(e);return t}function s(t){for(var e=0;e<t.length;e++)for(var r=t[e],n=0;n<r.length;n++){var i=r[n];if(\\\"string\\\"==typeof i){if(void 0===h[i])throw new Error([\\\"*modeBarButtons* configuration options\\\",\\\"invalid button name\\\"].join(\\\" \\\"));t[e][n]=h[i]}}return t}var l=t(\\\"../../plotly\\\"),c=t(\\\"../../traces/scatter/subtypes\\\"),u=t(\\\"./\\\"),h=t(\\\"./buttons\\\");e.exports=function(t){var e=t._fullLayout,r=t._context,i=e._modeBar;if(!r.displayModeBar)return void(i&&(i.destroy(),delete e._modeBar));if(!Array.isArray(r.modeBarButtonsToRemove))throw new Error([\\\"*modeBarButtonsToRemove* configuration options\\\",\\\"must be an array.\\\"].join(\\\" \\\"));if(!Array.isArray(r.modeBarButtonsToAdd))throw new Error([\\\"*modeBarButtonsToAdd* configuration options\\\",\\\"must be an array.\\\"].join(\\\" \\\"));var o,a=r.modeBarButtons;o=Array.isArray(a)&&a.length?s(a):n(t,r.modeBarButtonsToRemove,r.modeBarButtonsToAdd),i?i.update(t,o):e._modeBar=u(t,o)}},{\\\"../../plotly\\\":390,\\\"../../traces/scatter/subtypes\\\":546,\\\"./\\\":338,\\\"./buttons\\\":337}],340:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../plots/font_attributes\\\"),i=t(\\\"../color/attributes\\\"),o=t(\\\"../../lib/extend\\\").extendFlat,a=t(\\\"./button_attributes\\\");a=o(a,{_isLinkedToArray:!0}),e.exports={visible:{valType:\\\"boolean\\\"},buttons:a,x:{valType:\\\"number\\\",min:-2,max:3},xanchor:{valType:\\\"enumerated\\\",values:[\\\"auto\\\",\\\"left\\\",\\\"center\\\",\\\"right\\\"],dflt:\\\"left\\\"},y:{valType:\\\"number\\\",min:-2,max:3},yanchor:{valType:\\\"enumerated\\\",values:[\\\"auto\\\",\\\"top\\\",\\\"middle\\\",\\\"bottom\\\"],dflt:\\\"bottom\\\"},font:o({},n,{}),bgcolor:{valType:\\\"color\\\",dflt:i.lightLine},bordercolor:{valType:\\\"color\\\",dflt:i.defaultLine},borderwidth:{valType:\\\"number\\\",min:0,dflt:0}}},{\\\"../../lib/extend\\\":369,\\\"../../plots/font_attributes\\\":407,\\\"../color/attributes\\\":300,\\\"./button_attributes\\\":341}],341:[function(t,e,r){\\\"use strict\\\";e.exports={step:{valType:\\\"enumerated\\\",values:[\\\"month\\\",\\\"year\\\",\\\"day\\\",\\\"hour\\\",\\\"minute\\\",\\\"second\\\",\\\"all\\\"],dflt:\\\"month\\\"},stepmode:{valType:\\\"enumerated\\\",values:[\\\"backward\\\",\\\"todate\\\"],dflt:\\\"backward\\\"},count:{valType:\\\"number\\\",min:0,dflt:1},label:{valType:\\\"string\\\"}}},{}],342:[function(t,e,r){\\\"use strict\\\";e.exports={yPad:.02,minButtonWidth:30,rx:3,ry:3,activeColor:\\\"#d3d3d3\\\"}},{}],343:[function(t,e,r){\\\"use strict\\\";function n(t,e){function r(t,e){return o.coerce(n,i,s,t,e)}for(var n,i,a=t.buttons||[],l=e.buttons=[],c=0;c<a.length;c++){n=a[c],i={};var u=r(\\\"step\\\");\\\"all\\\"!==u&&(r(\\\"stepmode\\\"),r(\\\"count\\\")),r(\\\"label\\\"),l.push(i)}return l}function i(t,e,r){for(var n=r.filter(function(r){return e[r].anchor===t._id}),i=0,o=0;o<n.length;o++)i=Math.max(e[n[o]].domain[1],i);return[t.domain[0],i+l.yPad]}var o=t(\\\"../../lib\\\"),a=t(\\\"./attributes\\\"),s=t(\\\"./button_attributes\\\"),l=t(\\\"./constants\\\");e.exports=function(t,e,r,s){function l(t,e){return o.coerce(c,u,a,t,e)}var c=t.rangeselector||{},u=e.rangeselector={},h=n(c,u),f=l(\\\"visible\\\",h.length>0);if(f){var d=i(e,r,s);l(\\\"x\\\",d[0]),l(\\\"y\\\",d[1]),o.noneOrAll(t,e,[\\\"x\\\",\\\"y\\\"]),l(\\\"xanchor\\\"),l(\\\"yanchor\\\"),o.coerceFont(l,\\\"font\\\",r.font),l(\\\"bgcolor\\\"),l(\\\"bordercolor\\\"),l(\\\"borderwidth\\\")}}},{\\\"../../lib\\\":373,\\\"./attributes\\\":340,\\\"./button_attributes\\\":341,\\\"./constants\\\":342}],344:[function(t,e,r){\\\"use strict\\\";function n(t){for(var e=m.list(t,\\\"x\\\",!0),r=[],n=0;n<e.length;n++){var i=e[n];i.rangeselector&&i.rangeselector.visible&&r.push(i)}return r}function i(t){return t._id}function o(t,e,r){if(\\\"all\\\"===e.step)return t.autorange===!0;var n=Object.keys(r);return t.range[0]===r[n[0]]&&t.range[1]===r[n[1]]}function a(t,e,r){var n=t.selectAll(\\\"rect\\\").data([0]);n.enter().append(\\\"rect\\\").classed(\\\"selector-rect\\\",!0),n.attr(\\\"shape-rendering\\\",\\\"crispEdges\\\"),n.attr({rx:b.rx,ry:b.ry}),n.call(p.stroke,e.bordercolor).call(p.fill,s(e,r)).style(\\\"stroke-width\\\",e.borderwidth+\\\"px\\\")}function s(t,e){return e.isActive||e.isHovered?b.activeColor:t.bgcolor}function l(t,e,r){function n(t){v.convertToTspans(t)}var i=t.selectAll(\\\"text\\\").data([0]);i.enter().append(\\\"text\\\").classed(\\\"selector-text\\\",!0).classed(\\\"user-select-none\\\",!0),i.attr(\\\"text-anchor\\\",\\\"middle\\\"),i.call(g.font,e.font).text(c(r)).call(n)}function c(t){return t.label?t.label:\\\"all\\\"===t.step?\\\"all\\\":t.count+t.step.charAt(0)}function u(t,e,r,n){r.width=0,r.height=0;var i=r.borderwidth;e.each(function(){var t=h.select(this),e=t.select(\\\".selector-text\\\"),n=e.selectAll(\\\"tspan\\\"),i=1.3*r.font.size,o=n[0].length||1,a=Math.max(i*o,16)+3;r.height=Math.max(r.height,a)}),e.each(function(){var t=h.select(this),e=t.select(\\\".selector-rect\\\"),n=t.select(\\\".selector-text\\\"),o=n.selectAll(\\\"tspan\\\"),a=n.node()&&g.bBox(n.node()).width,s=1.3*r.font.size,l=o[0].length||1,c=Math.max(a+10,b.minButtonWidth);t.attr(\\\"transform\\\",\\\"translate(\\\"+(i+r.width)+\\\",\\\"+i+\\\")\\\"),e.attr({x:0,y:0,width:c,height:r.height});var u={x:c/2,y:r.height/2-(l-1)*s/2+3};n.attr(u),o.attr(u),r.width+=c+5}),e.selectAll(\\\"rect\\\").attr(\\\"height\\\",r.height);var o=t._fullLayout._size;r.lx=o.l+o.w*r.x,r.ly=o.t+o.h*(1-r.y);var a=\\\"left\\\";y.isRightAnchor(r)&&(r.lx-=r.width,a=\\\"right\\\"),y.isCenterAnchor(r)&&(r.lx-=r.width/2,a=\\\"center\\\");var s=\\\"top\\\";y.isBottomAnchor(r)&&(r.ly-=r.height,s=\\\"bottom\\\"),y.isMiddleAnchor(r)&&(r.ly-=r.height/2,s=\\\"middle\\\"),r.width=Math.ceil(r.width),r.height=Math.ceil(r.height),r.lx=Math.round(r.lx),r.ly=Math.round(r.ly),d.autoMargin(t,n+\\\"-range-selector\\\",{x:r.x,y:r.y,l:r.width*({right:1,center:.5}[a]||0),r:r.width*({left:1,center:.5}[a]||0),b:r.height*({top:1,middle:.5}[s]||0),t:r.height*({bottom:1,middle:.5}[s]||0)})}var h=t(\\\"d3\\\"),f=t(\\\"../../plotly\\\"),d=t(\\\"../../plots/plots\\\"),p=t(\\\"../color\\\"),g=t(\\\"../drawing\\\"),v=t(\\\"../../lib/svg_text_utils\\\"),m=t(\\\"../../plots/cartesian/axis_ids\\\"),y=t(\\\"../legend/anchor_utils\\\"),b=t(\\\"./constants\\\"),x=t(\\\"./get_update_object\\\");e.exports=function(t){var e=t._fullLayout,r=e._infolayer.selectAll(\\\".rangeselector\\\").data(n(t),i);r.enter().append(\\\"g\\\").classed(\\\"rangeselector\\\",!0),r.exit().remove(),r.style({cursor:\\\"pointer\\\",\\\"pointer-events\\\":\\\"all\\\"}),r.each(function(e){var r=h.select(this),n=e,i=n.rangeselector,s=r.selectAll(\\\"g.button\\\").data(i.buttons);s.enter().append(\\\"g\\\").classed(\\\"button\\\",!0),s.exit().remove(),s.each(function(e){var r=h.select(this),s=x(n,e);e.isActive=o(n,e,s),r.call(a,i,e),r.call(l,i,e),r.on(\\\"click\\\",function(){t._dragged||f.relayout(t,s)}),r.on(\\\"mouseover\\\",function(){e.isHovered=!0,r.call(a,i,e)}),r.on(\\\"mouseout\\\",function(){e.isHovered=!1,r.call(a,i,e)})}),u(t,s,i,n._name),r.attr(\\\"transform\\\",\\\"translate(\\\"+i.lx+\\\",\\\"+i.ly+\\\")\\\")})}},{\\\"../../lib/svg_text_utils\\\":384,\\\"../../plotly\\\":390,\\\"../../plots/cartesian/axis_ids\\\":395,\\\"../../plots/plots\\\":437,\\\"../color\\\":301,\\\"../drawing\\\":319,\\\"../legend/anchor_utils\\\":328,\\\"./constants\\\":342,\\\"./get_update_object\\\":345,d3:70}],345:[function(t,e,r){\\\"use strict\\\";function n(t,e){var r,n=t.range,o=new Date(n[1]),a=e.step,s=e.count;switch(e.stepmode){case\\\"backward\\\":r=i.time[a].offset(o,-s).getTime();break;case\\\"todate\\\":var l=i.time[a].offset(o,-(s-1));r=i.time[a].floor(l).getTime()}var c=n[1];return[r,c]}var i=t(\\\"d3\\\");e.exports=function(t,e){var r=t._name,i={};if(\\\"all\\\"===e.step)i[r+\\\".autorange\\\"]=!0;else{var o=n(t,e);i[r+\\\".range[0]\\\"]=o[0],i[r+\\\".range[1]\\\"]=o[1]}return i}},{d3:70}],346:[function(t,e,r){\\\"use strict\\\";r.attributes=t(\\\"./attributes\\\"),r.supplyLayoutDefaults=t(\\\"./defaults\\\"),r.draw=t(\\\"./draw\\\")},{\\\"./attributes\\\":340,\\\"./defaults\\\":343,\\\"./draw\\\":344}],347:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../color/attributes\\\");e.exports={bgcolor:{valType:\\\"color\\\",dflt:n.background},bordercolor:{valType:\\\"color\\\",dflt:n.defaultLine},borderwidth:{valType:\\\"integer\\\",dflt:0,min:0},thickness:{valType:\\\"number\\\",dflt:.15,min:0,max:1},visible:{valType:\\\"boolean\\\",dflt:!0}}},{\\\"../color/attributes\\\":300}],348:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../plotly\\\"),i=t(\\\"../../lib\\\"),o=t(\\\"../../constants/xmlns_namespaces\\\").svg,a=t(\\\"./helpers\\\"),s=t(\\\"./range_plot\\\");e.exports=function(t,e,r){function l(t,e){t=t||-(1/0),e=e||1/0;var r=u.xaxis.range[0],n=u.xaxis.range[1],i=n-r,o=(t-r)/i*d,a=(e-r)/i*d;c(o,a)}function c(e,r){if(e=i.constrain(e,0,d),r=i.constrain(r,0,d),e>r){var o=r;r=e,e=o}a.setAttributes(b,{\\\"data-min\\\":e,\\\"data-max\\\":r}),a.setAttributes(C,{x:e,width:r-e}),a.setAttributes(w,{width:e}),a.setAttributes(A,{x:r,width:d-r}),a.setAttributes(k,{transform:\\\"translate(\\\"+(e-g-1)+\\\")\\\"}),a.setAttributes(E,{transform:\\\"translate(\\\"+r+\\\")\\\"});var s=u.xaxis.range[0],l=u.xaxis.range[1],c=l-s,h=e/d*c+s,f=r/d*c+s;window.requestAnimationFrame?window.requestAnimationFrame(function(){n.relayout(t,\\\"xaxis.range\\\",[h,f])}):setTimeout(function(){n.relayout(t,\\\"xaxis.range\\\",[h,f])},16)}var u=t._fullLayout,h=u._infolayer.selectAll(\\\"g.range-slider\\\"),f=u.xaxis.rangeslider,d=u._size.w,p=(u.height-u.margin.b-u.margin.t)*f.thickness,g=2,v=Math.floor(f.borderwidth/2),m=u.margin.l,y=u.height-p-u.margin.b;e=e||0,r=r||d;var b=document.createElementNS(o,\\\"g\\\");a.setAttributes(b,{\\\"class\\\":\\\"range-slider\\\",\\\"data-min\\\":e,\\\"data-max\\\":r,\\\"pointer-events\\\":\\\"all\\\",transform:\\\"translate(\\\"+m+\\\",\\\"+y+\\\")\\\"});var x=document.createElementNS(o,\\\"rect\\\"),_=f.borderwidth%2===0?f.borderwidth:f.borderwidth-1;a.setAttributes(x,{fill:f.bgcolor,stroke:f.bordercolor,\\\"stroke-width\\\":f.borderwidth,height:p+_,width:d+_,transform:\\\"translate(-\\\"+v+\\\", -\\\"+v+\\\")\\\",\\\"shape-rendering\\\":\\\"crispEdges\\\"});var w=document.createElementNS(o,\\\"rect\\\");a.setAttributes(w,{x:0,width:e,height:p,fill:\\\"rgba(0,0,0,0.4)\\\"});var A=document.createElementNS(o,\\\"rect\\\");a.setAttributes(A,{x:r,width:d-r,height:p,fill:\\\"rgba(0,0,0,0.4)\\\"});var k=document.createElementNS(o,\\\"g\\\"),M=document.createElementNS(o,\\\"rect\\\"),T=document.createElementNS(o,\\\"rect\\\");a.setAttributes(k,{transform:\\\"translate(\\\"+(e-g-1)+\\\")\\\"}),a.setAttributes(M,{width:10,height:p,x:-6,fill:\\\"transparent\\\",cursor:\\\"col-resize\\\"}),a.setAttributes(T,{width:g,height:p/2,y:p/4,rx:1,fill:\\\"white\\\",stroke:\\\"#666\\\",\\\"shape-rendering\\\":\\\"crispEdges\\\"}),a.appendChildren(k,[T,M]);var E=document.createElementNS(o,\\\"g\\\"),L=document.createElementNS(o,\\\"rect\\\"),S=document.createElementNS(o,\\\"rect\\\");a.setAttributes(E,{transform:\\\"translate(\\\"+r+\\\")\\\"}),a.setAttributes(L,{width:10,height:p,x:-2,fill:\\\"transparent\\\",cursor:\\\"col-resize\\\"}),a.setAttributes(S,{width:g,height:p/2,y:p/4,rx:1,fill:\\\"white\\\",stroke:\\\"#666\\\",\\\"shape-rendering\\\":\\\"crispEdges\\\"}),a.appendChildren(E,[S,L]);var C=document.createElementNS(o,\\\"rect\\\");a.setAttributes(C,{x:e,width:r-e,height:p,cursor:\\\"ew-resize\\\",fill:\\\"transparent\\\"}),b.addEventListener(\\\"mousedown\\\",function(t){function e(t){var e=+t.clientX-i;switch(n){case C:b.style.cursor=\\\"ew-resize\\\",c(+s+e,+a+e);break;case M:b.style.cursor=\\\"col-resize\\\",c(+a+e,+s);break;case L:b.style.cursor=\\\"col-resize\\\",c(+a,+s+e);break;default:b.style.cursor=\\\"ew-resize\\\",c(o,o+e)}}function r(){window.removeEventListener(\\\"mousemove\\\",e),window.removeEventListener(\\\"mouseup\\\",r),b.style.cursor=\\\"auto\\\"}var n=t.target,i=t.clientX,o=i-b.getBoundingClientRect().left,a=b.getAttribute(\\\"data-min\\\"),s=b.getAttribute(\\\"data-max\\\");window.addEventListener(\\\"mousemove\\\",e),window.addEventListener(\\\"mouseup\\\",r)});var P=s(t,d,p);a.appendChildren(b,[x,P,w,A,C,k,E]),h.data([0]).enter().append(function(){return f.setRange=l,b})}},{\\\"../../constants/xmlns_namespaces\\\":362,\\\"../../lib\\\":373,\\\"../../plotly\\\":390,\\\"./helpers\\\":351,\\\"./range_plot\\\":353}],349:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../lib\\\");e.exports={linear:function(t){return t},log:function(t){return Math.log(t)/Math.log(10)},date:function(t){return n.dateTime2ms(t)},category:function(t,e){return e}}},{\\\"../../lib\\\":373}],350:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../lib\\\"),i=t(\\\"./attributes\\\");e.exports=function(t,e,r,o){function a(t,e){return n.coerce(s,l,i,t,e)}if(t[r].rangeslider){var s=\\\"object\\\"==typeof t[r].rangeslider?t[r].rangeslider:{},l=e[r].rangeslider={};a(\\\"visible\\\"),a(\\\"thickness\\\"),a(\\\"bgcolor\\\"),a(\\\"bordercolor\\\"),a(\\\"borderwidth\\\"),l.visible&&o.forEach(function(t){var r=e[t]||{};r.fixedrange=!0,e[t]=r})}}},{\\\"../../lib\\\":373,\\\"./attributes\\\":347}],351:[function(t,e,r){\\\"use strict\\\";r.setAttributes=function(t,e){for(var r in e)t.setAttribute(r,e[r])},r.appendChildren=function(t,e){for(var r=0;r<e.length;r++)e[r]&&t.appendChild(e[r])}},{}],352:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){if(t._fullLayout.xaxis){var n=t._fullLayout,a=n._infolayer.selectAll(\\\"g.range-slider\\\"),s=n.xaxis.rangeslider;if(!s||!s.visible)return a.data([]).exit().remove(),void i.autoMargin(t,\\\"range-slider\\\");var l=(n.height-n.margin.b-n.margin.t)*s.thickness,c=Math.floor(s.borderwidth/2);0!==a[0].length||n._hasGL2D||o(t,e,r);var u=n.xaxis._boundingBox?n.xaxis._boundingBox.height:0;i.autoMargin(t,\\\"range-slider\\\",{x:0,y:0,l:0,r:0,t:0,b:l+n.margin.b+u,pad:15+2*c})}}var i=t(\\\"../../plots/plots\\\"),o=t(\\\"./create_slider\\\"),a=t(\\\"./defaults\\\");e.exports={draw:n,supplyLayoutDefaults:a}},{\\\"../../plots/plots\\\":437,\\\"./create_slider\\\":348,\\\"./defaults\\\":350}],353:[function(t,e,r){\\\"use strict\\\";function n(t,e,r,n){var s,c,u;if(t.line){s=document.createElementNS(l,\\\"path\\\");var h=o.smoothopen(e,t.line.smoothing||0);a.setAttributes(s,{d:h,fill:\\\"none\\\",stroke:t.line?t.line.color:\\\"transparent\\\",\\\"stroke-width\\\":t.line.width/2||1,opacity:1})}if(t.marker){c=document.createElementNS(l,\\\"g\\\");var f=e.map(function(e,r){var n,o=document.createElementNS(l,\\\"g\\\"),s=document.createElementNS(l,\\\"path\\\");return n=Array.isArray(t.marker.size)?\\\"number\\\"==typeof t.marker.size[r]?Math.max(t.marker.size[r]/(t.marker.sizeref||1)/15,0):0:Math.max(t.marker.size/15,2),a.setAttributes(s,{d:i[t.marker.symbol].f(n),fill:t.marker.color,stroke:t.marker.line.color,\\\"stroke-width\\\":t.marker.line.width,opacity:t.marker.opacity}),a.setAttributes(o,{transform:\\\"translate(\\\"+e[0]+\\\",\\\"+e[1]+\\\")\\\"}),o.appendChild(s),o});a.appendChildren(c,f)}if(\\\"none\\\"!==t.fill){switch(u=document.createElementNS(l,\\\"path\\\"),t.fill){case\\\"tozeroy\\\":e.unshift([e[0][0],n]),e.push([e[e.length-1][0],n]);break;case\\\"tozerox\\\":e.unshift([0,e[e.length-1][1]]);break;default:console.log(\\\"Fill type \\\"+t.fill+\\\" not supported for range slider! (yet...)\\\")}var d=o.smoothopen(e,t.line.smoothing||0);a.setAttributes(u,{d:d,fill:t.fillcolor||\\\"transparent\\\"})}return[s,c,u]}var i=t(\\\"../drawing/symbol_defs\\\"),o=t(\\\"../drawing\\\"),a=t(\\\"./helpers\\\"),s=t(\\\"./data_processors\\\"),l=t(\\\"../../constants/xmlns_namespaces\\\").svg;e.exports=function c(t,e,r){var i=t._fullData,o=t._fullLayout.xaxis,u=t._fullLayout.yaxis,h=o.range[0],f=o.range[1],d=u.range[0],p=u.range[1],g=document.createElementNS(l,\\\"path\\\");g.setAttribute(\\\"d\\\",[\\\"M0,0\\\",e+\\\",0\\\",e+\\\",\\\"+r,\\\"0,\\\"+r,\\\"Z\\\"].join(\\\" \\\"));var v=document.createElementNS(l,\\\"clipPath\\\");v.setAttribute(\\\"id\\\",\\\"range-clip-path\\\"),v.appendChild(g);var m=document.createElementNS(l,\\\"defs\\\");m.appendChild(v);var c=document.createElementNS(l,\\\"g\\\");c.setAttribute(\\\"clip-path\\\",\\\"url(#range-clip-path)\\\"),c.appendChild(m);for(var y=s[t._fullLayout.xaxis.type||\\\"category\\\"],b=s[t._fullLayout.yaxis.type||\\\"category\\\"],x=[\\\"scatter\\\"],_=0;_<i.length;_++){var w=i[_],A=[];if(x.indexOf(w.type)<0)console.log(\\\"Trace type \\\"+w.type+\\\" not supported for range slider!\\\");else{for(var k=0;k<w.x.length;k++){var M=y(w.x[k],k),T=b(w.y[k],k),E=e*(M-h)/(f-h),L=r*(1-(T-d)/(p-d));A.push([E,L])}a.appendChildren(c,n(w,A,e,r))}}return c}},{\\\"../../constants/xmlns_namespaces\\\":362,\\\"../drawing\\\":319,\\\"../drawing/symbol_defs\\\":320,\\\"./data_processors\\\":349,\\\"./helpers\\\":351}],354:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../annotations/attributes\\\"),i=t(\\\"../../traces/scatter/attributes\\\"),o=t(\\\"../../lib/extend\\\").extendFlat,a=i.line;e.exports={_isLinkedToArray:!0,type:{valType:\\\"enumerated\\\",values:[\\\"circle\\\",\\\"rect\\\",\\\"path\\\",\\\"line\\\"]},xref:o({},n.xref,{}),x0:{valType:\\\"any\\\"},x1:{valType:\\\"any\\\"},yref:o({},n.yref,{}),y0:{valType:\\\"any\\\"},y1:{valType:\\\"any\\\"},path:{valType:\\\"string\\\"},opacity:{valType:\\\"number\\\",min:0,max:1,dflt:1},line:{color:a.color,width:a.width,dash:a.dash},fillcolor:{valType:\\\"color\\\",dflt:\\\"rgba(0,0,0,0)\\\"}}},{\\\"../../lib/extend\\\":369,\\\"../../traces/scatter/attributes\\\":528,\\\"../annotations/attributes\\\":298}],355:[function(t,e,r){\\\"use strict\\\";function n(t,e){function r(e,r){return c.Lib.coerce(t,n,h.layoutAttributes,e,r)}var n={};r(\\\"opacity\\\"),r(\\\"fillcolor\\\"),r(\\\"line.color\\\"),r(\\\"line.width\\\"),r(\\\"line.dash\\\");for(var i=t.path?\\\"path\\\":\\\"rect\\\",a=r(\\\"type\\\",i),s=[\\\"x\\\",\\\"y\\\"],l=0;2>l;l++){var u=s[l],f={_fullLayout:e},d=c.Axes.coerceRef(t,n,f,u);if(\\\"path\\\"!==a){var p=.25,g=.75;if(\\\"paper\\\"!==d){var v=c.Axes.getFromId(f,d),m=o(v);p=m(v.range[0]+p*(v.range[1]-v.range[0])),g=m(v.range[0]+g*(v.range[1]-v.range[0]))}r(u+\\\"0\\\",p),r(u+\\\"1\\\",g)}}return\\\"path\\\"===a?r(\\\"path\\\"):c.Lib.noneOrAll(t,n,[\\\"x0\\\",\\\"x1\\\",\\\"y0\\\",\\\"y1\\\"]),n}function i(t){return\\\"category\\\"===t.type?t.c2l:t.d2l}function o(t){return\\\"category\\\"===t.type?t.l2c:t.l2d}function a(t){return function(e){return t(e.replace(\\\"_\\\",\\\" \\\"))}}function s(t,e){var r,n,o,s,l=e.type,u=c.Axes.getFromId(t,e.xref),f=c.Axes.getFromId(t,e.yref),d=t._fullLayout._size;if(u?(r=i(u),n=function(t){return u._offset+u.l2p(r(t,!0))}):n=function(t){return d.l+d.w*t},f?(o=i(f),s=function(t){return f._offset+f.l2p(o(t,!0))}):s=function(t){return d.t+d.h*(1-t)},\\\"path\\\"===l)return u&&\\\"date\\\"===u.type&&(n=a(n)),f&&\\\"date\\\"===f.type&&(s=a(s)),h.convertPath(e.path,n,s);var p=n(e.x0),g=n(e.x1),v=s(e.y0),m=s(e.y1);if(\\\"line\\\"===l)return\\\"M\\\"+p+\\\",\\\"+v+\\\"L\\\"+g+\\\",\\\"+m;if(\\\"rect\\\"===l)return\\\"M\\\"+p+\\\",\\\"+v+\\\"H\\\"+g+\\\"V\\\"+m+\\\"H\\\"+p+\\\"Z\\\";var y=(p+g)/2,b=(v+m)/2,x=Math.abs(y-p),_=Math.abs(b-v),w=\\\"A\\\"+x+\\\",\\\"+_,A=y+x+\\\",\\\"+b,k=y+\\\",\\\"+(b-_);return\\\"M\\\"+A+w+\\\" 0 1,1 \\\"+k+w+\\\" 0 0,1 \\\"+A+\\\"Z\\\"}function l(t,e,r,n,i){var o=\\\"category\\\"===t.type?Number:t.d2c;if(void 0!==e)return[o(e),o(r)];if(n){var s,l,c,u,h,p=1/0,g=-(1/0),v=n.match(f);for(\\\"date\\\"===t.type&&(o=a(o)),s=0;s<v.length;s++)l=v[s],c=i[l.charAt(0)].drawn,void 0!==c&&(u=v[s].substr(1).match(d),!u||u.length<c||(h=o(u[c]),p>h&&(p=h),h>g&&(g=h)));return g>=p?[p,g]:void 0}}var c=t(\\\"../../plotly\\\"),u=t(\\\"fast-isnumeric\\\"),h=e.exports={};h.layoutAttributes=t(\\\"./attributes\\\"),h.supplyLayoutDefaults=function(t,e){for(var r=t.shapes||[],i=e.shapes=[],o=0;o<r.length;o++)i.push(n(r[o]||{},e))},h.drawAll=function(t){var e=t._fullLayout;e._shapelayer.selectAll(\\\"path\\\").remove();for(var r=0;r<e.shapes.length;r++)h.draw(t,r)},h.add=function(t){var e=t._fullLayout.shapes.length;c.relayout(t,\\\"shapes[\\\"+e+\\\"]\\\",\\\"add\\\")},h.draw=function(t,e,r,a){var l,f=t.layout,d=t._fullLayout;if(!u(e)||-1===e){if(!e&&Array.isArray(a))return f.shapes=a,h.supplyLayoutDefaults(f,d),void h.drawAll(t);if(\\\"remove\\\"===a)return delete f.shapes,d.shapes=[],void h.drawAll(t);if(r&&\\\"add\\\"!==a){for(l=0;l<d.shapes.length;l++)h.draw(t,l,r,a);return}e=d.shapes.length,d.shapes.push({})}if(!r&&a){if(\\\"remove\\\"===a){for(d._shapelayer.selectAll('[data-index=\\\"'+e+'\\\"]').remove(),d.shapes.splice(e,1),f.shapes.splice(e,1),l=e;l<d.shapes.length;l++)d._shapelayer.selectAll('[data-index=\\\"'+(l+1)+'\\\"]').attr(\\\"data-index\\\",String(l)),h.draw(t,l);return}if(\\\"add\\\"===a||c.Lib.isPlainObject(a)){d.shapes.splice(e,0,{});var p=c.Lib.isPlainObject(a)?c.Lib.extendFlat({},a):{text:\\\"New text\\\"};for(f.shapes?f.shapes.splice(e,0,p):f.shapes=[p],l=d.shapes.length-1;l>e;l--)d._shapelayer.selectAll('[data-index=\\\"'+(l-1)+'\\\"]').attr(\\\"data-index\\\",String(l)),h.draw(t,l)}}d._shapelayer.selectAll('[data-index=\\\"'+e+'\\\"]').remove();var g=f.shapes[e];if(g){var v={xref:g.xref,yref:g.yref},m={};\\\"string\\\"==typeof r&&r?m[r]=a:c.Lib.isPlainObject(r)&&(m=r);var y=Object.keys(m);for(l=0;l<m.length;l++){var b=y[l];c.Lib.nestedProperty(g,b).set(m[b])}var x=[\\\"x0\\\",\\\"x1\\\",\\\"y0\\\",\\\"y1\\\"];for(l=0;4>l;l++){var _=x[l];if(void 0===m[_]&&void 0!==g[_]){var w,A=_.charAt(0),k=c.Axes.getFromId(t,c.Axes.coerceRef(v,{},t,A)),M=c.Axes.getFromId(t,c.Axes.coerceRef(g,{},t,A)),T=g[_];void 0!==m[A+\\\"ref\\\"]&&(k?(w=i(k)(T),T=(w-k.range[0])/(k.range[1]-k.range[0])):T=(T-M.domain[0])/(M.domain[1]-M.domain[0]),M?(w=M.range[0]+T*(M.range[1]-M.range[0]),T=o(M)(w)):T=k.domain[0]+T*(k.domain[1]-k.domain[0])),g[_]=T}}var E=n(g,d);d.shapes[e]=E;var L={\\\"data-index\\\":String(e),\\\"fill-rule\\\":\\\"evenodd\\\",d:s(t,E)},S=(E.xref+E.yref).replace(/paper/g,\\\"\\\"),C=E.line.width?E.line.color:\\\"rgba(0,0,0,0)\\\",P=d._shapelayer.append(\\\"path\\\").attr(L).style(\\\"opacity\\\",E.opacity).call(c.Color.stroke,C).call(c.Color.fill,E.fillcolor).call(c.Drawing.dashLine,E.line.dash,E.line.width);S&&P.call(c.Drawing.setClipUrl,\\\"clip\\\"+d._uid+S)}};var f=/[MLHVQCTSZ][^MLHVQCTSZ]*/g,d=/[^\\\\s,]+/g,p={M:{0:!0,drawn:0},L:{0:!0,drawn:0},H:{0:!0,drawn:0},V:{},Q:{0:!0,2:!0,drawn:2},C:{0:!0,2:!0,4:!0,drawn:4},T:{0:!0,drawn:0},S:{0:!0,2:!0,drawn:2},Z:{}},g={M:{1:!0,drawn:1},L:{1:!0,drawn:1},H:{},V:{0:!0,drawn:0},Q:{1:!0,3:!0,drawn:3},C:{1:!0,3:!0,5:!0,drawn:5},T:{1:!0,drawn:1},S:{1:!0,3:!0,drawn:5},Z:{}},v={M:2,L:2,H:1,V:1,Q:4,C:6,T:2,S:4,Z:0};h.convertPath=function(t,e,r){return t.replace(f,function(t){var n=0,i=t.charAt(0),o=p[i],a=g[i],s=v[i],l=t.substr(1).replace(d,function(t){\\n\",\n       \"return o[n]?t=e(t):a[n]&&(t=r(t)),n++,n>s&&(t=\\\"X\\\"),t});return n>s&&(l=l.replace(/[\\\\s,]*X.*/,\\\"\\\"),console.log(\\\"ignoring extra params in segment \\\"+t)),i+l})},h.calcAutorange=function(t){var e,r,n,i,o,a=t._fullLayout,s=a.shapes;if(s.length&&t._fullData.length)for(e=0;e<s.length;e++)r=s[e],n=r.line.width/2,\\\"paper\\\"!==r.xref&&(i=c.Axes.getFromId(t,r.xref),o=l(i,r.x0,r.x1,r.path,p),o&&c.Axes.expand(i,o,{ppad:n})),\\\"paper\\\"!==r.yref&&(i=c.Axes.getFromId(t,r.yref),o=l(i,r.y0,r.y1,r.path,g),o&&c.Axes.expand(i,o,{ppad:n}))}},{\\\"../../plotly\\\":390,\\\"./attributes\\\":354,\\\"fast-isnumeric\\\":74}],356:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"d3\\\"),i=t(\\\"fast-isnumeric\\\"),o=t(\\\"../../plotly\\\"),a=t(\\\"../../plots/plots\\\"),s=t(\\\"../../lib\\\"),l=t(\\\"../drawing\\\"),c=t(\\\"../color\\\"),u=t(\\\"../../lib/svg_text_utils\\\"),h=t(\\\"../../plots/cartesian/axis_ids\\\"),f=e.exports={};f.draw=function(t,e){function r(t){s.syncOrAsync([f,d],t)}function f(e){return e.attr(\\\"transform\\\",R?\\\"rotate(\\\"+[R.rotate,m.x,m.y]+\\\") translate(0, \\\"+R.offset+\\\")\\\":null),e.style({\\\"font-family\\\":C,\\\"font-size\\\":n.round(P,2)+\\\"px\\\",fill:c.rgb(z),opacity:N*c.opacity(z),\\\"font-weight\\\":a.fontWeight}).attr(m).call(u.convertToTspans).attr(m),e.selectAll(\\\"tspan.line\\\").attr(m),a.previousPromises(t)}function d(t){var e=n.select(t.node().parentNode);if(O&&O.selection&&O.side&&F){e.attr(\\\"transform\\\",null);var r=0,o={left:\\\"right\\\",right:\\\"left\\\",top:\\\"bottom\\\",bottom:\\\"top\\\"}[O.side],a=-1!==[\\\"left\\\",\\\"top\\\"].indexOf(O.side)?-1:1,c=i(O.pad)?O.pad:2,u=l.bBox(e.node()),h={left:0,top:0,right:y.width,bottom:y.height},f=_?y.width:(h[O.side]-u[O.side])*(\\\"left\\\"===O.side||\\\"top\\\"===O.side?-1:1);if(0>f?r=f:(u.left-=O.offsetLeft,u.right-=O.offsetLeft,u.top-=O.offsetTop,u.bottom-=O.offsetTop,O.selection.each(function(){var t=l.bBox(this);s.bBoxIntersect(u,t,c)&&(r=Math.max(r,a*(t[O.side]-u[o])+c))}),r=Math.min(f,r)),r>0||0>f){var d={left:[-r,0],right:[r,0],top:[0,-r],bottom:[0,r]}[O.side];e.attr(\\\"transform\\\",\\\"translate(\\\"+d+\\\")\\\")}}}function p(){N=0,j=!0,F=V,y._infolayer.select(\\\".\\\"+e).attr({\\\"data-unformatted\\\":F}).text(F).on(\\\"mouseover.opacity\\\",function(){n.select(this).transition().duration(100).style(\\\"opacity\\\",1)}).on(\\\"mouseout.opacity\\\",function(){n.select(this).transition().duration(1e3).style(\\\"opacity\\\",0)})}var g,v,m,y=t._fullLayout,b=y._size,x=e.charAt(0),_=\\\"cb\\\"===e.substr(1,2);if(_){var w=e.substr(3).replace(\\\"title\\\",\\\"\\\");t._fullData.some(function(e,r){return e.uid===w?(g=r,v=t.calcdata[r][0].t.cb.axis,!0):void 0})}else v=y[h.id2name(e.replace(\\\"title\\\",\\\"\\\"))]||y;var A,k,M,T,E,L=v===y?\\\"title\\\":v._name+\\\".title\\\",S=_?\\\"colorscale\\\":(v._id||x).toUpperCase()+\\\" axis\\\",C=v.titlefont.family,P=v.titlefont.size,z=v.titlefont.color,R=\\\"\\\",O={selection:n.select(t).selectAll(\\\"g.\\\"+v._id+\\\"tick\\\"),side:v.side},I=_?0:1.5;_?(O.offsetLeft=b.l,O.offsetTop=b.t):O.selection.size()&&(E=n.select(O.selection.node().parentNode).attr(\\\"transform\\\").match(/translate\\\\(([-\\\\.\\\\d]+),([-\\\\.\\\\d]+)\\\\)/),E&&(O.offsetLeft=+E[1],O.offsetTop=+E[2])),_&&v.titleside?(A=b.l+v.titlex*b.w,k=b.t+(1-v.titley)*b.h+(\\\"top\\\"===v.titleside?3+.75*P:-3-.25*P),m={x:A,y:k,\\\"text-anchor\\\":\\\"start\\\"},O={},e=\\\"h\\\"+e):\\\"x\\\"===x?(M=v,T=\\\"free\\\"===M.anchor?{_offset:b.t+(1-(M.position||0))*b.h,_length:0}:h.getFromId(t,M.anchor),A=M._offset+M._length/2,k=T._offset+(\\\"top\\\"===M.side?-10-P*(I+(M.showticklabels?1:0)):T._length+10+P*(I+(M.showticklabels?1.5:.5))),M.rangeslider&&M.rangeslider.visible&&M._boundingBox&&(k+=(y.height-y.margin.b-y.margin.t)*M.rangeslider.thickness+M._boundingBox.height),m={x:A,y:k,\\\"text-anchor\\\":\\\"middle\\\"},O.side||(O.side=\\\"bottom\\\")):\\\"y\\\"===x?(T=v,M=\\\"free\\\"===T.anchor?{_offset:b.l+(T.position||0)*b.w,_length:0}:h.getFromId(t,T.anchor),k=T._offset+T._length/2,A=M._offset+(\\\"right\\\"===T.side?M._length+10+P*(I+(T.showticklabels?1:.5)):-10-P*(I+(T.showticklabels?.5:0))),m={x:A,y:k,\\\"text-anchor\\\":\\\"middle\\\"},R={rotate:\\\"-90\\\",offset:0},O.side||(O.side=\\\"left\\\")):(S=\\\"Plot\\\",P=y.titlefont.size,A=y.width/2,k=y._size.t/2,m={x:A,y:k,\\\"text-anchor\\\":\\\"middle\\\"},O={});var N=1,j=!1,F=v.title.trim();\\\"\\\"===F&&(N=0),F.match(/Click to enter .+ title/)&&(N=.2,j=!0);var D;if(_){D=n.select(t).selectAll(\\\".\\\"+v._id.substr(1)+\\\" .cbtitle\\\");var B=\\\"h\\\"===e.charAt(0)?e.substr(1):\\\"h\\\"+e;D.selectAll(\\\".\\\"+B+\\\",.\\\"+B+\\\"-math-group\\\").remove()}else D=y._infolayer.selectAll(\\\".g-\\\"+e).data([0]),D.enter().append(\\\"g\\\").classed(\\\"g-\\\"+e,!0);var U=D.selectAll(\\\"text\\\").data([0]);U.enter().append(\\\"text\\\"),U.text(F).attr(\\\"class\\\",e),U.attr({\\\"data-unformatted\\\":F}).call(r);var V=\\\"Click to enter \\\"+S.replace(/\\\\d+/,\\\"\\\")+\\\" title\\\";t._context.editable?(F||p(),U.call(u.makeEditable).on(\\\"edit\\\",function(e){if(_){var r=t._fullData[g];a.traceIs(r,\\\"markerColorscale\\\")?o.restyle(t,\\\"marker.colorbar.title\\\",e,g):o.restyle(t,\\\"colorbar.title\\\",e,g)}else o.relayout(t,L,e)}).on(\\\"cancel\\\",function(){this.text(this.attr(\\\"data-unformatted\\\")).call(r)}).on(\\\"input\\\",function(t){this.text(t||\\\" \\\").attr(m).selectAll(\\\"tspan.line\\\").attr(m)})):F&&!F.match(/Click to enter .+ title/)||U.remove(),U.classed(\\\"js-placeholder\\\",j)}},{\\\"../../lib\\\":373,\\\"../../lib/svg_text_utils\\\":384,\\\"../../plotly\\\":390,\\\"../../plots/cartesian/axis_ids\\\":395,\\\"../../plots/plots\\\":437,\\\"../color\\\":301,\\\"../drawing\\\":319,d3:70,\\\"fast-isnumeric\\\":74}],357:[function(t,e,r){\\\"use strict\\\";e.exports={DZA:\\\"algeria\\\",AGO:\\\"angola\\\",EGY:\\\"egypt\\\",BGD:\\\"bangladesh|^(?=.*east).*paki?stan\\\",NER:\\\"\\\\\\\\bniger(?!ia)\\\",LIE:\\\"liechtenstein\\\",NAM:\\\"namibia\\\",BGR:\\\"bulgaria\\\",BOL:\\\"bolivia\\\",GHA:\\\"ghana|gold.?coast\\\",CCK:\\\"\\\\\\\\bcocos|keeling\\\",PAK:\\\"^(?!.*east).*paki?stan\\\",CPV:\\\"verde\\\",JOR:\\\"jordan\\\",LBR:\\\"liberia\\\",LBY:\\\"libya\\\",MYS:\\\"malaysia\\\",IOT:\\\"british.?indian.?ocean\\\",PRI:\\\"puerto.?rico\\\",MYT:\\\"mayotte\\\",PRK:\\\"^(?=.*democrat).*\\\\\\\\bkorea|^(?=.*people).*\\\\\\\\bkorea|^(?=.*north).*\\\\\\\\bkorea|\\\\\\\\bd\\\\\\\\.?p\\\\\\\\.?r\\\\\\\\.?k\\\",PSE:\\\"palestin|\\\\\\\\bgaza|west.?bank\\\",TZA:\\\"tanzania\\\",BWA:\\\"botswana|bechuana\\\",KHM:\\\"cambodia|kampuchea|khmer|^p\\\\\\\\.?r\\\\\\\\.?k\\\\\\\\.?$\\\",UMI:\\\"minor.?outlying.?is\\\",TTO:\\\"trinidad|tobago\\\",PRY:\\\"paraguay\\\",HKG:\\\"hong.?kong\\\",SAU:\\\"\\\\\\\\bsa\\\\\\\\w*.?arabia\\\",LBN:\\\"lebanon\\\",SVN:\\\"slovenia\\\",BFA:\\\"burkina|\\\\\\\\bfaso|upper.?volta\\\",SVK:\\\"^(?!.*cze).*slovak\\\",MRT:\\\"mauritania\\\",HRV:\\\"croatia\\\",CHL:\\\"\\\\\\\\bchile\\\",CHN:\\\"^(?!.*\\\\\\\\bmac)(?!.*\\\\\\\\bhong)(?!.*\\\\\\\\btai).*china|^p\\\\\\\\.?r\\\\\\\\.?c\\\\\\\\.?$\\\",KNA:\\\"kitts|\\\\\\\\bnevis\\\",JAM:\\\"jamaica\\\",SMR:\\\"san.?marino\\\",GIB:\\\"gibraltar\\\",DJI:\\\"djibouti\\\",GIN:\\\"^(?!.*eq)(?!.*span)(?!.*bissau)(?!.*portu)(?!.*new).*guinea\\\",FIN:\\\"finland\\\",URY:\\\"uruguay\\\",VAT:\\\"holy.?see|vatican|papal.?st\\\",STP:\\\"\\\\\\\\bs(a|\\\\xe3)o.?tom(e|\\\\xe9)\\\",SYC:\\\"seychell\\\",NPL:\\\"nepal\\\",CXR:\\\"christmas\\\",LAO:\\\"\\\\\\\\blaos?\\\\\\\\b\\\",YEM:\\\"^(?!.*arab)(?!.*north)(?!.*sana)(?!.*peo)(?!.*dem)(?!.*south)(?!.*aden)(?!.*\\\\\\\\bp\\\\\\\\.?d\\\\\\\\.?r).*yemen\\\",BVT:\\\"bouvet\\\",ZAF:\\\"\\\\\\\\bs\\\\\\\\w*.?africa\\\",KIR:\\\"kiribati\\\",PHL:\\\"philippines\\\",SXM:\\\"^(?!.*martin)(?!.*saba).*maarten\\\",ROU:\\\"r(o|u|ou)mania\\\",VIR:\\\"^(?=.*\\\\\\\\bu\\\\\\\\.?\\\\\\\\s?s).*virgin|^(?=.*states).*virgin\\\",SYR:\\\"syria\\\",MAC:\\\"maca(o|u)\\\",NFK:\\\"norfolk\\\",NIC:\\\"nicaragua\\\",MLT:\\\"\\\\\\\\bmalta\\\",KAZ:\\\"kazak\\\",TCA:\\\"turks\\\",PYF:\\\"french.?polynesia|tahiti\\\",NIU:\\\"niue\\\",DMA:\\\"dominica(?!n)\\\",GBR:\\\"united.?kingdom|britain|^u\\\\\\\\.?k\\\\\\\\.?$\\\",BEN:\\\"benin|dahome\\\",GUF:\\\"^(?=.*french).*guiana\\\",BEL:\\\"^(?!.*luxem).*belgium\\\",MSR:\\\"montserrat\\\",TGO:\\\"togo\\\",DEU:\\\"^(?!.*east).*germany|^(?=.*\\\\\\\\bfed.*\\\\\\\\brep).*german\\\",GUM:\\\"\\\\\\\\bguam\\\",LKA:\\\"sri.?lanka|ceylon\\\",SSD:\\\"\\\\\\\\bs\\\\\\\\w*.?sudan\\\",FLK:\\\"falkland|malvinas\\\",PCN:\\\"pitcairn\\\",BES:\\\"^(?=.*bonaire).*eustatius|^(?=.*carib).*netherlands|\\\\\\\\bbes.?islands\\\",GUY:\\\"guyana|british.?guiana\\\",CRI:\\\"costa.?rica\\\",COK:\\\"\\\\\\\\bcook\\\",MAR:\\\"morocco|\\\\\\\\bmaroc\\\",MNP:\\\"mariana\\\",LSO:\\\"lesotho|basuto\\\",HUN:\\\"^(?!.*austr).*hungary\\\",TKM:\\\"turkmen\\\",SUR:\\\"surinam|dutch.?guiana\\\",NLD:\\\"^(?!.*\\\\\\\\bant)(?!.*\\\\\\\\bcarib).*netherlands\\\",BMU:\\\"bermuda\\\",HMD:\\\"heard.*mcdonald\\\",TCD:\\\"\\\\\\\\bchad\\\",GEO:\\\"^(?!.*south).*georgia\\\",MNE:\\\"^(?!.*serbia).*montenegro\\\",MNG:\\\"mongolia\\\",MHL:\\\"marshall\\\",MTQ:\\\"martinique\\\",CSK:\\\"czechoslovakia\\\",BLZ:\\\"belize|^(?=.*british).*honduras\\\",DDR:\\\"german.?democratic.?republic|^(d|g)\\\\\\\\.?d\\\\\\\\.?r\\\\\\\\.?$|^(?=.*east).*germany\\\",MMR:\\\"myanmar|burma\\\",AFG:\\\"afghan\\\",BDI:\\\"burundi\\\",VGB:\\\"^(?=.*\\\\\\\\bu\\\\\\\\.?\\\\\\\\s?k).*virgin|^(?=.*brit).*virgin|^(?=.*kingdom).*virgin\\\",BLR:\\\"belarus|byelo\\\",BLM:\\\"barth(e|\\\\xe9)lemy\\\",GRD:\\\"grenada\\\",TKL:\\\"tokelau\\\",GRC:\\\"greece|hellenic|hellas\\\",GRL:\\\"greenland\\\",SHN:\\\"helena\\\",AND:\\\"andorra\\\",MOZ:\\\"mozambique\\\",TJK:\\\"tajik\\\",THA:\\\"thailand|\\\\\\\\bsiam\\\",HTI:\\\"haiti\\\",MEX:\\\"\\\\\\\\bmexic\\\",ANT:\\\"^(?=.*\\\\\\\\bant).*(nether|dutch)\\\",ZWE:\\\"zimbabwe|^(?!.*northern).*rhodesia\\\",LCA:\\\"\\\\\\\\blucia\\\",IND:\\\"india(?!.*ocea)\\\",LVA:\\\"latvia\\\",BTN:\\\"bhutan\\\",VCT:\\\"vincent\\\",VNM:\\\"^(?!.*republic).*viet.?nam|^(?=.*socialist).*viet.?nam\\\",NOR:\\\"norway\\\",CZE:\\\"^(?=.*rep).*czech|czechia|bohemia\\\",ATF:\\\"french.?southern|\\\\\\\\bfr.*\\\\\\\\bso.*\\\\\\\\ban.*\\\\\\\\b\\\\\\\\bt\\\",ATG:\\\"antigua\\\",FJI:\\\"fiji\\\",HND:\\\"^(?!.*brit).*honduras\\\",MUS:\\\"mauritius\\\",DOM:\\\"dominican\\\",LUX:\\\"^(?!.*belg).*luxem\\\",ISR:\\\"israel\\\",YUG:\\\"yugoslavia\\\",FSM:\\\"micronesia\\\",PER:\\\"peru\\\",REU:\\\"r(e|\\\\xe9)union\\\",IDN:\\\"indonesia\\\",VUT:\\\"vanuatu|new.?hebrides\\\",MKD:\\\"macedonia|^f\\\\\\\\.?y\\\\\\\\.?r\\\\\\\\.?o\\\\\\\\.?m\\\\\\\\.?$\\\",COD:\\\"\\\\\\\\bdem.*congo|congo.*\\\\\\\\bdem|congo.*\\\\\\\\bdr|\\\\\\\\bdr.*congo|\\\\\\\\bd\\\\\\\\.?r\\\\\\\\.?c|\\\\\\\\bd\\\\\\\\.?r\\\\\\\\.?o\\\\\\\\.?c|\\\\\\\\br\\\\\\\\.?d\\\\\\\\.?c|belgian.?congo|congo.?free.?state|kinshasa|zaire|l\\\\\\\\w{1,2}opoldville\\\",COG:\\\"^(?!.*\\\\\\\\bdem)(?!.*\\\\\\\\bdr)(?!.*kinshasa)(?!.*zaire)(?!.*belg)(?!.*l\\\\\\\\w{1,2}opoldville)(?!.*free).*\\\\\\\\bcongo\\\",ISL:\\\"iceland\\\",GLP:\\\"guadeloupe\\\",ETH:\\\"ethiopia|abyssinia\\\",COM:\\\"comoro\\\",COL:\\\"colombia\\\",NGA:\\\"nigeria\\\",TLS:\\\"^(?=.*leste).*timor|^(?=.*east).*timor\\\",TWN:\\\"taiwan|taipei|formosa\\\",PRT:\\\"portugal\\\",MDA:\\\"moldov|b(a|e)ssarabia\\\",GGY:\\\"guernsey\\\",MDG:\\\"madagascar|malagasy\\\",ATA:\\\"antarctica\\\",ECU:\\\"ecuador\\\",SEN:\\\"senegal\\\",ESH:\\\"sahara\\\",MDV:\\\"maldive\\\",ASM:\\\"^(?=.*americ).*samoa\\\",SPM:\\\"miquelon\\\",CUW:\\\"^(?!.*bonaire).*\\\\\\\\bcura(c|\\\\xe7)ao\\\",FRA:\\\"^(?!.*\\\\\\\\bdep)(?!.*martinique).*france|french.?republic|\\\\\\\\bgaul\\\",LTU:\\\"lithuania\\\",RWA:\\\"rwanda\\\",ZMB:\\\"zambia|northern.?rhodesia\\\",GMB:\\\"gambia\\\",WLF:\\\"futuna|wallis\\\",JEY:\\\"jersey\\\",FRO:\\\"faroe|faeroe\\\",GTM:\\\"guatemala\\\",DNK:\\\"denmark\\\",IMN:\\\"^(?=.*isle).*\\\\\\\\bman\\\",MAF:\\\"^(?=.*collectivity).*martin|^(?=.*france).*martin(?!ique)|^(?=.*french).*martin(?!ique)\\\",AUS:\\\"australia\\\",AUT:\\\"^(?!.*hungary).*austria|\\\\\\\\baust.*\\\\\\\\bemp\\\",SJM:\\\"svalbard\\\",VEN:\\\"venezuela\\\",PLW:\\\"palau\\\",KEN:\\\"kenya|british.?east.?africa|east.?africa.?prot\\\",TUR:\\\"turkey\\\",ALB:\\\"albania\\\",OMN:\\\"\\\\\\\\boman|trucial\\\",TUV:\\\"tuvalu\\\",ALA:\\\"\\\\\\\\b(a|\\\\xe5)land\\\",BRN:\\\"brunei\\\",TUN:\\\"tunisia\\\",RUS:\\\"\\\\\\\\brussia|soviet.?union|u\\\\\\\\.?s\\\\\\\\.?s\\\\\\\\.?r|socialist.?republics\\\",BRB:\\\"barbados\\\",BRA:\\\"brazil\\\",CIV:\\\"ivoire|ivory\\\",SRB:\\\"^(?!.*monte).*serbia\\\",GNQ:\\\"guine.*eq|eq.*guine|^(?=.*span).*guinea\\\",USA:\\\"^(?!.*islands).*united.?states|^u\\\\\\\\.?s\\\\\\\\.?a\\\\\\\\.?$|^u\\\\\\\\.?s\\\\\\\\.?$\\\",QAT:\\\"qatar\\\",WSM:\\\"^(?!.*amer).*samoa\\\",AZE:\\\"azerbaijan\\\",GNB:\\\"bissau|^(?=.*portu).*guinea\\\",SWZ:\\\"swaziland\\\",TON:\\\"tonga\\\",CAN:\\\"canada\\\",UKR:\\\"ukrain\\\",KOR:\\\"^(?!.*democrat)(?!.*people)(?!.*north).*\\\\\\\\bkorea|\\\\\\\\br\\\\\\\\.?o\\\\\\\\.?k\\\\\\\\b\\\",AIA:\\\"anguill?a\\\",CAF:\\\"\\\\\\\\bcen.*\\\\\\\\baf|^c\\\\\\\\.?a\\\\\\\\.?r\\\\\\\\.?$\\\",CHE:\\\"switz|swiss\\\",CYP:\\\"cyprus\\\",BIH:\\\"herzegovina|bosnia\\\",SGP:\\\"singapore\\\",SGS:\\\"south.?georgia|sandwich\\\",SOM:\\\"somali\\\",UZB:\\\"uzbek\\\",CMR:\\\"cameroon\\\",POL:\\\"poland\\\",EAZ:\\\"zanz\\\",KWT:\\\"kuwait\\\",ERI:\\\"eritrea\\\",GAB:\\\"gabon\\\",CYM:\\\"cayman\\\",ARE:\\\"emirates|^u\\\\\\\\.?a\\\\\\\\.?e\\\\\\\\.?$|united.?arab.?em\\\",EST:\\\"estonia\\\",MWI:\\\"malawi|nyasa\\\",ESP:\\\"spain\\\",IRQ:\\\"\\\\\\\\biraq|mesopotamia\\\",SLV:\\\"el.?salvador\\\",MLI:\\\"\\\\\\\\bmali\\\\\\\\b\\\",YMD:\\\"^(?=.*peo).*yemen|^(?!.*rep)(?=.*dem).*yemen|^(?=.*south).*yemen|^(?=.*aden).*yemen|^(?=.*\\\\\\\\bp\\\\\\\\.?d\\\\\\\\.?r).*yemen\\\",IRL:\\\"ireland\\\",IRN:\\\"\\\\\\\\biran|persia\\\",ABW:\\\"^(?!.*bonaire).*\\\\\\\\baruba\\\",SLE:\\\"sierra\\\",PAN:\\\"panama\\\",SDN:\\\"^(?!.*\\\\\\\\bs(?!u)).*sudan\\\",SLB:\\\"solomon\\\",NZL:\\\"new.?zealand\\\",MCO:\\\"monaco\\\",ITA:\\\"italy\\\",JPN:\\\"japan\\\",KGZ:\\\"kyrgyz|kirghiz\\\",UGA:\\\"uganda\\\",NCL:\\\"new.?caledonia\\\",PNG:\\\"papua|\\\\\\\\bp.*\\\\\\\\bn.*\\\\\\\\bguin.*|^p\\\\\\\\.?n\\\\\\\\.?g\\\\\\\\.?$|new.?guinea\\\",ARG:\\\"argentin\\\",SWE:\\\"sweden\\\",BHS:\\\"bahamas\\\",BHR:\\\"bahrain\\\",ARM:\\\"armenia\\\",NRU:\\\"nauru\\\",CUB:\\\"\\\\\\\\bcuba\\\"}},{}],358:[function(t,e,r){\\\"use strict\\\";var n=e.exports={};n.projNames={equirectangular:\\\"equirectangular\\\",mercator:\\\"mercator\\\",orthographic:\\\"orthographic\\\",\\\"natural earth\\\":\\\"naturalEarth\\\",kavrayskiy7:\\\"kavrayskiy7\\\",miller:\\\"miller\\\",robinson:\\\"robinson\\\",eckert4:\\\"eckert4\\\",\\\"azimuthal equal area\\\":\\\"azimuthalEqualArea\\\",\\\"azimuthal equidistant\\\":\\\"azimuthalEquidistant\\\",\\\"conic equal area\\\":\\\"conicEqualArea\\\",\\\"conic conformal\\\":\\\"conicConformal\\\",\\\"conic equidistant\\\":\\\"conicEquidistant\\\",gnomonic:\\\"gnomonic\\\",stereographic:\\\"stereographic\\\",mollweide:\\\"mollweide\\\",hammer:\\\"hammer\\\",\\\"transverse mercator\\\":\\\"transverseMercator\\\",\\\"albers usa\\\":\\\"albersUsa\\\"},n.axesNames=[\\\"lonaxis\\\",\\\"lataxis\\\"],n.lonaxisSpan={orthographic:180,\\\"azimuthal equal area\\\":360,\\\"azimuthal equidistant\\\":360,\\\"conic conformal\\\":180,gnomonic:160,stereographic:180,\\\"transverse mercator\\\":180,\\\"*\\\":360},n.lataxisSpan={\\\"conic conformal\\\":150,stereographic:179.5,\\\"*\\\":180},n.scopeDefaults={world:{lonaxisRange:[-180,180],lataxisRange:[-90,90],projType:\\\"equirectangular\\\",projRotate:[0,0,0]},usa:{lonaxisRange:[-180,-50],lataxisRange:[15,80],projType:\\\"albers usa\\\"},europe:{lonaxisRange:[-30,60],lataxisRange:[30,80],projType:\\\"conic conformal\\\",projRotate:[15,0,0],projParallels:[0,60]},asia:{lonaxisRange:[22,160],lataxisRange:[-15,55],projType:\\\"mercator\\\",projRotate:[0,0,0]},africa:{lonaxisRange:[-30,60],lataxisRange:[-40,40],projType:\\\"mercator\\\",projRotate:[0,0,0]},\\\"north america\\\":{lonaxisRange:[-180,-45],lataxisRange:[5,85],projType:\\\"conic conformal\\\",projRotate:[-100,0,0],projParallels:[29.5,45.5]},\\\"south america\\\":{lonaxisRange:[-100,-30],lataxisRange:[-60,15],projType:\\\"mercator\\\",projRotate:[0,0,0]}},n.clipPad=.001,n.precision=.1,n.landColor=\\\"#F0DC82\\\",n.waterColor=\\\"#3399FF\\\",n.locationmodeToLayer={\\\"ISO-3\\\":\\\"countries\\\",\\\"USA-states\\\":\\\"subunits\\\",\\\"country names\\\":\\\"countries\\\"},n.sphereSVG={type:\\\"Sphere\\\"},n.fillLayers=[\\\"ocean\\\",\\\"land\\\",\\\"lakes\\\"],n.lineLayers=[\\\"subunits\\\",\\\"countries\\\",\\\"coastlines\\\",\\\"rivers\\\",\\\"frame\\\"],n.baseLayers=[\\\"ocean\\\",\\\"land\\\",\\\"lakes\\\",\\\"subunits\\\",\\\"countries\\\",\\\"coastlines\\\",\\\"rivers\\\",\\\"lataxis\\\",\\\"lonaxis\\\",\\\"frame\\\"],n.layerNameToAdjective={ocean:\\\"ocean\\\",land:\\\"land\\\",lakes:\\\"lake\\\",subunits:\\\"subunit\\\",countries:\\\"country\\\",coastlines:\\\"coastline\\\",rivers:\\\"river\\\",frame:\\\"frame\\\"},n.baseLayersOverChoropleth=[\\\"rivers\\\",\\\"lakes\\\"]},{}],359:[function(t,e,r){\\\"use strict\\\";e.exports={solid:[1],dot:[1,1],dash:[4,1],longdash:[8,1],dashdot:[4,1,1,1],longdashdot:[8,1,1,1]}},{}],360:[function(t,e,r){\\\"use strict\\\";e.exports={solid:[[],0],dot:[[.5,1],200],dash:[[.5,1],50],longdash:[[.5,1],10],dashdot:[[.5,.625,.875,1],50],longdashdot:[[.5,.7,.8,1],10]}},{}],361:[function(t,e,r){\\\"use strict\\\";e.exports={circle:\\\"\\\\u25cf\\\",\\\"circle-open\\\":\\\"\\\\u25cb\\\",square:\\\"\\\\u25a0\\\",\\\"square-open\\\":\\\"\\\\u25a1\\\",diamond:\\\"\\\\u25c6\\\",\\\"diamond-open\\\":\\\"\\\\u25c7\\\",cross:\\\"+\\\",x:\\\"\\\\u274c\\\"}},{}],362:[function(t,e,r){\\\"use strict\\\";r.xmlns=\\\"http://www.w3.org/2000/xmlns/\\\",r.svg=\\\"http://www.w3.org/2000/svg\\\",r.xlink=\\\"http://www.w3.org/1999/xlink\\\",r.svgAttrs={xmlns:r.svg,\\\"xmlns:xlink\\\":r.xlink}},{}],363:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"./plotly\\\");r.version=\\\"1.8.0\\\",r.plot=n.plot,r.newPlot=n.newPlot,r.restyle=n.restyle,r.relayout=n.relayout,r.redraw=n.redraw,r.extendTraces=n.extendTraces,r.prependTraces=n.prependTraces,r.addTraces=n.addTraces,r.deleteTraces=n.deleteTraces,r.moveTraces=n.moveTraces,r.purge=n.purge,r.setPlotConfig=t(\\\"./plot_api/set_plot_config\\\"),r.register=n.register,r.Icons=t(\\\"../build/ploticon\\\"),r.Plots=n.Plots,r.Fx=n.Fx,r.Snapshot=n.Snapshot,r.PlotSchema=n.PlotSchema,r.Queue=n.Queue,r.d3=t(\\\"d3\\\")},{\\\"../build/ploticon\\\":2,\\\"./plot_api/set_plot_config\\\":389,\\\"./plotly\\\":390,d3:70}],364:[function(t,e,r){\\\"use strict\\\";\\\"undefined\\\"!=typeof MathJax?(r.MathJax=!0,MathJax.Hub.Config({messageStyle:\\\"none\\\",skipStartupTypeset:!0,displayAlign:\\\"left\\\",tex2jax:{inlineMath:[[\\\"$\\\",\\\"$\\\"],[\\\"\\\\\\\\(\\\",\\\"\\\\\\\\)\\\"]]}}),MathJax.Hub.Configured()):r.MathJax=!1},{}],365:[function(t,e,r){\\\"use strict\\\";e.exports=function(t,e,r,n){Array.isArray(t)&&(e[r]=t[n])}},{}],366:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"fast-isnumeric\\\"),i=t(\\\"tinycolor2\\\"),o=t(\\\"./nested_property\\\"),a=t(\\\"../components/colorscale/get_scale\\\");Object.keys(t(\\\"../components/colorscale/scales\\\"));r.valObjects={data_array:{coerceFunction:function(t,e,r){Array.isArray(t)?e.set(t):void 0!==r&&e.set(r)}},enumerated:{coerceFunction:function(t,e,r,n){n.coerceNumber&&(t=+t),-1===n.values.indexOf(t)?e.set(r):e.set(t)}},\\\"boolean\\\":{coerceFunction:function(t,e,r){t===!0||t===!1?e.set(t):e.set(r)}},number:{coerceFunction:function(t,e,r,i){!n(t)||void 0!==i.min&&t<i.min||void 0!==i.max&&t>i.max?e.set(r):e.set(+t)}},integer:{coerceFunction:function(t,e,r,i){t%1||!n(t)||void 0!==i.min&&t<i.min||void 0!==i.max&&t>i.max?e.set(r):e.set(+t)}},string:{coerceFunction:function(t,e,r,n){if(n.strict===!0&&\\\"string\\\"!=typeof t)return void e.set(r);var i=String(t);void 0===t||n.noBlank===!0&&!i?e.set(r):e.set(i)}},color:{coerceFunction:function(t,e,r){i(t).isValid()?e.set(t):e.set(r)}},colorscale:{coerceFunction:function(t,e,r){e.set(a(t,r))}},angle:{coerceFunction:function(t,e,r){\\\"auto\\\"===t?e.set(\\\"auto\\\"):n(t)?(Math.abs(t)>180&&(t-=360*Math.round(t/360)),e.set(+t)):e.set(r)}},axisid:{coerceFunction:function(t,e,r){if(\\\"string\\\"==typeof t&&t.charAt(0)===r){var n=Number(t.substr(1));if(n%1===0&&n>1)return void e.set(t)}e.set(r)}},sceneid:{coerceFunction:function(t,e,r){if(\\\"string\\\"==typeof t&&t.substr(0,5)===r){var n=Number(t.substr(5));if(n%1===0&&n>1)return void e.set(t)}e.set(r)}},geoid:{coerceFunction:function(t,e,r){if(\\\"string\\\"==typeof t&&t.substr(0,3)===r){var n=Number(t.substr(3));if(n%1===0&&n>1)return void e.set(t)}e.set(r)}},flaglist:{coerceFunction:function(t,e,r,n){if(\\\"string\\\"!=typeof t)return void e.set(r);if(-1!==n.extras.indexOf(t))return void e.set(t);for(var i=t.split(\\\"+\\\"),o=0;o<i.length;){var a=i[o];-1===n.flags.indexOf(a)||i.indexOf(a)<o?i.splice(o,1):o++}i.length?e.set(i.join(\\\"+\\\")):e.set(r)}},any:{coerceFunction:function(t,e,r){void 0===t?e.set(r):e.set(t)}},info_array:{coerceFunction:function(t,e,n,i){if(!Array.isArray(t))return void e.set(n);var o=i.items,a=[];n=Array.isArray(n)?n:[];for(var s=0;s<o.length;s++)r.coerce(t,a,o,\\\"[\\\"+s+\\\"]\\\",n[s]);e.set(a)}}},r.coerce=function(t,e,n,i,a){var s=o(n,i).get(),l=o(t,i),c=o(e,i),u=l.get();return void 0===a&&(a=s.dflt),s.arrayOk&&Array.isArray(u)?(c.set(u),u):(r.valObjects[s.valType].coerceFunction(u,c,a,s),c.get())},r.coerce2=function(t,e,n,i,a){var s=o(t,i),l=r.coerce(t,e,n,i,a);return s.get()?l:!1},r.coerceFont=function(t,e,r){var n={};return r=r||{},n.family=t(e+\\\".family\\\",r.family),n.size=t(e+\\\".size\\\",r.size),n.color=t(e+\\\".color\\\",r.color),n}},{\\\"../components/colorscale/get_scale\\\":312,\\\"../components/colorscale/scales\\\":318,\\\"./nested_property\\\":376,\\\"fast-isnumeric\\\":74,tinycolor2:231}],367:[function(t,e,r){\\\"use strict\\\";function n(t,e){return String(t+Math.pow(10,e)).substr(1)}function i(t){var e;return e=y.test(t)?\\\"Y\\\":\\\"y\\\",e+=b.test(t)?\\\"b\\\":\\\"\\\"}function o(t){var e;return e=_.test(t)?x.test(t)?\\\"I\\\":\\\"H\\\":\\\"D\\\"}var a=t(\\\"d3\\\"),s=t(\\\"fast-isnumeric\\\");r.dateTime2ms=function(t){try{if(t.getTime)return+t}catch(e){return!1}var r,n,i,o,a=String(t).split(\\\" \\\");if(a.length>2)return!1;var l=a[0].split(\\\"-\\\");if(l.length>3||3!==l.length&&a[1])return!1;if(4===l[0].length)r=Number(l[0]);else{if(2!==l[0].length)return!1;var c=(new Date).getFullYear();r=((Number(l[0])-c+70)%100+200)%100+c-70}return s(r)?1===l.length?new Date(r,0,1).getTime():(n=Number(l[1])-1,l[1].length>2||!(n>=0&&11>=n)?!1:2===l.length?new Date(r,n,1).getTime():(i=Number(l[2]),l[2].length>2||!(i>=1&&31>=i)?!1:(i=new Date(r,n,i).getTime(),a[1]?(l=a[1].split(\\\":\\\"),l.length>3?!1:(o=Number(l[0]),l[0].length>2||!(o>=0&&23>=o)?!1:(i+=36e5*o,1===l.length?i:(n=Number(l[1]),l[1].length>2||!(n>=0&&59>=n)?!1:(i+=6e4*n,2===l.length?i:(t=Number(l[2]),t>=0&&60>t?i+1e3*t:!1)))))):i))):!1},r.isDateTime=function(t){return r.dateTime2ms(t)!==!1},r.ms2DateTime=function(t,e){if(\\\"undefined\\\"==typeof a)return void console.log(\\\"d3 is not defined\\\");e||(e=0);var r=new Date(t),i=a.time.format(\\\"%Y-%m-%d\\\")(r);return 7776e6>e?(i+=\\\" \\\"+n(r.getHours(),2),432e6>e&&(i+=\\\":\\\"+n(r.getMinutes(),2),108e5>e&&(i+=\\\":\\\"+n(r.getSeconds(),2),3e5>e&&(i+=\\\".\\\"+n(r.getMilliseconds(),3)))),i.replace(/([:\\\\s]00)*\\\\.?[0]*$/,\\\"\\\")):i};var l={H:[\\\"%H:%M:%S~%L\\\",\\\"%H:%M:%S\\\",\\\"%H:%M\\\"],I:[\\\"%I:%M:%S~%L%p\\\",\\\"%I:%M:%S%p\\\",\\\"%I:%M%p\\\"],D:[\\\"%H\\\",\\\"%I%p\\\",\\\"%Hh\\\"]},c={Y:[\\\"%Y~%m~%d\\\",\\\"%Y%m%d\\\",\\\"%y%m%d\\\",\\\"%m~%d~%Y\\\",\\\"%d~%m~%Y\\\"],Yb:[\\\"%b~%d~%Y\\\",\\\"%d~%b~%Y\\\",\\\"%Y~%d~%b\\\",\\\"%Y~%b~%d\\\"],y:[\\\"%m~%d~%y\\\",\\\"%d~%m~%y\\\",\\\"%y~%m~%d\\\"],yb:[\\\"%b~%d~%y\\\",\\\"%d~%b~%y\\\",\\\"%y~%d~%b\\\",\\\"%y~%b~%d\\\"]},u=a.time.format.utc,h={Y:{H:[\\\"%Y~%m~%dT%H:%M:%S\\\",\\\"%Y~%m~%dT%H:%M:%S~%L\\\"].map(u),I:[],D:[\\\"%Y%m%d%H%M%S\\\",\\\"%Y~%m\\\",\\\"%m~%Y\\\"].map(u)},Yb:{H:[],I:[],D:[\\\"%Y~%b\\\",\\\"%b~%Y\\\"].map(u)},y:{H:[],I:[],D:[]},yb:{H:[],I:[],D:[]}};[\\\"Y\\\",\\\"Yb\\\",\\\"y\\\",\\\"yb\\\"].forEach(function(t){c[t].forEach(function(e){h[t].D.push(u(e)),[\\\"H\\\",\\\"I\\\",\\\"D\\\"].forEach(function(r){l[r].forEach(function(n){var i=h[t][r];i.push(u(e+\\\"~\\\"+n)),i.push(u(n+\\\"~\\\"+e))})})})});var f=/[a-z]*/g,d=function(t){return t.substr(0,3)},p=/(mon|tue|wed|thu|fri|sat|sun|the|of|st|nd|rd|th)/g,g=/[\\\\s,\\\\/\\\\-\\\\.\\\\(\\\\)]+/g,v=/~?([ap])~?m(~|$)/,m=function(t,e){return e+\\\"m \\\"},y=/\\\\d\\\\d\\\\d\\\\d/,b=/(^|~)[a-z]{3}/,x=/[ap]m/,_=/:/,w=/q([1-4])/,A=[\\\"31~mar\\\",\\\"30~jun\\\",\\\"30~sep\\\",\\\"31~dec\\\"],k=function(t,e){return A[e-1]},M=/ ?([+\\\\-]\\\\d\\\\d:?\\\\d\\\\d|Z)$/;r.parseDate=function(t){if(t.getTime)return t;if(\\\"string\\\"!=typeof t)return!1;t=t.toLowerCase().replace(f,d).replace(p,\\\"\\\").replace(g,\\\"~\\\").replace(v,m).replace(w,k).trim().replace(M,\\\"\\\");var e,r,n=null,a=i(t),s=o(t);e=h[a][s],r=e.length;for(var l=0;r>l&&!(n=e[l].parse(t));l++);if(!(n instanceof Date))return!1;var c=n.getTimezoneOffset();return n.setTime(n.getTime()+60*c*1e3),n}},{d3:70,\\\"fast-isnumeric\\\":74}],368:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"events\\\").EventEmitter,i={init:function(t){if(t._ev instanceof n)return t;var e=new n;return t._ev=e,t.on=e.on.bind(e),t.once=e.once.bind(e),t.removeListener=e.removeListener.bind(e),t.removeAllListeners=e.removeAllListeners.bind(e),t.emit=function(r,n){\\\"undefined\\\"!=typeof jQuery&&jQuery(t).trigger(r,n),e.emit(r,n)},t},triggerHandler:function(t,e,r){var n,i;\\\"undefined\\\"!=typeof jQuery&&(n=jQuery(t).triggerHandler(e,r));var o=t._ev;if(!o)return n;var a=o._events[e];if(!a)return n;\\\"function\\\"==typeof a&&(a=[a]);for(var s=a.pop(),l=0;l<a.length;l++)a[l](r);return i=s(r),void 0!==n?n:i},purge:function(t){return delete t._ev,delete t.on,delete t.once,delete t.removeListener,delete t.removeAllListeners,delete t.emit,t}};e.exports=i},{events:54}],369:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){for(var a,s,l,c,u,h,f=t[0],d=t.length,p=1;d>p;p++){a=t[p];for(s in a)l=f[s],c=a[s],e&&c&&(i(c)||(u=o(c)))?(u?(u=!1,h=l&&o(l)?l:[]):h=l&&i(l)?l:{},f[s]=n([h,c],e,r)):(\\\"undefined\\\"!=typeof c||r)&&(f[s]=c)}return f}var i=t(\\\"./is_plain_object.js\\\"),o=Array.isArray;r.extendFlat=function(){return n(arguments,!1,!1)},r.extendDeep=function(){return n(arguments,!0,!1)},r.extendDeepAll=function(){return n(arguments,!0,!0)}},{\\\"./is_plain_object.js\\\":374}],370:[function(t,e,r){\\\"use strict\\\";function n(t,e){var r=c[t];return r(e)}function i(t){for(var e,r,n=0;n<l.length;n++)if(e=l[n],r=new RegExp(s[e]),r.test(t.toLowerCase()))return e;console.warn(\\\"unrecognized country name: \\\"+t+\\\".\\\")}var o=e.exports={},a=t(\\\"../plotly\\\"),s=t(\\\"../constants/country-name_to_iso3\\\"),l=Object.keys(s),c={\\\"ISO-3\\\":a.Lib.identity,\\\"USA-states\\\":a.Lib.identity,\\\"country names\\\":i};o.locationToFeature=function(t,e,r){for(var i,o=n(t,e),a=0;a<r.length;a++)if(i=r[a],i.id===o)return i;console.warn([\\\"location with id\\\",o,\\\"does not have a matching topojson feature at this resolution.\\\"].join(\\\" \\\"))}},{\\\"../constants/country-name_to_iso3\\\":357,\\\"../plotly\\\":390}],371:[function(t,e,r){\\\"use strict\\\";function n(t,e){var r=u(t);return r[3]*=e,r}function i(t){return l(t).isValid()?t:h}function o(t){return c(t)?t:f}function a(t,e,r){var a,l,c,u,d,p=t.color,g=Array.isArray(p),v=Array.isArray(e),m=[];if(a=void 0!==t.colorscale?s.Colorscale.makeScaleFunction(t.colorscale,t.cmin,t.cmax):i,l=g?function(t,e){return void 0===t[e]?h:a(t[e])}:i,c=v?function(t,e){return void 0===t[e]?f:o(t[e])}:o,g||v)for(var y=0;r>y;y++)u=l(p,y),d=c(e,y),m[y]=n(u,d);else m=n(p,e);return m}var s=t(\\\"../plotly\\\"),l=t(\\\"tinycolor2\\\"),c=t(\\\"fast-isnumeric\\\"),u=t(\\\"./str2rgbarray\\\"),h=t(\\\"../components/color/attributes\\\").defaultLine,f=1;e.exports=a},{\\\"../components/color/attributes\\\":300,\\\"../plotly\\\":390,\\\"./str2rgbarray\\\":383,\\\"fast-isnumeric\\\":74,tinycolor2:231}],372:[function(t,e,r){\\\"use strict\\\";function n(t){for(var e=0;(e=t.indexOf(\\\"<sup>\\\",e))>=0;){var r=t.indexOf(\\\"</sup>\\\",e);if(e>r)break;t=t.slice(0,e)+l(t.slice(e+5,r))+t.slice(r+6)}return t}function i(t){return t.replace(/\\\\<br\\\\>/g,\\\"\\\\n\\\")}function o(t){return t.replace(/\\\\<.*\\\\>/g,\\\"\\\")}function a(t){for(var e=0;(e=t.indexOf(\\\"&\\\",e))>=0;){var r=t.indexOf(\\\";\\\",e);if(e>r)e+=1;else{var n=c[t.slice(e+1,r)];t=n?t.slice(0,e)+n+t.slice(r+1):t.slice(0,e)+t.slice(r+1)}}return t}function s(t){return\\\"\\\"+a(o(n(i(t))))}var l=t(\\\"superscript-text\\\"),c={mu:\\\"\\\\u03bc\\\",amp:\\\"&\\\",lt:\\\"<\\\",gt:\\\">\\\"};e.exports=s},{\\\"superscript-text\\\":220}],373:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"d3\\\"),i=e.exports={};i.nestedProperty=t(\\\"./nested_property\\\"),i.isPlainObject=t(\\\"./is_plain_object\\\");var o=t(\\\"./coerce\\\");i.valObjects=o.valObjects,i.coerce=o.coerce,i.coerce2=o.coerce2,i.coerceFont=o.coerceFont;var a=t(\\\"./dates\\\");i.dateTime2ms=a.dateTime2ms,i.isDateTime=a.isDateTime,i.ms2DateTime=a.ms2DateTime,i.parseDate=a.parseDate;var s=t(\\\"./search\\\");i.findBin=s.findBin,i.sorterAsc=s.sorterAsc,i.sorterDes=s.sorterDes,i.distinctVals=s.distinctVals,i.roundUp=s.roundUp;var l=t(\\\"./stats\\\");i.aggNums=l.aggNums,i.len=l.len,i.mean=l.mean,i.variance=l.variance,i.stdev=l.stdev,i.interp=l.interp;var c=t(\\\"./matrix\\\");i.init2dArray=c.init2dArray,i.transposeRagged=c.transposeRagged,i.dot=c.dot,i.translationMatrix=c.translationMatrix,i.rotationMatrix=c.rotationMatrix,i.rotationXYMatrix=c.rotationXYMatrix,i.apply2DTransform=c.apply2DTransform,i.apply2DTransform2=c.apply2DTransform2;var u=t(\\\"./extend\\\");i.extendFlat=u.extendFlat,i.extendDeep=u.extendDeep,i.extendDeepAll=u.extendDeepAll,i.notifier=t(\\\"./notifier\\\"),i.swapAttrs=function(t,e,r,n){r||(r=\\\"x\\\"),n||(n=\\\"y\\\");for(var o=0;o<e.length;o++){var a=e[o],s=i.nestedProperty(t,a.replace(\\\"?\\\",r)),l=i.nestedProperty(t,a.replace(\\\"?\\\",n)),c=s.get();s.set(l.get()),l.set(c)}},i.pauseEvent=function(t){return t.stopPropagation&&t.stopPropagation(),t.preventDefault&&t.preventDefault(),t.cancelBubble=!0,!1},i.VERBOSE=!1,i.TIMER=(new Date).getTime(),i.log=function(){i.VERBOSE&&console.log.apply(console,arguments)},i.markTime=function(t){if(i.VERBOSE){var e=(new Date).getTime();console.log(t,e-i.TIMER,\\\"(msec)\\\"),\\\"trace\\\"===i.VERBOSE&&console.trace(),i.TIMER=e}},i.constrain=function(t,e,r){return e>r?Math.max(r,Math.min(e,t)):Math.max(e,Math.min(r,t))},i.bBoxIntersect=function(t,e,r){return r=r||0,t.left<=e.right+r&&e.left<=t.right+r&&t.top<=e.bottom+r&&e.top<=t.bottom+r},i.identity=function(t){return t},i.randstr=function h(t,e,r){if(r||(r=16),void 0===e&&(e=24),0>=e)return\\\"0\\\";var n,i,o,a=Math.log(Math.pow(2,e))/Math.log(r),s=\\\"\\\";for(n=2;a===1/0;n*=2)a=Math.log(Math.pow(2,e/n))/Math.log(r)*n;var l=a-Math.floor(a);for(n=0;n<Math.floor(a);n++)o=Math.floor(Math.random()*r).toString(r),s=o+s;l&&(i=Math.pow(r,l),o=Math.floor(Math.random()*i).toString(r),s=o+s);var c=parseInt(s,r);return t&&t.indexOf(s)>-1||c!==1/0&&c>=Math.pow(2,e)?h(t,e,r):s},i.OptionControl=function(t,e){t||(t={}),e||(e=\\\"opt\\\");var r={};return r.optionList=[],r._newoption=function(n){n[e]=t,r[n.name]=n,r.optionList.push(n)},r[\\\"_\\\"+e]=t,r},i.smooth=function(t,e){if(e=Math.round(e)||0,2>e)return t;var r,n,i,o,a=t.length,s=2*a,l=2*e-1,c=new Array(l),u=new Array(a);for(r=0;l>r;r++)c[r]=(1-Math.cos(Math.PI*(r+1)/e))/(2*e);for(r=0;a>r;r++){for(o=0,n=0;l>n;n++)i=r+n+1-e,-a>i?i-=s*Math.round(i/s):i>=s&&(i-=s*Math.floor(i/s)),0>i?i=-1-i:i>=a&&(i=s-1-i),o+=t[i]*c[n];u[r]=o}return u},i.promiseError=function(t){console.log(t,t.stack)},i.syncOrAsync=function(t,e,r){function n(){return i.markTime(\\\"async done \\\"+a.name),i.syncOrAsync(t,e,r)}for(var o,a;t.length;){if(a=t.splice(0,1)[0],o=a(e),o&&o.then)return o.then(n).then(void 0,i.promiseError);i.markTime(\\\"sync done \\\"+a.name)}return r&&r(e)},i.stripTrailingSlash=function(t){return\\\"/\\\"===t.substr(-1)?t.substr(0,t.length-1):t},i.noneOrAll=function(t,e,r){if(t){var n,i,o=!1,a=!0;for(n=0;n<r.length;n++)i=t[r[n]],void 0!==i&&null!==i?o=!0:a=!1;if(o&&!a)for(n=0;n<r.length;n++)t[r[n]]=e[r[n]]}},i.mergeArray=function(t,e,r){if(Array.isArray(t))for(var n=Math.min(t.length,e.length),i=0;n>i;i++)e[i][r]=t[i]},i.minExtend=function(t,e){var r={};\\\"object\\\"!=typeof e&&(e={});var n,o,a,s=3,l=Object.keys(t);for(n=0;n<l.length;n++)o=l[n],a=t[o],\\\"_\\\"!==o.charAt(0)&&\\\"function\\\"!=typeof a&&(\\\"module\\\"===o?r[o]=a:Array.isArray(a)?r[o]=a.slice(0,s):a&&\\\"object\\\"==typeof a?r[o]=i.minExtend(t[o],e[o]):r[o]=a);for(l=Object.keys(e),n=0;n<l.length;n++)o=l[n],a=e[o],\\\"object\\\"==typeof a&&o in r&&\\\"object\\\"==typeof r[o]||(r[o]=a);return r},i.titleCase=function(t){return t.charAt(0).toUpperCase()+t.substr(1)},i.containsAny=function(t,e){for(var r=0;r<e.length;r++)if(-1!==t.indexOf(e[r]))return!0;return!1},i.getPlotDiv=function(t){for(;t&&t.removeAttribute;t=t.parentNode)if(i.isPlotDiv(t))return t},i.isPlotDiv=function(t){var e=n.select(t);return e.size()&&e.classed(\\\"js-plotly-plot\\\")},i.removeElement=function(t){var e=t&&t.parentNode;e&&e.removeChild(t)},i.addStyleRule=function(t,e){if(!i.styleSheet){var r=document.createElement(\\\"style\\\");r.appendChild(document.createTextNode(\\\"\\\")),document.head.appendChild(r),i.styleSheet=r.sheet}var n=i.styleSheet;n.insertRule?n.insertRule(t+\\\"{\\\"+e+\\\"}\\\",0):n.addRule?n.addRule(t,e,0):console.warn(\\\"addStyleRule failed\\\")},i.isIE=function(){return\\\"undefined\\\"!=typeof window.navigator.msSaveBlob}},{\\\"./coerce\\\":366,\\\"./dates\\\":367,\\\"./extend\\\":369,\\\"./is_plain_object\\\":374,\\\"./matrix\\\":375,\\\"./nested_property\\\":376,\\\"./notifier\\\":377,\\\"./search\\\":380,\\\"./stats\\\":382,d3:70}],374:[function(t,e,r){\\\"use strict\\\";e.exports=function(t){return\\\"[object Object]\\\"===Object.prototype.toString.call(t)&&Object.getPrototypeOf(t)===Object.prototype}},{}],375:[function(t,e,r){\\\"use strict\\\";r.init2dArray=function(t,e){for(var r=new Array(t),n=0;t>n;n++)r[n]=new Array(e);return r},r.transposeRagged=function(t){var e,r,n=0,i=t.length;for(e=0;i>e;e++)n=Math.max(n,t[e].length);var o=new Array(n);for(e=0;n>e;e++)for(o[e]=new Array(i),r=0;i>r;r++)o[e][r]=t[r][e];return o},r.dot=function(t,e){if(!t.length||!e.length||t.length!==e.length)return null;var n,i,o=t.length;if(t[0].length)for(n=new Array(o),i=0;o>i;i++)n[i]=r.dot(t[i],e);else if(e[0].length){var a=r.transposeRagged(e);for(n=new Array(a.length),i=0;i<a.length;i++)n[i]=r.dot(t,a[i])}else for(n=0,i=0;o>i;i++)n+=t[i]*e[i];return n},r.translationMatrix=function(t,e){return[[1,0,t],[0,1,e],[0,0,1]]},r.rotationMatrix=function(t){var e=t*Math.PI/180;return[[Math.cos(e),-Math.sin(e),0],[Math.sin(e),Math.cos(e),0],[0,0,1]]},r.rotationXYMatrix=function(t,e,n){return r.dot(r.dot(r.translationMatrix(e,n),r.rotationMatrix(t)),r.translationMatrix(-e,-n))},r.apply2DTransform=function(t){return function(){var e=arguments;3===e.length&&(e=e[0]);var n=1===arguments.length?e[0]:[e[0],e[1]];return r.dot(t,[n[0],n[1],1]).slice(0,2)}},r.apply2DTransform2=function(t){var e=r.apply2DTransform(t);return function(t){return e(t.slice(0,2)).concat(e(t.slice(2,4)))}}},{}],376:[function(t,e,r){\\\"use strict\\\";function n(t,e){return function(){var r,i,o,a,s,l=t;for(a=0;a<e.length-1;a++){if(r=e[a],-1===r){for(i=!0,o=[],s=0;s<l.length;s++)o[s]=n(l[s],e.slice(a+1))(),o[s]!==o[0]&&(i=!1);return i?o[0]:o}if(\\\"number\\\"==typeof r&&!Array.isArray(l))return;if(l=l[r],\\\"object\\\"!=typeof l||null===l)return}if(\\\"object\\\"==typeof l&&null!==l&&(o=l[e[a]],null!==o))return o}}function i(t,e){var r=[\\\"annotations\\\",\\\"shapes\\\",\\\"range\\\",\\\"domain\\\",\\\"buttons\\\"],n=-1===r.indexOf(e);return Array.isArray(t)&&n}function o(t,e){return function(r){var n,o,u=t,h=[t],f=c(r)&&!i(r,e[e.length-1]);for(o=0;o<e.length-1;o++){if(n=e[o],\\\"number\\\"==typeof n&&!Array.isArray(u))throw\\\"array index but container is not an array\\\";if(-1===n){if(f=!a(u,e.slice(o+1),r))break;return}if(!s(u,n,e[o+1],f))break;if(u=u[n],\\\"object\\\"!=typeof u||null===u)throw\\\"container is not an object\\\";h.push(u)}f?(o===e.length-1&&delete u[e[o]],l(h)):u[e[o]]=r}}function a(t,e,r){var n,i=Array.isArray(r),a=!0,l=r,u=i?!1:c(r),h=e[0];for(n=0;n<t.length;n++)i&&(l=r[n%r.length],u=c(l)),u&&(a=!1),s(t,n,h,u)&&o(t[n],e)(l);return a}function s(t,e,r,n){if(void 0===t[e]){if(n)return!1;\\\"number\\\"==typeof r?t[e]=[]:t[e]={}}return!0}function l(t){var e,r,n,o,a;for(e=t.length-1;e>=0;e--){if(n=t[e],a=!1,Array.isArray(n))for(r=n.length-1;r>=0;r--)c(n[r])?a?n[r]=void 0:n.pop():a=!0;else if(\\\"object\\\"==typeof n&&null!==n)for(o=Object.keys(n),a=!1,\\n\",\n       \"r=o.length-1;r>=0;r--)c(n[o[r]])&&!i(n[o[r]],o[r])?delete n[o[r]]:a=!0;if(a)return}}function c(t){return void 0===t||null===t?!0:\\\"object\\\"!=typeof t?!1:Array.isArray(t)?!t.length:!Object.keys(t).length}function u(t,e,r){return{set:function(){throw\\\"bad container\\\"},get:function(){},astr:e,parts:r,obj:t}}var h=t(\\\"fast-isnumeric\\\");e.exports=function(t,e){if(h(e))e=String(e);else if(\\\"string\\\"!=typeof e||\\\"[-1]\\\"===e.substr(e.length-4))throw\\\"bad property string\\\";for(var r,i,a,s=0,l=e.split(\\\".\\\");s<l.length;){if(r=String(l[s]).match(/^([^\\\\[\\\\]]*)((\\\\[\\\\-?[0-9]*\\\\])+)$/)){if(r[1])l[s]=r[1];else{if(0!==s)throw\\\"bad property string\\\";l.splice(0,1)}for(i=r[2].substr(1,r[2].length-2).split(\\\"][\\\"),a=0;a<i.length;a++)s++,l.splice(s,0,Number(i[a]))}s++}return\\\"object\\\"!=typeof t?u(t,e,l):{set:o(t,l),get:n(t,l),astr:e,parts:l,obj:t}}},{\\\"fast-isnumeric\\\":74}],377:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"d3\\\"),i=t(\\\"fast-isnumeric\\\"),o=[];e.exports=function(t,e){function r(t){t.duration(700).style(\\\"opacity\\\",0).each(\\\"end\\\",function(t){var e=o.indexOf(t);-1!==e&&o.splice(e,1),n.select(this).remove()})}if(-1===o.indexOf(t)){o.push(t);var a=1e3;i(e)?a=e:\\\"long\\\"===e&&(a=3e3);var s=n.select(\\\"body\\\").selectAll(\\\".plotly-notifier\\\").data([0]);s.enter().append(\\\"div\\\").classed(\\\"plotly-notifier\\\",!0);var l=s.selectAll(\\\".notifier-note\\\").data(o);l.enter().append(\\\"div\\\").classed(\\\"notifier-note\\\",!0).style(\\\"opacity\\\",0).each(function(t){var e=n.select(this);e.append(\\\"button\\\").classed(\\\"notifier-close\\\",!0).html(\\\"&times;\\\").on(\\\"click\\\",function(){e.transition().call(r)}),e.append(\\\"p\\\").html(t),e.transition().duration(700).style(\\\"opacity\\\",1).transition().delay(a).call(r)})}}},{d3:70,\\\"fast-isnumeric\\\":74}],378:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"./matrix\\\").dot,i=e.exports={};i.tester=function(t){function e(t,e){var r=t[0],n=t[1];return i>r||r>o||a>n||n>s?!1:!e||!c(t)}function r(t,e){var r=t[0],l=t[1];if(i>r||r>o||a>l||l>s)return!1;var c,u,h,f,d,p=n.length,g=n[0][0],v=n[0][1],m=0;for(c=1;p>c;c++)if(u=g,h=v,g=n[c][0],v=n[c][1],f=Math.min(u,g),!(f>r||r>Math.max(u,g)||l>Math.max(h,v)))if(l<Math.min(h,v))r!==f&&m++;else{if(d=g===u?l:h+(r-u)*(v-h)/(g-u),l===d)return 1!==c||!e;d>=l&&r!==f&&m++}return m%2===1}var n=t.slice(),i=n[0][0],o=i,a=n[0][1],s=a;n.push(n[0]);for(var l=1;l<n.length;l++)i=Math.min(i,n[l][0]),o=Math.max(o,n[l][0]),a=Math.min(a,n[l][1]),s=Math.max(s,n[l][1]);var c,u=!1;return 5===n.length&&(n[0][0]===n[1][0]?n[2][0]===n[3][0]&&n[0][1]===n[3][1]&&n[1][1]===n[2][1]&&(u=!0,c=function(t){return t[0]===n[0][0]}):n[0][1]===n[1][1]&&n[2][1]===n[3][1]&&n[0][0]===n[3][0]&&n[1][0]===n[2][0]&&(u=!0,c=function(t){return t[1]===n[0][1]})),{xmin:i,xmax:o,ymin:a,ymax:s,pts:n,contains:u?e:r,isRect:u}};var o=i.isSegmentBent=function(t,e,r,i){var o,a,s,l=t[e],c=[t[r][0]-l[0],t[r][1]-l[1]],u=n(c,c),h=Math.sqrt(u),f=[-c[1]/h,c[0]/h];for(o=e+1;r>o;o++)if(a=[t[o][0]-l[0],t[o][1]-l[1]],s=n(a,c),0>s||s>u||Math.abs(n(a,f))>i)return!0;return!1};i.filter=function(t,e){function r(r){t.push(r);var s=n.length,l=i;n.splice(a+1);for(var c=l+1;c<t.length;c++)(c===t.length-1||o(t,l,c+1,e))&&(n.push(t[c]),n.length<s-2&&(i=c,a=n.length-1),l=c)}var n=[t[0]],i=0,a=0;if(t.length>1){var s=t.pop();r(s)}return{addPt:r,raw:t,filtered:n}}},{\\\"./matrix\\\":375}],379:[function(t,e,r){\\\"use strict\\\";function n(t,e){for(var r,n=[],o=0;o<e.length;o++)r=e[o],r===t?n[o]=r:\\\"object\\\"==typeof r?n[o]=Array.isArray(r)?i.Lib.extendDeep([],r):i.Lib.extendDeepAll({},r):n[o]=r;return n}var i=t(\\\"../plotly\\\"),o={};o.add=function(t,e,r,n,i){var o,a;return t.undoQueue=t.undoQueue||{index:0,queue:[],sequence:!1},a=t.undoQueue.index,t.autoplay?void(t.undoQueue.inSequence||(t.autoplay=!1)):(!t.undoQueue.sequence||t.undoQueue.beginSequence?(o={undo:{calls:[],args:[]},redo:{calls:[],args:[]}},t.undoQueue.queue.splice(a,t.undoQueue.queue.length-a,o),t.undoQueue.index+=1):o=t.undoQueue.queue[a-1],t.undoQueue.beginSequence=!1,o.undo.calls.unshift(e),o.undo.args.unshift(r),o.redo.calls.push(n),void o.redo.args.push(i))},o.startSequence=function(t){t.undoQueue=t.undoQueue||{index:0,queue:[],sequence:!1},t.undoQueue.sequence=!0,t.undoQueue.beginSequence=!0},o.stopSequence=function(t){t.undoQueue=t.undoQueue||{index:0,queue:[],sequence:!1},t.undoQueue.sequence=!1,t.undoQueue.beginSequence=!1},o.undo=function(t){var e,r;if(t.framework&&t.framework.isPolar)return void t.framework.undo();if(!(void 0===t.undoQueue||isNaN(t.undoQueue.index)||t.undoQueue.index<=0)){for(t.undoQueue.index--,e=t.undoQueue.queue[t.undoQueue.index],t.undoQueue.inSequence=!0,r=0;r<e.undo.calls.length;r++)o.plotDo(t,e.undo.calls[r],e.undo.args[r]);t.undoQueue.inSequence=!1,t.autoplay=!1}},o.redo=function(t){var e,r;if(t.framework&&t.framework.isPolar)return void t.framework.redo();if(!(void 0===t.undoQueue||isNaN(t.undoQueue.index)||t.undoQueue.index>=t.undoQueue.queue.length)){for(e=t.undoQueue.queue[t.undoQueue.index],t.undoQueue.inSequence=!0,r=0;r<e.redo.calls.length;r++)o.plotDo(t,e.redo.calls[r],e.redo.args[r]);t.undoQueue.inSequence=!1,t.autoplay=!1,t.undoQueue.index++}},o.plotDo=function(t,e,r){t.autoplay=!0,r=n(t,r),e.apply(null,r)},e.exports=o},{\\\"../plotly\\\":390}],380:[function(t,e,r){\\\"use strict\\\";function n(t,e){return e>t}function i(t,e){return e>=t}function o(t,e){return t>e}function a(t,e){return t>=e}var s=t(\\\"fast-isnumeric\\\");r.findBin=function(t,e,r){if(s(e.start))return r?Math.ceil((t-e.start)/e.size)-1:Math.floor((t-e.start)/e.size);var l,c,u=0,h=e.length,f=0;for(c=e[e.length-1]>=e[0]?r?n:i:r?a:o;h>u&&f++<100;)l=Math.floor((u+h)/2),c(e[l],t)?u=l+1:h=l;return f>90&&console.log(\\\"Long binary search...\\\"),u-1},r.sorterAsc=function(t,e){return t-e},r.sorterDes=function(t,e){return e-t},r.distinctVals=function(t){var e=t.slice();e.sort(r.sorterAsc);for(var n=e.length-1,i=e[n]-e[0]||1,o=i/(n||1)/1e4,a=[e[0]],s=0;n>s;s++)e[s+1]>e[s]+o&&(i=Math.min(i,e[s+1]-e[s]),a.push(e[s+1]));return{vals:a,minDiff:i}},r.roundUp=function(t,e,r){for(var n,i=0,o=e.length-1,a=0,s=r?0:1,l=r?1:0,c=r?Math.ceil:Math.floor;o>i&&a++<100;)n=c((i+o)/2),e[n]<=t?i=n+s:o=n-l;return e[i]}},{\\\"fast-isnumeric\\\":74}],381:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../plotly\\\"),i=function(){};e.exports=function(t){for(var e in t)\\\"function\\\"==typeof t[e]&&(t[e]=i);t.destroy=function(){t.container.parentNode.removeChild(t.container)};var r=document.createElement(\\\"div\\\");return r.textContent=\\\"Webgl is not supported by your browser - visit http://get.webgl.org for more info\\\",r.style.cursor=\\\"pointer\\\",r.style.fontSize=\\\"24px\\\",r.style.color=n.Color.defaults[0],t.container.appendChild(r),t.container.style.background=\\\"#FFFFFF\\\",t.container.onclick=function(){window.open(\\\"http://get.webgl.org\\\")},!1}},{\\\"../plotly\\\":390}],382:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"fast-isnumeric\\\");r.aggNums=function(t,e,i,o){var a,s;if(o||(o=i.length),n(e)||(e=!1),Array.isArray(i[0])){for(s=new Array(o),a=0;o>a;a++)s[a]=r.aggNums(t,e,i[a]);i=s}for(a=0;o>a;a++)n(e)?n(i[a])&&(e=t(+e,+i[a])):e=i[a];return e},r.len=function(t){return r.aggNums(function(t){return t+1},0,t)},r.mean=function(t,e){return e||(e=r.len(t)),r.aggNums(function(t,e){return t+e},0,t)/e},r.variance=function(t,e,i){return e||(e=r.len(t)),n(i)||(i=r.mean(t,e)),r.aggNums(function(t,e){return t+Math.pow(e-i,2)},0,t)/e},r.stdev=function(t,e,n){return Math.sqrt(r.variance(t,e,n))},r.interp=function(t,e){if(!n(e))throw\\\"n should be a finite number\\\";if(e=e*t.length-.5,0>e)return t[0];if(e>t.length-1)return t[t.length-1];var r=e%1;return r*t[Math.ceil(e)]+(1-r)*t[Math.floor(e)]}},{\\\"fast-isnumeric\\\":74}],383:[function(t,e,r){\\\"use strict\\\";function n(t){return t=i(t),o.str2RgbaArray(t.toRgbString())}var i=t(\\\"tinycolor2\\\"),o=t(\\\"arraytools\\\");e.exports=n},{arraytools:48,tinycolor2:231}],384:[function(t,e,r){\\\"use strict\\\";function n(t,e){return t.node().getBoundingClientRect()[e]}function i(t){return t.replace(/(<|&lt;|&#60;)/g,\\\"\\\\\\\\lt \\\").replace(/(>|&gt;|&#62;)/g,\\\"\\\\\\\\gt \\\")}function o(t,e,r){var n=\\\"math-output-\\\"+l.Lib.randstr([],64),o=c.select(\\\"body\\\").append(\\\"div\\\").attr({id:n}).style({visibility:\\\"hidden\\\",position:\\\"absolute\\\"}).style({\\\"font-size\\\":e.fontSize+\\\"px\\\"}).text(i(t));MathJax.Hub.Queue([\\\"Typeset\\\",MathJax.Hub,o.node()],function(){var e=c.select(\\\"body\\\").select(\\\"#MathJax_SVG_glyphs\\\");if(o.select(\\\".MathJax_SVG\\\").empty()||!o.select(\\\"svg\\\").node())console.log(\\\"There was an error in the tex syntax.\\\",t),r();else{var n=o.select(\\\"svg\\\").node().getBoundingClientRect();r(o.select(\\\".MathJax_SVG\\\"),e,n)}o.remove()})}function a(t){for(var e=l.util.html_entity_decode(t),r=e.split(/(<[^<>]*>)/).map(function(t){var e=t.match(/<(\\\\/?)([^ >]*)\\\\s*(.*)>/i),r=e&&e[2].toLowerCase(),n=f[r];if(void 0!==n){var i=e[1],o=e[3],a=o.match(/^style\\\\s*=\\\\s*\\\"([^\\\"]+)\\\"\\\\s*/i);if(\\\"a\\\"===r){if(i)return\\\"</a>\\\";if(\\\"href\\\"!==o.substr(0,4).toLowerCase())return\\\"<a>\\\";var s=document.createElement(\\\"a\\\");return s.href=o.substr(4).replace(/[\\\"'=]/g,\\\"\\\"),-1===d.indexOf(s.protocol)?\\\"<a>\\\":'<a xlink:show=\\\"new\\\" xlink:href'+o.substr(4)+\\\">\\\"}if(\\\"br\\\"===r)return\\\"<br>\\\";if(i)return\\\"sup\\\"===r?'</tspan><tspan dy=\\\"0.42em\\\">&#x200b;</tspan>':\\\"sub\\\"===r?'</tspan><tspan dy=\\\"-0.21em\\\">&#x200b;</tspan>':\\\"</tspan>\\\";var c=\\\"<tspan\\\";return\\\"sup\\\"!==r&&\\\"sub\\\"!==r||(c=\\\"&#x200b;\\\"+c),a&&(a=a[1].replace(/(^|;)\\\\s*color:/,\\\"$1 fill:\\\"),n=(n?n+\\\";\\\":\\\"\\\")+a),c+(n?' style=\\\"'+n+'\\\"':\\\"\\\")+\\\">\\\"}return l.util.xml_entity_encode(t).replace(/</g,\\\"&lt;\\\")}),n=[],i=r.indexOf(\\\"<br>\\\");i>0;i=r.indexOf(\\\"<br>\\\",i+1))n.push(i);var o=0;n.forEach(function(t){for(var e=t+o,n=r.slice(0,e),i=\\\"\\\",a=n.length-1;a>=0;a--){var s=n[a].match(/<(\\\\/?).*>/i);if(s&&\\\"<br>\\\"!==n[a]){s[1]||(i=n[a]);break}}i&&(r.splice(e+1,0,i),r.splice(e,0,\\\"</tspan>\\\"),o+=2)});var a=r.join(\\\"\\\"),s=a.split(/<br>/gi);return s.length>1&&(r=s.map(function(t,e){return'<tspan class=\\\"line\\\" dy=\\\"'+1.3*e+'em\\\">'+t+\\\"</tspan>\\\"})),r.join(\\\"\\\")}function s(t,e,r){var n,i,o,a=r.horizontalAlign,s=r.verticalAlign||\\\"top\\\",l=t.node().getBoundingClientRect(),c=e.node().getBoundingClientRect();return i=\\\"bottom\\\"===s?function(){return l.bottom-n.height}:\\\"middle\\\"===s?function(){return l.top+(l.height-n.height)/2}:function(){return l.top},o=\\\"right\\\"===a?function(){return l.right-n.width}:\\\"center\\\"===a?function(){return l.left+(l.width-n.width)/2}:function(){return l.left},function(){return n=this.node().getBoundingClientRect(),this.style({top:i()-c.top+\\\"px\\\",left:o()-c.left+\\\"px\\\",\\\"z-index\\\":1e3}),this}}var l=t(\\\"../plotly\\\"),c=t(\\\"d3\\\"),u=t(\\\"../constants/xmlns_namespaces\\\"),h=e.exports={};c.selection.prototype.appendSVG=function(t){for(var e=['<svg xmlns=\\\"',u.svg,'\\\" ','xmlns:xlink=\\\"',u.xlink,'\\\">',t,\\\"</svg>\\\"].join(\\\"\\\"),r=(new DOMParser).parseFromString(e,\\\"application/xml\\\"),n=r.documentElement.firstChild;n;)this.node().appendChild(this.node().ownerDocument.importNode(n,!0)),n=n.nextSibling;return r.querySelector(\\\"parsererror\\\")?(console.log(r.querySelector(\\\"parsererror div\\\").textContent),null):c.select(this.node().lastChild)},h.html_entity_decode=function(t){var e=c.select(\\\"body\\\").append(\\\"div\\\").style({display:\\\"none\\\"}).html(\\\"\\\"),r=t.replace(/(&[^;]*;)/gi,function(t){return\\\"&lt;\\\"===t?\\\"&#60;\\\":\\\"&rt;\\\"===t?\\\"&#62;\\\":e.html(t).text()});return e.remove(),r},h.xml_entity_encode=function(t){return t.replace(/&(?!\\\\w+;|\\\\#[0-9]+;| \\\\#x[0-9A-F]+;)/g,\\\"&amp;\\\")},h.convertToTspans=function(t,e){function r(){d.empty()||(p=u.attr(\\\"class\\\")+\\\"-math\\\",d.select(\\\"svg.\\\"+p).remove()),t.text(\\\"\\\").style({visibility:\\\"visible\\\",\\\"white-space\\\":\\\"pre\\\"}),f=t.appendSVG(s),f||t.text(i),t.select(\\\"a\\\").size()&&t.style(\\\"pointer-events\\\",\\\"all\\\"),e&&e.call(u)}var i=t.text(),s=a(i),u=t,h=!u.attr(\\\"data-notex\\\")&&s.match(/([^$]*)([$]+[^$]*[$]+)([^$]*)/),f=i,d=c.select(u.node().parentNode);if(!d.empty()){var p=u.attr(\\\"class\\\")?u.attr(\\\"class\\\").split(\\\" \\\")[0]:\\\"text\\\";p+=\\\"-math\\\",d.selectAll(\\\"svg.\\\"+p).remove(),d.selectAll(\\\"g.\\\"+p+\\\"-group\\\").remove(),t.style({visibility:null});for(var g=t.node();g&&g.removeAttribute;g=g.parentNode)g.removeAttribute(\\\"data-bb\\\");if(h){var v=l.Lib.getPlotDiv(u.node());(v&&v._promises||[]).push(new Promise(function(t){u.style({visibility:\\\"hidden\\\"});var i={fontSize:parseInt(u.style(\\\"font-size\\\"),10)};o(h[2],i,function(i,o,a){d.selectAll(\\\"svg.\\\"+p).remove(),d.selectAll(\\\"g.\\\"+p+\\\"-group\\\").remove();var s=i&&i.select(\\\"svg\\\");if(!s||!s.node())return r(),void t();var l=d.append(\\\"g\\\").classed(p+\\\"-group\\\",!0).attr({\\\"pointer-events\\\":\\\"none\\\"});l.node().appendChild(s.node()),o&&o.node()&&s.node().insertBefore(o.node().cloneNode(!0),s.node().firstChild),s.attr({\\\"class\\\":p,height:a.height,preserveAspectRatio:\\\"xMinYMin meet\\\"}).style({overflow:\\\"visible\\\",\\\"pointer-events\\\":\\\"none\\\"});var c=u.style(\\\"fill\\\")||\\\"black\\\";s.select(\\\"g\\\").attr({fill:c,stroke:c});var h=n(s,\\\"width\\\"),f=n(s,\\\"height\\\"),g=+u.attr(\\\"x\\\")-h*{start:0,middle:.5,end:1}[u.attr(\\\"text-anchor\\\")||\\\"start\\\"],v=parseInt(u.style(\\\"font-size\\\"),10)||n(u,\\\"height\\\"),m=-v/4;\\\"y\\\"===p[0]?(l.attr({transform:\\\"rotate(\\\"+[-90,+u.attr(\\\"x\\\"),+u.attr(\\\"y\\\")]+\\\") translate(\\\"+[-h/2,m-f/2]+\\\")\\\"}),s.attr({x:+u.attr(\\\"x\\\"),y:+u.attr(\\\"y\\\")})):\\\"l\\\"===p[0]?s.attr({x:u.attr(\\\"x\\\"),y:m-f/2}):\\\"a\\\"===p[0]?s.attr({x:0,y:m}):s.attr({x:g,y:+u.attr(\\\"y\\\")+m-f/2}),e&&e.call(u,l),t(l)})}))}else r();return t}};var f={sup:'font-size:70%\\\" dy=\\\"-0.6em',sub:'font-size:70%\\\" dy=\\\"0.3em',b:\\\"font-weight:bold\\\",i:\\\"font-style:italic\\\",a:\\\"\\\",span:\\\"\\\",br:\\\"\\\",em:\\\"font-style:italic;font-weight:bold\\\"},d=[\\\"http:\\\",\\\"https:\\\",\\\"mailto:\\\"],p=new RegExp(\\\"</?(\\\"+Object.keys(f).join(\\\"|\\\")+\\\")( [^>]*)?/?>\\\",\\\"g\\\");h.plainText=function(t){return(t||\\\"\\\").replace(p,\\\" \\\")},h.makeEditable=function(t,e,r){function n(){o(),a.style({opacity:0});var t,e=f.attr(\\\"class\\\");t=e?\\\".\\\"+e.split(\\\" \\\")[0]+\\\"-math-group\\\":\\\"[class*=-math-group]\\\",t&&c.select(a.node().parentNode).select(t).style({opacity:0})}function i(t){var e=t.node(),r=document.createRange();r.selectNodeContents(e);var n=window.getSelection();n.removeAllRanges(),n.addRange(r),e.focus()}function o(){var t=c.select(l.Lib.getPlotDiv(a.node())),e=t.select(\\\".svg-container\\\"),n=e.append(\\\"div\\\");n.classed(\\\"plugin-editable editable\\\",!0).style({position:\\\"absolute\\\",\\\"font-family\\\":a.style(\\\"font-family\\\")||\\\"Arial\\\",\\\"font-size\\\":a.style(\\\"font-size\\\")||12,color:r.fill||a.style(\\\"fill\\\")||\\\"black\\\",opacity:1,\\\"background-color\\\":r.background||\\\"transparent\\\",outline:\\\"#ffffff33 1px solid\\\",margin:[-parseFloat(a.style(\\\"font-size\\\"))/8+1,0,0,-1].join(\\\"px \\\")+\\\"px\\\",padding:\\\"0\\\",\\\"box-sizing\\\":\\\"border-box\\\"}).attr({contenteditable:!0}).text(r.text||a.attr(\\\"data-unformatted\\\")).call(s(a,e,r)).on(\\\"blur\\\",function(){a.text(this.textContent).style({opacity:1});var t,e=c.select(this).attr(\\\"class\\\");t=e?\\\".\\\"+e.split(\\\" \\\")[0]+\\\"-math-group\\\":\\\"[class*=-math-group]\\\",t&&c.select(a.node().parentNode).select(t).style({opacity:0});var r=this.textContent;c.select(this).transition().duration(0).remove(),c.select(document).on(\\\"mouseup\\\",null),u.edit.call(a,r)}).on(\\\"focus\\\",function(){var t=this;c.select(document).on(\\\"mouseup\\\",function(){return c.event.target===t?!1:void(document.activeElement===n.node()&&n.node().blur())})}).on(\\\"keyup\\\",function(){27===c.event.which?(a.style({opacity:1}),c.select(this).style({opacity:0}).on(\\\"blur\\\",function(){return!1}).transition().remove(),u.cancel.call(a,this.textContent)):(u.input.call(a,this.textContent),c.select(this).call(s(a,e,r)))}).on(\\\"keydown\\\",function(){13===c.event.which&&this.blur()}).call(i)}r||(r={});var a=this,u=c.dispatch(\\\"edit\\\",\\\"input\\\",\\\"cancel\\\"),h=c.select(this.node()).style({\\\"pointer-events\\\":\\\"all\\\"}),f=e||h;return e&&h.style({\\\"pointer-events\\\":\\\"none\\\"}),r.immediate?n():f.on(\\\"click\\\",n),c.rebind(this,u,\\\"on\\\")}},{\\\"../constants/xmlns_namespaces\\\":362,\\\"../plotly\\\":390,d3:70}],385:[function(t,e,r){\\\"use strict\\\";var n=e.exports={},i=t(\\\"../constants/geo_constants\\\").locationmodeToLayer,o=t(\\\"topojson\\\").feature;n.getTopojsonName=function(t){return[t.scope.replace(/ /g,\\\"-\\\"),\\\"_\\\",t.resolution.toString(),\\\"m\\\"].join(\\\"\\\")},n.getTopojsonPath=function(t,e){return t+e+\\\".json\\\"},n.getTopojsonFeatures=function(t,e){var r=i[t.locationmode],n=e.objects[r];return o(e,n).features}},{\\\"../constants/geo_constants\\\":358,topojson:232}],386:[function(t,e,r){\\\"use strict\\\";function n(t){var e;if(\\\"string\\\"==typeof t){if(e=document.getElementById(t),null===e)throw new Error(\\\"No DOM element with id '\\\"+t+\\\"' exists on the page.\\\");return e}if(null===t||void 0===t)throw new Error(\\\"DOM element provided is null or undefined\\\");return t}function i(t,e){t._fullLayout._paperdiv.style(\\\"background\\\",\\\"white\\\"),P.defaultConfig.setBackground(t,e)}function o(t,e){t._context||(t._context=z.extendFlat({},P.defaultConfig));var r=t._context;e&&(Object.keys(e).forEach(function(t){t in r&&(\\\"setBackground\\\"===t&&\\\"opaque\\\"===e[t]?r[t]=i:r[t]=e[t])}),e.plot3dPixelRatio&&!r.plotGlPixelRatio&&(r.plotGlPixelRatio=r.plot3dPixelRatio)),r.staticPlot&&(r.editable=!1,r.autosizable=!1,r.scrollZoom=!1,r.doubleClick=!1,r.showTips=!1,r.showLink=!1,r.displayModeBar=!1)}function a(t,e,r){var n=L.select(t).selectAll(\\\".plot-container\\\").data([0]);n.enter().insert(\\\"div\\\",\\\":first-child\\\").classed(\\\"plot-container plotly\\\",!0);var i=n.selectAll(\\\".svg-container\\\").data([0]);i.enter().append(\\\"div\\\").classed(\\\"svg-container\\\",!0).style(\\\"position\\\",\\\"relative\\\"),i.html(\\\"\\\"),e&&(t.data=e),r&&(t.layout=r),P.micropolar.manager.fillLayout(t),\\\"initial\\\"===t._fullLayout.autosize&&t._context.autosizable&&(w(t,{}),t._fullLayout.autosize=r.autosize=!0),i.style({width:t._fullLayout.width+\\\"px\\\",height:t._fullLayout.height+\\\"px\\\"}),t.framework=P.micropolar.manager.framework(t),t.framework({data:t.data,layout:t.layout},i.node()),t.framework.setUndoPoint();var o=t.framework.svg(),a=1,s=t._fullLayout.title;\\\"\\\"!==s&&s||(a=0);var l=\\\"Click to enter title\\\",c=function(){this.call(P.util.convertToTspans)},u=o.select(\\\".title-group text\\\").call(c);if(t._context.editable){u.attr({\\\"data-unformatted\\\":s}),s&&s!==l||(a=.2,u.attr({\\\"data-unformatted\\\":l}).text(l).style({opacity:a}).on(\\\"mouseover.opacity\\\",function(){L.select(this).transition().duration(100).style(\\\"opacity\\\",1)}).on(\\\"mouseout.opacity\\\",function(){L.select(this).transition().duration(1e3).style(\\\"opacity\\\",0)}));var h=function(){this.call(P.util.makeEditable).on(\\\"edit\\\",function(e){t.framework({layout:{title:e}}),this.attr({\\\"data-unformatted\\\":e}).text(e).call(c),this.call(h)}).on(\\\"cancel\\\",function(){var t=this.attr(\\\"data-unformatted\\\");this.text(t).call(c)})};u.call(h)}return t._context.setBackground(t,t._fullLayout.paper_bgcolor),I.addLinks(t),Promise.resolve()}function s(t){var e,r;t||(t={}),t.xaxis1&&(t.xaxis||(t.xaxis=t.xaxis1),delete t.xaxis1),t.yaxis1&&(t.yaxis||(t.yaxis=t.yaxis1),delete t.yaxis1);var n=P.Axes.list({_fullLayout:t});for(e=0;e<n.length;e++){var i=n[e];i.anchor&&\\\"free\\\"!==i.anchor&&(i.anchor=P.Axes.cleanId(i.anchor)),i.overlaying&&(i.overlaying=P.Axes.cleanId(i.overlaying)),i.type||(i.isdate?i.type=\\\"date\\\":i.islog?i.type=\\\"log\\\":i.isdate===!1&&i.islog===!1&&(i.type=\\\"linear\\\")),\\\"withzero\\\"!==i.autorange&&\\\"tozero\\\"!==i.autorange||(i.autorange=!0,i.rangemode=\\\"tozero\\\"),delete i.islog,delete i.isdate,delete i.categories,h(i,\\\"domain\\\")&&delete i.domain,void 0!==i.autotick&&(void 0===i.tickmode&&(i.tickmode=i.autotick?\\\"auto\\\":\\\"linear\\\"),delete i.autotick)}void 0===t.annotations||Array.isArray(t.annotations)||(console.log(\\\"annotations must be an array\\\"),delete t.annotations);var o=(t.annotations||[]).length;for(e=0;o>e;e++){var a=t.annotations[e];a.ref&&(\\\"paper\\\"===a.ref?(a.xref=\\\"paper\\\",a.yref=\\\"paper\\\"):\\\"data\\\"===a.ref&&(a.xref=\\\"x\\\",a.yref=\\\"y\\\"),delete a.ref),l(a,\\\"xref\\\"),l(a,\\\"yref\\\")}void 0===t.shapes||Array.isArray(t.shapes)||(console.log(\\\"shapes must be an array\\\"),delete t.shapes);var s=(t.shapes||[]).length;for(e=0;s>e;e++){var c=t.shapes[e];l(c,\\\"xref\\\"),l(c,\\\"yref\\\")}var u=t.legend;u&&(u.x>3?(u.x=1.02,u.xanchor=\\\"left\\\"):u.x<-2&&(u.x=-.02,u.xanchor=\\\"right\\\"),u.y>3?(u.y=1.02,u.yanchor=\\\"bottom\\\"):u.y<-2&&(u.y=-.02,u.yanchor=\\\"top\\\")),\\\"rotate\\\"===t.dragmode&&(t.dragmode=\\\"orbit\\\"),t.scene1&&(t.scene||(t.scene=t.scene1),delete t.scene1);var f=I.getSubplotIds(t,\\\"gl3d\\\");for(e=0;e<f.length;e++){var d=t[f[e]],p=d.cameraposition;if(Array.isArray(p)&&4===p[0].length){var g=p[0],v=p[1],m=p[2],y=S([],g),b=[];for(r=0;3>r;++r)b[r]=v[e]+m*y[2+4*r];d.camera={eye:{x:b[0],y:b[1],z:b[2]},center:{x:v[0],y:v[1],z:v[2]},up:{x:y[1],y:y[5],z:y[9]}},delete d.cameraposition}}return z.markTime(\\\"finished rest of cleanLayout, starting color\\\"),j.clean(t),z.markTime(\\\"finished cleanLayout color.clean\\\"),t}function l(t,e){var r=t[e],n=e.charAt(0);r&&\\\"paper\\\"!==r&&(t[e]=P.Axes.cleanId(r,n))}function c(t,e){for(var r=[],n=(t.concat(Array.isArray(e)?e:[]).filter(function(t){return\\\"uid\\\"in t}).map(function(t){return t.uid})),i=0;i<t.length;i++){var o=t[i];if(!(\\\"uid\\\"in o)||-1!==r.indexOf(o.uid)){var a,s;for(s=0;100>s&&(a=z.randstr(n),-1!==r.indexOf(a));s++);o.uid=z.randstr(n),n.push(o.uid)}if(r.push(o.uid),\\\"histogramy\\\"===o.type&&\\\"xbins\\\"in o&&!(\\\"ybins\\\"in o)&&(o.ybins=o.xbins,delete o.xbins),o.error_y&&\\\"opacity\\\"in o.error_y){var l=j.defaults,c=o.error_y.color||(I.traceIs(o,\\\"bar\\\")?j.defaultLine:l[i%l.length]);o.error_y.color=j.addOpacity(j.rgb(c),j.opacity(c)*o.error_y.opacity),delete o.error_y.opacity}if(\\\"bardir\\\"in o&&(\\\"h\\\"!==o.bardir||!I.traceIs(o,\\\"bar\\\")&&\\\"histogram\\\"!==o.type.substr(0,9)||(o.orientation=\\\"h\\\",x(o)),delete o.bardir),\\\"histogramy\\\"===o.type&&x(o),\\\"histogramx\\\"!==o.type&&\\\"histogramy\\\"!==o.type||(o.type=\\\"histogram\\\"),\\\"scl\\\"in o&&(o.colorscale=o.scl,delete o.scl),\\\"reversescl\\\"in o&&(o.reversescale=o.reversescl,delete o.reversescl),o.xaxis&&(o.xaxis=P.Axes.cleanId(o.xaxis,\\\"x\\\")),o.yaxis&&(o.yaxis=P.Axes.cleanId(o.yaxis,\\\"y\\\")),I.traceIs(o,\\\"gl3d\\\")&&o.scene&&(o.scene=I.subplotsRegistry.gl3d.cleanId(o.scene)),I.traceIs(o,\\\"pie\\\")||(Array.isArray(o.textposition)?o.textposition=o.textposition.map(u):o.textposition&&(o.textposition=u(o.textposition))),I.traceIs(o,\\\"2dMap\\\")&&(\\\"YIGnBu\\\"===o.colorscale&&(o.colorscale=\\\"YlGnBu\\\"),\\\"YIOrRd\\\"===o.colorscale&&(o.colorscale=\\\"YlOrRd\\\")),I.traceIs(o,\\\"markerColorscale\\\")&&o.marker){var f=o.marker;\\\"YIGnBu\\\"===f.colorscale&&(f.colorscale=\\\"YlGnBu\\\"),\\\"YIOrRd\\\"===f.colorscale&&(f.colorscale=\\\"YlOrRd\\\")}h(o,\\\"line\\\")&&delete o.line,\\\"marker\\\"in o&&(h(o.marker,\\\"line\\\")&&delete o.marker.line,h(o,\\\"marker\\\")&&delete o.marker),z.markTime(\\\"finished rest of cleanData, starting color\\\"),j.clean(o),z.markTime(\\\"finished cleanData color.clean\\\")}}function u(t){var e=\\\"middle\\\",r=\\\"center\\\";return-1!==t.indexOf(\\\"top\\\")?e=\\\"top\\\":-1!==t.indexOf(\\\"bottom\\\")&&(e=\\\"bottom\\\"),-1!==t.indexOf(\\\"left\\\")?r=\\\"left\\\":-1!==t.indexOf(\\\"right\\\")&&(r=\\\"right\\\"),e+\\\" \\\"+r}function h(t,e){return e in t&&\\\"object\\\"==typeof t[e]&&0===Object.keys(t[e]).length}function f(t){var e,r,n,i,o=P.Axes.list(t),a=t._fullData,s=t._fullLayout,l=t.calcdata=new Array(a.length);for(t.firstscatter=!0,t.numboxes=0,t._hmpixcount=0,t._hmlumcount=0,s._piecolormap={},s._piedefaultcolorcount=0,e=0;e<o.length;e++)o[e]._categories=[];for(e=0;e<a.length;e++)r=a[e],n=r._module,i=[],n&&r.visible===!0&&n.calc&&(i=n.calc(t,r)),Array.isArray(i)&&i[0]||(i=[{x:!1,y:!1}]),i[0].t||(i[0].t={}),i[0].trace=r,z.markTime(\\\"done with calcdata for \\\"+e),l[e]=i}function d(t,e){var r,n,i=e+1,o=[];for(r=0;r<t.length;r++)n=t[r],0>n?o.push(i+n):o.push(n);return o}function p(t,e,r){var n,i;for(n=0;n<e.length;n++){if(i=e[n],i!==parseInt(i,10))throw new Error(\\\"all values in \\\"+r+\\\" must be integers\\\");if(i>=t.data.length||i<-t.data.length)throw new Error(r+\\\" must be valid indices for gd.data.\\\");if(e.indexOf(i,n+1)>-1||i>=0&&e.indexOf(-t.data.length+i)>-1||0>i&&e.indexOf(t.data.length+i)>-1)throw new Error(\\\"each index in \\\"+r+\\\" must be unique.\\\")}}function g(t,e,r){if(!Array.isArray(t.data))throw new Error(\\\"gd.data must be an array.\\\");if(\\\"undefined\\\"==typeof e)throw new Error(\\\"currentIndices is a required argument.\\\");if(Array.isArray(e)||(e=[e]),p(t,e,\\\"currentIndices\\\"),\\\"undefined\\\"==typeof r||Array.isArray(r)||(r=[r]),\\\"undefined\\\"!=typeof r&&p(t,r,\\\"newIndices\\\"),\\\"undefined\\\"!=typeof r&&e.length!==r.length)throw new Error(\\\"current and new indices must be of equal length.\\\")}function v(t,e,r){var n,i;if(!Array.isArray(t.data))throw new Error(\\\"gd.data must be an array.\\\");if(\\\"undefined\\\"==typeof e)throw new Error(\\\"traces must be defined.\\\");for(Array.isArray(e)||(e=[e]),n=0;n<e.length;n++)if(i=e[n],\\\"object\\\"!=typeof i||Array.isArray(i)||null===i)throw new Error(\\\"all values in traces array must be non-array objects\\\");if(\\\"undefined\\\"==typeof r||Array.isArray(r)||(r=[r]),\\\"undefined\\\"!=typeof r&&r.length!==e.length)throw new Error(\\\"if indices is specified, traces.length must equal indices.length\\\")}function m(t,e,r,n){var i=z.isPlainObject(n);if(!Array.isArray(t.data))throw new Error(\\\"gd.data must be an array\\\");if(!z.isPlainObject(e))throw new Error(\\\"update must be a key:value object\\\");if(\\\"undefined\\\"==typeof r)throw new Error(\\\"indices must be an integer or array of integers\\\");p(t,r,\\\"indices\\\");for(var o in e){if(!Array.isArray(e[o])||e[o].length!==r.length)throw new Error(\\\"attribute \\\"+o+\\\" must be an array of length equal to indices array length\\\");if(i&&(!(o in n)||!Array.isArray(n[o])||n[o].length!==e[o].length))throw new Error(\\\"when maxPoints is set as a key:value object it must contain a 1:1 corrispondence with the keys and number of traces in the update object\\\")}}function y(t,e,r,n){var i,o,a,s,l,c=z.isPlainObject(n),u=[];Array.isArray(r)||(r=[r]),r=d(r,t.data.length-1);for(var h in e)for(var f=0;f<r.length;f++){if(i=t.data[r[f]],a=z.nestedProperty(i,h),o=a.get(),s=e[h][f],!Array.isArray(s))throw new Error(\\\"attribute: \\\"+h+\\\" index: \\\"+f+\\\" must be an array\\\");if(!Array.isArray(o))throw new Error(\\\"cannot extend missing or non-array attribute: \\\"+h);l=c?n[h][f]:n,C(l)||(l=-1),u.push({prop:a,target:o,insert:s,maxp:Math.floor(l)})}return u}function b(t,e,r,n,i,o){m(t,e,r,n);for(var a,s,l,c=y(t,e,r,n),u=[],h={},f={},d=0;d<c.length;d++)s=c[d].prop,l=c[d].maxp,a=i(c[d].target,c[d].insert),l>=0&&l<a.length&&(u=o(a,l)),l=c[d].target.length,s.set(a),Array.isArray(h[s.astr])||(h[s.astr]=[]),Array.isArray(f[s.astr])||(f[s.astr]=[]),h[s.astr].push(u),f[s.astr].push(l);return{update:h,maxPoints:f}}function x(t){var e;if(z.swapAttrs(t,[\\\"?\\\",\\\"?0\\\",\\\"d?\\\",\\\"?bins\\\",\\\"nbins?\\\",\\\"autobin?\\\",\\\"?src\\\",\\\"error_?\\\"]),Array.isArray(t.z)&&Array.isArray(t.z[0])&&(t.transpose?delete t.transpose:t.transpose=!0),t.error_x&&t.error_y){var r=t.error_y,n=\\\"copy_ystyle\\\"in r?r.copy_ystyle:!(r.color||r.thickness||r.width);z.swapAttrs(t,[\\\"error_?.copy_ystyle\\\"]),n&&z.swapAttrs(t,[\\\"error_?.color\\\",\\\"error_?.thickness\\\",\\\"error_?.width\\\"])}if(t.hoverinfo){var i=t.hoverinfo.split(\\\"+\\\");for(e=0;e<i.length;e++)\\\"x\\\"===i[e]?i[e]=\\\"y\\\":\\\"y\\\"===i[e]&&(i[e]=\\\"x\\\");t.hoverinfo=i.join(\\\"+\\\")}}function _(t){var e,r={left:0,right:0,bottom:0,top:0};if(t)for(e in t)t.hasOwnProperty(e)&&(r.left+=t[e].left||0,r.right+=t[e].right||0,r.bottom+=t[e].bottom||0,r.top+=t[e].top||0);return r}function w(t,e){var r,n,i,o=t._fullLayout,a=t._context;if(t.emit(\\\"plotly_autosize\\\"),t._context.fillFrame)i=window.innerWidth,n=window.innerHeight,document.body.style.overflow=\\\"hidden\\\";else if(C(a.frameMargins)&&a.frameMargins>0){var s=_(t._boundingBoxMargins),l=s.left+s.right,c=s.bottom+s.top,u=o._container.node().getBoundingClientRect(),h=1-2*a.frameMargins;i=Math.round(h*(u.width-l)),n=Math.round(h*(u.height-c))}else r=window.getComputedStyle(t),n=parseFloat(r.height)||o.height,i=parseFloat(r.width)||o.width;return Math.abs(o.width-i)>1||Math.abs(o.height-n)>1?(o.height=t.layout.height=n,o.width=t.layout.width=i):\\\"initial\\\"!==o.autosize&&(delete e.autosize,o.autosize=t.layout.autosize=!0),I.sanitizeMargins(o),e}function A(t){var e=L.select(t),r=t._fullLayout;if(r._hasGL3D&&I.subplotsRegistry.gl3d.initAxes(t),r._container=e.selectAll(\\\".plot-container\\\").data([0]),r._container.enter().insert(\\\"div\\\",\\\":first-child\\\").classed(\\\"plot-container\\\",!0).classed(\\\"plotly\\\",!0),r._paperdiv=r._container.selectAll(\\\".svg-container\\\").data([0]),r._paperdiv.enter().append(\\\"div\\\").classed(\\\"svg-container\\\",!0).style(\\\"position\\\",\\\"relative\\\"),\\\"initial\\\"===r.autosize&&(w(t,{}),r.autosize=!0,t.layout.autosize=!0),r._glcontainer=r._paperdiv.selectAll(\\\".gl-container\\\").data([0]),r._glcontainer.enter().append(\\\"div\\\").classed(\\\"gl-container\\\",!0),r._geocontainer=r._paperdiv.selectAll(\\\".geo-container\\\").data([0]),r._geocontainer.enter().append(\\\"div\\\").classed(\\\"geo-container\\\",!0),r._paperdiv.selectAll(\\\".main-svg\\\").remove(),r._paper=r._paperdiv.insert(\\\"svg\\\",\\\":first-child\\\").classed(\\\"main-svg\\\",!0),r._toppaper=r._paperdiv.append(\\\"svg\\\").classed(\\\"main-svg\\\",!0),!r._uid){var n=[];L.selectAll(\\\"defs\\\").each(function(){this.id&&n.push(this.id.split(\\\"-\\\")[1])}),r._uid=z.randstr(n)}r._paperdiv.selectAll(\\\".main-svg\\\").attr(Y.svgAttrs),r._defs=r._paper.append(\\\"defs\\\").attr(\\\"id\\\",\\\"defs-\\\"+r._uid),r._topdefs=r._toppaper.append(\\\"defs\\\").attr(\\\"id\\\",\\\"topdefs-\\\"+r._uid),r._draggers=r._paper.append(\\\"g\\\").classed(\\\"draglayer\\\",!0);var i=P.Axes.getSubplots(t);i.join(\\\"\\\")!==Object.keys(t._fullLayout._plots||{}).join(\\\"\\\")&&k(t,i),r._hasCartesian&&M(t,i),r._shapelayer=r._paper.append(\\\"g\\\").classed(\\\"shapelayer\\\",!0),r._pielayer=r._paper.append(\\\"g\\\").classed(\\\"pielayer\\\",!0),r._glimages=r._paper.append(\\\"g\\\").classed(\\\"glimages\\\",!0),r._geoimages=r._paper.append(\\\"g\\\").classed(\\\"geoimages\\\",!0),r._infolayer=r._toppaper.append(\\\"g\\\").classed(\\\"infolayer\\\",!0),r._hoverlayer=r._toppaper.append(\\\"g\\\").classed(\\\"hoverlayer\\\",!0),t.emit(\\\"plotly_framework\\\");var o=z.syncOrAsync([T,function(){return P.Axes.doTicks(t,\\\"redraw\\\")},N.init],t);return o&&o.then&&t._promises.push(o),o}function k(t,e){function r(e,r){return function(){return P.Axes.getFromId(t,e,r)}}for(var n,i,o=t._fullLayout._plots={},a=0;a<e.length;a++)n=e[a],i=o[n]={},i.id=n,i.x=r(n,\\\"x\\\"),i.y=r(n,\\\"y\\\"),i.xaxis=i.x(),i.yaxis=i.y()}function M(t,e){function r(t){t.append(\\\"g\\\").classed(\\\"imagelayer\\\",!0),t.append(\\\"g\\\").classed(\\\"maplayer\\\",!0),t.append(\\\"g\\\").classed(\\\"barlayer\\\",!0),t.append(\\\"g\\\").classed(\\\"boxlayer\\\",!0),t.append(\\\"g\\\").classed(\\\"scatterlayer\\\",!0)}var n=t._fullLayout,i=[];n._paper.selectAll(\\\"g.subplot\\\").data(e).enter().append(\\\"g\\\").classed(\\\"subplot\\\",!0).each(function(o){var a=n._plots[o],s=a.plotgroup=L.select(this).classed(o,!0),l=a.xaxis,c=a.yaxis;a.overlays=[];var u=P.Axes.getFromId(t,l.overlaying)||l;u!==l&&u.overlaying&&(u=l,l.overlaying=!1);var h=P.Axes.getFromId(t,c.overlaying)||c;h!==c&&h.overlaying&&(h=c,c.overlaying=!1);var f=u._id+h._id;f!==o&&-1!==e.indexOf(f)?(a.mainplot=f,i.push(a),l.domain=u.domain.slice(),c.domain=h.domain.slice()):(a.bg=s.append(\\\"rect\\\").style(\\\"stroke-width\\\",0),a.gridlayer=s.append(\\\"g\\\"),a.overgrid=s.append(\\\"g\\\"),a.zerolinelayer=s.append(\\\"g\\\"),a.overzero=s.append(\\\"g\\\"),a.plot=s.append(\\\"svg\\\").call(r),a.overplot=s.append(\\\"g\\\"),a.xlines=s.append(\\\"path\\\"),a.ylines=s.append(\\\"path\\\"),a.overlines=s.append(\\\"g\\\"),a.xaxislayer=s.append(\\\"g\\\"),a.yaxislayer=s.append(\\\"g\\\"),a.overaxes=s.append(\\\"g\\\")),a.draglayer=n._draggers.append(\\\"g\\\")}),i.forEach(function(t){var e=n._plots[t.mainplot];e.overlays.push(t),t.gridlayer=e.overgrid.append(\\\"g\\\"),t.zerolinelayer=e.overzero.append(\\\"g\\\"),t.plot=e.overplot.append(\\\"svg\\\").call(r),t.xlines=e.overlines.append(\\\"path\\\"),t.ylines=e.overlines.append(\\\"path\\\"),t.xaxislayer=e.overaxes.append(\\\"g\\\"),t.yaxislayer=e.overaxes.append(\\\"g\\\")}),e.forEach(function(t){var e=n._plots[t];e.plot.attr(\\\"preserveAspectRatio\\\",\\\"none\\\").style(\\\"fill\\\",\\\"none\\\"),e.xlines.style(\\\"fill\\\",\\\"none\\\").classed(\\\"crisp\\\",!0),e.ylines.style(\\\"fill\\\",\\\"none\\\").classed(\\\"crisp\\\",!0)})}function T(t){return z.syncOrAsync([I.doAutoMargin,E],t)}function E(t){var e,r=t._fullLayout,n=r._size,i=P.Axes.list(t);for(e=0;e<i.length;e++)i[e]._linepositions={};r._paperdiv.style({width:r.width+\\\"px\\\",height:r.height+\\\"px\\\"}).selectAll(\\\".main-svg\\\").call(F.setSize,r.width,r.height),t._context.setBackground(t,r.paper_bgcolor);var o=[];return r._paper.selectAll(\\\"g.subplot\\\").each(function(e){var i=r._plots[e],a=P.Axes.getFromId(t,e,\\\"x\\\"),s=P.Axes.getFromId(t,e,\\\"y\\\");a.setScale(),s.setScale(),i.bg&&i.bg.call(F.setRect,a._offset-n.p,s._offset-n.p,a._length+2*n.p,s._length+2*n.p).call(j.fill,r.plot_bgcolor),i.plot.call(F.setRect,a._offset,s._offset,a._length,s._length);var l=F.crispRound(t,a.linewidth,1),c=F.crispRound(t,s.linewidth,1),u=n.p+c,h=\\\"M\\\"+-u+\\\",\\\",f=\\\"h\\\"+(a._length+2*u),d=\\\"free\\\"===a.anchor&&-1===o.indexOf(a._id),p=n.h*(1-(a.position||0))+l/2%1,g=a.anchor===s._id&&(a.mirror||\\\"top\\\"!==a.side)||\\\"all\\\"===a.mirror||\\\"allticks\\\"===a.mirror||a.mirrors&&a.mirrors[s._id+\\\"bottom\\\"],v=s._length+n.p+l/2,m=a.anchor===s._id&&(a.mirror||\\\"top\\\"===a.side)||\\\"all\\\"===a.mirror||\\\"allticks\\\"===a.mirror||a.mirrors&&a.mirrors[s._id+\\\"top\\\"],y=-n.p-l/2,b=n.p,x=g?0:l,_=m?0:l,w=\\\",\\\"+(-b-_)+\\\"v\\\"+(s._length+2*b+_+x),A=\\\"free\\\"===s.anchor&&-1===o.indexOf(s._id),k=n.w*(s.position||0)+c/2%1,M=s.anchor===a._id&&(s.mirror||\\\"right\\\"!==s.side)||\\\"all\\\"===s.mirror||\\\"allticks\\\"===s.mirror||s.mirrors&&s.mirrors[a._id+\\\"left\\\"],T=-n.p-c/2,E=s.anchor===a._id&&(s.mirror||\\\"right\\\"===s.side)||\\\"all\\\"===s.mirror||\\\"allticks\\\"===s.mirror||s.mirrors&&s.mirrors[a._id+\\\"right\\\"],L=a._length+n.p+c/2;\\n\",\n       \"a._linepositions[e]=[g?v:void 0,m?y:void 0,d?p:void 0],a.anchor===s._id?a._linepositions[e][3]=\\\"top\\\"===a.side?y:v:d&&(a._linepositions[e][3]=p),s._linepositions[e]=[M?T:void 0,E?L:void 0,A?k:void 0],s.anchor===a._id?s._linepositions[e][3]=\\\"right\\\"===s.side?L:T:A&&(s._linepositions[e][3]=k);var S=\\\"translate(\\\"+a._offset+\\\",\\\"+s._offset+\\\")\\\",C=S,z=S;d&&(C=\\\"translate(\\\"+a._offset+\\\",\\\"+n.t+\\\")\\\",y+=s._offset-n.t,v+=s._offset-n.t),A&&(z=\\\"translate(\\\"+n.l+\\\",\\\"+s._offset+\\\")\\\",T+=a._offset-n.l,L+=a._offset-n.l),i.xlines.attr(\\\"transform\\\",C).attr(\\\"d\\\",(g?h+v+f:\\\"\\\")+(m?h+y+f:\\\"\\\")+(d?h+p+f:\\\"\\\")||\\\"M0,0\\\").style(\\\"stroke-width\\\",l+\\\"px\\\").call(j.stroke,a.showline?a.linecolor:\\\"rgba(0,0,0,0)\\\"),i.ylines.attr(\\\"transform\\\",z).attr(\\\"d\\\",(M?\\\"M\\\"+T+w:\\\"\\\")+(E?\\\"M\\\"+L+w:\\\"\\\")+(A?\\\"M\\\"+k+w:\\\"\\\")||\\\"M0,0\\\").attr(\\\"stroke-width\\\",c+\\\"px\\\").call(j.stroke,s.showline?s.linecolor:\\\"rgba(0,0,0,0)\\\"),i.xaxislayer.attr(\\\"transform\\\",C),i.yaxislayer.attr(\\\"transform\\\",z),i.gridlayer.attr(\\\"transform\\\",S),i.zerolinelayer.attr(\\\"transform\\\",S),i.draglayer.attr(\\\"transform\\\",S),d&&o.push(a._id),A&&o.push(s._id)}),P.Axes.makeClipPaths(t),H.draw(t,\\\"gtitle\\\"),G(t),t._promises.length&&Promise.all(t._promises)}var L=t(\\\"d3\\\"),S=t(\\\"gl-mat4/fromQuat\\\"),C=t(\\\"fast-isnumeric\\\"),P=t(\\\"../plotly\\\"),z=t(\\\"../lib\\\"),R=t(\\\"../lib/events\\\"),O=t(\\\"../lib/queue\\\"),I=t(\\\"../plots/plots\\\"),N=t(\\\"../plots/cartesian/graph_interact\\\"),j=t(\\\"../components/color\\\"),F=t(\\\"../components/drawing\\\"),D=t(\\\"../components/errorbars\\\"),B=t(\\\"../components/legend\\\"),U=t(\\\"../components/rangeslider\\\"),V=t(\\\"../components/rangeselector\\\"),q=t(\\\"../components/shapes\\\"),H=t(\\\"../components/titles\\\"),G=t(\\\"../components/modebar/manage\\\"),Y=t(\\\"../constants/xmlns_namespaces\\\");P.plot=function(t,e,r,i){function l(){var e,r,n,i=t.calcdata;for(B.draw(t),V.draw(t),e=0;e<i.length;e++)r=i[e],n=r[0].trace,n.visible===!0&&n._module.colorbar?n._module.colorbar(t,r):I.autoMargin(t,\\\"cb\\\"+n.uid);return I.doAutoMargin(t),I.previousPromises(t)}function u(){var e=JSON.stringify(M._size)===C?[]:[l,T];return z.syncOrAsync(e.concat(N.init),t)}function h(){if(E){for(var e,r,n=I.getSubplotIds(M,\\\"cartesian\\\"),i=t._modules,o=0;o<n.length;o++){e=M._plots[n[o]];for(var a=0;a<i.length;a++)r=i[a],r.setPositions&&r.setPositions(t,e)}return z.markTime(\\\"done with bar/box adjustments\\\"),D.calc(t),z.markTime(\\\"done ErrorBars.calc\\\"),z.syncOrAsync([q.calcAutorange,P.Annotations.calcAutorange,d],t)}}function d(){for(var e=P.Axes.list(t,\\\"\\\",!0),r=0;r<e.length;r++)P.Axes.doAutoRange(e[r])}function p(){return U.draw(t),P.Axes.doTicks(t,\\\"redraw\\\")}function g(){for(var e=t.calcdata,r=0;r<e.length;r++){var n=e[r][0].trace,i=n.visible===!0,o=n.uid;i&&I.traceIs(n,\\\"2dMap\\\")||M._paper.selectAll(\\\".hm\\\"+o+\\\",.contour\\\"+o+\\\",#clip\\\"+o).remove(),i&&n._module.colorbar||M._infolayer.selectAll(\\\".cb\\\"+o).remove()}var a=I.subplotsRegistry;return M._hasGL3D&&a.gl3d.plot(t),M._hasGeo&&a.geo.plot(t),M._hasGL2D&&a.gl2d.plot(t),(M._hasCartesian||M._hasPie)&&a.cartesian.plot(t),I.style(t),z.markTime(\\\"done Plots.style\\\"),q.drawAll(t),P.Annotations.drawAll(t),I.addLinks(t),t._replotting=!1,I.previousPromises(t)}function v(){q.drawAll(t),P.Annotations.drawAll(t),B.draw(t),V.draw(t)}function m(){z.markTime(\\\"done plot\\\"),t.emit(\\\"plotly_afterplot\\\")}z.markTime(\\\"in plot\\\"),t=n(t),R.init(t);var y=R.triggerHandler(t,\\\"plotly_beforeplot\\\",[e,r,i]);if(y===!1)return Promise.reject();e||r||z.isPlotDiv(t)||console.log(\\\"Warning: calling Plotly.plot as if redrawing but this container doesn't yet have a plot.\\\",t),o(t,i),r||(r={}),L.select(t).classed(\\\"js-plotly-plot\\\",!0),F.makeTester(t),t._promises=[];var b=0===(t.data||[]).length&&Array.isArray(e);if(Array.isArray(e)&&(c(e,t.data),b?t.data=e:t.data.push.apply(t.data,e),t.empty=!1),t.layout&&!b||(t.layout=s(r)),t._dragging)return t._replotPending=!0,Promise.reject();if(t._replotPending=!1,I.supplyDefaults(t),e&&e[0]&&e[0].r)return a(t,e,r);t._replotting=!0;var x=t._fullData.length>0,_=P.Axes.getSubplots(t).join(\\\"\\\"),w=Object.keys(t._fullLayout._plots||{}).join(\\\"\\\"),k=w===_;x?t.framework===A&&!b&&k||(t.framework=A,A(t)):k?b&&A(t):(t.framework=A,A(t)),b&&P.Axes.saveRangeInitial(t);var M=t._fullLayout,E=!t.calcdata||t.calcdata.length!==(t.data||[]).length;E&&f(t);for(var S=0;S<t.calcdata.length;S++)t.calcdata[S][0].trace=t._fullData[S];var C=JSON.stringify(M._size),O=z.syncOrAsync([I.previousPromises,l,T,u,h,p,g,v],t,m);return O&&O.then?O:Promise.resolve(t)},P.redraw=function(t){return t=n(t),z.isPlotDiv(t)?(t.calcdata=void 0,P.plot(t).then(function(){return t.emit(\\\"plotly_redraw\\\"),t})):void console.log(\\\"This element is not a Plotly Plot\\\",t)},P.newPlot=function(t,e,r,i){return t=n(t),I.purge(t),P.plot(t,e,r,i)},P.extendTraces=function X(t,e,r,i){t=n(t);var o=b(t,e,r,i,function(t,e){return t.concat(e)},function(t,e){return t.splice(0,t.length-e)}),a=P.redraw(t),s=[t,o.update,r,o.maxPoints];return O&&O.add(t,P.prependTraces,s,X,arguments),a},P.prependTraces=function W(t,e,r,i){t=n(t);var o=b(t,e,r,i,function(t,e){return e.concat(t)},function(t,e){return t.splice(e,t.length)}),a=P.redraw(t),s=[t,o.update,r,o.maxPoints];return O&&O.add(t,P.extendTraces,s,W,arguments),a},P.addTraces=function Z(t,e,r){t=n(t);var i,o,a=[],s=P.deleteTraces,l=Z,u=[t,a],h=[t,e];for(v(t,e,r),Array.isArray(e)||(e=[e]),c(e,t.data),i=0;i<e.length;i+=1)t.data.push(e[i]);for(i=0;i<e.length;i++)a.push(-e.length+i);if(\\\"undefined\\\"==typeof r)return o=P.redraw(t),O&&O.add(t,s,u,l,h),o;Array.isArray(r)||(r=[r]);try{g(t,a,r)}catch(f){throw t.data.splice(t.data.length-e.length,e.length),f}return O&&O.startSequence(t),O&&O.add(t,s,u,l,h),o=P.moveTraces(t,a,r),O&&O.stopSequence(t),o},P.deleteTraces=function $(t,e){t=n(t);var r,i,o=[],a=P.addTraces,s=$,l=[t,o,e],c=[t,e];if(\\\"undefined\\\"==typeof e)throw new Error(\\\"indices must be an integer or array of integers.\\\");for(Array.isArray(e)||(e=[e]),p(t,e,\\\"indices\\\"),e=d(e,t.data.length-1),e.sort(z.sorterDes),r=0;r<e.length;r+=1)i=t.data.splice(e[r],1)[0],o.push(i);var u=P.redraw(t);return O&&O.add(t,a,l,s,c),u},P.moveTraces=function K(t,e,r){t=n(t);var i,o=[],a=[],s=K,l=K,c=[t,r,e],u=[t,e,r];if(g(t,e,r),e=Array.isArray(e)?e:[e],\\\"undefined\\\"==typeof r)for(r=[],i=0;i<e.length;i++)r.push(-e.length+i);for(r=Array.isArray(r)?r:[r],e=d(e,t.data.length-1),r=d(r,t.data.length-1),i=0;i<t.data.length;i++)-1===e.indexOf(i)&&o.push(t.data[i]);for(i=0;i<e.length;i++)a.push({newIndex:r[i],trace:t.data[e[i]]});for(a.sort(function(t,e){return t.newIndex-e.newIndex}),i=0;i<a.length;i+=1)o.splice(a[i].newIndex,0,a[i].trace);t.data=o;var h=P.redraw(t);return O&&O.add(t,s,c,l,u),h},P.restyle=function Q(t,e,r,i){function o(){return i.map(function(){})}function a(t){var e=P.Axes.id2name(t);-1===p.indexOf(e)&&p.push(e)}function s(t){return\\\"LAYOUT\\\"+t+\\\".autorange\\\"}function l(t){return\\\"LAYOUT\\\"+t+\\\".range\\\"}function c(e,r,n){if(Array.isArray(e))return void e.forEach(function(t){c(t,r,n)});if(!(e in f)){var a;a=\\\"LAYOUT\\\"===e.substr(0,6)?z.nestedProperty(t.layout,e.replace(\\\"LAYOUT\\\",\\\"\\\")):z.nestedProperty(t.data[i[n]],e),e in T||(T[e]=o()),void 0===T[e][n]&&(T[e][n]=a.get()),void 0!==r&&a.set(r)}}t=n(t);var u,h=t._fullLayout,f={};if(\\\"string\\\"==typeof e)f[e]=r;else{if(!z.isPlainObject(e))return console.log(\\\"restyle fail\\\",e,r,i),Promise.reject();f=e,void 0===i&&(i=r)}Object.keys(f).length&&(t.changed=!0),C(i)?i=[i]:Array.isArray(i)&&i.length||(i=t._fullData.map(function(t,e){return e}));var d=[\\\"mode\\\",\\\"visible\\\",\\\"type\\\",\\\"orientation\\\",\\\"fill\\\",\\\"histfunc\\\",\\\"histnorm\\\",\\\"text\\\",\\\"x\\\",\\\"y\\\",\\\"z\\\",\\\"xtype\\\",\\\"x0\\\",\\\"dx\\\",\\\"ytype\\\",\\\"y0\\\",\\\"dy\\\",\\\"xaxis\\\",\\\"yaxis\\\",\\\"line.width\\\",\\\"connectgaps\\\",\\\"transpose\\\",\\\"zsmooth\\\",\\\"showscale\\\",\\\"marker.showscale\\\",\\\"zauto\\\",\\\"marker.cauto\\\",\\\"autocolorscale\\\",\\\"marker.autocolorscale\\\",\\\"colorscale\\\",\\\"marker.colorscale\\\",\\\"reversescale\\\",\\\"marker.reversescale\\\",\\\"autobinx\\\",\\\"nbinsx\\\",\\\"xbins\\\",\\\"xbins.start\\\",\\\"xbins.end\\\",\\\"xbins.size\\\",\\\"autobiny\\\",\\\"nbinsy\\\",\\\"ybins\\\",\\\"ybins.start\\\",\\\"ybins.end\\\",\\\"ybins.size\\\",\\\"autocontour\\\",\\\"ncontours\\\",\\\"contours\\\",\\\"contours.coloring\\\",\\\"error_y\\\",\\\"error_y.visible\\\",\\\"error_y.value\\\",\\\"error_y.type\\\",\\\"error_y.traceref\\\",\\\"error_y.array\\\",\\\"error_y.symmetric\\\",\\\"error_y.arrayminus\\\",\\\"error_y.valueminus\\\",\\\"error_y.tracerefminus\\\",\\\"error_x\\\",\\\"error_x.visible\\\",\\\"error_x.value\\\",\\\"error_x.type\\\",\\\"error_x.traceref\\\",\\\"error_x.array\\\",\\\"error_x.symmetric\\\",\\\"error_x.arrayminus\\\",\\\"error_x.valueminus\\\",\\\"error_x.tracerefminus\\\",\\\"swapxy\\\",\\\"swapxyaxes\\\",\\\"orientationaxes\\\",\\\"marker.colors\\\",\\\"values\\\",\\\"labels\\\",\\\"label0\\\",\\\"dlabel\\\",\\\"sort\\\",\\\"textinfo\\\",\\\"textposition\\\",\\\"textfont.size\\\",\\\"textfont.family\\\",\\\"textfont.color\\\",\\\"insidetextfont.size\\\",\\\"insidetextfont.family\\\",\\\"insidetextfont.color\\\",\\\"outsidetextfont.size\\\",\\\"outsidetextfont.family\\\",\\\"outsidetextfont.color\\\",\\\"hole\\\",\\\"scalegroup\\\",\\\"domain\\\",\\\"domain.x\\\",\\\"domain.y\\\",\\\"domain.x[0]\\\",\\\"domain.x[1]\\\",\\\"domain.y[0]\\\",\\\"domain.y[1]\\\",\\\"tilt\\\",\\\"tiltaxis\\\",\\\"depth\\\",\\\"direction\\\",\\\"rotation\\\",\\\"pull\\\"];for(u=0;u<i.length;u++)if(I.traceIs(t._fullData[i[u]],\\\"box\\\")){d.push(\\\"name\\\");break}var p,g=[\\\"marker\\\",\\\"marker.size\\\",\\\"textfont\\\",\\\"boxpoints\\\",\\\"jitter\\\",\\\"pointpos\\\",\\\"whiskerwidth\\\",\\\"boxmean\\\"],v=[\\\"zmin\\\",\\\"zmax\\\",\\\"zauto\\\",\\\"marker.cmin\\\",\\\"marker.cmax\\\",\\\"marker.cauto\\\",\\\"contours.start\\\",\\\"contours.end\\\",\\\"contours.size\\\",\\\"contours.showlines\\\",\\\"line\\\",\\\"line.smoothing\\\",\\\"line.shape\\\",\\\"error_y.width\\\",\\\"error_x.width\\\",\\\"error_x.copy_ystyle\\\",\\\"marker.maxdisplayed\\\"],m=[\\\"type\\\",\\\"x\\\",\\\"y\\\",\\\"x0\\\",\\\"y0\\\",\\\"orientation\\\",\\\"xaxis\\\",\\\"yaxis\\\"],y=!1,b=!1,_=!1,w=!1,A=!1,k=!1,M={},T={},E={};(h._hasGL3D||h._hasGeo||h._hasGL2D)&&(_=!0);var L=[\\\"zmin\\\",\\\"zmax\\\"],S=[\\\"xbins.start\\\",\\\"xbins.end\\\",\\\"xbins.size\\\"],R=[\\\"ybins.start\\\",\\\"ybins.end\\\",\\\"ybins.size\\\"],N=[\\\"contours.start\\\",\\\"contours.end\\\",\\\"contours.size\\\"];for(var j in f){var F,D,U,V,q,H=f[j];if(M[j]=H,\\\"LAYOUT\\\"!==j.substr(0,6)){for(T[j]=o(),u=0;u<i.length;u++){if(F=t.data[i[u]],D=t._fullData[i[u]],U=z.nestedProperty(F,j),V=U.get(),q=Array.isArray(H)?H[u%H.length]:H,-1!==L.indexOf(j))c(\\\"zauto\\\",!1,u);else if(\\\"colorscale\\\"===j)c(\\\"autocolorscale\\\",!1,u);else if(\\\"autocolorscale\\\"===j)c(\\\"colorscale\\\",void 0,u);else if(\\\"marker.colorscale\\\"===j)c(\\\"marker.autocolorscale\\\",!1,u);else if(\\\"marker.autocolorscale\\\"===j)c(\\\"marker.colorscale\\\",void 0,u);else if(\\\"zauto\\\"===j)c(L,void 0,u);else if(-1!==S.indexOf(j))c(\\\"autobinx\\\",!1,u);else if(\\\"autobinx\\\"===j)c(S,void 0,u);else if(-1!==R.indexOf(j))c(\\\"autobiny\\\",!1,u);else if(\\\"autobiny\\\"===j)c(R,void 0,u);else if(-1!==N.indexOf(j))c(\\\"autocontour\\\",!1,u);else if(\\\"autocontour\\\"===j)c(N,void 0,u);else if(-1!==[\\\"x0\\\",\\\"dx\\\"].indexOf(j)&&D.x&&\\\"scaled\\\"!==D.xtype)c(\\\"xtype\\\",\\\"scaled\\\",u);else if(-1!==[\\\"y0\\\",\\\"dy\\\"].indexOf(j)&&D.y&&\\\"scaled\\\"!==D.ytype)c(\\\"ytype\\\",\\\"scaled\\\",u);else if(\\\"colorbar.thicknessmode\\\"===j&&U.get()!==q&&-1!==[\\\"fraction\\\",\\\"pixels\\\"].indexOf(q)&&D.colorbar){var G=-1!==[\\\"top\\\",\\\"bottom\\\"].indexOf(D.colorbar.orient)?h.height-h.margin.t-h.margin.b:h.width-h.margin.l-h.margin.r;c(\\\"colorbar.thickness\\\",D.colorbar.thickness*(\\\"fraction\\\"===q?1/G:G),u)}else if(\\\"colorbar.lenmode\\\"===j&&U.get()!==q&&-1!==[\\\"fraction\\\",\\\"pixels\\\"].indexOf(q)&&D.colorbar){var Y=-1!==[\\\"top\\\",\\\"bottom\\\"].indexOf(D.colorbar.orient)?h.width-h.margin.l-h.margin.r:h.height-h.margin.t-h.margin.b;c(\\\"colorbar.len\\\",D.colorbar.len*(\\\"fraction\\\"===q?1/Y:Y),u)}else\\\"colorbar.tick0\\\"===j||\\\"colorbar.dtick\\\"===j?c(\\\"colorbar.tickmode\\\",\\\"linear\\\",u):\\\"colorbar.tickmode\\\"===j&&c([\\\"colorbar.tick0\\\",\\\"colorbar.dtick\\\"],void 0,u);if(\\\"type\\\"===j&&\\\"pie\\\"===q!=(\\\"pie\\\"===V)){var X=\\\"x\\\",W=\\\"y\\\";\\\"bar\\\"!==q&&\\\"bar\\\"!==V||\\\"h\\\"!==F.orientation||(X=\\\"y\\\",W=\\\"x\\\"),z.swapAttrs(F,[\\\"?\\\",\\\"?src\\\"],\\\"labels\\\",X),z.swapAttrs(F,[\\\"d?\\\",\\\"?0\\\"],\\\"label\\\",X),z.swapAttrs(F,[\\\"?\\\",\\\"?src\\\"],\\\"values\\\",W),\\\"pie\\\"===V?(z.nestedProperty(F,\\\"marker.color\\\").set(z.nestedProperty(F,\\\"marker.colors\\\").get()),h._pielayer.selectAll(\\\"g.trace\\\").remove()):I.traceIs(F,\\\"cartesian\\\")&&(z.nestedProperty(F,\\\"marker.colors\\\").set(z.nestedProperty(F,\\\"marker.color\\\").get()),E[F.xaxis||\\\"x\\\"]=!0,E[F.yaxis||\\\"y\\\"]=!0)}T[j][u]=V;var Z=[\\\"swapxy\\\",\\\"swapxyaxes\\\",\\\"orientation\\\",\\\"orientationaxes\\\"];if(-1!==Z.indexOf(j)){if(\\\"orientation\\\"===j){if(U.set(q),U.get()===T[j][u])continue}else\\\"orientationaxes\\\"===j&&(F.orientation={v:\\\"h\\\",h:\\\"v\\\"}[D.orientation]);x(F)}else U.set(q)}if(-1!==[\\\"swapxyaxes\\\",\\\"orientationaxes\\\"].indexOf(j)&&P.Axes.swap(t,i),\\\"orientationaxes\\\"===j){var $=z.nestedProperty(t.layout,\\\"hovermode\\\");\\\"x\\\"===$.get()?$.set(\\\"y\\\"):\\\"y\\\"===$.get()&&$.set(\\\"x\\\")}if(-1!==i.indexOf(0)&&-1!==m.indexOf(j)&&(P.Axes.clearTypes(t,i),y=!0),-1!==[\\\"autobinx\\\",\\\"autobiny\\\",\\\"zauto\\\"].indexOf(j)&&q===!1||(A=!0),(-1!==[\\\"colorbar\\\",\\\"line\\\"].indexOf(U.parts[0])||\\\"marker\\\"===U.parts[0]&&\\\"colorbar\\\"===U.parts[1])&&(k=!0),-1!==d.indexOf(j)){if(-1!==[\\\"orientation\\\",\\\"type\\\"].indexOf(j)){for(p=[],u=0;u<i.length;u++){var K=t.data[i[u]];I.traceIs(K,\\\"cartesian\\\")&&(a(K.xaxis||\\\"x\\\"),a(K.yaxis||\\\"y\\\"),\\\"type\\\"===e&&c([\\\"autobinx\\\",\\\"autobiny\\\"],!0,u))}c(p.map(s),!0,0),c(p.map(l),[0,1],0)}y=!0}else-1!==v.indexOf(j)?_=!0:-1!==g.indexOf(j)&&(b=!0)}else U=z.nestedProperty(t.layout,j.replace(\\\"LAYOUT\\\",\\\"\\\")),T[j]=[U.get()],U.set(Array.isArray(H)?H[0]:H),y=!0}var J=Object.keys(E);t:for(u=0;u<J.length;u++){for(var tt=J[u],et=tt.charAt(0),rt=et+\\\"axis\\\",nt=0;nt<t.data.length;nt++)if(I.traceIs(t.data[nt],\\\"cartesian\\\")&&(t.data[nt][rt]||et)===tt)continue t;c(\\\"LAYOUT\\\"+P.Axes.id2name(tt),null,0)}O&&O.add(t,Q,[t,T,i],Q,[t,M,i]);var it=!1;P.Axes.list(t).forEach(function(t){t.autorange&&(it=!0)}),(y||w||b&&it)&&(t.calcdata=void 0);var ot;w?ot=[function(){var e=t.layout;return t.layout=void 0,P.plot(t,\\\"\\\",e)}]:y||_||b?ot=[P.plot]:(I.supplyDefaults(t),ot=[I.previousPromises],A&&ot.push(function(){var e,r,n;for(e=0;e<t.calcdata.length;e++)r=t.calcdata[e],n=(((r[0]||{}).trace||{})._module||{}).arraysToCalcdata,n&&n(r);return I.style(t),B.draw(t),I.previousPromises(t)}),k&&ot.push(function(){return t.calcdata.forEach(function(t){if((t[0].t||{}).cb){var e=t[0].trace,r=t[0].t.cb;I.traceIs(e,\\\"contour\\\")&&r.line({width:e.contours.showlines!==!1?e.line.width:0,dash:e.line.dash,color:\\\"line\\\"===e.contours.coloring?r._opts.line.color:e.line.color}),I.traceIs(e,\\\"markerColorscale\\\")?r.options(e.marker.colorbar)():r.options(e.colorbar)()}}),I.previousPromises(t)}));var at=z.syncOrAsync(ot,t);return at&&at.then||(at=Promise.resolve()),at.then(function(){return t.emit(\\\"plotly_restyle\\\",z.extendDeep([],[M,i])),t})},P.relayout=function J(t,e,r){function i(t,e){if(Array.isArray(t))return void t.forEach(function(t){i(t,e)});if(!(t in v)){var r=z.nestedProperty(p,t);t in E||(E[t]=r.get()),void 0!==e&&r.set(e)}}function o(t,e){var r=P.Axes.id2name(t[e+\\\"ref\\\"]||e);return(g[r]||{}).autorange}function a(t){var e=t[\\\"xaxis.range[0]\\\"],r=t[\\\"xaxis.range[1]\\\"],n=g.xaxis&&g.xaxis.rangeslider?g.xaxis.rangeslider:{};n.visible&&(e||r?g.xaxis.rangeslider.setRange(e,r):t[\\\"xaxis.autorange\\\"]&&g.xaxis.rangeslider.setRange())}if(t=n(t),t.framework&&t.framework.isPolar)return Promise.resolve(t);var s,l,c,u,h,f,d,p=t.layout,g=t._fullLayout,v={},m=!1,y=!1,b=!1,x=!1,_=!1,A=!1;if(\\\"string\\\"==typeof e)v[e]=r;else{if(!z.isPlainObject(e))return console.log(\\\"relayout fail\\\",e,r),Promise.reject();v=e}for(Object.keys(v).length&&(t.changed=!0),c=Object.keys(v),l=P.Axes.list(t),d=0;d<c.length;d++){if(0===c[d].indexOf(\\\"allaxes\\\")){for(var k=0;k<l.length;k++)h=l[k]._id.substr(1),f=-1!==h.indexOf(\\\"scene\\\")?h+\\\".\\\":\\\"\\\",s=c[d].replace(\\\"allaxes\\\",f+l[k]._name),v[s]||(v[s]=v[c[d]]);delete v[c[d]]}c[d].match(/^annotations\\\\[[0-9-]+\\\\].ref$/)&&(u=v[c[d]].split(\\\"y\\\"),v[c[d].replace(\\\"ref\\\",\\\"xref\\\")]=u[0],v[c[d].replace(\\\"ref\\\",\\\"yref\\\")]=2===u.length?\\\"y\\\"+u[1]:\\\"paper\\\",delete v[c[d]])}var M={},E={},L=[\\\"height\\\",\\\"width\\\"];for(var S in v){var C=z.nestedProperty(p,S),R=v[S],N=C.parts.length,j=\\\"string\\\"==typeof C.parts[N-1]?N-1:N-2,F=C.parts[j],D=C.parts[j-1]+\\\".\\\"+F,U=C.parts.slice(0,j).join(\\\".\\\"),V=z.nestedProperty(t.layout,U).get(),q=z.nestedProperty(g,U).get();if(M[S]=R,E[S]=\\\"reverse\\\"===F?R:C.get(),-1!==L.indexOf(S)?i(\\\"autosize\\\",!1):\\\"autosize\\\"===S?i(L,void 0):D.match(/^[xyz]axis[0-9]*\\\\.range(\\\\[[0|1]\\\\])?$/)?i(U+\\\".autorange\\\",!1):D.match(/^[xyz]axis[0-9]*\\\\.autorange$/)?i([U+\\\".range[0]\\\",U+\\\".range[1]\\\"],void 0):D.match(/^aspectratio\\\\.[xyz]$/)?i(C.parts[0]+\\\".aspectmode\\\",\\\"manual\\\"):D.match(/^aspectmode$/)?i([U+\\\".x\\\",U+\\\".y\\\",U+\\\".z\\\"],void 0):\\\"tick0\\\"===F||\\\"dtick\\\"===F?i(U+\\\".tickmode\\\",\\\"linear\\\"):\\\"tickmode\\\"===F?i([U+\\\".tick0\\\",U+\\\".dtick\\\"],void 0):/[xy]axis[0-9]*?$/.test(F)&&!Object.keys(R||{}).length&&(_=!0),\\\"type\\\"===F&&\\\"log\\\"===q.type!=(\\\"log\\\"===R)){var Y=V;if(Y&&Y.range)if(q.autorange)\\\"log\\\"===R&&(Y.range=Y.range[1]>Y.range[0]?[1,2]:[2,1]);else{var X=Y.range[0],W=Y.range[1];\\\"log\\\"===R?(0>=X&&0>=W&&i(U+\\\".autorange\\\",!0),0>=X?X=W/1e6:0>=W&&(W=X/1e6),i(U+\\\".range[0]\\\",Math.log(X)/Math.LN10),i(U+\\\".range[1]\\\",Math.log(W)/Math.LN10)):(i(U+\\\".range[0]\\\",Math.pow(10,X)),i(U+\\\".range[1]\\\",Math.pow(10,W)))}else i(U+\\\".autorange\\\",!0)}if(\\\"reverse\\\"===F)V.range?V.range.reverse():(i(U+\\\".autorange\\\",!0),V.range=[1,0]),q.autorange?_=!0:x=!0;else if(\\\"annotations\\\"===C.parts[0]||\\\"shapes\\\"===C.parts[0]){var Z=C.parts[1],$=C.parts[0],K=p[$]||[],Q=P[z.titleCase($)],tt=K[Z]||{};2===C.parts.length&&(\\\"add\\\"===v[S]||z.isPlainObject(v[S])?E[S]=\\\"remove\\\":\\\"remove\\\"===v[S]?-1===Z?(E[$]=K,delete E[S]):E[S]=tt:console.log(\\\"???\\\",v)),!o(tt,\\\"x\\\")&&!o(tt,\\\"y\\\")||z.containsAny(S,[\\\"color\\\",\\\"opacity\\\",\\\"align\\\",\\\"dash\\\"])||(_=!0),Q.draw(t,Z,C.parts.slice(2).join(\\\".\\\"),v[S]),delete v[S]}else 0===C.parts[0].indexOf(\\\"scene\\\")?x=!0:0===C.parts[0].indexOf(\\\"geo\\\")?x=!0:!g._hasGL2D||-1===S.indexOf(\\\"axis\\\")&&\\\"plot_bgcolor\\\"!==C.parts[0]?\\\"hiddenlabels\\\"===S?_=!0:-1!==C.parts[0].indexOf(\\\"legend\\\")?m=!0:-1!==S.indexOf(\\\"title\\\")?y=!0:-1!==C.parts[0].indexOf(\\\"bgcolor\\\")?b=!0:C.parts.length>1&&z.containsAny(C.parts[1],[\\\"tick\\\",\\\"exponent\\\",\\\"grid\\\",\\\"zeroline\\\"])?y=!0:-1!==S.indexOf(\\\".linewidth\\\")&&-1!==S.indexOf(\\\"axis\\\")?y=b=!0:C.parts.length>1&&-1!==C.parts[1].indexOf(\\\"line\\\")?b=!0:C.parts.length>1&&\\\"mirror\\\"===C.parts[1]?y=b=!0:\\\"margin.pad\\\"===S?y=b=!0:\\\"margin\\\"===C.parts[0]||\\\"autorange\\\"===C.parts[1]||\\\"rangemode\\\"===C.parts[1]||\\\"type\\\"===C.parts[1]||\\\"domain\\\"===C.parts[1]||S.match(/^(bar|box|font)/)?_=!0:-1!==[\\\"hovermode\\\",\\\"dragmode\\\"].indexOf(S)?A=!0:-1===[\\\"hovermode\\\",\\\"dragmode\\\",\\\"height\\\",\\\"width\\\",\\\"autosize\\\"].indexOf(S)&&(x=!0):x=!0,C.set(R)}O&&O.add(t,J,[t,E],J,[t,M]),v.autosize&&(v=w(t,v)),(v.height||v.width||v.autosize)&&(_=!0);var et=Object.keys(v),rt=[I.previousPromises];if(x||_)rt.push(function(){return t.layout=void 0,_&&(t.calcdata=void 0),P.plot(t,\\\"\\\",p)});else if(et.length&&(I.supplyDefaults(t),g=t._fullLayout,m&&rt.push(function(){return B.draw(t),I.previousPromises(t)}),b&&rt.push(T),y&&rt.push(function(){return P.Axes.doTicks(t,\\\"redraw\\\"),H.draw(t,\\\"gtitle\\\"),I.previousPromises(t)}),A)){var nt;for(G(t),nt=I.getSubplotIds(g,\\\"gl3d\\\"),d=0;d<nt.length;d++)h=g[nt[d]]._scene,h.updateFx(g.dragmode,g.hovermode);for(nt=I.getSubplotIds(g,\\\"gl2d\\\"),d=0;d<nt.length;d++)h=g._plots[nt[d]]._scene2d,h.updateFx(g);for(nt=I.getSubplotIds(g,\\\"geo\\\"),d=0;d<nt.length;d++){var it=g[nt[d]]._geo;it.updateFx(g.hovermode)}}var ot=z.syncOrAsync(rt,t);return ot&&ot.then||(ot=Promise.resolve(t)),ot.then(function(){var e=z.extendDeep({},M);return a(e),t.emit(\\\"plotly_relayout\\\",e),t})},P.purge=function(t){t=n(t);var e=t._fullLayout||{},r=t._fullData||[];return I.cleanPlot([],{},r,e),I.purge(t),R.purge(t),e._container&&e._container.remove(),delete t._context,delete t._replotPending,delete t._mouseDownTime,delete t._hmpixcount,delete t._hmlumcount,t}},{\\\"../components/color\\\":301,\\\"../components/drawing\\\":319,\\\"../components/errorbars\\\":325,\\\"../components/legend\\\":335,\\\"../components/modebar/manage\\\":339,\\\"../components/rangeselector\\\":346,\\\"../components/rangeslider\\\":352,\\\"../components/shapes\\\":355,\\\"../components/titles\\\":356,\\\"../constants/xmlns_namespaces\\\":362,\\\"../lib\\\":373,\\\"../lib/events\\\":368,\\\"../lib/queue\\\":379,\\\"../plotly\\\":390,\\\"../plots/cartesian/graph_interact\\\":398,\\\"../plots/plots\\\":437,d3:70,\\\"fast-isnumeric\\\":74,\\\"gl-mat4/fromQuat\\\":91}],387:[function(t,e,r){\\\"use strict\\\";function n(t,e){try{t._fullLayout._paper.style(\\\"background\\\",e)}catch(r){console.log(r)}}e.exports={staticPlot:!1,editable:!1,autosizable:!1,fillFrame:!1,frameMargins:0,scrollZoom:!1,doubleClick:\\\"reset+autosize\\\",showTips:!0,showLink:!1,sendData:!0,linkText:\\\"Edit chart\\\",showSources:!1,displayModeBar:\\\"hover\\\",modeBarButtonsToRemove:[],modeBarButtonsToAdd:[],modeBarButtons:!1,displaylogo:!0,plotGlPixelRatio:2,setBackground:n,topojsonURL:\\\"https://cdn.plot.ly/\\\"}},{}],388:[function(t,e,r){\\\"use strict\\\";function n(t){var e=v.attributes,r=l({type:t}),n=u(t),i=f(t),o={},h={};o.type=null,b(o,e),o=a(r.attributes,o,\\\"attributes\\\",t),void 0!==i.attributes&&b(o,i.attributes),o.type=t,o=c(o),s(o),E.traces[t]=y({},n,{attributes:o}),void 0!==r.layoutAttributes&&(h=a(r.layoutAttributes,h,\\\"layoutAttributes\\\",t),s(h),E.traces[t].layoutAttributes=h)}function i(){var t=v.layoutAttributes,e={};e=a(t,e,\\\"layoutAttributes\\\",\\\"*\\\"),e=h(e),e=d(e),e=c(e),s(e),p(e),E.layout={layoutAttributes:e}}function o(){E.defs={valObjects:m.valObjects,metaKeys:T.concat([\\\"description\\\",\\\"role\\\"])}}function a(t,e,r,n){var i,o,s,c,u;return Object.keys(t).forEach(function(h){return h===_?void Object.keys(t[h]).forEach(function(c){i=l({module:t[h][c]}),void 0!==i&&(o=i[r],s=a(o,{},r,n),m.nestedProperty(e,c).set(b({},s)))}):h===w?void Object.keys(t[h]).forEach(function(i){i===n&&(c=l({module:t[h][i]}),void 0!==c&&(u=c[r],u=a(u,{},r,n),x(e,u)))}):void(e[h]=m.isPlainObject(t[h])?x({},t[h]):t[h])}),e}function s(t){function e(t){return{valType:\\\"string\\\"}}function r(t,r,n){C.isValObject(t)?\\\"data_array\\\"===t.valType?(t.role=\\\"data\\\",n[r+\\\"src\\\"]=e(r)):t.arrayOk===!0&&(n[r+\\\"src\\\"]=e(r)):m.isPlainObject(t)&&(t.role=\\\"object\\\")}C.crawl(t,r)}function l(t){if(\\\"type\\\"in t)return\\\"area\\\"===t.type?{attributes:L}:v.getModule({type:t.type});var e=v.subplotsRegistry,r=t.module;return e[r]?e[r]:\\\"module\\\"in t?g[r]:void 0}function c(t){return Object.keys(t).forEach(function(e){\\\"_\\\"===e.charAt(0)&&-1===T.indexOf(e)&&delete t[e]}),t}function u(t){return\\\"area\\\"===t?{}:v.modules[t].meta||{}}function h(t){return y(t,{radialaxis:S.radialaxis,angularaxis:S.angularaxis}),y(t,S.layout),t}function f(t){if(\\\"area\\\"===t)return{};var e=v.subplotsRegistry,r=Object.keys(e).filter(function(e){return v.traceIs({type:t},e)})[0];return void 0===r?{}:e[r]}function d(t){var e=v.subplotsRegistry;return Object.keys(t).forEach(function(r){Object.keys(e).forEach(function(n){var i,o=e[n];i=\\\"cartesian\\\"===n||\\\"gl2d\\\"===n?o.attrRegex.x.test(r)||o.attrRegex.y.test(r):o.attrRegex.test(r),i&&(t[r][A]=!0)})}),t}function p(t){function e(t,e,r){if(t[k]===!0){var n=e.substr(0,e.length-1);delete t[k],r[e]={items:{}},r[e].items[n]=t,r[e].role=\\\"object\\\"}}C.crawl(t,e)}var g=t(\\\"../plotly\\\"),v=t(\\\"../plots/plots\\\"),m=t(\\\"../lib\\\"),y=m.extendFlat,b=m.extendDeep,x=m.extendDeepAll,_=\\\"_nestedModules\\\",w=\\\"_composedModules\\\",A=\\\"_isSubplotObj\\\",k=\\\"_isLinkedToArray\\\",M=\\\"_deprecated\\\",T=[A,k,M],E={traces:{},layout:{},defs:{}},L=t(\\\"../plots/polar/area_attributes\\\"),S=t(\\\"../plots/polar/axis_attributes\\\"),C=e.exports={};C.get=function(){return v.allTypes.concat(\\\"area\\\").forEach(n),i(),o(),E},C.crawl=function(t,e){Object.keys(t).forEach(function(r){var n=t[r];-1===T.indexOf(r)&&(e(n,r,t),C.isValObject(n)||m.isPlainObject(n)&&C.crawl(n,e))})},C.isValObject=function(t){return t&&void 0!==t.valType}},{\\\"../lib\\\":373,\\\"../plotly\\\":390,\\\"../plots/plots\\\":437,\\\"../plots/polar/area_attributes\\\":438,\\\"../plots/polar/axis_attributes\\\":439}],389:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../plotly\\\");e.exports=function(t){return n.Lib.extendFlat(n.defaultConfig,t)}},{\\\"../plotly\\\":390}],390:[function(t,e,r){\\\"use strict\\\";t(\\\"es6-promise\\\").polyfill(),r.Lib=t(\\\"./lib\\\"),r.util=t(\\\"./lib/svg_text_utils\\\"),r.Queue=t(\\\"./lib/queue\\\"),t(\\\"../build/plotcss\\\"),r.MathJaxConfig=t(\\\"./fonts/mathjax_config\\\"),r.defaultConfig=t(\\\"./plot_api/plot_config\\\");var n=r.Plots=t(\\\"./plots/plots\\\");r.Axes=t(\\\"./plots/cartesian/axes\\\"),r.Fx=t(\\\"./plots/cartesian/graph_interact\\\"),r.micropolar=t(\\\"./plots/polar/micropolar\\\"),r.Color=t(\\\"./components/color\\\"),r.Drawing=t(\\\"./components/drawing\\\"),r.Colorscale=t(\\\"./components/colorscale\\\"),r.Colorbar=t(\\\"./components/colorbar\\\"),r.ErrorBars=t(\\\"./components/errorbars\\\"),r.Annotations=t(\\\"./components/annotations\\\"),r.Shapes=t(\\\"./components/shapes\\\"),r.Legend=t(\\\"./components/legend\\\"),r.ModeBar=t(\\\"./components/modebar\\\"),r.register=function(t){if(!t)throw new Error(\\\"No argument passed to Plotly.register.\\\");t&&!Array.isArray(t)&&(t=[t]);for(var e=0;e<t.length;e++){var r=t[e];if(r&&\\\"trace\\\"!==r.moduleType)throw new Error(\\\"Invalid module was attempted to be registered!\\\");n.register(r,r.name,r.categories,r.meta),n.subplotsRegistry[r.basePlotModule.name]||n.registerSubplot(r.basePlotModule)}},r.register(t(\\\"./traces/scatter\\\")),t(\\\"./plot_api/plot_api\\\"),r.PlotSchema=t(\\\"./plot_api/plot_schema\\\"),r.Snapshot=t(\\\"./snapshot\\\")},{\\\"../build/plotcss\\\":1,\\\"./components/annotations\\\":299,\\\"./components/color\\\":301,\\\"./components/colorbar\\\":306,\\\"./components/colorscale\\\":314,\\\"./components/drawing\\\":319,\\\"./components/errorbars\\\":325,\\\"./components/legend\\\":335,\\\"./components/modebar\\\":338,\\\"./components/shapes\\\":355,\\\"./fonts/mathjax_config\\\":364,\\\"./lib\\\":373,\\\"./lib/queue\\\":379,\\\"./lib/svg_text_utils\\\":384,\\\"./plot_api/plot_api\\\":386,\\\"./plot_api/plot_config\\\":387,\\\"./plot_api/plot_schema\\\":388,\\\"./plots/cartesian/axes\\\":393,\\\"./plots/cartesian/graph_interact\\\":398,\\\"./plots/plots\\\":437,\\\"./plots/polar/micropolar\\\":440,\\\"./snapshot\\\":444,\\\"./traces/scatter\\\":537,\\\"es6-promise\\\":73}],391:[function(t,e,r){\\\"use strict\\\";e.exports={type:{valType:\\\"enumerated\\\",values:[],dflt:\\\"scatter\\\"},visible:{valType:\\\"enumerated\\\",values:[!0,!1,\\\"legendonly\\\"],dflt:!0},showlegend:{valType:\\\"boolean\\\",dflt:!0},legendgroup:{valType:\\\"string\\\",dflt:\\\"\\\"},opacity:{valType:\\\"number\\\",min:0,max:1,dflt:1},name:{valType:\\\"string\\\"},uid:{valType:\\\"string\\\",dflt:\\\"\\\"},hoverinfo:{valType:\\\"flaglist\\\",flags:[\\\"x\\\",\\\"y\\\",\\\"z\\\",\\\"text\\\",\\\"name\\\"],extras:[\\\"all\\\",\\\"none\\\"],dflt:\\\"all\\\"},stream:{token:{valType:\\\"string\\\",noBlank:!0,strict:!0},maxpoints:{valType:\\\"number\\\",min:0}}}},{}],392:[function(t,e,r){\\\"use strict\\\";e.exports={xaxis:{valType:\\\"axisid\\\",dflt:\\\"x\\\"},yaxis:{valType:\\\"axisid\\\",dflt:\\\"y\\\"}}},{}],393:[function(t,e,r){\\\"use strict\\\";function n(t){var e,r,n=t.tickvals,i=t.ticktext,o=new Array(n.length),a=1.0001*t.range[0]-1e-4*t.range[1],l=1.0001*t.range[1]-1e-4*t.range[0],c=Math.min(a,l),u=Math.max(a,l),h=0;for(Array.isArray(i)||(i=[]),r=0;r<n.length;r++)e=t.d2l(n[r]),e>c&&u>e&&(void 0===i[r]?o[h]=A.tickText(t,e):o[h]=s(t,e,String(i[r])),h++);return h<n.length&&o.splice(h,n.length-h),o}function i(t,e,r){return e*_.Lib.roundUp(t/e,r)}function o(t){var e,r=t.dtick;if(t._tickexponent=0,x(r)||\\\"string\\\"==typeof r||(r=1),\\\"category\\\"===t.type)t._tickround=null;else if(x(r)||\\\"L\\\"===r.charAt(0))if(\\\"date\\\"===t.type)r>=864e5?t._tickround=\\\"d\\\":r>=36e5?t._tickround=\\\"H\\\":r>=6e4?t._tickround=\\\"M\\\":r>=1e3?t._tickround=\\\"S\\\":t._tickround=3-Math.round(Math.log(r/2)/Math.LN10);else{x(r)||(r=Number(r.substr(1))),t._tickround=2-Math.floor(Math.log(r)/Math.LN10+.01),e=\\\"log\\\"===t.type?Math.pow(10,Math.max(t.range[0],t.range[1])):Math.max(Math.abs(t.range[0]),Math.abs(t.range[1]));var n=Math.floor(Math.log(e)/Math.LN10+.01);Math.abs(n)>3&&(\\\"SI\\\"===t.exponentformat||\\\"B\\\"===t.exponentformat?t._tickexponent=3*Math.round((n-1)/3):t._tickexponent=n)}else\\\"M\\\"===r.charAt(0)?t._tickround=2===r.length?\\\"m\\\":\\\"y\\\":t._tickround=null}function a(t,e){var r=t.match(F),n=new Date(e);if(r){var i=Math.min(+r[1]||6,6),o=String(e/1e3%1+2.0000005).substr(2,i).replace(/0+$/,\\\"\\\")||\\\"0\\\";return b.time.format(t.replace(F,o))(n)}return b.time.format(t)(n)}function s(t,e,r){var n=t.tickfont||t._td._fullLayout.font;return{x:e,dx:0,dy:0,text:r||\\\"\\\",fontSize:n.size,font:n.family,fontColor:n.color}}function l(t,e,r,n){var i,o=e.x,s=t._tickround,l=new Date(o),c=\\\"\\\";r&&t.hoverformat?i=a(t.hoverformat,o):t.tickformat?i=a(t.tickformat,o):(n&&(x(s)?s+=2:s={y:\\\"m\\\",m:\\\"d\\\",d:\\\"H\\\",H:\\\"M\\\",M:\\\"S\\\",S:2}[s]),\\\"y\\\"===s?i=z(l):\\\"m\\\"===s?i=R(l):(o!==t._tmin||r||(c=\\\"<br>\\\"+z(l)),\\\"d\\\"===s?i=O(l):\\\"H\\\"===s?i=I(l):(o!==t._tmin||r||(c=\\\"<br>\\\"+O(l)+\\\", \\\"+z(l)),i=N(l),\\\"M\\\"!==s&&(i+=j(l),\\\"S\\\"!==s&&(i+=f(y(o/1e3,1),t,\\\"none\\\",r).substr(1)))))),e.text=i+c}function c(t,e,r,n,i){var o=t.dtick,a=e.x;if(!n||\\\"string\\\"==typeof o&&\\\"L\\\"===o.charAt(0)||(o=\\\"L3\\\"),t.tickformat||\\\"string\\\"==typeof o&&\\\"L\\\"===o.charAt(0))e.text=f(Math.pow(10,a),t,i,n);else if(x(o)||\\\"D\\\"===o.charAt(0)&&y(a+.01,1)<.1)if(-1!==[\\\"e\\\",\\\"E\\\",\\\"power\\\"].indexOf(t.exponentformat)){var s=Math.round(a);0===s?e.text=1:1===s?e.text=\\\"10\\\":s>1?e.text=\\\"10<sup>\\\"+s+\\\"</sup>\\\":e.text=\\\"10<sup>\\\\u2212\\\"+-s+\\\"</sup>\\\",e.fontSize*=1.25}else e.text=f(Math.pow(10,a),t,\\\"\\\",\\\"fakehover\\\"),\\\"D1\\\"===o&&\\\"y\\\"===t._id.charAt(0)&&(e.dy-=e.fontSize/6);else{if(\\\"D\\\"!==o.charAt(0))throw\\\"unrecognized dtick \\\"+String(o);e.text=String(Math.round(Math.pow(10,y(a,1)))),e.fontSize*=.75}if(\\\"D1\\\"===t.dtick){var l=String(e.text).charAt(0);\\\"0\\\"!==l&&\\\"1\\\"!==l||(\\\"y\\\"===t._id.charAt(0)?e.dx-=e.fontSize/4:(e.dy+=e.fontSize/2,e.dx+=(t.range[1]>t.range[0]?1:-1)*e.fontSize*(0>a?.5:.25)))}}function u(t,e){var r=t._categories[Math.round(e.x)];void 0===r&&(r=\\\"\\\"),e.text=String(r)}function h(t,e,r,n,i){\\\"all\\\"===t.showexponent&&Math.abs(e.x/t.dtick)<1e-6&&(i=\\\"hide\\\"),e.text=f(e.x,t,i,n)}function f(t,e,r,n){var i=0>t,a=e._tickround,s=r||e.exponentformat||\\\"B\\\",l=e._tickexponent,c=e.tickformat;if(n){var u={exponentformat:e.exponentformat,dtick:\\\"none\\\"===e.showexponent?e.dtick:x(t)?Math.abs(t)||1:1,range:\\\"none\\\"===e.showexponent?e.range:[0,t||1]};o(u),a=(Number(u._tickround)||0)+4,l=u._tickexponent,e.hoverformat&&(c=e.hoverformat)}if(c)return b.format(c)(t).replace(/-/g,\\\"\\\\u2212\\\");var h=Math.pow(10,-a)/2;if(\\\"none\\\"===s&&(l=0),t=Math.abs(t),h>t)t=\\\"0\\\",i=!1;else{if(t+=h,l&&(t*=Math.pow(10,-l),a+=l),0===a)t=String(Math.floor(t));else if(0>a){t=String(Math.round(t)),t=t.substr(0,t.length+a);for(var f=a;0>f;f++)t+=\\\"0\\\"}else{t=String(t);var p=t.indexOf(\\\".\\\")+1;p&&(t=t.substr(0,p+a).replace(/\\\\.?0+$/,\\\"\\\"))}t=d(t,e._td._fullLayout.separators)}if(l&&\\\"hide\\\"!==s){var g;g=0>l?\\\"\\\\u2212\\\"+-l:\\\"power\\\"!==s?\\\"+\\\"+l:String(l),\\\"e\\\"===s||(\\\"SI\\\"===s||\\\"B\\\"===s)&&(l>12||-15>l)?t+=\\\"e\\\"+g:\\\"E\\\"===s?t+=\\\"E\\\"+g:\\\"power\\\"===s?t+=\\\"&times;10<sup>\\\"+g+\\\"</sup>\\\":\\\"B\\\"===s&&9===l?t+=\\\"B\\\":\\\"SI\\\"!==s&&\\\"B\\\"!==s||(t+=D[l/3+5])}return i?\\\"\\\\u2212\\\"+t:t}function d(t,e){var r=e.charAt(0),n=e.charAt(1),i=t.split(\\\".\\\"),o=i[0],a=i.length>1?r+i[1]:\\\"\\\";if(n&&(i.length>1||o.length>4))for(;B.test(o);)o=o.replace(B,\\\"$1\\\"+n+\\\"$2\\\");return o+a}function p(t,e){var r,n,i=[];for(r=0;r<e.length;r++){var o=[],a=t._fullData[e[r]].xaxis,s=t._fullData[e[r]].yaxis;if(a&&s){for(n=0;n<i.length;n++)-1===i[n].x.indexOf(a)&&-1===i[n].y.indexOf(s)||o.push(n);if(o.length){var l,c=i[o[0]];if(o.length>1)for(n=1;n<o.length;n++)l=i[o[n]],g(c.x,l.x),g(c.y,l.y);g(c.x,[a]),g(c.y,[s])}else i.push({x:[a],y:[s]})}}return i}function g(t,e){for(var r=0;r<e.length;r++)-1===t.indexOf(e[r])&&t.push(e[r])}function v(t,e,r){var n,i,o=[],a=[],s=t.layout;for(n=0;n<e.length;n++)o.push(A.getFromId(t,e[n]));for(n=0;n<r.length;n++)a.push(A.getFromId(t,r[n]));var l=Object.keys(o[0]),c=[\\\"anchor\\\",\\\"domain\\\",\\\"overlaying\\\",\\\"position\\\",\\\"side\\\",\\\"tickangle\\\"],u=[\\\"linear\\\",\\\"log\\\"];for(n=0;n<l.length;n++){var h=l[n],f=o[0][h],d=a[0][h],p=!0,g=!1,v=!1;if(\\\"_\\\"!==h.charAt(0)&&\\\"function\\\"!=typeof f&&-1===c.indexOf(h)){for(i=1;i<o.length&&p;i++){var y=o[i][h];\\\"type\\\"===h&&-1!==u.indexOf(f)&&-1!==u.indexOf(y)&&f!==y?g=!0:y!==f&&(p=!1)}for(i=1;i<a.length&&p;i++){var b=a[i][h];\\\"type\\\"===h&&-1!==u.indexOf(d)&&-1!==u.indexOf(b)&&d!==b?v=!0:a[i][h]!==d&&(p=!1)}p&&(g&&(s[o[0]._name].type=\\\"linear\\\"),v&&(s[a[0]._name].type=\\\"linear\\\"),m(s,h,o,a))}}for(n=0;n<t._fullLayout.annotations.length;n++){var x=t._fullLayout.annotations[n];-1!==e.indexOf(x.xref)&&-1!==r.indexOf(x.yref)&&_.Lib.swapAttrs(s.annotations[n],[\\\"?\\\"])}}function m(t,e,r,n){var i,o=_.Lib.nestedProperty,a=o(t[r[0]._name],e).get(),s=o(t[n[0]._name],e).get();for(\\\"title\\\"===e&&(\\\"Click to enter X axis title\\\"===a&&(a=\\\"Click to enter Y axis title\\\"),\\\"Click to enter Y axis title\\\"===s&&(s=\\\"Click to enter X axis title\\\")),i=0;i<r.length;i++)o(t,r[i]._name+\\\".\\\"+e).set(s);for(i=0;i<n.length;i++)o(t,n[i]._name+\\\".\\\"+e).set(a)}function y(t,e){return(t%e+e)%e}var b=t(\\\"d3\\\"),x=t(\\\"fast-isnumeric\\\"),_=t(\\\"../../plotly\\\"),w=t(\\\"../../components/titles\\\"),A=e.exports={};A.layoutAttributes=t(\\\"./layout_attributes\\\"),A.supplyLayoutDefaults=t(\\\"./layout_defaults\\\"),A.setConvert=t(\\\"./set_convert\\\");var k=t(\\\"./axis_ids\\\");A.id2name=k.id2name,A.cleanId=k.cleanId,A.list=k.list,A.listIds=k.listIds,A.getFromId=k.getFromId,A.getFromTrace=k.getFromTrace,A.coerceRef=function(t,e,r,n){var i=r._fullLayout._hasGL2D?[]:A.listIds(r,n),o=n+\\\"ref\\\",a={};return a[o]={valType:\\\"enumerated\\\",values:i.concat([\\\"paper\\\"]),dflt:i[0]||\\\"paper\\\"},_.Lib.coerce(t,e,a,o)},A.clearTypes=function(t,e){\\n\",\n       \"Array.isArray(e)&&e.length||(e=t._fullData.map(function(t,e){return e})),e.forEach(function(e){var r=t.data[e];delete(A.getFromId(t,r.xaxis)||{}).type,delete(A.getFromId(t,r.yaxis)||{}).type})},A.counterLetter=function(t){var e=t.charAt(0);return\\\"x\\\"===e?\\\"y\\\":\\\"y\\\"===e?\\\"x\\\":void 0},A.minDtick=function(t,e,r,n){-1===[\\\"log\\\",\\\"category\\\"].indexOf(t.type)&&n?null===t._minDtick?(t._minDtick=e,t._forceTick0=r):t._minDtick&&((t._minDtick/e+1e-6)%1<2e-6&&((r-t._forceTick0)/e%1+1.000001)%1<2e-6?(t._minDtick=e,t._forceTick0=r):((e/t._minDtick+1e-6)%1>2e-6||((r-t._forceTick0)/t._minDtick%1+1.000001)%1>2e-6)&&(t._minDtick=0)):t._minDtick=0},A.doAutoRange=function(t){if(t._length||t.setScale(),t.autorange&&t._min&&t._max&&t._min.length&&t._max.length){var e,r=t._min[0].val,n=t._max[0].val;for(e=1;e<t._min.length&&r===n;e++)r=Math.min(r,t._min[e].val);for(e=1;e<t._max.length&&r===n;e++)n=Math.max(n,t._max[e].val);var i,o,a,s,l,c,u,h=0,f=t.range&&t.range[1]<t.range[0];for(\\\"reversed\\\"===t.autorange&&(f=!0,t.autorange=!0),e=0;e<t._min.length;e++)for(o=t._min[e],i=0;i<t._max.length;i++)a=t._max[i],u=a.val-o.val,c=t._length-o.pad-a.pad,u>0&&c>0&&u/c>h&&(s=o,l=a,h=u/c);r===n?t.range=f?[r+1,\\\"normal\\\"!==t.rangemode?0:r-1]:[\\\"normal\\\"!==t.rangemode?0:r-1,r+1]:h&&(\\\"linear\\\"!==t.type&&\\\"-\\\"!==t.type||(\\\"tozero\\\"===t.rangemode&&s.val>=0?s={val:0,pad:0}:\\\"nonnegative\\\"===t.rangemode&&(s.val-h*s.pad<0&&(s={val:0,pad:0}),l.val<0&&(l={val:1,pad:0})),h=(l.val-s.val)/(t._length-s.pad-l.pad)),t.range=[s.val-h*s.pad,l.val+h*l.pad],t.range[0]===t.range[1]&&(t.range=[t.range[0]-1,t.range[0]+1]),f&&t.range.reverse());var d=t._td.layout[t._name];d||(t._td.layout[t._name]=d={}),d!==t&&(d.range=t.range.slice(),d.autorange=t.autorange)}},A.saveRangeInitial=function(t,e){for(var r=A.list(t,\\\"\\\",!0),n=!1,i=0;i<r.length;i++){var o=r[i],a=void 0===o._rangeInitial,s=a||!(o.range[0]===o._rangeInitial[0]&&o.range[1]===o._rangeInitial[1]);(a&&o.autorange===!1||e&&s)&&(o._rangeInitial=o.range.slice(),n=!0)}return n};var M=Number.MAX_VALUE/2;A.expand=function(t,e,r){function n(t){if(Array.isArray(t))return function(e){return Math.max(Number(t[e]||0),0)};var e=Math.max(Number(t||0),0);return function(){return e}}function i(r){function n(t){return x(t)&&Math.abs(t)<M}if(l=e[r],x(l)){if(h=b(r)+m,f=_(r)+m,p=l-A(r),g=l+w(r),\\\"log\\\"===t.type&&g/10>p&&(p=g/10),c=t.c2l(p),u=t.c2l(g),y&&(c=Math.min(0,c),u=Math.max(0,u)),n(c)){for(d=!0,a=0;a<t._min.length&&d;a++)s=t._min[a],s.val<=c&&s.pad>=f?d=!1:s.val>=c&&s.pad<=f&&(t._min.splice(a,1),a--);d&&t._min.push({val:c,pad:y&&0===c?0:f})}if(n(u)){for(d=!0,a=0;a<t._max.length&&d;a++)s=t._max[a],s.val>=u&&s.pad>=h?d=!1:s.val<=u&&s.pad<=h&&(t._max.splice(a,1),a--);d&&t._max.push({val:u,pad:y&&0===u?0:h})}}}if(t.autorange&&e){t._min||(t._min=[]),t._max||(t._max=[]),r||(r={}),t._m||t.setScale();var o,a,s,l,c,u,h,f,d,p,g,v=e.length,m=r.padded?.05*t._length:0,y=r.tozero&&(\\\"linear\\\"===t.type||\\\"-\\\"===t.type),b=n((t._m>0?r.ppadplus:r.ppadminus)||r.ppad||0),_=n((t._m>0?r.ppadminus:r.ppadplus)||r.ppad||0),w=n(r.vpadplus||r.vpad),A=n(r.vpadminus||r.vpad);for(o=0;6>o;o++)i(o);for(o=v-1;o>5;o--)i(o)}},A.autoBin=function(t,e,r,n){function i(t){return(1+100*(t-d)/h.dtick)%100<2}var o=_.Lib.aggNums(Math.min,null,t),a=_.Lib.aggNums(Math.max,null,t);if(\\\"category\\\"===e.type)return{start:o-.5,end:a+.5,size:1};var s;if(r)s=(a-o)/r;else{var l=_.Lib.distinctVals(t),c=Math.pow(10,Math.floor(Math.log(l.minDiff)/Math.LN10)),u=c*_.Lib.roundUp(l.minDiff/c,[.9,1.9,4.9,9.9],!0);s=Math.max(u,2*_.Lib.stdev(t)/Math.pow(t.length,n?.25:.4))}var h={type:\\\"log\\\"===e.type?\\\"linear\\\":e.type,range:[o,a]};A.autoTicks(h,s);var f,d=A.tickIncrement(A.tickFirst(h),h.dtick,\\\"reverse\\\");if(\\\"number\\\"==typeof h.dtick){for(var p=0,g=0,v=0,m=0,y=0;y<t.length;y++)t[y]%1===0?v++:x(t[y])||m++,i(t[y])&&p++,i(t[y]+h.dtick/2)&&g++;var b=t.length-m;if(v===b&&\\\"date\\\"!==e.type)h.dtick<1?d=o-.5*h.dtick:d-=.5;else if(.1*b>g&&(p>.3*b||i(o)||i(a))){var w=h.dtick/2;d+=o>d+w?w:-w}var k=1+Math.floor((a-d)/h.dtick);f=d+k*h.dtick}else for(f=d;a>=f;)f=A.tickIncrement(f,h.dtick);return{start:d,end:f,size:h.dtick}},A.calcTicks=function(t){if(\\\"array\\\"===t.tickmode)return n(t);if(\\\"auto\\\"===t.tickmode||!t.dtick){var e,r=t.nticks;r||(\\\"category\\\"===t.type?(e=t.tickfont?1.2*(t.tickfont.size||12):15,r=t._length/e):(e=\\\"y\\\"===t._id.charAt(0)?40:80,r=_.Lib.constrain(t._length/e,4,9)+1)),A.autoTicks(t,Math.abs(t.range[1]-t.range[0])/r),t._minDtick>0&&t.dtick<2*t._minDtick&&(t.dtick=t._minDtick,t.tick0=t._forceTick0)}t.tick0||(t.tick0=\\\"date\\\"===t.type?new Date(2e3,0,1).getTime():0),o(t),t._tmin=A.tickFirst(t);var i=t.range[1]<t.range[0],a=[],s=1.0001*t.range[1]-1e-4*t.range[0];\\\"category\\\"===t.type&&(s=i?Math.max(-.5,s):Math.min(t._categories.length-.5,s));for(var l=t._tmin;(i?l>=s:s>=l)&&(a.push(l),!(a.length>1e3));l=A.tickIncrement(l,t.dtick,i));t._tmax=a[a.length-1];for(var c=new Array(a.length),u=0;u<a.length;u++)c[u]=A.tickText(t,a[u]);return c};var T=[2,5,10],E=[1,2,3,6,12],L=[1,2,5,10,15,30],S=[1,2,3,7,14],C=[-.046,0,.301,.477,.602,.699,.778,.845,.903,.954,1],P=[-.301,0,.301,.699,1];A.autoTicks=function(t,e){var r;if(\\\"date\\\"===t.type)t.tick0=new Date(2e3,0,1).getTime(),e>157788e5?(e/=315576e5,r=Math.pow(10,Math.floor(Math.log(e)/Math.LN10)),t.dtick=\\\"M\\\"+12*i(e,r,T)):e>12096e5?(e/=26298e5,t.dtick=\\\"M\\\"+i(e,1,E)):e>432e5?(t.dtick=i(e,864e5,S),t.tick0=new Date(2e3,0,2).getTime()):e>18e5?t.dtick=i(e,36e5,E):e>3e4?t.dtick=i(e,6e4,L):e>500?t.dtick=i(e,1e3,L):(r=Math.pow(10,Math.floor(Math.log(e)/Math.LN10)),t.dtick=i(e,r,T));else if(\\\"log\\\"===t.type)if(t.tick0=0,e>.7)t.dtick=Math.ceil(e);else if(Math.abs(t.range[1]-t.range[0])<1){var n=1.5*Math.abs((t.range[1]-t.range[0])/e);e=Math.abs(Math.pow(10,t.range[1])-Math.pow(10,t.range[0]))/n,r=Math.pow(10,Math.floor(Math.log(e)/Math.LN10)),t.dtick=\\\"L\\\"+i(e,r,T)}else t.dtick=e>.3?\\\"D2\\\":\\\"D1\\\";else\\\"category\\\"===t.type?(t.tick0=0,t.dtick=Math.ceil(Math.max(e,1))):(t.tick0=0,r=Math.pow(10,Math.floor(Math.log(e)/Math.LN10)),t.dtick=i(e,r,T));if(0===t.dtick&&(t.dtick=1),!x(t.dtick)&&\\\"string\\\"!=typeof t.dtick){var o=t.dtick;throw t.dtick=1,\\\"ax.dtick error: \\\"+String(o)}},A.tickIncrement=function(t,e,r){var n=r?-1:1;if(x(e))return t+n*e;var i=e.charAt(0),o=n*Number(e.substr(1));if(\\\"M\\\"===i){var a=new Date(t);return a.setMonth(a.getMonth()+o)}if(\\\"L\\\"===i)return Math.log(Math.pow(10,t)+o)/Math.LN10;if(\\\"D\\\"===i){var s=\\\"D2\\\"===e?P:C,l=t+.01*n,c=_.Lib.roundUp(y(l,1),s,r);return Math.floor(l)+Math.log(b.round(Math.pow(10,c),1))/Math.LN10}throw\\\"unrecognized dtick \\\"+String(e)},A.tickFirst=function(t){var e=t.range[1]<t.range[0],r=e?Math.floor:Math.ceil,n=1.0001*t.range[0]-1e-4*t.range[1],i=t.dtick,o=t.tick0;if(x(i)){var a=r((n-o)/i)*i+o;return\\\"category\\\"===t.type&&(a=_.Lib.constrain(a,0,t._categories.length-1)),a}var s,l,c,u=i.charAt(0),h=Number(i.substr(1));if(\\\"M\\\"===u){for(s=new Date(o),n=new Date(n),l=12*(n.getFullYear()-s.getFullYear())+n.getMonth()-s.getMonth(),c=s.setMonth(s.getMonth()+(Math.round(l/h)+(e?1:-1))*h);e?c>n:n>c;)c=A.tickIncrement(c,i,e);return c}if(\\\"L\\\"===u)return Math.log(r((Math.pow(10,n)-o)/h)*h+o)/Math.LN10;if(\\\"D\\\"===u){var f=\\\"D2\\\"===i?P:C,d=_.Lib.roundUp(y(n,1),f,e);return Math.floor(n)+Math.log(b.round(Math.pow(10,d),1))/Math.LN10}throw\\\"unrecognized dtick \\\"+String(i)};var z=b.time.format(\\\"%Y\\\"),R=b.time.format(\\\"%b %Y\\\"),O=b.time.format(\\\"%b %-d\\\"),I=b.time.format(\\\"%b %-d %Hh\\\"),N=b.time.format(\\\"%H:%M\\\"),j=b.time.format(\\\":%S\\\"),F=/%(\\\\d?)f/g;A.tickText=function(t,e,r){function n(n){var i;return void 0===n?!0:r?\\\"none\\\"===n:(i={first:t._tmin,last:t._tmax}[n],\\\"all\\\"!==n&&e!==i)}var i,o,a=s(t,e),f=\\\"array\\\"===t.tickmode,d=r||f;if(f&&Array.isArray(t.ticktext)){var p=Math.abs(t.range[1]-t.range[0])/1e4;for(o=0;o<t.ticktext.length&&!(Math.abs(e-t.d2l(t.tickvals[o]))<p);o++);if(o<t.ticktext.length)return a.text=String(t.ticktext[o]),a}return i=\\\"none\\\"!==t.exponentformat&&n(t.showexponent)?\\\"hide\\\":\\\"\\\",\\\"date\\\"===t.type?l(t,a,r,d):\\\"log\\\"===t.type?c(t,a,r,d,i):\\\"category\\\"===t.type?u(t,a):h(t,a,r,d,i),t.tickprefix&&!n(t.showtickprefix)&&(a.text=t.tickprefix+a.text),t.ticksuffix&&!n(t.showticksuffix)&&(a.text+=t.ticksuffix),a};var D=[\\\"f\\\",\\\"p\\\",\\\"n\\\",\\\"&mu;\\\",\\\"m\\\",\\\"\\\",\\\"k\\\",\\\"M\\\",\\\"G\\\",\\\"T\\\"],B=/(\\\\d+)(\\\\d{3})/;A.subplotMatch=/^x([0-9]*)y([0-9]*)$/,A.getSubplots=function(t,e){function r(t,e){return-1!==t.indexOf(e._id)}var n,i,o,a=[],s=t.data||[];for(n=0;n<s.length;n++){var l=s[n];if(l.visible!==!1&&\\\"legendonly\\\"!==l.visible&&(_.Plots.traceIs(l,\\\"cartesian\\\")||_.Plots.traceIs(l,\\\"gl2d\\\"))){var c=l.xaxis||\\\"x\\\",u=l.yaxis||\\\"y\\\";o=c+u,-1===a.indexOf(o)&&a.push(o)}}var h=A.list(t,\\\"\\\",!0);for(n=0;n<h.length;n++){var f=h[n],d=f._id.charAt(0),p=\\\"free\\\"===f.anchor?\\\"x\\\"===d?\\\"y\\\":\\\"x\\\":f.anchor,g=A.getFromId(t,p),v=!1;for(i=0;i<a.length;i++)if(r(a[i],f)){v=!0;break}\\\"free\\\"===f.anchor&&v||g&&(o=\\\"x\\\"===d?f._id+g._id:g._id+f._id,-1===a.indexOf(o)&&a.push(o))}var m=A.subplotMatch,y=[];for(n=0;n<a.length;n++)o=a[n],m.test(o)&&y.push(o);return y.sort(function(t,e){var r=t.match(m),n=e.match(m);return r[1]===n[1]?+(r[2]||1)-(n[2]||1):+(r[1]||0)-(n[1]||0)}),e?A.findSubplotsWithAxis(y,e):y},A.findSubplotsWithAxis=function(t,e){for(var r=new RegExp(\\\"x\\\"===e._id.charAt(0)?\\\"^\\\"+e._id+\\\"y\\\":e._id+\\\"$\\\"),n=[],i=0;i<t.length;i++){var o=t[i];r.test(o)&&n.push(o)}return n},A.makeClipPaths=function(t){var e,r,n=t._fullLayout,i=n._defs,o={_offset:0,_length:n.width,_id:\\\"\\\"},a={_offset:0,_length:n.height,_id:\\\"\\\"},s=A.list(t,\\\"x\\\",!0),l=A.list(t,\\\"y\\\",!0),c=[];for(e=0;e<s.length;e++)for(c.push({x:s[e],y:a}),r=0;r<l.length;r++)0===e&&c.push({x:o,y:l[r]}),c.push({x:s[e],y:l[r]});var u=i.selectAll(\\\"g.clips\\\").data([0]);u.enter().append(\\\"g\\\").classed(\\\"clips\\\",!0);var h=u.selectAll(\\\".axesclip\\\").data(c,function(t){return t.x._id+t.y._id});h.enter().append(\\\"clipPath\\\").classed(\\\"axesclip\\\",!0).attr(\\\"id\\\",function(t){return\\\"clip\\\"+n._uid+t.x._id+t.y._id}).append(\\\"rect\\\"),h.exit().remove(),h.each(function(t){b.select(this).select(\\\"rect\\\").attr({x:t.x._offset||0,y:t.y._offset||0,width:t.x._length||1,height:t.y._length||1})})},A.doTicks=function(t,e,r){function n(t){var e=l.l2p(t.x);return e>1&&e<l._length-1}function i(t,e){var r=t.selectAll(\\\"path.\\\"+M).data(\\\"inside\\\"===l.ticks?I:y,k);e&&l.ticks?(r.enter().append(\\\"path\\\").classed(M,1).classed(\\\"ticks\\\",1).classed(\\\"crisp\\\",1).call(_.Color.stroke,l.tickcolor).style(\\\"stroke-width\\\",z+\\\"px\\\").attr(\\\"d\\\",e),r.attr(\\\"transform\\\",f),r.exit().remove()):r.remove()}function o(n,i){function o(t,e){t.each(function(t){var r=p(e),n=b.select(this),i=n.select(\\\".text-math-group\\\"),o=f(t)+(x(e)&&0!==+e?\\\" rotate(\\\"+e+\\\",\\\"+h(t)+\\\",\\\"+(d(t)-t.fontSize/2)+\\\")\\\":\\\"\\\");if(i.empty()){var a=n.select(\\\"text\\\").attr({transform:o,\\\"text-anchor\\\":r});a.empty()||a.selectAll(\\\"tspan.line\\\").attr({x:a.attr(\\\"x\\\"),y:a.attr(\\\"y\\\")})}else{var s=_.Drawing.bBox(i.node()).width*{end:-.5,start:.5}[r];i.attr(\\\"transform\\\",o+(s?\\\"translate(\\\"+s+\\\",0)\\\":\\\"\\\"))}})}function a(){return C.length&&Promise.all(C)}function s(){if(o(u,l.tickangle),\\\"x\\\"===v&&!x(l.tickangle)&&(\\\"log\\\"!==l.type||\\\"D\\\"!==String(l.dtick).charAt(0))){var n=[];for(u.each(function(t){var e=b.select(this),r=e.select(\\\".text-math-group\\\"),i=l.l2p(t.x);r.empty()&&(r=e.select(\\\"text\\\"));var o=_.Drawing.bBox(r.node());n.push({top:0,bottom:10,height:10,left:i-o.width/2,right:i+o.width/2+2,width:o.width+2})}),g=0;g<n.length-1;g++)if(_.Lib.bBoxIntersect(n[g],n[g+1])){E=30;break}if(E){var i=Math.abs((y[y.length-1].x-y[0].x)*l._m)/(y.length-1);2.5*T>i&&(E=90),o(u,E)}l._lastangle=E}return r||w.draw(t,e+\\\"title\\\"),e+\\\" done\\\"}function c(){l._boundingBox=n.node().getBoundingClientRect()}var u=n.selectAll(\\\"g.\\\"+M).data(y,k);if(!l.showticklabels||!x(i))return u.remove(),void w.draw(t,e+\\\"title\\\");var h,d,p,m;if(\\\"x\\\"===v){var A=\\\"bottom\\\"===R?1:-1;h=function(t){return t.dx},m=i+(S+L)*A,d=function(t){return t.dy+m+t.fontSize*(\\\"bottom\\\"===R?1:-.5)},p=function(t){return x(t)&&0!==t&&180!==t?0>t*A?\\\"end\\\":\\\"start\\\":\\\"middle\\\"}}else d=function(t){return t.dy+t.fontSize/2},h=function(t){return t.dx+i+(S+L+(90===Math.abs(l.tickangle)?t.fontSize/2:0))*(\\\"right\\\"===R?1:-1)},p=function(t){return x(t)&&90===Math.abs(t)?\\\"middle\\\":\\\"right\\\"===R?\\\"start\\\":\\\"end\\\"};var T=0,E=0,C=[];u.enter().append(\\\"g\\\").classed(M,1).append(\\\"text\\\").attr(\\\"text-anchor\\\",\\\"middle\\\").each(function(e){var r=b.select(this),n=t._promises.length;r.call(_.Drawing.setPosition,h(e),d(e)).call(_.Drawing.font,e.font,e.fontSize,e.fontColor).text(e.text).call(_.util.convertToTspans),n=t._promises[n],n?C.push(t._promises.pop().then(function(){o(r,l.tickangle)})):o(r,l.tickangle)}),u.exit().remove(),u.each(function(t){T=Math.max(T,t.fontSize)}),o(u,l._lastangle||l.tickangle);var P=_.Lib.syncOrAsync([a,s,c]);return P&&P.then&&t._promises.push(P),P}function a(t,e){return t.visible!==!0||t.xaxis+t.yaxis!==e?!1:_.Plots.traceIs(t,\\\"bar\\\")&&t.orientation==={x:\\\"h\\\",y:\\\"v\\\"}[v]?!0:t.fill&&t.fill.charAt(t.fill.length-1)===v}function s(e,r,i){var o=e.gridlayer,s=e.zerolinelayer,c=e[\\\"hidegrid\\\"+v]?[]:I,u=\\\"M0,0\\\"+(\\\"x\\\"===v?\\\"v\\\":\\\"h\\\")+r._length,h=o.selectAll(\\\"path.\\\"+T).data(l.showgrid===!1?[]:c,k);h.enter().append(\\\"path\\\").classed(T,1).classed(\\\"crisp\\\",1).attr(\\\"d\\\",u).each(function(t){l.zeroline&&(\\\"linear\\\"===l.type||\\\"-\\\"===l.type)&&Math.abs(t.x)<l.dtick/100&&b.select(this).remove()}),h.attr(\\\"transform\\\",f).call(_.Color.stroke,l.gridcolor||\\\"#ddd\\\").style(\\\"stroke-width\\\",C+\\\"px\\\"),h.exit().remove();for(var d=!1,p=0;p<t._fullData.length;p++)if(a(t._fullData[p],i)){d=!0;break}var g=l.range[0]*l.range[1]<=0&&l.zeroline&&(\\\"linear\\\"===l.type||\\\"-\\\"===l.type)&&c.length&&(d||n({x:0})||!l.showline),m=s.selectAll(\\\"path.\\\"+E).data(g?[{x:0}]:[]);m.enter().append(\\\"path\\\").classed(E,1).classed(\\\"zl\\\",1).classed(\\\"crisp\\\",1).attr(\\\"d\\\",u),m.attr(\\\"transform\\\",f).call(_.Color.stroke,l.zerolinecolor||_.Color.defaultLine).style(\\\"stroke-width\\\",P+\\\"px\\\"),m.exit().remove()}var l,c=t._fullLayout,u=!1;if(\\\"object\\\"==typeof e)l=e,e=l._id,u=!0;else if(l=A.getFromId(t,e),\\\"redraw\\\"===e&&c._paper.selectAll(\\\"g.subplot\\\").each(function(t){var e=c._plots[t],r=e.x(),n=e.y();e.plot.attr(\\\"viewBox\\\",\\\"0 0 \\\"+r._length+\\\" \\\"+n._length),e.xaxislayer.selectAll(\\\".\\\"+r._id+\\\"tick\\\").remove(),e.yaxislayer.selectAll(\\\".\\\"+n._id+\\\"tick\\\").remove(),e.gridlayer.selectAll(\\\"path\\\").remove(),e.zerolinelayer.selectAll(\\\"path\\\").remove()}),!e||\\\"redraw\\\"===e)return _.Lib.syncOrAsync(A.list(t,\\\"\\\",!0).map(function(r){return function(){if(r._id){var n=A.doTicks(t,r._id);return\\\"redraw\\\"===e&&(r._r=r.range.slice()),n}}}));l.tickformat||(-1===[\\\"none\\\",\\\"e\\\",\\\"E\\\",\\\"power\\\",\\\"SI\\\",\\\"B\\\"].indexOf(l.exponentformat)&&(l.exponentformat=\\\"e\\\"),-1===[\\\"all\\\",\\\"first\\\",\\\"last\\\",\\\"none\\\"].indexOf(l.showexponent)&&(l.showexponent=\\\"all\\\")),l.range=[+l.range[0],+l.range[1]],l.setScale();var h,f,d,p,g,v=e.charAt(0),m=A.counterLetter(e),y=A.calcTicks(l),k=function(t){return t.text+t.x+l.mirror},M=e+\\\"tick\\\",T=e+\\\"grid\\\",E=e+\\\"zl\\\",L=(l.linewidth||1)/2,S=(\\\"outside\\\"===l.ticks?l.ticklen:1)+(l.linewidth||0),C=_.Drawing.crispRound(t,l.gridwidth,1),P=_.Drawing.crispRound(t,l.zerolinewidth,C),z=_.Drawing.crispRound(t,l.tickwidth,1);if(\\\"x\\\"===v)h=[\\\"bottom\\\",\\\"top\\\"],f=function(t){return\\\"translate(\\\"+l.l2p(t.x)+\\\",0)\\\"},d=\\\"M0,\\\",p=\\\"v\\\";else{if(\\\"y\\\"!==v)return void console.log(\\\"unrecognized doTicks axis\\\",e);h=[\\\"left\\\",\\\"right\\\"],f=function(t){return\\\"translate(0,\\\"+l.l2p(t.x)+\\\")\\\"},d=\\\"M\\\",p=\\\",0h\\\"}var R=l.side||h[0],O=[-1,1,R===h[1]?1:-1];\\\"inside\\\"!==l.ticks==(\\\"x\\\"===v)&&(O=O.map(function(t){return-t}));var I=y.filter(n);if(u)return i(l._axislayer,d+(l._pos+L*O[2])+p+O[2]*l.ticklen),o(l._axislayer,l._pos);var N=A.getSubplots(t,l).map(function(t){var e=c._plots[t];if(c._hasCartesian){var r=e[v+\\\"axislayer\\\"],n=l._linepositions[t]||[],a=e[m](),u=a._id===l.anchor,f=[!1,!1,!1],y=\\\"\\\";if(\\\"allticks\\\"===l.mirror?f=[!0,!0,!1]:u&&(\\\"ticks\\\"===l.mirror?f=[!0,!0,!1]:f[h.indexOf(R)]=!0),l.mirrors)for(g=0;2>g;g++){var b=l.mirrors[a._id+h[g]];\\\"ticks\\\"!==b&&\\\"labels\\\"!==b||(f[g]=!0)}return void 0!==n[2]&&(f[2]=!0),f.forEach(function(t,e){var r=n[e],i=O[e];t&&x(r)&&(y+=d+(r+L*i)+p+i*l.ticklen)}),i(r,y),s(e,a,t),o(r,n[3])}}).filter(function(t){return t&&t.then});return N.length?Promise.all(N):0},A.swap=function(t,e){for(var r=p(t,e),n=0;n<r.length;n++)v(t,r[n].x,r[n].y)}},{\\\"../../components/titles\\\":356,\\\"../../plotly\\\":390,\\\"./axis_ids\\\":395,\\\"./layout_attributes\\\":400,\\\"./layout_defaults\\\":401,\\\"./set_convert\\\":404,d3:70,\\\"fast-isnumeric\\\":74}],394:[function(t,e,r){\\\"use strict\\\";function n(t,e){if(\\\"-\\\"===t.type){var r=t._id,n=r.charAt(0);-1!==r.indexOf(\\\"scene\\\")&&(r=n);var l=s(e,r,n);if(l){if(\\\"histogram\\\"===l.type&&n==={v:\\\"y\\\",h:\\\"x\\\"}[l.orientation||\\\"v\\\"])return void(t.type=\\\"linear\\\");if(o(l,n)){for(var c,u=i(l),h=[],f=0;f<e.length;f++)c=e[f],d.traceIs(c,\\\"box\\\")&&(c[n+\\\"axis\\\"]||n)===r&&(void 0!==c[u]?h.push(c[u][0]):void 0!==c.name?h.push(c.name):h.push(\\\"text\\\"));t.type=a(h)}else t.type=a(l[n]||[l[n+\\\"0\\\"]])}}}function i(t){return{v:\\\"x\\\",h:\\\"y\\\"}[t.orientation||\\\"v\\\"]}function o(t,e){var r=i(t);return d.traceIs(t,\\\"box\\\")&&e===r&&void 0===t[r]&&void 0===t[r+\\\"0\\\"]}function a(t){return c(t)?\\\"date\\\":u(t)?\\\"category\\\":l(t)?\\\"linear\\\":\\\"-\\\"}function s(t,e,r){for(var n=0;n<t.length;n++){var i=t[n];if((i[r+\\\"axis\\\"]||r)===e){if(o(i,r))return i;if((i[r]||[]).length||i[r+\\\"0\\\"])return i}}}function l(t){if(!t)return!1;for(var e=0;e<t.length;e++)if(h(t[e]))return!0;return!1}function c(t){for(var e,r=0,n=0,i=Math.max(1,(t.length-1)/1e3),o=0;o<t.length;o+=i)e=t[Math.round(o)],f.isDateTime(e)&&(r+=1),h(e)&&(n+=1);return r>2*n}function u(t){for(var e,r=Math.max(1,(t.length-1)/1e3),n=0,i=0,o=0;o<t.length;o+=r)e=y(t[Math.round(o)]),h(e)?n++:\\\"string\\\"==typeof e&&\\\"\\\"!==e&&\\\"None\\\"!==e&&i++;return i>2*n}var h=t(\\\"fast-isnumeric\\\"),f=t(\\\"../../lib\\\"),d=t(\\\"../plots\\\"),p=t(\\\"./layout_attributes\\\"),g=t(\\\"./tick_value_defaults\\\"),v=t(\\\"./tick_defaults\\\"),m=t(\\\"./set_convert\\\"),y=t(\\\"./clean_datum\\\"),b=t(\\\"./axis_ids\\\");e.exports=function(t,e,r,i){var o=i.letter,a=i.font||{},s=\\\"Click to enter \\\"+(i.title||o.toUpperCase()+\\\" axis\\\")+\\\" title\\\";i.name&&(e._name=i.name,e._id=b.name2id(i.name));var l=r(\\\"type\\\");\\\"-\\\"===l&&(n(e,i.data),\\\"-\\\"===e.type?e.type=\\\"linear\\\":l=t.type=e.type),m(e),r(\\\"title\\\",s),f.coerceFont(r,\\\"titlefont\\\",{family:a.family,size:Math.round(1.2*a.size),color:a.color});var c=2===(t.range||[]).length&&h(t.range[0])&&h(t.range[1]),u=r(\\\"autorange\\\",!c);u&&r(\\\"rangemode\\\");var d=r(\\\"range\\\",[-1,\\\"x\\\"===o?6:4]);d[0]===d[1]&&(e.range=[d[0]-1,d[0]+1]),f.noneOrAll(t.range,e.range,[0,1]),r(\\\"fixedrange\\\"),g(t,e,r,l),v(t,e,r,l,i);var y=f.coerce2(t,e,p,\\\"linecolor\\\"),x=f.coerce2(t,e,p,\\\"linewidth\\\"),_=r(\\\"showline\\\",!!y||!!x);_||(delete e.linecolor,delete e.linewidth),(_||e.ticks)&&r(\\\"mirror\\\");var w=f.coerce2(t,e,p,\\\"gridcolor\\\"),A=f.coerce2(t,e,p,\\\"gridwidth\\\"),k=r(\\\"showgrid\\\",i.showGrid||!!w||!!A);k||(delete e.gridcolor,delete e.gridwidth);var M=f.coerce2(t,e,p,\\\"zerolinecolor\\\"),T=f.coerce2(t,e,p,\\\"zerolinewidth\\\"),E=r(\\\"zeroline\\\",i.showGrid||!!M||!!T);return E||(delete e.zerolinecolor,delete e.zerolinewidth),e}},{\\\"../../lib\\\":373,\\\"../plots\\\":437,\\\"./axis_ids\\\":395,\\\"./clean_datum\\\":396,\\\"./layout_attributes\\\":400,\\\"./set_convert\\\":404,\\\"./tick_defaults\\\":405,\\\"./tick_value_defaults\\\":406,\\\"fast-isnumeric\\\":74}],395:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){function n(t,r){for(var n=Object.keys(t),i=/^[xyz]axis[0-9]*/,o=[],a=0;a<n.length;a++){var s=n[a];e&&s.charAt(0)!==e||i.test(s)&&o.push(r+s)}return o.sort()}var o=t._fullLayout;if(!o)return[];var a=n(o,\\\"\\\");if(r)return a;for(var s=i.getSubplotIds(o,\\\"gl3d\\\")||[],l=0;l<s.length;l++){var c=s[l];a=a.concat(n(o[c],c+\\\".\\\"))}return a}var i=t(\\\"../plots\\\"),o=t(\\\"../../lib\\\"),a=t(\\\"./constants\\\");r.id2name=function(t){if(\\\"string\\\"==typeof t&&t.match(a.AX_ID_PATTERN)){var e=t.substr(1);return\\\"1\\\"===e&&(e=\\\"\\\"),t.charAt(0)+\\\"axis\\\"+e}},r.name2id=function(t){if(t.match(a.AX_NAME_PATTERN)){var e=t.substr(5);return\\\"1\\\"===e&&(e=\\\"\\\"),t.charAt(0)+e}},r.cleanId=function(t,e){if(t.match(a.AX_ID_PATTERN)&&(!e||t.charAt(0)===e)){var r=t.substr(1).replace(/^0+/,\\\"\\\");return\\\"1\\\"===r&&(r=\\\"\\\"),t.charAt(0)+r}},r.list=function(t,e,r){return n(t,e,r).map(function(e){return o.nestedProperty(t._fullLayout,e).get()})},r.listIds=function(t,e){return n(t,e,!0).map(r.name2id)},r.getFromId=function(t,e,n){var i=t._fullLayout;return\\\"x\\\"===n?e=e.replace(/y[0-9]*/,\\\"\\\"):\\\"y\\\"===n&&(e=e.replace(/x[0-9]*/,\\\"\\\")),i[r.id2name(e)]},r.getFromTrace=function(t,e,n){var o=t._fullLayout,a=null;if(i.traceIs(e,\\\"gl3d\\\")){var s=e.scene;\\\"scene\\\"===s.substr(0,5)&&(a=o[s][n+\\\"axis\\\"])}else a=r.getFromId(t,e[n+\\\"axis\\\"]||n);return a}},{\\\"../../lib\\\":373,\\\"../plots\\\":437,\\\"./constants\\\":397}],396:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"fast-isnumeric\\\"),i=t(\\\"../../lib\\\");e.exports=function(t){try{if(\\\"object\\\"==typeof t&&null!==t&&t.getTime)return i.ms2DateTime(t);if(\\\"string\\\"!=typeof t&&!n(t))return\\\"\\\";t=t.toString().replace(/['\\\"%,$# ]/g,\\\"\\\")}catch(e){console.log(e,t)}return t}},{\\\"../../lib\\\":373,\\\"fast-isnumeric\\\":74}],397:[function(t,e,r){\\\"use strict\\\";e.exports={BADNUM:void 0,xAxisMatch:/^xaxis[0-9]*$/,yAxisMatch:/^yaxis[0-9]*$/,AX_ID_PATTERN:/^[xyz][0-9]*$/,AX_NAME_PATTERN:/^[xyz]axis[0-9]*$/,DBLCLICKDELAY:300,MINDRAG:8,MINSELECT:12,MINZOOM:20,DRAGGERSIZE:20,MAXDIST:20,YANGLE:60,HOVERARROWSIZE:6,HOVERTEXTPAD:3,HOVERFONTSIZE:13,HOVERFONT:\\\"Arial, sans-serif\\\",HOVERMINTIME:100,BENDPX:1.5}},{}],398:[function(t,e,r){\\\"use strict\\\";function n(t,e){for(var r=[],n=t.length;n>0;n--)r.push(e);return r}function i(t,e){for(var r=[],n=0;n<t.length;n++)r.push(t[n].p2c(e));return r}function o(t,e){return function(r){var n=t(r),i=e(r);return Math.sqrt(n*n+i*i)}}function a(t,e,r){if(\\\"pie\\\"===r)return void t.emit(\\\"plotly_hover\\\",{points:[e]});r||(r=\\\"xy\\\");var o=t._fullLayout,a=o._plots[r],d=Array.isArray(r)?r:[r].concat(a.overlays.map(function(t){return t.id})),p=d.map(function(e){return w.Axes.getFromId(t,e,\\\"x\\\")}),g=d.map(function(e){return w.Axes.getFromId(t,e,\\\"y\\\")}),v=e.hovermode||o.hovermode;if(-1===[\\\"x\\\",\\\"y\\\",\\\"closest\\\"].indexOf(v)||!t.calcdata||t.querySelector(\\\".zoombox\\\")||t._dragging)return f(t,e);var m,y,b,x,A,M,E,L,S,C,P,z,R=[],O=[];if(Array.isArray(e))for(v=\\\"array\\\",b=0;b<e.length;b++)A=t.calcdata[e[b].curveNumber||0],\\\"none\\\"!==A[0].trace.hoverinfo&&O.push(A);else{for(x=0;x<t.calcdata.length;x++)A=t.calcdata[x],M=A[0].trace,\\\"none\\\"!==M.hoverinfo&&-1!==d.indexOf(M.xaxis+M.yaxis)&&O.push(A);var I,N;if(e.target&&\\\"clientX\\\"in e&&\\\"clientY\\\"in e){if(k.triggerHandler(t,\\\"plotly_beforehover\\\",e)===!1)return;var j=e.target.getBoundingClientRect();if(I=e.clientX-j.left,N=e.clientY-j.top,0>I||I>j.width||0>N||N>j.height)return f(t,e)}else I=\\\"xpx\\\"in e?e.xpx:p[0]._length/2,N=\\\"ypx\\\"in e?e.ypx:g[0]._length/2;if(m=\\\"xval\\\"in e?n(d,e.xval):i(p,I),y=\\\"yval\\\"in e?n(d,e.yval):i(g,N),!_(m[0])||!_(y[0]))return console.log(\\\"Plotly.Fx.hover failed\\\",e,t),f(t,e)}var F=1/0;for(x=0;x<O.length;x++)if(A=O[x],A&&A[0]&&A[0].trace&&A[0].trace.visible===!0){if(M=A[0].trace,E=d.indexOf(M.xaxis+M.yaxis),L=v,P={cd:A,trace:M,xa:p[E],ya:g[E],name:t.data.length>1||-1!==M.hoverinfo.indexOf(\\\"name\\\")?M.name:void 0,index:!1,distance:Math.min(F,T.MAXDIST),color:w.Color.defaultLine,x0:void 0,x1:void 0,y0:void 0,y1:void 0,xLabelVal:void 0,yLabelVal:void 0,zLabelVal:void 0,text:void 0},z=R.length,\\\"array\\\"===L){var D=e[x];\\\"pointNumber\\\"in D?(P.index=D.pointNumber,L=\\\"closest\\\"):(L=\\\"\\\",\\\"xval\\\"in D&&(S=D.xval,L=\\\"x\\\"),\\\"yval\\\"in D&&(C=D.yval,L=L?\\\"closest\\\":\\\"y\\\"))}else S=m[E],C=y[E];if(M._module&&M._module.hoverPoints){var B=M._module.hoverPoints(P,S,C,L);if(B)for(var U,V=0;V<B.length;V++)U=B[V],_(U.x0)&&_(U.y0)&&R.push(s(U,v))}else console.log(\\\"unrecognized trace type in hover\\\",M);\\\"closest\\\"===v&&R.length>z&&(R.splice(0,z),F=R[0].distance)}if(0===R.length)return f(t,e);var q=\\\"y\\\"===v&&O.length>1;R.sort(function(t,e){return t.distance-e.distance});var H={hovermode:v,rotateLabels:q,bgColor:w.Color.combine(o.plot_bgcolor,o.paper_bgcolor),container:o._hoverlayer,outerContainer:o._paperdiv},G=l(R,H);c(R,q?\\\"xa\\\":\\\"ya\\\"),u(G,q);var Y=t._hoverdata,X=[];for(b=0;b<R.length;b++){var W=R[b],Z={data:W.trace._input,fullData:W.trace,curveNumber:W.trace.index,pointNumber:W.index,x:W.xVal,y:W.yVal,xaxis:W.xa,yaxis:W.ya};void 0!==W.zLabelVal&&(Z.z=W.zLabelVal),X.push(Z)}t._hoverdata=X,h(t,e,Y)&&(Y&&t.emit(\\\"plotly_unhover\\\",{points:Y}),t.emit(\\\"plotly_hover\\\",{points:t._hoverdata,xaxes:p,yaxes:g,xvals:m,yvals:y}))}function s(t,e){t.posref=\\\"y\\\"===e?(t.x0+t.x1)/2:(t.y0+t.y1)/2,t.x0=w.Lib.constrain(t.x0,0,t.xa._length),t.x1=w.Lib.constrain(t.x1,0,t.xa._length),t.y0=w.Lib.constrain(t.y0,0,t.ya._length),t.y1=w.Lib.constrain(t.y1,0,t.ya._length);var r;if(void 0!==t.xLabelVal){r=\\\"log\\\"===t.xa.type&&t.xLabelVal<=0;var n=w.Axes.tickText(t.xa,t.xa.c2l(r?-t.xLabelVal:t.xLabelVal),\\\"hover\\\");r?0===t.xLabelVal?t.xLabel=\\\"0\\\":t.xLabel=\\\"-\\\"+n.text:t.xLabel=n.text,t.xVal=t.xa.c2d(t.xLabelVal)}if(void 0!==t.yLabelVal){r=\\\"log\\\"===t.ya.type&&t.yLabelVal<=0;var i=w.Axes.tickText(t.ya,t.ya.c2l(r?-t.yLabelVal:t.yLabelVal),\\\"hover\\\");r?0===t.yLabelVal?t.yLabel=\\\"0\\\":t.yLabel=\\\"-\\\"+i.text:t.yLabel=i.text,t.yVal=t.ya.c2d(t.yLabelVal)}if(void 0!==t.zLabelVal&&(t.zLabel=String(t.zLabelVal)),void 0!==t.xerr){var o=w.Axes.tickText(t.xa,t.xa.c2l(t.xerr),\\\"hover\\\").text;void 0!==t.xerrneg?t.xLabel+=\\\" +\\\"+o+\\\" / -\\\"+w.Axes.tickText(t.xa,t.xa.c2l(t.xerrneg),\\\"hover\\\").text:t.xLabel+=\\\" &plusmn; \\\"+o,\\\"x\\\"===e&&(t.distance+=1)}if(void 0!==t.yerr){var a=w.Axes.tickText(t.ya,t.ya.c2l(t.yerr),\\\"hover\\\").text;void 0!==t.yerrneg?t.yLabel+=\\\" +\\\"+a+\\\" / -\\\"+w.Axes.tickText(t.ya,t.ya.c2l(t.yerrneg),\\\"hover\\\").text:t.yLabel+=\\\" &plusmn; \\\"+a,\\\"y\\\"===e&&(t.distance+=1)}var s=t.trace.hoverinfo;return\\\"all\\\"!==s&&(s=s.split(\\\"+\\\"),-1===s.indexOf(\\\"x\\\")&&(t.xLabel=void 0),-1===s.indexOf(\\\"y\\\")&&(t.yLabel=void 0),-1===s.indexOf(\\\"z\\\")&&(t.zLabel=void 0),-1===s.indexOf(\\\"text\\\")&&(t.text=void 0),-1===s.indexOf(\\\"name\\\")&&(t.name=void 0)),t}function l(t,e){var r,n,i=e.hovermode,o=e.rotateLabels,a=e.bgColor,s=e.container,l=e.outerContainer,c=t[0],u=c.xa,h=c.ya,f=\\\"y\\\"===i?\\\"yLabel\\\":\\\"xLabel\\\",d=c[f],p=(String(d)||\\\"\\\").split(\\\" \\\")[0],g=l.node().getBoundingClientRect(),v=g.top,m=g.width,y=g.height,_=c.distance<=T.MAXDIST&&(\\\"x\\\"===i||\\\"y\\\"===i);for(r=0;r<t.length;r++){n=t[r].trace.hoverinfo;var A=n.split(\\\"+\\\");if(-1===A.indexOf(\\\"all\\\")&&-1===A.indexOf(i)){_=!1;break}}var k=s.selectAll(\\\"g.axistext\\\").data(_?[0]:[]);k.enter().append(\\\"g\\\").classed(\\\"axistext\\\",!0),k.exit().remove(),k.each(function(){var e=b.select(this),r=e.selectAll(\\\"path\\\").data([0]),n=e.selectAll(\\\"text\\\").data([0]);r.enter().append(\\\"path\\\").style({fill:w.Color.defaultLine,\\\"stroke-width\\\":\\\"1px\\\",stroke:w.Color.background}),n.enter().append(\\\"text\\\").call(w.Drawing.font,N,I,w.Color.background).attr(\\\"data-notex\\\",1),n.text(d).call(w.util.convertToTspans).call(w.Drawing.setPosition,0,0).selectAll(\\\"tspan.line\\\").call(w.Drawing.setPosition,0,0),e.attr(\\\"transform\\\",\\\"\\\");var o=n.node().getBoundingClientRect();if(\\\"x\\\"===i){n.attr(\\\"text-anchor\\\",\\\"middle\\\").call(w.Drawing.setPosition,0,\\\"top\\\"===u.side?v-o.bottom-R-O:v-o.top+R+O).selectAll(\\\"tspan.line\\\").attr({x:n.attr(\\\"x\\\"),y:n.attr(\\\"y\\\")});var a=\\\"top\\\"===u.side?\\\"-\\\":\\\"\\\";r.attr(\\\"d\\\",\\\"M0,0L\\\"+R+\\\",\\\"+a+R+\\\"H\\\"+(O+o.width/2)+\\\"v\\\"+a+(2*O+o.height)+\\\"H-\\\"+(O+o.width/2)+\\\"V\\\"+a+R+\\\"H-\\\"+R+\\\"Z\\\"),e.attr(\\\"transform\\\",\\\"translate(\\\"+(u._offset+(c.x0+c.x1)/2)+\\\",\\\"+(h._offset+(\\\"top\\\"===u.side?0:h._length))+\\\")\\\")}else{n.attr(\\\"text-anchor\\\",\\\"right\\\"===h.side?\\\"start\\\":\\\"end\\\").call(w.Drawing.setPosition,(\\\"right\\\"===h.side?1:-1)*(O+R),v-o.top-o.height/2).selectAll(\\\"tspan.line\\\").attr({x:n.attr(\\\"x\\\"),y:n.attr(\\\"y\\\")});var s=\\\"right\\\"===h.side?\\\"\\\":\\\"-\\\";r.attr(\\\"d\\\",\\\"M0,0L\\\"+s+R+\\\",\\\"+R+\\\"V\\\"+(O+o.height/2)+\\\"h\\\"+s+(2*O+o.width)+\\\"V-\\\"+(O+o.height/2)+\\\"H\\\"+s+R+\\\"V-\\\"+R+\\\"Z\\\"),e.attr(\\\"transform\\\",\\\"translate(\\\"+(u._offset+(\\\"right\\\"===h.side?u._length:0))+\\\",\\\"+(h._offset+(c.y0+c.y1)/2)+\\\")\\\")}t=t.filter(function(t){return void 0!==t.zLabelVal||(t[f]||\\\"\\\").split(\\\" \\\")[0]===p})});var M=s.selectAll(\\\"g.hovertext\\\").data(t,function(t){return[t.trace.index,t.index,t.x0,t.y0,t.name,t.attr,t.xa,t.ya||\\\"\\\"].join(\\\",\\\")});return M.enter().append(\\\"g\\\").classed(\\\"hovertext\\\",!0).each(function(){var t=b.select(this);t.append(\\\"rect\\\").call(w.Color.fill,w.Color.addOpacity(a,.8)),t.append(\\\"text\\\").classed(\\\"name\\\",!0).call(w.Drawing.font,N,I),t.append(\\\"path\\\").style(\\\"stroke-width\\\",\\\"1px\\\"),t.append(\\\"text\\\").classed(\\\"nums\\\",!0).call(w.Drawing.font,N,I)}),M.exit().remove(),M.each(function(t){var e=b.select(this).attr(\\\"transform\\\",\\\"\\\"),r=\\\"\\\",n=\\\"\\\",s=w.Color.opacity(t.color)?t.color:w.Color.defaultLine,l=w.Color.combine(s,a),c=x(l).getBrightness()>128?\\\"#000\\\":w.Color.background;if(t.name&&void 0===t.zLabelVal){var u=document.createElement(\\\"p\\\");u.innerHTML=t.name,r=u.textContent||\\\"\\\",r.length>15&&(r=r.substr(0,12)+\\\"...\\\")}void 0!==t.zLabel?(void 0!==t.xLabel&&(n+=\\\"x: \\\"+t.xLabel+\\\"<br>\\\"),void 0!==t.yLabel&&(n+=\\\"y: \\\"+t.yLabel+\\\"<br>\\\"),n+=(n?\\\"z: \\\":\\\"\\\")+t.zLabel):_&&t[i+\\\"Label\\\"]===d?n=t[(\\\"x\\\"===i?\\\"y\\\":\\\"x\\\")+\\\"Label\\\"]||\\\"\\\":void 0===t.xLabel?void 0!==t.yLabel&&(n=t.yLabel):n=void 0===t.yLabel?t.xLabel:\\\"(\\\"+t.xLabel+\\\", \\\"+t.yLabel+\\\")\\\",t.text&&!Array.isArray(t.text)&&(n+=(n?\\\"<br>\\\":\\\"\\\")+t.text),\\\"\\\"===n&&(\\\"\\\"===r&&e.remove(),n=r);var h=e.select(\\\"text.nums\\\").style(\\\"fill\\\",c).call(w.Drawing.setPosition,0,0).text(n).attr(\\\"data-notex\\\",1).call(w.util.convertToTspans);h.selectAll(\\\"tspan.line\\\").call(w.Drawing.setPosition,0,0);var f=e.select(\\\"text.name\\\"),p=0;r&&r!==n?(f.style(\\\"fill\\\",l).text(r).call(w.Drawing.setPosition,0,0).attr(\\\"data-notex\\\",1).call(w.util.convertToTspans),f.selectAll(\\\"tspan.line\\\").call(w.Drawing.setPosition,0,0),p=f.node().getBoundingClientRect().width+2*O):(f.remove(),e.select(\\\"rect\\\").remove()),e.select(\\\"path\\\").style({fill:l,stroke:c});var g,A,k=h.node().getBoundingClientRect(),M=t.xa._offset+(t.x0+t.x1)/2,T=t.ya._offset+(t.y0+t.y1)/2,E=Math.abs(t.x1-t.x0),S=Math.abs(t.y1-t.y0),C=k.width+R+O+p;t.ty0=v-k.top,t.bx=k.width+2*O,t.by=k.height+2*O,t.anchor=\\\"start\\\",t.txwidth=k.width,t.tx2width=p,t.offset=0,o?(t.pos=M,g=y>=T+S/2+C,A=T-S/2-C>=0,\\\"top\\\"!==t.idealAlign&&g||!A?g?(T+=S/2,t.anchor=\\\"start\\\"):t.anchor=\\\"middle\\\":(T-=S/2,t.anchor=\\\"end\\\")):(t.pos=T,g=m>=M+E/2+C,A=M-E/2-C>=0,\\\"left\\\"!==t.idealAlign&&g||!A?g?(M+=E/2,t.anchor=\\\"start\\\"):t.anchor=\\\"middle\\\":(M-=E/2,t.anchor=\\\"end\\\")),h.attr(\\\"text-anchor\\\",t.anchor),p&&f.attr(\\\"text-anchor\\\",t.anchor),e.attr(\\\"transform\\\",\\\"translate(\\\"+M+\\\",\\\"+T+\\\")\\\"+(o?\\\"rotate(\\\"+L+\\\")\\\":\\\"\\\"))}),M}function c(t,e){function r(t){var e=t[0],r=t[t.length-1];if(i=e.pmin-e.pos-e.dp+e.size,o=r.pos+r.dp+r.size-e.pmax,i>.01){for(s=t.length-1;s>=0;s--)t[s].dp+=i;n=!1}if(!(.01>o)){if(-.01>i){for(s=t.length-1;s>=0;s--)t[s].dp-=o;n=!1}if(n){var c=0;for(a=0;a<t.length;a++)l=t[a],l.pos+l.dp+l.size>e.pmax&&c++;for(a=t.length-1;a>=0&&!(0>=c);a--)l=t[a],l.pos>e.pmax-1&&(l.del=!0,c--);for(a=0;a<t.length&&!(0>=c);a++)if(l=t[a],l.pos<e.pmin+1)for(l.del=!0,c--,o=2*l.size,s=t.length-1;s>=0;s--)t[s].dp-=o;for(a=t.length-1;a>=0&&!(0>=c);a--)l=t[a],l.pos+l.dp+l.size>e.pmax&&(l.del=!0,c--)}}}for(var n,i,o,a,s,l,c,u=0,h=t.map(function(t,r){var n=t[e];return[{i:r,dp:0,pos:t.pos,posref:t.posref,size:t.by*(\\\"x\\\"===n._id.charAt(0)?C:1)/2,pmin:n._offset,pmax:n._offset+n._length}]}).sort(function(t,e){return t[0].posref-e[0].posref});!n&&u<=t.length;){for(u++,n=!0,a=0;a<h.length-1;){var f=h[a],d=h[a+1],p=f[f.length-1],g=d[0];if(i=p.pos+p.dp+p.size-g.pos-g.dp+g.size,i>.01&&p.pmin===g.pmin&&p.pmax===g.pmax){for(s=d.length-1;s>=0;s--)d[s].dp+=i;for(f.push.apply(f,d),h.splice(a+1,1),c=0,s=f.length-1;s>=0;s--)c+=f[s].dp;for(o=c/f.length,s=f.length-1;s>=0;s--)f[s].dp-=o;n=!1}else a++}h.forEach(r)}for(a=h.length-1;a>=0;a--){var v=h[a];for(s=v.length-1;s>=0;s--){var m=v[s],y=t[m.i];y.offset=m.dp,y.del=m.del}}}function u(t,e){t.each(function(t){var r=b.select(this);if(t.del)return void r.remove();var n=\\\"end\\\"===t.anchor?-1:1,i=r.select(\\\"text.nums\\\"),o={start:1,end:-1,middle:0}[t.anchor],a=o*(R+O),s=a+o*(t.txwidth+O),l=0,c=t.offset;\\\"middle\\\"===t.anchor&&(a-=t.tx2width/2,s-=t.tx2width/2),e&&(c*=-z,l=t.offset*P),r.select(\\\"path\\\").attr(\\\"d\\\",\\\"middle\\\"===t.anchor?\\\"M-\\\"+t.bx/2+\\\",-\\\"+t.by/2+\\\"h\\\"+t.bx+\\\"v\\\"+t.by+\\\"h-\\\"+t.bx+\\\"Z\\\":\\\"M0,0L\\\"+(n*R+l)+\\\",\\\"+(R+c)+\\\"v\\\"+(t.by/2-R)+\\\"h\\\"+n*t.bx+\\\"v-\\\"+t.by+\\\"H\\\"+(n*R+l)+\\\"V\\\"+(c-R)+\\\"Z\\\"),i.call(w.Drawing.setPosition,a+l,c+t.ty0-t.by/2+O).selectAll(\\\"tspan.line\\\").attr({x:i.attr(\\\"x\\\"),y:i.attr(\\\"y\\\")}),t.tx2width&&(r.select(\\\"text.name, text.name tspan.line\\\").call(w.Drawing.setPosition,s+o*O+l,c+t.ty0-t.by/2+O),r.select(\\\"rect\\\").call(w.Drawing.setRect,s+(o-1)*t.tx2width/2+l,c-t.by/2-1,t.tx2width,t.by+2))})}function h(t,e,r){if(!e.target)return!1;if(!r||r.length!==t._hoverdata.length)return!0;for(var n=r.length-1;n>=0;n--){var i=r[n],o=t._hoverdata[n];if(i.curveNumber!==o.curveNumber||String(i.pointNumber)!==String(o.pointNumber))return!0}return!1}function f(t,e){var r=t._fullLayout;e||(e={}),e.target&&k.triggerHandler(t,\\\"plotly_beforehover\\\",e)===!1||(r._hoverlayer.selectAll(\\\"g\\\").remove(),\\n\",\n       \"e.target&&t._hoverdata&&t.emit(\\\"plotly_unhover\\\",{points:t._hoverdata}),t._hoverdata=void 0)}function d(t,e){return t?\\\"nsew\\\"===t?\\\"pan\\\"===e?\\\"move\\\":\\\"crosshair\\\":t.toLowerCase()+\\\"-resize\\\":\\\"pointer\\\"}function p(t,e,r,n,i,o,a,s){function l(t,e){for(C=0;C<t.length;C++)if(!t[C].fixedrange)return e;return\\\"\\\"}function c(t){t[0]=Number(t[0]),t[1]=Number(t[1])}function u(r,n,i){var o=W.getBoundingClientRect();for($=n-o.left,K=i-o.top,Q={l:$,r:$,w:0,t:K,b:K,h:0},J=t._hmpixcount?t._hmlumcount/t._hmpixcount:x(t._fullLayout.plot_bgcolor).getLuminance(),tt=tt=\\\"M0,0H\\\"+F+\\\"V\\\"+D+\\\"H0V0\\\",et=!1,rt=\\\"xy\\\",nt=e.plot.append(\\\"path\\\").attr(\\\"class\\\",\\\"zoombox\\\").style({fill:J>.2?\\\"rgba(0,0,0,0)\\\":\\\"rgba(255,255,255,0)\\\",\\\"stroke-width\\\":0}).attr(\\\"d\\\",tt+\\\"Z\\\"),it=e.plot.append(\\\"path\\\").attr(\\\"class\\\",\\\"zoombox-corners\\\").style({fill:w.Color.background,stroke:w.Color.defaultLine,\\\"stroke-width\\\":1,opacity:0}).attr(\\\"d\\\",\\\"M0,0Z\\\"),h(),C=0;C<V.length;C++)c(V[C].range)}function h(){e.plot.selectAll(\\\".select-outline\\\").remove()}function f(t,e){var r=Math.max(0,Math.min(F,t+$)),n=Math.max(0,Math.min(D,e+K)),i=Math.abs(r-$),o=Math.abs(n-K),a=Math.floor(Math.min(o,i,U)/2);Q.l=Math.min($,r),Q.r=Math.max($,r),Q.t=Math.min(K,n),Q.b=Math.max(K,n),!H||o<Math.min(Math.max(.6*i,B),U)?B>i?(rt=\\\"\\\",Q.r=Q.l,Q.t=Q.b,it.attr(\\\"d\\\",\\\"M0,0Z\\\")):(Q.t=0,Q.b=D,rt=\\\"x\\\",it.attr(\\\"d\\\",\\\"M\\\"+(Q.l-.5)+\\\",\\\"+(K-U-.5)+\\\"h-3v\\\"+(2*U+1)+\\\"h3ZM\\\"+(Q.r+.5)+\\\",\\\"+(K-U-.5)+\\\"h3v\\\"+(2*U+1)+\\\"h-3Z\\\")):!q||i<Math.min(.6*o,U)?(Q.l=0,Q.r=F,rt=\\\"y\\\",it.attr(\\\"d\\\",\\\"M\\\"+($-U-.5)+\\\",\\\"+(Q.t-.5)+\\\"v-3h\\\"+(2*U+1)+\\\"v3ZM\\\"+($-U-.5)+\\\",\\\"+(Q.b+.5)+\\\"v3h\\\"+(2*U+1)+\\\"v-3Z\\\")):(rt=\\\"xy\\\",it.attr(\\\"d\\\",\\\"M\\\"+(Q.l-3.5)+\\\",\\\"+(Q.t-.5+a)+\\\"h3v\\\"+-a+\\\"h\\\"+a+\\\"v-3h-\\\"+(a+3)+\\\"ZM\\\"+(Q.r+3.5)+\\\",\\\"+(Q.t-.5+a)+\\\"h-3v\\\"+-a+\\\"h\\\"+-a+\\\"v-3h\\\"+(a+3)+\\\"ZM\\\"+(Q.r+3.5)+\\\",\\\"+(Q.b+.5-a)+\\\"h-3v\\\"+a+\\\"h\\\"+-a+\\\"v3h\\\"+(a+3)+\\\"ZM\\\"+(Q.l-3.5)+\\\",\\\"+(Q.b+.5-a)+\\\"h3v\\\"+a+\\\"h\\\"+a+\\\"v3h-\\\"+(a+3)+\\\"Z\\\")),Q.w=Q.r-Q.l,Q.h=Q.b-Q.t,nt.attr(\\\"d\\\",tt+\\\"M\\\"+Q.l+\\\",\\\"+Q.t+\\\"v\\\"+Q.h+\\\"h\\\"+Q.w+\\\"v-\\\"+Q.h+\\\"h-\\\"+Q.w+\\\"Z\\\"),et||(nt.transition().style(\\\"fill\\\",J>.2?\\\"rgba(0,0,0,0.4)\\\":\\\"rgba(255,255,255,0.3)\\\").duration(200),it.transition().style(\\\"opacity\\\",1).duration(200),et=!0)}function p(t,e,r){var n,i,o;for(n=0;n<t.length;n++)i=t[n],i.fixedrange||(o=i.range,i.range=[o[0]+(o[1]-o[0])*e,o[0]+(o[1]-o[0])*r])}function v(e,r){return Math.min(Q.h,Q.w)<2*B?(2===r&&k(),m(t)):(\\\"xy\\\"!==rt&&\\\"x\\\"!==rt||p(I,Q.l/F,Q.r/F),\\\"xy\\\"!==rt&&\\\"y\\\"!==rt||p(N,(D-Q.b)/D,(D-Q.t)/D),m(t),L(rt),void(j&&t.data&&t._context.showTips&&(w.Lib.notifier(\\\"Double-click to<br>zoom back out\\\",\\\"long\\\"),j=!1)))}function y(e,r){var n=1===(a+s).length;if(e)L();else if(2!==r||n){if(1===r&&n){var i=a?N[0]:I[0],o=\\\"s\\\"===a||\\\"w\\\"===s?0:1,l=i._name+\\\".range[\\\"+o+\\\"]\\\",c=g(i,o),u=\\\"left\\\",h=\\\"middle\\\";if(i.fixedrange)return;a?(h=\\\"n\\\"===a?\\\"top\\\":\\\"bottom\\\",\\\"right\\\"===i.side&&(u=\\\"right\\\")):\\\"e\\\"===s&&(u=\\\"right\\\"),X.call(w.util.makeEditable,null,{immediate:!0,background:R.paper_bgcolor,text:String(c),fill:i.tickfont?i.tickfont.color:\\\"#444\\\",horizontalAlign:u,verticalAlign:h}).on(\\\"edit\\\",function(e){var r=\\\"category\\\"===i.type?i.c2l(e):i.d2l(e);void 0!==r&&w.relayout(t,l,r)})}}else k()}function b(e){function r(t,e,r){if(!t.fixedrange){c(t.range);var n=t.range,i=n[0]+(n[1]-n[0])*e;t.range=[i+(n[0]-i)*r,i+(n[1]-i)*r]}}if(t._context.scrollZoom||R._enablescrollzoom){var n=t.querySelector(\\\".plotly\\\");if(!(n.scrollHeight-n.clientHeight>10||n.scrollWidth-n.clientWidth>10)){clearTimeout(at);var i=-e.deltaY;if(isFinite(i)||(i=e.wheelDelta/10),!isFinite(i))return void console.log(\\\"did not find wheel motion attributes\\\",e);var o,l=Math.exp(-Math.min(Math.max(i,-20),20)/100),u=lt.draglayer.select(\\\".nsewdrag\\\").node().getBoundingClientRect(),h=(e.clientX-u.left)/u.width,f=ot[0]+ot[2]*h,d=(u.bottom-e.clientY)/u.height,p=ot[1]+ot[3]*(1-d);if(s){for(o=0;o<I.length;o++)r(I[o],h,l);ot[2]*=l,ot[0]=f-ot[2]*h}if(a){for(o=0;o<N.length;o++)r(N[o],d,l);ot[3]*=l,ot[1]=p-ot[3]*(1-d)}return S(ot),A(a,s),at=setTimeout(function(){ot=[0,0,F,D],L()},st),w.Lib.pauseEvent(e)}}}function _(t,e){function r(t,e){for(var r=0;r<t.length;r++){var n=t[r];n.fixedrange||(n.range=[n._r[0]-e/n._m,n._r[1]-e/n._m])}}function n(t){return 1-(t>=0?Math.min(t,.9):1/(1/Math.max(t,-.3)+3.222))}function i(t,e,r){for(var i=1-e,o=0,a=0;a<t.length;a++){var s=t[a];s.fixedrange||(o=a,s.range[e]=s._r[i]+(s._r[e]-s._r[i])/n(r/s._length))}return t[o]._length*(t[o]._r[e]-t[o].range[e])/(t[o]._r[e]-t[o]._r[i])}return\\\"ew\\\"===q||\\\"ns\\\"===H?(q&&r(I,t),H&&r(N,e),S([q?-t:0,H?-e:0,F,D]),void A(H,q)):(\\\"w\\\"===q?t=i(I,0,t):\\\"e\\\"===q?t=i(I,1,-t):q||(t=0),\\\"n\\\"===H?e=i(N,1,e):\\\"s\\\"===H?e=i(N,0,-e):H||(e=0),S([\\\"w\\\"===q?t:0,\\\"n\\\"===H?e:0,F-t,D-e]),void A(H,q))}function A(e,r){function n(t){for(o=0;o<t.length;o++)t[o].fixedrange||a.push(t[o]._id)}function i(n,i){var s;for(o=0;o<n.length;o++)s=n[o],(r&&-1!==a.indexOf(s.xref)||e&&-1!==a.indexOf(s.yref))&&i.draw(t,o)}var o,a=[];for(r&&n(I),e&&n(N),o=0;o<a.length;o++)w.Axes.doTicks(t,a[o],!0);i(R.annotations||[],w.Annotations),i(R.shapes||[],w.Shapes)}function k(){var e,r,n=t._context.doubleClick,i=(q?I:[]).concat(H?N:[]),o={};if(\\\"autosize\\\"===n)for(r=0;r<i.length;r++)e=i[r],e.fixedrange||(o[e._name+\\\".autorange\\\"]=!0);else if(\\\"reset\\\"===n)for(r=0;r<i.length;r++)e=i[r],e._rangeInitial?o[e._name+\\\".range\\\"]=e._rangeInitial.slice():o[e._name+\\\".autorange\\\"]=!0;else if(\\\"reset+autosize\\\"===n)for(r=0;r<i.length;r++)e=i[r],e.fixedrange||(void 0===e._rangeInitial||e.range[0]===e._rangeInitial[0]&&e.range[1]===e._rangeInitial[1]?o[e._name+\\\".autorange\\\"]=!0:o[e._name+\\\".range\\\"]=e._rangeInitial.slice());t.emit(\\\"plotly_doubleclick\\\",null),w.relayout(t,o)}function L(e){for(var r={},n=0;n<V.length;n++){var i=V[n];e&&-1===e.indexOf(i._id.charAt(0))||(i._r[0]!==i.range[0]&&(r[i._name+\\\".range[0]\\\"]=i.range[0]),i._r[1]!==i.range[1]&&(r[i._name+\\\".range[1]\\\"]=i.range[1]),i.range=i._r.slice())}S([0,0,F,D]),w.relayout(t,r)}function S(t){var e,r,n,i,o,l,c=R._plots,u=Object.keys(c);for(e=0;e<u.length;e++)if(r=c[u[e]],n=r.x(),i=r.y(),o=s&&-1!==I.indexOf(n)&&!n.fixedrange,l=a&&-1!==N.indexOf(i)&&!i.fixedrange,o||l){var h=[0,0,n._length,i._length];o&&(h[0]=t[0],h[2]=t[2]),l&&(h[1]=t[1],h[3]=t[3]),r.plot.attr(\\\"viewBox\\\",h.join(\\\" \\\"))}}var C,P,z,R=t._fullLayout,O=[e].concat(a&&s?e.overlays:[]),I=[e.x()],N=[e.y()],F=I[0]._length,D=N[0]._length,B=T.MINDRAG,U=T.MINZOOM;for(C=1;C<O.length;C++)P=O[C].x(),z=O[C].y(),-1===I.indexOf(P)&&I.push(P),-1===N.indexOf(z)&&N.push(z);var V=I.concat(N),q=l(I,s),H=l(N,a),G=d(H+q,R.dragmode),Y=a+s+\\\"drag\\\",X=e.draglayer.selectAll(\\\".\\\"+Y).data([0]);X.enter().append(\\\"rect\\\").classed(\\\"drag\\\",!0).classed(Y,!0).style({fill:\\\"transparent\\\",\\\"stroke-width\\\":0}).attr(\\\"data-subplot\\\",e.id),X.call(w.Drawing.setRect,r,n,i,o).call(E.setCursor,G);var W=X.node();if(!H&&!q)return W.onmousedown=null,W.style.pointerEvents=a+s===\\\"nsew\\\"?\\\"all\\\":\\\"none\\\",W;var Z={element:W,gd:t,plotinfo:e,xaxes:I,yaxes:N,doubleclick:k,prepFn:function(e,r,n){var i=t._fullLayout.dragmode;a+s===\\\"nsew\\\"?e.shiftKey&&(i=\\\"pan\\\"===i?\\\"zoom\\\":\\\"pan\\\"):i=\\\"pan\\\",\\\"lasso\\\"===i?Z.minDrag=1:Z.minDrag=void 0,\\\"zoom\\\"===i?(Z.moveFn=f,Z.doneFn=v,u(e,r,n)):\\\"pan\\\"===i?(Z.moveFn=_,Z.doneFn=y,h()):\\\"select\\\"!==i&&\\\"lasso\\\"!==i||M(e,r,n,Z,i)}};E.dragElement(Z);var $,K,Q,J,tt,et,rt,nt,it,ot=[0,0,F,D],at=null,st=300,lt=e.mainplot?R._plots[e.mainplot]:e;return a.length*s.length!==1&&(void 0!==W.onwheel?W.onwheel=b:void 0!==W.onmousewheel&&(W.onmousewheel=b)),W}function g(t,e){var r,n=t.range[e],i=Math.abs(n-t.range[1-e]);return\\\"date\\\"===t.type?w.Lib.ms2DateTime(n,i):\\\"log\\\"===t.type?(r=Math.ceil(Math.max(0,-Math.log(i)/Math.LN10))+3,b.format(\\\".\\\"+r+\\\"g\\\")(Math.pow(10,n))):(r=Math.floor(Math.log(Math.abs(n))/Math.LN10)-Math.floor(Math.log(i)/Math.LN10)+4,b.format(\\\".\\\"+String(r)+\\\"g\\\")(n))}function v(t){t._dragging=!1,t._replotPending&&w.plot(t)}function m(t){b.select(t).selectAll(\\\".zoombox,.js-zoombox-backdrop,.js-zoombox-menu,.zoombox-corners\\\").remove()}function y(){var t=document.createElement(\\\"div\\\");t.className=\\\"dragcover\\\";var e=t.style;return e.position=\\\"fixed\\\",e.left=0,e.right=0,e.top=0,e.bottom=0,e.zIndex=999999999,e.background=\\\"none\\\",document.body.appendChild(t),t}var b=t(\\\"d3\\\"),x=t(\\\"tinycolor2\\\"),_=t(\\\"fast-isnumeric\\\"),w=t(\\\"../../plotly\\\"),A=t(\\\"../../lib\\\"),k=t(\\\"../../lib/events\\\"),M=t(\\\"./select\\\"),T=t(\\\"./constants\\\"),E=e.exports={};E.layoutAttributes={dragmode:{valType:\\\"enumerated\\\",values:[\\\"zoom\\\",\\\"pan\\\",\\\"select\\\",\\\"lasso\\\",\\\"orbit\\\",\\\"turntable\\\"],dflt:\\\"zoom\\\"},hovermode:{valType:\\\"enumerated\\\",values:[\\\"x\\\",\\\"y\\\",\\\"closest\\\",!1]}},E.supplyLayoutDefaults=function(t,e,r){function n(r,n){return A.coerce(t,e,E.layoutAttributes,r,n)}n(\\\"dragmode\\\");var i;if(e._hasCartesian){var o=e._isHoriz=E.isHoriz(r);i=o?\\\"y\\\":\\\"x\\\"}else i=\\\"closest\\\";n(\\\"hovermode\\\",i)},E.isHoriz=function(t){for(var e=!0,r=0;r<t.length;r++){var n=t[r];if(\\\"h\\\"!==n.orientation){e=!1;break}}return e},E.init=function(t){var e=t._fullLayout;if(e._hasCartesian&&!t._context.staticPlot){var r=Object.keys(e._plots||{}).sort(function(t,r){if((e._plots[t].mainplot&&!0)===(e._plots[r].mainplot&&!0)){var n=t.split(\\\"y\\\"),i=r.split(\\\"y\\\");return n[0]===i[0]?Number(n[1]||1)-Number(i[1]||1):Number(n[0]||1)-Number(i[0]||1)}return e._plots[t].mainplot?1:-1});r.forEach(function(r){var n=e._plots[r];if(e._hasCartesian){var i=n.x(),o=n.y(),a=(i._linepositions[r]||[])[3],s=(o._linepositions[r]||[])[3],l=T.DRAGGERSIZE;if(_(a)&&\\\"top\\\"===i.side&&(a-=l),_(s)&&\\\"right\\\"!==o.side&&(s-=l),!n.mainplot){var c=p(t,n,0,0,i._length,o._length,\\\"ns\\\",\\\"ew\\\");c.onmousemove=function(n){E.hover(t,n,r),e._lasthover=c,e._hoversubplot=r},c.onmouseout=function(e){t._dragging||E.unhover(t,e)},c.onclick=function(e){E.click(t,e)},p(t,n,-l,-l,l,l,\\\"n\\\",\\\"w\\\"),p(t,n,i._length,-l,l,l,\\\"n\\\",\\\"e\\\"),p(t,n,-l,o._length,l,l,\\\"s\\\",\\\"w\\\"),p(t,n,i._length,o._length,l,l,\\\"s\\\",\\\"e\\\")}_(a)&&(\\\"free\\\"===i.anchor&&(a-=e._size.h*(1-o.domain[1])),p(t,n,.1*i._length,a,.8*i._length,l,\\\"\\\",\\\"ew\\\"),p(t,n,0,a,.1*i._length,l,\\\"\\\",\\\"w\\\"),p(t,n,.9*i._length,a,.1*i._length,l,\\\"\\\",\\\"e\\\")),_(s)&&(\\\"free\\\"===o.anchor&&(s-=e._size.w*i.domain[0]),p(t,n,s,.1*o._length,l,.8*o._length,\\\"ns\\\",\\\"\\\"),p(t,n,s,.9*o._length,l,.1*o._length,\\\"s\\\",\\\"\\\"),p(t,n,s,0,l,.1*o._length,\\\"n\\\",\\\"\\\"))}});var n=e._hoverlayer.node();n.onmousemove=function(r){r.target=e._lasthover,E.hover(t,r,e._hoversubplot)},n.onclick=function(r){r.target=e._lasthover,E.click(t,r)},n.onmousedown=function(t){e._lasthover.onmousedown(t)}}};var L=T.YANGLE,S=Math.PI*L/180,C=1/Math.sin(S),P=Math.cos(S),z=Math.sin(S),R=T.HOVERARROWSIZE,O=T.HOVERTEXTPAD,I=T.HOVERFONTSIZE,N=T.HOVERFONT;E.hover=function(t,e,r){return\\\"string\\\"==typeof t&&(t=document.getElementById(t)),void 0===t._lastHoverTime&&(t._lastHoverTime=0),void 0!==t._hoverTimer&&(clearTimeout(t._hoverTimer),t._hoverTimer=void 0),Date.now()>t._lastHoverTime+T.HOVERMINTIME?(a(t,e,r),void(t._lastHoverTime=Date.now())):void(t._hoverTimer=setTimeout(function(){a(t,e,r),t._lastHoverTime=Date.now(),t._hoverTimer=void 0},T.HOVERMINTIME))},E.unhover=function(t,e,r){\\\"string\\\"==typeof t&&(t=document.getElementById(t)),t._hoverTimer&&(clearTimeout(t._hoverTimer),t._hoverTimer=void 0),f(t,e,r)},E.getDistanceFunction=function(t,e,r,n){return\\\"closest\\\"===t?n||o(e,r):\\\"x\\\"===t?e:r},E.getClosest=function(t,e,r){if(r.index!==!1)r.index>=0&&r.index<t.length?r.distance=0:r.index=!1;else for(var n=0;n<t.length;n++){var i=e(t[n]);i<r.distance&&(r.index=n,r.distance=i)}return r},E.loneHover=function(t,e){var r={color:t.color||w.Color.defaultLine,x0:t.x0||t.x||0,x1:t.x1||t.x||0,y0:t.y0||t.y||0,y1:t.y1||t.y||0,xLabel:t.xLabel,yLabel:t.yLabel,zLabel:t.zLabel,text:t.text,name:t.name,idealAlign:t.idealAlign,trace:{index:0,hoverinfo:\\\"\\\"},xa:{_offset:0},ya:{_offset:0},index:0},n=b.select(e.container),i=e.outerContainer?b.select(e.outerContainer):n,o={hovermode:\\\"closest\\\",rotateLabels:!1,bgColor:e.bgColor||w.Color.background,container:n,outerContainer:i},a=l([r],o);return u(a,o.rotateLabels),a.node()},E.loneUnhover=function(t){var e=t instanceof b.selection?t:b.select(t);e.selectAll(\\\"g.hovertext\\\").remove()},E.click=function(t,e){t._hoverdata&&e&&e.target&&(t.emit(\\\"plotly_click\\\",{points:t._hoverdata}),e.stopImmediatePropagation&&e.stopImmediatePropagation())};var j=!0;E.dragAlign=function(t,e,r,n,i){var o=(t-r)/(n-r),a=o+e/(n-r),s=(o+a)/2;return\\\"left\\\"===i||\\\"bottom\\\"===i?o:\\\"center\\\"===i||\\\"middle\\\"===i?s:\\\"right\\\"===i||\\\"top\\\"===i?a:2/3-s>o?o:a>4/3-s?a:s};var F=[[\\\"sw-resize\\\",\\\"s-resize\\\",\\\"se-resize\\\"],[\\\"w-resize\\\",\\\"move\\\",\\\"e-resize\\\"],[\\\"nw-resize\\\",\\\"n-resize\\\",\\\"ne-resize\\\"]];E.dragCursors=function(t,e,r,n){return t=\\\"left\\\"===r?0:\\\"center\\\"===r?1:\\\"right\\\"===r?2:w.Lib.constrain(Math.floor(3*t),0,2),e=\\\"bottom\\\"===n?0:\\\"middle\\\"===n?1:\\\"top\\\"===n?2:w.Lib.constrain(Math.floor(3*e),0,2),F[e][t]},E.dragElement=function(t){function e(e){return c._dragged=!1,c._dragging=!0,i=e.clientX,o=e.clientY,l=e.target,a=(new Date).getTime(),a-c._mouseDownTime<h?u+=1:(u=1,c._mouseDownTime=a),t.prepFn&&t.prepFn(e,i,o),s=y(),s.onmousemove=r,s.onmouseup=n,s.onmouseout=n,s.style.cursor=window.getComputedStyle(t.element).cursor,w.Lib.pauseEvent(e)}function r(e){var r=e.clientX-i,n=e.clientY-o,a=t.minDrag||T.MINDRAG;return Math.abs(r)<a&&(r=0),Math.abs(n)<a&&(n=0),(r||n)&&(c._dragged=!0,E.unhover(c)),t.moveFn&&t.moveFn(r,n,c._dragged),w.Lib.pauseEvent(e)}function n(e){if(s.onmousemove=null,s.onmouseup=null,s.onmouseout=null,w.Lib.removeElement(s),!c._dragging)return void(c._dragged=!1);if(c._dragging=!1,(new Date).getTime()-c._mouseDownTime>h&&(u=Math.max(u-1,1)),t.doneFn&&t.doneFn(c._dragged,u),!c._dragged){var r=document.createEvent(\\\"MouseEvents\\\");r.initEvent(\\\"click\\\",!0,!0),l.dispatchEvent(r)}return v(c),c._dragged=!1,w.Lib.pauseEvent(e)}var i,o,a,s,l,c=w.Lib.getPlotDiv(t.element)||{},u=1,h=T.DBLCLICKDELAY;c._mouseDownTime||(c._mouseDownTime=0),t.element.onmousedown=e,t.element.style.pointerEvents=\\\"all\\\"},E.setCursor=function(t,e){(t.attr(\\\"class\\\")||\\\"\\\").split(\\\" \\\").forEach(function(e){0===e.indexOf(\\\"cursor-\\\")&&t.classed(e,!1)}),e&&t.classed(\\\"cursor-\\\"+e,!0)},E.inbox=function(t,e){return 0>t*e||0===t?T.MAXDIST*(.6-.3/Math.max(3,Math.abs(t-e))):1/0}},{\\\"../../lib\\\":373,\\\"../../lib/events\\\":368,\\\"../../plotly\\\":390,\\\"./constants\\\":397,\\\"./select\\\":403,d3:70,\\\"fast-isnumeric\\\":74,tinycolor2:231}],399:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../lib\\\"),i=t(\\\"../plots\\\");r.name=\\\"cartesian\\\",r.attr=[\\\"xaxis\\\",\\\"yaxis\\\"],r.idRoot=[\\\"x\\\",\\\"y\\\"],r.attributes=t(\\\"./attributes\\\"),r.idRegex={x:/^x([2-9]|[1-9][0-9]+)?$/,y:/^y([2-9]|[1-9][0-9]+)?$/},r.attrRegex={x:/^xaxis([2-9]|[1-9][0-9]+)?$/,y:/^yaxis([2-9]|[1-9][0-9]+)?$/},r.plot=function(t){function e(t,e){for(var r=[],n=0;n<t.length;n++){var i=t[n],o=i[0].trace;o.xaxis+o.yaxis===e&&r.push(i)}return r}function r(t,e){for(var r=[],n=0;n<t.length;n++){var i=t[n],o=i[0].trace;o._module===e&&o.visible===!0&&r.push(i)}return r}for(var o=t._fullLayout,a=i.getSubplotIds(o,\\\"cartesian\\\"),s=t.calcdata,l=t._modules,c=0;c<a.length;c++){var u=a[c],h=o._plots[u],f=e(s,u);h.plot&&h.plot.selectAll(\\\"g.trace\\\").remove();for(var d=0;d<l.length;d++){var p=l[d];if(\\\"cartesian\\\"===p.basePlotModule.name&&\\\"pie\\\"!==p.name){var g=r(f,p);p.plot(t,h,g),n.markTime(\\\"done \\\"+(g[0]&&g[0][0].trace.type))}}}if(o._hasPie){var v=i.getModule(\\\"pie\\\"),m=r(s,v);m.length&&v.plot(t,m)}},r.clean=function(t,e,r,n){n._hasPie&&!e._hasPie&&n._pielayer.selectAll(\\\"g.trace\\\").remove()}},{\\\"../../lib\\\":373,\\\"../plots\\\":437,\\\"./attributes\\\":392}],400:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"./index\\\"),i=t(\\\"../font_attributes\\\"),o=t(\\\"../../components/color/attributes\\\"),a=t(\\\"../../lib/extend\\\").extendFlat,s=t(\\\"../../components/rangeslider/attributes\\\"),l=t(\\\"../../components/rangeselector/attributes\\\");e.exports={title:{valType:\\\"string\\\"},titlefont:a({},i,{}),type:{valType:\\\"enumerated\\\",values:[\\\"-\\\",\\\"linear\\\",\\\"log\\\",\\\"date\\\",\\\"category\\\"],dflt:\\\"-\\\"},autorange:{valType:\\\"enumerated\\\",values:[!0,!1,\\\"reversed\\\"],dflt:!0},rangemode:{valType:\\\"enumerated\\\",values:[\\\"normal\\\",\\\"tozero\\\",\\\"nonnegative\\\"],dflt:\\\"normal\\\"},range:{valType:\\\"info_array\\\",items:[{valType:\\\"number\\\"},{valType:\\\"number\\\"}]},rangeslider:s,rangeselector:l,fixedrange:{valType:\\\"boolean\\\",dflt:!1},tickmode:{valType:\\\"enumerated\\\",values:[\\\"auto\\\",\\\"linear\\\",\\\"array\\\"]},nticks:{valType:\\\"integer\\\",min:0,dflt:0},tick0:{valType:\\\"number\\\",dflt:0},dtick:{valType:\\\"any\\\",dflt:1},tickvals:{valType:\\\"data_array\\\"},ticktext:{valType:\\\"data_array\\\"},ticks:{valType:\\\"enumerated\\\",values:[\\\"outside\\\",\\\"inside\\\",\\\"\\\"]},mirror:{valType:\\\"enumerated\\\",values:[!0,\\\"ticks\\\",!1,\\\"all\\\",\\\"allticks\\\"],dflt:!1},ticklen:{valType:\\\"number\\\",min:0,dflt:5},tickwidth:{valType:\\\"number\\\",min:0,dflt:1},tickcolor:{valType:\\\"color\\\",dflt:o.defaultLine},showticklabels:{valType:\\\"boolean\\\",dflt:!0},tickfont:a({},i,{}),tickangle:{valType:\\\"angle\\\",dflt:\\\"auto\\\"},tickprefix:{valType:\\\"string\\\",dflt:\\\"\\\"},showtickprefix:{valType:\\\"enumerated\\\",values:[\\\"all\\\",\\\"first\\\",\\\"last\\\",\\\"none\\\"],dflt:\\\"all\\\"},ticksuffix:{valType:\\\"string\\\",dflt:\\\"\\\"},showticksuffix:{valType:\\\"enumerated\\\",values:[\\\"all\\\",\\\"first\\\",\\\"last\\\",\\\"none\\\"],dflt:\\\"all\\\"},showexponent:{valType:\\\"enumerated\\\",values:[\\\"all\\\",\\\"first\\\",\\\"last\\\",\\\"none\\\"],dflt:\\\"all\\\"},exponentformat:{valType:\\\"enumerated\\\",values:[\\\"none\\\",\\\"e\\\",\\\"E\\\",\\\"power\\\",\\\"SI\\\",\\\"B\\\"],dflt:\\\"B\\\"},tickformat:{valType:\\\"string\\\",dflt:\\\"\\\"},hoverformat:{valType:\\\"string\\\",dflt:\\\"\\\"},showline:{valType:\\\"boolean\\\",dflt:!1},linecolor:{valType:\\\"color\\\",dflt:o.defaultLine},linewidth:{valType:\\\"number\\\",min:0,dflt:1},showgrid:{valType:\\\"boolean\\\"},gridcolor:{valType:\\\"color\\\",dflt:o.lightLine},gridwidth:{valType:\\\"number\\\",min:0,dflt:1},zeroline:{valType:\\\"boolean\\\"},zerolinecolor:{valType:\\\"color\\\",dflt:o.defaultLine},zerolinewidth:{valType:\\\"number\\\",dflt:1},anchor:{valType:\\\"enumerated\\\",values:[\\\"free\\\",n.idRegex.x.toString(),n.idRegex.y.toString()]},side:{valType:\\\"enumerated\\\",values:[\\\"top\\\",\\\"bottom\\\",\\\"left\\\",\\\"right\\\"]},overlaying:{valType:\\\"enumerated\\\",values:[\\\"free\\\",n.idRegex.x.toString(),n.idRegex.y.toString()]},domain:{valType:\\\"info_array\\\",items:[{valType:\\\"number\\\",min:0,max:1},{valType:\\\"number\\\",min:0,max:1}],dflt:[0,1]},position:{valType:\\\"number\\\",min:0,max:1,dflt:0},_deprecated:{autotick:{valType:\\\"boolean\\\"}}}},{\\\"../../components/color/attributes\\\":300,\\\"../../components/rangeselector/attributes\\\":340,\\\"../../components/rangeslider/attributes\\\":347,\\\"../../lib/extend\\\":369,\\\"../font_attributes\\\":407,\\\"./index\\\":399}],401:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../lib\\\"),i=t(\\\"../plots\\\"),o=t(\\\"../../components/rangeslider\\\"),a=t(\\\"../../components/rangeselector\\\"),s=t(\\\"./constants\\\"),l=t(\\\"./layout_attributes\\\"),c=t(\\\"./axis_defaults\\\"),u=t(\\\"./position_defaults\\\"),h=t(\\\"./axis_ids\\\");e.exports=function(t,e,r){function f(t,e){var r=Number(t.substr(5)||1),n=Number(e.substr(5)||1);return r-n}var d,p=Object.keys(t),g=[],v=[],m=[],y=[],b={},x={};for(d=0;d<r.length;d++){var _,w,A=r[d];if(i.traceIs(A,\\\"cartesian\\\"))_=g,w=v;else{if(!i.traceIs(A,\\\"gl2d\\\"))continue;_=m,w=y}var k=h.id2name(A.xaxis),M=h.id2name(A.yaxis);if(k&&-1===_.indexOf(k)&&_.push(k),M&&-1===w.indexOf(M)&&w.push(M),i.traceIs(A,\\\"2dMap\\\")&&(b[k]=!0,b[M]=!0),i.traceIs(A,\\\"oriented\\\")){var T=\\\"h\\\"===A.orientation?M:k;x[T]=!0}}var E=e._hasGL3D||e._hasGeo;if(!E)for(d=0;d<p.length;d++){var L=p[d];-1===m.indexOf(L)&&-1===g.indexOf(L)&&s.xAxisMatch.test(L)?g.push(L):-1===y.indexOf(L)&&-1===v.indexOf(L)&&s.yAxisMatch.test(L)&&v.push(L)}g.length&&v.length&&(e._hasCartesian=!0);var S=g.concat(m).sort(f),C=v.concat(y).sort(f),P=S.concat(C);P.concat(C).forEach(function(i){function o(t,e){return n.coerce(s,f,l,t,e)}var a=i.charAt(0),s=t[i]||{},f={},d={letter:a,font:e.font,outerTicks:b[i],showGrid:!x[i],name:i,data:r},p={letter:a,counterAxes:{x:C,y:S}[a].map(h.name2id),overlayableAxes:{x:S,y:C}[a].filter(function(e){return e!==i&&!(t[e]||{}).overlaying}).map(h.name2id)};c(s,f,o,d),u(s,f,o,p),e[i]=f,t[i]||\\\"-\\\"===s.type||(t[i]={type:s.type})}),P.forEach(function(r){var n=r.charAt(0),i=t[r],s=e[r],l={x:C,y:S}[n];o.supplyLayoutDefaults(t,e,r,l),\\\"x\\\"===n&&\\\"date\\\"===s.type&&a.supplyLayoutDefaults(i,s,e,l)}),S.length&&C.length&&n.coerce(t,e,i.layoutAttributes,\\\"plot_bgcolor\\\")}},{\\\"../../components/rangeselector\\\":346,\\\"../../components/rangeslider\\\":352,\\\"../../lib\\\":373,\\\"../plots\\\":437,\\\"./axis_defaults\\\":394,\\\"./axis_ids\\\":395,\\\"./constants\\\":397,\\\"./layout_attributes\\\":400,\\\"./position_defaults\\\":402}],402:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"fast-isnumeric\\\"),i=t(\\\"../../lib\\\");e.exports=function(t,e,r,o){var a=o.counterAxes||[],s=o.overlayableAxes||[],l=o.letter,c=i.coerce(t,e,{anchor:{valType:\\\"enumerated\\\",values:[\\\"free\\\"].concat(a),dflt:n(t.position)?\\\"free\\\":a[0]||\\\"free\\\"}},\\\"anchor\\\");\\\"free\\\"===c&&r(\\\"position\\\"),i.coerce(t,e,{side:{valType:\\\"enumerated\\\",values:\\\"x\\\"===l?[\\\"bottom\\\",\\\"top\\\"]:[\\\"left\\\",\\\"right\\\"],dflt:\\\"x\\\"===l?\\\"bottom\\\":\\\"left\\\"}},\\\"side\\\");var u=!1;if(s.length&&(u=i.coerce(t,e,{overlaying:{valType:\\\"enumerated\\\",values:[!1].concat(s),dflt:!1}},\\\"overlaying\\\")),!u){var h=r(\\\"domain\\\");h[0]>h[1]-.01&&(e.domain=[0,1]),i.noneOrAll(t.domain,e.domain,[0,1])}return e}},{\\\"../../lib\\\":373,\\\"fast-isnumeric\\\":74}],403:[function(t,e,r){\\\"use strict\\\";function n(t){return t._id}var i=t(\\\"../../lib/polygon\\\"),o=t(\\\"../../components/color\\\"),a=t(\\\"./axes\\\"),s=t(\\\"./constants\\\"),l=i.filter,c=i.tester,u=s.MINSELECT;e.exports=function(t,e,r,i,h){function f(t){var e=\\\"y\\\"===t._id.charAt(0)?1:0;return function(r){return t.p2d(r[e])}}function d(t,e){return t-e}var p,g=i.plotinfo.plot,v=i.element.getBoundingClientRect(),m=e-v.left,y=r-v.top,b=m,x=y,_=\\\"M\\\"+m+\\\",\\\"+y,w=i.xaxes[0]._length,A=i.yaxes[0]._length,k=i.xaxes.map(n),M=i.yaxes.map(n),T=i.xaxes.concat(i.yaxes);\\\"lasso\\\"===h&&(p=l([[m,y]],s.BENDPX));var E=g.selectAll(\\\"path.select-outline\\\").data([1,2]);E.enter().append(\\\"path\\\").attr(\\\"class\\\",function(t){return\\\"select-outline select-outline-\\\"+t}).attr(\\\"d\\\",_+\\\"Z\\\");var L,S,C,P,z,R=g.append(\\\"path\\\").attr(\\\"class\\\",\\\"zoombox-corners\\\").style({fill:o.background,stroke:o.defaultLine,\\\"stroke-width\\\":1}).attr(\\\"d\\\",\\\"M0,0Z\\\"),O=[],I=i.gd,N=[];for(L=0;L<I.calcdata.length;L++)S=I.calcdata[L],C=S[0].trace,C._module&&C._module.selectPoints&&-1!==k.indexOf(C.xaxis)&&-1!==M.indexOf(C.yaxis)&&O.push({selectPoints:C._module.selectPoints,cd:S,xaxis:a.getFromId(I,C.xaxis),yaxis:a.getFromId(I,C.yaxis)});i.moveFn=function(t,e){var r,n;b=Math.max(0,Math.min(w,t+m)),x=Math.max(0,Math.min(A,e+y));var o=Math.abs(b-m),a=Math.abs(x-y);for(\\\"select\\\"===h?(a<Math.min(.6*o,u)?(r=c([[m,0],[m,A],[b,A],[b,0]]),R.attr(\\\"d\\\",\\\"M\\\"+r.xmin+\\\",\\\"+(y-u)+\\\"h-4v\\\"+2*u+\\\"h4ZM\\\"+(r.xmax-1)+\\\",\\\"+(y-u)+\\\"h4v\\\"+2*u+\\\"h-4Z\\\")):o<Math.min(.6*a,u)?(r=c([[0,y],[0,x],[w,x],[w,y]]),R.attr(\\\"d\\\",\\\"M\\\"+(m-u)+\\\",\\\"+r.ymin+\\\"v-4h\\\"+2*u+\\\"v4ZM\\\"+(m-u)+\\\",\\\"+(r.ymax-1)+\\\"v4h\\\"+2*u+\\\"v-4Z\\\")):(r=c([[m,y],[m,x],[b,x],[b,y]]),R.attr(\\\"d\\\",\\\"M0,0Z\\\")),E.attr(\\\"d\\\",\\\"M\\\"+r.xmin+\\\",\\\"+r.ymin+\\\"H\\\"+(r.xmax-1)+\\\"V\\\"+(r.ymax-1)+\\\"H\\\"+r.xmin+\\\"Z\\\")):\\\"lasso\\\"===h&&(p.addPt([b,x]),r=c(p.filtered),E.attr(\\\"d\\\",\\\"M\\\"+p.filtered.join(\\\"L\\\")+\\\"Z\\\")),N=[],L=0;L<O.length;L++)P=O[L],[].push.apply(N,P.selectPoints(P,r));if(z={points:N},\\\"select\\\"===h){var s,l=z.range={};for(L=0;L<T.length;L++)n=T[L],s=n._id.charAt(0),l[n._id]=[n.p2d(r[s+\\\"min\\\"]),n.p2d(r[s+\\\"max\\\"])].sort(d)}else{var g=z.lassoPoints={};for(L=0;L<T.length;L++)n=T[L],g[n._id]=p.filtered.map(f(n))}i.gd.emit(\\\"plotly_selecting\\\",z)},i.doneFn=function(t,e){if(t||2!==e)i.gd.emit(\\\"plotly_selected\\\",z);else{for(E.remove(),L=0;L<O.length;L++)P=O[L],P.selectPoints(P,!1);I.emit(\\\"plotly_deselect\\\",null)}R.remove()}}},{\\\"../../components/color\\\":301,\\\"../../lib/polygon\\\":378,\\\"./axes\\\":393,\\\"./constants\\\":397}],404:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"d3\\\"),i=t(\\\"fast-isnumeric\\\"),o=t(\\\"../../lib\\\"),a=t(\\\"./constants\\\"),s=t(\\\"./clean_datum\\\"),l=t(\\\"./axis_ids\\\");e.exports=function(t){function e(e,r){if(e>0)return Math.log(e)/Math.LN10;if(0>=e&&r&&t.range&&2===t.range.length){var n=t.range[0],i=t.range[1];return.5*(n+i-3*u*Math.abs(n-i))}return a.BADNUM}function r(t){return Math.pow(10,t)}function c(t){return i(t)?Number(t):a.BADNUM}var u=10;if(t.c2l=\\\"log\\\"===t.type?e:c,t.l2c=\\\"log\\\"===t.type?r:c,t.l2d=function(e){return t.c2d(t.l2c(e))},t.p2d=function(e){return t.l2d(t.p2l(e))},t.setScale=function(){var e,r=t._td._fullLayout._size;if(t._categories||(t._categories=[]),t.overlaying){var n=l.getFromId(t._td,t.overlaying);t.domain=n.domain}for(t.range&&2===t.range.length&&t.range[0]!==t.range[1]||(t.range=[-1,1]),e=0;2>e;e++)i(t.range[e])||(t.range[e]=i(t.range[1-e])?t.range[1-e]*(e?10:.1):e?1:-1),t.range[e]<-(Number.MAX_VALUE/2)?t.range[e]=-(Number.MAX_VALUE/2):t.range[e]>Number.MAX_VALUE/2&&(t.range[e]=Number.MAX_VALUE/2);if(\\\"y\\\"===t._id.charAt(0)?(t._offset=r.t+(1-t.domain[1])*r.h,t._length=r.h*(t.domain[1]-t.domain[0]),t._m=t._length/(t.range[0]-t.range[1]),t._b=-t._m*t.range[1]):(t._offset=r.l+t.domain[0]*r.w,t._length=r.w*(t.domain[1]-t.domain[0]),t._m=t._length/(t.range[1]-t.range[0]),t._b=-t._m*t.range[0]),!isFinite(t._m)||!isFinite(t._b))throw o.notifier(\\\"Something went wrong with axis scaling\\\",\\\"long\\\"),t._td._replotting=!1,new Error(\\\"axis scaling\\\")},t.l2p=function(e){return i(e)?n.round(t._b+t._m*e,2):a.BADNUM},t.p2l=function(e){return(e-t._b)/t._m},t.c2p=function(e,r){return t.l2p(t.c2l(e,r))},t.p2c=function(e){return t.l2c(t.p2l(e))},-1!==[\\\"linear\\\",\\\"log\\\",\\\"-\\\"].indexOf(t.type))t.c2d=c,t.d2c=function(t){return t=s(t),i(t)?Number(t):a.BADNUM},t.d2l=function(e,r){return\\\"log\\\"===t.type?t.c2l(t.d2c(e),r):t.d2c(e)};else if(\\\"date\\\"===t.type){if(t.c2d=function(t){return i(t)?o.ms2DateTime(t):a.BADNUM},t.d2c=function(t){return i(t)?Number(t):o.dateTime2ms(t)},t.d2l=t.d2c,t.range&&t.range.length>1)try{var h=t.range.map(o.dateTime2ms);!i(t.range[0])&&i(h[0])&&(t.range[0]=h[0]),!i(t.range[1])&&i(h[1])&&(t.range[1]=h[1])}catch(f){console.log(f,t.range)}}else\\\"category\\\"===t.type&&(t.c2d=function(e){return t._categories[Math.round(e)]},t.d2c=function(e){null!==e&&void 0!==e&&-1===t._categories.indexOf(e)&&t._categories.push(e);var r=t._categories.indexOf(e);return-1===r?a.BADNUM:r},t.d2l=t.d2c);t.makeCalcdata=function(e,r){var n,i,o;if(r in e)for(n=e[r],i=new Array(n.length),o=0;o<n.length;o++)i[o]=t.d2c(n[o]);else{var a=r+\\\"0\\\"in e?t.d2c(e[r+\\\"0\\\"]):0,s=e[\\\"d\\\"+r]?Number(e[\\\"d\\\"+r]):1;for(n=e[{x:\\\"y\\\",y:\\\"x\\\"}[r]],i=new Array(n.length),o=0;o<n.length;o++)i[o]=a+o*s}return i},t._min=[],t._max=[],t._minDtick=null,t._forceTick0=null}},{\\\"../../lib\\\":373,\\\"./axis_ids\\\":395,\\\"./clean_datum\\\":396,\\\"./constants\\\":397,d3:70,\\\"fast-isnumeric\\\":74}],405:[function(t,e,r){\\\"use strict\\\";function n(t){var e=[\\\"showexponent\\\",\\\"showtickprefix\\\",\\\"showticksuffix\\\"],r=e.filter(function(e){return void 0!==t[e]}),n=function(e){return t[e]===t[r[0]]};return r.every(n)||1===r.length?t[r[0]]:void 0}var i=t(\\\"../../lib\\\"),o=t(\\\"./layout_attributes\\\");e.exports=function(t,e,r,a,s){var l=i.coerce2(t,e,o,\\\"ticklen\\\"),c=i.coerce2(t,e,o,\\\"tickwidth\\\"),u=i.coerce2(t,e,o,\\\"tickcolor\\\"),h=r(\\\"ticks\\\",s.outerTicks||l||c||u?\\\"outside\\\":\\\"\\\");h||(delete e.ticklen,delete e.tickwidth,delete e.tickcolor);var f=n(t),d=r(\\\"tickprefix\\\");d&&r(\\\"showtickprefix\\\",f);var p=r(\\\"ticksuffix\\\");p&&r(\\\"showticksuffix\\\",f);var g=r(\\\"showticklabels\\\");if(g&&(i.coerceFont(r,\\\"tickfont\\\",s.font||{}),r(\\\"tickangle\\\"),\\\"category\\\"!==a)){var v=r(\\\"tickformat\\\");v||\\\"date\\\"===a||(r(\\\"showexponent\\\",f),r(\\\"exponentformat\\\"))}\\\"category\\\"===a||s.noHover||r(\\\"hoverformat\\\")}},{\\\"../../lib\\\":373,\\\"./layout_attributes\\\":400}],406:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"fast-isnumeric\\\");e.exports=function(t,e,r,i){var o=\\\"auto\\\";\\\"array\\\"!==t.tickmode||\\\"log\\\"!==i&&\\\"date\\\"!==i||(t.tickmode=\\\"auto\\\"),Array.isArray(t.tickvals)?o=\\\"array\\\":t.dtick&&n(t.dtick)&&(o=\\\"linear\\\");var a=r(\\\"tickmode\\\",o);if(\\\"auto\\\"===a)r(\\\"nticks\\\");else if(\\\"linear\\\"===a)r(\\\"tick0\\\"),r(\\\"dtick\\\");else{var s=r(\\\"tickvals\\\");void 0===s?e.tickmode=\\\"auto\\\":r(\\\"ticktext\\\")}}},{\\\"fast-isnumeric\\\":74}],407:[function(t,e,r){\\\"use strict\\\";e.exports={family:{valType:\\\"string\\\",noBlank:!0,strict:!0},size:{valType:\\\"number\\\",min:1},color:{valType:\\\"color\\\"}}},{}],408:[function(t,e,r){\\\"use strict\\\";function n(t,e){this.id=t.id,this.graphDiv=t.graphDiv,this.container=t.container,this.topojsonURL=t.topojsonURL,p(),this.hoverContainer=null,this.topojsonName=null,this.topojson=null,this.projectionType=null,this.projection=null,this.clipAngle=null,this.setScale=null,this.path=null,this.zoom=null,this.zoomReset=null,this.makeFramework(),this.updateFx(e.hovermode),this.traceHash={}}function i(t){for(var e=[],r=0;r<t.length;r++){var n=t[r];n.visible===!0&&e.push(n)}return e}function o(t,e,r){return u.geo.graticule().extent([[t[0],e[0]],[t[1],e[1]]]).step(r)}function a(t,e,r){var n=b.layerNameToAdjective[e];t.select(\\\".\\\"+e).selectAll(\\\"path\\\").attr(\\\"stroke\\\",\\\"none\\\").call(h.fill,r[n+\\\"color\\\"])}function s(t,e,r){var n=b.layerNameToAdjective[e];t.select(\\\".\\\"+e).selectAll(\\\"path\\\").attr(\\\"fill\\\",\\\"none\\\").call(h.stroke,r[n+\\\"color\\\"]).call(f.dashLine,\\\"\\\",r[n+\\\"width\\\"])}function l(t,e,r){t.select(\\\".\\\"+e+\\\"graticule\\\").selectAll(\\\"path\\\").attr(\\\"fill\\\",\\\"none\\\").call(h.stroke,r[e].gridcolor).call(f.dashLine,\\\"\\\",r[e].gridwidth)}function c(t){var e={type:\\\"linear\\\",showexponent:\\\"all\\\",exponentformat:d.layoutAttributes.exponentformat.dflt,_td:{_fullLayout:t}};return d.setConvert(e),e}var u=t(\\\"d3\\\"),h=t(\\\"../../components/color\\\"),f=t(\\\"../../components/drawing\\\"),d=t(\\\"../../plots/cartesian/axes\\\"),p=t(\\\"./projections\\\"),g=t(\\\"./set_scale\\\"),v=t(\\\"./zoom\\\"),m=t(\\\"./zoom_reset\\\"),y=t(\\\"../../constants/xmlns_namespaces\\\"),b=t(\\\"../../constants/geo_constants\\\"),x=t(\\\"../../lib/topojson_utils\\\"),_=t(\\\"topojson\\\").feature;e.exports=n;var w=n.prototype;w.plot=function(t,e,r){var n,i,o=this,a=e[o.id],s=e._size;o.projection=null,o.setScale=g(a,s),o.makeProjection(a),o.makePath(),o.adjustLayout(a,s),o.zoom=v(o,a),o.zoomReset=m(o,a),o.mockAxis=c(e),o.framework.call(o.zoom).on(\\\"dblclick.zoom\\\",o.zoomReset),n=x.getTopojsonName(a),null===o.topojson||n!==o.topojsonName?(o.topojsonName=n,void 0!==PlotlyGeoAssets.topojson[o.topojsonName]?(o.topojson=PlotlyGeoAssets.topojson[o.topojsonName],o.onceTopojsonIsLoaded(t,a)):(i=x.getTopojsonPath(o.topojsonURL,o.topojsonName),r.push(new Promise(function(e,r){u.json(i,function(n,s){return n?void r(404===n.status?new Error([\\\"plotly.js could not find topojson file at\\\",i,\\\".\\\",\\\"Make sure the *topojsonURL* plot config option\\\",\\\"is set properly.\\\"].join(\\\" \\\")):new Error([\\\"unexpected error while fetching topojson file at\\\",i].join(\\\" \\\"))):(o.topojson=s,PlotlyGeoAssets.topojson[o.topojsonName]=s,o.onceTopojsonIsLoaded(t,a),void e())})})))):o.onceTopojsonIsLoaded(t,a)},w.onceTopojsonIsLoaded=function(t,e){var r;this.drawLayout(e);var n=this.traceHash,o={};for(r=0;r<t.length;r++){var a=t[r];o[a.type]=o[a.type]||[],o[a.type].push(a)}var s=Object.keys(n),l=Object.keys(o);for(r=0;r<s.length;r++){var c=s[r];if(-1===l.indexOf(c)){var u=n[c][0];u.visible=!1,o[c]=[u]}}for(l=Object.keys(o),r=0;r<l.length;r++){var h=o[l[r]],f=h[0]._module;f.plot(this,i(h),e)}this.traceHash=o,this.render()},w.updateFx=function(t){this.showHover=t!==!1},w.makeProjection=function(t){var e,r=t.projection,n=r.type,i=null===this.projection||n!==this.projectionType;i?(this.projectionType=n,e=this.projection=u.geo[b.projNames[n]]()):e=this.projection,e.translate(r._translate0).precision(b.precision),t._isAlbersUsa||e.rotate(r._rotate).center(r._center),t._clipAngle?(this.clipAngle=t._clipAngle,e.clipAngle(t._clipAngle-b.clipPad)):this.clipAngle=null,r.parallels&&e.parallels(r.parallels),i&&this.setScale(e),e.translate(r._translate).scale(r._scale)},w.makePath=function(){this.path=u.geo.path().projection(this.projection)},w.makeFramework=function(){var t=this.geoDiv=u.select(this.container).append(\\\"div\\\");t.attr(\\\"id\\\",this.id).style(\\\"position\\\",\\\"absolute\\\");var e=this.hoverContainer=t.append(\\\"svg\\\");e.attr(y.svgAttrs).style({position:\\\"absolute\\\",\\\"z-index\\\":20,\\\"pointer-events\\\":\\\"none\\\"});var r=this.framework=t.append(\\\"svg\\\");r.attr(y.svgAttrs).attr({position:\\\"absolute\\\",preserveAspectRatio:\\\"none\\\"}),r.append(\\\"g\\\").attr(\\\"class\\\",\\\"bglayer\\\").append(\\\"rect\\\"),r.append(\\\"g\\\").attr(\\\"class\\\",\\\"baselayer\\\"),r.append(\\\"g\\\").attr(\\\"class\\\",\\\"choroplethlayer\\\"),r.append(\\\"g\\\").attr(\\\"class\\\",\\\"baselayeroverchoropleth\\\"),r.append(\\\"g\\\").attr(\\\"class\\\",\\\"scattergeolayer\\\"),r.on(\\\"dblclick.zoom\\\",null)},w.adjustLayout=function(t,e){var r=t.domain;this.geoDiv.style({left:e.l+e.w*r.x[0]+t._marginX+\\\"px\\\",top:e.t+e.h*(1-r.y[1])+t._marginY+\\\"px\\\",width:t._width+\\\"px\\\",height:t._height+\\\"px\\\"}),this.hoverContainer.attr({width:t._width,height:t._height}),this.framework.attr({width:t._width,height:t._height}),this.framework.select(\\\".bglayer\\\").select(\\\"rect\\\").attr({width:t._width,height:t._height}).style({fill:t.bgcolor,\\\"stroke-width\\\":0})},w.drawTopo=function(t,e,r){if(r[\\\"show\\\"+e]===!0){var n=this.topojson,i=\\\"frame\\\"===e?b.sphereSVG:_(n,n.objects[e]);t.append(\\\"g\\\").datum(i).attr(\\\"class\\\",e).append(\\\"path\\\").attr(\\\"class\\\",\\\"basepath\\\")}},w.drawGraticule=function(t,e,r){var n=r[e];if(n.showgrid===!0){\\n\",\n       \"var i=b.scopeDefaults[r.scope],a=i.lonaxisRange,s=i.lataxisRange,l=\\\"lonaxis\\\"===e?[n.dtick]:[0,n.dtick],c=o(a,s,l);t.append(\\\"g\\\").datum(c).attr(\\\"class\\\",e+\\\"graticule\\\").append(\\\"path\\\").attr(\\\"class\\\",\\\"graticulepath\\\")}},w.drawLayout=function(t){var e,r=this.framework.select(\\\"g.baselayer\\\"),n=b.baseLayers,i=b.axesNames;r.selectAll(\\\"*\\\").remove();for(var o=0;o<n.length;o++)e=n[o],-1!==i.indexOf(e)?this.drawGraticule(r,e,t):this.drawTopo(r,e,t);this.styleLayout(t)},w.styleLayer=function(t,e,r){var n=b.fillLayers,i=b.lineLayers;-1!==n.indexOf(e)?a(t,e,r):-1!==i.indexOf(e)&&s(t,e,r)},w.styleLayout=function(t){for(var e,r=this.framework.select(\\\"g.baselayer\\\"),n=b.baseLayers,i=b.axesNames,o=0;o<n.length;o++)e=n[o],-1!==i.indexOf(e)?l(r,e,t):this.styleLayer(r,e,t)},w.render=function(){function t(t){var e=o([t.lon,t.lat]);return e?\\\"translate(\\\"+e[0]+\\\",\\\"+e[1]+\\\")\\\":null}function e(t){var e=o.rotate(),r=u.geo.distance([t.lon,t.lat],[-e[0],-e[1]]),n=s*Math.PI/180;return r>n?\\\"0\\\":\\\"1.0\\\"}var r=this.framework,n=r.select(\\\"g.choroplethlayer\\\"),i=r.select(\\\"g.scattergeolayer\\\"),o=this.projection,a=this.path,s=this.clipAngle;r.selectAll(\\\"path.basepath\\\").attr(\\\"d\\\",a),r.selectAll(\\\"path.graticulepath\\\").attr(\\\"d\\\",a),n.selectAll(\\\"path.choroplethlocation\\\").attr(\\\"d\\\",a),n.selectAll(\\\"path.basepath\\\").attr(\\\"d\\\",a),i.selectAll(\\\"path.js-line\\\").attr(\\\"d\\\",a),null!==s?(i.selectAll(\\\"path.point\\\").style(\\\"opacity\\\",e).attr(\\\"transform\\\",t),i.selectAll(\\\"text\\\").style(\\\"opacity\\\",e).attr(\\\"transform\\\",t)):(i.selectAll(\\\"path.point\\\").attr(\\\"transform\\\",t),i.selectAll(\\\"text\\\").attr(\\\"transform\\\",t))}},{\\\"../../components/color\\\":301,\\\"../../components/drawing\\\":319,\\\"../../constants/geo_constants\\\":358,\\\"../../constants/xmlns_namespaces\\\":362,\\\"../../lib/topojson_utils\\\":385,\\\"../../plots/cartesian/axes\\\":393,\\\"./projections\\\":415,\\\"./set_scale\\\":416,\\\"./zoom\\\":417,\\\"./zoom_reset\\\":418,d3:70,topojson:232}],409:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"./geo\\\"),i=t(\\\"../../plots/plots\\\");r.name=\\\"geo\\\",r.attr=\\\"geo\\\",r.idRoot=\\\"geo\\\",r.idRegex=/^geo([2-9]|[1-9][0-9]+)?$/,r.attrRegex=/^geo([2-9]|[1-9][0-9]+)?$/,r.attributes=t(\\\"./layout/attributes\\\"),r.layoutAttributes=t(\\\"./layout/layout_attributes\\\"),r.supplyLayoutDefaults=t(\\\"./layout/defaults\\\"),r.plot=function(t){var e=t._fullLayout,r=t._fullData,o=i.getSubplotIds(e,\\\"geo\\\");void 0===window.PlotlyGeoAssets&&(window.PlotlyGeoAssets={topojson:{}});for(var a=0;a<o.length;a++){var s=o[a],l=i.getSubplotData(r,\\\"geo\\\",s),c=e[s]._geo;void 0===c&&(c=new n({id:s,graphDiv:t,container:e._geocontainer.node(),topojsonURL:t._context.topojsonURL},e),e[s]._geo=c),c.plot(l,e,t._promises)}},r.clean=function(t,e,r,n){for(var o=i.getSubplotIds(n,\\\"geo\\\"),a=0;a<o.length;a++){var s=o[a],l=n[s]._geo;!e[s]&&l&&l.geoDiv.remove()}}},{\\\"../../plots/plots\\\":437,\\\"./geo\\\":408,\\\"./layout/attributes\\\":410,\\\"./layout/defaults\\\":413,\\\"./layout/layout_attributes\\\":414}],410:[function(t,e,r){\\\"use strict\\\";e.exports={geo:{valType:\\\"geoid\\\",dflt:\\\"geo\\\"}}},{}],411:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../../components/color/attributes\\\");e.exports={range:{valType:\\\"info_array\\\",items:[{valType:\\\"number\\\"},{valType:\\\"number\\\"}]},showgrid:{valType:\\\"boolean\\\",dflt:!1},tick0:{valType:\\\"number\\\"},dtick:{valType:\\\"number\\\"},gridcolor:{valType:\\\"color\\\",dflt:n.lightLine},gridwidth:{valType:\\\"number\\\",min:0,dflt:1}}},{\\\"../../../components/color/attributes\\\":300}],412:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../../lib\\\"),i=t(\\\"../../../constants/geo_constants\\\"),o=t(\\\"./axis_attributes\\\");e.exports=function(t,e){function r(t,e){return n.coerce(s,l,o,t,e)}function a(t){var r,n,o,a,s,l,c=e.scope;return\\\"world\\\"===c?(r=e.projection,n=r.type,o=r.rotation,s=i[t+\\\"Span\\\"],l=void 0!==s[n]?s[n]/2:s[\\\"*\\\"]/2,a=\\\"lonaxis\\\"===t?o.lon:o.lat,[a-l,a+l]):i.scopeDefaults[c][t+\\\"Range\\\"]}for(var s,l,c=i.axesNames,u=0;u<c.length;u++){var h=c[u];s=t[h]||{},l={};var f=a(h),d=r(\\\"range\\\",f);n.noneOrAll(s.range,l.range,[0,1]),r(\\\"tick0\\\",d[0]),r(\\\"dtick\\\",\\\"lonaxis\\\"===h?30:10);var p=r(\\\"showgrid\\\");p&&(r(\\\"gridcolor\\\"),r(\\\"gridwidth\\\")),e[h]=l,e[h]._fullRange=f}}},{\\\"../../../constants/geo_constants\\\":358,\\\"../../../lib\\\":373,\\\"./axis_attributes\\\":411}],413:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){var n,i=r(\\\"scope\\\"),o=\\\"world\\\"!==i,s=a.scopeDefaults[i],c=r(\\\"resolution\\\"),u=r(\\\"projection.type\\\",s.projType),h=\\\"albers usa\\\"===u,f=-1!==u.indexOf(\\\"conic\\\");if(f){var d=s.projParallels||[0,60];r(\\\"projection.parallels\\\",d)}if(h)e.scope=\\\"usa\\\";else{var p=s.projRotate||[0,0,0];r(\\\"projection.rotation.lon\\\",p[0]),r(\\\"projection.rotation.lat\\\",p[1]),r(\\\"projection.rotation.roll\\\",p[2]),n=r(\\\"showcoastlines\\\",!o),n&&(r(\\\"coastlinecolor\\\"),r(\\\"coastlinewidth\\\")),n=r(\\\"showocean\\\"),n&&r(\\\"oceancolor\\\")}r(\\\"projection.scale\\\"),n=r(\\\"showland\\\"),n&&r(\\\"landcolor\\\"),n=r(\\\"showlakes\\\"),n&&r(\\\"lakecolor\\\"),n=r(\\\"showrivers\\\"),n&&(r(\\\"rivercolor\\\"),r(\\\"riverwidth\\\")),n=r(\\\"showcountries\\\",o),n&&(r(\\\"countrycolor\\\"),r(\\\"countrywidth\\\")),(\\\"usa\\\"===i||\\\"north america\\\"===i&&50===c)&&(r(\\\"showsubunits\\\",!0),r(\\\"subunitcolor\\\"),r(\\\"subunitwidth\\\")),o||(n=r(\\\"showframe\\\",!0),n&&(r(\\\"framecolor\\\"),r(\\\"framewidth\\\"))),r(\\\"bgcolor\\\"),l(t,e),e._isHighRes=50===c,e._clipAngle=a.lonaxisSpan[u]/2,e._isAlbersUsa=h,e._isConic=f,e._isScoped=o;var g=e.projection.rotation||{};e.projection._rotate=[-g.lon||0,-g.lat||0,g.roll||0]}var i=t(\\\"../../../lib\\\"),o=t(\\\"../../plots\\\"),a=t(\\\"../../../constants/geo_constants\\\"),s=t(\\\"./layout_attributes\\\"),l=t(\\\"./axis_defaults\\\");e.exports=function(t,e,r){function a(t,e){return i.coerce(l,c,s,t,e)}if(e._hasGeo)for(var l,c,u=o.findSubplotIds(r,\\\"geo\\\"),h=u.length,f=0;h>f;f++){var d=u[f];l=t[d]?t[d]:t[d]={},l=t[d],c={},a(\\\"domain.x\\\"),a(\\\"domain.y\\\",[f/h,(f+1)/h]),n(l,c,a),e[d]=c}}},{\\\"../../../constants/geo_constants\\\":358,\\\"../../../lib\\\":373,\\\"../../plots\\\":437,\\\"./axis_defaults\\\":412,\\\"./layout_attributes\\\":414}],414:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../../components/color/attributes\\\"),i=t(\\\"../../../constants/geo_constants\\\"),o=t(\\\"./axis_attributes\\\");e.exports={domain:{x:{valType:\\\"info_array\\\",items:[{valType:\\\"number\\\",min:0,max:1},{valType:\\\"number\\\",min:0,max:1}],dflt:[0,1]},y:{valType:\\\"info_array\\\",items:[{valType:\\\"number\\\",min:0,max:1},{valType:\\\"number\\\",min:0,max:1}],dflt:[0,1]}},resolution:{valType:\\\"enumerated\\\",values:[110,50],dflt:110,coerceNumber:!0},scope:{valType:\\\"enumerated\\\",values:Object.keys(i.scopeDefaults),dflt:\\\"world\\\"},projection:{type:{valType:\\\"enumerated\\\",values:Object.keys(i.projNames)},rotation:{lon:{valType:\\\"number\\\"},lat:{valType:\\\"number\\\"},roll:{valType:\\\"number\\\"}},parallels:{valType:\\\"info_array\\\",items:[{valType:\\\"number\\\"},{valType:\\\"number\\\"}]},scale:{valType:\\\"number\\\",min:0,max:10,dflt:1}},showcoastlines:{valType:\\\"boolean\\\"},coastlinecolor:{valType:\\\"color\\\",dflt:n.defaultLine},coastlinewidth:{valType:\\\"number\\\",min:0,dflt:1},showland:{valType:\\\"boolean\\\",dflt:!1},landcolor:{valType:\\\"color\\\",dflt:i.landColor},showocean:{valType:\\\"boolean\\\",dflt:!1},oceancolor:{valType:\\\"color\\\",dflt:i.waterColor},showlakes:{valType:\\\"boolean\\\",dflt:!1},lakecolor:{valType:\\\"color\\\",dflt:i.waterColor},showrivers:{valType:\\\"boolean\\\",dflt:!1},rivercolor:{valType:\\\"color\\\",dflt:i.waterColor},riverwidth:{valType:\\\"number\\\",min:0,dflt:1},showcountries:{valType:\\\"boolean\\\"},countrycolor:{valType:\\\"color\\\",dflt:n.defaultLine},countrywidth:{valType:\\\"number\\\",min:0,dflt:1},showsubunits:{valType:\\\"boolean\\\"},subunitcolor:{valType:\\\"color\\\",dflt:n.defaultLine},subunitwidth:{valType:\\\"number\\\",min:0,dflt:1},showframe:{valType:\\\"boolean\\\"},framecolor:{valType:\\\"color\\\",dflt:n.defaultLine},framewidth:{valType:\\\"number\\\",min:0,dflt:1},bgcolor:{valType:\\\"color\\\",dflt:n.background},lonaxis:o,lataxis:o}},{\\\"../../../components/color/attributes\\\":300,\\\"../../../constants/geo_constants\\\":358,\\\"./axis_attributes\\\":411}],415:[function(t,e,r){function n(){function t(t,r){return{type:\\\"Feature\\\",id:t.id,properties:t.properties,geometry:e(t.geometry,r)}}function e(t,r){if(!t)return null;if(\\\"GeometryCollection\\\"===t.type)return{type:\\\"GeometryCollection\\\",geometries:object.geometries.map(function(t){return e(t,r)})};if(!k.hasOwnProperty(t.type))return null;var n=k[t.type];return i.geo.stream(t,r(n)),n.result()}function r(){}function n(t){if((e=t.length)<4)return!1;for(var e,r=0,n=t[e-1][1]*t[0][0]-t[e-1][0]*t[0][1];++r<e;)n+=t[r-1][1]*t[r][0]-t[r-1][0]*t[r][1];return 0>=n}function o(t,e){for(var r=e[0],n=e[1],i=!1,o=0,a=t.length,s=a-1;a>o;s=o++){var l=t[o],c=l[0],u=l[1],h=t[s],f=h[0],d=h[1];u>n^d>n&&(f-c)*(n-u)/(d-u)+c>r&&(i=!i)}return i}function a(t){return t>1?L:-1>t?-L:Math.asin(t)}function s(t,e){var r=(2+L)*Math.sin(e);e/=2;for(var n=0,i=1/0;10>n&&Math.abs(i)>M;n++){var o=Math.cos(e);e-=i=(e+Math.sin(e)*(o+2)-r)/(2*o*(1+o))}return[2/Math.sqrt(E*(4+E))*t*(1+Math.cos(e)),2*Math.sqrt(E/(4+E))*Math.sin(e)]}function l(t,e){function r(r,n){var i=R(r/e,n);return i[0]*=t,i}return arguments.length<2&&(e=t),1===e?R:e===1/0?u:(r.invert=function(r,n){var i=R.invert(r/t,n);return i[0]*=e,i},r)}function c(){var t=2,e=z(l),r=e(t);return r.coefficient=function(r){return arguments.length?e(t=+r):t},r}function u(t,e){return[t*Math.cos(e)/Math.cos(e/=2),2*Math.sin(e)]}function h(t,e){return[3*t/(2*E)*Math.sqrt(E*E/3-e*e),e]}function f(t,e){return[t,1.25*Math.log(Math.tan(E/4+.4*e))]}function d(t){return function(e){var r,n=t*Math.sin(e),i=30;do e-=r=(e+Math.sin(e)-n)/(1+Math.cos(e));while(Math.abs(r)>M&&--i>0);return e/2}}function p(t,e,r){function n(r,n){return[t*r*Math.cos(n=i(n)),e*Math.sin(n)]}var i=d(r);return n.invert=function(n,i){var o=a(i/e);return[n/(t*Math.cos(o)),a((2*o+Math.sin(2*o))/r)]},n}function g(t,e){var r=e*e,n=r*r;return[t*(.8707-.131979*r+n*(-.013791+n*(.003971*r-.001529*n))),e*(1.007226+r*(.015085+n*(-.044475+.028874*r-.005916*n)))]}function v(t,e){var r,n=Math.min(18,36*Math.abs(e)/E),i=Math.floor(n),o=n-i,a=(r=I[i])[0],s=r[1],l=(r=I[++i])[0],c=r[1],u=(r=I[Math.min(19,++i)])[0],h=r[1];return[t*(l+o*(u-a)/2+o*o*(u-2*l+a)/2),(e>0?L:-L)*(c+o*(h-s)/2+o*o*(h-2*c+s)/2)]}function m(t,e){return[t*Math.cos(e),e]}i.geo.project=function(t,r){var n=r.stream;if(!n)throw new Error(\\\"not yet supported\\\");return(t&&y.hasOwnProperty(t.type)?y[t.type]:e)(t,n)};var y={Feature:t,FeatureCollection:function(e,r){return{type:\\\"FeatureCollection\\\",features:e.features.map(function(e){return t(e,r)})}}},b=[],x=[],_={point:function(t,e){b.push([t,e])},result:function(){var t=b.length?b.length<2?{type:\\\"Point\\\",coordinates:b[0]}:{type:\\\"MultiPoint\\\",coordinates:b}:null;return b=[],t}},w={lineStart:r,point:function(t,e){b.push([t,e])},lineEnd:function(){b.length&&(x.push(b),b=[])},result:function(){var t=x.length?x.length<2?{type:\\\"LineString\\\",coordinates:x[0]}:{type:\\\"MultiLineString\\\",coordinates:x}:null;return x=[],t}},A={polygonStart:r,lineStart:r,point:function(t,e){b.push([t,e])},lineEnd:function(){var t=b.length;if(t){do b.push(b[0].slice());while(++t<4);x.push(b),b=[]}},polygonEnd:r,result:function(){if(!x.length)return null;var t=[],e=[];return x.forEach(function(r){n(r)?t.push([r]):e.push(r)}),e.forEach(function(e){var r=e[0];t.some(function(t){return o(t[0],r)?(t.push(e),!0):void 0})||t.push([e])}),x=[],t.length?t.length>1?{type:\\\"MultiPolygon\\\",coordinates:t}:{type:\\\"Polygon\\\",coordinates:t[0]}:null}},k={Point:_,MultiPoint:_,LineString:w,MultiLineString:w,Polygon:A,MultiPolygon:A,Sphere:A},M=1e-6,T=M*M,E=Math.PI,L=E/2,S=(Math.sqrt(E),E/180),C=180/E,P=i.geo.projection,z=i.geo.projectionMutator;i.geo.interrupt=function(t){function e(e,r){for(var n=0>r?-1:1,i=l[+(0>r)],o=0,a=i.length-1;a>o&&e>i[o][2][0];++o);var s=t(e-i[o][1][0],r);return s[0]+=t(i[o][1][0],n*r>n*i[o][0][1]?i[o][0][1]:r)[0],s}function r(){s=l.map(function(e){return e.map(function(e){var r,n=t(e[0][0],e[0][1])[0],i=t(e[2][0],e[2][1])[0],o=t(e[1][0],e[0][1])[1],a=t(e[1][0],e[1][1])[1];return o>a&&(r=o,o=a,a=r),[[n,o],[i,a]]})})}function n(){for(var t=1e-6,e=[],r=0,n=l[0].length;n>r;++r){var a=l[0][r],s=180*a[0][0]/E,c=180*a[0][1]/E,u=180*a[1][1]/E,h=180*a[2][0]/E,f=180*a[2][1]/E;e.push(o([[s+t,c+t],[s+t,u-t],[h-t,u-t],[h-t,f+t]],30))}for(var r=l[1].length-1;r>=0;--r){var a=l[1][r],s=180*a[0][0]/E,c=180*a[0][1]/E,u=180*a[1][1]/E,h=180*a[2][0]/E,f=180*a[2][1]/E;e.push(o([[h-t,f-t],[h-t,u+t],[s+t,u+t],[s+t,c-t]],30))}return{type:\\\"Polygon\\\",coordinates:[i.merge(e)]}}function o(t,e){for(var r,n,i,o=-1,a=t.length,s=t[0],l=[];++o<a;){r=t[o],n=(r[0]-s[0])/e,i=(r[1]-s[1])/e;for(var c=0;e>c;++c)l.push([s[0]+c*n,s[1]+c*i]);s=r}return l.push(r),l}function a(t,e){return Math.abs(t[0]-e[0])<M&&Math.abs(t[1]-e[1])<M}var s,l=[[[[-E,0],[0,L],[E,0]]],[[[-E,0],[0,-L],[E,0]]]];t.invert&&(e.invert=function(r,n){for(var i=s[+(0>n)],o=l[+(0>n)],c=0,u=i.length;u>c;++c){var h=i[c];if(h[0][0]<=r&&r<h[1][0]&&h[0][1]<=n&&n<h[1][1]){var f=t.invert(r-t(o[c][1][0],0)[0],n);return f[0]+=o[c][1][0],a(e(f[0],f[1]),[r,n])?f:null}}});var c=i.geo.projection(e),u=c.stream;return c.stream=function(t){var e=c.rotate(),r=u(t),o=(c.rotate([0,0]),u(t));return c.rotate(e),r.sphere=function(){i.geo.stream(n(),o)},r},c.lobes=function(t){return arguments.length?(l=t.map(function(t){return t.map(function(t){return[[t[0][0]*E/180,t[0][1]*E/180],[t[1][0]*E/180,t[1][1]*E/180],[t[2][0]*E/180,t[2][1]*E/180]]})}),r(),c):l.map(function(t){return t.map(function(t){return[[180*t[0][0]/E,180*t[0][1]/E],[180*t[1][0]/E,180*t[1][1]/E],[180*t[2][0]/E,180*t[2][1]/E]]})})},c},s.invert=function(t,e){var r=.5*e*Math.sqrt((4+E)/E),n=a(r),i=Math.cos(n);return[t/(2/Math.sqrt(E*(4+E))*(1+i)),a((n+r*(i+2))/(2+L))]},(i.geo.eckert4=function(){return P(s)}).raw=s;var R=i.geo.azimuthalEqualArea.raw;u.invert=function(t,e){var r=2*a(e/2);return[t*Math.cos(r/2)/Math.cos(r),r]},(i.geo.hammer=c).raw=l,h.invert=function(t,e){return[2/3*E*t/Math.sqrt(E*E/3-e*e),e]},(i.geo.kavrayskiy7=function(){return P(h)}).raw=h,f.invert=function(t,e){return[t,2.5*Math.atan(Math.exp(.8*e))-.625*E]},(i.geo.miller=function(){return P(f)}).raw=f;var O=(d(E),p(Math.SQRT2/L,Math.SQRT2,E));(i.geo.mollweide=function(){return P(O)}).raw=O,g.invert=function(t,e){var r,n=e,i=25;do{var o=n*n,a=o*o;n-=r=(n*(1.007226+o*(.015085+a*(-.044475+.028874*o-.005916*a)))-e)/(1.007226+o*(.045255+a*(-0.311325+.259866*o-.005916*11*a)))}while(Math.abs(r)>M&&--i>0);return[t/(.8707+(o=n*n)*(-.131979+o*(-.013791+o*o*o*(.003971-.001529*o)))),n]},(i.geo.naturalEarth=function(){return P(g)}).raw=g;var I=[[.9986,-.062],[1,0],[.9986,.062],[.9954,.124],[.99,.186],[.9822,.248],[.973,.31],[.96,.372],[.9427,.434],[.9216,.4958],[.8962,.5571],[.8679,.6176],[.835,.6769],[.7986,.7346],[.7597,.7903],[.7186,.8435],[.6732,.8936],[.6213,.9394],[.5722,.9761],[.5322,1]];I.forEach(function(t){t[1]*=1.0144}),v.invert=function(t,e){var r=e/L,n=90*r,i=Math.min(18,Math.abs(n/5)),o=Math.max(0,Math.floor(i));do{var a=I[o][1],s=I[o+1][1],l=I[Math.min(19,o+2)][1],c=l-a,u=l-2*s+a,h=2*(Math.abs(r)-s)/c,f=u/c,d=h*(1-f*h*(1-2*f*h));if(d>=0||1===o){n=(e>=0?5:-5)*(d+i);var p,g=50;do i=Math.min(18,Math.abs(n)/5),o=Math.floor(i),d=i-o,a=I[o][1],s=I[o+1][1],l=I[Math.min(19,o+2)][1],n-=(p=(e>=0?L:-L)*(s+d*(l-a)/2+d*d*(l-2*s+a)/2)-e)*C;while(Math.abs(p)>T&&--g>0);break}}while(--o>=0);var v=I[o][0],m=I[o+1][0],y=I[Math.min(19,o+2)][0];return[t/(m+d*(y-v)/2+d*d*(y-2*m+v)/2),n*S]},(i.geo.robinson=function(){return P(v)}).raw=v,m.invert=function(t,e){return[t/Math.cos(e),e]},(i.geo.sinusoidal=function(){return P(m)}).raw=m}var i=t(\\\"d3\\\");e.exports=n},{d3:70}],416:[function(t,e,r){\\\"use strict\\\";function n(t,e){var r=t.projection,n=t.lonaxis,a=t.lataxis,l=t.domain,c=t.framewidth||0,u=e.w*(l.x[1]-l.x[0]),h=e.h*(l.y[1]-l.y[0]),f=n.range[0]+s,d=n.range[1]-s,p=a.range[0]+s,g=a.range[1]-s,v=n._fullRange[0]+s,m=n._fullRange[1]-s,y=a._fullRange[0]+s,b=a._fullRange[1]-s;r._translate0=[e.l+u/2,e.t+h/2];var x=d-f,_=g-p,w=[f+x/2,p+_/2],A=r._rotate;r._center=[w[0]+A[0],w[1]+A[1]];var k=function(e){function n(t){return Math.min(_*u/(t[1][0]-t[0][0]),_*h/(t[1][1]-t[0][1]))}var a,s,l,x,_=e.scale(),w=r._translate0,A=i(f,p,d,g),k=i(v,y,m,b);l=o(e,A),a=n(l),x=o(e,k),r._fullScale=n(x),e.scale(a),l=o(e,A),s=[w[0]-l[0][0]+c,w[1]-l[0][1]+c],r._translate=s,e.translate(s),l=o(e,A),t._isAlbersUsa||e.clipExtent(l),a=r.scale*a,r._scale=a,t._width=Math.round(l[1][0])+c,t._height=Math.round(l[1][1])+c,t._marginX=(u-Math.round(l[1][0]))/2,t._marginY=(h-Math.round(l[1][1]))/2};return k}function i(t,e,r,n){var i=(r-t)/4;return{type:\\\"Polygon\\\",coordinates:[[[t,e],[t,n],[t+i,n],[t+2*i,n],[t+3*i,n],[r,n],[r,e],[r-i,e],[r-2*i,e],[r-3*i,e],[t,e]]]}}function o(t,e){return a.geo.path().projection(t).bounds(e)}var a=t(\\\"d3\\\"),s=t(\\\"../../constants/geo_constants\\\").clipPad;e.exports=n},{\\\"../../constants/geo_constants\\\":358,d3:70}],417:[function(t,e,r){\\\"use strict\\\";function n(t,e){var r;return(r=e._isScoped?o:e._clipAngle?s:a)(t,e.projection)}function i(t,e){var r=e._fullScale;return _.behavior.zoom().translate(t.translate()).scale(t.scale()).scaleExtent([.5*r,100*r])}function o(t,e){function r(){_.select(this).style(k)}function n(){a.scale(_.event.scale).translate(_.event.translate),t.render()}function o(){_.select(this).style(M)}var a=t.projection,s=i(a,e);return s.on(\\\"zoomstart\\\",r).on(\\\"zoom\\\",n).on(\\\"zoomend\\\",o),s}function a(t,e){function r(t){return v.invert(t)}function n(t){var e=v(r(t));return Math.abs(e[0]-t[0])>y||Math.abs(e[1]-t[1])>y}function o(){_.select(this).style(k),l=_.mouse(this),c=v.rotate(),u=v.translate(),h=c,f=r(l)}function a(){return d=_.mouse(this),n(l)?(m.scale(v.scale()),void m.translate(v.translate())):(v.scale(_.event.scale),v.translate([u[0],_.event.translate[1]]),f?r(d)&&(g=r(d),p=[h[0]+(g[0]-f[0]),c[1],c[2]],v.rotate(p),h=p):(l=d,f=r(l)),void t.render())}function s(){_.select(this).style(M)}var l,c,u,h,f,d,p,g,v=t.projection,m=i(v,e),y=2;return m.on(\\\"zoomstart\\\",o).on(\\\"zoom\\\",a).on(\\\"zoomend\\\",s),m}function s(t,e){function r(t){m++||t({type:\\\"zoomstart\\\"})}function n(t){t({type:\\\"zoom\\\"})}function o(t){--m||t({type:\\\"zoomend\\\"})}var a,s=t.projection,d={r:s.rotate(),k:s.scale()},p=i(s,e),g=x(p,\\\"zoomstart\\\",\\\"zoom\\\",\\\"zoomend\\\"),m=0,y=p.on;return p.on(\\\"zoomstart\\\",function(){_.select(this).style(k);var t=_.mouse(this),e=s.rotate(),i=e,o=s.translate(),m=c(e);a=l(s,t),y.call(p,\\\"zoom\\\",function(){var r=_.mouse(this);if(s.scale(d.k=_.event.scale),a){if(l(s,r)){s.rotate(e).translate(o);var c=l(s,r),p=h(a,c),y=v(u(m,p)),b=d.r=f(y,a,i);isFinite(b[0])&&isFinite(b[1])&&isFinite(b[2])||(b=i),s.rotate(b),i=b}}else t=r,a=l(s,t);n(g.of(this,arguments))}),r(g.of(this,arguments))}).on(\\\"zoomend\\\",function(){_.select(this).style(M),y.call(p,\\\"zoom\\\",null),o(g.of(this,arguments))}).on(\\\"zoom.redraw\\\",function(){t.render()}),_.rebind(p,g,\\\"on\\\")}function l(t,e){var r=t.invert(e);return r&&isFinite(r[0])&&isFinite(r[1])&&m(r)}function c(t){var e=.5*t[0]*w,r=.5*t[1]*w,n=.5*t[2]*w,i=Math.sin(e),o=Math.cos(e),a=Math.sin(r),s=Math.cos(r),l=Math.sin(n),c=Math.cos(n);return[o*s*c+i*a*l,i*s*c-o*a*l,o*a*c+i*s*l,o*s*l-i*a*c]}function u(t,e){var r=t[0],n=t[1],i=t[2],o=t[3],a=e[0],s=e[1],l=e[2],c=e[3];return[r*a-n*s-i*l-o*c,r*s+n*a+i*c-o*l,r*l-n*c+i*a+o*s,r*c+n*l-i*s+o*a]}function h(t,e){if(t&&e){var r=b(t,e),n=Math.sqrt(y(r,r)),i=.5*Math.acos(Math.max(-1,Math.min(1,y(t,e)))),o=Math.sin(i)/n;return n&&[Math.cos(i),r[2]*o,-r[1]*o,r[0]*o]}}function f(t,e,r){var n=g(e,2,t[0]);n=g(n,1,t[1]),n=g(n,0,t[2]-r[2]);var i,o,a=e[0],s=e[1],l=e[2],c=n[0],u=n[1],h=n[2],f=Math.atan2(s,a)*A,p=Math.sqrt(a*a+s*s);Math.abs(u)>p?(o=(u>0?90:-90)-f,i=0):(o=Math.asin(u/p)*A-f,i=Math.sqrt(p*p-u*u));var v=180-o-2*f,m=(Math.atan2(h,c)-Math.atan2(l,i))*A,y=(Math.atan2(h,c)-Math.atan2(l,-i))*A,b=d(r[0],r[1],o,m),x=d(r[0],r[1],v,y);return x>=b?[o,m,r[2]]:[v,y,r[2]]}function d(t,e,r,n){var i=p(r-t),o=p(n-e);return Math.sqrt(i*i+o*o)}function p(t){return(t%360+540)%360-180}function g(t,e,r){var n=r*w,i=t.slice(),o=0===e?1:0,a=2===e?1:2,s=Math.cos(n),l=Math.sin(n);return i[o]=t[o]*s-t[a]*l,i[a]=t[a]*s+t[o]*l,i}function v(t){return[Math.atan2(2*(t[0]*t[1]+t[2]*t[3]),1-2*(t[1]*t[1]+t[2]*t[2]))*A,Math.asin(Math.max(-1,Math.min(1,2*(t[0]*t[2]-t[3]*t[1]))))*A,Math.atan2(2*(t[0]*t[3]+t[1]*t[2]),1-2*(t[2]*t[2]+t[3]*t[3]))*A]}function m(t){var e=t[0]*w,r=t[1]*w,n=Math.cos(r);return[n*Math.cos(e),n*Math.sin(e),Math.sin(r)]}function y(t,e){for(var r=0,n=0,i=t.length;i>n;++n)r+=t[n]*e[n];return r}function b(t,e){return[t[1]*e[2]-t[2]*e[1],t[2]*e[0]-t[0]*e[2],t[0]*e[1]-t[1]*e[0]]}function x(t){for(var e=0,r=arguments.length,n=[];++e<r;)n.push(arguments[e]);var i=_.dispatch.apply(null,n);return i.of=function(e,r){return function(n){var o;try{o=n.sourceEvent=_.event,n.target=t,_.event=n,i[n.type].apply(e,r)}finally{_.event=o}}},i}var _=t(\\\"d3\\\"),w=Math.PI/180,A=180/Math.PI,k={cursor:\\\"pointer\\\"},M={cursor:\\\"auto\\\"};e.exports=n},{d3:70}],418:[function(t,e,r){\\\"use strict\\\";function n(t,e){var r=t.projection,n=t.zoom,o=function(){t.makeProjection(e),t.makePath(),n.scale(r.scale()),n.translate(r.translate()),i.loneUnhover(t.hoverContainer),t.render()};return o}var i=t(\\\"../cartesian/graph_interact\\\");e.exports=n},{\\\"../cartesian/graph_interact\\\":398}],419:[function(t,e,r){\\\"use strict\\\";function n(t,e){this.element=t,this.plot=e,this.mouseListener=null,this.wheelListener=null,this.lastInputTime=Date.now(),this.lastPos=[0,0],this.boxEnabled=!1,this.boxStart=[0,0],this.boxEnd=[0,0]}function i(t){var e=t.mouseContainer,r=t.glplot,i=new n(e,r);return i.mouseListener=o(e,function(e,n,o){function a(e,r,n){var o=Math.min(r,n),a=Math.max(r,n);o!==a?(e[0]=o,e[1]=a,i.dataBox=e):(t.selectBox.selectBox=[0,0,1,1],t.glplot.setDirty())}var s=t.xaxis.range,l=t.yaxis.range,c=r.viewBox,u=i.lastPos[0],h=i.lastPos[1];switch(n*=r.pixelRatio,o*=r.pixelRatio,o=c[3]-c[1]-o,t.fullLayout.dragmode){case\\\"zoom\\\":if(e){var f=n/(c[2]-c[0])*(s[1]-s[0])+s[0],d=o/(c[3]-c[1])*(l[1]-l[0])+l[0];i.boxEnabled||(i.boxStart[0]=f,i.boxStart[1]=d),i.boxEnd[0]=f,i.boxEnd[1]=d,i.boxEnabled=!0}else i.boxEnabled&&(a(s,i.boxStart[0],i.boxEnd[0]),a(l,i.boxStart[1],i.boxEnd[1]),i.boxEnabled=!1);break;case\\\"pan\\\":if(i.boxEnabled=!1,e){var p=(u-n)*(s[1]-s[0])/(r.viewBox[2]-r.viewBox[0]),g=(h-o)*(l[1]-l[0])/(r.viewBox[3]-r.viewBox[1]);s[0]+=p,s[1]+=p,l[0]+=g,l[1]+=g,i.lastInputTime=Date.now(),t.cameraChanged()}}i.lastPos[0]=n,i.lastPos[1]=o}),i.wheelListener=a(e,function(e,n){var o=t.xaxis.range,a=t.yaxis.range,s=r.viewBox,l=i.lastPos[0],c=i.lastPos[1];switch(t.fullLayout.dragmode){case\\\"zoom\\\":break;case\\\"pan\\\":var u=Math.exp(.1*n/(s[3]-s[1])),h=l/(s[2]-s[0])*(o[1]-o[0])+o[0],f=c/(s[3]-s[1])*(a[1]-a[0])+a[0];o[0]=(o[0]-h)*u+h,o[1]=(o[1]-h)*u+h,a[0]=(a[0]-f)*u+f,a[1]=(a[1]-f)*u+f,i.lastInputTime=Date.now(),t.cameraChanged()}return!0}),i}var o=t(\\\"mouse-change\\\"),a=t(\\\"mouse-wheel\\\");e.exports=i},{\\\"mouse-change\\\":198,\\\"mouse-wheel\\\":202}],420:[function(t,e,r){\\\"use strict\\\";function n(t){this.scene=t,this.gl=t.gl,this.pixelRatio=t.pixelRatio,this.screenBox=[0,0,1,1],this.viewBox=[0,0,1,1],this.dataBox=[-1,-1,1,1],this.borderLineEnable=[!1,!1,!1,!1],this.borderLineWidth=[1,1,1,1],this.borderLineColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.ticks=[[],[]],this.tickEnable=[!0,!0,!1,!1],this.tickPad=[15,15,15,15],this.tickAngle=[0,0,0,0],this.tickColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.tickMarkLength=[0,0,0,0],this.tickMarkWidth=[0,0,0,0],this.tickMarkColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.labels=[\\\"x\\\",\\\"y\\\"],this.labelEnable=[!0,!0,!1,!1],this.labelAngle=[0,Math.PI/2,0,3*Math.PI/2],this.labelPad=[15,15,15,15],this.labelSize=[12,12],this.labelFont=[\\\"sans-serif\\\",\\\"sans-serif\\\"],this.labelColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.title=\\\"\\\",this.titleEnable=!0,this.titleCenter=[0,0,0,0],this.titleAngle=0,this.titleColor=[0,0,0,1],this.titleFont=\\\"sans-serif\\\",this.titleSize=18,this.gridLineEnable=[!0,!0],this.gridLineColor=[[0,0,0,.5],[0,0,0,.5]],this.gridLineWidth=[1,1],this.zeroLineEnable=[!0,!0],this.zeroLineWidth=[1,1],this.zeroLineColor=[[0,0,0,1],[0,0,0,1]],this.borderColor=[0,0,0,0],this.backgroundColor=[0,0,0,0]}function i(t){return new n(t)}var o=t(\\\"../../plotly\\\"),a=t(\\\"../../lib/html2unicode\\\"),s=t(\\\"../../lib/str2rgbarray\\\"),l=n.prototype,c=[\\\"xaxis\\\",\\\"yaxis\\\"];l.merge=function(t){this.titleEnable=!1,this.backgroundColor=s(t.plot_bgcolor);var e,r,n,i,o,l,u,h,f,d,p;for(d=0;2>d;++d){for(e=c[d],r=t[this.scene[e]._name],n=/Click to enter .+ title/.test(r.title)?\\\"\\\":r.title,p=0;2>=p;p+=2)this.labelEnable[d+p]=!1,this.labels[d+p]=a(n),this.labelColor[d+p]=s(r.titlefont.color),this.labelFont[d+p]=r.titlefont.family,this.labelSize[d+p]=r.titlefont.size,this.labelPad[d+p]=this.getLabelPad(e,r),this.tickEnable[d+p]=!1,this.tickColor[d+p]=s((r.tickfont||{}).color),this.tickAngle[d+p]=\\\"auto\\\"===r.tickangle?0:Math.PI*-r.tickangle/180,this.tickPad[d+p]=this.getTickPad(r),this.tickMarkLength[d+p]=0,this.tickMarkWidth[d+p]=r.tickwidth||0,this.tickMarkColor[d+p]=s(r.tickcolor),this.borderLineEnable[d+p]=!1,this.borderLineColor[d+p]=s(r.linecolor),this.borderLineWidth[d+p]=r.linewidth||0;u=this.hasSharedAxis(r),o=this.hasAxisInDfltPos(e,r)&&!u,l=this.hasAxisInAltrPos(e,r)&&!u,i=r.mirror||!1,h=u?-1!==String(i).indexOf(\\\"all\\\"):!!i,f=u?\\\"allticks\\\"===i:-1!==String(i).indexOf(\\\"ticks\\\"),o?this.labelEnable[d]=!0:l&&(this.labelEnable[d+2]=!0),o?this.tickEnable[d]=r.showticklabels:l&&(this.tickEnable[d+2]=r.showticklabels),(o||h)&&(this.borderLineEnable[d]=r.showline),(l||h)&&(this.borderLineEnable[d+2]=r.showline),(o||f)&&(this.tickMarkLength[d]=this.getTickMarkLength(r)),(l||f)&&(this.tickMarkLength[d+2]=this.getTickMarkLength(r)),this.gridLineEnable[d]=r.showgrid,this.gridLineColor[d]=s(r.gridcolor),this.gridLineWidth[d]=r.gridwidth,this.zeroLineEnable[d]=r.zeroline,this.zeroLineColor[d]=s(r.zerolinecolor),this.zeroLineWidth[d]=r.zerolinewidth}},l.hasSharedAxis=function(t){var e=this.scene,r=o.Plots.getSubplotIds(e.fullLayout,\\\"gl2d\\\"),n=o.Axes.findSubplotsWithAxis(r,t);return 0!==n.indexOf(e.id)},l.hasAxisInDfltPos=function(t,e){var r=e.side;return\\\"xaxis\\\"===t?\\\"bottom\\\"===r:\\\"yaxis\\\"===t?\\\"left\\\"===r:void 0},l.hasAxisInAltrPos=function(t,e){var r=e.side;return\\\"xaxis\\\"===t?\\\"top\\\"===r:\\\"yaxis\\\"===t?\\\"right\\\"===r:void 0},l.getLabelPad=function(t,e){var r=1.5,n=e.titlefont.size,i=e.showticklabels;return\\\"xaxis\\\"===t?\\\"top\\\"===e.side?-10+n*(r+(i?1:0)):-10+n*(r+(i?.5:0)):\\\"yaxis\\\"===t?\\\"right\\\"===e.side?10+n*(r+(i?1:.5)):10+n*(r+(i?.5:0)):void 0},l.getTickPad=function(t){return\\\"outside\\\"===t.ticks?10+t.ticklen:15},l.getTickMarkLength=function(t){if(!t.ticks)return 0;var e=t.ticklen;return\\\"inside\\\"===t.ticks?-e:e},e.exports=i},{\\\"../../lib/html2unicode\\\":372,\\\"../../lib/str2rgbarray\\\":383,\\\"../../plotly\\\":390}],421:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../plotly\\\"),i=t(\\\"./scene2d\\\"),o=n.Plots;r.name=\\\"gl2d\\\",r.attr=[\\\"xaxis\\\",\\\"yaxis\\\"],r.idRoot=[\\\"x\\\",\\\"y\\\"],r.idRegex={x:/^x([2-9]|[1-9][0-9]+)?$/,y:/^y([2-9]|[1-9][0-9]+)?$/},r.attrRegex={x:/^xaxis([2-9]|[1-9][0-9]+)?$/,y:/^yaxis([2-9]|[1-9][0-9]+)?$/},r.attributes=t(\\\"../cartesian/attributes\\\"),r.plot=function(t){for(var e=t._fullLayout,r=t._fullData,n=o.getSubplotIds(e,\\\"gl2d\\\"),a=0;a<n.length;a++){var s=n[a],l=e._plots[s],c=o.getSubplotData(r,\\\"gl2d\\\",s),u=l._scene2d;void 0===u&&(u=new i({container:t.querySelector(\\\".gl-container\\\"),id:s,staticPlot:t._context.staticPlot,plotGlPixelRatio:t._context.plotGlPixelRatio},e),l._scene2d=u),u.plot(c,e,t.layout)}},r.clean=function(t,e,r,n){for(var i=o.getSubplotIds(n,\\\"gl2d\\\"),a=0;a<i.length;a++){var s=n._plots[i[a]],l=s.xaxis._name,c=s.yaxis._name;!s._scene2d||e[l]&&e[c]||s._scene2d.destroy()}}},{\\\"../../plotly\\\":390,\\\"../cartesian/attributes\\\":392,\\\"./scene2d\\\":422}],422:[function(t,e,r){\\\"use strict\\\";function n(t,e){this.container=t.container,this.pixelRatio=t.plotGlPixelRatio||window.devicePixelRatio,this.id=t.id,this.staticPlot=!!t.staticPlot,this.fullLayout=e,this.updateAxes(e),this.makeFramework(),this.glplotOptions=d(this),this.glplotOptions.merge(e),this.glplot=u(this.glplotOptions),this.camera=p(this),this.traces={},this.spikes=h(this.glplot),this.selectBox=f(this.glplot,{innerFill:!1,outerFill:!0}),this.pickResult=null,this.bounds=[1/0,1/0,-(1/0),-(1/0)],this.stopped=!1,this.redraw=this.draw.bind(this),this.redraw()}function i(t,e){for(var r=0;2>r;++r){var n=t[r],i=e[r];if(n.length!==i.length)return!0;for(var o=0;o<n.length;++o)if(n[o].x!==i[o].x)return!0}return!1}var o,a,s=t(\\\"../../plots/plots\\\"),l=t(\\\"../../plots/cartesian/axes\\\"),c=t(\\\"../../plots/cartesian/graph_interact\\\"),u=t(\\\"gl-plot2d\\\"),h=t(\\\"gl-spikes2d\\\"),f=t(\\\"gl-select-box\\\"),d=t(\\\"./convert\\\"),p=t(\\\"./camera\\\"),g=t(\\\"../../lib/html2unicode\\\"),v=t(\\\"../../lib/show_no_webgl_msg\\\"),m=[\\\"xaxis\\\",\\\"yaxis\\\"];e.exports=n;var y=n.prototype;y.makeFramework=function(){if(this.staticPlot){if(!a){o=document.createElement(\\\"canvas\\\");try{a=o.getContext(\\\"webgl\\\",{preserveDrawingBuffer:!0,premultipliedAlpha:!0,antialias:!0})}catch(t){throw new Error([\\\"Error creating static canvas/context for image server\\\"].join(\\\" \\\"))}}this.canvas=o,this.gl=a}else{var e,r=document.createElement(\\\"canvas\\\"),n={premultipliedAlpha:!0};try{e=r.getContext(\\\"webgl\\\",n)}catch(t){}if(!e)try{e=r.getContext(\\\"experimental-webgl\\\",n)}catch(t){}e||v(this),this.canvas=r,this.gl=e}var i=this.canvas,s=this.pixelRatio,l=this.fullLayout;i.width=0|Math.ceil(s*l.width),i.height=0|Math.ceil(s*l.height),i.style.width=\\\"100%\\\",i.style.height=\\\"100%\\\",i.style.position=\\\"absolute\\\",i.style.top=\\\"0px\\\",i.style.left=\\\"0px\\\",i.style[\\\"pointer-events\\\"]=\\\"none\\\";var c=this.svgContainer=document.createElementNS(\\\"http://www.w3.org/2000/svg\\\",\\\"svg\\\");c.style.position=\\\"absolute\\\",c.style.top=c.style.left=\\\"0px\\\",c.style.width=c.style.height=\\\"100%\\\",c.style[\\\"z-index\\\"]=20,c.style[\\\"pointer-events\\\"]=\\\"none\\\";var u=this.mouseContainer=document.createElement(\\\"div\\\");u.style.position=\\\"absolute\\\";var h=this.container;h.appendChild(i),h.appendChild(c),h.appendChild(u)},y.toImage=function(t){t||(t=\\\"png\\\"),this.stopped=!0,this.staticPlot&&this.container.appendChild(o),this.glplot.setDirty(!0),this.glplot.draw();var e=this.glplot.gl,r=e.drawingBufferWidth,n=e.drawingBufferHeight;e.bindFramebuffer(e.FRAMEBUFFER,null);var i=new Uint8Array(r*n*4);e.readPixels(0,0,r,n,e.RGBA,e.UNSIGNED_BYTE,i);for(var a=0,s=n-1;s>a;++a,--s)for(var l=0;r>l;++l)for(var c=0;4>c;++c){var u=i[4*(r*a+l)+c];i[4*(r*a+l)+c]=i[4*(r*s+l)+c],i[4*(r*s+l)+c]=u}var h=document.createElement(\\\"canvas\\\");h.width=r,h.height=n;var f=h.getContext(\\\"2d\\\"),d=f.createImageData(r,n);d.data.set(i),f.putImageData(d,0,0);var p;switch(t){case\\\"jpeg\\\":p=h.toDataURL(\\\"image/jpeg\\\");break;case\\\"webp\\\":p=h.toDataURL(\\\"image/webp\\\");break;default:p=h.toDataURL(\\\"image/png\\\")}return this.staticPlot&&this.container.removeChild(o),p},y.computeTickMarks=function(){this.xaxis._length=this.glplot.viewBox[2]-this.glplot.viewBox[0],this.yaxis._length=this.glplot.viewBox[3]-this.glplot.viewBox[1];for(var t=[l.calcTicks(this.xaxis),l.calcTicks(this.yaxis)],e=0;2>e;++e)for(var r=0;r<t[e].length;++r)t[e][r].text=g(t[e][r].text+\\\"\\\").replace(/\\\\n/g,\\\" \\\");return t},y.updateAxes=function(t){var e=l.subplotMatch,r=\\\"xaxis\\\"+this.id.match(e)[1],n=\\\"yaxis\\\"+this.id.match(e)[2];this.xaxis=t[r],this.yaxis=t[n]},y.updateFx=function(t){var e=this.fullLayout;e.dragmode=t.dragmode,e.hovermode=t.hovermode},y.cameraChanged=function(){var t=this.camera,e=this.xaxis.range,r=this.yaxis.range;this.glplot.setDataBox([e[0],r[0],e[1],r[1]]);var n=this.computeTickMarks(),o=this.glplotOptions.ticks;i(n,o)&&(this.glplotOptions.ticks=n,this.glplotOptions.dataBox=t.dataBox,this.glplot.update(this.glplotOptions))},y.destroy=function(){this.glplot.dispose(),this.staticPlot||this.container.removeChild(this.canvas),this.container.removeChild(this.svgContainer),this.container.removeChild(this.mouseContainer),this.glplot=null,this.stopped=!0},y.plot=function(t,e){var r,n,i=this.glplot,o=this.pixelRatio;this.fullLayout=e,this.updateAxes(e);var a=e.width,c=e.height,u=0|Math.ceil(o*a),h=0|Math.ceil(o*c),f=this.canvas;f.width===u&&f.height===h||(f.width=u,f.height=h),t?Array.isArray(t)||(t=[t]):t=[];var d,p;for(r=0;r<t.length;++r){if(d=t[r],p=this.traces[d.uid])p.update(d);else{var g=s.getModule(d.type);p=g.plot(this,d)}this.traces[d.uid]=p}var v=Object.keys(this.traces);t:for(r=0;r<v.length;++r){for(n=0;n<t.length;++n)if(t[n].uid===v[r])continue t;p=this.traces[v[r]],p.dispose(),delete this.traces[v[r]]}var y=this.glplotOptions;y.merge(e),y.screenBox=[0,0,a,c];var b=e._size,x=this.xaxis.domain,_=this.yaxis.domain;y.viewBox=[b.l+x[0]*b.w,b.b+_[0]*b.h,a-b.r-(1-x[1])*b.w,c-b.t-(1-_[1])*b.h],this.mouseContainer.style.width=b.w*(x[1]-x[0])+\\\"px\\\",this.mouseContainer.style.height=b.h*(_[1]-_[0])+\\\"px\\\",this.mouseContainer.height=b.h*(_[1]-_[0]),\\n\",\n       \"this.mouseContainer.style.left=b.l+x[0]*b.w+\\\"px\\\",this.mouseContainer.style.top=b.t+(1-_[1])*b.h+\\\"px\\\";var w=this.bounds;for(w[0]=w[1]=1/0,w[2]=w[3]=-(1/0),v=Object.keys(this.traces),r=0;r<v.length;++r){p=this.traces[v[r]];for(var A=0;2>A;++A)w[A]=Math.min(w[A],p.bounds[A]),w[A+2]=Math.max(w[A+2],p.bounds[A+2])}var k;for(r=0;2>r;++r)w[r]>w[r+2]&&(w[r]=-1,w[r+2]=1),k=this[m[r]],k._length=y.viewBox[r+2]-y.viewBox[r],l.doAutoRange(k);y.ticks=this.computeTickMarks();var M=this.xaxis.range,T=this.yaxis.range;y.dataBox=[M[0],T[0],M[1],T[1]],y.merge(e),i.update(y)},y.draw=function(){if(!this.stopped){requestAnimationFrame(this.redraw);var t=this.glplot,e=this.camera,r=e.mouseListener,n=this.fullLayout;this.cameraChanged();var i=r.x*t.pixelRatio,o=this.canvas.height-t.pixelRatio*r.y;if(e.boxEnabled&&\\\"zoom\\\"===n.dragmode)this.selectBox.enabled=!0,this.selectBox.selectBox=[Math.min(e.boxStart[0],e.boxEnd[0]),Math.min(e.boxStart[1],e.boxEnd[1]),Math.max(e.boxStart[0],e.boxEnd[0]),Math.max(e.boxStart[1],e.boxEnd[1])],t.setDirty();else{this.selectBox.enabled=!1;var a=n._size,s=this.xaxis.domain,l=this.yaxis.domain,u=t.pick(i/t.pixelRatio+a.l+s[0]*a.w,o/t.pixelRatio-(a.t+(1-l[1])*a.h));if(u&&n.hovermode){var h=u.object._trace.handlePick(u);if(h&&(!this.lastPickResult||this.lastPickResult.trace!==h.trace||this.lastPickResult.dataCoord[0]!==h.dataCoord[0]||this.lastPickResult.dataCoord[1]!==h.dataCoord[1])){var f=this.lastPickResult=h;this.spikes.update({center:u.dataCoord}),f.screenCoord=[((t.viewBox[2]-t.viewBox[0])*(u.dataCoord[0]-t.dataBox[0])/(t.dataBox[2]-t.dataBox[0])+t.viewBox[0])/t.pixelRatio,(this.canvas.height-(t.viewBox[3]-t.viewBox[1])*(u.dataCoord[1]-t.dataBox[1])/(t.dataBox[3]-t.dataBox[1])-t.viewBox[1])/t.pixelRatio];var d=f.hoverinfo;if(\\\"all\\\"!==d){var p=d.split(\\\"+\\\");-1===p.indexOf(\\\"x\\\")&&(f.traceCoord[0]=void 0),-1===p.indexOf(\\\"y\\\")&&(f.traceCoord[1]=void 0),-1===p.indexOf(\\\"text\\\")&&(f.textLabel=void 0),-1===p.indexOf(\\\"name\\\")&&(f.name=void 0)}c.loneHover({x:f.screenCoord[0],y:f.screenCoord[1],xLabel:this.hoverFormatter(\\\"xaxis\\\",f.traceCoord[0]),yLabel:this.hoverFormatter(\\\"yaxis\\\",f.traceCoord[1]),text:f.textLabel,name:f.name,color:f.color},{container:this.svgContainer}),this.lastPickResult={dataCoord:u.dataCoord}}}else!u&&this.lastPickResult&&(this.spikes.update({}),this.lastPickResult=null,c.loneUnhover(this.svgContainer))}t.draw()}},y.hoverFormatter=function(t,e){if(void 0!==e){var r=this[t];return l.tickText(r,r.c2l(e),\\\"hover\\\").text}}},{\\\"../../lib/html2unicode\\\":372,\\\"../../lib/show_no_webgl_msg\\\":381,\\\"../../plots/cartesian/axes\\\":393,\\\"../../plots/cartesian/graph_interact\\\":398,\\\"../../plots/plots\\\":437,\\\"./camera\\\":419,\\\"./convert\\\":420,\\\"gl-plot2d\\\":122,\\\"gl-select-box\\\":152,\\\"gl-spikes2d\\\":173}],423:[function(t,e,r){\\\"use strict\\\";function n(t,e){t=t||document.body,e=e||{};var r=[.01,1/0];\\\"distanceLimits\\\"in e&&(r[0]=e.distanceLimits[0],r[1]=e.distanceLimits[1]),\\\"zoomMin\\\"in e&&(r[0]=e.zoomMin),\\\"zoomMax\\\"in e&&(r[1]=e.zoomMax);var n=o({center:e.center||[0,0,0],up:e.up||[0,1,0],eye:e.eye||[0,0,10],mode:e.mode||\\\"orbit\\\",distanceLimits:r}),l=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],c=0,u=t.clientWidth,h=t.clientHeight,f={keyBindingMode:\\\"rotate\\\",view:n,element:t,delay:e.delay||16,rotateSpeed:e.rotateSpeed||1,zoomSpeed:e.zoomSpeed||1,translateSpeed:e.translateSpeed||1,flipX:!!e.flipX,flipY:!!e.flipY,modes:n.modes,tick:function(){var e=i(),r=this.delay,o=e-2*r;n.idle(e-r),n.recalcMatrix(o),n.flush(e-(100+2*r));for(var a=!0,s=n.computedMatrix,f=0;16>f;++f)a=a&&l[f]===s[f],l[f]=s[f];var d=t.clientWidth===u&&t.clientHeight===h;return u=t.clientWidth,h=t.clientHeight,a?!d:(c=Math.exp(n.computedRadius[0]),!0)},lookAt:function(t,e,r){n.lookAt(n.lastT(),t,e,r)},rotate:function(t,e,r){n.rotate(n.lastT(),t,e,r)},pan:function(t,e,r){n.pan(n.lastT(),t,e,r)},translate:function(t,e,r){n.translate(n.lastT(),t,e,r)}};Object.defineProperties(f,{matrix:{get:function(){return n.computedMatrix},set:function(t){return n.setMatrix(n.lastT(),t),n.computedMatrix},enumerable:!0},mode:{get:function(){return n.getMode()},set:function(t){var e=n.computedUp.slice(),r=n.computedEye.slice(),o=n.computedCenter.slice();if(n.setMode(t),\\\"turntable\\\"===t){var a=i();n._active.lookAt(a,r,o,e),n._active.lookAt(a+500,r,o,[0,0,1]),n._active.flush(a)}return n.getMode()},enumerable:!0},center:{get:function(){return n.computedCenter},set:function(t){return n.lookAt(n.lastT(),null,t),n.computedCenter},enumerable:!0},eye:{get:function(){return n.computedEye},set:function(t){return n.lookAt(n.lastT(),t),n.computedEye},enumerable:!0},up:{get:function(){return n.computedUp},set:function(t){return n.lookAt(n.lastT(),null,null,t),n.computedUp},enumerable:!0},distance:{get:function(){return c},set:function(t){return n.setDistance(n.lastT(),t),t},enumerable:!0},distanceLimits:{get:function(){return n.getDistanceLimits(r)},set:function(t){return n.setDistanceLimits(t),t},enumerable:!0}}),t.addEventListener(\\\"contextmenu\\\",function(t){return t.preventDefault(),!1});var d=0,p=0;return a(t,function(e,r,o,a){var s=\\\"rotate\\\"===f.keyBindingMode,l=\\\"pan\\\"===f.keyBindingMode,u=\\\"zoom\\\"===f.keyBindingMode,h=!!a.control,g=!!a.alt,v=!!a.shift,m=!!(1&e),y=!!(2&e),b=!!(4&e),x=1/t.clientHeight,_=x*(r-d),w=x*(o-p),A=f.flipX?1:-1,k=f.flipY?1:-1,M=i(),T=Math.PI*f.rotateSpeed;if((s&&m&&!h&&!g&&!v||m&&!h&&!g&&v)&&n.rotate(M,A*T*_,-k*T*w,0),(l&&m&&!h&&!g&&!v||y||m&&h&&!g&&!v)&&n.pan(M,-f.translateSpeed*_*c,f.translateSpeed*w*c,0),u&&m&&!h&&!g&&!v||b||m&&!h&&g&&!v){var E=-f.zoomSpeed*w/window.innerHeight*(M-n.lastT())*100;n.pan(M,0,0,c*(Math.exp(E)-1))}return d=r,p=o,!0}),s(t,function(t,e){var r=f.flipX?1:-1,o=f.flipY?1:-1,a=i();if(Math.abs(t)>Math.abs(e))n.rotate(a,0,0,-t*r*Math.PI*f.rotateSpeed/window.innerWidth);else{var s=-f.zoomSpeed*o*e/window.innerHeight*(a-n.lastT())/100;n.pan(a,0,0,c*(Math.exp(s)-1))}},!0),f}e.exports=n;var i=t(\\\"right-now\\\"),o=t(\\\"3d-view\\\"),a=t(\\\"mouse-change\\\"),s=t(\\\"mouse-wheel\\\")},{\\\"3d-view\\\":38,\\\"mouse-change\\\":198,\\\"mouse-wheel\\\":202,\\\"right-now\\\":212}],424:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"./scene\\\"),i=t(\\\"../plots\\\"),o=[\\\"xaxis\\\",\\\"yaxis\\\",\\\"zaxis\\\"];r.name=\\\"gl3d\\\",r.attr=\\\"scene\\\",r.idRoot=\\\"scene\\\",r.idRegex=/^scene([2-9]|[1-9][0-9]+)?$/,r.attrRegex=/^scene([2-9]|[1-9][0-9]+)?$/,r.attributes=t(\\\"./layout/attributes\\\"),r.layoutAttributes=t(\\\"./layout/layout_attributes\\\"),r.supplyLayoutDefaults=t(\\\"./layout/defaults\\\"),r.plot=function(t){var e=t._fullLayout,r=t._fullData,o=i.getSubplotIds(e,\\\"gl3d\\\");e._paperdiv.style({width:e.width+\\\"px\\\",height:e.height+\\\"px\\\"}),t._context.setBackground(t,e.paper_bgcolor);for(var a=0;a<o.length;a++){var s=o[a],l=i.getSubplotData(r,\\\"gl3d\\\",s),c=e[s]._scene;void 0===c&&(c=new n({id:s,graphDiv:t,container:t.querySelector(\\\".gl-container\\\"),staticPlot:t._context.staticPlot,plotGlPixelRatio:t._context.plotGlPixelRatio},e),e[s]._scene=c),c.plot(l,e,t.layout)}},r.clean=function(t,e,r,n){for(var o=i.getSubplotIds(n,\\\"gl3d\\\"),a=0;a<o.length;a++){var s=o[a];!e[s]&&n[s]._scene&&n[s]._scene.destroy()}},r.cleanId=function(t){if(t.match(/^scene[0-9]*$/)){var e=t.substr(5);return\\\"1\\\"===e&&(e=\\\"\\\"),\\\"scene\\\"+e}},r.setConvert=t(\\\"./set_convert\\\"),r.initAxes=function(t){for(var e=t._fullLayout,r=i.getSubplotIds(e,\\\"gl3d\\\"),n=0;n<r.length;++n)for(var a=r[n],s=e[a],l=0;3>l;++l){var c=o[l],u=s[c];u._td=t}}},{\\\"../plots\\\":437,\\\"./layout/attributes\\\":425,\\\"./layout/defaults\\\":429,\\\"./layout/layout_attributes\\\":430,\\\"./scene\\\":434,\\\"./set_convert\\\":435}],425:[function(t,e,r){\\\"use strict\\\";e.exports={scene:{valType:\\\"sceneid\\\",dflt:\\\"scene\\\"}}},{}],426:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../cartesian/layout_attributes\\\"),i=t(\\\"../../../lib/extend\\\").extendFlat;e.exports={showspikes:{valType:\\\"boolean\\\",dflt:!0},spikesides:{valType:\\\"boolean\\\",dflt:!0},spikethickness:{valType:\\\"number\\\",min:0,dflt:2},spikecolor:{valType:\\\"color\\\",dflt:\\\"rgb(0,0,0)\\\"},showbackground:{valType:\\\"boolean\\\",dflt:!1},backgroundcolor:{valType:\\\"color\\\",dflt:\\\"rgba(204, 204, 204, 0.5)\\\"},showaxeslabels:{valType:\\\"boolean\\\",dflt:!0},title:n.title,titlefont:n.titlefont,type:n.type,autorange:n.autorange,rangemode:n.rangemode,range:n.range,fixedrange:n.fixedrange,tickmode:n.tickmode,nticks:n.nticks,tick0:n.tick0,dtick:n.dtick,tickvals:n.tickvals,ticktext:n.ticktext,ticks:n.ticks,mirror:n.mirror,ticklen:n.ticklen,tickwidth:n.tickwidth,tickcolor:n.tickcolor,showticklabels:n.showticklabels,tickfont:n.tickfont,tickangle:n.tickangle,tickprefix:n.tickprefix,showtickprefix:n.showtickprefix,ticksuffix:n.ticksuffix,showticksuffix:n.showticksuffix,showexponent:n.showexponent,exponentformat:n.exponentformat,tickformat:n.tickformat,hoverformat:n.hoverformat,showline:n.showline,linecolor:n.linecolor,linewidth:n.linewidth,showgrid:n.showgrid,gridcolor:i({},n.gridcolor,{dflt:\\\"rgb(204, 204, 204)\\\"}),gridwidth:n.gridwidth,zeroline:n.zeroline,zerolinecolor:n.zerolinecolor,zerolinewidth:n.zerolinewidth}},{\\\"../../../lib/extend\\\":369,\\\"../../cartesian/layout_attributes\\\":400}],427:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../../lib\\\"),i=t(\\\"./axis_attributes\\\"),o=t(\\\"../../cartesian/axis_defaults\\\"),a=[\\\"xaxis\\\",\\\"yaxis\\\",\\\"zaxis\\\"],s=function(){};e.exports=function(t,e,r){function l(t,e){return n.coerce(c,u,i,t,e)}for(var c,u,h=0;h<a.length;h++){var f=a[h];c=t[f]||{},u={_id:f[0]+r.scene,_name:f},e[f]=u=o(c,u,l,{font:r.font,letter:f[0],data:r.data,showGrid:!0}),l(\\\"gridcolor\\\"),l(\\\"title\\\",f[0]),u.setScale=s,l(\\\"showspikes\\\")&&(l(\\\"spikesides\\\"),l(\\\"spikethickness\\\"),l(\\\"spikecolor\\\")),l(\\\"showbackground\\\")&&l(\\\"backgroundcolor\\\"),l(\\\"showaxeslabels\\\")}}},{\\\"../../../lib\\\":373,\\\"../../cartesian/axis_defaults\\\":394,\\\"./axis_attributes\\\":426}],428:[function(t,e,r){\\\"use strict\\\";function n(){this.bounds=[[-10,-10,-10],[10,10,10]],this.ticks=[[],[],[]],this.tickEnable=[!0,!0,!0],this.tickFont=[\\\"sans-serif\\\",\\\"sans-serif\\\",\\\"sans-serif\\\"],this.tickSize=[12,12,12],this.tickAngle=[0,0,0],this.tickColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.tickPad=[18,18,18],this.labels=[\\\"x\\\",\\\"y\\\",\\\"z\\\"],this.labelEnable=[!0,!0,!0],this.labelFont=[\\\"Open Sans\\\",\\\"Open Sans\\\",\\\"Open Sans\\\"],this.labelSize=[20,20,20],this.labelAngle=[0,0,0],this.labelColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.labelPad=[30,30,30],this.lineEnable=[!0,!0,!0],this.lineMirror=[!1,!1,!1],this.lineWidth=[1,1,1],this.lineColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.lineTickEnable=[!0,!0,!0],this.lineTickMirror=[!1,!1,!1],this.lineTickLength=[10,10,10],this.lineTickWidth=[1,1,1],this.lineTickColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.gridEnable=[!0,!0,!0],this.gridWidth=[1,1,1],this.gridColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.zeroEnable=[!0,!0,!0],this.zeroLineColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.zeroLineWidth=[2,2,2],this.backgroundEnable=[!0,!0,!0],this.backgroundColor=[[.8,.8,.8,.5],[.8,.8,.8,.5],[.8,.8,.8,.5]],this._defaultTickPad=l(this.tickPad),this._defaultLabelPad=l(this.labelPad),this._defaultLineTickLength=l(this.lineTickLength)}function i(t){var e=new n;return e.merge(t),e}var o=t(\\\"arraytools\\\"),a=t(\\\"../../../lib/html2unicode\\\"),s=t(\\\"../../../lib/str2rgbarray\\\"),l=o.copy1D,c=[\\\"xaxis\\\",\\\"yaxis\\\",\\\"zaxis\\\"],u=n.prototype;u.merge=function(t){for(var e=this,r=0;3>r;++r){var n=t[c[r]];e.labels[r]=a(n.title),\\\"titlefont\\\"in n&&(n.titlefont.color&&(e.labelColor[r]=s(n.titlefont.color)),n.titlefont.family&&(e.labelFont[r]=n.titlefont.family),n.titlefont.size&&(e.labelSize[r]=n.titlefont.size)),\\\"showline\\\"in n&&(e.lineEnable[r]=n.showline),\\\"linecolor\\\"in n&&(e.lineColor[r]=s(n.linecolor)),\\\"linewidth\\\"in n&&(e.lineWidth[r]=n.linewidth),\\\"showgrid\\\"in n&&(e.gridEnable[r]=n.showgrid),\\\"gridcolor\\\"in n&&(e.gridColor[r]=s(n.gridcolor)),\\\"gridwidth\\\"in n&&(e.gridWidth[r]=n.gridwidth),\\\"log\\\"===n.type?e.zeroEnable[r]=!1:\\\"zeroline\\\"in n&&(e.zeroEnable[r]=n.zeroline),\\\"zerolinecolor\\\"in n&&(e.zeroLineColor[r]=s(n.zerolinecolor)),\\\"zerolinewidth\\\"in n&&(e.zeroLineWidth[r]=n.zerolinewidth),\\\"ticks\\\"in n&&n.ticks?e.lineTickEnable[r]=!0:e.lineTickEnable[r]=!1,\\\"ticklen\\\"in n&&(e.lineTickLength[r]=e._defaultLineTickLength[r]=n.ticklen),\\\"tickcolor\\\"in n&&(e.lineTickColor[r]=s(n.tickcolor)),\\\"tickwidth\\\"in n&&(e.lineTickWidth[r]=n.tickwidth),\\\"tickangle\\\"in n&&(e.tickAngle[r]=\\\"auto\\\"===n.tickangle?0:Math.PI*-n.tickangle/180),\\\"showticklabels\\\"in n&&(e.tickEnable[r]=n.showticklabels),\\\"tickfont\\\"in n&&(n.tickfont.color&&(e.tickColor[r]=s(n.tickfont.color)),n.tickfont.family&&(e.tickFont[r]=n.tickfont.family),n.tickfont.size&&(e.tickSize[r]=n.tickfont.size)),\\\"mirror\\\"in n?-1!==[\\\"ticks\\\",\\\"all\\\",\\\"allticks\\\"].indexOf(n.mirror)?(e.lineTickMirror[r]=!0,e.lineMirror[r]=!0):n.mirror===!0?(e.lineTickMirror[r]=!1,e.lineMirror[r]=!0):(e.lineTickMirror[r]=!1,e.lineMirror[r]=!1):e.lineMirror[r]=!1,\\\"showbackground\\\"in n&&n.showbackground!==!1?(e.backgroundEnable[r]=!0,e.backgroundColor[r]=s(n.backgroundcolor)):e.backgroundEnable[r]=!1}},e.exports=i},{\\\"../../../lib/html2unicode\\\":372,\\\"../../../lib/str2rgbarray\\\":383,arraytools:48}],429:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../../lib\\\"),i=t(\\\"../../plots\\\"),o=t(\\\"./layout_attributes\\\"),a=t(\\\"./axis_defaults\\\");e.exports=function(t,e,r){function s(t,e){return n.coerce(c,u,o,t,e)}function l(r){var n=!(e._hasCartesian||e._hasGeo||e._hasGL2D||e._hasPie),i=-1!==o[r].values.indexOf(t[r]);return n&&i?t[r]:void 0}if(e._hasGL3D)for(var c,u,h=i.findSubplotIds(r,\\\"gl3d\\\"),f=h.length,d=0;f>d;d++){var p=h[d];t[p]?c=t[p]:t[p]=c={},u=e[p]||{},s(\\\"bgcolor\\\");for(var g=Object.keys(o.camera),v=0;v<g.length;v++)s(\\\"camera.\\\"+g[v]+\\\".x\\\"),s(\\\"camera.\\\"+g[v]+\\\".y\\\"),s(\\\"camera.\\\"+g[v]+\\\".z\\\");s(\\\"domain.x\\\",[d/f,(d+1)/f]),s(\\\"domain.y\\\");var m=!!s(\\\"aspectratio.x\\\")&&!!s(\\\"aspectratio.y\\\")&&!!s(\\\"aspectratio.z\\\"),y=m?\\\"manual\\\":\\\"auto\\\",b=s(\\\"aspectmode\\\",y);m||(c.aspectratio=u.aspectratio={x:1,y:1,z:1},\\\"manual\\\"===b&&(u.aspectmode=\\\"auto\\\")),a(c,u,{font:e.font,scene:p,data:r}),s(\\\"dragmode\\\",l(\\\"dragmode\\\")),s(\\\"hovermode\\\",l(\\\"hovermode\\\")),e[p]=u}}},{\\\"../../../lib\\\":373,\\\"../../plots\\\":437,\\\"./axis_defaults\\\":427,\\\"./layout_attributes\\\":430}],430:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){return{x:{valType:\\\"number\\\",dflt:t},y:{valType:\\\"number\\\",dflt:e},z:{valType:\\\"number\\\",dflt:r}}}var i=t(\\\"./axis_attributes\\\"),o=t(\\\"../../../lib/extend\\\").extendFlat;e.exports={bgcolor:{valType:\\\"color\\\",dflt:\\\"rgba(0,0,0,0)\\\"},camera:{up:o(n(0,0,1),{}),center:o(n(0,0,0),{}),eye:o(n(1.25,1.25,1.25),{})},domain:{x:{valType:\\\"info_array\\\",items:[{valType:\\\"number\\\",min:0,max:1},{valType:\\\"number\\\",min:0,max:1}],dflt:[0,1]},y:{valType:\\\"info_array\\\",items:[{valType:\\\"number\\\",min:0,max:1},{valType:\\\"number\\\",min:0,max:1}],dflt:[0,1]}},aspectmode:{valType:\\\"enumerated\\\",values:[\\\"auto\\\",\\\"cube\\\",\\\"data\\\",\\\"manual\\\"],dflt:\\\"auto\\\"},aspectratio:{x:{valType:\\\"number\\\",min:0},y:{valType:\\\"number\\\",min:0},z:{valType:\\\"number\\\",min:0}},xaxis:i,yaxis:i,zaxis:i,dragmode:{valType:\\\"enumerated\\\",values:[\\\"orbit\\\",\\\"turntable\\\",\\\"zoom\\\",\\\"pan\\\"],dflt:\\\"turntable\\\"},hovermode:{valType:\\\"enumerated\\\",values:[\\\"closest\\\",!1],dflt:\\\"closest\\\"},_deprecated:{cameraposition:{valType:\\\"info_array\\\"}}}},{\\\"../../../lib/extend\\\":369,\\\"./axis_attributes\\\":426}],431:[function(t,e,r){\\\"use strict\\\";function n(){this.enabled=[!0,!0,!0],this.colors=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.drawSides=[!0,!0,!0],this.lineWidth=[1,1,1]}function i(t){var e=new n;return e.merge(t),e}var o=t(\\\"../../../lib/str2rgbarray\\\"),a=[\\\"xaxis\\\",\\\"yaxis\\\",\\\"zaxis\\\"],s=n.prototype;s.merge=function(t){for(var e=0;3>e;++e){var r=t[a[e]];this.enabled[e]=r.showspikes,this.colors[e]=o(r.spikecolor),this.drawSides[e]=r.spikesides,this.lineWidth[e]=r.spikethickness}},e.exports=i},{\\\"../../../lib/str2rgbarray\\\":383}],432:[function(t,e,r){\\\"use strict\\\";function n(t){for(var e=new Array(3),r=0;3>r;++r){for(var n=t[r],i=new Array(n.length),o=0;o<n.length;++o)i[o]=n[o].x;e[r]=i}return e}function i(t){for(var e=t.axesOptions,r=t.glplot.axesPixels,i=t.fullSceneLayout,c=[[],[],[]],u=0;3>u;++u){var h=i[s[u]];if(h._length=(r[u].hi-r[u].lo)*r[u].pixelsPerDataUnit/t.dataScale[u],Math.abs(h._length)===1/0)c[u]=[];else{h.range[0]=r[u].lo/t.dataScale[u],h.range[1]=r[u].hi/t.dataScale[u],h._m=1/(t.dataScale[u]*r[u].pixelsPerDataUnit),h.range[0]===h.range[1]&&(h.range[0]-=1,h.range[1]+=1);var f=h.tickmode;if(\\\"auto\\\"===h.tickmode){h.tickmode=\\\"linear\\\";var d=h.nticks||o.Lib.constrain(h._length/40,4,9);o.Axes.autoTicks(h,Math.abs(h.range[1]-h.range[0])/d)}for(var p=o.Axes.calcTicks(h),g=0;g<p.length;++g)p[g].x=p[g].x*t.dataScale[u],p[g].text=a(p[g].text);c[u]=p,h.tickmode=f}}e.ticks=c;for(var u=0;3>u;++u){l[u]=.5*(t.glplot.bounds[0][u]+t.glplot.bounds[1][u]);for(var g=0;2>g;++g)e.bounds[g][u]=t.glplot.bounds[g][u]}t.contourLevels=n(c)}e.exports=i;var o=t(\\\"../../../plotly\\\"),a=t(\\\"../../../lib/html2unicode\\\"),s=[\\\"xaxis\\\",\\\"yaxis\\\",\\\"zaxis\\\"],l=[0,0,0]},{\\\"../../../lib/html2unicode\\\":372,\\\"../../../plotly\\\":390}],433:[function(t,e,r){\\\"use strict\\\";function n(t,e){var r,n,i=[0,0,0,0];for(r=0;4>r;++r)for(n=0;4>n;++n)i[n]+=t[4*r+n]*e[r];return i}function i(t,e){var r=n(t.projection,n(t.view,n(t.model,[e[0],e[1],e[2],1])));return r}e.exports=i},{}],434:[function(t,e,r){\\\"use strict\\\";function n(t){function e(e,r){if(\\\"string\\\"==typeof r)return r;var n=t.fullSceneLayout[e];return d.tickText(n,n.c2l(r),\\\"hover\\\").text}var r=t.svgContainer,n=t.container.getBoundingClientRect(),i=n.width,o=n.height;r.setAttributeNS(null,\\\"viewBox\\\",\\\"0 0 \\\"+i+\\\" \\\"+o),r.setAttributeNS(null,\\\"width\\\",i),r.setAttributeNS(null,\\\"height\\\",o),w(t),t.glplot.axes.update(t.axesOptions);for(var a=Object.keys(t.traces),s=null,l=t.glplot.selection,c=0;c<a.length;++c){var u=t.traces[a[c]];u.handlePick(l)&&(s=u),u.setContourLevels&&u.setContourLevels()}var h;if(null!==s){var f=y(t.glplot.cameraParams,l.dataCoordinate),u=s.data,g=u.hoverinfo,v=e(\\\"xaxis\\\",l.traceCoordinate[0]),m=e(\\\"yaxis\\\",l.traceCoordinate[1]),b=e(\\\"zaxis\\\",l.traceCoordinate[2]);if(\\\"all\\\"!==g){var x=g.split(\\\"+\\\");-1===x.indexOf(\\\"x\\\")&&(v=void 0),-1===x.indexOf(\\\"y\\\")&&(m=void 0),-1===x.indexOf(\\\"z\\\")&&(b=void 0),-1===x.indexOf(\\\"text\\\")&&(l.textLabel=void 0),-1===x.indexOf(\\\"name\\\")&&(s.name=void 0)}t.fullSceneLayout.hovermode&&p.loneHover({x:(.5+.5*f[0]/f[3])*i,y:(.5-.5*f[1]/f[3])*o,xLabel:v,yLabel:m,zLabel:b,text:l.textLabel,name:s.name,color:s.color},{container:r});var _={points:[{x:v,y:m,z:b,data:u._input,fullData:u,curveNumber:u.index,pointNumber:l.data.index}]};l.buttons&&l.distance<5?t.graphDiv.emit(\\\"plotly_click\\\",_):t.graphDiv.emit(\\\"plotly_hover\\\",_),h=_}else p.loneUnhover(r),t.graphDiv.emit(\\\"plotly_unhover\\\",h)}function i(t,e,r,i){var o={canvas:r,gl:i,container:t.container,axes:t.axesOptions,spikes:t.spikeOptions,pickRadius:10,snapToData:!0,autoScale:!0,autoBounds:!1};if(t.staticMode){if(!c){l=document.createElement(\\\"canvas\\\");try{c=l.getContext(\\\"webgl\\\",{preserveDrawingBuffer:!0,premultipliedAlpha:!0})}catch(a){throw new Error(\\\"error creating static canvas/context for image server\\\")}}o.pixelRatio=t.pixelRatio,o.gl=c,o.canvas=l}try{t.glplot=u(o)}catch(a){v(t)}if(t.staticMode||t.glplot.canvas.addEventListener(\\\"webglcontextlost\\\",function(t){console.log(\\\"lost context\\\"),t.preventDefault()}),!t.camera){var s=t.fullSceneLayout.camera;t.camera=m(t.container,{center:[s.center.x,s.center.y,s.center.z],eye:[s.eye.x,s.eye.y,s.eye.z],up:[s.up.x,s.up.y,s.up.z],zoomMin:.1,zoomMax:100,mode:\\\"orbit\\\"})}return t.glplot.mouseListener.enabled=!1,t.glplot.camera=t.camera,t.glplot.oncontextloss=function(){t.recoverContext()},t.glplot.onrender=n.bind(null,t),t.traces={},!0}function o(t,e){var r=document.createElement(\\\"div\\\"),n=t.container;this.graphDiv=t.graphDiv;var o=document.createElementNS(\\\"http://www.w3.org/2000/svg\\\",\\\"svg\\\");o.style.position=\\\"absolute\\\",o.style.top=o.style.left=\\\"0px\\\",o.style.width=o.style.height=\\\"100%\\\",o.style[\\\"z-index\\\"]=20,o.style[\\\"pointer-events\\\"]=\\\"none\\\",r.appendChild(o),this.svgContainer=o,r.id=t.id,r.style.position=\\\"absolute\\\",r.style.top=r.style.left=\\\"0px\\\",r.style.width=r.style.height=\\\"100%\\\",n.appendChild(r),this.fullLayout=e,this.id=t.id||\\\"scene\\\",this.fullSceneLayout=e[this.id],this.plotArgs=[[],{},{}],this.axesOptions=x(e[this.id]),this.spikeOptions=_(e[this.id]),this.container=r,this.staticMode=!!t.staticPlot,this.pixelRatio=t.plotGlPixelRatio||2,this.dataScale=[1,1,1],this.contourLevels=[[],[],[]],!i(this,e)}function a(t,e,r,n){for(var i=0;i<e.length;++i)if(Array.isArray(e[i]))for(var o=0;o<e[i].length;++o){var a=t.d2l(e[i][o]);!isNaN(a)&&isFinite(a)&&(n[0][r]=Math.min(n[0][r],a),n[1][r]=Math.max(n[1][r],a))}else{var a=t.d2l(e[i]);!isNaN(a)&&isFinite(a)&&(n[0][r]=Math.min(n[0][r],a),n[1][r]=Math.max(n[1][r],a))}}function s(t,e,r){var n=t.fullSceneLayout;a(n.xaxis,e.x,0,r),a(n.yaxis,e.y,1,r),a(n.zaxis,e.z,2,r)}var l,c,u=t(\\\"gl-plot3d\\\"),h=t(\\\"../../lib\\\"),f=t(\\\"../../plots/plots\\\"),d=t(\\\"../../plots/cartesian/axes\\\"),p=t(\\\"../../plots/cartesian/graph_interact\\\"),g=t(\\\"../../lib/str2rgbarray\\\"),v=t(\\\"../../lib/show_no_webgl_msg\\\"),m=t(\\\"./camera\\\"),y=t(\\\"./project\\\"),b=t(\\\"./set_convert\\\"),x=t(\\\"./layout/convert\\\"),_=t(\\\"./layout/spikes\\\"),w=t(\\\"./layout/tick_marks\\\"),A=o.prototype;A.recoverContext=function(){function t(){return r.isContextLost()?void requestAnimationFrame(t):i(e,e.fullLayout,n,r)?void e.plot.apply(e,e.plotArgs):void console.error(\\\"catastrophic/unrecoverable webgl error.  context lost.\\\")}var e=this,r=this.glplot.gl,n=this.glplot.canvas;this.glplot.dispose(),requestAnimationFrame(t)};var k=[\\\"xaxis\\\",\\\"yaxis\\\",\\\"zaxis\\\"];A.plot=function(t,e,r){if(this.plotArgs=[t,e,r],!this.glplot.contextLost){var n,i,o,a,l=e[this.id],c=r[this.id];for(l.bgcolor?this.glplot.clearColor=g(l.bgcolor):this.glplot.clearColor=[0,0,0,0],this.glplot.snapToData=!0,this.fullSceneLayout=l,this.glplotLayout=l,this.axesOptions.merge(l),this.spikeOptions.merge(l),this.updateFx(l.dragmode,l.hovermode),this.glplot.update({}),o=0;3>o;++o){var u=l[k[o]];b(u)}t?Array.isArray(t)||(t=[t]):t=[];for(var h=[[1/0,1/0,1/0],[-(1/0),-(1/0),-(1/0)]],o=0;o<t.length;++o){var n=t[o];n.visible===!0&&s(this,n,h)}for(var d=[1,1,1],a=0;3>a;++a)h[0][a]>h[1][a]?d[a]=1:h[1][a]===h[0][a]?d[a]=1:d[a]=1/(h[1][a]-h[0][a]);this.dataScale=d;for(var o=0;o<t.length;++o)if(n=t[o],n.visible===!0){if(i=this.traces[n.uid])i.update(n);else{var p=f.getModule(n.type);i=p.plot(this,n),this.traces[n.uid]=i}i.name=n.name}var v=Object.keys(this.traces);t:for(o=0;o<v.length;++o){for(a=0;a<t.length;++a)if(t[a].uid===v[o]&&t[a].visible===!0)continue t;i=this.traces[v[o]],i.dispose(),delete this.traces[v[o]]}var m=[[0,0,0],[0,0,0]],y=[],x={};for(o=0;3>o;++o){var u=l[k[o]],_=u.type;if(_ in x?(x[_].acc*=d[o],x[_].count+=1):x[_]={acc:d[o],count:1},u.autorange){for(m[0][o]=1/0,m[1][o]=-(1/0),a=0;a<this.glplot.objects.length;++a){var w=this.glplot.objects[a].bounds;m[0][o]=Math.min(m[0][o],w[0][o]/d[o]),m[1][o]=Math.max(m[1][o],w[1][o]/d[o])}if(\\\"rangemode\\\"in u&&\\\"tozero\\\"===u.rangemode&&(m[0][o]=Math.min(m[0][o],0),m[1][o]=Math.max(m[1][o],0)),m[0][o]>m[1][o])m[0][o]=-1,m[1][o]=1;else{var A=m[1][o]-m[0][o];m[0][o]-=A/32,m[1][o]+=A/32}}else{var M=l[k[o]].range;m[0][o]=M[0],m[1][o]=M[1]}m[0][o]===m[1][o]&&(m[0][o]-=1,m[1][o]+=1),y[o]=m[1][o]-m[0][o],this.glplot.bounds[0][o]=m[0][o]*d[o],this.glplot.bounds[1][o]=m[1][o]*d[o]}for(var T=[1,1,1],o=0;3>o;++o){var u=l[k[o]],_=u.type,E=x[_];T[o]=Math.pow(E.acc,1/E.count)/d[o]}var L,S=4;if(\\\"auto\\\"===l.aspectmode)L=Math.max.apply(null,T)/Math.min.apply(null,T)<=S?T:[1,1,1];else if(\\\"cube\\\"===l.aspectmode)L=[1,1,1];else if(\\\"data\\\"===l.aspectmode)L=T;else{if(\\\"manual\\\"!==l.aspectmode)throw new Error(\\\"scene.js aspectRatio was not one of the enumerated types\\\");var C=l.aspectratio;L=[C.x,C.y,C.z]}l.aspectratio.x=c.aspectratio.x=L[0],l.aspectratio.y=c.aspectratio.y=L[1],l.aspectratio.z=c.aspectratio.z=L[2],this.glplot.aspect=L;var P=l.domain||null,z=e._size||null;if(P&&z){var R=this.container.style;R.position=\\\"absolute\\\",R.left=z.l+P.x[0]*z.w+\\\"px\\\",R.top=z.t+(1-P.y[1])*z.h+\\\"px\\\",R.width=z.w*(P.x[1]-P.x[0])+\\\"px\\\",R.height=z.h*(P.y[1]-P.y[0])+\\\"px\\\"}}},A.destroy=function(){this.glplot.dispose(),this.container.parentNode.removeChild(this.container),this.glplot=null},A.setCameraToDefault=function(){this.glplot.camera.lookAt([1.25,1.25,1.25],[0,0,0],[0,0,1])},A.getCamera=function(){this.glplot.camera.view.recalcMatrix(this.camera.view.lastT());var t=this.glplot.camera.up,e=this.glplot.camera.center,r=this.glplot.camera.eye;return{up:{x:t[0],y:t[1],z:t[2]},center:{x:e[0],y:e[1],z:e[2]},eye:{x:r[0],y:r[1],z:r[2]}}},A.setCamera=function(t){var e=t.up,r=t.center,n=t.eye;this.glplot.camera.lookAt([n.x,n.y,n.z],[r.x,r.y,r.z],[e.x,e.y,e.z])},A.saveCamera=function(t){function e(t,e,r,n){var i=[\\\"up\\\",\\\"center\\\",\\\"eye\\\"],o=[\\\"x\\\",\\\"y\\\",\\\"z\\\"];return t[i[r]][o[n]]===e[i[r]][o[n]]}var r=this.getCamera(),n=h.nestedProperty(t,this.id+\\\".camera\\\"),i=n.get(),o=!1;if(void 0===i)o=!0;else for(var a=0;3>a;a++)for(var s=0;3>s;s++)if(!e(r,i,a,s)){o=!0;break}return o&&n.set(r),o},A.updateFx=function(t,e){var r=this.camera;r&&(\\\"orbit\\\"===t?(r.mode=\\\"orbit\\\",r.keyBindingMode=\\\"rotate\\\"):\\\"turntable\\\"===t?(r.up=[0,0,1],r.mode=\\\"turntable\\\",r.keyBindingMode=\\\"rotate\\\"):r.keyBindingMode=t),this.fullSceneLayout.hovermode=e},A.toImage=function(t){t||(t=\\\"png\\\"),this.staticMode&&this.container.appendChild(l),this.glplot.redraw();var e=this.glplot.gl,r=e.drawingBufferWidth,n=e.drawingBufferHeight;e.bindFramebuffer(e.FRAMEBUFFER,null);var i=new Uint8Array(r*n*4);e.readPixels(0,0,r,n,e.RGBA,e.UNSIGNED_BYTE,i);for(var o=0,a=n-1;a>o;++o,--a)for(var s=0;r>s;++s)for(var c=0;4>c;++c){var u=i[4*(r*o+s)+c];i[4*(r*o+s)+c]=i[4*(r*a+s)+c],i[4*(r*a+s)+c]=u}var h=document.createElement(\\\"canvas\\\");h.width=r,h.height=n;var f=h.getContext(\\\"2d\\\"),d=f.createImageData(r,n);d.data.set(i),f.putImageData(d,0,0);var p;switch(t){case\\\"jpeg\\\":p=h.toDataURL(\\\"image/jpeg\\\");break;case\\\"webp\\\":p=h.toDataURL(\\\"image/webp\\\");break;default:p=h.toDataURL(\\\"image/png\\\")}return this.staticMode&&this.container.removeChild(l),p},e.exports=o},{\\\"../../lib\\\":373,\\\"../../lib/show_no_webgl_msg\\\":381,\\\"../../lib/str2rgbarray\\\":383,\\\"../../plots/cartesian/axes\\\":393,\\\"../../plots/cartesian/graph_interact\\\":398,\\\"../../plots/plots\\\":437,\\\"./camera\\\":423,\\\"./layout/convert\\\":428,\\\"./layout/spikes\\\":431,\\\"./layout/tick_marks\\\":432,\\\"./project\\\":433,\\\"./set_convert\\\":435,\\\"gl-plot3d\\\":140}],435:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../cartesian/axes\\\"),i=function(){};e.exports=function(t){n.setConvert(t),t.setScale=i}},{\\\"../cartesian/axes\\\":393}],436:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../plotly\\\"),i=t(\\\"./font_attributes\\\"),o=t(\\\"../components/color/attributes\\\"),a=n.Lib.extendFlat;e.exports={font:{family:a({},i.family,{dflt:'\\\"Open Sans\\\", verdana, arial, sans-serif'}),size:a({},i.size,{dflt:12}),color:a({},i.color,{dflt:o.defaultLine})},title:{valType:\\\"string\\\",dflt:\\\"Click to enter Plot title\\\"},titlefont:a({},i,{}),autosize:{valType:\\\"enumerated\\\",values:[!0,!1,\\\"initial\\\"]},width:{valType:\\\"number\\\",min:10,dflt:700},height:{valType:\\\"number\\\",min:10,dflt:450},margin:{l:{valType:\\\"number\\\",min:0,dflt:80},r:{valType:\\\"number\\\",min:0,dflt:80},t:{valType:\\\"number\\\",min:0,dflt:100},b:{valType:\\\"number\\\",min:0,dflt:80},pad:{valType:\\\"number\\\",min:0,dflt:0},autoexpand:{valType:\\\"boolean\\\",dflt:!0}},paper_bgcolor:{valType:\\\"color\\\",dflt:o.background},plot_bgcolor:{valType:\\\"color\\\",dflt:o.background},separators:{valType:\\\"string\\\",dflt:\\\".,\\\"},hidesources:{valType:\\\"boolean\\\",dflt:!1},smith:{valType:\\\"enumerated\\\",values:[!1],dflt:!1},showlegend:{valType:\\\"boolean\\\"},_hasCartesian:{valType:\\\"boolean\\\",dflt:!1},_hasGL3D:{valType:\\\"boolean\\\",dflt:!1},_hasGeo:{valType:\\\"boolean\\\",dflt:!1},_hasPie:{valType:\\\"boolean\\\",dflt:!1},_hasGL2D:{valType:\\\"boolean\\\",dflt:!1},_composedModules:{\\\"*\\\":\\\"Fx\\\"},_nestedModules:{xaxis:\\\"Axes\\\",yaxis:\\\"Axes\\\",scene:\\\"gl3d\\\",geo:\\\"geo\\\",legend:\\\"Legend\\\",annotations:\\\"Annotations\\\",shapes:\\\"Shapes\\\"}}},{\\\"../components/color/attributes\\\":300,\\\"../plotly\\\":390,\\\"./font_attributes\\\":407}],437:[function(t,e,r){\\\"use strict\\\";function n(t){return\\\"object\\\"==typeof t&&(t=t.type),t}function i(t,e){e.text(\\\"\\\");var r=e.append(\\\"a\\\").attr({\\\"xlink:xlink:href\\\":\\\"#\\\",\\\"class\\\":\\\"link--impt link--embedview\\\",\\\"font-weight\\\":\\\"bold\\\"}).text(t._context.linkText+\\\" \\\"+String.fromCharCode(187));if(t._context.sendData)r.on(\\\"click\\\",function(){u.sendDataToCloud(t)});else{var n=window.location.pathname.split(\\\"/\\\"),i=window.location.search;r.attr({\\\"xlink:xlink:show\\\":\\\"new\\\",\\\"xlink:xlink:href\\\":\\\"/\\\"+n[2].split(\\\".\\\")[0]+\\\"/\\\"+n[1]+i})}}function o(t,e){for(var r,n=Object.keys(e),i=0;i<n.length;++i){var a=n[i];if(\\\"_\\\"===a.charAt(0)||\\\"function\\\"==typeof e[a]){if(a in t)continue;t[a]=e[a]}else if(Array.isArray(e[a])&&Array.isArray(t[a])&&e[a].length&&c.isPlainObject(e[a][0])){if(e[a].length!==t[a].length)throw new Error(\\\"relinkPrivateKeys needs equal length arrays\\\");for(r=0;r<e[a].length;r++)o(t[a][r],e[a][r])}else c.isPlainObject(e[a])&&c.isPlainObject(t[a])&&(o(t[a],e[a]),Object.keys(t[a]).length||delete t[a])}}var a=t(\\\"../plotly\\\"),s=t(\\\"d3\\\"),l=t(\\\"fast-isnumeric\\\"),c=t(\\\"../lib\\\"),u=e.exports={},h=u.modules={},f=u.allTypes=[],d=u.allCategories={},p=u.subplotsRegistry={};u.attributes=t(\\\"./attributes\\\"),u.attributes.type.values=f,u.fontAttrs=t(\\\"./font_attributes\\\"),u.layoutAttributes=t(\\\"./layout_attributes\\\"),u.fontWeight=\\\"normal\\\",u.register=function(t,e,r,n){if(h[e])return void console.log(\\\"type \\\"+e+\\\" already registered\\\");for(var i={},o=0;o<r.length;o++)i[r[o]]=!0,d[r[o]]=!0;h[e]={_module:t,categories:i},n&&Object.keys(n).length&&(h[e].meta=n),f.push(e)},u.getModule=function(t){if(void 0!==t.r)return console.log(\\\"Oops, tried to put a polar trace on an incompatible graph of cartesian data. Ignoring this dataset.\\\",t),!1;var e=h[n(t)];return e?e._module:!1},u.traceIs=function(t,e){if(t=n(t),\\\"various\\\"===t)return!1;var r=h[t];return r||(void 0!==t&&console.warn(\\\"unrecognized trace type \\\"+t),r=h[u.attributes.type.dflt]),!!r.categories[e]},u.registerSubplot=function(t){var e=t.name;return p[e]?void console.log(\\\"plot type \\\"+e+\\\" already registered\\\"):void(p[e]=t)},u.findSubplotIds=function(t,e){var r=[];if(void 0===u.subplotsRegistry[e])return r;for(var n=u.subplotsRegistry[e].attr,i=0;i<t.length;i++){var o=t[i];u.traceIs(o,e)&&-1===r.indexOf(o[n])&&r.push(o[n])}return r},u.getSubplotIds=function(t,e){var r=u.subplotsRegistry[e];if(void 0===r)return[];if(\\\"cartesian\\\"===e&&!t._hasCartesian)return[];if(\\\"gl2d\\\"===e&&!t._hasGL2D)return[];if(\\\"cartesian\\\"===e||\\\"gl2d\\\"===e)return Object.keys(t._plots);for(var n=r.idRegex,i=Object.keys(t),o=[],a=0;a<i.length;a++){var s=i[a];n.test(s)&&o.push(s)}var l=r.idRoot.length;return o.sort(function(t,e){var r=+(t.substr(l)||1),n=+(e.substr(l)||1);return r-n}),o},u.getSubplotData=function(t,e,r){if(void 0===u.subplotsRegistry[e])return[];for(var n,i=u.subplotsRegistry[e].attr,o=[],s=0;s<t.length;s++)if(n=t[s],\\\"gl2d\\\"===e&&u.traceIs(n,\\\"gl2d\\\")){var l=a.Axes.subplotMatch,c=\\\"x\\\"+r.match(l)[1],h=\\\"y\\\"+r.match(l)[2];n[i[0]]===c&&n[i[1]]===h&&o.push(n)}else n[i]===r&&o.push(n);return o},u.redrawText=function(t){return t._fullLayout._hasGL3D||t.data&&t.data[0]&&t.data[0].r?void 0:new Promise(function(e){setTimeout(function(){a.Annotations.drawAll(t),a.Legend.draw(t),(t.calcdata||[]).forEach(function(t){t[0]&&t[0].t&&t[0].t.cb&&t[0].t.cb()}),e(u.previousPromises(t))},300)})},u.resize=function(t){return new Promise(function(e,r){t&&\\\"none\\\"!==s.select(t).style(\\\"display\\\")||r(new Error(\\\"Resize must be passed a plot div element.\\\")),t._redrawTimer&&clearTimeout(t._redrawTimer),t._redrawTimer=setTimeout(function(){if((t._fullLayout||{}).autosize){var r=t.changed;t.autoplay=!0,a.relayout(t,{autosize:!0}),t.changed=r,e(t)}},100)})},u.previousPromises=function(t){return(t._promises||[]).length?Promise.all(t._promises).then(function(){t._promises=[]}):void 0},u.addLinks=function(t){var e=t._fullLayout,r=e._paper.selectAll(\\\"text.js-plot-link-container\\\").data([0]);r.enter().append(\\\"text\\\").classed(\\\"js-plot-link-container\\\",!0).style({\\\"font-family\\\":'\\\"Open Sans\\\", Arial, sans-serif',\\\"font-size\\\":\\\"12px\\\",fill:a.Color.defaultLine,\\\"pointer-events\\\":\\\"all\\\"}).each(function(){var t=s.select(this);t.append(\\\"tspan\\\").classed(\\\"js-link-to-tool\\\",!0),t.append(\\\"tspan\\\").classed(\\\"js-link-spacer\\\",!0),t.append(\\\"tspan\\\").classed(\\\"js-sourcelinks\\\",!0)});var n=r.node(),o={y:e._paper.attr(\\\"height\\\")-9};document.body.contains(n)&&n.getComputedTextLength()>=e.width-20?(o[\\\"text-anchor\\\"]=\\\"start\\\",o.x=5):(o[\\\"text-anchor\\\"]=\\\"end\\\",o.x=e._paper.attr(\\\"width\\\")-7),r.attr(o);var l=r.select(\\\".js-link-to-tool\\\"),c=r.select(\\\".js-link-spacer\\\"),u=r.select(\\\".js-sourcelinks\\\");t._context.showSources&&t._context.showSources(t),t._context.showLink&&i(t,l),c.text(l.text()&&u.text()?\\\" - \\\":\\\"\\\")},u.sendDataToCloud=function(t){t.emit(\\\"plotly_beforeexport\\\");var e=window.PLOTLYENV&&window.PLOTLYENV.BASE_URL||\\\"https://plot.ly\\\",r=s.select(t).append(\\\"div\\\").attr(\\\"id\\\",\\\"hiddenform\\\").style(\\\"display\\\",\\\"none\\\"),n=r.append(\\\"form\\\").attr({\\n\",\n       \"action:e+\\\"/external\\\",method:\\\"post\\\",target:\\\"_blank\\\"}),i=n.append(\\\"input\\\").attr({type:\\\"text\\\",name:\\\"data\\\"});return i.node().value=u.graphJson(t,!1,\\\"keepdata\\\"),n.node().submit(),r.remove(),t.emit(\\\"plotly_afterexport\\\"),!1},u.supplyDefaults=function(t){var e,r,n,i,s,l,c=t._fullLayout||{},h=t._fullLayout={},f=t.layout||{},d=t._fullData||[],p=t._fullData=[],g=t.data||[],v=t._modules=[];for(u.supplyLayoutGlobalDefaults(f,h),h._dataLength=g.length,e=0;e<g.length;e++)r=g[e],n=u.supplyDataDefaults(r,e,h),p.push(n),u.traceIs(n,\\\"cartesian\\\")?h._hasCartesian=!0:u.traceIs(n,\\\"gl3d\\\")?h._hasGL3D=!0:u.traceIs(n,\\\"geo\\\")?h._hasGeo=!0:u.traceIs(n,\\\"pie\\\")?h._hasPie=!0:u.traceIs(n,\\\"gl2d\\\")?h._hasGL2D=!0:\\\"r\\\"in n&&(h._hasPolar=!0),i=n._module,i&&-1===v.indexOf(i)&&v.push(i);for(e=0;e<v.length;e++)i=v[e],i.cleanData&&i.cleanData(p);if(d.length===g.length)for(e=0;e<p.length;e++)o(p[e],d[e]);for(u.supplyLayoutModuleDefaults(f,h,p),u.cleanPlot(p,h,d,c),o(h,c),u.doAutoMargin(t),s=a.Axes.list(t),e=0;e<s.length;e++)l=s[e],l._td=t,l.setScale();if((t.calcdata||[]).length===p.length)for(e=0;e<p.length;e++)r=p[e],(t.calcdata[e][0]||{}).trace=r},u.cleanPlot=function(t,e,r,n){var i,o,a=Object.keys(p);for(i=0;i<a.length;i++){var s=p[a[i]];s.clean&&s.clean(t,e,r,n)}var l=!!n._paper,c=!!n._infolayer;t:for(i=0;i<r.length;i++){var u=r[i],h=u.uid;for(o=0;o<t.length;o++){var f=t[o];if(h===f.uid)continue t}l&&n._paper.selectAll(\\\".hm\\\"+h+\\\",.contour\\\"+h+\\\",#clip\\\"+h).remove(),c&&n._infolayer.selectAll(\\\".cb\\\"+h).remove()}},u.supplyDataDefaults=function(t,e,r){function n(e,r){return c.coerce(t,o,u.attributes,e,r)}function i(e,r){return u.traceIs(o,e)?c.coerce(t,o,u.subplotsRegistry[e].attributes,r):void 0}var o={},s=a.Color.defaults[e%a.Color.defaults.length];o.index=e;var l,h,f=n(\\\"visible\\\");return n(\\\"type\\\"),n(\\\"uid\\\"),i(\\\"gl3d\\\",\\\"scene\\\"),i(\\\"geo\\\",\\\"geo\\\"),(f||l)&&(h=u.getModule(o),o._module=h),f&&n(\\\"hoverinfo\\\",1===r._dataLength?\\\"x+y+z+text\\\":void 0),h&&f&&h.supplyDefaults(t,o,s,r),f&&(n(\\\"name\\\",\\\"trace \\\"+e),u.traceIs(o,\\\"noOpacity\\\")||n(\\\"opacity\\\"),i(\\\"cartesian\\\",\\\"xaxis\\\"),i(\\\"cartesian\\\",\\\"yaxis\\\"),i(\\\"gl2d\\\",\\\"xaxis\\\"),i(\\\"gl2d\\\",\\\"yaxis\\\"),u.traceIs(o,\\\"showLegend\\\")&&(n(\\\"showlegend\\\"),n(\\\"legendgroup\\\"))),o._input=t,o},u.supplyLayoutGlobalDefaults=function(t,e){function r(r,n){return c.coerce(t,e,u.layoutAttributes,r,n)}var n=c.coerceFont(r,\\\"font\\\");r(\\\"title\\\"),c.coerceFont(r,\\\"titlefont\\\",{family:n.family,size:Math.round(1.4*n.size),color:n.color});var i=r(\\\"autosize\\\",t.width&&t.height?!1:\\\"initial\\\");r(\\\"width\\\"),r(\\\"height\\\"),r(\\\"margin.l\\\"),r(\\\"margin.r\\\"),r(\\\"margin.t\\\"),r(\\\"margin.b\\\"),r(\\\"margin.pad\\\"),r(\\\"margin.autoexpand\\\"),\\\"initial\\\"!==i&&u.sanitizeMargins(e),r(\\\"paper_bgcolor\\\"),r(\\\"separators\\\"),r(\\\"hidesources\\\"),r(\\\"smith\\\"),r(\\\"_hasCartesian\\\"),r(\\\"_hasGL3D\\\"),r(\\\"_hasGeo\\\"),r(\\\"_hasPie\\\"),r(\\\"_hasGL2D\\\")},u.supplyLayoutModuleDefaults=function(t,e,r){var n,i;a.Axes.supplyLayoutDefaults(t,e,r);var o=Object.keys(p);for(n=0;n<o.length;n++)i=p[o[n]],i.supplyLayoutDefaults&&i.supplyLayoutDefaults(t,e,r);var s=Object.keys(h);for(n=0;n<s.length;n++)i=h[f[n]]._module,i.supplyLayoutDefaults&&i.supplyLayoutDefaults(t,e,r);var l=[\\\"Fx\\\",\\\"Annotations\\\",\\\"Shapes\\\",\\\"Legend\\\"];for(n=0;n<l.length;n++)i=l[n],a[i]&&a[i].supplyLayoutDefaults(t,e,r)},u.purge=function(t){var e=t._fullLayout||{};void 0!==e._glcontainer&&e._glcontainer.remove(),void 0!==e._geocontainer&&e._geocontainer.remove(),e._modeBar&&e._modeBar.destroy(),delete t.data,delete t.layout,delete t._fullData,delete t._fullLayout,delete t.calcdata,delete t.framework,delete t.empty,delete t.fid,delete t.undoqueue,delete t.undonum,delete t.autoplay,delete t.changed,delete t._modules,delete t._tester,delete t._testref,delete t._promises,delete t._redrawTimer,delete t._replotting,delete t.firstscatter,delete t.hmlumcount,delete t.hmpixcount,delete t.numboxes,delete t._hoverTimer,delete t._lastHoverTime,t.removeAllListeners&&t.removeAllListeners()},u.style=function(t){for(var e=t._modules,r=0;r<e.length;r++){var n=e[r];n.style&&n.style(t)}},u.sanitizeMargins=function(t){if(t&&t.margin){var e,r=t.width,n=t.height,i=t.margin,o=r-(i.l+i.r),a=n-(i.t+i.b);0>o&&(e=(r-1)/(i.l+i.r),i.l=Math.floor(e*i.l),i.r=Math.floor(e*i.r)),0>a&&(e=(n-1)/(i.t+i.b),i.t=Math.floor(e*i.t),i.b=Math.floor(e*i.b))}},u.autoMargin=function(t,e,r){var n=t._fullLayout;if(n._pushmargin||(n._pushmargin={}),n.margin.autoexpand!==!1){if(r){var i=void 0===r.pad?12:r.pad;r.l+r.r>.5*n.width&&(r.l=r.r=0),r.b+r.t>.5*n.height&&(r.b=r.t=0),n._pushmargin[e]={l:{val:r.x,size:r.l+i},r:{val:r.x,size:r.r+i},b:{val:r.y,size:r.b+i},t:{val:r.y,size:r.t+i}}}else delete n._pushmargin[e];t._replotting||u.doAutoMargin(t)}},u.doAutoMargin=function(t){var e=t._fullLayout;e._size||(e._size={}),e._pushmargin||(e._pushmargin={});var r=e._size,n=JSON.stringify(r),i=Math.max(e.margin.l||0,0),o=Math.max(e.margin.r||0,0),s=Math.max(e.margin.t||0,0),c=Math.max(e.margin.b||0,0),u=e._pushmargin;return e.margin.autoexpand!==!1&&(u.base={l:{val:0,size:i},r:{val:1,size:o},t:{val:1,size:s},b:{val:0,size:c}},Object.keys(u).forEach(function(t){var r=u[t].l||{},n=u[t].b||{},a=r.val,h=r.size,f=n.val,d=n.size;Object.keys(u).forEach(function(t){if(l(h)&&u[t].r){var r=u[t].r.val,n=u[t].r.size;if(r>a){var p=(h*r+(n-e.width)*a)/(r-a),g=(n*(1-a)+(h-e.width)*(1-r))/(r-a);p>=0&&g>=0&&p+g>i+o&&(i=p,o=g)}}if(l(d)&&u[t].t){var v=u[t].t.val,m=u[t].t.size;if(v>f){var y=(d*v+(m-e.height)*f)/(v-f),b=(m*(1-f)+(d-e.height)*(1-v))/(v-f);y>=0&&b>=0&&y+b>c+s&&(c=y,s=b)}}})})),r.l=Math.round(i),r.r=Math.round(o),r.t=Math.round(s),r.b=Math.round(c),r.p=Math.round(e.margin.pad),r.w=Math.round(e.width)-r.l-r.r,r.h=Math.round(e.height)-r.t-r.b,t._replotting||\\\"{}\\\"===n||n===JSON.stringify(e._size)?void 0:a.plot(t)},u.graphJson=function(t,e,r,n,i){function o(t){if(\\\"function\\\"==typeof t)return null;if(c.isPlainObject(t)){var e,n,i={};for(e in t)if(\\\"function\\\"!=typeof t[e]&&-1===[\\\"_\\\",\\\"[\\\"].indexOf(e.charAt(0))){if(\\\"keepdata\\\"===r){if(\\\"src\\\"===e.substr(e.length-3))continue}else if(\\\"keepstream\\\"===r){if(n=t[e+\\\"src\\\"],\\\"string\\\"==typeof n&&n.indexOf(\\\":\\\")>0&&!c.isPlainObject(t.stream))continue}else if(\\\"keepall\\\"!==r&&(n=t[e+\\\"src\\\"],\\\"string\\\"==typeof n&&n.indexOf(\\\":\\\")>0))continue;i[e]=o(t[e])}return i}return Array.isArray(t)?t.map(o):t&&t.getTime?c.ms2DateTime(t):t}(i&&e&&!t._fullData||i&&!e&&!t._fullLayout)&&u.supplyDefaults(t);var a=i?t._fullData:t.data,s=i?t._fullLayout:t.layout,l={data:(a||[]).map(function(t){var r=o(t);return e&&delete r.fit,r})};return e||(l.layout=o(s)),t.framework&&t.framework.isPolar&&(l=t.framework.getConfig()),\\\"object\\\"===n?l:JSON.stringify(l)}},{\\\"../lib\\\":373,\\\"../plotly\\\":390,\\\"./attributes\\\":391,\\\"./font_attributes\\\":407,\\\"./layout_attributes\\\":436,d3:70,\\\"fast-isnumeric\\\":74}],438:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../traces/scatter/attributes\\\"),i=n.marker;e.exports={r:n.r,t:n.t,marker:{color:i.color,size:i.size,symbol:i.symbol,opacity:i.opacity}}},{\\\"../../traces/scatter/attributes\\\":528}],439:[function(t,e,r){\\\"use strict\\\";function n(t,e){var r={showline:{valType:\\\"boolean\\\"},showticklabels:{valType:\\\"boolean\\\"},tickorientation:{valType:\\\"enumerated\\\",values:[\\\"horizontal\\\",\\\"vertical\\\"]},ticklen:{valType:\\\"number\\\",min:0},tickcolor:{valType:\\\"color\\\"},ticksuffix:{valType:\\\"string\\\"},endpadding:{valType:\\\"number\\\"},visible:{valType:\\\"boolean\\\"}};return o({},e,r)}var i=t(\\\"../cartesian/layout_attributes\\\"),o=t(\\\"../../lib/extend\\\").extendFlat,a=o({},i.domain,{});e.exports={radialaxis:n(\\\"radial\\\",{range:{valType:\\\"info_array\\\",items:[{valType:\\\"number\\\"},{valType:\\\"number\\\"}]},domain:a,orientation:{valType:\\\"number\\\"}}),angularaxis:n(\\\"angular\\\",{range:{valType:\\\"info_array\\\",items:[{valType:\\\"number\\\",dflt:0},{valType:\\\"number\\\",dflt:360}]},domain:a}),layout:{direction:{valType:\\\"enumerated\\\",values:[\\\"clockwise\\\",\\\"counterclockwise\\\"]},orientation:{valType:\\\"angle\\\"}}}},{\\\"../../lib/extend\\\":369,\\\"../cartesian/layout_attributes\\\":400}],440:[function(t,e,r){var n=t(\\\"../../plotly\\\"),i=t(\\\"d3\\\"),o=e.exports={version:\\\"0.2.2\\\",manager:t(\\\"./micropolar_manager\\\")},a=n.Lib.extendDeepAll;o.Axis=function(){function t(t){r=t||r;var c=l.data,h=l.layout;return(\\\"string\\\"==typeof r||r.nodeName)&&(r=i.select(r)),r.datum(c).each(function(t,r){function l(t,e){return s(t)%360+h.orientation}var c=t.slice();u={data:o.util.cloneJson(c),layout:o.util.cloneJson(h)};var f=0;c.forEach(function(t,e){t.color||(t.color=h.defaultColorRange[f],f=(f+1)%h.defaultColorRange.length),t.strokeColor||(t.strokeColor=\\\"LinePlot\\\"===t.geometry?t.color:i.rgb(t.color).darker().toString()),u.data[e].color=t.color,u.data[e].strokeColor=t.strokeColor,u.data[e].strokeDash=t.strokeDash,u.data[e].strokeSize=t.strokeSize});var d=c.filter(function(t,e){var r=t.visible;return\\\"undefined\\\"==typeof r||r===!0}),p=!1,g=d.map(function(t,e){return p=p||\\\"undefined\\\"!=typeof t.groupId,t});if(p){var v=i.nest().key(function(t,e){return\\\"undefined\\\"!=typeof t.groupId?t.groupId:\\\"unstacked\\\"}).entries(g),m=[],y=v.map(function(t,e){if(\\\"unstacked\\\"===t.key)return t.values;var r=t.values[0].r.map(function(t,e){return 0});return t.values.forEach(function(t,e,n){t.yStack=[r],m.push(r),r=o.util.sumArrays(t.r,r)}),t.values});d=i.merge(y)}d.forEach(function(t,e){t.t=Array.isArray(t.t[0])?t.t:[t.t],t.r=Array.isArray(t.r[0])?t.r:[t.r]});var b=Math.min(h.width-h.margin.left-h.margin.right,h.height-h.margin.top-h.margin.bottom)/2;b=Math.max(10,b);var x,_=[h.margin.left+b,h.margin.top+b];if(p){var w=i.max(o.util.sumArrays(o.util.arrayLast(d).r[0],o.util.arrayLast(m)));x=[0,w]}else x=i.extent(o.util.flattenArray(d.map(function(t,e){return t.r})));h.radialAxis.domain!=o.DATAEXTENT&&(x[0]=0),n=i.scale.linear().domain(h.radialAxis.domain!=o.DATAEXTENT&&h.radialAxis.domain?h.radialAxis.domain:x).range([0,b]),u.layout.radialAxis.domain=n.domain();var A,k=o.util.flattenArray(d.map(function(t,e){return t.t})),M=\\\"string\\\"==typeof k[0];M&&(k=o.util.deduplicate(k),A=k.slice(),k=i.range(k.length),d=d.map(function(t,e){var r=t;return t.t=[k],p&&(r.yStack=t.yStack),r}));var T=d.filter(function(t,e){return\\\"LinePlot\\\"===t.geometry||\\\"DotPlot\\\"===t.geometry}).length===d.length,E=null===h.needsEndSpacing?M||!T:h.needsEndSpacing,L=h.angularAxis.domain&&h.angularAxis.domain!=o.DATAEXTENT&&!M&&h.angularAxis.domain[0]>=0,S=L?h.angularAxis.domain:i.extent(k),C=Math.abs(k[1]-k[0]);T&&!M&&(C=0);var P=S.slice();E&&M&&(P[1]+=C);var z=h.angularAxis.ticksCount||4;z>8&&(z=z/(z/8)+z%8),h.angularAxis.ticksStep&&(z=(P[1]-P[0])/z);var R=h.angularAxis.ticksStep||(P[1]-P[0])/(z*(h.minorTicks+1));A&&(R=Math.max(Math.round(R),1)),P[2]||(P[2]=R);var O=i.range.apply(this,P);if(O=O.map(function(t,e){return parseFloat(t.toPrecision(12))}),s=i.scale.linear().domain(P.slice(0,2)).range(\\\"clockwise\\\"===h.direction?[0,360]:[360,0]),u.layout.angularAxis.domain=s.domain(),u.layout.angularAxis.endPadding=E?C:0,e=i.select(this).select(\\\"svg.chart-root\\\"),\\\"undefined\\\"==typeof e||e.empty()){var I=\\\"<svg xmlns='http://www.w3.org/2000/svg' class='chart-root'>' + '<g class='outer-group'>' + '<g class='chart-group'>' + '<circle class='background-circle'></circle>' + '<g class='geometry-group'></g>' + '<g class='radial axis-group'>' + '<circle class='outside-circle'></circle>' + '</g>' + '<g class='angular axis-group'></g>' + '<g class='guides-group'><line></line><circle r='0'></circle></g>' + '</g>' + '<g class='legend-group'></g>' + '<g class='tooltips-group'></g>' + '<g class='title-group'><text></text></g>' + '</g>' + '</svg>\\\",N=(new DOMParser).parseFromString(I,\\\"application/xml\\\"),j=this.appendChild(this.ownerDocument.importNode(N.documentElement,!0));e=i.select(j)}e.select(\\\".guides-group\\\").style({\\\"pointer-events\\\":\\\"none\\\"}),e.select(\\\".angular.axis-group\\\").style({\\\"pointer-events\\\":\\\"none\\\"}),e.select(\\\".radial.axis-group\\\").style({\\\"pointer-events\\\":\\\"none\\\"});var F,D=e.select(\\\".chart-group\\\"),B={fill:\\\"none\\\",stroke:h.tickColor},U={\\\"font-size\\\":h.font.size,\\\"font-family\\\":h.font.family,fill:h.font.color,\\\"text-shadow\\\":[\\\"-1px 0px\\\",\\\"1px -1px\\\",\\\"-1px 1px\\\",\\\"1px 1px\\\"].map(function(t,e){return\\\" \\\"+t+\\\" 0 \\\"+h.font.outlineColor}).join(\\\",\\\")};if(h.showLegend){F=e.select(\\\".legend-group\\\").attr({transform:\\\"translate(\\\"+[b,h.margin.top]+\\\")\\\"}).style({display:\\\"block\\\"});var V=d.map(function(t,e){var r=o.util.cloneJson(t);return r.symbol=\\\"DotPlot\\\"===t.geometry?t.dotType||\\\"circle\\\":\\\"LinePlot\\\"!=t.geometry?\\\"square\\\":\\\"line\\\",r.visibleInLegend=\\\"undefined\\\"==typeof t.visibleInLegend||t.visibleInLegend,r.color=\\\"LinePlot\\\"===t.geometry?t.strokeColor:t.color,r});o.Legend().config({data:d.map(function(t,e){return t.name||\\\"Element\\\"+e}),legendConfig:a({},o.Legend.defaultConfig().legendConfig,{container:F,elements:V,reverseOrder:h.legend.reverseOrder})})();var q=F.node().getBBox();b=Math.min(h.width-q.width-h.margin.left-h.margin.right,h.height-h.margin.top-h.margin.bottom)/2,b=Math.max(10,b),_=[h.margin.left+b,h.margin.top+b],n.range([0,b]),u.layout.radialAxis.domain=n.domain(),F.attr(\\\"transform\\\",\\\"translate(\\\"+[_[0]+b,_[1]-b]+\\\")\\\")}else F=e.select(\\\".legend-group\\\").style({display:\\\"none\\\"});e.attr({width:h.width,height:h.height}).style({opacity:h.opacity}),D.attr(\\\"transform\\\",\\\"translate(\\\"+_+\\\")\\\").style({cursor:\\\"crosshair\\\"});var H=[(h.width-(h.margin.left+h.margin.right+2*b+(q?q.width:0)))/2,(h.height-(h.margin.top+h.margin.bottom+2*b))/2];if(H[0]=Math.max(0,H[0]),H[1]=Math.max(0,H[1]),e.select(\\\".outer-group\\\").attr(\\\"transform\\\",\\\"translate(\\\"+H+\\\")\\\"),h.title){var G=e.select(\\\"g.title-group text\\\").style(U).text(h.title),Y=G.node().getBBox();G.attr({x:_[0]-Y.width/2,y:_[1]-b-20})}var X=e.select(\\\".radial.axis-group\\\");if(h.radialAxis.gridLinesVisible){var W=X.selectAll(\\\"circle.grid-circle\\\").data(n.ticks(5));W.enter().append(\\\"circle\\\").attr({\\\"class\\\":\\\"grid-circle\\\"}).style(B),W.attr(\\\"r\\\",n),W.exit().remove()}X.select(\\\"circle.outside-circle\\\").attr({r:b}).style(B);var Z=e.select(\\\"circle.background-circle\\\").attr({r:b}).style({fill:h.backgroundColor,stroke:h.stroke});if(h.radialAxis.visible){var $=i.svg.axis().scale(n).ticks(5).tickSize(5);X.call($).attr({transform:\\\"rotate(\\\"+h.radialAxis.orientation+\\\")\\\"}),X.selectAll(\\\".domain\\\").style(B),X.selectAll(\\\"g>text\\\").text(function(t,e){return this.textContent+h.radialAxis.ticksSuffix}).style(U).style({\\\"text-anchor\\\":\\\"start\\\"}).attr({x:0,y:0,dx:0,dy:0,transform:function(t,e){return\\\"horizontal\\\"===h.radialAxis.tickOrientation?\\\"rotate(\\\"+-h.radialAxis.orientation+\\\") translate(\\\"+[0,U[\\\"font-size\\\"]]+\\\")\\\":\\\"translate(\\\"+[0,U[\\\"font-size\\\"]]+\\\")\\\"}}),X.selectAll(\\\"g>line\\\").style({stroke:\\\"black\\\"})}var K=e.select(\\\".angular.axis-group\\\").selectAll(\\\"g.angular-tick\\\").data(O),Q=K.enter().append(\\\"g\\\").classed(\\\"angular-tick\\\",!0);K.attr({transform:function(t,e){return\\\"rotate(\\\"+l(t,e)+\\\")\\\"}}).style({display:h.angularAxis.visible?\\\"block\\\":\\\"none\\\"}),K.exit().remove(),Q.append(\\\"line\\\").classed(\\\"grid-line\\\",!0).classed(\\\"major\\\",function(t,e){return e%(h.minorTicks+1)==0}).classed(\\\"minor\\\",function(t,e){return!(e%(h.minorTicks+1)==0)}).style(B),Q.selectAll(\\\".minor\\\").style({stroke:h.minorTickColor}),K.select(\\\"line.grid-line\\\").attr({x1:h.tickLength?b-h.tickLength:0,x2:b}).style({display:h.angularAxis.gridLinesVisible?\\\"block\\\":\\\"none\\\"}),Q.append(\\\"text\\\").classed(\\\"axis-text\\\",!0).style(U);var J=K.select(\\\"text.axis-text\\\").attr({x:b+h.labelOffset,dy:\\\".35em\\\",transform:function(t,e){var r=l(t,e),n=b+h.labelOffset,i=h.angularAxis.tickOrientation;return\\\"horizontal\\\"==i?\\\"rotate(\\\"+-r+\\\" \\\"+n+\\\" 0)\\\":\\\"radial\\\"==i?270>r&&r>90?\\\"rotate(180 \\\"+n+\\\" 0)\\\":null:\\\"rotate(\\\"+(180>=r&&r>0?-90:90)+\\\" \\\"+n+\\\" 0)\\\"}}).style({\\\"text-anchor\\\":\\\"middle\\\",display:h.angularAxis.labelsVisible?\\\"block\\\":\\\"none\\\"}).text(function(t,e){return e%(h.minorTicks+1)!=0?\\\"\\\":A?A[t]+h.angularAxis.ticksSuffix:t+h.angularAxis.ticksSuffix}).style(U);h.angularAxis.rewriteTicks&&J.text(function(t,e){return e%(h.minorTicks+1)!=0?\\\"\\\":h.angularAxis.rewriteTicks(this.textContent,e)});var tt=i.max(D.selectAll(\\\".angular-tick text\\\")[0].map(function(t,e){return t.getCTM().e+t.getBBox().width}));F.attr({transform:\\\"translate(\\\"+[b+tt,h.margin.top]+\\\")\\\"});var et=e.select(\\\"g.geometry-group\\\").selectAll(\\\"g\\\").size()>0,rt=e.select(\\\"g.geometry-group\\\").selectAll(\\\"g.geometry\\\").data(d);if(rt.enter().append(\\\"g\\\").attr({\\\"class\\\":function(t,e){return\\\"geometry geometry\\\"+e}}),rt.exit().remove(),d[0]||et){var nt=[];d.forEach(function(t,e){var r={};r.radialScale=n,r.angularScale=s,r.container=rt.filter(function(t,r){return r==e}),r.geometry=t.geometry,r.orientation=h.orientation,r.direction=h.direction,r.index=e,nt.push({data:t,geometryConfig:r})});var it=i.nest().key(function(t,e){return\\\"undefined\\\"!=typeof t.data.groupId||\\\"unstacked\\\"}).entries(nt),ot=[];it.forEach(function(t,e){\\\"unstacked\\\"===t.key?ot=ot.concat(t.values.map(function(t,e){return[t]})):ot.push(t.values)}),ot.forEach(function(t,e){var r;r=Array.isArray(t)?t[0].geometryConfig.geometry:t.geometryConfig.geometry;var n=t.map(function(t,e){return a(o[r].defaultConfig(),t)});o[r]().config(n)()})}var at,st,lt=e.select(\\\".guides-group\\\"),ct=e.select(\\\".tooltips-group\\\"),ut=o.tooltipPanel().config({container:ct,fontSize:8})(),ht=o.tooltipPanel().config({container:ct,fontSize:8})(),ft=o.tooltipPanel().config({container:ct,hasTick:!0})();if(!M){var dt=lt.select(\\\"line\\\").attr({x1:0,y1:0,y2:0}).style({stroke:\\\"grey\\\",\\\"pointer-events\\\":\\\"none\\\"});D.on(\\\"mousemove.angular-guide\\\",function(t,e){var r=o.util.getMousePos(Z).angle;dt.attr({x2:-b,transform:\\\"rotate(\\\"+r+\\\")\\\"}).style({opacity:.5});var n=(r+180+360-h.orientation)%360;at=s.invert(n);var i=o.util.convertToCartesian(b+12,r+180);ut.text(o.util.round(at)).move([i[0]+_[0],i[1]+_[1]])}).on(\\\"mouseout.angular-guide\\\",function(t,e){lt.select(\\\"line\\\").style({opacity:0})})}var pt=lt.select(\\\"circle\\\").style({stroke:\\\"grey\\\",fill:\\\"none\\\"});D.on(\\\"mousemove.radial-guide\\\",function(t,e){var r=o.util.getMousePos(Z).radius;pt.attr({r:r}).style({opacity:.5}),st=n.invert(o.util.getMousePos(Z).radius);var i=o.util.convertToCartesian(r,h.radialAxis.orientation);ht.text(o.util.round(st)).move([i[0]+_[0],i[1]+_[1]])}).on(\\\"mouseout.radial-guide\\\",function(t,e){pt.style({opacity:0}),ft.hide(),ut.hide(),ht.hide()}),e.selectAll(\\\".geometry-group .mark\\\").on(\\\"mouseover.tooltip\\\",function(t,r){var n=i.select(this),a=n.style(\\\"fill\\\"),s=\\\"black\\\",l=n.style(\\\"opacity\\\")||1;if(n.attr({\\\"data-opacity\\\":l}),\\\"none\\\"!=a){n.attr({\\\"data-fill\\\":a}),s=i.hsl(a).darker().toString(),n.style({fill:s,opacity:1});var c={t:o.util.round(t[0]),r:o.util.round(t[1])};M&&(c.t=A[t[0]]);var u=\\\"t: \\\"+c.t+\\\", r: \\\"+c.r,h=this.getBoundingClientRect(),f=e.node().getBoundingClientRect(),d=[h.left+h.width/2-H[0]-f.left,h.top+h.height/2-H[1]-f.top];ft.config({color:s}).text(u),ft.move(d)}else a=n.style(\\\"stroke\\\"),n.attr({\\\"data-stroke\\\":a}),s=i.hsl(a).darker().toString(),n.style({stroke:s,opacity:1})}).on(\\\"mousemove.tooltip\\\",function(t,e){return 0!=i.event.which?!1:void(i.select(this).attr(\\\"data-fill\\\")&&ft.show())}).on(\\\"mouseout.tooltip\\\",function(t,e){ft.hide();var r=i.select(this),n=r.attr(\\\"data-fill\\\");n?r.style({fill:n,opacity:r.attr(\\\"data-opacity\\\")}):r.style({stroke:r.attr(\\\"data-stroke\\\"),opacity:r.attr(\\\"data-opacity\\\")})})}),f}var e,r,n,s,l={data:[],layout:{}},c={},u={},h=i.dispatch(\\\"hover\\\"),f={};return f.render=function(e){return t(e),this},f.config=function(t){if(!arguments.length)return l;var e=o.util.cloneJson(t);return e.data.forEach(function(t,e){l.data[e]||(l.data[e]={}),a(l.data[e],o.Axis.defaultConfig().data[0]),a(l.data[e],t)}),a(l.layout,o.Axis.defaultConfig().layout),a(l.layout,e.layout),this},f.getLiveConfig=function(){return u},f.getinputConfig=function(){return c},f.radialScale=function(t){return n},f.angularScale=function(t){return s},f.svg=function(){return e},i.rebind(f,h,\\\"on\\\"),f},o.Axis.defaultConfig=function(t,e){var r={data:[{t:[1,2,3,4],r:[10,11,12,13],name:\\\"Line1\\\",geometry:\\\"LinePlot\\\",color:null,strokeDash:\\\"solid\\\",strokeColor:null,strokeSize:\\\"1\\\",visibleInLegend:!0,opacity:1}],layout:{defaultColorRange:i.scale.category10().range(),title:null,height:450,width:500,margin:{top:40,right:40,bottom:40,left:40},font:{size:12,color:\\\"gray\\\",outlineColor:\\\"white\\\",family:\\\"Tahoma, sans-serif\\\"},direction:\\\"clockwise\\\",orientation:0,labelOffset:10,radialAxis:{domain:null,orientation:-45,ticksSuffix:\\\"\\\",visible:!0,gridLinesVisible:!0,tickOrientation:\\\"horizontal\\\",rewriteTicks:null},angularAxis:{domain:[0,360],ticksSuffix:\\\"\\\",visible:!0,gridLinesVisible:!0,labelsVisible:!0,tickOrientation:\\\"horizontal\\\",rewriteTicks:null,ticksCount:null,ticksStep:null},minorTicks:0,tickLength:null,tickColor:\\\"silver\\\",minorTickColor:\\\"#eee\\\",backgroundColor:\\\"none\\\",needsEndSpacing:null,showLegend:!0,legend:{reverseOrder:!1},opacity:1}};return r},o.util={},o.DATAEXTENT=\\\"dataExtent\\\",o.AREA=\\\"AreaChart\\\",o.LINE=\\\"LinePlot\\\",o.DOT=\\\"DotPlot\\\",o.BAR=\\\"BarChart\\\",o.util._override=function(t,e){for(var r in t)r in e&&(e[r]=t[r])},o.util._extend=function(t,e){for(var r in t)e[r]=t[r]},o.util._rndSnd=function(){return 2*Math.random()-1+(2*Math.random()-1)+(2*Math.random()-1)},o.util.dataFromEquation2=function(t,e){var r=e||6,n=i.range(0,360+r,r).map(function(e,r){var n=e*Math.PI/180,i=t(n);return[e,i]});return n},o.util.dataFromEquation=function(t,e,r){var n=e||6,o=[],a=[];i.range(0,360+n,n).forEach(function(e,r){var n=e*Math.PI/180,i=t(n);o.push(e),a.push(i)});var s={t:o,r:a};return r&&(s.name=r),s},o.util.ensureArray=function(t,e){if(\\\"undefined\\\"==typeof t)return null;var r=[].concat(t);return i.range(e).map(function(t,e){return r[e]||r[0]})},o.util.fillArrays=function(t,e,r){return e.forEach(function(e,n){t[e]=o.util.ensureArray(t[e],r)}),t},o.util.cloneJson=function(t){return JSON.parse(JSON.stringify(t))},o.util.validateKeys=function(t,e){\\\"string\\\"==typeof e&&(e=e.split(\\\".\\\"));var r=e.shift();return t[r]&&(!e.length||objHasKeys(t[r],e))},o.util.sumArrays=function(t,e){return i.zip(t,e).map(function(t,e){return i.sum(t)})},o.util.arrayLast=function(t){return t[t.length-1]},o.util.arrayEqual=function(t,e){for(var r=Math.max(t.length,e.length,1);r-- >=0&&t[r]===e[r];);return-2===r},o.util.flattenArray=function(t){for(var e=[];!o.util.arrayEqual(e,t);)e=t,t=[].concat.apply([],t);return t},o.util.deduplicate=function(t){return t.filter(function(t,e,r){return r.indexOf(t)==e})},o.util.convertToCartesian=function(t,e){var r=e*Math.PI/180,n=t*Math.cos(r),i=t*Math.sin(r);return[n,i]},o.util.round=function(t,e){var r=e||2,n=Math.pow(10,r);return Math.round(t*n)/n},o.util.getMousePos=function(t){var e=i.mouse(t.node()),r=e[0],n=e[1],o={};return o.x=r,o.y=n,o.pos=e,o.angle=180*(Math.atan2(n,r)+Math.PI)/Math.PI,o.radius=Math.sqrt(r*r+n*n),o},o.util.duplicatesCount=function(t){for(var e,r={},n={},i=0,o=t.length;o>i;i++)e=t[i],e in r?(r[e]++,n[e]=r[e]):r[e]=1;return n},o.util.duplicates=function(t){return Object.keys(o.util.duplicatesCount(t))},o.util.translator=function(t,e,r,n){if(n){var i=r.slice();r=e,e=i}var o=e.reduce(function(t,e){return\\\"undefined\\\"!=typeof t?t[e]:void 0},t);\\\"undefined\\\"!=typeof o&&(e.reduce(function(t,r,n){return\\\"undefined\\\"!=typeof t?(n===e.length-1&&delete t[r],t[r]):void 0},t),r.reduce(function(t,e,n){return\\\"undefined\\\"==typeof t[e]&&(t[e]={}),n===r.length-1&&(t[e]=o),t[e]},t))},o.PolyChart=function(){function t(){var t=r[0].geometryConfig,e=t.container;\\\"string\\\"==typeof e&&(e=i.select(e)),e.datum(r).each(function(e,r){function n(e,r){var n=t.radialScale(e[1]),i=(t.angularScale(e[0])+t.orientation)*Math.PI/180;return{r:n,t:i}}function o(t){var e=t.r*Math.cos(t.t),r=t.r*Math.sin(t.t);return{x:e,y:r}}var a=!!e[0].data.yStack,l=e.map(function(t,e){return a?i.zip(t.data.t[0],t.data.r[0],t.data.yStack[0]):i.zip(t.data.t[0],t.data.r[0])}),c=t.angularScale,u=t.radialScale.domain()[0],h={};h.bar=function(r,n,o){var a=e[o].data,s=t.radialScale(r[1])-t.radialScale(0),l=t.radialScale(r[2]||0),u=a.barWidth;i.select(this).attr({\\\"class\\\":\\\"mark bar\\\",d:\\\"M\\\"+[[s+l,-u/2],[s+l,u/2],[l,u/2],[l,-u/2]].join(\\\"L\\\")+\\\"Z\\\",transform:function(e,r){return\\\"rotate(\\\"+(t.orientation+c(e[0]))+\\\")\\\"}})},h.dot=function(t,r,a){var s=t[2]?[t[0],t[1]+t[2]]:t,l=i.svg.symbol().size(e[a].data.dotSize).type(e[a].data.dotType)(t,r);i.select(this).attr({\\\"class\\\":\\\"mark dot\\\",d:l,transform:function(t,e){var r=o(n(s));return\\\"translate(\\\"+[r.x,r.y]+\\\")\\\"}})};var f=i.svg.line.radial().interpolate(e[0].data.lineInterpolation).radius(function(e){return t.radialScale(e[1])}).angle(function(e){return t.angularScale(e[0])*Math.PI/180});h.line=function(r,n,o){var a=r[2]?l[o].map(function(t,e){return[t[0],t[1]+t[2]]}):l[o];if(i.select(this).each(h.dot).style({opacity:function(t,r){return+e[o].data.dotVisible},fill:v.stroke(r,n,o)}).attr({\\\"class\\\":\\\"mark dot\\\"}),!(n>0)){var s=i.select(this.parentNode).selectAll(\\\"path.line\\\").data([0]);s.enter().insert(\\\"path\\\"),s.attr({\\\"class\\\":\\\"line\\\",d:f(a),transform:function(e,r){return\\\"rotate(\\\"+(t.orientation+90)+\\\")\\\"},\\\"pointer-events\\\":\\\"none\\\"}).style({fill:function(t,e){return v.fill(r,n,o)},\\\"fill-opacity\\\":0,stroke:function(t,e){return v.stroke(r,n,o)},\\\"stroke-width\\\":function(t,e){return v[\\\"stroke-width\\\"](r,n,o)},\\\"stroke-dasharray\\\":function(t,e){return v[\\\"stroke-dasharray\\\"](r,n,o)},opacity:function(t,e){return v.opacity(r,n,o)},display:function(t,e){return v.display(r,n,o)}})}};var d=t.angularScale.range(),p=Math.abs(d[1]-d[0])/l[0].length*Math.PI/180,g=i.svg.arc().startAngle(function(t){return-p/2}).endAngle(function(t){return p/2}).innerRadius(function(e){return t.radialScale(u+(e[2]||0))}).outerRadius(function(e){return t.radialScale(u+(e[2]||0))+t.radialScale(e[1])});h.arc=function(e,r,n){i.select(this).attr({\\\"class\\\":\\\"mark arc\\\",d:g,transform:function(e,r){return\\\"rotate(\\\"+(t.orientation+c(e[0])+90)+\\\")\\\"}})};var v={fill:function(t,r,n){return e[n].data.color},stroke:function(t,r,n){return e[n].data.strokeColor},\\\"stroke-width\\\":function(t,r,n){return e[n].data.strokeSize+\\\"px\\\"},\\\"stroke-dasharray\\\":function(t,r,n){return s[e[n].data.strokeDash]},opacity:function(t,r,n){return e[n].data.opacity},display:function(t,r,n){return\\\"undefined\\\"==typeof e[n].data.visible||e[n].data.visible?\\\"block\\\":\\\"none\\\"}},m=i.select(this).selectAll(\\\"g.layer\\\").data(l);m.enter().append(\\\"g\\\").attr({\\\"class\\\":\\\"layer\\\"});var y=m.selectAll(\\\"path.mark\\\").data(function(t,e){return t});y.enter().append(\\\"path\\\").attr({\\\"class\\\":\\\"mark\\\"}),y.style(v).each(h[t.geometryType]),y.exit().remove(),m.exit().remove()})}var e,r=[o.PolyChart.defaultConfig()],n=i.dispatch(\\\"hover\\\"),s={solid:\\\"none\\\",dash:[5,2],dot:[2,5]};return t.config=function(t){return arguments.length?(t.forEach(function(t,e){r[e]||(r[e]={}),a(r[e],o.PolyChart.defaultConfig()),a(r[e],t)}),this):r},t.getColorScale=function(){return e},i.rebind(t,n,\\\"on\\\"),t},o.PolyChart.defaultConfig=function(){var t={data:{name:\\\"geom1\\\",t:[[1,2,3,4]],r:[[1,2,3,4]],dotType:\\\"circle\\\",dotSize:64,dotVisible:!1,barWidth:20,color:\\\"#ffa500\\\",strokeSize:1,strokeColor:\\\"silver\\\",strokeDash:\\\"solid\\\",opacity:1,index:0,visible:!0,visibleInLegend:!0},geometryConfig:{geometry:\\\"LinePlot\\\",geometryType:\\\"arc\\\",direction:\\\"clockwise\\\",orientation:0,container:\\\"body\\\",radialScale:null,angularScale:null,colorScale:i.scale.category20()}};return t},o.BarChart=function(){return o.PolyChart()},o.BarChart.defaultConfig=function(){var t={geometryConfig:{geometryType:\\\"bar\\\"}};return t},o.AreaChart=function(){return o.PolyChart()},o.AreaChart.defaultConfig=function(){var t={geometryConfig:{geometryType:\\\"arc\\\"}};return t},o.DotPlot=function(){return o.PolyChart()},o.DotPlot.defaultConfig=function(){var t={geometryConfig:{geometryType:\\\"dot\\\",dotType:\\\"circle\\\"}};return t},o.LinePlot=function(){return o.PolyChart()},o.LinePlot.defaultConfig=function(){var t={geometryConfig:{geometryType:\\\"line\\\"}};return t},o.Legend=function(){function t(){var r=e.legendConfig,n=e.data.map(function(t,e){return[].concat(t).map(function(t,n){var i=a({},r.elements[e]);return i.name=t,i.color=[].concat(r.elements[e].color)[n],i})}),o=i.merge(n);o=o.filter(function(t,e){return r.elements[e]&&(r.elements[e].visibleInLegend||\\\"undefined\\\"==typeof r.elements[e].visibleInLegend)}),r.reverseOrder&&(o=o.reverse());var s=r.container;(\\\"string\\\"==typeof s||s.nodeName)&&(s=i.select(s));var l=o.map(function(t,e){return t.color}),c=r.fontSize,u=null==r.isContinuous?\\\"number\\\"==typeof o[0]:r.isContinuous,h=u?r.height:c*o.length,f=s.classed(\\\"legend-group\\\",!0),d=f.selectAll(\\\"svg\\\").data([0]),p=d.enter().append(\\\"svg\\\").attr({width:300,height:h+c,xmlns:\\\"http://www.w3.org/2000/svg\\\",\\\"xmlns:xlink\\\":\\\"http://www.w3.org/1999/xlink\\\",version:\\\"1.1\\\"});p.append(\\\"g\\\").classed(\\\"legend-axis\\\",!0),p.append(\\\"g\\\").classed(\\\"legend-marks\\\",!0);var g=i.range(o.length),v=i.scale[u?\\\"linear\\\":\\\"ordinal\\\"]().domain(g).range(l),m=i.scale[u?\\\"linear\\\":\\\"ordinal\\\"]().domain(g)[u?\\\"range\\\":\\\"rangePoints\\\"]([0,h]),y=function(t,e){var r=3*e;return\\\"line\\\"===t?\\\"M\\\"+[[-e/2,-e/12],[e/2,-e/12],[e/2,e/12],[-e/2,e/12]]+\\\"Z\\\":-1!=i.svg.symbolTypes.indexOf(t)?i.svg.symbol().type(t).size(r)():i.svg.symbol().type(\\\"square\\\").size(r)()};if(u){var b=d.select(\\\".legend-marks\\\").append(\\\"defs\\\").append(\\\"linearGradient\\\").attr({id:\\\"grad1\\\",x1:\\\"0%\\\",y1:\\\"0%\\\",x2:\\\"0%\\\",y2:\\\"100%\\\"}).selectAll(\\\"stop\\\").data(l);b.enter().append(\\\"stop\\\"),b.attr({offset:function(t,e){return e/(l.length-1)*100+\\\"%\\\"}}).style({\\\"stop-color\\\":function(t,e){return t}}),d.append(\\\"rect\\\").classed(\\\"legend-mark\\\",!0).attr({height:r.height,width:r.colorBandWidth,fill:\\\"url(#grad1)\\\"})}else{var x=d.select(\\\".legend-marks\\\").selectAll(\\\"path.legend-mark\\\").data(o);x.enter().append(\\\"path\\\").classed(\\\"legend-mark\\\",!0),x.attr({transform:function(t,e){return\\\"translate(\\\"+[c/2,m(e)+c/2]+\\\")\\\"},d:function(t,e){var r=t.symbol;return y(r,c)},fill:function(t,e){return v(e)}}),x.exit().remove()}var _=i.svg.axis().scale(m).orient(\\\"right\\\"),w=d.select(\\\"g.legend-axis\\\").attr({transform:\\\"translate(\\\"+[u?r.colorBandWidth:c,c/2]+\\\")\\\"}).call(_);return w.selectAll(\\\".domain\\\").style({fill:\\\"none\\\",stroke:\\\"none\\\"}),w.selectAll(\\\"line\\\").style({fill:\\\"none\\\",stroke:u?r.textColor:\\\"none\\\"}),w.selectAll(\\\"text\\\").style({fill:r.textColor,\\\"font-size\\\":r.fontSize}).text(function(t,e){return o[e].name}),t}var e=o.Legend.defaultConfig(),r=i.dispatch(\\\"hover\\\");return t.config=function(t){return arguments.length?(a(e,t),this):e},i.rebind(t,r,\\\"on\\\"),t},o.Legend.defaultConfig=function(t,e){var r={data:[\\\"a\\\",\\\"b\\\",\\\"c\\\"],legendConfig:{elements:[{symbol:\\\"line\\\",color:\\\"red\\\"},{symbol:\\\"square\\\",color:\\\"yellow\\\"},{symbol:\\\"diamond\\\",color:\\\"limegreen\\\"}],height:150,colorBandWidth:30,fontSize:12,container:\\\"body\\\",isContinuous:null,textColor:\\\"grey\\\",reverseOrder:!1}};return r},o.tooltipPanel=function(){var t,e,r,n={container:null,hasTick:!1,fontSize:12,color:\\\"white\\\",padding:5},s=\\\"tooltip-\\\"+o.tooltipPanel.uid++,l=10,c=function(){t=n.container.selectAll(\\\"g.\\\"+s).data([0]);var i=t.enter().append(\\\"g\\\").classed(s,!0).style({\\\"pointer-events\\\":\\\"none\\\",display:\\\"none\\\"});return r=i.append(\\\"path\\\").style({fill:\\\"white\\\",\\\"fill-opacity\\\":.9}).attr({d:\\\"M0 0\\\"}),e=i.append(\\\"text\\\").attr({dx:n.padding+l,dy:.3*+n.fontSize}),c};return c.text=function(o){var a=i.hsl(n.color).l,s=a>=.5?\\\"#aaa\\\":\\\"white\\\",u=a>=.5?\\\"black\\\":\\\"white\\\",h=o||\\\"\\\";e.style({fill:u,\\\"font-size\\\":n.fontSize+\\\"px\\\"}).text(h);var f=n.padding,d=e.node().getBBox(),p={fill:n.color,stroke:s,\\\"stroke-width\\\":\\\"2px\\\"},g=d.width+2*f+l,v=d.height+2*f;return r.attr({d:\\\"M\\\"+[[l,-v/2],[l,-v/4],[n.hasTick?0:l,0],[l,v/4],[l,v/2],[g,v/2],[g,-v/2]].join(\\\"L\\\")+\\\"Z\\\"}).style(p),t.attr({transform:\\\"translate(\\\"+[l,-v/2+2*f]+\\\")\\\"}),t.style({display:\\\"block\\\"}),c},c.move=function(e){return t?(t.attr({transform:\\\"translate(\\\"+[e[0],e[1]]+\\\")\\\"}).style({display:\\\"block\\\"}),c):void 0},c.hide=function(){return t?(t.style({display:\\\"none\\\"}),c):void 0},c.show=function(){return t?(t.style({display:\\\"block\\\"}),c):void 0},c.config=function(t){return a(n,t),c},c},o.tooltipPanel.uid=1,o.adapter={},o.adapter.plotly=function(){var t={};return t.convert=function(t,e){var r={};if(t.data&&(r.data=t.data.map(function(t,r){var n=a({},t),i=[[n,[\\\"marker\\\",\\\"color\\\"],[\\\"color\\\"]],[n,[\\\"marker\\\",\\\"opacity\\\"],[\\\"opacity\\\"]],[n,[\\\"marker\\\",\\\"line\\\",\\\"color\\\"],[\\\"strokeColor\\\"]],[n,[\\\"marker\\\",\\\"line\\\",\\\"dash\\\"],[\\\"strokeDash\\\"]],[n,[\\\"marker\\\",\\\"line\\\",\\\"width\\\"],[\\\"strokeSize\\\"]],[n,[\\\"marker\\\",\\\"symbol\\\"],[\\\"dotType\\\"]],[n,[\\\"marker\\\",\\\"size\\\"],[\\\"dotSize\\\"]],[n,[\\\"marker\\\",\\\"barWidth\\\"],[\\\"barWidth\\\"]],[n,[\\\"line\\\",\\\"interpolation\\\"],[\\\"lineInterpolation\\\"]],[n,[\\\"showlegend\\\"],[\\\"visibleInLegend\\\"]]];return i.forEach(function(t,r){o.util.translator.apply(null,t.concat(e))}),e||delete n.marker,e&&delete n.groupId,e?(\\\"LinePlot\\\"===n.geometry?(n.type=\\\"scatter\\\",n.dotVisible===!0?(delete n.dotVisible,n.mode=\\\"lines+markers\\\"):n.mode=\\\"lines\\\"):\\\"DotPlot\\\"===n.geometry?(n.type=\\\"scatter\\\",n.mode=\\\"markers\\\"):\\\"AreaChart\\\"===n.geometry?n.type=\\\"area\\\":\\\"BarChart\\\"===n.geometry&&(n.type=\\\"bar\\\"),\\n\",\n       \"delete n.geometry):(\\\"scatter\\\"===n.type?\\\"lines\\\"===n.mode?n.geometry=\\\"LinePlot\\\":\\\"markers\\\"===n.mode?n.geometry=\\\"DotPlot\\\":\\\"lines+markers\\\"===n.mode&&(n.geometry=\\\"LinePlot\\\",n.dotVisible=!0):\\\"area\\\"===n.type?n.geometry=\\\"AreaChart\\\":\\\"bar\\\"===n.type&&(n.geometry=\\\"BarChart\\\"),delete n.mode,delete n.type),n}),!e&&t.layout&&\\\"stack\\\"===t.layout.barmode)){var n=o.util.duplicates(r.data.map(function(t,e){return t.geometry}));r.data.forEach(function(t,e){var i=n.indexOf(t.geometry);-1!=i&&(r.data[e].groupId=i)})}if(t.layout){var s=a({},t.layout),l=[[s,[\\\"plot_bgcolor\\\"],[\\\"backgroundColor\\\"]],[s,[\\\"showlegend\\\"],[\\\"showLegend\\\"]],[s,[\\\"radialaxis\\\"],[\\\"radialAxis\\\"]],[s,[\\\"angularaxis\\\"],[\\\"angularAxis\\\"]],[s.angularaxis,[\\\"showline\\\"],[\\\"gridLinesVisible\\\"]],[s.angularaxis,[\\\"showticklabels\\\"],[\\\"labelsVisible\\\"]],[s.angularaxis,[\\\"nticks\\\"],[\\\"ticksCount\\\"]],[s.angularaxis,[\\\"tickorientation\\\"],[\\\"tickOrientation\\\"]],[s.angularaxis,[\\\"ticksuffix\\\"],[\\\"ticksSuffix\\\"]],[s.angularaxis,[\\\"range\\\"],[\\\"domain\\\"]],[s.angularaxis,[\\\"endpadding\\\"],[\\\"endPadding\\\"]],[s.radialaxis,[\\\"showline\\\"],[\\\"gridLinesVisible\\\"]],[s.radialaxis,[\\\"tickorientation\\\"],[\\\"tickOrientation\\\"]],[s.radialaxis,[\\\"ticksuffix\\\"],[\\\"ticksSuffix\\\"]],[s.radialaxis,[\\\"range\\\"],[\\\"domain\\\"]],[s.angularAxis,[\\\"showline\\\"],[\\\"gridLinesVisible\\\"]],[s.angularAxis,[\\\"showticklabels\\\"],[\\\"labelsVisible\\\"]],[s.angularAxis,[\\\"nticks\\\"],[\\\"ticksCount\\\"]],[s.angularAxis,[\\\"tickorientation\\\"],[\\\"tickOrientation\\\"]],[s.angularAxis,[\\\"ticksuffix\\\"],[\\\"ticksSuffix\\\"]],[s.angularAxis,[\\\"range\\\"],[\\\"domain\\\"]],[s.angularAxis,[\\\"endpadding\\\"],[\\\"endPadding\\\"]],[s.radialAxis,[\\\"showline\\\"],[\\\"gridLinesVisible\\\"]],[s.radialAxis,[\\\"tickorientation\\\"],[\\\"tickOrientation\\\"]],[s.radialAxis,[\\\"ticksuffix\\\"],[\\\"ticksSuffix\\\"]],[s.radialAxis,[\\\"range\\\"],[\\\"domain\\\"]],[s.font,[\\\"outlinecolor\\\"],[\\\"outlineColor\\\"]],[s.legend,[\\\"traceorder\\\"],[\\\"reverseOrder\\\"]],[s,[\\\"labeloffset\\\"],[\\\"labelOffset\\\"]],[s,[\\\"defaultcolorrange\\\"],[\\\"defaultColorRange\\\"]]];if(l.forEach(function(t,r){o.util.translator.apply(null,t.concat(e))}),e?(\\\"undefined\\\"!=typeof s.tickLength&&(s.angularaxis.ticklen=s.tickLength,delete s.tickLength),s.tickColor&&(s.angularaxis.tickcolor=s.tickColor,delete s.tickColor)):(s.angularAxis&&\\\"undefined\\\"!=typeof s.angularAxis.ticklen&&(s.tickLength=s.angularAxis.ticklen),s.angularAxis&&\\\"undefined\\\"!=typeof s.angularAxis.tickcolor&&(s.tickColor=s.angularAxis.tickcolor)),s.legend&&\\\"boolean\\\"!=typeof s.legend.reverseOrder&&(s.legend.reverseOrder=\\\"normal\\\"!=s.legend.reverseOrder),s.legend&&\\\"boolean\\\"==typeof s.legend.traceorder&&(s.legend.traceorder=s.legend.traceorder?\\\"reversed\\\":\\\"normal\\\",delete s.legend.reverseOrder),s.margin&&\\\"undefined\\\"!=typeof s.margin.t){var c=[\\\"t\\\",\\\"r\\\",\\\"b\\\",\\\"l\\\",\\\"pad\\\"],u=[\\\"top\\\",\\\"right\\\",\\\"bottom\\\",\\\"left\\\",\\\"pad\\\"],h={};i.entries(s.margin).forEach(function(t,e){h[u[c.indexOf(t.key)]]=t.value}),s.margin=h}e&&(delete s.needsEndSpacing,delete s.minorTickColor,delete s.minorTicks,delete s.angularaxis.ticksCount,delete s.angularaxis.ticksCount,delete s.angularaxis.ticksStep,delete s.angularaxis.rewriteTicks,delete s.angularaxis.nticks,delete s.radialaxis.ticksCount,delete s.radialaxis.ticksCount,delete s.radialaxis.ticksStep,delete s.radialaxis.rewriteTicks,delete s.radialaxis.nticks),r.layout=s}return r},t}},{\\\"../../plotly\\\":390,\\\"./micropolar_manager\\\":441,d3:70}],441:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../plotly\\\"),i=t(\\\"d3\\\"),o=t(\\\"./undo_manager\\\"),a=e.exports={},s=n.Lib.extendDeepAll;a.framework=function(t){function e(e,o){return o&&(h=o),i.select(i.select(h).node().parentNode).selectAll(\\\".svg-container>*:not(.chart-root)\\\").remove(),r=r?s(r,e):e,c||(c=n.micropolar.Axis()),u=n.micropolar.adapter.plotly().convert(r),c.config(u).render(h),t.data=r.data,t.layout=r.layout,a.fillLayout(t),r}var r,l,c,u,h,f=new o;return e.isPolar=!0,e.svg=function(){return c.svg()},e.getConfig=function(){return r},e.getLiveConfig=function(){return n.micropolar.adapter.plotly().convert(c.getLiveConfig(),!0)},e.getLiveScales=function(){return{t:c.angularScale(),r:c.radialScale()}},e.setUndoPoint=function(){var t=this,e=n.micropolar.util.cloneJson(r);!function(e,r){f.add({undo:function(){r&&t(r)},redo:function(){t(e)}})}(e,l),l=n.micropolar.util.cloneJson(e)},e.undo=function(){f.undo()},e.redo=function(){f.redo()},e},a.fillLayout=function(t){var e=i.select(t).selectAll(\\\".plot-container\\\"),r=e.selectAll(\\\".svg-container\\\"),o=t.framework&&t.framework.svg&&t.framework.svg(),a={width:800,height:600,paper_bgcolor:n.Color.background,_container:e,_paperdiv:r,_paper:o};t._fullLayout=s(a,t.layout)}},{\\\"../../plotly\\\":390,\\\"./undo_manager\\\":442,d3:70}],442:[function(t,e,r){\\\"use strict\\\";e.exports=function(){function t(t,e){return t?(i=!0,t[e](),i=!1,this):this}var e,r=[],n=-1,i=!1;return{add:function(t){return i?this:(r.splice(n+1,r.length-n),r.push(t),n=r.length-1,this)},setCallback:function(t){e=t},undo:function(){var i=r[n];return i?(t(i,\\\"undo\\\"),n-=1,e&&e(i.undo),this):this},redo:function(){var i=r[n+1];return i?(t(i,\\\"redo\\\"),n+=1,e&&e(i.redo),this):this},clear:function(){r=[],n=-1},hasUndo:function(){return-1!==n},hasRedo:function(){return n<r.length-1},getCommands:function(){return r},getPreviousCommand:function(){return r[n-1]},getIndex:function(){return n}}}},{}],443:[function(t,e,r){\\\"use strict\\\";function n(t){var e;switch(t){case\\\"themes__thumb\\\":e={autosize:!0,width:150,height:150,title:\\\"\\\",showlegend:!1,margin:{l:5,r:5,t:5,b:5,pad:0},annotations:[]};break;case\\\"thumbnail\\\":e={title:\\\"\\\",hidesources:!0,showlegend:!1,borderwidth:0,bordercolor:\\\"\\\",margin:{l:1,r:1,t:1,b:1,pad:0},annotations:[]};break;default:e={}}return e}function i(t){var e=[\\\"xaxis\\\",\\\"yaxis\\\",\\\"zaxis\\\"];return e.indexOf(t.slice(0,5))>-1}var o=t(\\\"../plotly\\\"),a=o.Lib.extendFlat,s=o.Lib.extendDeep;e.exports=function(t,e){t.framework&&t.framework.isPolar&&(t=t.framework.getConfig());var r,l=t.data,c=t.layout,u=s([],l),h=s({},c,n(e.tileClass));if(e.width&&(h.width=e.width),e.height&&(h.height=e.height),\\\"thumbnail\\\"===e.tileClass||\\\"themes__thumb\\\"===e.tileClass){h.annotations=[];var f=Object.keys(h);for(r=0;r<f.length;r++)i(f[r])&&(h[f[r]].title=\\\"\\\");for(r=0;r<u.length;r++){var d=u[r];d.showscale=!1,d.marker&&(d.marker.showscale=!1),\\\"pie\\\"===d.type&&(d.textposition=\\\"none\\\")}}if(Array.isArray(e.annotations))for(r=0;r<e.annotations.length;r++)h.annotations.push(e.annotations[r]);var p=o.Plots.getSubplotIds(h,\\\"gl3d\\\");if(p.length){var g={};for(\\\"thumbnail\\\"===e.tileClass&&(g={title:\\\"\\\",showaxeslabels:!1,showticklabels:!1,linetickenable:!1}),r=0;r<p.length;r++){var v=p[r];a(h[v].xaxis,g),a(h[v].yaxis,g),a(h[v].zaxis,g),h[v]._scene=null}}var m=document.createElement(\\\"div\\\");e.tileClass&&(m.className=e.tileClass);var y={td:m,layout:h,data:u,config:{staticPlot:void 0===e.staticPlot?!0:e.staticPlot,plotGlPixelRatio:void 0===e.plotGlPixelRatio?2:e.plotGlPixelRatio,displaylogo:e.displaylogo||!1,showLink:e.showLink||!1,showTips:e.showTips||!1}};return\\\"transparent\\\"!==e.setBackground&&(y.config.setBackground=e.setBackground||\\\"opaque\\\"),y.td.defaultLayout=n(e.tileClass),y}},{\\\"../plotly\\\":390}],444:[function(t,e,r){\\\"use strict\\\";function n(t){return t._hasGL3D||t._hasGL2D?500:0}function i(t){return function(){var e=t._fullLayout;e._hasGL3D||e._hasGL2D||t.data&&t.data[0]&&t.data[0].r||(t.calcdata||[]).forEach(function(t){t[0]&&t[0].t&&t[0].t.cb&&t[0].t.cb()})}}var o={getDelay:n,getRedrawFunc:i,clone:t(\\\"./cloneplot\\\"),toSVG:t(\\\"./tosvg\\\"),svgToImg:t(\\\"./svgtoimg\\\"),toImage:t(\\\"./toimage\\\")};e.exports=o},{\\\"./cloneplot\\\":443,\\\"./svgtoimg\\\":445,\\\"./toimage\\\":446,\\\"./tosvg\\\":447}],445:[function(t,e,r){\\\"use strict\\\";function n(t){var e=t.emitter?t.emitter:new i,r=window.Image,n=window.Blob,o=t.svg,a=t.format||\\\"png\\\",s=t.canvas,l=s.getContext(\\\"2d\\\"),c=new r,u=window.URL||window.webkitURL,h=new n([o],{type:\\\"image/svg+xml;charset=utf-8\\\"}),f=u.createObjectURL(h);return s.height=t.height||150,s.width=t.width||300,c.onload=function(){var t;switch(u.revokeObjectURL(f),l.drawImage(c,0,0),a){case\\\"jpeg\\\":t=s.toDataURL(\\\"image/jpeg\\\");break;case\\\"png\\\":t=s.toDataURL(\\\"image/png\\\");break;case\\\"webp\\\":t=s.toDataURL(\\\"image/webp\\\");break;case\\\"svg\\\":t=o;break;default:return e.emit(\\\"error\\\",\\\"Image format is not jpeg, png or svg\\\")}e.emit(\\\"success\\\",t)},c.onerror=function(t){return u.revokeObjectURL(f),e.emit(\\\"error\\\",t)},c.src=f,e}var i=t(\\\"events\\\").EventEmitter;e.exports=n},{events:54}],446:[function(t,e,r){\\\"use strict\\\";function n(t,e){function r(){var t=n.getDelay(l._fullLayout);setTimeout(function(){var t=o.Snapshot.toSVG(l),r=window.document.createElement(\\\"div\\\"),n=window.document.createElement(\\\"canvas\\\");r.appendChild(n),r.id=o.Lib.randstr(),n.id=o.Lib.randstr(),a=o.Snapshot.svgToImg({format:e.format,width:l._fullLayout.width,height:l._fullLayout.height,canvas:n,emitter:a,svg:t}),a.clean=function(){l&&l.remove()}},t)}var n=o.Snapshot,a=new i,s=n.clone(t,{format:\\\"png\\\"}),l=s.td;l.style.position=\\\"absolute\\\",l.style.left=\\\"-5000px\\\",document.body.appendChild(l);var c=n.getRedrawFunc(l);return o.plot(l,s.data,s.layout,s.config).then(c).then(r).catch(function(t){a.emit(\\\"error\\\",t)}),a}var i=t(\\\"events\\\").EventEmitter,o=t(\\\"../plotly\\\");e.exports=n},{\\\"../plotly\\\":390,events:54}],447:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){var n=e.toImage(\\\"png\\\");t._glimages.append(\\\"svg:image\\\").attr({xmlns:a.svg,\\\"xlink:href\\\":n,x:r.x,y:r.y,width:r.width,height:r.height,preserveAspectRatio:\\\"none\\\"}),e.destroy()}var i=t(\\\"../plotly\\\"),o=t(\\\"d3\\\"),a=t(\\\"../constants/xmlns_namespaces\\\");e.exports=function(t,e){var r,s,l=t._fullLayout,c=l._paper,u=l._size;c.insert(\\\"rect\\\",\\\":first-child\\\").call(i.Drawing.setRect,0,0,l.width,l.height).call(i.Color.fill,l.paper_bgcolor);var h,f=i.Plots.getSubplotIds(l,\\\"gl3d\\\");for(s=0;s<f.length;s++)h=l[f[s]],r=h.domain,n(l,h._scene,{x:u.l+u.w*r.x[0],y:u.t+u.h*(1-r.y[1]),width:u.w*(r.x[1]-r.x[0]),height:u.h*(r.y[1]-r.y[0])});var d,p=i.Plots.getSubplotIds(l,\\\"gl2d\\\");for(s=0;s<p.length;s++)d=l._plots[p[s]],n(l,d._scene2d,{x:u.l,y:u.t,width:u.w,height:u.h});var g,v,m=i.Plots.getSubplotIds(l,\\\"geo\\\");for(s=0;s<m.length;s++)g=l[m[s]],r=g.domain,v=g._geo.framework,v.attr(\\\"style\\\",null),v.attr({x:u.l+u.w*r.x[0]+g._marginX,y:u.t+u.h*(1-r.y[1])+g._marginY,width:g._width,height:g._height}),l._geoimages.node().appendChild(v.node());if(l._toppaper){var y=l._toppaper.node().childNodes,b=Array.prototype.slice.call(y);for(s=0;s<b.length;s++){var x=b[s];x.childNodes.length&&c.node().appendChild(x)}}c.node().style.background=\\\"\\\",c.selectAll(\\\"text\\\").attr(\\\"data-unformatted\\\",null).each(function(){var t=o.select(this);if(\\\"hidden\\\"===t.style(\\\"visibility\\\"))return void t.remove();var e=t.style(\\\"font-family\\\");e&&-1!==e.indexOf('\\\"')&&t.style(\\\"font-family\\\",e.replace(/\\\"/g,\\\"\\\\\\\\'\\\"))}),\\\"pdf\\\"!==e&&\\\"eps\\\"!==e||c.selectAll(\\\"#MathJax_SVG_glyphs path\\\").attr(\\\"stroke-width\\\",0),c.node().setAttributeNS(a.xmlns,\\\"xmlns\\\",a.svg),c.node().setAttributeNS(a.xmlns,\\\"xmlns:xlink\\\",a.xlink);var _=(new window.XMLSerializer).serializeToString(c.node());return _=i.util.html_entity_decode(_),_=i.util.xml_entity_encode(_)}},{\\\"../constants/xmlns_namespaces\\\":362,\\\"../plotly\\\":390,d3:70}],448:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../lib\\\").mergeArray;e.exports=function(t){var e=t[0].trace,r=e.marker,i=r.line;n(e.text,t,\\\"tx\\\"),n(r.opacity,t,\\\"mo\\\"),n(r.color,t,\\\"mc\\\"),n(i.color,t,\\\"mlc\\\"),n(i.width,t,\\\"mlw\\\")}},{\\\"../../lib\\\":373}],449:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../scatter/attributes\\\"),i=n.marker,o=i.line;e.exports={x:n.x,x0:n.x0,dx:n.dx,y:n.y,y0:n.y0,dy:n.dy,text:n.text,orientation:{valType:\\\"enumerated\\\",values:[\\\"v\\\",\\\"h\\\"]},marker:{color:i.color,colorscale:i.colorscale,cauto:i.cauto,cmax:i.cmax,cmin:i.cmin,autocolorscale:i.autocolorscale,reversescale:i.reversescale,showscale:i.showscale,line:{color:o.color,colorscale:o.colorscale,cauto:o.cauto,cmax:o.cmax,cmin:o.cmin,width:o.width,autocolorscale:o.autocolorscale,reversescale:o.reversescale}},r:n.r,t:n.t,_nestedModules:{error_y:\\\"ErrorBars\\\",error_x:\\\"ErrorBars\\\",\\\"marker.colorbar\\\":\\\"Colorbar\\\"},_deprecated:{bardir:{valType:\\\"enumerated\\\",values:[\\\"v\\\",\\\"h\\\"]}}}},{\\\"../scatter/attributes\\\":528}],450:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"fast-isnumeric\\\"),i=t(\\\"../../plots/cartesian/axes\\\"),o=t(\\\"../../components/colorscale/has_colorscale\\\"),a=t(\\\"../../components/colorscale/calc\\\");e.exports=function(t,e){var r,s,l,c=i.getFromId(t,e.xaxis||\\\"x\\\"),u=i.getFromId(t,e.yaxis||\\\"y\\\"),h=e.orientation||(e.x&&!e.y?\\\"h\\\":\\\"v\\\");\\\"h\\\"===h?(s=c.makeCalcdata(e,\\\"x\\\"),r=u.makeCalcdata(e,\\\"y\\\")):(s=u.makeCalcdata(e,\\\"y\\\"),r=c.makeCalcdata(e,\\\"x\\\"));var f=Math.min(r.length,s.length),d=[];for(l=0;f>l;l++)n(r[l])&&n(s[l])&&d.push({p:r[l],s:s[l],b:0});return o(e,\\\"marker\\\")&&a(e,e.marker.color,\\\"marker\\\",\\\"c\\\"),o(e,\\\"marker.line\\\")&&a(e,e.marker.line.color,\\\"marker.line\\\",\\\"c\\\"),d}},{\\\"../../components/colorscale/calc\\\":308,\\\"../../components/colorscale/has_colorscale\\\":313,\\\"../../plots/cartesian/axes\\\":393,\\\"fast-isnumeric\\\":74}],451:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../lib\\\"),i=t(\\\"../../components/color\\\"),o=t(\\\"../scatter/xy_defaults\\\"),a=t(\\\"../bar/style_defaults\\\"),s=t(\\\"../../components/errorbars/defaults\\\"),l=t(\\\"./attributes\\\");e.exports=function(t,e,r,c){function u(r,i){return n.coerce(t,e,l,r,i)}var h=o(t,e,u);return h?(u(\\\"orientation\\\",e.x&&!e.y?\\\"h\\\":\\\"v\\\"),u(\\\"text\\\"),a(t,e,u,r,c),s(t,e,i.defaultLine,{axis:\\\"y\\\"}),void s(t,e,i.defaultLine,{axis:\\\"x\\\",inherit:\\\"y\\\"})):void(e.visible=!1)}},{\\\"../../components/color\\\":301,\\\"../../components/errorbars/defaults\\\":324,\\\"../../lib\\\":373,\\\"../bar/style_defaults\\\":459,\\\"../scatter/xy_defaults\\\":548,\\\"./attributes\\\":449}],452:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../plots/cartesian/graph_interact\\\"),i=t(\\\"../../components/errorbars\\\"),o=t(\\\"../../components/color\\\");e.exports=function(t,e,r,a){var s,l=t.cd,c=l[0].trace,u=l[0].t,h=t.xa,f=t.ya,d=\\\"closest\\\"===a?u.barwidth/2:u.dbar*(1-h._td._fullLayout.bargap)/2;s=\\\"closest\\\"!==a?function(t){return t.p}:\\\"h\\\"===c.orientation?function(t){return t.y}:function(t){return t.x};var p,g;\\\"h\\\"===c.orientation?(p=function(t){return n.inbox(t.b-e,t.x-e)+(t.x-e)/(t.x-t.b)},g=function(t){var e=s(t)-r;return n.inbox(e-d,e+d)}):(g=function(t){return n.inbox(t.b-r,t.y-r)+(t.y-r)/(t.y-t.b)},p=function(t){var r=s(t)-e;return n.inbox(r-d,r+d)});var v=n.getDistanceFunction(a,p,g);if(n.getClosest(l,v,t),t.index!==!1){var m=l[t.index],y=m.mcc||c.marker.color,b=m.mlcc||c.marker.line.color,x=m.mlw||c.marker.line.width;return o.opacity(y)?t.color=y:o.opacity(b)&&x&&(t.color=b),\\\"h\\\"===c.orientation?(t.x0=t.x1=h.c2p(m.x,!0),t.xLabelVal=m.s,t.y0=f.c2p(s(m)-d,!0),t.y1=f.c2p(s(m)+d,!0),t.yLabelVal=m.p):(t.y0=t.y1=f.c2p(m.y,!0),t.yLabelVal=m.s,t.x0=h.c2p(s(m)-d,!0),t.x1=h.c2p(s(m)+d,!0),t.xLabelVal=m.p),m.tx&&(t.text=m.tx),i.hoverInfo(m,c,t),[t]}}},{\\\"../../components/color\\\":301,\\\"../../components/errorbars\\\":325,\\\"../../plots/cartesian/graph_interact\\\":398}],453:[function(t,e,r){\\\"use strict\\\";var n={};n.attributes=t(\\\"./attributes\\\"),n.layoutAttributes=t(\\\"./layout_attributes\\\"),n.supplyDefaults=t(\\\"./defaults\\\"),n.supplyLayoutDefaults=t(\\\"./layout_defaults\\\"),n.calc=t(\\\"./calc\\\"),n.setPositions=t(\\\"./set_positions\\\"),n.colorbar=t(\\\"../scatter/colorbar\\\"),n.arraysToCalcdata=t(\\\"./arrays_to_calcdata\\\"),n.plot=t(\\\"./plot\\\"),n.style=t(\\\"./style\\\"),n.hoverPoints=t(\\\"./hover\\\"),n.moduleType=\\\"trace\\\",n.name=\\\"bar\\\",n.basePlotModule=t(\\\"../../plots/cartesian\\\"),n.categories=[\\\"cartesian\\\",\\\"bar\\\",\\\"oriented\\\",\\\"markerColorscale\\\",\\\"errorBarsOK\\\",\\\"showLegend\\\"],n.meta={},e.exports=n},{\\\"../../plots/cartesian\\\":399,\\\"../scatter/colorbar\\\":531,\\\"./arrays_to_calcdata\\\":448,\\\"./attributes\\\":449,\\\"./calc\\\":450,\\\"./defaults\\\":451,\\\"./hover\\\":452,\\\"./layout_attributes\\\":454,\\\"./layout_defaults\\\":455,\\\"./plot\\\":456,\\\"./set_positions\\\":457,\\\"./style\\\":458}],454:[function(t,e,r){\\\"use strict\\\";e.exports={barmode:{valType:\\\"enumerated\\\",values:[\\\"stack\\\",\\\"group\\\",\\\"overlay\\\"],dflt:\\\"group\\\"},barnorm:{valType:\\\"enumerated\\\",values:[\\\"\\\",\\\"fraction\\\",\\\"percent\\\"],dflt:\\\"\\\"},bargap:{valType:\\\"number\\\",min:0,max:1},bargroupgap:{valType:\\\"number\\\",min:0,max:1,dflt:0}}},{}],455:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../plots/plots\\\"),i=t(\\\"../../plots/cartesian/axes\\\"),o=t(\\\"../../lib\\\"),a=t(\\\"./layout_attributes\\\");e.exports=function(t,e,r){function s(r,n){return o.coerce(t,e,a,r,n)}for(var l=!1,c=!1,u=!1,h={},f=0;f<r.length;f++){var d=r[f];if(n.traceIs(d,\\\"bar\\\")){if(l=!0,\\\"overlay\\\"!==t.barmode&&\\\"stack\\\"!==t.barmode){var p=d.xaxis+d.yaxis;h[p]&&(u=!0),h[p]=!0}if(d.visible&&\\\"histogram\\\"===d.type){var g=i.getFromId({_fullLayout:e},d[\\\"v\\\"===d.orientation?\\\"xaxis\\\":\\\"yaxis\\\"]);\\\"category\\\"!==g.type&&(c=!0)}}}if(l){var v=s(\\\"barmode\\\");\\\"overlay\\\"!==v&&s(\\\"barnorm\\\"),s(\\\"bargap\\\",c&&!u?0:.2),s(\\\"bargroupgap\\\")}}},{\\\"../../lib\\\":373,\\\"../../plots/cartesian/axes\\\":393,\\\"../../plots/plots\\\":437,\\\"./layout_attributes\\\":454}],456:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"d3\\\"),i=t(\\\"fast-isnumeric\\\"),o=t(\\\"../../lib\\\"),a=t(\\\"../../components/color\\\"),s=t(\\\"../../components/errorbars\\\"),l=t(\\\"./arrays_to_calcdata\\\");e.exports=function(t,e,r){var c=e.x(),u=e.y(),h=t._fullLayout,f=e.plot.select(\\\".barlayer\\\").selectAll(\\\"g.trace.bars\\\").data(r).enter().append(\\\"g\\\").attr(\\\"class\\\",\\\"trace bars\\\");f.append(\\\"g\\\").attr(\\\"class\\\",\\\"points\\\").each(function(e){var r=e[0].t,s=e[0].trace;l(e),n.select(this).selectAll(\\\"path\\\").data(o.identity).enter().append(\\\"path\\\").each(function(e){function o(t){return 0===h.bargap&&0===h.bargroupgap?n.round(Math.round(t)-m,2):t}function l(t,e){return Math.abs(t-e)>=2?o(t):t>e?Math.ceil(t):Math.floor(t)}var f,d,p,g;if(\\\"h\\\"===s.orientation?(p=u.c2p(r.poffset+e.p,!0),g=u.c2p(r.poffset+e.p+r.barwidth,!0),f=c.c2p(e.b,!0),d=c.c2p(e.s+e.b,!0)):(f=c.c2p(r.poffset+e.p,!0),d=c.c2p(r.poffset+e.p+r.barwidth,!0),g=u.c2p(e.s+e.b,!0),p=u.c2p(e.b,!0)),!(i(f)&&i(d)&&i(p)&&i(g)&&f!==d&&p!==g))return void n.select(this).remove();var v=(e.mlw+1||s.marker.line.width+1||(e.trace?e.trace.marker.line.width:0)+1)-1,m=n.round(v/2%1,2);if(!t._context.staticPlot){var y=a.opacity(e.mc||s.marker.color),b=1>y||v>.01?o:l;f=b(f,d),d=b(d,f),p=b(p,g),g=b(g,p)}n.select(this).attr(\\\"d\\\",\\\"M\\\"+f+\\\",\\\"+p+\\\"V\\\"+g+\\\"H\\\"+d+\\\"V\\\"+p+\\\"Z\\\")})}),f.call(s.plot,e)}},{\\\"../../components/color\\\":301,\\\"../../components/errorbars\\\":325,\\\"../../lib\\\":373,\\\"./arrays_to_calcdata\\\":448,d3:70,\\\"fast-isnumeric\\\":74}],457:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"fast-isnumeric\\\"),i=t(\\\"../../plots/plots\\\"),o=t(\\\"../../plots/cartesian/axes\\\"),a=t(\\\"../../lib\\\");e.exports=function(t,e){var r,s,l=t._fullLayout,c=e.x(),u=e.y();[\\\"v\\\",\\\"h\\\"].forEach(function(h){function f(e){function r(t){t[p]=t.p+f}var n=[];e.forEach(function(e){t.calcdata[e].forEach(function(t){n.push(t.p)})});var i=a.distinctVals(n),s=i.vals,c=i.minDiff,u=!1,h=[];\\\"group\\\"===l.barmode&&e.forEach(function(e){u||(t.calcdata[e].forEach(function(t){u||h.forEach(function(e){Math.abs(t.p-e)<c&&(u=!0)})}),u||t.calcdata[e].forEach(function(t){h.push(t.p)}))}),o.minDtick(v,c,s[0],u),o.expand(v,s,{vpad:c/2}),c*=1-l.bargap,u&&(c/=d.length);for(var f,g=0;g<e.length;g++){var m=t.calcdata[e[g]][0].t;m.barwidth=c*(1-l.bargroupgap),m.poffset=((u?(2*g+1-e.length)*c:0)-m.barwidth)/2,m.dbar=i.minDiff,f=m.poffset+m.barwidth/2,t.calcdata[e[g]].forEach(r)}}var d=[],p={v:\\\"x\\\",h:\\\"y\\\"}[h],g={v:\\\"y\\\",h:\\\"x\\\"}[h],v=e[p](),m=e[g]();if(t._fullData.forEach(function(t,e){t.visible===!0&&i.traceIs(t,\\\"bar\\\")&&t.orientation===h&&t.xaxis===c._id&&t.yaxis===u._id&&d.push(e)}),d.length){\\\"overlay\\\"===l.barmode?d.forEach(function(t){f([t])}):f(d);var y=\\\"stack\\\"===l.barmode,b=l.barnorm;if(y||b){var x,_,w,A=m.l2c(m.c2l(0)),k=A,M={},T=t.calcdata[d[0]][0].t.barwidth/100,E=0,L=!0;for(r=0;r<d.length;r++)for(_=t.calcdata[d[r]],s=0;s<_.length;s++){E=Math.round(_[s].p/T);var S=M[E]||0;y&&(_[s].b=S),x=_[s].b+_[s].s,M[E]=S+_[s].s,y&&(_[s][g]=x,!b&&n(m.c2l(x))&&(A=Math.max(A,x),k=Math.min(k,x)))}if(b){L=!1;var C=\\\"fraction\\\"===b?1:100,P=C/1e9;for(k=0,A=y?C:0,r=0;r<d.length;r++)for(_=t.calcdata[d[r]],s=0;s<_.length;s++)w=C/M[Math.round(_[s].p/T)],_[s].b*=w,_[s].s*=w,x=_[s].b+_[s].s,_[s][g]=x,n(m.c2l(x))&&(k-P>x&&(L=!0,k=x),x>A+P&&(L=!0,A=x))}o.expand(m,[k,A],{tozero:!0,padded:L})}else{var z=function(t){return t[g]=t.s,t.s};for(r=0;r<d.length;r++)o.expand(m,t.calcdata[d[r]].map(z),{tozero:!0,padded:!0})}}})}},{\\\"../../lib\\\":373,\\\"../../plots/cartesian/axes\\\":393,\\\"../../plots/plots\\\":437,\\\"fast-isnumeric\\\":74}],458:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"d3\\\"),i=t(\\\"../../components/color\\\"),o=t(\\\"../../components/drawing\\\"),a=t(\\\"../../components/errorbars\\\");e.exports=function(t){var e=n.select(t).selectAll(\\\"g.trace.bars\\\"),r=e.size(),s=t._fullLayout;e.style(\\\"opacity\\\",function(t){return t[0].trace.opacity}).each(function(t){(\\\"stack\\\"===s.barmode&&r>1||0===s.bargap&&0===s.bargroupgap&&!t[0].trace.marker.line.width)&&n.select(this).attr(\\\"shape-rendering\\\",\\\"crispEdges\\\")}),e.selectAll(\\\"g.points\\\").each(function(t){var e=t[0].trace,r=e.marker,a=r.line,s=(e._input||{}).marker||{},l=o.tryColorscale(r,s,\\\"\\\"),c=o.tryColorscale(r,s,\\\"line.\\\");n.select(this).selectAll(\\\"path\\\").each(function(t){var e,o,s=(t.mlw+1||a.width+1)-1,u=n.select(this);e=\\\"mc\\\"in t?t.mcc=l(t.mc):Array.isArray(r.color)?i.defaultLine:r.color,u.style(\\\"stroke-width\\\",s+\\\"px\\\").call(i.fill,e),s&&(o=\\\"mlc\\\"in t?t.mlcc=c(t.mlc):Array.isArray(a.color)?i.defaultLine:a.color,u.call(i.stroke,o))})}),e.call(a.style)}},{\\\"../../components/color\\\":301,\\\"../../components/drawing\\\":319,\\\"../../components/errorbars\\\":325,d3:70}],459:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../components/color\\\"),i=t(\\\"../../components/colorscale/has_colorscale\\\"),o=t(\\\"../../components/colorscale/defaults\\\");e.exports=function(t,e,r,a,s){r(\\\"marker.color\\\",a),i(t,\\\"marker\\\")&&o(t,e,s,r,{prefix:\\\"marker.\\\",cLetter:\\\"c\\\"}),r(\\\"marker.line.color\\\",n.defaultLine),i(t,\\\"marker.line\\\")&&o(t,e,s,r,{prefix:\\\"marker.line.\\\",cLetter:\\\"c\\\"}),r(\\\"marker.line.width\\\")}},{\\\"../../components/color\\\":301,\\\"../../components/colorscale/defaults\\\":310,\\\"../../components/colorscale/has_colorscale\\\":313}],460:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../scatter/attributes\\\"),i=t(\\\"../../components/color/attributes\\\"),o=t(\\\"../../lib/extend\\\").extendFlat,a=n.marker,s=a.line;e.exports={y:{valType:\\\"data_array\\\"},x:{valType:\\\"data_array\\\"},x0:{valType:\\\"any\\\"},y0:{valType:\\\"any\\\"},whiskerwidth:{valType:\\\"number\\\",min:0,max:1,dflt:.5},boxpoints:{valType:\\\"enumerated\\\",values:[\\\"all\\\",\\\"outliers\\\",\\\"suspectedoutliers\\\",!1],dflt:\\\"outliers\\\"},boxmean:{valType:\\\"enumerated\\\",values:[!0,\\\"sd\\\",!1],dflt:!1},jitter:{valType:\\\"number\\\",min:0,max:1},pointpos:{valType:\\\"number\\\",min:-2,max:2},orientation:{valType:\\\"enumerated\\\",values:[\\\"v\\\",\\\"h\\\"]},marker:{outliercolor:{valType:\\\"color\\\",dflt:\\\"rgba(0, 0, 0, 0)\\\"},symbol:o({},a.symbol,{arrayOk:!1}),opacity:o({},a.opacity,{arrayOk:!1,dflt:1}),size:o({},a.size,{arrayOk:!1}),color:o({},a.color,{arrayOk:!1}),line:{color:o({},s.color,{arrayOk:!1,dflt:i.defaultLine}),width:o({},s.width,{arrayOk:!1,dflt:0}),outliercolor:{valType:\\\"color\\\"},outlierwidth:{valType:\\\"number\\\",min:0,dflt:1}}},line:{color:{valType:\\\"color\\\"},width:{valType:\\\"number\\\",min:0,dflt:2}},fillcolor:n.fillcolor}},{\\\"../../components/color/attributes\\\":300,\\\"../../lib/extend\\\":369,\\\"../scatter/attributes\\\":528}],461:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"fast-isnumeric\\\"),i=t(\\\"../../lib\\\"),o=t(\\\"../../plots/cartesian/axes\\\");e.exports=function(t,e){function r(t,e,r,o,a){var s;return r in e?p=o.makeCalcdata(e,r):(s=r+\\\"0\\\"in e?e[r+\\\"0\\\"]:\\\"name\\\"in e&&(\\\"category\\\"===o.type||n(e.name)&&-1!==[\\\"linear\\\",\\\"log\\\"].indexOf(o.type)||i.isDateTime(e.name)&&\\\"date\\\"===o.type)?e.name:t.numboxes,s=o.d2c(s),p=a.map(function(){return s})),p}function a(t,e,r,o,a){var s,l,c,u,h=o.length,f=e.length,d=[],p=[];for(s=0;h>s;++s)l=o[s],t[s]={pos:l},p[s]=l-a,d[s]=[];for(p.push(o[h-1]+a),s=0;f>s;++s)u=e[s],n(u)&&(c=i.findBin(r[s],p),c>=0&&f>c&&d[c].push(u));return d}function s(t,e){var r,n,o,a;for(a=0;a<e.length;++a)r=e[a].sort(i.sorterAsc),n=r.length,o=t[a],o.val=r,o.min=r[0],o.max=r[n-1],o.mean=i.mean(r,n),o.sd=i.stdev(r,n,o.mean),o.q1=i.interp(r,.25),o.med=i.interp(r,.5),o.q3=i.interp(r,.75),o.lf=Math.min(o.q1,r[Math.min(i.findBin(2.5*o.q1-1.5*o.q3,r,!0)+1,n-1)]),o.uf=Math.max(o.q3,r[Math.max(i.findBin(2.5*o.q3-1.5*o.q1,r),0)]),o.lo=4*o.q1-3*o.q3,o.uo=4*o.q3-3*o.q1}var l,c,u,h,f,d,p,g,v,m=o.getFromId(t,e.xaxis||\\\"x\\\"),y=o.getFromId(t,e.yaxis||\\\"y\\\"),b=e.orientation,x=[];\\\"h\\\"===b?(l=m,c=\\\"x\\\",f=y,d=\\\"y\\\"):(l=y,c=\\\"y\\\",f=m,d=\\\"x\\\"),u=l.makeCalcdata(e,c),o.expand(l,u,{padded:!0}),p=r(t,e,d,f,u);var _=i.distinctVals(p);return g=_.vals,v=_.minDiff/2,h=a(x,u,p,g,v),s(x,h),x=x.filter(function(t){return t.val&&t.val.length}),x.length?(x[0].t={boxnum:t.numboxes,dPos:v},t.numboxes++,x):[{t:{emptybox:!0}}]}},{\\\"../../lib\\\":373,\\\"../../plots/cartesian/axes\\\":393,\\\"fast-isnumeric\\\":74}],462:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../lib\\\"),i=t(\\\"../../components/color\\\"),o=t(\\\"./attributes\\\");e.exports=function(t,e,r){function a(r,i){return n.coerce(t,e,o,r,i)}var s,l=a(\\\"y\\\"),c=a(\\\"x\\\");if(l&&l.length)s=\\\"v\\\",c||a(\\\"x0\\\");else{if(!c||!c.length)return void(e.visible=!1);s=\\\"h\\\",a(\\\"y0\\\")}a(\\\"orientation\\\",s),a(\\\"line.color\\\",(t.marker||{}).color||r),a(\\\"line.width\\\",2),a(\\\"fillcolor\\\",i.addOpacity(e.line.color,.5)),a(\\\"whiskerwidth\\\"),a(\\\"boxmean\\\");var u=n.coerce2(t,e,o,\\\"marker.outliercolor\\\"),h=a(\\\"marker.line.outliercolor\\\"),f=u||h?a(\\\"boxpoints\\\",\\\"suspectedoutliers\\\"):a(\\\"boxpoints\\\");f&&(a(\\\"jitter\\\",\\\"all\\\"===f?.3:0),a(\\\"pointpos\\\",\\\"all\\\"===f?-1.5:0),a(\\\"marker.symbol\\\"),a(\\\"marker.opacity\\\"),a(\\\"marker.size\\\"),a(\\\"marker.color\\\",e.line.color),a(\\\"marker.line.color\\\"),a(\\\"marker.line.width\\\"),\\\"suspectedoutliers\\\"===f&&(a(\\\"marker.line.outliercolor\\\",e.marker.color),a(\\\"marker.line.outlierwidth\\\")))}},{\\\"../../components/color\\\":301,\\\"../../lib\\\":373,\\\"./attributes\\\":460}],463:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../plots/cartesian/axes\\\"),i=t(\\\"../../plots/cartesian/graph_interact\\\"),o=t(\\\"../../lib\\\"),a=t(\\\"../../components/color\\\");e.exports=function(t,e,r,s){var l,c,u,h,f,d,p,g,v,m=t.cd,y=m[0].trace,b=m[0].t,x=t.xa,_=t.ya,w=[];if(h=\\\"closest\\\"===s?2.5*b.bdPos:b.bdPos,\\\"h\\\"===y.orientation?(l=function(t){return i.inbox(t.min-e,t.max-e)},c=function(t){var e=t.pos+b.bPos-r;return i.inbox(e-h,e+h)},f=\\\"y\\\",d=_,g=\\\"x\\\",v=x):(l=function(t){var r=t.pos+b.bPos-e;return i.inbox(r-h,r+h)},c=function(t){return i.inbox(t.min-r,t.max-r)},f=\\\"x\\\",d=x,g=\\\"y\\\",v=_),u=i.getDistanceFunction(s,l,c),i.getClosest(m,u,t),t.index!==!1){var A=m[t.index],k=y.line.color,M=(y.marker||{}).color;a.opacity(k)&&y.line.width?t.color=k:a.opacity(M)&&y.boxpoints?t.color=M:t.color=y.fillcolor,t[f+\\\"0\\\"]=d.c2p(A.pos+b.bPos-b.bdPos,!0),t[f+\\\"1\\\"]=d.c2p(A.pos+b.bPos+b.bdPos,!0),n.tickText(d,d.c2l(A.pos),\\\"hover\\\").text,t[f+\\\"LabelVal\\\"]=A.pos;var T,E,L={},S=[\\\"med\\\",\\\"min\\\",\\\"q1\\\",\\\"q3\\\",\\\"max\\\"];y.boxmean&&S.push(\\\"mean\\\"),y.boxpoints&&[].push.apply(S,[\\\"lf\\\",\\\"uf\\\"]);for(var C=0;C<S.length;C++)T=S[C],T in A&&!(A[T]in L)&&(L[A[T]]=!0,p=v.c2p(A[T],!0),E=o.extendFlat({},t),E[g+\\\"0\\\"]=E[g+\\\"1\\\"]=p,E[g+\\\"LabelVal\\\"]=A[T],E.attr=T,\\\"mean\\\"===T&&\\\"sd\\\"in A&&\\\"sd\\\"===y.boxmean&&(E[g+\\\"err\\\"]=A.sd),t.name=\\\"\\\",w.push(E));return w}}},{\\\"../../components/color\\\":301,\\\"../../lib\\\":373,\\\"../../plots/cartesian/axes\\\":393,\\\"../../plots/cartesian/graph_interact\\\":398}],464:[function(t,e,r){\\\"use strict\\\";var n={};n.attributes=t(\\\"./attributes\\\"),n.layoutAttributes=t(\\\"./layout_attributes\\\"),n.supplyDefaults=t(\\\"./defaults\\\"),n.supplyLayoutDefaults=t(\\\"./layout_defaults\\\"),n.calc=t(\\\"./calc\\\"),n.setPositions=t(\\\"./set_positions\\\"),n.plot=t(\\\"./plot\\\"),n.style=t(\\\"./style\\\"),n.hoverPoints=t(\\\"./hover\\\"),n.moduleType=\\\"trace\\\",n.name=\\\"box\\\",n.basePlotModule=t(\\\"../../plots/cartesian\\\"),n.categories=[\\\"cartesian\\\",\\\"symbols\\\",\\\"oriented\\\",\\\"box\\\",\\\"showLegend\\\"],n.meta={},e.exports=n},{\\\"../../plots/cartesian\\\":399,\\\"./attributes\\\":460,\\\"./calc\\\":461,\\\"./defaults\\\":462,\\\"./hover\\\":463,\\\"./layout_attributes\\\":465,\\\"./layout_defaults\\\":466,\\\"./plot\\\":467,\\\"./set_positions\\\":468,\\\"./style\\\":469}],465:[function(t,e,r){\\\"use strict\\\";e.exports={boxmode:{valType:\\\"enumerated\\\",values:[\\\"group\\\",\\\"overlay\\\"],dflt:\\\"overlay\\\"},boxgap:{valType:\\\"number\\\",min:0,max:1,dflt:.3},boxgroupgap:{valType:\\\"number\\\",min:0,max:1,dflt:.3}}},{}],466:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../plots/plots\\\"),i=t(\\\"../../lib\\\"),o=t(\\\"./layout_attributes\\\");e.exports=function(t,e,r){function a(r,n){return i.coerce(t,e,o,r,n)}for(var s,l=0;l<r.length;l++)if(n.traceIs(r[l],\\\"box\\\")){s=!0;break}s&&(a(\\\"boxmode\\\"),a(\\\"boxgap\\\"),a(\\\"boxgroupgap\\\"))}},{\\\"../../lib\\\":373,\\\"../../plots/plots\\\":437,\\\"./layout_attributes\\\":465}],467:[function(t,e,r){\\\"use strict\\\";function n(){l=2e9}function i(){var t=l;return l=(69069*l+1)%4294967296,Math.abs(l-t)<429496729?i():l/4294967296}var o=t(\\\"d3\\\"),a=t(\\\"../../lib\\\"),s=t(\\\"../../components/drawing\\\"),l=2e9,c=5,u=.01;e.exports=function(t,e,r){var l,h,f=t._fullLayout,d=e.x(),p=e.y(),g=e.plot.select(\\\".boxlayer\\\").selectAll(\\\"g.trace.boxes\\\").data(r).enter().append(\\\"g\\\").attr(\\\"class\\\",\\\"trace boxes\\\");g.each(function(e){var r=e[0].t,g=e[0].trace,v=\\\"group\\\"===f.boxmode&&t.numboxes>1,m=r.dPos*(1-f.boxgap)*(1-f.boxgroupgap)/(v?t.numboxes:1),y=v?2*r.dPos*(-.5+(r.boxnum+.5)/t.numboxes)*(1-f.boxgap):0,b=m*g.whiskerwidth;return g.visible!==!0||r.emptybox?void o.select(this).remove():(\\\"h\\\"===g.orientation?(l=p,h=d):(l=d,h=p),r.bPos=y,r.bdPos=m,n(),o.select(this).selectAll(\\\"path.box\\\").data(a.identity).enter().append(\\\"path\\\").attr(\\\"class\\\",\\\"box\\\").each(function(t){var e=l.c2p(t.pos+y,!0),r=l.c2p(t.pos+y-m,!0),n=l.c2p(t.pos+y+m,!0),i=l.c2p(t.pos+y-b,!0),s=l.c2p(t.pos+y+b,!0),c=h.c2p(t.q1,!0),u=h.c2p(t.q3,!0),f=a.constrain(h.c2p(t.med,!0),Math.min(c,u)+1,Math.max(c,u)-1),d=h.c2p(g.boxpoints===!1?t.min:t.lf,!0),p=h.c2p(g.boxpoints===!1?t.max:t.uf,!0);\\\"h\\\"===g.orientation?o.select(this).attr(\\\"d\\\",\\\"M\\\"+f+\\\",\\\"+r+\\\"V\\\"+n+\\\"M\\\"+c+\\\",\\\"+r+\\\"V\\\"+n+\\\"H\\\"+u+\\\"V\\\"+r+\\\"ZM\\\"+c+\\\",\\\"+e+\\\"H\\\"+d+\\\"M\\\"+u+\\\",\\\"+e+\\\"H\\\"+p+(0===g.whiskerwidth?\\\"\\\":\\\"M\\\"+d+\\\",\\\"+i+\\\"V\\\"+s+\\\"M\\\"+p+\\\",\\\"+i+\\\"V\\\"+s)):o.select(this).attr(\\\"d\\\",\\\"M\\\"+r+\\\",\\\"+f+\\\"H\\\"+n+\\\"M\\\"+r+\\\",\\\"+c+\\\"H\\\"+n+\\\"V\\\"+u+\\\"H\\\"+r+\\\"ZM\\\"+e+\\\",\\\"+c+\\\"V\\\"+d+\\\"M\\\"+e+\\\",\\\"+u+\\\"V\\\"+p+(0===g.whiskerwidth?\\\"\\\":\\\"M\\\"+i+\\\",\\\"+d+\\\"H\\\"+s+\\\"M\\\"+i+\\\",\\\"+p+\\\"H\\\"+s))}),g.boxpoints&&o.select(this).selectAll(\\\"g.points\\\").data(function(t){return t.forEach(function(t){t.t=r,t.trace=g}),t}).enter().append(\\\"g\\\").attr(\\\"class\\\",\\\"points\\\").selectAll(\\\"path\\\").data(function(t){var e,r,n,o,s,l,h,f=\\\"all\\\"===g.boxpoints?t.val:t.val.filter(function(e){return e<t.lf||e>t.uf}),d=(t.q3-t.q1)*u,p=[],v=0;if(g.jitter){for(e=0;e<f.length;e++)r=Math.max(0,e-c),o=f[r],n=Math.min(f.length-1,e+c),s=f[n],\\\"all\\\"!==g.boxpoints&&(f[e]<t.lf?s=Math.min(s,t.lf):o=Math.max(o,t.uf)),l=Math.sqrt(d*(n-r)/(s-o))||0,l=a.constrain(Math.abs(l),0,1),p.push(l),v=Math.max(l,v);h=2*g.jitter/v}return f.map(function(e,r){var n,o=g.pointpos;return g.jitter&&(o+=h*p[r]*(i()-.5)),n=\\\"h\\\"===g.orientation?{y:t.pos+o*m+y,x:e}:{x:t.pos+o*m+y,y:e},\\\"suspectedoutliers\\\"===g.boxpoints&&e<t.uo&&e>t.lo&&(n.so=!0),n})}).enter().append(\\\"path\\\").call(s.translatePoints,d,p),void(g.boxmean&&o.select(this).selectAll(\\\"path.mean\\\").data(a.identity).enter().append(\\\"path\\\").attr(\\\"class\\\",\\\"mean\\\").style(\\\"fill\\\",\\\"none\\\").each(function(t){var e=l.c2p(t.pos+y,!0),r=l.c2p(t.pos+y-m,!0),n=l.c2p(t.pos+y+m,!0),i=h.c2p(t.mean,!0),a=h.c2p(t.mean-t.sd,!0),s=h.c2p(t.mean+t.sd,!0);\\\"h\\\"===g.orientation?o.select(this).attr(\\\"d\\\",\\\"M\\\"+i+\\\",\\\"+r+\\\"V\\\"+n+(\\\"sd\\\"!==g.boxmean?\\\"\\\":\\\"m0,0L\\\"+a+\\\",\\\"+e+\\\"L\\\"+i+\\\",\\\"+r+\\\"L\\\"+s+\\\",\\\"+e+\\\"Z\\\")):o.select(this).attr(\\\"d\\\",\\\"M\\\"+r+\\\",\\\"+i+\\\"H\\\"+n+(\\\"sd\\\"!==g.boxmean?\\\"\\\":\\\"m0,0L\\\"+e+\\\",\\\"+a+\\\"L\\\"+r+\\\",\\\"+i+\\\"L\\\"+e+\\\",\\\"+s+\\\"Z\\\"))})))})}},{\\\"../../components/drawing\\\":319,\\\"../../lib\\\":373,d3:70}],468:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../plots/plots\\\"),i=t(\\\"../../plots/cartesian/axes\\\"),o=t(\\\"../../lib\\\");e.exports=function(t,e){var r,a,s,l,c=t._fullLayout,u=e.x(),h=e.y(),f=[\\\"v\\\",\\\"h\\\"];for(a=0;a<f.length;++a){var d,p,g,v=f[a],m=[],y=[],b=0,x=0;for(r=\\\"h\\\"===v?h:u,s=0;s<t.calcdata.length;++s)d=t.calcdata[s],p=d[0].t,g=d[0].trace,g.visible===!0&&n.traceIs(g,\\\"box\\\")&&!p.emptybox&&g.orientation===v&&g.xaxis===u._id&&g.yaxis===h._id&&(m.push(s),g.boxpoints!==!1&&(b=Math.max(b,g.jitter-g.pointpos-1),x=Math.max(x,g.jitter+g.pointpos-1)));for(s=0;s<m.length;s++)for(d=t.calcdata[m[s]],l=0;l<d.length;l++)y.push(d[l].pos);if(y.length){var _=o.distinctVals(y),w=_.minDiff/2;for(y.length===_.vals.length&&(t.numboxes=1),i.minDtick(r,_.minDiff,_.vals[0],!0),a=0;a<m.length;++a)t.calcdata[a][0].t.dPos=w;var A=(1-c.boxgap)*(1-c.boxgroupgap)*w/t.numboxes;i.expand(r,_.vals,{vpadminus:w+b*A,vpadplus:w+x*A})}}}},{\\\"../../lib\\\":373,\\\"../../plots/cartesian/axes\\\":393,\\\"../../plots/plots\\\":437}],469:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"d3\\\"),i=t(\\\"../../components/color\\\"),o=t(\\\"../../components/drawing\\\");e.exports=function(t){var e=n.select(t).selectAll(\\\"g.trace.boxes\\\");e.style(\\\"opacity\\\",function(t){return t[0].trace.opacity}).each(function(t){var e=t[0].trace,r=e.line.width;n.select(this).selectAll(\\\"path.box\\\").style(\\\"stroke-width\\\",r+\\\"px\\\").call(i.stroke,e.line.color).call(i.fill,e.fillcolor),\\n\",\n       \"n.select(this).selectAll(\\\"path.mean\\\").style({\\\"stroke-width\\\":r,\\\"stroke-dasharray\\\":2*r+\\\"px,\\\"+r+\\\"px\\\"}).call(i.stroke,e.line.color),n.select(this).selectAll(\\\"g.points path\\\").call(o.pointStyle,e)})}},{\\\"../../components/color\\\":301,\\\"../../components/drawing\\\":319,d3:70}],470:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../scattergeo/attributes\\\"),i=t(\\\"../../components/colorscale/attributes\\\"),o=t(\\\"../../plots/attributes\\\"),a=t(\\\"../../lib/extend\\\").extendFlat,s=n.marker.line;e.exports={locations:{valType:\\\"data_array\\\"},locationmode:n.locationmode,z:{valType:\\\"data_array\\\"},text:{valType:\\\"data_array\\\"},marker:{line:{color:s.color,width:s.width}},zauto:i.zauto,zmin:i.zmin,zmax:i.zmax,colorscale:i.colorscale,autocolorscale:i.autocolorscale,reversescale:i.reversescale,showscale:i.showscale,hoverinfo:a({},o.hoverinfo,{flags:[\\\"location\\\",\\\"z\\\",\\\"text\\\",\\\"name\\\"]}),_nestedModules:{colorbar:\\\"Colorbar\\\"}}},{\\\"../../components/colorscale/attributes\\\":307,\\\"../../lib/extend\\\":369,\\\"../../plots/attributes\\\":391,\\\"../scattergeo/attributes\\\":555}],471:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../components/colorscale/calc\\\");e.exports=function(t,e){n(e,e.z,\\\"\\\",\\\"z\\\")}},{\\\"../../components/colorscale/calc\\\":308}],472:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../lib\\\"),i=t(\\\"../../components/colorscale/defaults\\\"),o=t(\\\"./attributes\\\");e.exports=function(t,e,r,a){function s(r,i){return n.coerce(t,e,o,r,i)}var l,c=s(\\\"locations\\\");if(c&&(l=c.length),!c||!l)return void(e.visible=!1);var u=s(\\\"z\\\");return Array.isArray(u)?(u.length>l&&(e.z=u.slice(0,l)),s(\\\"locationmode\\\"),s(\\\"text\\\"),s(\\\"marker.line.color\\\"),s(\\\"marker.line.width\\\"),i(t,e,a,s,{prefix:\\\"\\\",cLetter:\\\"z\\\"}),void s(\\\"hoverinfo\\\",1===a._dataLength?\\\"location+z+text\\\":void 0)):void(e.visible=!1)}},{\\\"../../components/colorscale/defaults\\\":310,\\\"../../lib\\\":373,\\\"./attributes\\\":470}],473:[function(t,e,r){\\\"use strict\\\";var n={};n.attributes=t(\\\"./attributes\\\"),n.supplyDefaults=t(\\\"./defaults\\\"),n.colorbar=t(\\\"../heatmap/colorbar\\\"),n.calc=t(\\\"./calc\\\"),n.plot=t(\\\"./plot\\\").plot,n.moduleType=\\\"trace\\\",n.name=\\\"choropleth\\\",n.basePlotModule=t(\\\"../../plots/geo\\\"),n.categories=[\\\"geo\\\",\\\"noOpacity\\\"],n.meta={},e.exports=n},{\\\"../../plots/geo\\\":409,\\\"../heatmap/colorbar\\\":487,\\\"./attributes\\\":470,\\\"./calc\\\":471,\\\"./defaults\\\":472,\\\"./plot\\\":474}],474:[function(t,e,r){\\\"use strict\\\";function n(t,e){function r(e){var r=t.mockAxis;return a.tickText(r,r.c2l(e),\\\"hover\\\").text}var n=e.hoverinfo;if(\\\"none\\\"===n)return function(t){delete t.nameLabel,delete t.textLabel};var i=\\\"all\\\"===n?v.hoverinfo.flags:n.split(\\\"+\\\"),o=-1!==i.indexOf(\\\"name\\\"),s=-1!==i.indexOf(\\\"location\\\"),l=-1!==i.indexOf(\\\"z\\\"),c=-1!==i.indexOf(\\\"text\\\"),u=!o&&s;return function(t){var n=[];u?t.nameLabel=t.id:(o&&(t.nameLabel=e.name),s&&n.push(t.id)),l&&n.push(r(t.z)),c&&n.push(t.tx),t.textLabel=n.join(\\\"<br>\\\")}}function i(t){return function(e,r){return{points:[{data:t._input,fullData:t,curveNumber:t.index,pointNumber:r,location:e.id,z:e.z}]}}}var o=t(\\\"d3\\\"),a=t(\\\"../../plots/cartesian/axes\\\"),s=t(\\\"../../plots/cartesian/graph_interact\\\"),l=t(\\\"../../components/color\\\"),c=t(\\\"../../components/drawing\\\"),u=t(\\\"../../components/colorscale/get_scale\\\"),h=t(\\\"../../components/colorscale/make_scale_function\\\"),f=t(\\\"../../lib/topojson_utils\\\").getTopojsonFeatures,d=t(\\\"../../lib/geo_location_utils\\\").locationToFeature,p=t(\\\"../../lib/array_to_calc_item\\\"),g=t(\\\"../../constants/geo_constants\\\"),v=t(\\\"./attributes\\\"),m=e.exports={};m.calcGeoJSON=function(t,e){for(var r,n=[],i=t.locations,o=i.length,a=f(t,e),s=(t.marker||{}).line||{},l=0;o>l;l++)r=d(t.locationmode,i[l],a),void 0!==r&&(r.z=t.z[l],void 0!==t.text&&(r.tx=t.text[l]),p(s.color,r,\\\"mlc\\\",l),p(s.width,r,\\\"mlw\\\",l),n.push(r));return n.length>0&&(n[0].trace=t),n},m.plot=function(t,e,r){var a,l=t.framework,c=l.select(\\\"g.choroplethlayer\\\"),u=l.select(\\\"g.baselayer\\\"),h=l.select(\\\"g.baselayeroverchoropleth\\\"),f=g.baseLayersOverChoropleth,d=c.selectAll(\\\"g.trace.choropleth\\\").data(e,function(t){return t.uid});d.enter().append(\\\"g\\\").attr(\\\"class\\\",\\\"trace choropleth\\\"),d.exit().remove(),d.each(function(e){function r(e,r){if(t.showHover){var n=t.projection(e.properties.ct);c(e),s.loneHover({x:n[0],y:n[1],name:e.nameLabel,text:e.textLabel},{container:t.hoverContainer.node()}),t.graphDiv.emit(\\\"plotly_hover\\\",u(e,r))}}function a(e,r){t.graphDiv.emit(\\\"plotly_click\\\",u(e,r))}var l=m.calcGeoJSON(e,t.topojson),c=n(t,e),u=i(e),h=o.select(this).selectAll(\\\"path.choroplethlocation\\\").data(l);h.enter().append(\\\"path\\\").classed(\\\"choroplethlocation\\\",!0).on(\\\"mouseover\\\",r).on(\\\"click\\\",a).on(\\\"mouseout\\\",function(){s.loneUnhover(t.hoverContainer)}).on(\\\"mousedown\\\",function(){s.loneUnhover(t.hoverContainer)}).on(\\\"mouseup\\\",r),h.exit().remove()}),h.selectAll(\\\"*\\\").remove();for(var p=0;p<f.length;p++)a=f[p],u.select(\\\"g.\\\"+a).remove(),t.drawTopo(h,a,r),t.styleLayer(h,a,r);m.style(t)},m.style=function(t){t.framework.selectAll(\\\"g.trace.choropleth\\\").each(function(t){var e=o.select(this),r=t.marker||{},n=r.line||{},i=t.zmin,a=t.zmax,s=u(t.colorscale),f=h(s,i,a);e.selectAll(\\\"path.choroplethlocation\\\").each(function(t){o.select(this).attr(\\\"fill\\\",function(t){return f(t.z)}).call(l.stroke,t.mlc||n.color).call(c.dashLine,\\\"\\\",t.mlw||n.width)})})}},{\\\"../../components/color\\\":301,\\\"../../components/colorscale/get_scale\\\":312,\\\"../../components/colorscale/make_scale_function\\\":317,\\\"../../components/drawing\\\":319,\\\"../../constants/geo_constants\\\":358,\\\"../../lib/array_to_calc_item\\\":365,\\\"../../lib/geo_location_utils\\\":370,\\\"../../lib/topojson_utils\\\":385,\\\"../../plots/cartesian/axes\\\":393,\\\"../../plots/cartesian/graph_interact\\\":398,\\\"./attributes\\\":470,d3:70}],475:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../heatmap/attributes\\\"),i=t(\\\"../scatter/attributes\\\"),o=t(\\\"../../lib/extend\\\").extendFlat,a=i.line;e.exports={z:n.z,x:n.x,x0:n.x0,dx:n.dx,y:n.y,y0:n.y0,dy:n.dy,text:n.text,transpose:n.transpose,xtype:n.xtype,ytype:n.ytype,zauto:n.zauto,zmin:n.zmin,zmax:n.zmax,colorscale:n.colorscale,autocolorscale:n.autocolorscale,reversescale:n.reversescale,showscale:n.showscale,connectgaps:n.connectgaps,autocontour:{valType:\\\"boolean\\\",dflt:!0},ncontours:{valType:\\\"integer\\\",dflt:0},contours:{start:{valType:\\\"number\\\",dflt:null},end:{valType:\\\"number\\\",dflt:null},size:{valType:\\\"number\\\",dflt:null},coloring:{valType:\\\"enumerated\\\",values:[\\\"fill\\\",\\\"heatmap\\\",\\\"lines\\\",\\\"none\\\"],dflt:\\\"fill\\\"},showlines:{valType:\\\"boolean\\\",dflt:!0}},line:{color:o({},a.color,{}),width:a.width,dash:a.dash,smoothing:o({},a.smoothing,{})},_nestedModules:{colorbar:\\\"Colorbar\\\"}}},{\\\"../../lib/extend\\\":369,\\\"../heatmap/attributes\\\":485,\\\"../scatter/attributes\\\":528}],476:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../plots/cartesian/axes\\\"),i=t(\\\"../heatmap/calc\\\");e.exports=function(t,e){var r=i(t,e),o=e.contours;if(e.autocontour!==!1){var a={type:\\\"linear\\\",range:[e.zmin,e.zmax]};n.autoTicks(a,(e.zmax-e.zmin)/(e.ncontours||15)),o.start=n.tickFirst(a),o.size=a.dtick,a.range.reverse(),o.end=n.tickFirst(a),o.start===e.zmin&&(o.start+=o.size),o.end===e.zmax&&(o.end-=o.size),o.end+=o.size/100,e._input.contours=o}return r}},{\\\"../../plots/cartesian/axes\\\":393,\\\"../heatmap/calc\\\":486}],477:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../plots/plots\\\"),i=t(\\\"../../components/colorbar/draw\\\"),o=t(\\\"./make_color_map\\\");e.exports=function(t,e){var r=e[0].trace,a=\\\"cb\\\"+r.uid;if(t._fullLayout._infolayer.selectAll(\\\".\\\"+a).remove(),r.showscale===!1)return void n.autoMargin(t,a);var s=i(t,a);e[0].t.cb=s;var l=r.contours,c=r.line,u=l.size||1,h=l.coloring,f=o(r,{isColorbar:!0});\\\"heatmap\\\"===h&&s.filllevels({start:r.zmin,end:r.zmax,size:(r.zmax-r.zmin)/254}),s.fillcolor(\\\"fill\\\"===h||\\\"heatmap\\\"===h?f:\\\"\\\").line({color:\\\"lines\\\"===h?f:c.color,width:l.showlines!==!1?c.width:0,dash:c.dash}).levels({start:l.start,end:l.end,size:u}).options(r.colorbar)()}},{\\\"../../components/colorbar/draw\\\":304,\\\"../../plots/plots\\\":437,\\\"./make_color_map\\\":481}],478:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../lib\\\"),i=t(\\\"../heatmap/has_columns\\\"),o=t(\\\"../heatmap/xyz_defaults\\\"),a=t(\\\"../contour/style_defaults\\\"),s=t(\\\"./attributes\\\");e.exports=function(t,e,r,l){function c(r,i){return n.coerce(t,e,s,r,i)}var u=o(t,e,c);if(!u)return void(e.visible=!1);c(\\\"text\\\"),c(\\\"connectgaps\\\",i(e));var h=n.coerce2(t,e,s,\\\"contours.start\\\"),f=n.coerce2(t,e,s,\\\"contours.end\\\"),d=c(\\\"autocontour\\\",!(h&&f));c(d?\\\"ncontours\\\":\\\"contours.size\\\"),a(t,e,c,l)}},{\\\"../../lib\\\":373,\\\"../contour/style_defaults\\\":484,\\\"../heatmap/has_columns\\\":490,\\\"../heatmap/xyz_defaults\\\":496,\\\"./attributes\\\":475}],479:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../heatmap/hover\\\");e.exports=function(t,e,r,i){return n(t,e,r,i,!0)}},{\\\"../heatmap/hover\\\":491}],480:[function(t,e,r){\\\"use strict\\\";var n={};n.attributes=t(\\\"./attributes\\\"),n.supplyDefaults=t(\\\"./defaults\\\"),n.calc=t(\\\"./calc\\\"),n.plot=t(\\\"./plot\\\"),n.style=t(\\\"./style\\\"),n.colorbar=t(\\\"./colorbar\\\"),n.hoverPoints=t(\\\"./hover\\\"),n.moduleType=\\\"trace\\\",n.name=\\\"contour\\\",n.basePlotModule=t(\\\"../../plots/cartesian\\\"),n.categories=[\\\"cartesian\\\",\\\"2dMap\\\",\\\"contour\\\"],n.meta={},e.exports=n},{\\\"../../plots/cartesian\\\":399,\\\"./attributes\\\":475,\\\"./calc\\\":476,\\\"./colorbar\\\":477,\\\"./defaults\\\":478,\\\"./hover\\\":479,\\\"./plot\\\":482,\\\"./style\\\":483}],481:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"d3\\\"),i=t(\\\"../../components/colorscale/get_scale\\\");e.exports=function(t){var e,r,o=t.contours,a=o.start,s=o.end,l=o.size||1,c=Math.floor((s+l/10-a)/l)+1,u=\\\"lines\\\"===o.coloring?0:1,h=i(t.colorscale),f=h.length,d=new Array(f),p=new Array(f);if(\\\"heatmap\\\"===o.coloring){for(t.zauto&&t.autocontour===!1&&(t.zmin=a-l/2,t.zmax=t.zmin+c*l),r=0;f>r;r++)e=h[r],d[r]=e[0]*(t.zmax-t.zmin)+t.zmin,p[r]=e[1];var g=n.extent([t.zmin,t.zmax,o.start,o.start+l*(c-1)]),v=g[t.zmin<t.zmax?0:1],m=g[t.zmin<t.zmax?1:0];v!==t.zmin&&(d.splice(0,0,v),p.splice(0,0,Range[0])),m!==t.zmax&&(d.push(m),p.push(p[p.length-1]))}else for(r=0;f>r;r++)e=h[r],d[r]=(e[0]*(c+u-1)-u/2)*l+a,p[r]=e[1];var y=n.scale.linear().interpolate(n.interpolateRgb).domain(d).range(p);return y}},{\\\"../../components/colorscale/get_scale\\\":312,d3:70}],482:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){_.markTime(\\\"in Contour.plot\\\");var n=r[0].trace,o=r[0].x,s=r[0].y,c=n.contours,u=n.uid,h=e.x(),f=e.y(),v=t._fullLayout,b=\\\"contour\\\"+u,x=i(c,e,r[0]);if(n.visible!==!0)return v._paper.selectAll(\\\".\\\"+b+\\\",.hm\\\"+u).remove(),void v._infolayer.selectAll(\\\".cb\\\"+u).remove();\\\"heatmap\\\"===c.coloring?(n.zauto&&n.autocontour===!1&&(n._input.zmin=n.zmin=c.start-c.size/2,n._input.zmax=n.zmax=n.zmin+x.length*c.size),A(t,e,[r])):v._paper.selectAll(\\\".hm\\\"+u).remove(),a(x),l(x);var w=h.c2p(o[0],!0),k=h.c2p(o[o.length-1],!0),M=f.c2p(s[0],!0),T=f.c2p(s[s.length-1],!0),E=[[w,T],[k,T],[k,M],[w,M]],L=d(e,r,b);p(L,E,c),g(L,x,E,c),m(L,x,c),y(L,e,r[0],E),_.markTime(\\\"done Contour.plot\\\")}function i(t,e,r){for(var n=t.size||1,i=[],o=t.start;o<t.end+n/10;o+=n)i.push({level:o,crossings:{},starts:[],edgepaths:[],paths:[],xaxis:e.x(),yaxis:e.y(),x:r.x,y:r.y,z:r.z,smoothing:r.trace.line.smoothing});return i}function o(t,e){var r=(e[0][0]>t?0:1)+(e[0][1]>t?0:2)+(e[1][1]>t?0:4)+(e[1][0]>t?0:8);if(5===r||10===r){var n=(e[0][0]+e[0][1]+e[1][0]+e[1][1])/4;return t>n?5===r?713:1114:5===r?104:208}return 15===r?0:r}function a(t){var e,r,n,i,a,s,l,c,u,h=t[0].z,f=h.length,d=h[0].length,p=2===f||2===d;for(r=0;f-1>r;r++)for(i=[],0===r&&(i=i.concat(k)),r===f-2&&(i=i.concat(M)),e=0;d-1>e;e++)for(n=i.slice(),0===e&&(n=n.concat(T)),e===d-2&&(n=n.concat(E)),a=e+\\\",\\\"+r,s=[[h[r][e],h[r][e+1]],[h[r+1][e],h[r+1][e+1]]],u=0;u<t.length;u++)c=t[u],l=o(c.level,s),l&&(c.crossings[a]=l,-1!==n.indexOf(l)&&(c.starts.push([e,r]),p&&-1!==n.indexOf(l,n.indexOf(l)+1)&&c.starts.push([e,r])))}function s(t,e,r){function n(t){return d[t%d.length]}var i,o=e.join(\\\",\\\"),a=o,s=t.crossings[a],l=c(s,r,e),d=[f(t,e,[-l[0],-l[1]])],p=l.join(\\\",\\\"),g=t.z.length,v=t.z[0].length;for(i=0;1e4>i;i++){if(s>20?(s=S[s][(l[0]||l[1])<0?0:1],t.crossings[a]=C[s]):delete t.crossings[a],l=L[s],!l){console.log(\\\"found bad marching index\\\",s,e,t.level);break}if(d.push(f(t,e,l)),e[0]+=l[0],e[1]+=l[1],u(d[d.length-1],d[d.length-2])&&d.pop(),a=e.join(\\\",\\\"),a===o&&l.join(\\\",\\\")===p||r&&(l[0]&&(e[0]<0||e[0]>v-2)||l[1]&&(e[1]<0||e[1]>g-2)))break;s=t.crossings[a]}1e4===i&&console.log(\\\"Infinite loop in contour?\\\");var m,y,b,x,_,w,A,k=u(d[0],d[d.length-1]),M=0,T=.2*t.smoothing,E=[],P=0;for(i=1;i<d.length;i++)A=h(d[i],d[i-1]),M+=A,E.push(A);var z=M/E.length*T;for(i=d.length-2;i>=P;i--)if(m=E[i],z>m){for(b=0,y=i-1;y>=P&&m+E[y]<z;y--)m+=E[y];if(k&&i===d.length-2)for(b=0;y>b&&m+E[b]<z;b++)m+=E[b];_=i-y+b+1,w=Math.floor((i+y+b+2)/2),x=k||i!==d.length-2?k||-1!==y?_%2?n(w):[(n(w)[0]+n(w+1)[0])/2,(n(w)[1]+n(w+1)[1])/2]:d[0]:d[d.length-1],d.splice(y+1,i-y+1,x),i=y+1,b&&(P=b),k&&(i===d.length-2?d[b]=d[d.length-1]:0===i&&(d[d.length-1]=d[0]))}if(d.splice(0,P),!(d.length<2))if(k)d.pop(),t.paths.push(d);else{r||console.log(\\\"unclosed interior contour?\\\",t.level,o,d.join(\\\"L\\\"));var R=!1;t.edgepaths.forEach(function(e,r){if(!R&&u(e[0],d[d.length-1])){d.pop(),R=!0;var n=!1;t.edgepaths.forEach(function(e,i){!n&&u(e[e.length-1],d[0])&&(n=!0,d.splice(0,1),t.edgepaths.splice(r,1),i===r?t.paths.push(d.concat(e)):t.edgepaths[i]=t.edgepaths[i].concat(d,e))}),n||(t.edgepaths[r]=d.concat(e))}}),t.edgepaths.forEach(function(e,r){!R&&u(e[e.length-1],d[0])&&(d.splice(0,1),t.edgepaths[r]=e.concat(d),R=!0)}),R||t.edgepaths.push(d)}}function l(t){var e,r,n,i,o;for(n=0;n<t.length;n++){for(i=t[n],o=0;o<i.starts.length;o++)r=i.starts[o],s(i,r,\\\"edge\\\");for(e=0;Object.keys(i.crossings).length&&1e4>e;)e++,r=Object.keys(i.crossings)[0].split(\\\",\\\").map(Number),s(i,r);1e4===e&&console.log(\\\"Infinite loop in contour?\\\")}}function c(t,e,r){var n=0,i=0;return t>20&&e?208===t||1114===t?n=0===r[0]?1:-1:i=0===r[1]?1:-1:-1!==k.indexOf(t)?i=1:-1!==T.indexOf(t)?n=1:-1!==M.indexOf(t)?i=-1:n=-1,[n,i]}function u(t,e){return Math.abs(t[0]-e[0])<.01&&Math.abs(t[1]-e[1])<.01}function h(t,e){var r=t[0]-e[0],n=t[1]-e[1];return Math.sqrt(r*r+n*n)}function f(t,e,r){var n=e[0]+Math.max(r[0],0),i=e[1]+Math.max(r[1],0),o=t.z[i][n],a=t.xaxis,s=t.yaxis;if(r[1]){var l=(t.level-o)/(t.z[i][n+1]-o);return[a.c2p((1-l)*t.x[n]+l*t.x[n+1],!0),s.c2p(t.y[i],!0)]}var c=(t.level-o)/(t.z[i+1][n]-o);return[a.c2p(t.x[n],!0),s.c2p((1-c)*t.y[i]+c*t.y[i+1],!0)]}function d(t,e,r){var n=t.plot.select(\\\".maplayer\\\").selectAll(\\\"g.contour.\\\"+r).data(e);return n.enter().append(\\\"g\\\").classed(\\\"contour\\\",!0).classed(r,!0),n.exit().remove(),n}function p(t,e,r){var n=t.selectAll(\\\"g.contourbg\\\").data([0]);n.enter().append(\\\"g\\\").classed(\\\"contourbg\\\",!0);var i=n.selectAll(\\\"path\\\").data(\\\"fill\\\"===r.coloring?[0]:[]);i.enter().append(\\\"path\\\"),i.exit().remove(),i.attr(\\\"d\\\",\\\"M\\\"+e.join(\\\"L\\\")+\\\"Z\\\").style(\\\"stroke\\\",\\\"none\\\")}function g(t,e,r,n){var i=t.selectAll(\\\"g.contourfill\\\").data([0]);i.enter().append(\\\"g\\\").classed(\\\"contourfill\\\",!0);var o=i.selectAll(\\\"path\\\").data(\\\"fill\\\"===n.coloring?e:[]);o.enter().append(\\\"path\\\"),o.exit().remove(),o.each(function(t){var e=v(t,r);e?x.select(this).attr(\\\"d\\\",e).style(\\\"stroke\\\",\\\"none\\\"):x.select(this).remove()})}function v(t,e){function r(t){return Math.abs(t[1]-e[0][1])<.01}function n(t){return Math.abs(t[1]-e[2][1])<.01}function i(t){return Math.abs(t[0]-e[0][0])<.01}function o(t){return Math.abs(t[0]-e[2][0])<.01}for(var a,s,l,c,u,h,f=t.edgepaths.length||t.z[0][0]<t.level?\\\"\\\":\\\"M\\\"+e.join(\\\"L\\\")+\\\"Z\\\",d=0,p=t.edgepaths.map(function(t,e){return e}),g=!0;p.length;){for(h=w.smoothopen(t.edgepaths[d],t.smoothing),f+=g?h:h.replace(/^M/,\\\"L\\\"),p.splice(p.indexOf(d),1),a=t.edgepaths[d][t.edgepaths[d].length-1],c=-1,l=0;4>l;l++){if(!a){console.log(\\\"missing end?\\\",d,t);break}for(r(a)&&!o(a)?s=e[1]:i(a)?s=e[0]:n(a)?s=e[3]:o(a)&&(s=e[2]),u=0;u<t.edgepaths.length;u++){var v=t.edgepaths[u][0];Math.abs(a[0]-s[0])<.01?Math.abs(a[0]-v[0])<.01&&(v[1]-a[1])*(s[1]-v[1])>=0&&(s=v,c=u):Math.abs(a[1]-s[1])<.01?Math.abs(a[1]-v[1])<.01&&(v[0]-a[0])*(s[0]-v[0])>=0&&(s=v,c=u):console.log(\\\"endpt to newendpt is not vert. or horz.\\\",a,s,v)}if(a=s,c>=0)break;f+=\\\"L\\\"+s}if(c===t.edgepaths.length){console.log(\\\"unclosed perimeter path\\\");break}d=c,g=-1===p.indexOf(d),g&&(d=p[0],f+=\\\"Z\\\")}for(d=0;d<t.paths.length;d++)f+=w.smoothclosed(t.paths[d],t.smoothing);return f}function m(t,e,r){var n=e[0].smoothing,i=t.selectAll(\\\"g.contourlevel\\\").data(r.showlines===!1?[]:e);i.enter().append(\\\"g\\\").classed(\\\"contourlevel\\\",!0),i.exit().remove();var o=i.selectAll(\\\"path.openline\\\").data(function(t){return t.edgepaths});o.enter().append(\\\"path\\\").classed(\\\"openline\\\",!0),o.exit().remove(),o.attr(\\\"d\\\",function(t){return w.smoothopen(t,n)}).style(\\\"stroke-miterlimit\\\",1);var a=i.selectAll(\\\"path.closedline\\\").data(function(t){return t.paths});a.enter().append(\\\"path\\\").classed(\\\"closedline\\\",!0),a.exit().remove(),a.attr(\\\"d\\\",function(t){return w.smoothclosed(t,n)}).style(\\\"stroke-miterlimit\\\",1)}function y(t,e,r,n){var i=\\\"clip\\\"+r.trace.uid,o=e.plot.selectAll(\\\"defs\\\").data([0]);o.enter().append(\\\"defs\\\");var s=o.selectAll(\\\"#\\\"+i).data(r.trace.connectgaps?[]:[0]);if(s.enter().append(\\\"clipPath\\\").attr(\\\"id\\\",i),s.exit().remove(),r.trace.connectgaps===!1){var c={level:.9,crossings:{},starts:[],edgepaths:[],paths:[],xaxis:e.x(),yaxis:e.y(),x:r.x,y:r.y,z:b(r),smoothing:0};a([c]),l([c]);var u=v(c,n),h=s.selectAll(\\\"path\\\").data([0]);h.enter().append(\\\"path\\\"),h.attr(\\\"d\\\",u)}else i=null;t.call(w.setClipUrl,i),e.plot.selectAll(\\\".hm\\\"+r.trace.uid).call(w.setClipUrl,i)}function b(t){var e,r,n=t.trace._emptypoints,i=[],o=t.z.length,a=t.z[0].length,s=[];for(e=0;a>e;e++)s.push(1);for(e=0;o>e;e++)i.push(s.slice());for(e=0;e<n.length;e++)r=n[e],i[r[0]][r[1]]=0;return t.zmask=i,i}var x=t(\\\"d3\\\"),_=t(\\\"../../lib\\\"),w=t(\\\"../../components/drawing\\\"),A=t(\\\"../heatmap/plot\\\");e.exports=function(t,e,r){for(var i=0;i<r.length;i++)n(t,e,r[i])};var k=[1,9,13,104,713],M=[4,6,7,104,713],T=[8,12,14,208,1114],E=[2,3,11,208,1114],L=[null,[-1,0],[0,-1],[-1,0],[1,0],null,[0,-1],[-1,0],[0,1],[0,1],null,[0,1],[1,0],[1,0],[0,-1]],S={104:[4,1],208:[2,8],713:[7,13],1114:[11,14]},C={1:4,2:8,4:1,7:13,8:2,11:14,13:7,14:11}},{\\\"../../components/drawing\\\":319,\\\"../../lib\\\":373,\\\"../heatmap/plot\\\":494,d3:70}],483:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"d3\\\"),i=t(\\\"../../components/drawing\\\"),o=t(\\\"../heatmap/style\\\"),a=t(\\\"./make_color_map\\\");e.exports=function(t){var e=n.select(t).selectAll(\\\"g.contour\\\");e.style(\\\"opacity\\\",function(t){return t.trace.opacity}),e.each(function(t){var e=n.select(this),r=t.trace,o=r.contours,s=r.line,l=o.size||1,c=o.start,u=a(r);e.selectAll(\\\"g.contourlevel\\\").each(function(t,e){n.select(this).selectAll(\\\"path\\\").call(i.lineGroupStyle,s.width,\\\"lines\\\"===o.coloring?u(c+e*l):s.color,s.dash)}),e.selectAll(\\\"g.contourbg path\\\").style(\\\"fill\\\",u(c-l/2)),e.selectAll(\\\"g.contourfill path\\\").style(\\\"fill\\\",function(t,e){return u(c+(e+.5)*l)})}),o(t)}},{\\\"../../components/drawing\\\":319,\\\"../heatmap/style\\\":495,\\\"./make_color_map\\\":481,d3:70}],484:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../components/colorscale/defaults\\\");e.exports=function(t,e,r,i){var o,a=r(\\\"contours.coloring\\\");\\\"fill\\\"===a&&(o=r(\\\"contours.showlines\\\")),o!==!1&&(\\\"lines\\\"!==a&&r(\\\"line.color\\\",\\\"#000\\\"),r(\\\"line.width\\\",.5),r(\\\"line.dash\\\")),r(\\\"line.smoothing\\\"),\\\"none\\\"!==(e.contours||{}).coloring&&n(t,e,i,r,{prefix:\\\"\\\",cLetter:\\\"z\\\"})}},{\\\"../../components/colorscale/defaults\\\":310}],485:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../scatter/attributes\\\"),i=t(\\\"../../components/colorscale/attributes\\\"),o=t(\\\"../../lib/extend\\\").extendFlat;e.exports={z:{valType:\\\"data_array\\\"},x:n.x,x0:n.x0,dx:n.dx,y:n.y,y0:n.y0,dy:n.dy,text:{valType:\\\"data_array\\\"},transpose:{valType:\\\"boolean\\\",dflt:!1},xtype:{valType:\\\"enumerated\\\",values:[\\\"array\\\",\\\"scaled\\\"]},ytype:{valType:\\\"enumerated\\\",values:[\\\"array\\\",\\\"scaled\\\"]},zauto:i.zauto,zmin:i.zmin,zmax:i.zmax,colorscale:i.colorscale,autocolorscale:o({},i.autocolorscale,{dflt:!1}),reversescale:i.reversescale,showscale:i.showscale,zsmooth:{valType:\\\"enumerated\\\",values:[\\\"fast\\\",\\\"best\\\",!1],dflt:!1},connectgaps:{valType:\\\"boolean\\\",dflt:!1},_nestedModules:{colorbar:\\\"Colorbar\\\"}}},{\\\"../../components/colorscale/attributes\\\":307,\\\"../../lib/extend\\\":369,\\\"../scatter/attributes\\\":528}],486:[function(t,e,r){\\\"use strict\\\";function n(t){function e(t){return c(t)?+t:void 0}var r,n,i,o,a,s,l=t.z;if(t.transpose){for(r=0,a=0;a<l.length;a++)r=Math.max(r,l[a].length);if(0===r)return!1;i=function(t){return t.length},o=function(t,e,r){return t[r][e]}}else r=l.length,i=function(t,e){return t[e].length},o=function(t,e,r){return t[e][r]};var u=new Array(r);for(a=0;r>a;a++)for(n=i(l,a),u[a]=new Array(n),s=0;n>s;s++)u[a][s]=e(o(l,a,s));return u}function i(t,e,r,n,i,o){var a,s,l,c=[],u=f.traceIs(t,\\\"contour\\\"),h=f.traceIs(t,\\\"histogram\\\");if(Array.isArray(e)&&!h&&\\\"category\\\"!==o.type){e=e.map(o.d2c);var d=e.length;if(!(i>=d))return u?e.slice(0,i):e.slice(0,i+1);if(u)c=e.slice(0,i);else if(1===i)c=[e[0]-.5,e[0]+.5];else{for(c=[1.5*e[0]-.5*e[1]],l=1;d>l;l++)c.push(.5*(e[l-1]+e[l]));c.push(1.5*e[d-1]-.5*e[d-2])}if(i>d){var p=c[c.length-1],g=p-c[c.length-2];for(l=d;i>l;l++)p+=g,c.push(p)}}else for(s=n||1,a=void 0===r?0:h||\\\"category\\\"===o.type?r:o.d2c(r),l=u?0:-.5;i>l;l++)c.push(a+s*l);return c}function o(t){return.5-.25*Math.min(1,.5*t)}function a(t,e,r){var n,i,a=1;if(Array.isArray(r))for(n=0;n<e.length;n++)i=e[n],t[i[0]][i[1]]=r[i[0]][i[1]];else l(t,e);for(n=0;n<e.length&&!(e[n][2]<4);n++);for(e=e.slice(n),n=0;100>n&&a>y;n++)a=l(t,e,o(a));return a>y&&console.log(\\\"interp2d didn't converge quickly\\\",a),t}function s(t){var e,r,n,i,o,a,s,l,c=[],u={},h=[],f=t[0],d=[],p=[0,0,0],g=m(t);for(r=0;r<t.length;r++)for(e=d,d=f,f=t[r+1]||[],n=0;g>n;n++)void 0===d[n]&&(a=(void 0!==d[n-1]?1:0)+(void 0!==d[n+1]?1:0)+(void 0!==e[n]?1:0)+(void 0!==f[n]?1:0),a?(0===r&&a++,0===n&&a++,r===t.length-1&&a++,n===d.length-1&&a++,4>a&&(u[[r,n]]=[r,n,a]),c.push([r,n,a])):h.push([r,n]));for(;h.length;){for(s={},l=!1,o=h.length-1;o>=0;o--)i=h[o],r=i[0],n=i[1],a=((u[[r-1,n]]||p)[2]+(u[[r+1,n]]||p)[2]+(u[[r,n-1]]||p)[2]+(u[[r,n+1]]||p)[2])/20,a&&(s[i]=[r,n,a],h.splice(o,1),l=!0);if(!l)throw\\\"findEmpties iterated with no new neighbors\\\";for(i in s)u[i]=s[i],c.push(s[i])}return c.sort(function(t,e){return e[2]-t[2]})}function l(t,e,r){var n,i,o,a,s,l,c,u,h,f,d,p,g,v=0;for(a=0;a<e.length;a++){for(n=e[a],i=n[0],o=n[1],d=t[i][o],f=0,h=0,s=0;4>s;s++)l=b[s],c=t[i+l[0]],c&&(u=c[o+l[1]],void 0!==u&&(0===f?p=g=u:(p=Math.min(p,u),g=Math.max(g,u)),h++,f+=u));if(0===h)throw\\\"iterateInterp2d order is wrong: no defined neighbors\\\";t[i][o]=f/h,void 0===d?4>h&&(v=1):(t[i][o]=(1+r)*t[i][o]-r*d,g>p&&(v=Math.max(v,Math.abs(t[i][o]-d)/(g-p))))}return v}var c=t(\\\"fast-isnumeric\\\"),u=t(\\\"../../lib\\\"),h=t(\\\"../../plots/cartesian/axes\\\"),f=t(\\\"../../plots/plots\\\"),d=t(\\\"../histogram2d/calc\\\"),p=t(\\\"../../components/colorscale/calc\\\"),g=t(\\\"./has_columns\\\"),v=t(\\\"./convert_column_xyz\\\"),m=t(\\\"./max_row_length\\\");e.exports=function(t,e){function r(t){E=e._input.zsmooth=e.zsmooth=!1,u.notifier(\\\"cannot fast-zsmooth: \\\"+t)}u.markTime(\\\"start convert x&y\\\");var o,l,c,y,b,x,_,w,A=h.getFromId(t,e.xaxis||\\\"x\\\"),k=h.getFromId(t,e.yaxis||\\\"y\\\"),M=f.traceIs(e,\\\"contour\\\"),T=f.traceIs(e,\\\"histogram\\\"),E=M?\\\"best\\\":e.zsmooth;if(A._minDtick=0,k._minDtick=0,u.markTime(\\\"done convert x&y\\\"),T){var L=d(t,e);o=L.x,l=L.x0,c=L.dx,y=L.y,b=L.y0,x=L.dy,_=L.z}else g(e)&&v(e,A,k),o=e.x?A.makeCalcdata(e,\\\"x\\\"):[],y=e.y?k.makeCalcdata(e,\\\"y\\\"):[],l=e.x0||0,c=e.dx||1,b=e.y0||0,x=e.dy||1,_=n(e),(M||e.connectgaps)&&(e._emptypoints=s(_),e._interpz=a(_,e._emptypoints,e._interpz));if(\\\"fast\\\"===E)if(\\\"log\\\"===A.type||\\\"log\\\"===k.type)r(\\\"log axis found\\\");else if(!T){if(o.length){var S=(o[o.length-1]-o[0])/(o.length-1),C=Math.abs(S/100);for(w=0;w<o.length-1;w++)if(Math.abs(o[w+1]-o[w]-S)>C){r(\\\"x scale is not linear\\\");break}}if(y.length&&\\\"fast\\\"===E){var P=(y[y.length-1]-y[0])/(y.length-1),z=Math.abs(P/100);for(w=0;w<y.length-1;w++)if(Math.abs(y[w+1]-y[w]-P)>z){r(\\\"y scale is not linear\\\");break}}}var R=m(_),O=\\\"scaled\\\"===e.xtype?\\\"\\\":e.x,I=i(e,O,l,c,R,A),N=\\\"scaled\\\"===e.ytype?\\\"\\\":e.y,j=i(e,N,b,x,_.length,k);h.expand(A,I),h.expand(k,j);var F={x:I,y:j,z:_};if(p(e,_,\\\"\\\",\\\"z\\\"),M&&e.contours&&\\\"heatmap\\\"===e.contours.coloring){var D=\\\"contour\\\"===e.type?\\\"heatmap\\\":\\\"histogram2d\\\";F.xfill=i(D,O,l,c,R,A),F.yfill=i(D,N,b,x,_.length,k)}return[F]};var y=.01,b=[[-1,0],[1,0],[0,-1],[0,1]]},{\\\"../../components/colorscale/calc\\\":308,\\\"../../lib\\\":373,\\\"../../plots/cartesian/axes\\\":393,\\\"../../plots/plots\\\":437,\\\"../histogram2d/calc\\\":506,\\\"./convert_column_xyz\\\":488,\\\"./has_columns\\\":490,\\\"./max_row_length\\\":493,\\\"fast-isnumeric\\\":74}],487:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"d3\\\"),i=t(\\\"fast-isnumeric\\\"),o=t(\\\"../../lib\\\"),a=t(\\\"../../plots/plots\\\"),s=t(\\\"../../components/colorscale/get_scale\\\"),l=t(\\\"../../components/colorbar/draw\\\");e.exports=function(t,e){var r=e[0].trace,c=\\\"cb\\\"+r.uid,u=s(r.colorscale),h=r.zmin,f=r.zmax;if(i(h)||(h=o.aggNums(Math.min,null,r.z)),i(f)||(f=o.aggNums(Math.max,null,r.z)),t._fullLayout._infolayer.selectAll(\\\".\\\"+c).remove(),!r.showscale)return void a.autoMargin(t,c);var d=e[0].t.cb=l(t,c);d.fillcolor(n.scale.linear().domain(u.map(function(t){return h+t[0]*(f-h)})).range(u.map(function(t){return t[1]}))).filllevels({start:h,end:f,size:(f-h)/254}).options(r.colorbar)(),o.markTime(\\\"done colorbar\\\")}},{\\\"../../components/colorbar/draw\\\":304,\\\"../../components/colorscale/get_scale\\\":312,\\\"../../lib\\\":373,\\\"../../plots/plots\\\":437,d3:70,\\\"fast-isnumeric\\\":74}],488:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../lib\\\");e.exports=function(t,e,r){var i,o=t.x.slice(),a=t.y.slice(),s=t.z,l=t.text,c=Math.min(o.length,a.length,s.length),u=void 0!==l&&!Array.isArray(l[0]);for(c<o.length&&(o=o.slice(0,c)),c<a.length&&(a=a.slice(0,c)),i=0;c>i;i++)o[i]=e.d2c(o[i]),a[i]=r.d2c(a[i]);var h,f,d,p=n.distinctVals(o),g=p.vals,v=n.distinctVals(a),m=v.vals,y=n.init2dArray(m.length,g.length);for(u&&(d=n.init2dArray(m.length,g.length)),i=0;c>i;i++)h=n.findBin(o[i]+p.minDiff/2,g),f=n.findBin(a[i]+v.minDiff/2,m),y[f][h]=s[i],u&&(d[f][h]=l[i]);t.x=g,t.y=m,t.z=y,u&&(t.text=d)}},{\\\"../../lib\\\":373}],489:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../lib\\\"),i=t(\\\"./has_columns\\\"),o=t(\\\"./xyz_defaults\\\"),a=t(\\\"../../components/colorscale/defaults\\\"),s=t(\\\"./attributes\\\");e.exports=function(t,e,r,l){function c(r,i){return n.coerce(t,e,s,r,i)}var u=o(t,e,c);return u?(c(\\\"text\\\"),c(\\\"zsmooth\\\"),c(\\\"connectgaps\\\",i(e)&&e.zsmooth!==!1),void a(t,e,l,c,{prefix:\\\"\\\",cLetter:\\\"z\\\"})):void(e.visible=!1)}},{\\\"../../components/colorscale/defaults\\\":310,\\\"../../lib\\\":373,\\\"./attributes\\\":485,\\\"./has_columns\\\":490,\\\"./xyz_defaults\\\":496}],490:[function(t,e,r){\\\"use strict\\\";e.exports=function(t){return!Array.isArray(t.z[0])}},{}],491:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../plots/cartesian/graph_interact\\\"),i=t(\\\"../../lib\\\");e.exports=function(t,e,r,o,a){if(!(t.distance<n.MAXDIST)){var s,l,c,u,h=t.cd[0],f=h.trace,d=t.xa,p=t.ya,g=h.x,v=h.y,m=h.z,y=h.zmask,b=g,x=v;if(t.index!==!1){try{c=Math.round(t.index[1]),u=Math.round(t.index[0])}catch(_){return void console.log(\\\"Error hovering on heatmap, pointNumber must be [row,col], found:\\\",t.index)}if(0>c||c>=m[0].length||0>u||u>m.length)return}else{if(n.inbox(e-g[0],e-g[g.length-1])>n.MAXDIST||n.inbox(r-v[0],r-v[v.length-1])>n.MAXDIST)return;if(a){var w;for(b=[2*g[0]-g[1]],w=1;w<g.length;w++)b.push((g[w]+g[w-1])/2);for(b.push([2*g[g.length-1]-g[g.length-2]]),x=[2*v[0]-v[1]],w=1;w<v.length;w++)x.push((v[w]+v[w-1])/2);x.push([2*v[v.length-1]-v[v.length-2]])}c=Math.max(0,Math.min(b.length-2,i.findBin(e,b))),u=Math.max(0,Math.min(x.length-2,i.findBin(r,x)))}var A=d.c2p(g[c]),k=d.c2p(g[c+1]),M=p.c2p(v[u]),T=p.c2p(v[u+1]);a?(k=A,s=g[c],T=M,l=v[u]):(s=(g[c]+g[c+1])/2,l=(v[u]+v[u+1])/2,f.zsmooth&&(A=k=(A+k)/2,M=T=(M+T)/2));var E=m[u][c];y&&!y[u][c]&&(E=void 0);var L;return Array.isArray(f.text)&&Array.isArray(f.text[u])&&(L=f.text[u][c]),[i.extendFlat(t,{index:[u,c],distance:n.MAXDIST+10,x0:A,x1:k,y0:M,y1:T,xLabelVal:s,yLabelVal:l,zLabelVal:E,text:L})]}}},{\\\"../../lib\\\":373,\\\"../../plots/cartesian/graph_interact\\\":398}],492:[function(t,e,r){\\\"use strict\\\";var n={};n.attributes=t(\\\"./attributes\\\"),n.supplyDefaults=t(\\\"./defaults\\\"),n.calc=t(\\\"./calc\\\"),n.plot=t(\\\"./plot\\\"),n.colorbar=t(\\\"./colorbar\\\"),n.style=t(\\\"./style\\\"),n.hoverPoints=t(\\\"./hover\\\"),n.moduleType=\\\"trace\\\",n.name=\\\"heatmap\\\",n.basePlotModule=t(\\\"../../plots/cartesian\\\"),n.categories=[\\\"cartesian\\\",\\\"2dMap\\\"],n.meta={},e.exports=n},{\\\"../../plots/cartesian\\\":399,\\\"./attributes\\\":485,\\\"./calc\\\":486,\\\"./colorbar\\\":487,\\\"./defaults\\\":489,\\\"./hover\\\":491,\\\"./plot\\\":494,\\\"./style\\\":495}],493:[function(t,e,r){\\\"use strict\\\";e.exports=function(t){for(var e=0,r=0;r<t.length;r++)e=Math.max(e,t[r].length);return e}},{}],494:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){function n(t,e){var r=e.length-2,n=a.constrain(a.findBin(t,e),0,r),i=e[n],o=e[n+1],s=a.constrain(n+(t-i)/(o-i)-.5,0,r),l=Math.round(s),c=Math.abs(s-l);return s&&s!==r&&c?{bin0:l,frac:c,bin1:Math.round(l+c/(s-l))}:{bin0:l,bin1:l,frac:0}}function h(t,e){if(void 0!==t){var r=X((t-E)/(L-E));return r[0]=Math.round(r[0]),r[1]=Math.round(r[1]),r[2]=Math.round(r[2]),it+=e,ot+=r[0]*e,at+=r[1]*e,st+=r[2]*e,r}return[0,0,0,0]}function f(t,e,r){t[e]=r[0],t[e+1]=r[1],t[e+2]=r[2],t[e+3]=Math.round(255*r[3])}function d(t,e,r,n){var i=t[r.bin0];if(void 0===i)return h(void 0,1);var o,a=t[r.bin1],s=e[r.bin0],l=e[r.bin1],c=a-i||0,u=s-i||0;return o=void 0===a?void 0===l?0:void 0===s?2*(l-i):2*(2*l-s-i)/3:void 0===l?void 0===s?0:2*(2*i-a-s)/3:void 0===s?2*(2*l-a-i)/3:l+i-a-s,h(i+r.frac*c+n.frac*(u+r.frac*o))}a.markTime(\\\"in Heatmap.plot\\\");var p=r[0].trace,g=p.uid,v=e.x(),m=e.y(),y=t._fullLayout,b=\\\"hm\\\"+g;if(y._paper.selectAll(\\\".contour\\\"+g).remove(),p.visible!==!0)return y._paper.selectAll(\\\".\\\"+b).remove(),void y._infolayer.selectAll(\\\".cb\\\"+g).remove();var x,_,w,A,k,M,T=r[0].z,E=p.zmin,L=p.zmax,S=l(p.colorscale),C=r[0].x,P=r[0].y,z=s.traceIs(p,\\\"contour\\\"),R=z?\\\"best\\\":p.zsmooth,O=T.length,I=u(T),N=!1,j=!1;for(M=0;void 0===x&&M<C.length-1;)x=v.c2p(C[M]),M++;for(M=C.length-1;void 0===_&&M>0;)_=v.c2p(C[M]),M--;for(x>_&&(w=_,_=x,x=w,N=!0),M=0;void 0===A&&M<P.length-1;)A=m.c2p(P[M]),M++;for(M=P.length-1;void 0===k&&M>0;)k=m.c2p(P[M]),M--;if(A>k&&(w=A,A=k,k=w,j=!0),z&&(C=r[0].xfill,P=r[0].yfill),\\\"fast\\\"!==R){var F=\\\"best\\\"===R?0:.5;x=Math.max(-F*v._length,x),_=Math.min((1+F)*v._length,_),A=Math.max(-F*m._length,A),k=Math.min((1+F)*m._length,k)}var D=Math.round(_-x),B=Math.round(k-A);if(!(0>=D||0>=B)){var U,V;\\\"fast\\\"===R?(U=I,V=O):(U=D,V=B);var q=document.createElement(\\\"canvas\\\");q.width=U,q.height=V;var H,G,Y=q.getContext(\\\"2d\\\"),X=i.scale.linear().domain(S.map(function(t){return t[0]})).range(S.map(function(t){var e=o(t[1]).toRgb();return[e.r,e.g,e.b,e.a]})).clamp(!0);\\\"fast\\\"===R?(H=N?function(t){return I-1-t}:a.identity,G=j?function(t){return O-1-t}:a.identity):(H=function(t){return a.constrain(Math.round(v.c2p(C[t])-x),0,D)},G=function(t){return a.constrain(Math.round(m.c2p(P[t])-A),0,B)});var W,Z,$,K,Q,J,tt=G(0),et=[tt,tt],rt=N?0:1,nt=j?0:1,it=0,ot=0,at=0,st=0;if(a.markTime(\\\"done init png\\\"),R){var lt=0,ct=new Uint8Array(D*B*4);if(\\\"best\\\"===R){var ut,ht,ft,dt=new Array(C.length),pt=new Array(P.length),gt=new Array(D);for(M=0;M<C.length;M++)dt[M]=Math.round(v.c2p(C[M])-x);for(M=0;M<P.length;M++)pt[M]=Math.round(m.c2p(P[M])-A);for(M=0;D>M;M++)gt[M]=n(M,dt);for(Z=0;B>Z;Z++)for(ut=n(Z,pt),ht=T[ut.bin0],ft=T[ut.bin1],M=0;D>M;M++,lt+=4)J=d(ht,ft,gt[M],ut),f(ct,lt,J)}else for(Z=0;O>Z;Z++)for(Q=T[Z],et=G(Z),M=0;I>M;M++)J=h(Q[M],1),lt=4*(et*D+H(M)),f(ct,lt,J);var vt=Y.createImageData(D,B);vt.data.set(ct),Y.putImageData(vt,0,0)}else for(Z=0;O>Z;Z++)if(Q=T[Z],et.reverse(),et[nt]=G(Z+1),et[0]!==et[1]&&void 0!==et[0]&&void 0!==et[1])for($=H(0),W=[$,$],M=0;I>M;M++)W.reverse(),W[rt]=H(M+1),W[0]!==W[1]&&void 0!==W[0]&&void 0!==W[1]&&(K=Q[M],J=h(K,(W[1]-W[0])*(et[1]-et[0])),Y.fillStyle=\\\"rgba(\\\"+J.join(\\\",\\\")+\\\")\\\",Y.fillRect(W[0],et[0],W[1]-W[0],et[1]-et[0]));a.markTime(\\\"done filling png\\\"),ot=Math.round(ot/it),at=Math.round(at/it),st=Math.round(st/it);var mt=o(\\\"rgb(\\\"+ot+\\\",\\\"+at+\\\",\\\"+st+\\\")\\\");t._hmpixcount=(t._hmpixcount||0)+it,t._hmlumcount=(t._hmlumcount||0)+it*mt.getLuminance();var yt=e.plot.select(\\\".imagelayer\\\").selectAll(\\\"g.hm.\\\"+b).data([0]);yt.enter().append(\\\"g\\\").classed(\\\"hm\\\",!0).classed(b,!0),yt.exit().remove();var bt=yt.selectAll(\\\"image\\\").data(r);bt.enter().append(\\\"svg:image\\\"),bt.exit().remove(),bt.attr({xmlns:c.svg,\\\"xlink:href\\\":q.toDataURL(\\\"image/png\\\"),height:B,width:D,x:x,y:A,preserveAspectRatio:\\\"none\\\"}),a.markTime(\\\"done showing png\\\")}}var i=t(\\\"d3\\\"),o=t(\\\"tinycolor2\\\"),a=t(\\\"../../lib\\\"),s=t(\\\"../../plots/plots\\\"),l=t(\\\"../../components/colorscale/get_scale\\\"),c=t(\\\"../../constants/xmlns_namespaces\\\"),u=t(\\\"./max_row_length\\\");e.exports=function(t,e,r){\\n\",\n       \"for(var i=0;i<r.length;i++)n(t,e,r[i])}},{\\\"../../components/colorscale/get_scale\\\":312,\\\"../../constants/xmlns_namespaces\\\":362,\\\"../../lib\\\":373,\\\"../../plots/plots\\\":437,\\\"./max_row_length\\\":493,d3:70,tinycolor2:231}],495:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"d3\\\");e.exports=function(t){n.select(t).selectAll(\\\"image\\\").style(\\\"opacity\\\",function(t){return t.trace.opacity})}},{d3:70}],496:[function(t,e,r){\\\"use strict\\\";function n(t,e){var r=e(t),n=r?e(t+\\\"type\\\",\\\"array\\\"):\\\"scaled\\\";return\\\"scaled\\\"===n&&(e(t+\\\"0\\\"),e(\\\"d\\\"+t)),r}function i(t){for(var e,r=!0,n=!1,i=!1,a=0;a<t.length;a++){if(e=t[a],!Array.isArray(e)){r=!1;break}e.length>0&&(n=!0);for(var s=0;s<e.length;s++)if(o(e[s])){i=!0;break}}return r&&n&&i}var o=t(\\\"fast-isnumeric\\\"),a=t(\\\"./has_columns\\\");e.exports=function(t,e,r){var o,s,l=r(\\\"z\\\");if(void 0===l||!l.length)return 0;if(a(t)){if(o=r(\\\"x\\\"),s=r(\\\"y\\\"),!o||!s)return 0}else{if(o=n(\\\"x\\\",r),s=n(\\\"y\\\",r),!i(l))return 0;r(\\\"transpose\\\")}return e.z.length}},{\\\"./has_columns\\\":490,\\\"fast-isnumeric\\\":74}],497:[function(t,e,r){\\\"use strict\\\";function n(t){return{start:{valType:\\\"number\\\",dflt:null},end:{valType:\\\"number\\\",dflt:null},size:{valType:\\\"any\\\",dflt:1}}}var i=t(\\\"../bar/attributes\\\"),o=t(\\\"../../lib\\\").extendFlat,a=i.marker,s=a.line;e.exports={x:{valType:\\\"data_array\\\"},y:{valType:\\\"data_array\\\"},text:i.text,orientation:i.orientation,histfunc:{valType:\\\"enumerated\\\",values:[\\\"count\\\",\\\"sum\\\",\\\"avg\\\",\\\"min\\\",\\\"max\\\"],dflt:\\\"count\\\"},histnorm:{valType:\\\"enumerated\\\",values:[\\\"\\\",\\\"percent\\\",\\\"probability\\\",\\\"density\\\",\\\"probability density\\\"],dflt:\\\"\\\"},autobinx:{valType:\\\"boolean\\\",dflt:!0},nbinsx:{valType:\\\"integer\\\",min:0,dflt:0},xbins:n(\\\"x\\\"),autobiny:{valType:\\\"boolean\\\",dflt:!0},nbinsy:{valType:\\\"integer\\\",min:0,dflt:0},ybins:n(\\\"y\\\"),marker:{color:a.color,colorscale:a.colorscale,cauto:a.cauto,cmax:a.cmax,cmin:a.cmin,autocolorscale:a.autocolorscale,reversescale:a.reversescale,showscale:a.showscale,line:{color:s.color,colorscale:s.colorscale,cauto:s.cauto,cmax:s.cmax,cmin:s.cmin,autocolorscale:s.autocolorscale,reversescale:s.reversescale,width:o({},s.width,{dflt:0})}},_nestedModules:{error_y:\\\"ErrorBars\\\",error_x:\\\"ErrorBars\\\",\\\"marker.colorbar\\\":\\\"Colorbar\\\"},_deprecated:{bardir:i._deprecated.bardir}}},{\\\"../../lib\\\":373,\\\"../bar/attributes\\\":449}],498:[function(t,e,r){\\\"use strict\\\";e.exports=function(t,e){for(var r=t.length,n=0,i=0;r>i;i++)e[i]?(t[i]/=e[i],n+=t[i]):t[i]=null;return n}},{}],499:[function(t,e,r){\\\"use strict\\\";e.exports=function(t,e,r,n){return r(\\\"histnorm\\\"),n.forEach(function(t){var e=r(t+\\\"bins.start\\\"),n=r(t+\\\"bins.end\\\"),i=r(\\\"autobin\\\"+t,!(e&&n));r(i?\\\"nbins\\\"+t:t+\\\"bins.size\\\")}),e}},{}],500:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"fast-isnumeric\\\");e.exports={count:function(t,e,r){return r[t]++,1},sum:function(t,e,r,i){var o=i[e];return n(o)?(o=Number(o),r[t]+=o,o):0},avg:function(t,e,r,i,o){var a=i[e];return n(a)&&(a=Number(a),r[t]+=a,o[t]++),0},min:function(t,e,r,i){var o=i[e];if(n(o)){if(o=Number(o),!n(r[t]))return r[t]=o,o;if(r[t]>o)return r[t]=o,o-r[t]}return 0},max:function(t,e,r,i){var o=i[e];if(n(o)){if(o=Number(o),!n(r[t]))return r[t]=o,o;if(r[t]<o)return r[t]=o,o-r[t]}return 0}}},{\\\"fast-isnumeric\\\":74}],501:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"fast-isnumeric\\\"),i=t(\\\"../../lib\\\"),o=t(\\\"../../plots/cartesian/axes\\\"),a=t(\\\"./bin_functions\\\"),s=t(\\\"./norm_functions\\\"),l=t(\\\"./average\\\");e.exports=function(t,e){if(e.visible===!0){var r,c=[],u=[],h=o.getFromId(t,\\\"h\\\"===e.orientation?e.yaxis||\\\"y\\\":e.xaxis||\\\"x\\\"),f=\\\"h\\\"===e.orientation?\\\"y\\\":\\\"x\\\",d={x:\\\"y\\\",y:\\\"x\\\"}[f],p=h.makeCalcdata(e,f);e[\\\"autobin\\\"+f]===!1&&f+\\\"bins\\\"in e||(e[f+\\\"bins\\\"]=o.autoBin(p,h,e[\\\"nbins\\\"+f]),e._input[f+\\\"bins\\\"]=e[f+\\\"bins\\\"]);var g,v,m,y,b=e[f+\\\"bins\\\"],x=\\\"string\\\"==typeof b.size,_=x?[]:b,w=[],A=[],k=0,M=e.histnorm,T=e.histfunc,E=-1!==M.indexOf(\\\"density\\\"),L=\\\"max\\\"===T||\\\"min\\\"===T,S=L?null:0,C=a.count,P=s[M],z=!1;for(Array.isArray(e[d])&&\\\"count\\\"!==T&&(y=e[d],z=\\\"avg\\\"===T,C=a[T]),r=b.start,v=b.end+(b.start-o.tickIncrement(b.start,b.size))/1e6;v>r&&c.length<5e3;)g=o.tickIncrement(r,b.size),c.push((r+g)/2),u.push(S),x&&_.push(r),E&&w.push(1/(g-r)),z&&A.push(0),r=g;var R=u.length;for(r=0;r<p.length;r++)m=i.findBin(p[r],_),m>=0&&R>m&&(k+=C(m,r,u,y,A));z&&(k=l(u,A)),P&&P(u,k,w);var O=Math.min(c.length,u.length),I=[],N=0,j=O-1;for(r=0;O>r;r++)if(u[r]){N=r;break}for(r=O-1;r>N;r--)if(u[r]){j=r;break}for(r=N;j>=r;r++)n(c[r])&&n(u[r])&&I.push({p:c[r],s:u[r],b:0});return I}}},{\\\"../../lib\\\":373,\\\"../../plots/cartesian/axes\\\":393,\\\"./average\\\":498,\\\"./bin_functions\\\":500,\\\"./norm_functions\\\":504,\\\"fast-isnumeric\\\":74}],502:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../lib\\\"),i=t(\\\"../../components/color\\\"),o=t(\\\"./bin_defaults\\\"),a=t(\\\"../bar/style_defaults\\\"),s=t(\\\"../../components/errorbars/defaults\\\"),l=t(\\\"./attributes\\\");e.exports=function(t,e,r,c){function u(r,i){return n.coerce(t,e,l,r,i)}var h=u(\\\"x\\\"),f=u(\\\"y\\\");u(\\\"text\\\");var d=u(\\\"orientation\\\",f&&!h?\\\"h\\\":\\\"v\\\"),p=e[\\\"v\\\"===d?\\\"x\\\":\\\"y\\\"];if(!p||!p.length)return void(e.visible=!1);var g=e[\\\"h\\\"===d?\\\"x\\\":\\\"y\\\"];g&&u(\\\"histfunc\\\");var v=\\\"h\\\"===d?[\\\"y\\\"]:[\\\"x\\\"];o(t,e,u,v),a(t,e,u,r,c),s(t,e,i.defaultLine,{axis:\\\"y\\\"}),s(t,e,i.defaultLine,{axis:\\\"x\\\",inherit:\\\"y\\\"})}},{\\\"../../components/color\\\":301,\\\"../../components/errorbars/defaults\\\":324,\\\"../../lib\\\":373,\\\"../bar/style_defaults\\\":459,\\\"./attributes\\\":497,\\\"./bin_defaults\\\":499}],503:[function(t,e,r){\\\"use strict\\\";var n={};n.attributes=t(\\\"./attributes\\\"),n.layoutAttributes=t(\\\"../bar/layout_attributes\\\"),n.supplyDefaults=t(\\\"./defaults\\\"),n.supplyLayoutDefaults=t(\\\"../bar/layout_defaults\\\"),n.calc=t(\\\"./calc\\\"),n.setPositions=t(\\\"../bar/set_positions\\\"),n.plot=t(\\\"../bar/plot\\\"),n.style=t(\\\"../bar/style\\\"),n.colorbar=t(\\\"../scatter/colorbar\\\"),n.hoverPoints=t(\\\"../bar/hover\\\"),n.moduleType=\\\"trace\\\",n.name=\\\"histogram\\\",n.basePlotModule=t(\\\"../../plots/cartesian\\\"),n.categories=[\\\"cartesian\\\",\\\"bar\\\",\\\"histogram\\\",\\\"oriented\\\",\\\"errorBarsOK\\\",\\\"showLegend\\\"],n.meta={},e.exports=n},{\\\"../../plots/cartesian\\\":399,\\\"../bar/hover\\\":452,\\\"../bar/layout_attributes\\\":454,\\\"../bar/layout_defaults\\\":455,\\\"../bar/plot\\\":456,\\\"../bar/set_positions\\\":457,\\\"../bar/style\\\":458,\\\"../scatter/colorbar\\\":531,\\\"./attributes\\\":497,\\\"./calc\\\":501,\\\"./defaults\\\":502}],504:[function(t,e,r){\\\"use strict\\\";e.exports={percent:function(t,e){for(var r=t.length,n=100/e,i=0;r>i;i++)t[i]*=n},probability:function(t,e){for(var r=t.length,n=0;r>n;n++)t[n]/=e},density:function(t,e,r,n){var i=t.length;n=n||1;for(var o=0;i>o;o++)t[o]*=r[o]*n},\\\"probability density\\\":function(t,e,r,n){var i=t.length;n&&(e/=n);for(var o=0;i>o;o++)t[o]*=r[o]/e}}},{}],505:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../histogram/attributes\\\"),i=t(\\\"../heatmap/attributes\\\");e.exports={x:n.x,y:n.y,z:{valType:\\\"data_array\\\"},marker:{color:{valType:\\\"data_array\\\"}},histnorm:n.histnorm,histfunc:n.histfunc,autobinx:n.autobinx,nbinsx:n.nbinsx,xbins:n.xbins,autobiny:n.autobiny,nbinsy:n.nbinsy,ybins:n.ybins,zauto:i.zauto,zmin:i.zmin,zmax:i.zmax,colorscale:i.colorscale,autocolorscale:i.autocolorscale,reversescale:i.reversescale,showscale:i.showscale,zsmooth:i.zsmooth,_nestedModules:{colorbar:\\\"Colorbar\\\"}}},{\\\"../heatmap/attributes\\\":485,\\\"../histogram/attributes\\\":497}],506:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../lib\\\"),i=t(\\\"../../plots/cartesian/axes\\\"),o=t(\\\"../histogram/bin_functions\\\"),a=t(\\\"../histogram/norm_functions\\\"),s=t(\\\"../histogram/average\\\");e.exports=function(t,e){var r,l,c,u,h,f,d=i.getFromId(t,e.xaxis||\\\"x\\\"),p=e.x?d.makeCalcdata(e,\\\"x\\\"):[],g=i.getFromId(t,e.yaxis||\\\"y\\\"),v=e.y?g.makeCalcdata(e,\\\"y\\\"):[],m=Math.min(p.length,v.length);p.length>m&&p.splice(m,p.length-m),v.length>m&&v.splice(m,v.length-m),n.markTime(\\\"done convert data\\\"),!e.autobinx&&\\\"xbins\\\"in e||(e.xbins=i.autoBin(p,d,e.nbinsx,\\\"2d\\\"),\\\"histogram2dcontour\\\"===e.type&&(e.xbins.start-=e.xbins.size,e.xbins.end+=e.xbins.size),e._input.xbins=e.xbins),!e.autobiny&&\\\"ybins\\\"in e||(e.ybins=i.autoBin(v,g,e.nbinsy,\\\"2d\\\"),\\\"histogram2dcontour\\\"===e.type&&(e.ybins.start-=e.ybins.size,e.ybins.end+=e.ybins.size),e._input.ybins=e.ybins),n.markTime(\\\"done autoBin\\\"),h=[];var y,b,x=[],_=[],w=\\\"string\\\"==typeof e.xbins.size?[]:e.xbins,A=\\\"string\\\"==typeof e.xbins.size?[]:e.ybins,k=0,M=[],T=e.histnorm,E=e.histfunc,L=-1!==T.indexOf(\\\"density\\\"),S=\\\"max\\\"===E||\\\"min\\\"===E,C=S?null:0,P=o.count,z=a[T],R=!1,O=[],I=[],N=\\\"z\\\"in e?e.z:\\\"marker\\\"in e&&Array.isArray(e.marker.color)?e.marker.color:\\\"\\\";N&&\\\"count\\\"!==E&&(R=\\\"avg\\\"===E,P=o[E]);var j=e.xbins,F=j.end+(j.start-i.tickIncrement(j.start,j.size))/1e6;for(f=j.start;F>f;f=i.tickIncrement(f,j.size))x.push(C),Array.isArray(w)&&w.push(f),R&&_.push(0);Array.isArray(w)&&w.push(f);var D=x.length;for(r=e.xbins.start,l=(f-r)/D,r+=l/2,j=e.ybins,F=j.end+(j.start-i.tickIncrement(j.start,j.size))/1e6,f=j.start;F>f;f=i.tickIncrement(f,j.size))h.push(x.concat()),Array.isArray(A)&&A.push(f),R&&M.push(_.concat());Array.isArray(A)&&A.push(f);var B=h.length;for(c=e.ybins.start,u=(f-c)/B,c+=u/2,L&&(O=x.map(function(t,e){return Array.isArray(w)?1/(w[e+1]-w[e]):1/l}),I=h.map(function(t,e){return Array.isArray(A)?1/(A[e+1]-A[e]):1/u})),n.markTime(\\\"done making bins\\\"),f=0;m>f;f++)y=n.findBin(p[f],w),b=n.findBin(v[f],A),y>=0&&D>y&&b>=0&&B>b&&(k+=P(y,f,h[b],N,M[b]));if(R)for(b=0;B>b;b++)k+=s(h[b],M[b]);if(z)for(b=0;B>b;b++)z(h[b],k,O,I[b]);return n.markTime(\\\"done binning\\\"),{x:p,x0:r,dx:l,y:v,y0:c,dy:u,z:h}}},{\\\"../../lib\\\":373,\\\"../../plots/cartesian/axes\\\":393,\\\"../histogram/average\\\":498,\\\"../histogram/bin_functions\\\":500,\\\"../histogram/norm_functions\\\":504}],507:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../lib\\\"),i=t(\\\"./sample_defaults\\\"),o=t(\\\"../../components/colorscale/defaults\\\"),a=t(\\\"./attributes\\\");e.exports=function(t,e,r){function s(r,i){return n.coerce(t,e,a,r,i)}i(t,e,s),s(\\\"zsmooth\\\"),o(t,e,r,s,{prefix:\\\"\\\",cLetter:\\\"z\\\"})}},{\\\"../../components/colorscale/defaults\\\":310,\\\"../../lib\\\":373,\\\"./attributes\\\":505,\\\"./sample_defaults\\\":509}],508:[function(t,e,r){\\\"use strict\\\";var n={};n.attributes=t(\\\"./attributes\\\"),n.supplyDefaults=t(\\\"./defaults\\\"),n.calc=t(\\\"../heatmap/calc\\\"),n.plot=t(\\\"../heatmap/plot\\\"),n.colorbar=t(\\\"../heatmap/colorbar\\\"),n.style=t(\\\"../heatmap/style\\\"),n.hoverPoints=t(\\\"../heatmap/hover\\\"),n.moduleType=\\\"trace\\\",n.name=\\\"histogram2d\\\",n.basePlotModule=t(\\\"../../plots/cartesian\\\"),n.categories=[\\\"cartesian\\\",\\\"2dMap\\\",\\\"histogram\\\"],n.meta={},e.exports=n},{\\\"../../plots/cartesian\\\":399,\\\"../heatmap/calc\\\":486,\\\"../heatmap/colorbar\\\":487,\\\"../heatmap/hover\\\":491,\\\"../heatmap/plot\\\":494,\\\"../heatmap/style\\\":495,\\\"./attributes\\\":505,\\\"./defaults\\\":507}],509:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../histogram/bin_defaults\\\");e.exports=function(t,e,r){var i=r(\\\"x\\\"),o=r(\\\"y\\\");if(!(i&&i.length&&o&&o.length))return void(e.visible=!1);var a=r(\\\"z\\\")||r(\\\"marker.color\\\");a&&r(\\\"histfunc\\\");var s=[\\\"x\\\",\\\"y\\\"];n(t,e,r,s)}},{\\\"../histogram/bin_defaults\\\":499}],510:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../histogram2d/attributes\\\"),i=t(\\\"../contour/attributes\\\");e.exports={x:n.x,y:n.y,z:n.z,marker:n.marker,histnorm:n.histnorm,histfunc:n.histfunc,autobinx:n.autobinx,nbinsx:n.nbinsx,xbins:n.xbins,autobiny:n.autobiny,nbinsy:n.nbinsy,ybins:n.ybins,zauto:i.zauto,zmin:i.zmin,zmax:i.zmax,colorscale:i.colorscale,autocolorscale:i.autocolorscale,reversescale:i.reversescale,showscale:i.showscale,autocontour:i.autocontour,ncontours:i.ncontours,contours:i.contours,line:i.line,_nestedModules:{colorbar:\\\"Colorbar\\\"}}},{\\\"../contour/attributes\\\":475,\\\"../histogram2d/attributes\\\":505}],511:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../lib\\\"),i=t(\\\"../histogram2d/sample_defaults\\\"),o=t(\\\"../contour/style_defaults\\\"),a=t(\\\"./attributes\\\");e.exports=function(t,e,r,s){function l(r,i){return n.coerce(t,e,a,r,i)}i(t,e,l);var c=n.coerce2(t,e,a,\\\"contours.start\\\"),u=n.coerce2(t,e,a,\\\"contours.end\\\"),h=l(\\\"autocontour\\\",!(c&&u));l(h?\\\"ncontours\\\":\\\"contours.size\\\"),o(t,e,l,s)}},{\\\"../../lib\\\":373,\\\"../contour/style_defaults\\\":484,\\\"../histogram2d/sample_defaults\\\":509,\\\"./attributes\\\":510}],512:[function(t,e,r){\\\"use strict\\\";var n={};n.attributes=t(\\\"./attributes\\\"),n.supplyDefaults=t(\\\"./defaults\\\"),n.calc=t(\\\"../contour/calc\\\"),n.plot=t(\\\"../contour/plot\\\"),n.style=t(\\\"../contour/style\\\"),n.colorbar=t(\\\"../contour/colorbar\\\"),n.hoverPoints=t(\\\"../contour/hover\\\"),n.moduleType=\\\"trace\\\",n.name=\\\"histogram2dcontour\\\",n.basePlotModule=t(\\\"../../plots/cartesian\\\"),n.categories=[\\\"cartesian\\\",\\\"2dMap\\\",\\\"contour\\\",\\\"histogram\\\"],n.meta={},e.exports=n},{\\\"../../plots/cartesian\\\":399,\\\"../contour/calc\\\":476,\\\"../contour/colorbar\\\":477,\\\"../contour/hover\\\":479,\\\"../contour/plot\\\":482,\\\"../contour/style\\\":483,\\\"./attributes\\\":510,\\\"./defaults\\\":511}],513:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../components/colorscale/attributes\\\"),i=t(\\\"../surface/attributes\\\"),o=t(\\\"../../lib/extend\\\").extendFlat;e.exports={x:{valType:\\\"data_array\\\"},y:{valType:\\\"data_array\\\"},z:{valType:\\\"data_array\\\"},i:{valType:\\\"data_array\\\"},j:{valType:\\\"data_array\\\"},k:{valType:\\\"data_array\\\"},delaunayaxis:{valType:\\\"enumerated\\\",values:[\\\"x\\\",\\\"y\\\",\\\"z\\\"],dflt:\\\"z\\\"},alphahull:{valType:\\\"number\\\",dflt:-1},intensity:{valType:\\\"data_array\\\"},color:{valType:\\\"color\\\"},vertexcolor:{valType:\\\"data_array\\\"},facecolor:{valType:\\\"data_array\\\"},opacity:o({},i.opacity),flatshading:{valType:\\\"boolean\\\",dflt:!1},contour:{show:o({},i.contours.x.show,{}),color:o({},i.contours.x.color),width:o({},i.contours.x.width)},colorscale:n.colorscale,reversescale:n.reversescale,showscale:n.showscale,lighting:o({},i.lighting),_nestedModules:{colorbar:\\\"Colorbar\\\"}}},{\\\"../../components/colorscale/attributes\\\":307,\\\"../../lib/extend\\\":369,\\\"../surface/attributes\\\":564}],514:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){this.scene=t,this.uid=r,this.mesh=e,this.name=\\\"\\\",this.color=\\\"#fff\\\",this.data=null,this.showContour=!1}function i(t){return t.map(function(t){var e=t[0],r=c(t[1]),n=r.toRgb();return{index:e,rgb:[n.r,n.g,n.b,1]}})}function o(t){return t.map(d)}function a(t,e,r){for(var n=new Array(t.length),i=0;i<t.length;++i)n[i]=[t[i],e[i],r[i]];return n}function s(t,e){var r=t.glplot.gl,i=l({gl:r}),o=new n(t,i,e.uid);return o.update(e),t.glplot.add(i),o}var l=t(\\\"gl-mesh3d\\\"),c=t(\\\"tinycolor2\\\"),u=t(\\\"delaunay-triangulate\\\"),h=t(\\\"alpha-shape\\\"),f=t(\\\"convex-hull\\\"),d=t(\\\"../../lib/str2rgbarray\\\"),p=n.prototype;p.handlePick=function(t){if(t.object===this.mesh){var e=t.data.index;return t.traceCoordinate=[this.data.x[e],this.data.y[e],this.data.z[e]],!0}},p.update=function(t){function e(t,e,r){return e.map(function(e){return t.d2l(e)*r})}var r=this.scene,n=r.fullSceneLayout;this.data=t;var s,l=a(e(n.xaxis,t.x,r.dataScale[0]),e(n.yaxis,t.y,r.dataScale[1]),e(n.zaxis,t.z,r.dataScale[2]));if(t.i&&t.j&&t.k)s=a(t.i,t.j,t.k);else if(0===t.alphahull)s=f(l);else if(t.alphahull>0)s=h(t.alphahull,l);else{var c=[\\\"x\\\",\\\"y\\\",\\\"z\\\"].indexOf(t.delaunayaxis);s=u(l.map(function(t){return[t[(c+1)%3],t[(c+2)%3]]}))}var p={positions:l,cells:s,ambient:t.lighting.ambient,diffuse:t.lighting.diffuse,specular:t.lighting.specular,roughness:t.lighting.roughness,fresnel:t.lighting.fresnel,opacity:t.opacity,contourEnable:t.contour.show,contourColor:d(t.contour.color).slice(0,3),contourWidth:t.contour.width,useFacetNormals:t.flatshading};t.intensity?(this.color=\\\"#fff\\\",p.vertexIntensity=t.intensity,p.colormap=i(t.colorscale)):t.vertexcolor?(this.color=t.vertexcolors[0],p.vertexColors=o(t.vertexcolor)):t.facecolor?(this.color=t.facecolor[0],p.cellColors=o(t.facecolor)):(this.color=t.color,p.meshColor=d(t.color)),this.mesh.update(p)},p.dispose=function(){this.scene.glplot.remove(this.mesh),this.mesh.dispose()},e.exports=s},{\\\"../../lib/str2rgbarray\\\":383,\\\"alpha-shape\\\":39,\\\"convex-hull\\\":60,\\\"delaunay-triangulate\\\":71,\\\"gl-mesh3d\\\":107,tinycolor2:231}],515:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../lib\\\"),i=t(\\\"../../components/colorbar/defaults\\\"),o=t(\\\"./attributes\\\");e.exports=function(t,e,r,a){function s(r,i){return n.coerce(t,e,o,r,i)}function l(t){var e=t.map(function(t){var e=s(t);return e&&Array.isArray(e)?e:null});return e.every(function(t){return t&&t.length===e[0].length})&&e}var c=l([\\\"x\\\",\\\"y\\\",\\\"z\\\"]),u=l([\\\"i\\\",\\\"j\\\",\\\"k\\\"]);return c?(u&&u.forEach(function(t){for(var e=0;e<t.length;++e)t[e]|=0}),[\\\"lighting.ambient\\\",\\\"lighting.diffuse\\\",\\\"lighting.specular\\\",\\\"lighting.roughness\\\",\\\"lighting.fresnel\\\",\\\"contour.show\\\",\\\"contour.color\\\",\\\"contour.width\\\",\\\"colorscale\\\",\\\"reversescale\\\",\\\"flatshading\\\",\\\"alphahull\\\",\\\"delaunayaxis\\\",\\\"opacity\\\"].forEach(function(t){s(t)}),\\\"intensity\\\"in t?(s(\\\"intensity\\\"),s(\\\"showscale\\\",!0)):(e.showscale=!1,\\\"vertexcolor\\\"in t?s(\\\"vertexcolor\\\"):\\\"facecolor\\\"in t?s(\\\"facecolor\\\"):s(\\\"color\\\",r)),e.reversescale&&(e.colorscale=e.colorscale.map(function(t){return[1-t[0],t[1]]}).reverse()),void(e.showscale&&i(t,e,a))):void(e.visible=!1)}},{\\\"../../components/colorbar/defaults\\\":303,\\\"../../lib\\\":373,\\\"./attributes\\\":513}],516:[function(t,e,r){\\\"use strict\\\";var n={};n.attributes=t(\\\"./attributes\\\"),n.supplyDefaults=t(\\\"./defaults\\\"),n.colorbar=t(\\\"../heatmap/colorbar\\\"),n.plot=t(\\\"./convert\\\"),n.moduleType=\\\"trace\\\",n.name=\\\"mesh3d\\\",n.basePlotModule=t(\\\"../../plots/gl3d\\\"),n.categories=[\\\"gl3d\\\"],n.meta={},e.exports=n},{\\\"../../plots/gl3d\\\":424,\\\"../heatmap/colorbar\\\":487,\\\"./attributes\\\":513,\\\"./convert\\\":514,\\\"./defaults\\\":515}],517:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../components/color/attributes\\\"),i=t(\\\"../../plots/font_attributes\\\"),o=t(\\\"../../plots/attributes\\\"),a=t(\\\"../../lib/extend\\\").extendFlat;e.exports={labels:{valType:\\\"data_array\\\"},label0:{valType:\\\"number\\\",dflt:0},dlabel:{valType:\\\"number\\\",dflt:1},values:{valType:\\\"data_array\\\"},marker:{colors:{valType:\\\"data_array\\\"},line:{color:{valType:\\\"color\\\",dflt:n.defaultLine,arrayOk:!0},width:{valType:\\\"number\\\",min:0,dflt:0,arrayOk:!0}}},text:{valType:\\\"data_array\\\"},scalegroup:{valType:\\\"string\\\",dflt:\\\"\\\"},textinfo:{valType:\\\"flaglist\\\",flags:[\\\"label\\\",\\\"text\\\",\\\"value\\\",\\\"percent\\\"],extras:[\\\"none\\\"]},hoverinfo:a({},o.hoverinfo,{flags:[\\\"label\\\",\\\"text\\\",\\\"value\\\",\\\"percent\\\",\\\"name\\\"]}),textposition:{valType:\\\"enumerated\\\",values:[\\\"inside\\\",\\\"outside\\\",\\\"auto\\\",\\\"none\\\"],dflt:\\\"auto\\\",arrayOk:!0},textfont:a({},i,{}),insidetextfont:a({},i,{}),outsidetextfont:a({},i,{}),domain:{x:{valType:\\\"info_array\\\",items:[{valType:\\\"number\\\",min:0,max:1},{valType:\\\"number\\\",min:0,max:1}],dflt:[0,1]},y:{valType:\\\"info_array\\\",items:[{valType:\\\"number\\\",min:0,max:1},{valType:\\\"number\\\",min:0,max:1}],dflt:[0,1]}},hole:{valType:\\\"number\\\",min:0,max:1,dflt:0},sort:{valType:\\\"boolean\\\",dflt:!0},direction:{valType:\\\"enumerated\\\",values:[\\\"clockwise\\\",\\\"counterclockwise\\\"],dflt:\\\"counterclockwise\\\"},rotation:{valType:\\\"number\\\",min:-360,max:360,dflt:0},pull:{valType:\\\"number\\\",min:0,max:1,dflt:0,arrayOk:!0}}},{\\\"../../components/color/attributes\\\":300,\\\"../../lib/extend\\\":369,\\\"../../plots/attributes\\\":391,\\\"../../plots/font_attributes\\\":407}],518:[function(t,e,r){\\\"use strict\\\";function n(t){if(!l){var e=a.defaults;l=e.slice();var r;for(r=0;r<e.length;r++)l.push(o(e[r]).lighten(20).toHexString());for(r=0;r<a.defaults.length;r++)l.push(o(e[r]).darken(20).toHexString())}return l[t%l.length]}var i=t(\\\"fast-isnumeric\\\"),o=t(\\\"tinycolor2\\\"),a=t(\\\"../../components/color\\\"),s=t(\\\"./helpers\\\");e.exports=function(t,e){var r,l,c,u,h,f,d=e.values,p=e.labels,g=[],v=t._fullLayout,m=v._piecolormap,y={},b=!1,x=0,_=v.hiddenlabels||[];if(e.dlabel)for(p=new Array(d.length),r=0;r<d.length;r++)p[r]=String(e.label0+r*e.dlabel);for(r=0;r<d.length;r++)l=d[r],i(l)&&(l=+l,0>l||(c=p[r],void 0!==c&&\\\"\\\"!==c||(c=r),c=String(c),void 0===y[c]&&(y[c]=!0,u=o(e.marker.colors[r]),u.isValid()?(u=a.addOpacity(u,u.getAlpha()),m[c]||(m[c]=u)):m[c]?u=m[c]:(u=!1,b=!0),h=-1!==_.indexOf(c),h||(x+=l),g.push({v:l,label:c,color:u,i:r,hidden:h}))));if(e.sort&&g.sort(function(t,e){return e.v-t.v}),b)for(r=0;r<g.length;r++)f=g[r],f.color===!1&&(m[f.label]=f.color=n(v._piedefaultcolorcount),v._piedefaultcolorcount++);if(g[0]&&(g[0].vTotal=x),e.textinfo&&\\\"none\\\"!==e.textinfo){var w,A=-1!==e.textinfo.indexOf(\\\"label\\\"),k=-1!==e.textinfo.indexOf(\\\"text\\\"),M=-1!==e.textinfo.indexOf(\\\"value\\\"),T=-1!==e.textinfo.indexOf(\\\"percent\\\");for(r=0;r<g.length;r++)f=g[r],w=A?[f.label]:[],k&&e.text[f.i]&&w.push(e.text[f.i]),M&&w.push(s.formatPieValue(f.v)),T&&w.push(s.formatPiePercent(f.v/x)),f.text=w.join(\\\"<br>\\\")}return g};var l},{\\\"../../components/color\\\":301,\\\"./helpers\\\":520,\\\"fast-isnumeric\\\":74,tinycolor2:231}],519:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../lib\\\"),i=t(\\\"./attributes\\\");e.exports=function(t,e,r,o){function a(r,o){return n.coerce(t,e,i,r,o)}var s=n.coerceFont,l=a(\\\"values\\\");if(!Array.isArray(l)||!l.length)return void(e.visible=!1);var c=a(\\\"labels\\\");Array.isArray(c)||(a(\\\"label0\\\"),a(\\\"dlabel\\\"));var u=a(\\\"marker.line.width\\\");u&&a(\\\"marker.line.color\\\");var h=a(\\\"marker.colors\\\");Array.isArray(h)||(e.marker.colors=[]),a(\\\"scalegroup\\\");var f=a(\\\"text\\\"),d=a(\\\"textinfo\\\",Array.isArray(f)?\\\"text+percent\\\":\\\"percent\\\");if(a(\\\"hoverinfo\\\",1===o._dataLength?\\\"label+text+value+percent\\\":void 0),d&&\\\"none\\\"!==d){var p=a(\\\"textposition\\\"),g=Array.isArray(p)||\\\"auto\\\"===p,v=g||\\\"inside\\\"===p,m=g||\\\"outside\\\"===p;if(v||m){var y=s(a,\\\"textfont\\\",o.font);v&&s(a,\\\"insidetextfont\\\",y),m&&s(a,\\\"outsidetextfont\\\",y)}}a(\\\"domain.x\\\"),a(\\\"domain.y\\\"),a(\\\"hole\\\"),a(\\\"sort\\\"),a(\\\"direction\\\"),a(\\\"rotation\\\"),a(\\\"pull\\\")}},{\\\"../../lib\\\":373,\\\"./attributes\\\":517}],520:[function(t,e,r){\\\"use strict\\\";r.formatPiePercent=function(t){var e=(100*t).toPrecision(3);return-1!==e.indexOf(\\\".\\\")?e.replace(/[.]?0+$/,\\\"\\\")+\\\"%\\\":e+\\\"%\\\"},r.formatPieValue=function(t){var e=t.toPrecision(10);return-1!==e.indexOf(\\\".\\\")?e.replace(/[.]?0+$/,\\\"\\\"):e}},{}],521:[function(t,e,r){\\\"use strict\\\";var n={};n.attributes=t(\\\"./attributes\\\"),n.supplyDefaults=t(\\\"./defaults\\\"),n.supplyLayoutDefaults=t(\\\"./layout_defaults\\\"),n.layoutAttributes=t(\\\"./layout_attributes\\\"),n.calc=t(\\\"./calc\\\"),n.plot=t(\\\"./plot\\\"),n.style=t(\\\"./style\\\"),n.styleOne=t(\\\"./style_one\\\"),n.moduleType=\\\"trace\\\",n.name=\\\"pie\\\",n.basePlotModule=t(\\\"../../plots/cartesian\\\"),n.categories=[\\\"pie\\\",\\\"showLegend\\\"],n.meta={},e.exports=n},{\\\"../../plots/cartesian\\\":399,\\\"./attributes\\\":517,\\\"./calc\\\":518,\\\"./defaults\\\":519,\\\"./layout_attributes\\\":522,\\\"./layout_defaults\\\":523,\\\"./plot\\\":524,\\\"./style\\\":525,\\\"./style_one\\\":526}],522:[function(t,e,r){\\\"use strict\\\";e.exports={hiddenlabels:{valType:\\\"data_array\\\"}}},{}],523:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../lib\\\"),i=t(\\\"./layout_attributes\\\");e.exports=function(t,e){function r(r,o){return n.coerce(t,e,i,r,o)}r(\\\"hiddenlabels\\\")}},{\\\"../../lib\\\":373,\\\"./layout_attributes\\\":522}],524:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){var n=Math.sqrt(t.width*t.width+t.height*t.height),o=t.width/t.height,a=Math.PI*Math.min(e.v/r.vTotal,.5),s=1-r.trace.hole,l=i(e,r),c={scale:l*r.r*2/n,rCenter:1-l,rotate:0};if(c.scale>=1)return c;var u=o+1/(2*Math.tan(a)),h=r.r*Math.min(1/(Math.sqrt(u*u+.5)+u),s/(Math.sqrt(o*o+s/2)+o)),f={scale:2*h/t.height,rCenter:Math.cos(h/r.r)-h*o/r.r,rotate:(180/Math.PI*e.midangle+720)%180-90},d=1/o,p=d+1/(2*Math.tan(a)),g=r.r*Math.min(1/(Math.sqrt(p*p+.5)+p),s/(Math.sqrt(d*d+s/2)+d)),v={scale:2*g/t.width,rCenter:Math.cos(g/r.r)-g/o/r.r,rotate:(180/Math.PI*e.midangle+810)%180-90},m=v.scale>f.scale?v:f;return c.scale<1&&m.scale>c.scale?m:c}function i(t,e){if(t.v===e.vTotal&&!e.trace.hole)return 1;var r=Math.PI*Math.min(t.v/e.vTotal,.5);return Math.min(1/(1+1/Math.sin(r)),(1-e.trace.hole)/2)}function o(t,e){var r=e.pxmid[0],n=e.pxmid[1],i=t.width/2,o=t.height/2;return 0>r&&(i*=-1),0>n&&(o*=-1),{scale:1,rCenter:1,rotate:0,x:i+Math.abs(o)*(i>0?1:-1)/2,y:o/(1+r*r/(n*n)),outside:!0}}function a(t,e){function r(t,e){return t.pxmid[1]-e.pxmid[1]}function n(t,e){return e.pxmid[1]-t.pxmid[1]}function i(t,r){r||(r={});var n,i,o,s,f,d,g=r.labelExtraY+(a?r.yLabelMax:r.yLabelMin),v=a?t.yLabelMin:t.yLabelMax,m=a?t.yLabelMax:t.yLabelMin,y=t.cyFinal+c(t.px0[1],t.px1[1]),b=g-v;if(b*h>0&&(t.labelExtraY=b),Array.isArray(e.pull))for(i=0;i<p.length;i++)o=p[i],o===t||(e.pull[t.i]||0)>=e.pull[o.i]||((t.pxmid[1]-o.pxmid[1])*h>0?(s=o.cyFinal+c(o.px0[1],o.px1[1]),b=s-v-t.labelExtraY,b*h>0&&(t.labelExtraY+=b)):(m+t.labelExtraY-y)*h>0&&(n=3*u*Math.abs(i-p.indexOf(t)),f=o.cxFinal+l(o.px0[0],o.px1[0]),d=f+n-(t.cxFinal+t.pxmid[0])-t.labelExtraX,d*u>0&&(t.labelExtraX+=d)))}var o,a,s,l,c,u,h,f,d,p,g,v,m;for(a=0;2>a;a++)for(s=a?r:n,c=a?Math.max:Math.min,h=a?1:-1,o=0;2>o;o++){for(l=o?Math.max:Math.min,u=o?1:-1,f=t[a][o],f.sort(s),d=t[1-a][o],p=d.concat(f),v=[],g=0;g<f.length;g++)void 0!==f[g].yLabelMid&&v.push(f[g]);for(m=!1,g=0;a&&g<d.length;g++)if(void 0!==d[g].yLabelMid){m=d[g];break}for(g=0;g<v.length;g++){var y=g&&v[g-1];m&&!g&&(y=m),i(v[g],y)}}}function s(t,e){var r,n,i,o,a,s,l,u,h,f,d=[];for(i=0;i<t.length;i++){if(a=t[i][0],s=a.trace,r=e.w*(s.domain.x[1]-s.domain.x[0]),n=e.h*(s.domain.y[1]-s.domain.y[0]),l=s.tiltaxis*Math.PI/180,u=s.pull,Array.isArray(u))for(u=0,o=0;o<s.pull.length;o++)s.pull[o]>u&&(u=s.pull[o]);a.r=Math.min(r/c(s.tilt,Math.sin(l),s.depth),n/c(s.tilt,Math.cos(l),s.depth))/(2+2*u),a.cx=e.l+e.w*(s.domain.x[1]+s.domain.x[0])/2,a.cy=e.t+e.h*(2-s.domain.y[1]-s.domain.y[0])/2,s.scalegroup&&-1===d.indexOf(s.scalegroup)&&d.push(s.scalegroup)}for(o=0;o<d.length;o++){for(f=1/0,h=d[o],i=0;i<t.length;i++)a=t[i][0],a.trace.scalegroup===h&&(f=Math.min(f,a.r*a.r/a.vTotal));for(i=0;i<t.length;i++)a=t[i][0],a.trace.scalegroup===h&&(a.r=Math.sqrt(f*a.vTotal))}}function l(t){function e(t){var e=h.r*Math.sin(t),r=-h.r*Math.cos(t);return d?[e*(1-s*n*n)+r*a*s,e*a*s+r*(1-s*i*i),Math.sin(o)*(r*i-e*n)]:[e,r]}var r,n,i,o,a,s,l,c,u,h=t[0],f=h.trace,d=f.tilt,p=f.rotation*Math.PI/180,g=2*Math.PI/h.vTotal,v=\\\"px0\\\",m=\\\"px1\\\";if(\\\"counterclockwise\\\"===f.direction){for(l=0;l<t.length&&t[l].hidden;l++);if(l===t.length)return;p+=g*t[l].v,g*=-1,v=\\\"px1\\\",m=\\\"px0\\\"}for(d&&(o=d*Math.PI/180,r=f.tiltaxis*Math.PI/180,a=Math.sin(r)*Math.cos(r),s=1-Math.cos(o),n=Math.sin(r),i=Math.cos(r)),u=e(p),l=0;l<t.length;l++)c=t[l],c.hidden||(c[v]=u,p+=g*c.v/2,c.pxmid=e(p),c.midangle=p,p+=g*c.v/2,u=e(p),c[m]=u,c.largeArc=c.v>h.vTotal/2?1:0)}function c(t,e,r){if(!t)return 1;var n=Math.sin(t*Math.PI/180);return Math.max(.01,r*n*Math.abs(e)+2*Math.sqrt(1-n*n*e*e))}var u=t(\\\"d3\\\"),h=t(\\\"../../plots/cartesian/graph_interact\\\"),f=t(\\\"../../components/color\\\"),d=t(\\\"../../components/drawing\\\"),p=t(\\\"../../lib/svg_text_utils\\\"),g=t(\\\"./helpers\\\");e.exports=function(t,e){var r=t._fullLayout;s(e,r._size);var c=r._pielayer.selectAll(\\\"g.trace\\\").data(e);c.enter().append(\\\"g\\\").attr({\\\"stroke-linejoin\\\":\\\"round\\\",\\\"class\\\":\\\"trace\\\"}),c.exit().remove(),c.order(),c.each(function(e){var s=u.select(this),c=e[0],v=c.trace,m=0,y=(v.depth||0)*c.r*Math.sin(m)/2,b=v.tiltaxis||0,x=b*Math.PI/180,_=[y*Math.sin(x),y*Math.cos(x)],w=c.r*Math.cos(m),A=s.selectAll(\\\"g.part\\\").data(v.tilt?[\\\"top\\\",\\\"sides\\\"]:[\\\"top\\\"]);A.enter().append(\\\"g\\\").attr(\\\"class\\\",function(t){return t+\\\" part\\\"}),A.exit().remove(),A.order(),l(e),s.selectAll(\\\".top\\\").each(function(){var s=u.select(this).selectAll(\\\"g.slice\\\").data(e);s.enter().append(\\\"g\\\").classed(\\\"slice\\\",!0),s.exit().remove();var l=[[[],[]],[[],[]]],m=!1;s.each(function(a){function s(e){var r=t._fullLayout,n=t._fullData[v.index],o=n.hoverinfo;if(\\\"all\\\"===o&&(o=\\\"label+text+value+percent+name\\\"),!t._dragging&&r.hovermode!==!1&&\\\"none\\\"!==o&&o){var s=i(a,c),l=A+a.pxmid[0]*(1-s),u=k+a.pxmid[1]*(1-s),f=[];-1!==o.indexOf(\\\"label\\\")&&f.push(a.label),n.text&&n.text[a.i]&&-1!==o.indexOf(\\\"text\\\")&&f.push(n.text[a.i]),-1!==o.indexOf(\\\"value\\\")&&f.push(g.formatPieValue(a.v)),-1!==o.indexOf(\\\"percent\\\")&&f.push(g.formatPiePercent(a.v/c.vTotal)),h.loneHover({x0:l-s*c.r,x1:l+s*c.r,y:u,text:f.join(\\\"<br>\\\"),name:-1!==o.indexOf(\\\"name\\\")?n.name:void 0,color:a.color,idealAlign:a.pxmid[0]<0?\\\"left\\\":\\\"right\\\"},{container:r._hoverlayer.node(),outerContainer:r._paper.node()}),h.hover(t,e,\\\"pie\\\"),E=!0}}function f(){E&&(h.loneUnhover(r._hoverlayer.node()),E=!1)}function y(){t._hoverdata=[a],t._hoverdata.trace=e.trace,h.click(t,{target:!0})}function x(t,e,r,n){return\\\"a\\\"+n*c.r+\\\",\\\"+n*w+\\\" \\\"+b+\\\" \\\"+a.largeArc+(r?\\\" 1 \\\":\\\" 0 \\\")+n*(e[0]-t[0])+\\\",\\\"+n*(e[1]-t[1])}if(a.hidden)return void u.select(this).selectAll(\\\"path,g\\\").remove();l[a.pxmid[1]<0?0:1][a.pxmid[0]<0?0:1].push(a);var A=c.cx+_[0],k=c.cy+_[1],M=u.select(this),T=M.selectAll(\\\"path.surface\\\").data([a]),E=!1;if(T.enter().append(\\\"path\\\").classed(\\\"surface\\\",!0).style({\\\"pointer-events\\\":\\\"all\\\"}),M.select(\\\"path.textline\\\").remove(),M.on(\\\"mouseover\\\",s).on(\\\"mouseout\\\",f).on(\\\"click\\\",y),v.pull){var L=+(Array.isArray(v.pull)?v.pull[a.i]:v.pull)||0;L>0&&(A+=L*a.pxmid[0],k+=L*a.pxmid[1])}a.cxFinal=A,a.cyFinal=k;var S=v.hole;if(a.v===c.vTotal){var C=\\\"M\\\"+(A+a.px0[0])+\\\",\\\"+(k+a.px0[1])+x(a.px0,a.pxmid,!0,1)+x(a.pxmid,a.px0,!0,1)+\\\"Z\\\";S?T.attr(\\\"d\\\",\\\"M\\\"+(A+S*a.px0[0])+\\\",\\\"+(k+S*a.px0[1])+x(a.px0,a.pxmid,!1,S)+x(a.pxmid,a.px0,!1,S)+\\\"Z\\\"+C):T.attr(\\\"d\\\",C)}else{var P=x(a.px0,a.px1,!0,1);if(S){var z=1-S;T.attr(\\\"d\\\",\\\"M\\\"+(A+S*a.px1[0])+\\\",\\\"+(k+S*a.px1[1])+x(a.px1,a.px0,!1,S)+\\\"l\\\"+z*a.px0[0]+\\\",\\\"+z*a.px0[1]+P+\\\"Z\\\")}else T.attr(\\\"d\\\",\\\"M\\\"+A+\\\",\\\"+k+\\\"l\\\"+a.px0[0]+\\\",\\\"+a.px0[1]+P+\\\"Z\\\")}var R=Array.isArray(v.textposition)?v.textposition[a.i]:v.textposition,O=M.selectAll(\\\"g.slicetext\\\").data(a.text&&\\\"none\\\"!==R?[0]:[]);O.enter().append(\\\"g\\\").classed(\\\"slicetext\\\",!0),O.exit().remove(),O.each(function(){var t=u.select(this).selectAll(\\\"text\\\").data([0]);t.enter().append(\\\"text\\\").attr(\\\"data-notex\\\",1),t.exit().remove(),t.text(a.text).attr({\\\"class\\\":\\\"slicetext\\\",transform:\\\"\\\",\\\"data-bb\\\":\\\"\\\",\\\"text-anchor\\\":\\\"middle\\\",x:0,y:0}).call(d.font,\\\"outside\\\"===R?v.outsidetextfont:v.insidetextfont).call(p.convertToTspans),t.selectAll(\\\"tspan.line\\\").attr({x:0,y:0});var e,r=d.bBox(t.node());\\\"outside\\\"===R?e=o(r,a):(e=n(r,a,c),\\\"auto\\\"===R&&e.scale<1&&(t.call(d.font,v.outsidetextfont),v.outsidetextfont.family===v.insidetextfont.family&&v.outsidetextfont.size===v.insidetextfont.size||(t.attr({\\\"data-bb\\\":\\\"\\\"}),r=d.bBox(t.node())),e=o(r,a)));var i=A+a.pxmid[0]*e.rCenter+(e.x||0),s=k+a.pxmid[1]*e.rCenter+(e.y||0);e.outside&&(a.yLabelMin=s-r.height/2,a.yLabelMid=s,a.yLabelMax=s+r.height/2,a.labelExtraX=0,a.labelExtraY=0,m=!0),t.attr(\\\"transform\\\",\\\"translate(\\\"+i+\\\",\\\"+s+\\\")\\\"+(e.scale<1?\\\"scale(\\\"+e.scale+\\\")\\\":\\\"\\\")+(e.rotate?\\\"rotate(\\\"+e.rotate+\\\")\\\":\\\"\\\")+\\\"translate(\\\"+-(r.left+r.right)/2+\\\",\\\"+-(r.top+r.bottom)/2+\\\")\\\")})}),m&&a(l,v),s.each(function(t){if(t.labelExtraX||t.labelExtraY){var e=u.select(this),r=e.select(\\\"g.slicetext text\\\");r.attr(\\\"transform\\\",\\\"translate(\\\"+t.labelExtraX+\\\",\\\"+t.labelExtraY+\\\")\\\"+r.attr(\\\"transform\\\"));var n=t.cxFinal+t.pxmid[0],i=t.cyFinal+t.pxmid[1],o=\\\"M\\\"+n+\\\",\\\"+i,a=(t.yLabelMax-t.yLabelMin)*(t.pxmid[0]<0?-1:1)/4;if(t.labelExtraX){var s=t.labelExtraX*t.pxmid[1]/t.pxmid[0],l=t.yLabelMid+t.labelExtraY-(t.cyFinal+t.pxmid[1]);o+=Math.abs(s)>Math.abs(l)?\\\"l\\\"+l*t.pxmid[0]/t.pxmid[1]+\\\",\\\"+l+\\\"H\\\"+(n+t.labelExtraX+a):\\\"l\\\"+t.labelExtraX+\\\",\\\"+s+\\\"v\\\"+(l-s)+\\\"h\\\"+a}else o+=\\\"V\\\"+(t.yLabelMid+t.labelExtraY)+\\\"h\\\"+a;e.append(\\\"path\\\").classed(\\\"textline\\\",!0).call(f.stroke,v.outsidetextfont.color).attr({\\\"stroke-width\\\":Math.min(2,v.outsidetextfont.size/8),d:o,fill:\\\"none\\\"})}})})}),setTimeout(function(){c.selectAll(\\\"tspan\\\").each(function(){var t=u.select(this);t.attr(\\\"dy\\\")&&t.attr(\\\"dy\\\",t.attr(\\\"dy\\\"))})},0)}},{\\\"../../components/color\\\":301,\\\"../../components/drawing\\\":319,\\\"../../lib/svg_text_utils\\\":384,\\\"../../plots/cartesian/graph_interact\\\":398,\\\"./helpers\\\":520,d3:70}],525:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"d3\\\"),i=t(\\\"./style_one\\\");e.exports=function(t){t._fullLayout._pielayer.selectAll(\\\".trace\\\").each(function(t){var e=t[0],r=e.trace,o=n.select(this);o.style({opacity:r.opacity}),o.selectAll(\\\".top path.surface\\\").each(function(t){n.select(this).call(i,t,r)})})}},{\\\"./style_one\\\":526,d3:70}],526:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../components/color\\\");e.exports=function(t,e,r){var i=r.marker.line.color;Array.isArray(i)&&(i=i[e.i]||n.defaultLine);var o=r.marker.line.width||0;Array.isArray(o)&&(o=o[e.i]||0),t.style({\\\"stroke-width\\\":o,fill:e.color}).call(n.stroke,i)}},{\\\"../../components/color\\\":301}],527:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../lib\\\");e.exports=function(t){var e=t[0].trace,r=e.marker;if(n.mergeArray(e.text,t,\\\"tx\\\"),n.mergeArray(e.textposition,t,\\\"tp\\\"),e.textfont&&(n.mergeArray(e.textfont.size,t,\\\"ts\\\"),n.mergeArray(e.textfont.color,t,\\\"tc\\\"),n.mergeArray(e.textfont.family,t,\\\"tf\\\")),r&&r.line){var i=r.line;n.mergeArray(r.opacity,t,\\\"mo\\\"),n.mergeArray(r.symbol,t,\\\"mx\\\"),n.mergeArray(r.color,t,\\\"mc\\\"),n.mergeArray(i.color,t,\\\"mlc\\\"),n.mergeArray(i.width,t,\\\"mlw\\\")}}},{\\\"../../lib\\\":373}],528:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../components/drawing\\\");t(\\\"./constants\\\");e.exports={x:{valType:\\\"data_array\\\"},x0:{valType:\\\"any\\\",dflt:0},dx:{valType:\\\"number\\\",dflt:1},y:{valType:\\\"data_array\\\"},y0:{valType:\\\"any\\\",dflt:0},dy:{valType:\\\"number\\\",dflt:1},text:{valType:\\\"string\\\",dflt:\\\"\\\",arrayOk:!0},mode:{valType:\\\"flaglist\\\",flags:[\\\"lines\\\",\\\"markers\\\",\\\"text\\\"],extras:[\\\"none\\\"]},line:{color:{valType:\\\"color\\\"},width:{valType:\\\"number\\\",min:0,dflt:2},shape:{valType:\\\"enumerated\\\",\\n\",\n       \"values:[\\\"linear\\\",\\\"spline\\\",\\\"hv\\\",\\\"vh\\\",\\\"hvh\\\",\\\"vhv\\\"],dflt:\\\"linear\\\"},smoothing:{valType:\\\"number\\\",min:0,max:1.3,dflt:1},dash:{valType:\\\"string\\\",values:[\\\"solid\\\",\\\"dot\\\",\\\"dash\\\",\\\"longdash\\\",\\\"dashdot\\\",\\\"longdashdot\\\"],dflt:\\\"solid\\\"}},connectgaps:{valType:\\\"boolean\\\",dflt:!1},fill:{valType:\\\"enumerated\\\",values:[\\\"none\\\",\\\"tozeroy\\\",\\\"tozerox\\\",\\\"tonexty\\\",\\\"tonextx\\\"],dflt:\\\"none\\\"},fillcolor:{valType:\\\"color\\\"},marker:{symbol:{valType:\\\"enumerated\\\",values:n.symbolList,dflt:\\\"circle\\\",arrayOk:!0},opacity:{valType:\\\"number\\\",min:0,max:1,arrayOk:!0},size:{valType:\\\"number\\\",min:0,dflt:6,arrayOk:!0},color:{valType:\\\"color\\\",arrayOk:!0},maxdisplayed:{valType:\\\"number\\\",min:0,dflt:0},sizeref:{valType:\\\"number\\\",dflt:1},sizemin:{valType:\\\"number\\\",min:0,dflt:0},sizemode:{valType:\\\"enumerated\\\",values:[\\\"diameter\\\",\\\"area\\\"],dflt:\\\"diameter\\\"},colorscale:{valType:\\\"colorscale\\\"},cauto:{valType:\\\"boolean\\\",dflt:!0},cmax:{valType:\\\"number\\\",dflt:null},cmin:{valType:\\\"number\\\",dflt:null},autocolorscale:{valType:\\\"boolean\\\",dflt:!0},reversescale:{valType:\\\"boolean\\\",dflt:!1},showscale:{valType:\\\"boolean\\\",dflt:!1},line:{color:{valType:\\\"color\\\",arrayOk:!0},width:{valType:\\\"number\\\",min:0,arrayOk:!0},colorscale:{valType:\\\"colorscale\\\"},cauto:{valType:\\\"boolean\\\",dflt:!0},cmax:{valType:\\\"number\\\",dflt:null},cmin:{valType:\\\"number\\\",dflt:null},autocolorscale:{valType:\\\"boolean\\\",dflt:!0},reversescale:{valType:\\\"boolean\\\",dflt:!1}}},textposition:{valType:\\\"enumerated\\\",values:[\\\"top left\\\",\\\"top center\\\",\\\"top right\\\",\\\"middle left\\\",\\\"middle center\\\",\\\"middle right\\\",\\\"bottom left\\\",\\\"bottom center\\\",\\\"bottom right\\\"],dflt:\\\"middle center\\\",arrayOk:!0},textfont:{family:{valType:\\\"string\\\",noBlank:!0,strict:!0,arrayOk:!0},size:{valType:\\\"number\\\",min:1,arrayOk:!0},color:{valType:\\\"color\\\",arrayOk:!0}},r:{valType:\\\"data_array\\\"},t:{valType:\\\"data_array\\\"},_nestedModules:{error_y:\\\"ErrorBars\\\",error_x:\\\"ErrorBars\\\",\\\"marker.colorbar\\\":\\\"Colorbar\\\"}}},{\\\"../../components/drawing\\\":319,\\\"./constants\\\":532}],529:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"fast-isnumeric\\\"),i=t(\\\"../../plots/cartesian/axes\\\"),o=t(\\\"../../lib\\\"),a=t(\\\"./subtypes\\\"),s=t(\\\"./marker_colorscale_calc\\\");e.exports=function(t,e){var r=i.getFromId(t,e.xaxis||\\\"x\\\"),l=i.getFromId(t,e.yaxis||\\\"y\\\");o.markTime(\\\"in Scatter.calc\\\");var c=r.makeCalcdata(e,\\\"x\\\");o.markTime(\\\"finished convert x\\\");var u=l.makeCalcdata(e,\\\"y\\\");o.markTime(\\\"finished convert y\\\");var h,f,d,p=Math.min(c.length,u.length);r._minDtick=0,l._minDtick=0,c.length>p&&c.splice(p,c.length-p),u.length>p&&u.splice(p,u.length-p);var g={padded:!0},v={padded:!0};if(a.hasMarkers(e)){if(h=e.marker,f=h.size,Array.isArray(f)){var m={type:\\\"linear\\\"};i.setConvert(m),f=m.makeCalcdata(e.marker,\\\"size\\\"),f.length>p&&f.splice(p,f.length-p)}var y,b=1.6*(e.marker.sizeref||1);y=\\\"area\\\"===e.marker.sizemode?function(t){return Math.max(Math.sqrt((t||0)/b),3)}:function(t){return Math.max((t||0)/b,3)},g.ppad=v.ppad=Array.isArray(f)?f.map(y):y(f)}s(e),!(\\\"tozerox\\\"===e.fill||\\\"tonextx\\\"===e.fill&&t.firstscatter)||c[0]===c[p-1]&&u[0]===u[p-1]?e.error_y.visible||-1===[\\\"tonexty\\\",\\\"tozeroy\\\"].indexOf(e.fill)&&(a.hasMarkers(e)||a.hasText(e))||(g.padded=!1,g.ppad=0):g.tozero=!0,!(\\\"tozeroy\\\"===e.fill||\\\"tonexty\\\"===e.fill&&t.firstscatter)||c[0]===c[p-1]&&u[0]===u[p-1]?-1!==[\\\"tonextx\\\",\\\"tozerox\\\"].indexOf(e.fill)&&(v.padded=!1):v.tozero=!0,o.markTime(\\\"ready for Axes.expand\\\"),i.expand(r,c,g),o.markTime(\\\"done expand x\\\"),i.expand(l,u,v),o.markTime(\\\"done expand y\\\");var x=new Array(p);for(d=0;p>d;d++)x[d]=n(c[d])&&n(u[d])?{x:c[d],y:u[d]}:{x:!1,y:!1};return void 0!==typeof f&&o.mergeArray(f,x,\\\"ms\\\"),t.firstscatter=!1,x}},{\\\"../../lib\\\":373,\\\"../../plots/cartesian/axes\\\":393,\\\"./marker_colorscale_calc\\\":541,\\\"./subtypes\\\":546,\\\"fast-isnumeric\\\":74}],530:[function(t,e,r){\\\"use strict\\\";e.exports=function(t){var e,r,n,i,o;for(e=0;e<t.length;e++)if(r=t[e],n=r.fill,\\\"none\\\"!==n&&\\\"scatter\\\"===r.type&&(r.opacity=void 0,\\\"tonexty\\\"===n||\\\"tonextx\\\"===n))for(i=e-1;i>=0;i--)if(o=t[i],\\\"scatter\\\"===o.type&&o.xaxis===r.xaxis&&o.yaxis===r.yaxis){o.opacity=void 0;break}}},{}],531:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"d3\\\"),i=t(\\\"fast-isnumeric\\\"),o=t(\\\"../../lib\\\"),a=t(\\\"../../plots/plots\\\"),s=t(\\\"../../components/colorscale/get_scale\\\"),l=t(\\\"../../components/colorbar/draw\\\");e.exports=function(t,e){var r=e[0].trace,c=r.marker,u=\\\"cb\\\"+r.uid;if(t._fullLayout._infolayer.selectAll(\\\".\\\"+u).remove(),void 0===c||!c.showscale)return void a.autoMargin(t,u);var h=s(c.colorscale),f=c.color,d=c.cmin,p=c.cmax;i(d)||(d=o.aggNums(Math.min,null,f)),i(p)||(p=o.aggNums(Math.max,null,f));var g=e[0].t.cb=l(t,u);g.fillcolor(n.scale.linear().domain(h.map(function(t){return d+t[0]*(p-d)})).range(h.map(function(t){return t[1]}))).filllevels({start:d,end:p,size:(p-d)/254}).options(c.colorbar)(),o.markTime(\\\"done colorbar\\\")}},{\\\"../../components/colorbar/draw\\\":304,\\\"../../components/colorscale/get_scale\\\":312,\\\"../../lib\\\":373,\\\"../../plots/plots\\\":437,d3:70,\\\"fast-isnumeric\\\":74}],532:[function(t,e,r){\\\"use strict\\\";e.exports={PTS_LINESONLY:20}},{}],533:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){var n=r(\\\"line.shape\\\");\\\"spline\\\"===n&&r(\\\"line.smoothing\\\")}var i=t(\\\"../../lib\\\"),o=t(\\\"./attributes\\\"),a=t(\\\"./constants\\\"),s=t(\\\"./subtypes\\\"),l=t(\\\"./xy_defaults\\\"),c=t(\\\"./marker_defaults\\\"),u=t(\\\"./line_defaults\\\"),h=t(\\\"./text_defaults\\\"),f=t(\\\"./fillcolor_defaults\\\"),d=t(\\\"../../components/errorbars/defaults\\\");e.exports=function(t,e,r,p){function g(r,n){return i.coerce(t,e,o,r,n)}var v=l(t,e,g),m=v<a.PTS_LINESONLY?\\\"lines+markers\\\":\\\"lines\\\";return v?(g(\\\"text\\\"),g(\\\"mode\\\",m),s.hasLines(e)&&(u(t,e,r,g),n(t,e,g),g(\\\"connectgaps\\\")),s.hasMarkers(e)&&c(t,e,r,p,g),s.hasText(e)&&h(t,e,p,g),(s.hasMarkers(e)||s.hasText(e))&&g(\\\"marker.maxdisplayed\\\"),g(\\\"fill\\\"),\\\"none\\\"!==e.fill&&(f(t,e,r,g),s.hasLines(e)||n(t,e,g)),d(t,e,r,{axis:\\\"y\\\"}),void d(t,e,r,{axis:\\\"x\\\",inherit:\\\"y\\\"})):void(e.visible=!1)}},{\\\"../../components/errorbars/defaults\\\":324,\\\"../../lib\\\":373,\\\"./attributes\\\":528,\\\"./constants\\\":532,\\\"./fillcolor_defaults\\\":534,\\\"./line_defaults\\\":538,\\\"./marker_defaults\\\":542,\\\"./subtypes\\\":546,\\\"./text_defaults\\\":547,\\\"./xy_defaults\\\":548}],534:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../components/color\\\");e.exports=function(t,e,r,i){var o=!1;if(e.marker){var a=e.marker.color,s=(e.marker.line||{}).color;a&&!Array.isArray(a)?o=a:s&&!Array.isArray(s)&&(o=s)}i(\\\"fillcolor\\\",n.addOpacity((e.line||{}).color||o||r,.5))}},{\\\"../../components/color\\\":301}],535:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../components/color\\\"),i=t(\\\"./subtypes\\\");e.exports=function(t,e){var r,o;if(\\\"lines\\\"===t.mode)return r=t.line.color,r&&n.opacity(r)?r:t.fillcolor;if(\\\"none\\\"===t.mode)return t.fill?t.fillcolor:\\\"\\\";var a=e.mcc||(t.marker||{}).color,s=e.mlcc||((t.marker||{}).line||{}).color;return o=a&&n.opacity(a)?a:s&&n.opacity(s)&&(e.mlw||((t.marker||{}).line||{}).width)?s:\\\"\\\",o?n.opacity(o)<.3?n.addOpacity(o,.3):o:(r=(t.line||{}).color,r&&n.opacity(r)&&i.hasLines(t)&&t.line.width?r:t.fillcolor)}},{\\\"../../components/color\\\":301,\\\"./subtypes\\\":546}],536:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../plots/cartesian/graph_interact\\\"),i=t(\\\"../../components/errorbars\\\"),o=t(\\\"./get_trace_color\\\");e.exports=function(t,e,r,a){var s=t.cd,l=s[0].trace,c=t.xa,u=t.ya,h=function(t){var r=Math.max(3,t.mrc||0);return Math.max(Math.abs(c.c2p(t.x)-c.c2p(e))-r,1-3/r)},f=function(t){var e=Math.max(3,t.mrc||0);return Math.max(Math.abs(u.c2p(t.y)-u.c2p(r))-e,1-3/e)},d=function(t){var n=Math.max(3,t.mrc||0),i=Math.abs(c.c2p(t.x)-c.c2p(e)),o=Math.abs(u.c2p(t.y)-u.c2p(r));return Math.max(Math.sqrt(i*i+o*o)-n,1-3/n)},p=n.getDistanceFunction(a,h,f,d);if(n.getClosest(s,p,t),t.index!==!1){var g=s[t.index],v=c.c2p(g.x,!0),m=u.c2p(g.y,!0),y=g.mrc||1;return t.color=o(l,g),t.x0=v-y,t.x1=v+y,t.xLabelVal=g.x,t.y0=m-y,t.y1=m+y,t.yLabelVal=g.y,g.tx?t.text=g.tx:l.text&&(t.text=l.text),i.hoverInfo(g,l,t),[t]}}},{\\\"../../components/errorbars\\\":325,\\\"../../plots/cartesian/graph_interact\\\":398,\\\"./get_trace_color\\\":535}],537:[function(t,e,r){\\\"use strict\\\";var n={},i=t(\\\"./subtypes\\\");n.hasLines=i.hasLines,n.hasMarkers=i.hasMarkers,n.hasText=i.hasText,n.isBubble=i.isBubble,n.attributes=t(\\\"./attributes\\\"),n.supplyDefaults=t(\\\"./defaults\\\"),n.cleanData=t(\\\"./clean_data\\\"),n.calc=t(\\\"./calc\\\"),n.arraysToCalcdata=t(\\\"./arrays_to_calcdata\\\"),n.plot=t(\\\"./plot\\\"),n.colorbar=t(\\\"./colorbar\\\"),n.style=t(\\\"./style\\\"),n.hoverPoints=t(\\\"./hover\\\"),n.selectPoints=t(\\\"./select\\\"),n.moduleType=\\\"trace\\\",n.name=\\\"scatter\\\",n.basePlotModule=t(\\\"../../plots/cartesian\\\"),n.categories=[\\\"cartesian\\\",\\\"symbols\\\",\\\"markerColorscale\\\",\\\"errorBarsOK\\\",\\\"showLegend\\\"],n.meta={},e.exports=n},{\\\"../../plots/cartesian\\\":399,\\\"./arrays_to_calcdata\\\":527,\\\"./attributes\\\":528,\\\"./calc\\\":529,\\\"./clean_data\\\":530,\\\"./colorbar\\\":531,\\\"./defaults\\\":533,\\\"./hover\\\":536,\\\"./plot\\\":543,\\\"./select\\\":544,\\\"./style\\\":545,\\\"./subtypes\\\":546}],538:[function(t,e,r){\\\"use strict\\\";e.exports=function(t,e,r,n){var i=(t.marker||{}).color;n(\\\"line.color\\\",(Array.isArray(i)?!1:i)||r),n(\\\"line.width\\\"),n(\\\"line.dash\\\")}},{}],539:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../plots/cartesian/axes\\\");e.exports=function(t,e){function r(e){var r=w.c2p(t[e].x),n=A.c2p(t[e].y);return r===L||n===L?!1:[r,n]}function i(t){var e=t[0]/w._length,r=t[1]/A._length;return(1+10*Math.max(0,-e,e-1,-r,r-1))*M}function o(t,e){var r=t[0]-e[0],n=t[1]-e[1];return Math.sqrt(r*r+n*n)}var a,s,l,c,u,h,f,d,p,g,v,m,y,b,x,_,w=e.xaxis,A=e.yaxis,k=e.connectGaps,M=e.baseTolerance,T=e.linear,E=[],L=n.BADNUM,S=.2,C=new Array(t.length),P=0;for(a=0;a<t.length;a++)if(s=r(a)){for(P=0,C[P++]=s,a++;a<t.length;a++){if(c=r(a),!c){if(k)continue;break}if(T){if(f=o(c,s),!(f<i(c)*S)){for(p=[(c[0]-s[0])/f,(c[1]-s[1])/f],u=s,v=f,m=b=x=0,d=!1,l=c,a++;a<t.length;a++){if(h=r(a),!h){if(k)continue;break}if(g=[h[0]-s[0],h[1]-s[1]],_=g[0]*p[1]-g[1]*p[0],b=Math.min(b,_),x=Math.max(x,_),x-b>i(h))break;l=h,y=g[0]*p[0]+g[1]*p[1],y>v?(v=y,c=h,d=!1):m>y&&(m=y,u=h,d=!0)}if(d?(C[P++]=c,l!==u&&(C[P++]=u)):(u!==s&&(C[P++]=u),l!==c&&(C[P++]=c)),C[P++]=l,a>=t.length||!h)break;C[P++]=h,s=h}}else C[P++]=c}E.push(C.slice(0,P))}return E}},{\\\"../../plots/cartesian/axes\\\":393}],540:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"fast-isnumeric\\\");e.exports=function(t){var e=t.marker,r=e.sizeref||1,i=e.sizemin||0,o=\\\"area\\\"===e.sizemode?function(t){return Math.sqrt(t/r)}:function(t){return t/r};return function(t){var e=o(t/2);return n(e)&&e>0?Math.max(e,i):0}}},{\\\"fast-isnumeric\\\":74}],541:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../components/colorscale/has_colorscale\\\"),i=t(\\\"../../components/colorscale/calc\\\"),o=t(\\\"./subtypes\\\");e.exports=function(t){if(o.hasMarkers(t)){var e=t.marker;n(t,\\\"marker\\\")&&i(t,e.color,\\\"marker\\\",\\\"c\\\"),n(t,\\\"marker.line\\\")&&i(t,e.line.color,\\\"marker.line\\\",\\\"c\\\")}}},{\\\"../../components/colorscale/calc\\\":308,\\\"../../components/colorscale/has_colorscale\\\":313,\\\"./subtypes\\\":546}],542:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../components/color\\\"),i=t(\\\"../../components/colorscale/has_colorscale\\\"),o=t(\\\"../../components/colorscale/defaults\\\"),a=t(\\\"./subtypes\\\");e.exports=function(t,e,r,s,l){var c,u=a.isBubble(t),h=(t.line||{}).color;h&&(r=h),l(\\\"marker.symbol\\\"),l(\\\"marker.opacity\\\",u?.7:1),l(\\\"marker.size\\\"),l(\\\"marker.color\\\",r),i(t,\\\"marker\\\")&&o(t,e,s,l,{prefix:\\\"marker.\\\",cLetter:\\\"c\\\"}),c=h&&e.marker.color!==h?h:u?n.background:n.defaultLine,l(\\\"marker.line.color\\\",c),i(t,\\\"marker.line\\\")&&o(t,e,s,l,{prefix:\\\"marker.line.\\\",cLetter:\\\"c\\\"}),l(\\\"marker.line.width\\\",u?1:0),u&&(l(\\\"marker.sizeref\\\"),l(\\\"marker.sizemin\\\"),l(\\\"marker.sizemode\\\"))}},{\\\"../../components/color\\\":301,\\\"../../components/colorscale/defaults\\\":310,\\\"../../components/colorscale/has_colorscale\\\":313,\\\"./subtypes\\\":546}],543:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){var n=e.x(),o=e.y(),a=i.extent(n.range.map(n.l2c)),s=i.extent(o.range.map(o.l2c));r.forEach(function(t,e){var n=t[0].trace;if(l.hasMarkers(n)){var i=n.marker.maxdisplayed;if(0!==i){var o=t.filter(function(t){return t.x>=a[0]&&t.x<=a[1]&&t.y>=s[0]&&t.y<=s[1]}),c=Math.ceil(o.length/i),u=0;r.forEach(function(t,r){var n=t[0].trace;l.hasMarkers(n)&&n.marker.maxdisplayed>0&&e>r&&u++});var h=Math.round(u*c/3+Math.floor(u/3)*c/7.1);t.forEach(function(t){delete t.vis}),o.forEach(function(t,e){0===Math.round((e+h)%c)&&(t.vis=!0)})}}})}var i=t(\\\"d3\\\"),o=t(\\\"../../lib\\\"),a=t(\\\"../../components/drawing\\\"),s=t(\\\"../../components/errorbars\\\"),l=t(\\\"./subtypes\\\"),c=t(\\\"./arrays_to_calcdata\\\"),u=t(\\\"./line_points\\\");e.exports=function(t,e,r){function h(t){return t.filter(function(t){return t.vis})}n(t,e,r);var f=e.x(),d=e.y(),p=e.plot.select(\\\".scatterlayer\\\").selectAll(\\\"g.trace.scatter\\\").data(r);p.enter().append(\\\"g\\\").attr(\\\"class\\\",\\\"trace scatter\\\").style(\\\"stroke-miterlimit\\\",2),p.call(s.plot,e);var g,v,m,y=\\\"\\\";p.each(function(t){var e=t[0].trace,r=e.line,n=i.select(this);if(e.visible===!0&&(t[0].node3=n,c(t),l.hasLines(e)||\\\"none\\\"!==e.fill)){var o,s,h,p,b=\\\"\\\",x=\\\"\\\";g=\\\"tozero\\\"===e.fill.substr(0,6)||\\\"to\\\"===e.fill.substr(0,2)&&!y?n.append(\\\"path\\\").classed(\\\"js-fill\\\",!0):null,m&&(v=m.datum(t)),m=n.append(\\\"path\\\").classed(\\\"js-fill\\\",!0),-1!==[\\\"hv\\\",\\\"vh\\\",\\\"hvh\\\",\\\"vhv\\\"].indexOf(r.shape)?(s=a.steps(r.shape),h=a.steps(r.shape.split(\\\"\\\").reverse().join(\\\"\\\"))):s=h=\\\"spline\\\"===r.shape?function(t){return a.smoothopen(t,r.smoothing)}:function(t){return\\\"M\\\"+t.join(\\\"L\\\")},p=function(t){return\\\"L\\\"+h(t.reverse()).substr(1)};var _=u(t,{xaxis:f,yaxis:d,connectGaps:e.connectgaps,baseTolerance:Math.max(r.width||1,3)/4,linear:\\\"linear\\\"===r.shape});if(_.length){for(var w=_[0][0],A=_[_.length-1],k=A[A.length-1],M=0;M<_.length;M++){var T=_[M];o=s(T),b+=b?\\\"L\\\"+o.substr(1):o,x=p(T)+x,l.hasLines(e)&&T.length>1&&n.append(\\\"path\\\").classed(\\\"js-line\\\",!0).attr(\\\"d\\\",o)}g?w&&k&&(\\\"y\\\"===e.fill.charAt(e.fill.length-1)?w[1]=k[1]=d.c2p(0,!0):w[0]=k[0]=f.c2p(0,!0),g.attr(\\\"d\\\",b+\\\"L\\\"+k+\\\"L\\\"+w+\\\"Z\\\")):\\\"tonext\\\"===e.fill.substr(0,6)&&b&&y&&v.attr(\\\"d\\\",b+y+\\\"Z\\\"),y=x}}}),p.selectAll(\\\"path:not([d])\\\").remove(),p.append(\\\"g\\\").attr(\\\"class\\\",\\\"points\\\").each(function(t){var e=t[0].trace,r=i.select(this),n=l.hasMarkers(e),s=l.hasText(e);!n&&!s||e.visible!==!0?r.remove():(n&&r.selectAll(\\\"path.point\\\").data(e.marker.maxdisplayed?h:o.identity).enter().append(\\\"path\\\").classed(\\\"point\\\",!0).call(a.translatePoints,f,d),s&&r.selectAll(\\\"g\\\").data(e.marker.maxdisplayed?h:o.identity).enter().append(\\\"g\\\").append(\\\"text\\\").call(a.translatePoints,f,d))})}},{\\\"../../components/drawing\\\":319,\\\"../../components/errorbars\\\":325,\\\"../../lib\\\":373,\\\"./arrays_to_calcdata\\\":527,\\\"./line_points\\\":539,\\\"./subtypes\\\":546,d3:70}],544:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"./subtypes\\\"),i=.2;e.exports=function(t,e){var r,o,a,s,l=t.cd,c=t.xaxis,u=t.yaxis,h=[],f=l[0].trace,d=f.index,p=f.marker;if(n.hasMarkers(f)||n.hasText(f)){var g=Array.isArray(p.opacity)?1:p.opacity;if(e===!1)for(r=0;r<l.length;r++)l[r].dim=0;else for(r=0;r<l.length;r++)o=l[r],a=c.c2p(o.x),s=u.c2p(o.y),e.contains([a,s])?(h.push({curveNumber:d,pointNumber:r,x:o.x,y:o.y}),o.dim=0):o.dim=1;return l[0].node3.selectAll(\\\"path.point\\\").style(\\\"opacity\\\",function(t){return((t.mo+1||g+1)-1)*(t.dim?i:1)}),l[0].node3.selectAll(\\\"text\\\").style(\\\"opacity\\\",function(t){return t.dim?i:1}),h}}},{\\\"./subtypes\\\":546}],545:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"d3\\\"),i=t(\\\"../../components/drawing\\\"),o=t(\\\"../../components/errorbars\\\");e.exports=function(t){var e=n.select(t).selectAll(\\\"g.trace.scatter\\\");e.style(\\\"opacity\\\",function(t){return t[0].trace.opacity}),e.selectAll(\\\"g.points\\\").each(function(t){n.select(this).selectAll(\\\"path.point\\\").call(i.pointStyle,t.trace||t[0].trace),n.select(this).selectAll(\\\"text\\\").call(i.textPointStyle,t.trace||t[0].trace)}),e.selectAll(\\\"g.trace path.js-line\\\").call(i.lineGroupStyle),e.selectAll(\\\"g.trace path.js-fill\\\").call(i.fillGroupStyle),e.call(o.style)}},{\\\"../../components/drawing\\\":319,\\\"../../components/errorbars\\\":325,d3:70}],546:[function(t,e,r){\\\"use strict\\\";e.exports={hasLines:function(t){return t.visible&&t.mode&&-1!==t.mode.indexOf(\\\"lines\\\")},hasMarkers:function(t){return t.visible&&t.mode&&-1!==t.mode.indexOf(\\\"markers\\\")},hasText:function(t){return t.visible&&t.mode&&-1!==t.mode.indexOf(\\\"text\\\")},isBubble:function(t){return\\\"object\\\"==typeof t.marker&&Array.isArray(t.marker.size)}}},{}],547:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../lib\\\");e.exports=function(t,e,r,i){i(\\\"textposition\\\"),n.coerceFont(i,\\\"textfont\\\",r.font)}},{\\\"../../lib\\\":373}],548:[function(t,e,r){\\\"use strict\\\";e.exports=function(t,e,r){var n,i=r(\\\"x\\\"),o=r(\\\"y\\\");if(i)o?(n=Math.min(i.length,o.length),n<i.length&&(e.x=i.slice(0,n)),n<o.length&&(e.y=o.slice(0,n))):(n=i.length,r(\\\"y0\\\"),r(\\\"dy\\\"));else{if(!o)return 0;n=e.y.length,r(\\\"x0\\\"),r(\\\"dx\\\")}return n}},{}],549:[function(t,e,r){\\\"use strict\\\";function n(t){return{show:{valType:\\\"boolean\\\",dflt:!1},opacity:{valType:\\\"number\\\",min:0,max:1,dflt:1},scale:{valType:\\\"number\\\",min:0,max:10,dflt:2/3}}}var i=t(\\\"../scatter/attributes\\\"),o=t(\\\"../../constants/gl_markers\\\"),a=t(\\\"../../lib/extend\\\").extendFlat,s=i.line,l=i.marker,c=l.line;e.exports={x:{valType:\\\"data_array\\\"},y:{valType:\\\"data_array\\\"},z:{valType:\\\"data_array\\\"},text:a({},i.text,{}),mode:a({},i.mode,{dflt:\\\"lines+markers\\\"}),surfaceaxis:{valType:\\\"enumerated\\\",values:[-1,0,1,2],dflt:-1},surfacecolor:{valType:\\\"color\\\"},projection:{x:n(\\\"x\\\"),y:n(\\\"y\\\"),z:n(\\\"z\\\")},connectgaps:i.connectgaps,line:{color:s.color,width:s.width,dash:s.dash},marker:{color:l.color,symbol:{valType:\\\"enumerated\\\",values:Object.keys(o),dflt:\\\"circle\\\",arrayOk:!0},size:a({},l.size,{dflt:8}),sizeref:l.sizeref,sizemin:l.sizemin,sizemode:l.sizemode,opacity:a({},l.opacity,{arrayOk:!1}),colorscale:l.colorscale,cauto:l.cauto,cmax:l.cmax,cmin:l.cmin,autocolorscale:l.autocolorscale,reversescale:l.reversescale,showscale:l.showscale,line:{color:c.color,width:a({},c.width,{arrayOk:!1}),colorscale:c.colorscale,cauto:c.cauto,cmax:c.cmax,cmin:c.cmin,autocolorscale:c.autocolorscale,reversescale:c.reversescale}},textposition:a({},i.textposition,{dflt:\\\"top center\\\"}),textfont:i.textfont,_nestedModules:{error_x:\\\"ErrorBars\\\",error_y:\\\"ErrorBars\\\",error_z:\\\"ErrorBars\\\",\\\"marker.colorbar\\\":\\\"Colorbar\\\"}}},{\\\"../../constants/gl_markers\\\":361,\\\"../../lib/extend\\\":369,\\\"../scatter/attributes\\\":528}],550:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../scatter/arrays_to_calcdata\\\"),i=t(\\\"../scatter/marker_colorscale_calc\\\");e.exports=function(t,e){var r=[{x:!1,y:!1,trace:e,t:{}}];return n(r),i(e),r}},{\\\"../scatter/arrays_to_calcdata\\\":527,\\\"../scatter/marker_colorscale_calc\\\":541}],551:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){if(!e||!e.visible)return null;for(var n=a(e),i=new Array(t.length),o=0;o<t.length;o++){var s=n(+t[o],o);i[o]=[-s[0]*r,s[1]*r]}return i}function i(t){for(var e=0;e<t.length;e++)if(t[e])return t[e].length;return 0}function o(t,e){var r=[n(t.x,t.error_x,e[0]),n(t.y,t.error_y,e[1]),n(t.z,t.error_z,e[2])],o=i(r);if(0===o)return null;for(var a=new Array(o),s=0;o>s;s++){for(var l=[[0,0,0],[0,0,0]],c=0;3>c;c++)if(r[c])for(var u=0;2>u;u++)l[u][c]=r[c][s][u];a[s]=l}return a}var a=t(\\\"../../components/errorbars/compute_error\\\");e.exports=o},{\\\"../../components/errorbars/compute_error\\\":323}],552:[function(t,e,r){\\\"use strict\\\";function n(t,e){this.scene=t,this.uid=e,this.linePlot=null,this.scatterPlot=null,this.errorBars=null,this.textMarkers=null,this.delaunayMesh=null,this.color=null,this.mode=\\\"\\\",this.dataPoints=[],this.axesBounds=[[-(1/0),-(1/0),-(1/0)],[1/0,1/0,1/0]],this.textLabels=null,this.data=null}function i(t,e,r){var n,i=(r+1)%3,o=(r+2)%3,a=[],s=[];for(n=0;n<t.length;++n){var l=t[n];!isNaN(l[i])&&isFinite(l[i])&&!isNaN(l[o])&&isFinite(l[o])&&(a.push([l[i],l[o]]),s.push(n))}var c=m(a);for(n=0;n<c.length;++n)for(var u=c[n],h=0;h<u.length;++h)u[h]=s[u[h]];return{positions:t,cells:c,meshColor:e}}function o(t){for(var e=[0,0,0],r=[[0,0,0],[0,0,0],[0,0,0]],n=[0,0,0],i=0;3>i;i++){var o=t[i];o&&o.copy_zstyle!==!1&&(o=t[2]),o&&(e[i]=o.width/2,r[i]=b(o.color),n=o.thickness)}return{capSize:e,color:r,lineWidth:n}}function a(t){var e=[0,0];return Array.isArray(t)?[0,-1]:(t.indexOf(\\\"bottom\\\")>=0&&(e[1]+=1),t.indexOf(\\\"top\\\")>=0&&(e[1]-=1),t.indexOf(\\\"left\\\")>=0&&(e[0]-=1),t.indexOf(\\\"right\\\")>=0&&(e[0]+=1),e)}function s(t,e){return e(4*t)}function l(t){return A[t]}function c(t,e,r,n,i){var o=null;if(Array.isArray(t)){o=[];for(var a=0;e>a;a++)void 0===t[a]?o[a]=n:o[a]=r(t[a],i)}else o=r(t,y.identity);return o}function u(t,e){var r,n,i,u,h,f,d=[],p=t.fullSceneLayout,g=t.dataScale,v=p.xaxis,m=p.yaxis,w=p.zaxis,A=e.marker,M=e.line,T=e.x||[],E=e.y||[],L=e.z||[],S=T.length;for(n=0;S>n;n++)i=v.d2l(T[n])*g[0],u=m.d2l(E[n])*g[1],h=w.d2l(L[n])*g[2],d[n]=[i,u,h];if(Array.isArray(e.text))f=e.text;else if(void 0!==e.text)for(f=new Array(S),n=0;S>n;n++)f[n]=e.text;if(r={position:d,mode:e.mode,text:f},\\\"line\\\"in e&&(r.lineColor=b(M.color),r.lineWidth=M.width,r.lineDashes=M.dash),\\\"marker\\\"in e){var C=_(e);r.scatterColor=x(A,1,S),r.scatterSize=c(A.size,S,s,20,C),r.scatterMarker=c(A.symbol,S,l,\\\"\\\\u25cf\\\"),r.scatterLineWidth=A.line.width,r.scatterLineColor=x(A.line,1,S),r.scatterAngle=0}\\\"textposition\\\"in e&&(r.textOffset=a(e.textposition),r.textColor=x(e.textfont,1,S),r.textSize=c(e.textfont.size,S,y.identity,12),r.textFont=e.textfont.family,r.textAngle=0);var P=[\\\"x\\\",\\\"y\\\",\\\"z\\\"];for(r.project=[!1,!1,!1],r.projectScale=[1,1,1],r.projectOpacity=[1,1,1],n=0;3>n;++n){var z=e.projection[P[n]];(r.project[n]=z.show)&&(r.projectOpacity[n]=z.opacity,r.projectScale[n]=z.scale)}r.errorBounds=k(e,g);var R=o([e.error_x,e.error_y,e.error_z]);return r.errorColor=R.color,r.errorLineWidth=R.lineWidth,r.errorCapSize=R.capSize,r.delaunayAxis=e.surfaceaxis,r.delaunayColor=b(e.surfacecolor),r}function h(t){if(Array.isArray(t)){var e=t[0];return Array.isArray(e)&&(t=e),\\\"rgb(\\\"+t.slice(0,3).map(function(t){return Math.round(255*t)})+\\\")\\\"}return null}function f(t,e){var r=new n(t,e.uid);return r.update(e),r}var d=t(\\\"gl-line3d\\\"),p=t(\\\"gl-scatter3d\\\"),g=t(\\\"gl-error3d\\\"),v=t(\\\"gl-mesh3d\\\"),m=t(\\\"delaunay-triangulate\\\"),y=t(\\\"../../lib\\\"),b=t(\\\"../../lib/str2rgbarray\\\"),x=t(\\\"../../lib/gl_format_color\\\"),_=t(\\\"../scatter/make_bubble_size_func\\\"),w=t(\\\"../../constants/gl3d_dashes\\\"),A=t(\\\"../../constants/gl_markers\\\"),k=t(\\\"./calc_errors\\\"),M=n.prototype;M.handlePick=function(t){if(t.object&&(t.object===this.linePlot||t.object===this.delaunayMesh||t.object===this.textMarkers||t.object===this.scatterPlot)){t.object.highlight&&t.object.highlight(null),this.scatterPlot&&(t.object=this.scatterPlot,this.scatterPlot.highlight(t.data)),this.textLabels&&void 0!==this.textLabels[t.data.index]?t.textLabel=this.textLabels[t.data.index]:t.textLabel=\\\"\\\";var e=t.data.index;return t.traceCoordinate=[this.data.x[e],this.data.y[e],this.data.z[e]],!0}},M.update=function(t){var e,r,n,o,a=this.scene.glplot.gl,s=w.solid;this.data=t;var l=u(this.scene,t);\\\"mode\\\"in l&&(this.mode=l.mode),\\\"lineDashes\\\"in l&&l.lineDashes in w&&(s=w[l.lineDashes]),this.color=h(l.scatterColor)||h(l.lineColor),this.dataPoints=l.position,e={gl:a,position:l.position,color:l.lineColor,lineWidth:l.lineWidth||1,dashes:s[0],dashScale:s[1],opacity:t.opacity,connectGaps:t.connectgaps},-1!==this.mode.indexOf(\\\"lines\\\")?this.linePlot?this.linePlot.update(e):(this.linePlot=d(e),this.scene.glplot.add(this.linePlot)):this.linePlot&&(this.scene.glplot.remove(this.linePlot),this.linePlot.dispose(),this.linePlot=null);var c=t.opacity;if(t.marker&&t.marker.opacity&&(c*=t.marker.opacity),r={gl:a,position:l.position,color:l.scatterColor,size:l.scatterSize,glyph:l.scatterMarker,opacity:c,orthographic:!0,lineWidth:l.scatterLineWidth,lineColor:l.scatterLineColor,project:l.project,projectScale:l.projectScale,projectOpacity:l.projectOpacity},-1!==this.mode.indexOf(\\\"markers\\\")?this.scatterPlot?this.scatterPlot.update(r):(this.scatterPlot=p(r),this.scatterPlot.highlightScale=1,this.scene.glplot.add(this.scatterPlot)):this.scatterPlot&&(this.scene.glplot.remove(this.scatterPlot),this.scatterPlot.dispose(),this.scatterPlot=null),o={gl:a,position:l.position,glyph:l.text,color:l.textColor,size:l.textSize,angle:l.textAngle,alignment:l.textOffset,font:l.textFont,orthographic:!0,lineWidth:0,project:!1,opacity:t.opacity},this.textLabels=l.text,-1!==this.mode.indexOf(\\\"text\\\")?this.textMarkers?this.textMarkers.update(o):(this.textMarkers=p(o),this.textMarkers.highlightScale=1,this.scene.glplot.add(this.textMarkers)):this.textMarkers&&(this.scene.glplot.remove(this.textMarkers),this.textMarkers.dispose(),this.textMarkers=null),n={gl:a,position:l.position,color:l.errorColor,error:l.errorBounds,lineWidth:l.errorLineWidth,capSize:l.errorCapSize,opacity:t.opacity},this.errorBars?l.errorBounds?this.errorBars.update(n):(this.scene.glplot.remove(this.errorBars),this.errorBars.dispose(),this.errorBars=null):l.errorBounds&&(this.errorBars=g(n),this.scene.glplot.add(this.errorBars)),l.delaunayAxis>=0){var f=i(l.position,l.delaunayColor,l.delaunayAxis);this.delaunayMesh?this.delaunayMesh.update(f):(f.gl=a,this.delaunayMesh=v(f),this.scene.glplot.add(this.delaunayMesh))}else this.delaunayMesh&&(this.scene.glplot.remove(this.delaunayMesh),this.delaunayMesh.dispose(),this.delaunayMesh=null)},M.dispose=function(){this.linePlot&&(this.scene.glplot.remove(this.linePlot),this.linePlot.dispose()),this.scatterPlot&&(this.scene.glplot.remove(this.scatterPlot),this.scatterPlot.dispose()),this.errorBars&&(this.scene.remove(this.errorBars),this.errorBars.dispose()),this.textMarkers&&(this.scene.glplot.remove(this.textMarkers),this.textMarkers.dispose()),this.delaunayMesh&&(this.scene.glplot.remove(this.textMarkers),this.delaunayMesh.dispose())},e.exports=f},{\\\"../../constants/gl3d_dashes\\\":360,\\\"../../constants/gl_markers\\\":361,\\\"../../lib\\\":373,\\\"../../lib/gl_format_color\\\":371,\\\"../../lib/str2rgbarray\\\":383,\\\"../scatter/make_bubble_size_func\\\":540,\\\"./calc_errors\\\":551,\\\"delaunay-triangulate\\\":71,\\\"gl-error3d\\\":78,\\\"gl-line3d\\\":84,\\\"gl-mesh3d\\\":107,\\\"gl-scatter3d\\\":150}],553:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){var n=0,i=r(\\\"x\\\"),o=r(\\\"y\\\"),a=r(\\\"z\\\");return i&&o&&a&&(n=Math.min(i.length,o.length,a.length),n<i.length&&(e.x=i.slice(0,n)),n<o.length&&(e.y=o.slice(0,n)),n<a.length&&(e.z=a.slice(0,n))),n}var i=t(\\\"../../lib\\\"),o=t(\\\"../scatter/subtypes\\\"),a=t(\\\"../scatter/marker_defaults\\\"),s=t(\\\"../scatter/line_defaults\\\"),l=t(\\\"../scatter/text_defaults\\\"),c=t(\\\"../../components/errorbars/defaults\\\"),u=t(\\\"./attributes\\\");e.exports=function(t,e,r,h){function f(r,n){return i.coerce(t,e,u,r,n)}var d=n(t,e,f);if(!d)return void(e.visible=!1);f(\\\"text\\\"),f(\\\"mode\\\"),o.hasLines(e)&&(f(\\\"connectgaps\\\"),s(t,e,r,f)),o.hasMarkers(e)&&a(t,e,r,h,f),o.hasText(e)&&l(t,e,h,f);var p=(e.line||{}).color,g=(e.marker||{}).color;f(\\\"surfaceaxis\\\")>=0&&f(\\\"surfacecolor\\\",p||g);for(var v=[\\\"x\\\",\\\"y\\\",\\\"z\\\"],m=0;3>m;++m){var y=\\\"projection.\\\"+v[m];f(y+\\\".show\\\")&&(f(y+\\\".opacity\\\"),f(y+\\\".scale\\\"))}c(t,e,r,{axis:\\\"z\\\"}),c(t,e,r,{axis:\\\"y\\\",inherit:\\\"z\\\"}),c(t,e,r,{axis:\\\"x\\\",inherit:\\\"z\\\"})}},{\\\"../../components/errorbars/defaults\\\":324,\\\"../../lib\\\":373,\\\"../scatter/line_defaults\\\":538,\\\"../scatter/marker_defaults\\\":542,\\\"../scatter/subtypes\\\":546,\\\"../scatter/text_defaults\\\":547,\\\"./attributes\\\":549}],554:[function(t,e,r){\\\"use strict\\\";var n={};n.plot=t(\\\"./convert\\\"),n.attributes=t(\\\"./attributes\\\"),n.markerSymbols=t(\\\"../../constants/gl_markers\\\"),n.supplyDefaults=t(\\\"./defaults\\\"),n.colorbar=t(\\\"../scatter/colorbar\\\"),n.calc=t(\\\"./calc\\\"),n.moduleType=\\\"trace\\\",n.name=\\\"scatter3d\\\",n.basePlotModule=t(\\\"../../plots/gl3d\\\"),n.categories=[\\\"gl3d\\\",\\\"symbols\\\",\\\"markerColorscale\\\",\\\"showLegend\\\"],n.meta={},e.exports=n},{\\\"../../constants/gl_markers\\\":361,\\\"../../plots/gl3d\\\":424,\\\"../scatter/colorbar\\\":531,\\\"./attributes\\\":549,\\\"./calc\\\":550,\\\"./convert\\\":552,\\\"./defaults\\\":553}],555:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../scatter/attributes\\\"),i=t(\\\"../../plots/attributes\\\"),o=t(\\\"../../lib/extend\\\").extendFlat,a=n.marker,s=n.line,l=a.line;e.exports={lon:{valType:\\\"data_array\\\"},lat:{valType:\\\"data_array\\\"},locations:{valType:\\\"data_array\\\"},locationmode:{valType:\\\"enumerated\\\",values:[\\\"ISO-3\\\",\\\"USA-states\\\",\\\"country names\\\"],dflt:\\\"ISO-3\\\"},mode:o({},n.mode,{dflt:\\\"markers\\\"}),text:o({},n.text,{}),line:{color:s.color,width:s.width,dash:s.dash},marker:{symbol:a.symbol,opacity:a.opacity,size:a.size,sizeref:a.sizeref,sizemin:a.sizemin,sizemode:a.sizemode,color:a.color,colorscale:a.colorscale,cauto:a.cauto,cmax:a.cmax,cmin:a.cmin,autocolorscale:a.autocolorscale,reversescale:a.reversescale,showscale:a.showscale,line:{color:l.color,width:l.width,colorscale:l.colorscale,cauto:l.cauto,cmax:l.cmax,cmin:l.cmin,autocolorscale:l.autocolorscale,reversescale:l.reversescale}},textfont:n.textfont,textposition:n.textposition,hoverinfo:o({},i.hoverinfo,{flags:[\\\"lon\\\",\\\"lat\\\",\\\"location\\\",\\\"text\\\",\\\"name\\\"]}),_nestedModules:{\\\"marker.colorbar\\\":\\\"Colorbar\\\"}}},{\\\"../../lib/extend\\\":369,\\\"../../plots/attributes\\\":391,\\\"../scatter/attributes\\\":528}],556:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../scatter/marker_colorscale_calc\\\");e.exports=function(t,e){var r=[{x:!1,y:!1,trace:e,t:{}}];return n(e),r}},{\\\"../scatter/marker_colorscale_calc\\\":541}],557:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){var n,i,o=0,a=r(\\\"locations\\\");return a?(r(\\\"locationmode\\\"),o=a.length):(n=r(\\\"lon\\\")||[],i=r(\\\"lat\\\")||[],o=Math.min(n.length,i.length),o<n.length&&(e.lon=n.slice(0,o)),o<i.length&&(e.lat=i.slice(0,o)),o)}var i=t(\\\"../../lib\\\"),o=t(\\\"../scatter/subtypes\\\"),a=t(\\\"../scatter/marker_defaults\\\"),s=t(\\\"../scatter/line_defaults\\\"),l=t(\\\"../scatter/text_defaults\\\"),c=t(\\\"./attributes\\\");e.exports=function(t,e,r,u){function h(r,n){return i.coerce(t,e,c,r,n)}var f=n(t,e,h);return f?(h(\\\"text\\\"),h(\\\"mode\\\"),o.hasLines(e)&&s(t,e,r,h),o.hasMarkers(e)&&a(t,e,r,u,h),o.hasText(e)&&l(t,e,u,h),void h(\\\"hoverinfo\\\",1===u._dataLength?\\\"lon+lat+location+text\\\":void 0)):void(e.visible=!1)}},{\\\"../../lib\\\":373,\\\"../scatter/line_defaults\\\":538,\\\"../scatter/marker_defaults\\\":542,\\\"../scatter/subtypes\\\":546,\\\"../scatter/text_defaults\\\":547,\\\"./attributes\\\":555}],558:[function(t,e,r){\\\"use strict\\\";var n={};n.attributes=t(\\\"./attributes\\\"),n.supplyDefaults=t(\\\"./defaults\\\"),n.colorbar=t(\\\"../scatter/colorbar\\\"),n.calc=t(\\\"./calc\\\"),n.plot=t(\\\"./plot\\\").plot,n.moduleType=\\\"trace\\\",n.name=\\\"scattergeo\\\",n.basePlotModule=t(\\\"../../plots/geo\\\"),n.categories=[\\\"geo\\\",\\\"symbols\\\",\\\"markerColorscale\\\",\\\"showLegend\\\"],n.meta={},e.exports=n},{\\\"../../plots/geo\\\":409,\\\"../scatter/colorbar\\\":531,\\\"./attributes\\\":555,\\\"./calc\\\":556,\\\"./defaults\\\":557,\\\"./plot\\\":559}],559:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){function n(t,n){f(t,e,n,r)}var i=t.marker;if(n(t.text,\\\"tx\\\"),n(t.textposition,\\\"tp\\\"),t.textfont&&(n(t.textfont.size,\\\"ts\\\"),n(t.textfont.color,\\\"tc\\\"),n(t.textfont.family,\\\"tf\\\")),i&&i.line){var o=i.line;n(i.opacity,\\\"mo\\\"),n(i.symbol,\\\"mx\\\"),n(i.color,\\\"mc\\\"),n(i.size,\\\"ms\\\"),n(o.color,\\\"mlc\\\"),n(o.width,\\\"mlw\\\")}}function i(t){for(var e=t.lon.length,r=new Array(e),n=0;e>n;n++)r[n]=[t.lon[n],t.lat[n]];return{type:\\\"LineString\\\",coordinates:r,trace:t}}function o(t,e){function r(e){var r=t.mockAxis;return c.tickText(r,r.c2l(e),\\\"hover\\\").text+\\\"\\\\xb0\\\"}var n=e.hoverinfo;if(\\\"none\\\"===n)return function(t){delete t.textLabel};var i=\\\"all\\\"===n?v.hoverinfo.flags:n.split(\\\"+\\\"),o=-1!==i.indexOf(\\\"location\\\")&&Array.isArray(e.locations),a=-1!==i.indexOf(\\\"lon\\\"),s=-1!==i.indexOf(\\\"lat\\\"),l=-1!==i.indexOf(\\\"text\\\");return function(t){var n=[];o?n.push(t.location):a&&s?n.push(\\\"(\\\"+r(t.lon)+\\\", \\\"+r(t.lat)+\\\")\\\"):a?n.push(\\\"lon: \\\"+r(t.lon)):s&&n.push(\\\"lat: \\\"+r(t.lat)),l&&n.push(t.tx||e.text),t.textLabel=n.join(\\\"<br>\\\")}}function a(t){var e=Array.isArray(t.locations);return function(r,n){return{points:[{data:t._input,fullData:t,curveNumber:t.index,pointNumber:n,lon:r.lon,lat:r.lat,location:e?r.location:null}]}}}var s=t(\\\"d3\\\"),l=t(\\\"../../plots/cartesian/graph_interact\\\"),c=t(\\\"../../plots/cartesian/axes\\\"),u=t(\\\"../../lib/topojson_utils\\\").getTopojsonFeatures,h=t(\\\"../../lib/geo_location_utils\\\").locationToFeature,f=t(\\\"../../lib/array_to_calc_item\\\"),d=t(\\\"../../components/color\\\"),p=t(\\\"../../components/drawing\\\"),g=t(\\\"../scatter/subtypes\\\"),v=t(\\\"./attributes\\\"),m=e.exports={};m.calcGeoJSON=function(t,e){var r,i,o,a,s=[],l=Array.isArray(t.locations);l?(a=t.locations,r=a.length,i=u(t,e),o=function(t,e){var r=h(t.locationmode,a[e],i);return void 0!==r?r.properties.ct:void 0}):(r=t.lon.length,o=function(t,e){return[t.lon[e],t.lat[e]]});for(var c=0;r>c;c++){var f=o(t,c);if(f){var d={lon:f[0],lat:f[1],location:l?t.locations[c]:null};n(t,d,c),s.push(d)}}return s.length>0&&(s[0].trace=t),s},m.plot=function(t,e){var r=t.framework.select(\\\".scattergeolayer\\\").selectAll(\\\"g.trace.scattergeo\\\").data(e,function(t){return t.uid});r.enter().append(\\\"g\\\").attr(\\\"class\\\",\\\"trace scattergeo\\\"),r.exit().remove(),r.selectAll(\\\"*\\\").remove(),r.each(function(t){var e=s.select(this);g.hasLines(t)&&e.selectAll(\\\"path.js-line\\\").data([i(t)]).enter().append(\\\"path\\\").classed(\\\"js-line\\\",!0);\\n\",\n       \"}),r.each(function(e){function r(r,n){if(t.showHover){var i=t.projection([r.lon,r.lat]);f(r),l.loneHover({x:i[0],y:i[1],name:v?e.name:void 0,text:r.textLabel,color:r.mc||(e.marker||{}).color},{container:t.hoverContainer.node()}),t.graphDiv.emit(\\\"plotly_hover\\\",d(r,n))}}function n(e,r){t.graphDiv.emit(\\\"plotly_click\\\",d(e,r))}var i=s.select(this),c=g.hasMarkers(e),u=g.hasText(e);if(c||u){var h=m.calcGeoJSON(e,t.topojson),f=o(t,e),d=a(e),p=e.hoverinfo,v=\\\"all\\\"===p||-1!==p.indexOf(\\\"name\\\");c&&i.selectAll(\\\"path.point\\\").data(h).enter().append(\\\"path\\\").classed(\\\"point\\\",!0).on(\\\"mouseover\\\",r).on(\\\"click\\\",n).on(\\\"mouseout\\\",function(){l.loneUnhover(t.hoverContainer)}).on(\\\"mousedown\\\",function(){l.loneUnhover(t.hoverContainer)}).on(\\\"mouseup\\\",r),u&&i.selectAll(\\\"g\\\").data(h).enter().append(\\\"g\\\").append(\\\"text\\\")}}),m.style(t)},m.style=function(t){var e=t.framework.selectAll(\\\"g.trace.scattergeo\\\");e.style(\\\"opacity\\\",function(t){return t.opacity}),e.each(function(t){s.select(this).selectAll(\\\"path.point\\\").call(p.pointStyle,t),s.select(this).selectAll(\\\"text\\\").call(p.textPointStyle,t)}),e.selectAll(\\\"path.js-line\\\").style(\\\"fill\\\",\\\"none\\\").each(function(t){var e=t.trace,r=e.line||{};s.select(this).call(d.stroke,r.color).call(p.dashLine,r.dash||\\\"\\\",r.width||0)})}},{\\\"../../components/color\\\":301,\\\"../../components/drawing\\\":319,\\\"../../lib/array_to_calc_item\\\":365,\\\"../../lib/geo_location_utils\\\":370,\\\"../../lib/topojson_utils\\\":385,\\\"../../plots/cartesian/axes\\\":393,\\\"../../plots/cartesian/graph_interact\\\":398,\\\"../scatter/subtypes\\\":546,\\\"./attributes\\\":555,d3:70}],560:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../scatter/attributes\\\"),i=t(\\\"../../constants/gl2d_dashes\\\"),o=t(\\\"../../constants/gl_markers\\\"),a=t(\\\"../../lib/extend\\\").extendFlat,s=n.line,l=n.marker,c=l.line;e.exports={x:n.x,x0:n.x0,dx:n.dx,y:n.y,y0:n.y0,dy:n.dy,text:a({},n.text,{}),mode:{valType:\\\"flaglist\\\",flags:[\\\"lines\\\",\\\"markers\\\"],extras:[\\\"none\\\"]},line:{color:s.color,width:s.width,dash:{valType:\\\"enumerated\\\",values:Object.keys(i),dflt:\\\"solid\\\"}},marker:{color:l.color,symbol:{valType:\\\"enumerated\\\",values:Object.keys(o),dflt:\\\"circle\\\",arrayOk:!0},size:l.size,sizeref:l.sizeref,sizemin:l.sizemin,sizemode:l.sizemode,opacity:l.opacity,colorscale:l.colorscale,cauto:l.cauto,cmax:l.cmax,cmin:l.cmin,autocolorscale:l.autocolorscale,reversescale:l.reversescale,showscale:l.showscale,line:{color:c.color,width:c.width,colorscale:c.colorscale,cauto:c.cauto,cmax:c.cmax,cmin:c.cmin,autocolorscale:c.autocolorscale,reversescale:c.reversescale}},fill:a({},n.fill,{values:[\\\"none\\\",\\\"tozeroy\\\",\\\"tozerox\\\"]}),fillcolor:n.fillcolor,_nestedModules:{error_x:\\\"ErrorBars\\\",error_y:\\\"ErrorBars\\\",\\\"marker.colorbar\\\":\\\"Colorbar\\\"}}},{\\\"../../constants/gl2d_dashes\\\":359,\\\"../../constants/gl_markers\\\":361,\\\"../../lib/extend\\\":369,\\\"../scatter/attributes\\\":528}],561:[function(t,e,r){\\\"use strict\\\";function n(t,e){this.scene=t,this.uid=e,this.xData=[],this.yData=[],this.textLabels=[],this.color=\\\"rgb(0, 0, 0)\\\",this.name=\\\"\\\",this.hoverinfo=\\\"all\\\",this.idToIndex=[],this.bounds=[0,0,0,0],this.hasLines=!1,this.lineOptions={positions:new Float32Array,color:[0,0,0,1],width:1,fill:[!1,!1,!1,!1],fillColor:[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],dashes:[1]},this.line=d(t.glplot,this.lineOptions),this.line._trace=this,this.hasErrorX=!1,this.errorXOptions={positions:new Float32Array,errors:new Float32Array,lineWidth:1,capSize:0,color:[0,0,0,1]},this.errorX=p(t.glplot,this.errorXOptions),this.errorX._trace=this,this.hasErrorY=!1,this.errorYOptions={positions:new Float32Array,errors:new Float32Array,lineWidth:1,capSize:0,color:[0,0,0,1]},this.errorY=p(t.glplot,this.errorYOptions),this.errorY._trace=this,this.hasMarkers=!1,this.scatterOptions={positions:new Float32Array,sizes:[],colors:[],glyphs:[],borderWidths:[],borderColors:[],size:12,color:[0,0,0,1],borderSize:1,borderColor:[0,0,0,1]},this.scatter=h(t.glplot,this.scatterOptions),this.scatter._trace=this,this.fancyScatter=f(t.glplot,this.scatterOptions),this.fancyScatter._trace=this}function i(t,e,r){return Array.isArray(e)||(e=[e]),o(t,e,r)}function o(t,e,r){for(var n=new Array(r),i=e[0],o=0;r>o;++o)n[o]=t(o>=e.length?i:e[o]);return n}function a(t,e,r){return l(S(t,r),L(e,r),r)}function s(t,e,r,n){var i=x(t,e,n);return i=Array.isArray(i[0])?i:o(v.identity,[i],n),l(i,L(r,n),n)}function l(t,e,r){for(var n=new Array(4*r),i=0;r>i;++i){for(var o=0;3>o;++o)n[4*i+o]=t[i][o];n[4*i+3]=t[i][3]*e[i]}return n}function c(t,e){if(void 0===Float32Array.slice){for(var r=new Float32Array(e),n=0;e>n;n++)r[n]=t[n];return r}return t.slice(0,e)}function u(t,e){var r=new n(t,e.uid);return r.update(e),r}var h=t(\\\"gl-scatter2d\\\"),f=t(\\\"gl-scatter2d-fancy\\\"),d=t(\\\"gl-line2d\\\"),p=t(\\\"gl-error2d\\\"),g=t(\\\"fast-isnumeric\\\"),v=t(\\\"../../lib\\\"),m=t(\\\"../../plots/cartesian/axes\\\"),y=t(\\\"../../components/errorbars\\\"),b=t(\\\"../../lib/str2rgbarray\\\"),x=t(\\\"../../lib/gl_format_color\\\"),_=t(\\\"../scatter/subtypes\\\"),w=t(\\\"../scatter/make_bubble_size_func\\\"),A=t(\\\"../scatter/get_trace_color\\\"),k=t(\\\"../../constants/gl_markers\\\"),M=t(\\\"../../constants/gl2d_dashes\\\"),T=[\\\"xaxis\\\",\\\"yaxis\\\"],E=n.prototype;E.handlePick=function(t){var e=this.idToIndex[t.pointId];return{trace:this,dataCoord:t.dataCoord,traceCoord:[this.xData[e],this.yData[e]],textLabel:Array.isArray(this.textLabels)?this.textLabels[e]:this.textLabels,color:Array.isArray(this.color)?this.color[e]:this.color,name:this.name,hoverinfo:this.hoverinfo}},E.isFancy=function(t){if(\\\"linear\\\"!==this.scene.xaxis.type)return!0;if(\\\"linear\\\"!==this.scene.yaxis.type)return!0;if(!t.x||!t.y)return!0;var e=t.marker||{};if(Array.isArray(e.symbol)||\\\"circle\\\"!==e.symbol||Array.isArray(e.size)||Array.isArray(e.line.width)||Array.isArray(e.opacity))return!0;var r=e.color;if(Array.isArray(r))return!0;var n=Array.isArray(e.line.color);return Array.isArray(n)?!0:this.hasErrorX?!0:!!this.hasErrorY};var L=i.bind(null,function(t){return+t}),S=i.bind(null,b),C=i.bind(null,function(t){return k[t]||\\\"\\\\u25cf\\\"});E.update=function(t){t.visible!==!0?(this.hasLines=!1,this.hasErrorX=!1,this.hasErrorY=!1,this.hasMarkers=!1):(this.hasLines=_.hasLines(t),this.hasErrorX=t.error_x.visible===!0,this.hasErrorY=t.error_y.visible===!0,this.hasMarkers=_.hasMarkers(t)),this.textLabels=t.text,this.name=t.name,this.hoverinfo=t.hoverinfo,this.bounds=[1/0,1/0,-(1/0),-(1/0)],this.isFancy(t)?this.updateFancy(t):this.updateFast(t),this.color=A(t,{})},E.updateFast=function(t){for(var e,r,n=this.xData=t.x,i=this.yData=t.y,o=n.length,a=new Array(o),s=new Float32Array(2*o),l=this.bounds,u=0,h=0,f=0;o>f;++f)e=n[f],r=i[f],g(e)&&g(r)&&(a[u++]=f,s[h++]=e,s[h++]=r,l[0]=Math.min(l[0],e),l[1]=Math.min(l[1],r),l[2]=Math.max(l[2],e),l[3]=Math.max(l[3],r));s=c(s,h),this.idToIndex=a,this.updateLines(t,s),this.updateError(\\\"X\\\",t),this.updateError(\\\"Y\\\",t);var d;if(this.hasMarkers){this.scatterOptions.positions=s;var p=b(t.marker.color),v=b(t.marker.line.color),m=t.opacity*t.marker.opacity;p[3]*=m,this.scatterOptions.color=p,v[3]*=m,this.scatterOptions.borderColor=v,d=t.marker.size,this.scatterOptions.size=d,this.scatterOptions.borderSize=t.marker.line.width,this.scatter.update(this.scatterOptions)}else this.scatterOptions.positions=new Float32Array,this.scatterOptions.glyphs=[],this.scatter.update(this.scatterOptions);this.scatterOptions.positions=new Float32Array,this.scatterOptions.glyphs=[],this.fancyScatter.update(this.scatterOptions),this.expandAxesFast(l,d)},E.updateFancy=function(t){var e,r,n,o,a,l,u,h,f=this.scene,d=f.xaxis,p=f.yaxis,g=this.bounds,v=this.xData=d.makeCalcdata(t,\\\"x\\\"),m=this.yData=p.makeCalcdata(t,\\\"y\\\"),b=y.calcFromTrace(t,f.fullLayout),x=v.length,_=new Array(x),A=new Float32Array(2*x),k=new Float32Array(4*x),M=new Float32Array(4*x),T=0,E=0,S=0,P=0,z=\\\"log\\\"===d.type?function(t){return d.d2l(t)}:function(t){return t},R=\\\"log\\\"===p.type?function(t){return p.d2l(t)}:function(t){return t};for(e=0;x>e;++e)n=z(v[e]),o=R(m[e]),isNaN(n)||isNaN(o)||(_[T++]=e,A[E++]=n,A[E++]=o,a=k[S++]=n-b[e].xs||0,l=k[S++]=b[e].xh-n||0,k[S++]=0,k[S++]=0,M[P++]=0,M[P++]=0,u=M[P++]=o-b[e].ys||0,h=M[P++]=b[e].yh-o||0,g[0]=Math.min(g[0],n-a),g[1]=Math.min(g[1],o-u),g[2]=Math.max(g[2],n+l),g[3]=Math.max(g[3],o+h));A=c(A,E),this.idToIndex=_,this.updateLines(t,A),this.updateError(\\\"X\\\",t,A,k),this.updateError(\\\"Y\\\",t,A,M);var O;if(this.hasMarkers){this.scatterOptions.positions=A,this.scatterOptions.sizes=new Array(T),this.scatterOptions.glyphs=new Array(T),this.scatterOptions.borderWidths=new Array(T),this.scatterOptions.colors=new Array(4*T),this.scatterOptions.borderColors=new Array(4*T);var I,N=w(t),j=t.marker,F=j.opacity,D=t.opacity,B=s(j,F,D,x),U=C(j.symbol,x),V=L(j.line.width,x),q=s(j.line,F,D,x);for(O=i(N,j.size,x),e=0;T>e;++e)for(I=_[e],this.scatterOptions.sizes[e]=4*O[I],this.scatterOptions.glyphs[e]=U[I],this.scatterOptions.borderWidths[e]=.5*V[I],r=0;4>r;++r)this.scatterOptions.colors[4*e+r]=B[4*I+r],this.scatterOptions.borderColors[4*e+r]=q[4*I+r];this.fancyScatter.update(this.scatterOptions)}else this.scatterOptions.positions=new Float32Array,this.scatterOptions.glyphs=[],this.fancyScatter.update(this.scatterOptions);this.scatterOptions.positions=new Float32Array,this.scatterOptions.glyphs=[],this.scatter.update(this.scatterOptions),this.expandAxesFancy(v,m,O)},E.updateLines=function(t,e){if(this.hasLines){this.lineOptions.positions=e;var r=b(t.line.color);this.hasMarkers&&(r[3]*=t.marker.opacity);for(var n=Math.round(.5*this.lineOptions.width),i=(M[t.line.dash]||[1]).slice(),o=0;o<i.length;++o)i[o]*=n;switch(t.fill){case\\\"tozeroy\\\":this.lineOptions.fill=[!1,!0,!1,!1];break;case\\\"tozerox\\\":this.lineOptions.fill=[!0,!1,!1,!1];break;default:this.lineOptions.fill=[!1,!1,!1,!1]}var a=b(t.fillcolor);this.lineOptions.color=r,this.lineOptions.width=2*t.line.width,this.lineOptions.dashes=i,this.lineOptions.fillColor=[a,a,a,a]}else this.lineOptions.positions=new Float32Array;this.line.update(this.lineOptions)},E.updateError=function(t,e,r,n){var i=this[\\\"error\\\"+t],o=e[\\\"error_\\\"+t.toLowerCase()],s=this[\\\"error\\\"+t+\\\"Options\\\"];\\\"x\\\"===t.toLowerCase()&&o.copy_ystyle&&(o=e.error_y),this[\\\"hasError\\\"+t]?(s.positions=r,s.errors=n,s.capSize=o.width,s.lineWidth=o.thickness/2,s.color=a(o.color,1,1)):s.positions=new Float32Array,i.update(s)},E.expandAxesFast=function(t,e){for(var r,n,i,o=e||10,a=0;2>a;a++)r=this.scene[T[a]],n=r._min,n||(n=[]),n.push({val:t[a],pad:o}),i=r._max,i||(i=[]),i.push({val:t[a+2],pad:o})},E.expandAxesFancy=function(t,e,r){var n=this.scene,i={padded:!0,ppad:r};m.expand(n.xaxis,t,i),m.expand(n.yaxis,e,i)},E.dispose=function(){this.line.dispose(),this.errorX.dispose(),this.errorY.dispose(),this.scatter.dispose(),this.fancyScatter.dispose()},e.exports=u},{\\\"../../components/errorbars\\\":325,\\\"../../constants/gl2d_dashes\\\":359,\\\"../../constants/gl_markers\\\":361,\\\"../../lib\\\":373,\\\"../../lib/gl_format_color\\\":371,\\\"../../lib/str2rgbarray\\\":383,\\\"../../plots/cartesian/axes\\\":393,\\\"../scatter/get_trace_color\\\":535,\\\"../scatter/make_bubble_size_func\\\":540,\\\"../scatter/subtypes\\\":546,\\\"fast-isnumeric\\\":74,\\\"gl-error2d\\\":76,\\\"gl-line2d\\\":82,\\\"gl-scatter2d\\\":147,\\\"gl-scatter2d-fancy\\\":142}],562:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../lib\\\"),i=t(\\\"../scatter/constants\\\"),o=t(\\\"../scatter/subtypes\\\"),a=t(\\\"../scatter/xy_defaults\\\"),s=t(\\\"../scatter/marker_defaults\\\"),l=t(\\\"../scatter/line_defaults\\\"),c=t(\\\"../scatter/fillcolor_defaults\\\"),u=t(\\\"../../components/errorbars/defaults\\\"),h=t(\\\"./attributes\\\");e.exports=function(t,e,r,f){function d(r,i){return n.coerce(t,e,h,r,i)}var p=a(t,e,d);return p?(d(\\\"text\\\"),d(\\\"mode\\\",p<i.PTS_LINESONLY?\\\"lines+markers\\\":\\\"lines\\\"),o.hasLines(e)&&l(t,e,r,d),o.hasMarkers(e)&&s(t,e,r,f,d),d(\\\"fill\\\"),\\\"none\\\"!==e.fill&&c(t,e,r,d),u(t,e,r,{axis:\\\"y\\\"}),void u(t,e,r,{axis:\\\"x\\\",inherit:\\\"y\\\"})):void(e.visible=!1)}},{\\\"../../components/errorbars/defaults\\\":324,\\\"../../lib\\\":373,\\\"../scatter/constants\\\":532,\\\"../scatter/fillcolor_defaults\\\":534,\\\"../scatter/line_defaults\\\":538,\\\"../scatter/marker_defaults\\\":542,\\\"../scatter/subtypes\\\":546,\\\"../scatter/xy_defaults\\\":548,\\\"./attributes\\\":560}],563:[function(t,e,r){\\\"use strict\\\";var n={};n.attributes=t(\\\"./attributes\\\"),n.supplyDefaults=t(\\\"./defaults\\\"),n.colorbar=t(\\\"../scatter/colorbar\\\"),n.calc=t(\\\"../scatter3d/calc\\\"),n.plot=t(\\\"./convert\\\"),n.moduleType=\\\"trace\\\",n.name=\\\"scattergl\\\",n.basePlotModule=t(\\\"../../plots/gl2d\\\"),n.categories=[\\\"gl2d\\\",\\\"symbols\\\",\\\"errorBarsOK\\\",\\\"markerColorscale\\\",\\\"showLegend\\\"],n.meta={},e.exports=n},{\\\"../../plots/gl2d\\\":421,\\\"../scatter/colorbar\\\":531,\\\"../scatter3d/calc\\\":550,\\\"./attributes\\\":560,\\\"./convert\\\":561,\\\"./defaults\\\":562}],564:[function(t,e,r){\\\"use strict\\\";function n(t){return{valType:\\\"boolean\\\",dflt:!1}}function i(t){return{show:{valType:\\\"boolean\\\",dflt:!1},project:{x:n(\\\"x\\\"),y:n(\\\"y\\\"),z:n(\\\"z\\\")},color:{valType:\\\"color\\\",dflt:\\\"#000\\\"},usecolormap:{valType:\\\"boolean\\\",dflt:!1},width:{valType:\\\"number\\\",min:1,max:16,dflt:2},highlight:{valType:\\\"boolean\\\",dflt:!1},highlightColor:{valType:\\\"color\\\",dflt:\\\"#000\\\"},highlightWidth:{valType:\\\"number\\\",min:1,max:16,dflt:2}}}var o=t(\\\"../../components/colorscale/attributes\\\"),a=t(\\\"../../lib/extend\\\").extendFlat;e.exports={z:{valType:\\\"data_array\\\"},x:{valType:\\\"data_array\\\"},y:{valType:\\\"data_array\\\"},text:{valType:\\\"data_array\\\"},surfacecolor:{valType:\\\"data_array\\\"},cauto:o.zauto,cmin:o.zmin,cmax:o.zmax,colorscale:o.colorscale,autocolorscale:a({},o.autocolorscale,{dflt:!1}),reversescale:o.reversescale,showscale:o.showscale,contours:{x:i(\\\"x\\\"),y:i(\\\"y\\\"),z:i(\\\"z\\\")},hidesurface:{valType:\\\"boolean\\\",dflt:!1},lighting:{ambient:{valType:\\\"number\\\",min:0,max:1,dflt:.8},diffuse:{valType:\\\"number\\\",min:0,max:1,dflt:.8},specular:{valType:\\\"number\\\",min:0,max:2,dflt:.05},roughness:{valType:\\\"number\\\",min:0,max:1,dflt:.5},fresnel:{valType:\\\"number\\\",min:0,max:5,dflt:.2}},opacity:{valType:\\\"number\\\",min:0,max:1,dflt:1},_nestedModules:{colorbar:\\\"Colorbar\\\"},_deprecated:{zauto:a({},o.zauto,{}),zmin:a({},o.zmin,{}),zmax:a({},o.zmax,{})}}},{\\\"../../components/colorscale/attributes\\\":307,\\\"../../lib/extend\\\":369}],565:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"../../components/colorscale/calc\\\");e.exports=function(t,e){e.surfacecolor?n(e,e.surfacecolor,\\\"\\\",\\\"c\\\"):n(e,e.z,\\\"\\\",\\\"c\\\")}},{\\\"../../components/colorscale/calc\\\":308}],566:[function(t,e,r){\\\"use strict\\\";var n=t(\\\"d3\\\"),i=t(\\\"fast-isnumeric\\\"),o=t(\\\"../../lib\\\"),a=t(\\\"../../plots/plots\\\"),s=t(\\\"../../components/colorscale/get_scale\\\"),l=t(\\\"../../components/colorbar/draw\\\");e.exports=function(t,e){var r=e[0].trace,c=\\\"cb\\\"+r.uid,u=s(r.colorscale),h=r.cmin,f=r.cmax,d=r.surfacecolor||r.z;if(i(h)||(h=o.aggNums(Math.min,null,d)),i(f)||(f=o.aggNums(Math.max,null,d)),t._fullLayout._infolayer.selectAll(\\\".\\\"+c).remove(),!r.showscale)return void a.autoMargin(t,c);var p=e[0].t.cb=l(t,c);p.fillcolor(n.scale.linear().domain(u.map(function(t){return h+t[0]*(f-h)})).range(u.map(function(t){return t[1]}))).filllevels({start:h,end:f,size:(f-h)/254}).options(r.colorbar)(),o.markTime(\\\"done colorbar\\\")}},{\\\"../../components/colorbar/draw\\\":304,\\\"../../components/colorscale/get_scale\\\":312,\\\"../../lib\\\":373,\\\"../../plots/plots\\\":437,d3:70,\\\"fast-isnumeric\\\":74}],567:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){this.scene=t,this.uid=r,this.surface=e,this.data=null,this.showContour=[!1,!1,!1],this.dataScale=1}function i(t,e){return void 0===e&&(e=1),t.map(function(t){var r=t[0],n=d(t[1]),i=n.toRgb();return{index:r,rgb:[i.r,i.g,i.b,e]}})}function o(t){var e=t.shape,r=[e[0]+2,e[1]+2],n=c(new Float32Array(r[0]*r[1]),r);return f.assign(n.lo(1,1).hi(e[0],e[1]),t),f.assign(n.lo(1).hi(e[0],1),t.hi(e[0],1)),f.assign(n.lo(1,r[1]-1).hi(e[0],1),t.lo(0,e[1]-1).hi(e[0],1)),f.assign(n.lo(0,1).hi(1,e[1]),t.hi(1)),f.assign(n.lo(r[0]-1,1).hi(1,e[1]),t.lo(e[0]-1)),n.set(0,0,t.get(0,0)),n.set(0,r[1]-1,t.get(0,e[1]-1)),n.set(r[0]-1,0,t.get(e[0]-1,0)),n.set(r[0]-1,r[1]-1,t.get(e[0]-1,e[1]-1)),n}function a(t){var e=Math.max(t[0].shape[0],t[0].shape[1]);if(g>e){for(var r=g/e,n=[0|Math.floor(t[0].shape[0]*r+1),0|Math.floor(t[0].shape[1]*r+1)],i=n[0]*n[1],a=0;a<t.length;++a){var s=o(t[a]),l=c(new Float32Array(i),n);u(l,s,[r,0,0,0,r,0,0,0,1]),t[a]=l}return r}return 1}function s(t,e){var r=t.glplot.gl,i=l({gl:r}),o=new n(t,i,e.uid);return o.update(e),t.glplot.add(i),o}var l=t(\\\"gl-surface3d\\\"),c=t(\\\"ndarray\\\"),u=t(\\\"ndarray-homography\\\"),h=t(\\\"ndarray-fill\\\"),f=t(\\\"ndarray-ops\\\"),d=t(\\\"tinycolor2\\\"),p=t(\\\"../../lib/str2rgbarray\\\"),g=128,v=n.prototype;v.handlePick=function(t){if(t.object===this.surface){var e=[Math.min(0|Math.round(t.data.index[0]/this.dataScale-1),this.data.z[0].length-1),Math.min(0|Math.round(t.data.index[1]/this.dataScale-1),this.data.z.length-1)],r=[0,0,0];Array.isArray(this.data.x[0])?r[0]=this.data.x[e[1]][e[0]]:r[0]=this.data.x[e[0]],Array.isArray(this.data.y[0])?r[1]=this.data.y[e[1]][e[0]]:r[1]=this.data.y[e[1]],r[2]=this.data.z[e[1]][e[0]],t.traceCoordinate=r;var n=this.scene.fullSceneLayout;t.dataCoordinate=[n.xaxis.d2l(r[0])*this.scene.dataScale[0],n.yaxis.d2l(r[1])*this.scene.dataScale[1],n.zaxis.d2l(r[2])*this.scene.dataScale[2]];var i=this.data.text;return i&&i[e[1]]&&void 0!==i[e[1]][e[0]]?t.textLabel=i[e[1]][e[0]]:t.textLabel=\\\"\\\",t.data.dataCoordinate=t.dataCoordinate.slice(),this.surface.highlight(t.data),this.scene.glplot.spikes.position=t.dataCoordinate,!0}},v.setContourLevels=function(){for(var t=[[],[],[]],e=!1,r=0;3>r;++r)this.showContour[r]&&(e=!0,t[r]=this.scene.contourLevels[r]);e&&this.surface.update({levels:t})},v.update=function(t){var e,r=this.scene,n=r.fullSceneLayout,o=this.surface,s=t.opacity,l=i(t.colorscale,s),u=t.z,f=t.x,d=t.y,g=n.xaxis,v=n.yaxis,m=n.zaxis,y=r.dataScale,b=u[0].length,x=u.length,_=[c(new Float32Array(b*x),[b,x]),c(new Float32Array(b*x),[b,x]),c(new Float32Array(b*x),[b,x])],w=_[0],A=_[1],k=r.contourLevels;this.data=t,h(_[2],function(t,e){return m.d2l(u[e][t])*y[2]}),Array.isArray(f[0])?h(w,function(t,e){return g.d2l(f[e][t])*y[0]}):h(w,function(t){return g.d2l(f[t])*y[0]}),Array.isArray(d[0])?h(A,function(t,e){return v.d2l(d[e][t])*y[1]}):h(A,function(t,e){return v.d2l(d[e])*y[1]});var M={colormap:l,levels:[[],[],[]],showContour:[!0,!0,!0],showSurface:!t.hidesurface,contourProject:[[!1,!1,!1],[!1,!1,!1],[!1,!1,!1]],contourWidth:[1,1,1],contourColor:[[1,1,1,1],[1,1,1,1],[1,1,1,1]],contourTint:[1,1,1],dynamicColor:[[1,1,1,1],[1,1,1,1],[1,1,1,1]],dynamicWidth:[1,1,1],dynamicTint:[1,1,1],opacity:1};if(M.intensityBounds=[t.cmin,t.cmax],t.surfacecolor){var T=c(new Float32Array(b*x),[b,x]);h(T,function(e,r){return t.surfacecolor[r][e]}),_.push(T)}else M.intensityBounds[0]*=y[2],M.intensityBounds[1]*=y[2];this.dataScale=a(_),t.surfacecolor&&(M.intensity=_.pop()),\\\"opacity\\\"in t&&t.opacity<1&&(M.opacity=.25*t.opacity);var E=[!0,!0,!0],L=[!0,!0,!0],S=[\\\"x\\\",\\\"y\\\",\\\"z\\\"];for(e=0;3>e;++e){var C=t.contours[S[e]];E[e]=C.highlight,L[e]=C.show,M.showContour[e]=C.show||C.highlight,M.showContour[e]&&(M.contourProject[e]=[C.project.x,C.project.y,C.project.z],C.show?(this.showContour[e]=!0,M.levels[e]=k[e],o.highlightColor[e]=M.contourColor[e]=p(C.color),C.usecolormap?o.highlightTint[e]=M.contourTint[e]=0:o.highlightTint[e]=M.contourTint[e]=1,M.contourWidth[e]=C.width):this.showContour[e]=!1,C.highlight&&(M.dynamicColor[e]=p(C.highlightColor),M.dynamicWidth[e]=C.highlightWidth))}M.coords=_,o.update(M),o.highlightEnable=E,o.contourEnable=L,o.visible=t.visible,o.snapToData=!0,\\\"lighting\\\"in t&&(o.ambientLight=t.lighting.ambient,o.diffuseLight=t.lighting.diffuse,o.specularLight=t.lighting.specular,o.roughness=t.lighting.roughness,o.fresnel=t.lighting.fresnel),s&&1>s&&(o.supportsTransparency=!0)},v.dispose=function(){this.scene.glplot.remove(this.surface),this.surface.dispose()},e.exports=s},{\\\"../../lib/str2rgbarray\\\":383,\\\"gl-surface3d\\\":179,ndarray:210,\\\"ndarray-fill\\\":203,\\\"ndarray-homography\\\":208,\\\"ndarray-ops\\\":209,tinycolor2:231}],568:[function(t,e,r){\\\"use strict\\\";function n(t,e,r){e in t&&!(r in t)&&(t[r]=t[e])}var i=t(\\\"../../lib\\\"),o=t(\\\"../../components/colorscale/defaults\\\"),a=t(\\\"./attributes\\\");e.exports=function(t,e,r,s){function l(r,n){return i.coerce(t,e,a,r,n)}var c,u,h=l(\\\"z\\\");if(!h)return void(e.visible=!1);var f=h[0].length,d=h.length;if(l(\\\"x\\\"),l(\\\"y\\\"),!Array.isArray(e.x))for(e.x=[],c=0;f>c;++c)e.x[c]=c;if(l(\\\"text\\\"),!Array.isArray(e.y))for(e.y=[],c=0;d>c;++c)e.y[c]=c;l(\\\"lighting.ambient\\\"),l(\\\"lighting.diffuse\\\"),l(\\\"lighting.specular\\\"),l(\\\"lighting.roughness\\\"),l(\\\"lighting.fresnel\\\"),l(\\\"hidesurface\\\"),l(\\\"opacity\\\");var p=l(\\\"surfacecolor\\\");l(\\\"colorscale\\\");var g=[\\\"x\\\",\\\"y\\\",\\\"z\\\"];for(c=0;3>c;++c){var v=\\\"contours.\\\"+g[c],m=l(v+\\\".show\\\"),y=l(v+\\\".highlight\\\");if(m||y)for(u=0;3>u;++u)l(v+\\\".project.\\\"+g[u]);m&&(l(v+\\\".color\\\"),l(v+\\\".width\\\"),l(v+\\\".usecolormap\\\")),y&&(l(v+\\\".highlightColor\\\"),l(v+\\\".highlightWidth\\\"))}p||(n(t,\\\"zmin\\\",\\\"cmin\\\"),n(t,\\\"zmax\\\",\\\"cmax\\\"),n(t,\\\"zauto\\\",\\\"cauto\\\")),o(t,e,s,l,{prefix:\\\"\\\",cLetter:\\\"c\\\"})}},{\\\"../../components/colorscale/defaults\\\":310,\\\"../../lib\\\":373,\\\"./attributes\\\":564}],569:[function(t,e,r){\\\"use strict\\\";var n={};n.attributes=t(\\\"./attributes\\\"),n.supplyDefaults=t(\\\"./defaults\\\"),n.colorbar=t(\\\"./colorbar\\\"),n.calc=t(\\\"./calc\\\"),n.plot=t(\\\"./convert\\\"),n.moduleType=\\\"trace\\\",n.name=\\\"surface\\\",n.basePlotModule=t(\\\"../../plots/gl3d\\\"),n.categories=[\\\"gl3d\\\",\\\"noOpacity\\\"],n.meta={},e.exports=n},{\\\"../../plots/gl3d\\\":424,\\\"./attributes\\\":564,\\\"./calc\\\":565,\\\"./colorbar\\\":566,\\\"./convert\\\":567,\\\"./defaults\\\":568}]},{},[12])(12)});\\n\",\n       \"     });\\n\",\n       \"     require(['plotly'], function(Plotly) {\\n\",\n       \"         window.Plotly = Plotly;\\n\",\n       \"     });\\n\",\n       \" </script>\\n\",\n       \" <p>Plotly javascript loaded.</p>\\n\",\n       \" \"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"[Plots.jl] Initializing backend: plotlyjs\\n\"\n     ]\n    },\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"WARNING: Keyword argument bar_width not supported with Plots.PlotlyJSBackend().  Choose from: [:annotations,:background_color_legend,:background_color_inside,:background_color_outside,:foreground_color_legend,:foreground_color_guide,:foreground_color_text,:foreground_color_border,:foreground_color_title,:label,:seriescolor,:seriesalpha,:linecolor,:linestyle,:linewidth,:linealpha,:markershape,:markercolor,:markersize,:markeralpha,:markerstrokewidth,:markerstrokecolor,:markerstrokealpha,:markerstrokestyle,:fillrange,:fillcolor,:fillalpha,:bins,:title,:title_location,:titlefont,:window_title,:guide,:lims,:ticks,:scale,:flip,:rotation,:tickfont,:guidefont,:legendfont,:grid,:legend,:colorbar,:marker_z,:levels,:ribbon,:quiver,:orientation,:polar,:normalize,:weights,:hover,:inset_subplots,:color_palette,:background_color,:background_color_subplot,:foreground_color,:foreground_color_subplot,:group,:seriestype,:seriescolor,:seriesalpha,:smooth,:xerror,:yerror,:subplot,:x,:y,:z,:show,:size,:margin,:left_margin,:right_margin,:top_margin,:bottom_margin,:html_output_format,:layout,:link,:primary,:series_annotations,:subplot_index,:discrete_values,:projection,:xforeground_color_guide,:yforeground_color_guide,:zforeground_color_guide,:xforeground_color_text,:yforeground_color_text,:zforeground_color_text,:xforeground_color_border,:yforeground_color_border,:zforeground_color_border,:xguide,:yguide,:zguide,:xlims,:ylims,:zlims,:xticks,:yticks,:zticks,:xscale,:yscale,:zscale,:xflip,:yflip,:zflip,:xrotation,:yrotation,:zrotation,:xtickfont,:ytickfont,:ztickfont,:xguidefont,:yguidefont,:zguidefont,:xlink,:ylink,:zlink,:xdiscrete_values,:ydiscrete_values,:zdiscrete_values]\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<html>\\n\",\n       \"<head>\\n\",\n       \"     <script src=\\\"/Users/juanklopper/.julia/v0.4/PlotlyJS/deps/plotly-latest.min.js\\\"></script>\\n\",\n       \"</head>\\n\",\n       \"<body>\\n\",\n       \"     <div id=\\\"66338602-6b4b-473e-87ff-2ac082d1196c\\\" class=\\\"plotly-graph-div\\\"></div>\\n\",\n       \"\\n\",\n       \"<script>\\n\",\n       \"    window.PLOTLYENV=window.PLOTLYENV || {};\\n\",\n       \"    window.PLOTLYENV.BASE_URL=\\\"https://plot.ly\\\";\\n\",\n       \"   Plotly.newPlot('66338602-6b4b-473e-87ff-2ac082d1196c', [{\\\"type\\\":\\\"bar\\\",\\\"yaxis\\\":\\\"y\\\",\\\"y\\\":[5.0,23.0,86.0,155.0,241.0,262.0,142.0,63.0,17.0,6.0],\\\"showlegend\\\":true,\\\"name\\\":\\\"Standard normal distribution\\\",\\\"xaxis\\\":\\\"x\\\",\\\"orientation\\\":\\\"v\\\",\\\"x\\\":[-3.1676734849558605,-2.5094960512637936,-1.8513186175717267,-1.19314118387966,-0.5349637501875929,0.12321368350447379,0.781391117196541,1.4395685508886078,2.0977459845806745,2.7559234182727415,3.4141008519648084]}],  {\\\"yaxis\\\":{\\\"type\\\":\\\"-\\\",\\\"titlefont\\\":{\\\"size\\\":15,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"},\\\"title\\\":\\\"\\\",\\\"tickfont\\\":{\\\"size\\\":11,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"},\\\"tickmode\\\":\\\"array\\\",\\\"showgrid\\\":true,\\\"tickvals\\\":[0.0,100.0,200.0],\\\"domain\\\":[0.057305336832895896,0.9415463692038495],\\\"ticktext\\\":[\\\"0\\\",\\\"100\\\",\\\"200\\\"],\\\"zeroline\\\":false,\\\"linecolor\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"tickcolor\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"anchor\\\":\\\"x\\\"},\\\"annotations\\\":[{\\\"text\\\":\\\"Histogram\\\",\\\"y\\\":1.0,\\\"xref\\\":\\\"paper\\\",\\\"font\\\":{\\\"size\\\":20,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"},\\\"xanchor\\\":\\\"center\\\",\\\"x\\\":0.526246719160105,\\\"yref\\\":\\\"paper\\\",\\\"showarrow\\\":false,\\\"yanchor\\\":\\\"top\\\",\\\"rotation\\\":0.0}],\\\"width\\\":600,\\\"plot_bgcolor\\\":\\\"rgba(255, 255, 255, 1.000)\\\",\\\"showlegend\\\":true,\\\"legend\\\":{\\\"bgcolor\\\":\\\"rgba(255, 255, 255, 1.000)\\\",\\\"font\\\":{\\\"size\\\":11,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"},\\\"bordercolor\\\":\\\"rgba(0, 0, 0, 1.000)\\\"},\\\"xaxis\\\":{\\\"type\\\":\\\"-\\\",\\\"titlefont\\\":{\\\"size\\\":15,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"},\\\"title\\\":\\\"\\\",\\\"tickfont\\\":{\\\"size\\\":11,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"},\\\"tickmode\\\":\\\"array\\\",\\\"showgrid\\\":true,\\\"tickvals\\\":[-2.0,0.0,2.0],\\\"domain\\\":[0.05905511811023622,0.9934383202099738],\\\"ticktext\\\":[\\\"-2\\\",\\\"0\\\",\\\"2\\\"],\\\"zeroline\\\":false,\\\"linecolor\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"tickcolor\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"anchor\\\":\\\"y\\\"},\\\"paper_bgcolor\\\":\\\"rgba(255, 255, 255, 1.000)\\\",\\\"margin\\\":{\\\"r\\\":0,\\\"l\\\":0,\\\"b\\\":0,\\\"t\\\":20},\\\"height\\\":400}, {showLink: false});\\n\",\n       \"\\n\",\n       \" </script>\\n\",\n       \"\\n\",\n       \"</body>\\n\",\n       \"</html>\\n\"\n      ]\n     },\n     \"execution_count\": 9,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Beware the pink text box!!!\\n\",\n    \"histogram(norm1, bins = 10, label = \\\"Standard normal distribution\\\",\\n\",\n    \"title = \\\"Histogram\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"These values were selected at random.  We can check how close we came to a real mean of $ 0 $ and a standard deviation of $ 1 $.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.06142975618897082\"\n      ]\n     },\n     \"execution_count\": 10,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Using mean()\\n\",\n    \"mean(norm1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"1.0148226836233571\"\n      ]\n     },\n     \"execution_count\": 11,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Standard deviation using std()\\n\",\n    \"std(norm1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>Using the Distributions package</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can ask for random data point values for a variable to be taken from any number of discrete or continuous distributions.  This greatly expands on the standard normal distribution provided by the `randn()` function.  In this lesson we will concentrate on the continuous random variables and start with the normal distribution.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### The normal distribution\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The `Normal()` function from the Distribution package takes two arguments.  The first is the mean and the second is the required standard deviation.  We use it in conjunction with the `rand()` function so that we can specifiy how many data point values we want.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Recreating the standard normal distribution\\n\",\n    \"norm2 = rand(Normal(0, 1), 1000);\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<html>\\n\",\n       \"<head>\\n\",\n       \"     <script src=\\\"/Users/juanklopper/.julia/v0.4/PlotlyJS/deps/plotly-latest.min.js\\\"></script>\\n\",\n       \"</head>\\n\",\n       \"<body>\\n\",\n       \"     <div id=\\\"c975b705-2f49-4de5-beec-922685f0a5ce\\\" class=\\\"plotly-graph-div\\\"></div>\\n\",\n       \"\\n\",\n       \"<script>\\n\",\n       \"    window.PLOTLYENV=window.PLOTLYENV || {};\\n\",\n       \"    window.PLOTLYENV.BASE_URL=\\\"https://plot.ly\\\";\\n\",\n       \"   Plotly.newPlot('c975b705-2f49-4de5-beec-922685f0a5ce', [{\\\"type\\\":\\\"bar\\\",\\\"yaxis\\\":\\\"y\\\",\\\"y\\\":[6.0,18.0,87.0,165.0,269.0,249.0,143.0,43.0,15.0,5.0],\\\"showlegend\\\":true,\\\"name\\\":\\\"Standard normal distribution\\\",\\\"xaxis\\\":\\\"x\\\",\\\"orientation\\\":\\\"v\\\",\\\"x\\\":[-3.3083134879128986,-2.629764246726684,-1.9512150055404693,-1.272665764354255,-0.5941165231680403,0.08443271801817467,0.762981959204389,1.4415312003906038,2.1200804415768184,2.798629682763033,3.4771789239492477]}],  {\\\"yaxis\\\":{\\\"type\\\":\\\"-\\\",\\\"titlefont\\\":{\\\"size\\\":15,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"},\\\"title\\\":\\\"\\\",\\\"tickfont\\\":{\\\"size\\\":11,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"},\\\"tickmode\\\":\\\"array\\\",\\\"showgrid\\\":true,\\\"tickvals\\\":[0.0,100.0,200.0],\\\"domain\\\":[0.057305336832895896,0.9415463692038495],\\\"ticktext\\\":[\\\"0\\\",\\\"100\\\",\\\"200\\\"],\\\"zeroline\\\":false,\\\"linecolor\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"tickcolor\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"anchor\\\":\\\"x\\\"},\\\"annotations\\\":[{\\\"text\\\":\\\"Histogram\\\",\\\"y\\\":1.0,\\\"xref\\\":\\\"paper\\\",\\\"font\\\":{\\\"size\\\":20,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"},\\\"xanchor\\\":\\\"center\\\",\\\"x\\\":0.526246719160105,\\\"yref\\\":\\\"paper\\\",\\\"showarrow\\\":false,\\\"yanchor\\\":\\\"top\\\",\\\"rotation\\\":0.0}],\\\"width\\\":600,\\\"plot_bgcolor\\\":\\\"rgba(255, 255, 255, 1.000)\\\",\\\"showlegend\\\":true,\\\"legend\\\":{\\\"bgcolor\\\":\\\"rgba(255, 255, 255, 1.000)\\\",\\\"font\\\":{\\\"size\\\":11,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"},\\\"bordercolor\\\":\\\"rgba(0, 0, 0, 1.000)\\\"},\\\"xaxis\\\":{\\\"type\\\":\\\"-\\\",\\\"titlefont\\\":{\\\"size\\\":15,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"},\\\"title\\\":\\\"\\\",\\\"tickfont\\\":{\\\"size\\\":11,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"},\\\"tickmode\\\":\\\"array\\\",\\\"showgrid\\\":true,\\\"tickvals\\\":[-2.0,0.0,2.0],\\\"domain\\\":[0.05905511811023622,0.9934383202099738],\\\"ticktext\\\":[\\\"-2\\\",\\\"0\\\",\\\"2\\\"],\\\"zeroline\\\":false,\\\"linecolor\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"tickcolor\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"anchor\\\":\\\"y\\\"},\\\"paper_bgcolor\\\":\\\"rgba(255, 255, 255, 1.000)\\\",\\\"margin\\\":{\\\"r\\\":0,\\\"l\\\":0,\\\"b\\\":0,\\\"t\\\":20},\\\"height\\\":400}, {showLink: false});\\n\",\n       \"\\n\",\n       \" </script>\\n\",\n       \"\\n\",\n       \"</body>\\n\",\n       \"</html>\\n\"\n      ]\n     },\n     \"execution_count\": 13,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Histogram\\n\",\n    \"histogram(norm2, bins = 10, label = \\\"Standard normal distribution\\\",\\n\",\n    \"title = \\\"Histogram\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Just to belabor the point, we can use `Plots` to show us the theoretical normal distribution.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<html>\\n\",\n       \"<head>\\n\",\n       \"     <script src=\\\"/Users/juanklopper/.julia/v0.4/PlotlyJS/deps/plotly-latest.min.js\\\"></script>\\n\",\n       \"</head>\\n\",\n       \"<body>\\n\",\n       \"     <div id=\\\"27ba3fe8-17e0-4f40-bebe-1bae942c0eb6\\\" class=\\\"plotly-graph-div\\\"></div>\\n\",\n       \"\\n\",\n       \"<script>\\n\",\n       \"    window.PLOTLYENV=window.PLOTLYENV || {};\\n\",\n       \"    window.PLOTLYENV.BASE_URL=\\\"https://plot.ly\\\";\\n\",\n       \"   Plotly.newPlot('27ba3fe8-17e0-4f40-bebe-1bae942c0eb6', [{\\\"type\\\":\\\"scatter\\\",\\\"yaxis\\\":\\\"y\\\",\\\"y\\\":[0.00013383022576488537,0.0001842953023181513,0.00025213805615265854,0.000342709872958592,0.00046278461445970013,0.0006208622991664072,0.0008275147546819403,0.0010957722143120606,0.001441547316537095,0.0018840898101538117,0.0024464614683183815,0.003156016316418044,0.0040448663858864775,0.00515030799236089,0.0065151782522678905,0.008188106526787245,0.010223621121960588,0.012682068349159798,0.01562929947685561,0.019136081713996122,0.023277192666084613,0.02813016413727844,0.033773651035270635,0.040285414616323394,0.04773992630685354,0.05620561850894386,0.06574183149645658,0.07639552978506675,0.08819788596894869,0.10116085346212436,0.11527387018442578,0.13050085122685046,0.1467776381916519,0.16401007467599363,0.18207287002022687,0.20080939619629345,0.22003253536999073,0.23952665870127496,0.2590507715296993,0.27834280811171275,0.29712500305497436,0.3151102095673198,0.33200897997500833,0.3475371751511984,0.3614238298827435,0.3734189737539788,0.38330109417248515,0.39088393119995174,0.39602231339063276,0.39861677932381046,0.39861677932381046,0.39602231339063276,0.39088393119995174,0.38330109417248515,0.3734189737539788,0.3614238298827435,0.3475371751511984,0.33200897997500833,0.3151102095673198,0.29712500305497436,0.27834280811171275,0.2590507715296993,0.23952665870127496,0.22003253536999073,0.20080939619629345,0.18207287002022687,0.16401007467599363,0.1467776381916519,0.13050085122685046,0.11527387018442578,0.10116085346212436,0.08819788596894869,0.07639552978506675,0.06574183149645658,0.05620561850894386,0.04773992630685354,0.040285414616323394,0.033773651035270635,0.02813016413727844,0.023277192666084613,0.019136081713996122,0.01562929947685561,0.012682068349159798,0.010223621121960588,0.008188106526787245,0.0065151782522678905,0.00515030799236089,0.0040448663858864775,0.003156016316418044,0.0024464614683183815,0.0018840898101538117,0.001441547316537095,0.0010957722143120606,0.0008275147546819403,0.0006208622991664072,0.00046278461445970013,0.000342709872958592,0.00025213805615265854,0.0001842953023181513,0.00013383022576488537],\\\"showlegend\\\":true,\\\"name\\\":\\\"Standard normal distribution\\\",\\\"line\\\":{\\\"width\\\":1,\\\"dash\\\":\\\"solid\\\",\\\"color\\\":\\\"rgba(0, 154, 250, 1.000)\\\",\\\"shape\\\":\\\"linear\\\"},\\\"xaxis\\\":\\\"x\\\",\\\"x\\\":[-4.0,-3.919191919191919,-3.8383838383838382,-3.757575757575758,-3.676767676767677,-3.595959595959596,-3.515151515151515,-3.4343434343434343,-3.3535353535353534,-3.272727272727273,-3.191919191919192,-3.111111111111111,-3.0303030303030303,-2.9494949494949494,-2.8686868686868685,-2.787878787878788,-2.707070707070707,-2.6262626262626263,-2.5454545454545454,-2.4646464646464645,-2.3838383838383836,-2.303030303030303,-2.2222222222222223,-2.1414141414141414,-2.0606060606060606,-1.97979797979798,-1.898989898989899,-1.8181818181818181,-1.7373737373737375,-1.6565656565656566,-1.5757575757575757,-1.494949494949495,-1.4141414141414141,-1.3333333333333333,-1.2525252525252526,-1.1717171717171717,-1.0909090909090908,-1.0101010101010102,-0.9292929292929293,-0.8484848484848485,-0.7676767676767676,-0.6868686868686869,-0.6060606060606061,-0.5252525252525253,-0.4444444444444444,-0.36363636363636365,-0.2828282828282828,-0.20202020202020202,-0.12121212121212122,-0.04040404040404041,0.04040404040404041,0.12121212121212122,0.20202020202020202,0.2828282828282828,0.36363636363636365,0.4444444444444444,0.5252525252525253,0.6060606060606061,0.6868686868686869,0.7676767676767676,0.8484848484848485,0.9292929292929293,1.0101010101010102,1.0909090909090908,1.1717171717171717,1.2525252525252526,1.3333333333333333,1.4141414141414141,1.494949494949495,1.5757575757575757,1.6565656565656566,1.7373737373737375,1.8181818181818181,1.898989898989899,1.97979797979798,2.0606060606060606,2.1414141414141414,2.2222222222222223,2.303030303030303,2.3838383838383836,2.4646464646464645,2.5454545454545454,2.6262626262626263,2.707070707070707,2.787878787878788,2.8686868686868685,2.9494949494949494,3.0303030303030303,3.111111111111111,3.191919191919192,3.272727272727273,3.3535353535353534,3.4343434343434343,3.515151515151515,3.595959595959596,3.676767676767677,3.757575757575758,3.8383838383838382,3.919191919191919,4.0],\\\"mode\\\":\\\"lines\\\"}],  {\\\"yaxis\\\":{\\\"type\\\":\\\"-\\\",\\\"titlefont\\\":{\\\"size\\\":15,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"},\\\"title\\\":\\\"\\\",\\\"tickfont\\\":{\\\"size\\\":11,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"},\\\"tickmode\\\":\\\"array\\\",\\\"showgrid\\\":true,\\\"tickvals\\\":[0.1,0.2,0.30000000000000004],\\\"domain\\\":[0.057305336832895896,0.9415463692038495],\\\"ticktext\\\":[\\\"0.1\\\",\\\"0.2\\\",\\\"0.3\\\"],\\\"zeroline\\\":false,\\\"linecolor\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"tickcolor\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"anchor\\\":\\\"x\\\"},\\\"annotations\\\":[{\\\"text\\\":\\\"Density\\\",\\\"y\\\":1.0,\\\"xref\\\":\\\"paper\\\",\\\"font\\\":{\\\"size\\\":20,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"},\\\"xanchor\\\":\\\"center\\\",\\\"x\\\":0.526246719160105,\\\"yref\\\":\\\"paper\\\",\\\"showarrow\\\":false,\\\"yanchor\\\":\\\"top\\\",\\\"rotation\\\":0.0}],\\\"width\\\":600,\\\"plot_bgcolor\\\":\\\"rgba(255, 255, 255, 1.000)\\\",\\\"showlegend\\\":true,\\\"legend\\\":{\\\"bgcolor\\\":\\\"rgba(255, 255, 255, 1.000)\\\",\\\"font\\\":{\\\"size\\\":11,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"},\\\"bordercolor\\\":\\\"rgba(0, 0, 0, 1.000)\\\"},\\\"xaxis\\\":{\\\"type\\\":\\\"-\\\",\\\"titlefont\\\":{\\\"size\\\":15,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"},\\\"title\\\":\\\"\\\",\\\"tickfont\\\":{\\\"size\\\":11,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"},\\\"tickmode\\\":\\\"array\\\",\\\"showgrid\\\":true,\\\"tickvals\\\":[-4.0,-2.0,0.0,2.0,4.0],\\\"domain\\\":[0.05905511811023622,0.9934383202099738],\\\"ticktext\\\":[\\\"-4\\\",\\\"-2\\\",\\\"0\\\",\\\"2\\\",\\\"4\\\"],\\\"zeroline\\\":false,\\\"linecolor\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"tickcolor\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"anchor\\\":\\\"y\\\"},\\\"paper_bgcolor\\\":\\\"rgba(255, 255, 255, 1.000)\\\",\\\"margin\\\":{\\\"r\\\":0,\\\"l\\\":0,\\\"b\\\":0,\\\"t\\\":20},\\\"height\\\":400}, {showLink: false});\\n\",\n       \"\\n\",\n       \" </script>\\n\",\n       \"\\n\",\n       \"</body>\\n\",\n       \"</html>\\n\"\n      ]\n     },\n     \"execution_count\": 14,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"plot(Normal(0, 1), fill = (0.5, :blue), label = \\\"Standard normal distribution\\\",\\n\",\n    \"title = \\\"Density\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can also fit some data to a distribution.  In the example below we use the `norm1` array and fit it to the standard normal distribution.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Distributions.Normal{Float64}(μ=0.06142975618897083, σ=1.0143151453652441)\"\n      ]\n     },\n     \"execution_count\": 15,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"fit(Normal, norm1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"source\": [\n    \"We can plot other distributions as well.  Here is the $ {\\\\chi}^{2} $ distribution with different degrees of freedom.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<html>\\n\",\n       \"<head>\\n\",\n       \"     <script src=\\\"/Users/juanklopper/.julia/v0.4/PlotlyJS/deps/plotly-latest.min.js\\\"></script>\\n\",\n       \"</head>\\n\",\n       \"<body>\\n\",\n       \"     <div id=\\\"6c47470c-e768-4180-b431-8a2607ebdff5\\\" class=\\\"plotly-graph-div\\\"></div>\\n\",\n       \"\\n\",\n       \"<script>\\n\",\n       \"    window.PLOTLYENV=window.PLOTLYENV || {};\\n\",\n       \"    window.PLOTLYENV.BASE_URL=\\\"https://plot.ly\\\";\\n\",\n       \"   Plotly.newPlot('6c47470c-e768-4180-b431-8a2607ebdff5', [{\\\"type\\\":\\\"scatter\\\",\\\"yaxis\\\":\\\"y\\\",\\\"y\\\":[0.0,0.13445956417078794,0.1782524759580888,0.2046492109246787,0.22151764041330105,0.23216256703227098,0.23840298789291017,0.24138704755996926,0.24190163863389683,0.24051598499554117,0.23765752206570268,0.23365591580314365,0.22877045478459904,0.22320805473941685,0.21713562255633476,0.21068885543806512,0.20397869059648413,0.19709615084358353,0.19011606147122448,0.18309995203714804,0.17609835611474303,0.16915265752697498,0.16229658898441998,0.15555746021530098,0.14895717272047496,0.14251306419433107,0.13623861551783553,0.13014404581937902,0.12423681559774628,0.11852205376050434,0.11300292127404227,0.10768092168617462,0.10255616688317694,0.09762760494735849,0.09289321579218503,0.08835017929850876,0.08399501990484226,0.07982373097714368,0.07583188176915728,0.0720147093599168,0.06836719760275085,0.06488414482615376,0.061560221780299344,0.058390021115165384,0.055368099500331974,0.05248901334701662,0.049747348965369136,0.047137747880863716,0.04465492793985408,0.04229370075358011,0.04004898596014392,0.037915822723551394,0.03588937883647319,0.033964957747761454,0.03213800379600145,0.030404105895664495,0.028758999892073377,0.027198569774803283,0.025718847915827125,0.024316014478240958,0.022986396123413005,0.02172646412856934,0.020532832012891595,0.019402252757922515,0.018331615697249302,0.017317943140887835,0.01635838679136685,0.01545022400107892,0.014590853913905705,0.013777793528335233,0.01300867371418238,0.012281235210516907,0.01159332462843091,0.01094289047877566,0.010327979241914009,0.009746731493820653,0.009197378100476843,0.00867823649041108,0.00818770701340057,0.007724269391739763,0.007286479269077176,0.006872964860595935,0.006482423707247777,0.006113619535825335,0.005765379225858377,0.0054365898836308095,0.0051261960230253225,0.004833196852398441,0.004556643666262247,0.004295637340189602,0.00404932592706,0.003816902352516449,0.003597602207302711,0.0033907016339898297,0.0031955153054763616,0.003011394492552556,0.0028377252177522257,0.0026739264926726957,0.0025194486359203143,0.002373771668833586],\\\"showlegend\\\":true,\\\"name\\\":\\\"3 degrees of freedom\\\",\\\"line\\\":{\\\"width\\\":1,\\\"dash\\\":\\\"solid\\\",\\\"color\\\":\\\"rgba(0, 154, 250, 1.000)\\\",\\\"shape\\\":\\\"linear\\\"},\\\"xaxis\\\":\\\"x\\\",\\\"x\\\":[0.0,0.12927231283972435,0.2585446256794487,0.38781693851917304,0.5170892513588974,0.6463615641986218,0.7756338770383461,0.9049061898780705,1.0341785027177948,1.1634508155575192,1.2927231283972436,1.421995441236968,1.5512677540766922,1.6805400669164166,1.809812379756141,1.9390846925958654,2.0683570054355895,2.197629318275314,2.3269016311150383,2.456173943954763,2.585446256794487,2.7147185696342113,2.843990882473936,2.97326319531366,3.1025355081533843,3.231807820993109,3.361080133832833,3.4903524466725577,3.619624759512282,3.7488970723520065,3.8781693851917307,4.007441698031456,4.136714010871179,4.265986323710903,4.395258636550628,4.5245309493903525,4.653803262230077,4.783075575069801,4.912347887909526,5.04162020074925,5.170892513588974,5.3001648264286985,5.429437139268423,5.558709452108148,5.687981764947872,5.817254077787596,5.94652639062732,6.075798703467045,6.205071016306769,6.334343329146494,6.463615641986218,6.592887954825943,6.722160267665666,6.851432580505391,6.9807048933451155,7.1099772061848405,7.239249519024564,7.368521831864289,7.497794144704013,7.627066457543736,7.756338770383461,7.8856110832231865,8.014883396062912,8.144155708902634,8.273428021742358,8.402700334582084,8.531972647421806,8.661244960261532,8.790517273101257,8.91978958594098,9.049061898780705,9.17833421162043,9.307606524460153,9.436878837299878,9.566151150139602,9.695423462979328,9.824695775819052,9.953968088658776,10.0832404014985,10.212512714338224,10.341785027177949,10.471057340017673,10.600329652857397,10.729601965697123,10.858874278536845,10.988146591376571,11.117418904216295,11.246691217056018,11.375963529895744,11.505235842735468,11.634508155575192,11.763780468414918,11.89305278125464,12.022325094094365,12.15159740693409,12.280869719773813,12.410142032613537,12.539414345453263,12.668686658292987,12.797958971132713],\\\"mode\\\":\\\"lines\\\"},{\\\"type\\\":\\\"scatter\\\",\\\"yaxis\\\":\\\"y\\\",\\\"y\\\":[0.0,0.009156059034494157,0.023688736881464244,0.03980770306244866,0.05606134984906371,0.07166661572457672,0.08617416660558767,0.09933118188391465,0.11100993537893937,0.12116549474549626,0.1298086168086371,0.13698747997660318,0.14277495904154996,0.14725957071105286,0.15053894967945972,0.1527151218876775,0.1538910826458299,0.15416833763526838,0.15364516266659156,0.15241540407479778,0.15056768749890262,0.1481849354753117,0.1453441180590145,0.14211617830695517,0.138566087707866,0.13475299673164637,0.1307304534333753,0.12654666907009585,0.12224481439460663,0.11786333398771698,0.11343626890706932,0.10899358023818463,0.10456146796218142,0.10016268100479779,0.09581681548057332,0.09154059905506172,0.08734816006460278,0.08325128059543721,0.0792596331620546,0.07538100096288176,0.07162148194925425,0.0679856771368219,0.06447686372988089,0.061097153728944496,0.05784763875858505,0.05472852189303698,0.0517392372768234,0.04887855834129339,0.046144695409114714,0.04353538346046394,0.04104796080931196,0.038679439407784934,0.036426567462665135,0.03428588501195242,0.03225377307203428,0.03032649692821357,0.028500244103732433,0.026771157505490563,0.025135364208744623,0.02358900030846399,0.022128232231892662,0.020749274875357604,0.019448406898548636,0.01822198348141041,0.017066446822441204,0.01597833463256767,0.014954286855821316,0.01399105082673228,0.013085485054614559,0.01223456180667676,0.011435368645079026,0.010685109057592936,0.009981102307329105,0.009320782613997769,0.008701697767285558,0.008121507262089045,0.007577980035471949,0.0070689918762365436,0.006592522569853702,0.006146652834117996,0.005729561094221682,0.005339520139919361,0.004974893702029594,0.0046341329806399234,0.004315773153002896,0.004018429885187178,0.0037407958680409402,0.0034816373948963362,0.0032397909956598434,0.0030141601394608384,0.0028037120158420172,0.0026074744025416504,0.002424532626215484,0.0022540266209518825,0.0020951480881275107,0.0019471377600124393,0.0018092827685468216,0.0016809141198595068,0.0015614042743683305,0.0014501648316788485],\\\"showlegend\\\":true,\\\"name\\\":\\\"5 degrees of feedom\\\",\\\"line\\\":{\\\"width\\\":1,\\\"dash\\\":\\\"solid\\\",\\\"color\\\":\\\"rgba(227, 111, 71, 1.000)\\\",\\\"shape\\\":\\\"linear\\\"},\\\"xaxis\\\":\\\"x\\\",\\\"x\\\":[0.0,0.17827384485528808,0.35654768971057615,0.5348215345658642,0.7130953794211523,0.8913692242764403,1.0696430691317285,1.2479169139870165,1.4261907588423046,1.6044646036975927,1.7827384485528806,1.9610122934081688,2.139286138263457,2.317559983118745,2.495833827974033,2.674107672829321,2.8523815176846092,3.0306553625398975,3.2089292073951854,3.3872030522504737,3.565476897105761,3.7437507419610494,3.9220245868163377,4.100298431671626,4.278572276526914,4.456846121382203,4.63511996623749,4.813393811092778,4.991667655948066,5.169941500803354,5.348215345658642,5.526489190513931,5.7047630353692185,5.883036880224506,6.061310725079795,6.239584569935083,6.417858414790371,6.5961322596456595,6.774406104500947,6.952679949356235,7.130953794211522,7.309227639066812,7.487501483922099,7.665775328777387,7.844049173632675,8.022323018487963,8.200596863343252,8.37887070819854,8.557144553053828,8.735418397909115,8.913692242764405,9.091966087619692,9.27023993247498,9.448513777330268,9.626787622185557,9.805061467040844,9.983335311896132,10.161609156751421,10.339883001606708,10.518156846461997,10.696430691317284,10.874704536172572,11.052978381027861,11.231252225883148,11.409526070738437,11.587799915593726,11.766073760449013,11.944347605304301,12.12262145015959,12.300895295014877,12.479169139870166,12.657442984725455,12.835716829580742,13.01399067443603,13.192264519291319,13.370538364146606,13.548812209001895,13.727086053857184,13.90535989871247,14.08363374356776,14.261907588423044,14.440181433278335,14.618455278133624,14.796729122988909,14.975002967844198,15.153276812699488,15.331550657554773,15.509824502410062,15.68809834726535,15.866372192120638,16.044646036975927,16.222919881831217,16.401193726686504,16.57946757154179,16.75774141639708,16.93601526125237,17.114289106107655,17.292562950962946,17.47083679581823,17.64911064067352],\\\"mode\\\":\\\"lines\\\"},{\\\"type\\\":\\\"scatter\\\",\\\"yaxis\\\":\\\"y\\\",\\\"y\\\":[0.0,7.122466954510167e-6,9.898730787305785e-5,0.00043528493499506236,0.0011949718385546998,0.002534117861580791,0.004564370413969032,0.0073450901010523335,0.010884137081632765,0.015143741235628847,0.02004897756232572,0.02549717459572054,0.031367173696587,0.03752778236284975,0.04384506540151326,0.0501883251750848,0.056434760329255776,0.06247287998953715,0.06820480155135691,0.07354758561153825,0.0784337693523353,0.08281125577108714,0.08664270492997124,0.08990455803958608,0.0925858079171373,0.09468661170621924,0.09621682472185575,0.09719451852062524,0.09764453214390066,0.09759709309919612,0.09708653405200704,0.09615012233051348,0.0948270120742796,0.09315732303025896,0.09118134544546445,0.08893886705393769,0.08646861564048175,0.08380780893041702,0.08099180246282024,0.07805382552918533,0.07502479509078028,0.07193319773204981,0.06880503008446935,0.06566378869871176,0.06253050099810327,0.05942378966881219,0.05635996359683604,0.05335312922120725,0.050415316916126676,0.04755661772665531,0.04478532645242429,0.04210808769451498,0.03953004204816046,0.03705497013649326,0.034685432638290215,0.032422904866972316,0.030267904811425037,0.028220113854601436,0.02627848964690016,0.024441370831739,0.022706573504442502,0.02107147943636604,0.01953311621780938,0.018088229569285203,0.016733348144420724,0.015464841202276798,0.014278969564979614,0.013171930300843928,0.012139895585908878,0.011179046200056563,0.010285600109438535,0.009455836576369602,0.008686116222530375,0.007972897452421822,0.0073127496225365105,0.006702363318497791,0.006138558078171449,0.005618287874055934,0.005138644643579618,0.004696860131653006,0.004290306286237017,0.003916494425021233,0.003573073369723538,0.0032578267241418755,0.002968669452982615,0.0027036439006985296,0.0024609153731024744,0.0022387673893695076,0.0020355966981705914,0.0018499081390511815,0.0016803094187247103,0.0015255058616328344,0.0013842951848649686,0.0012555623392606098,0.0011382744511685315,0.0010314758928374496,0.0009342835036940888,0.0008458819797597055,0.000765519444101117,0.0006925032074455443],\\\"showlegend\\\":true,\\\"name\\\":\\\"10 degrees of freedom\\\",\\\"line\\\":{\\\"width\\\":1,\\\"dash\\\":\\\"solid\\\",\\\"color\\\":\\\"rgba(62, 164, 78, 1.000)\\\",\\\"shape\\\":\\\"linear\\\"},\\\"xaxis\\\":\\\"x\\\",\\\"x\\\":[0.0,0.28170246282826583,0.5634049256565317,0.8451073884847975,1.1268098513130633,1.4085123141413292,1.690214776969595,1.9719172397978608,2.2536197026261267,2.5353221654543927,2.8170246282826583,3.0987270911109244,3.38042955393919,3.6621320167674556,3.9438344795957216,4.225536942423988,4.507239405252253,4.788941868080519,5.070644330908785,5.352346793737051,5.634049256565317,5.915751719393582,6.197454182221849,6.479156645050114,6.76085910787838,7.042561570706646,7.324264033534911,7.605966496363178,7.887668959191443,8.16937142201971,8.451073884847975,8.732776347676241,9.014478810504507,9.296181273332772,9.577883736161038,9.859586198989305,10.14128866181757,10.422991124645836,10.704693587474102,10.986396050302368,11.268098513130633,11.5498009759589,11.831503438787164,12.113205901615432,12.394908364443697,12.676610827271963,12.958313290100229,13.240015752928494,13.52171821575676,13.803420678585027,14.085123141413291,14.366825604241559,14.648528067069822,14.93023052989809,15.211932992726355,15.493635455554621,15.775337918382887,16.057040381211152,16.33874284403942,16.620445306867683,16.90214776969595,17.183850232524215,17.465552695352482,17.747255158180746,18.028957621009013,18.31066008383728,18.592362546665544,18.874065009493812,19.155767472322076,19.437469935150343,19.71917239797861,20.000874860806874,20.28257732363514,20.56427978646341,20.845982249291673,21.127684712119937,21.409387174948204,21.691089637776468,21.972792100604735,22.254494563433003,22.536197026261267,22.81789948908953,23.0996019519178,23.381304414746065,23.66300687757433,23.9447093404026,24.226411803230864,24.508114266059128,24.789816728887395,25.071519191715662,25.353221654543926,25.63492411737219,25.916626580200457,26.198329043028725,26.48003150585699,26.761733968685256,27.04343643151352,27.325138894341784,27.606841357170055,27.88854381999832],\\\"mode\\\":\\\"lines\\\"}],  {\\\"yaxis\\\":{\\\"type\\\":\\\"-\\\",\\\"titlefont\\\":{\\\"size\\\":15,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"},\\\"title\\\":\\\"\\\",\\\"tickfont\\\":{\\\"size\\\":11,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"},\\\"tickmode\\\":\\\"array\\\",\\\"showgrid\\\":true,\\\"tickvals\\\":[0.0,0.05,0.1,0.15000000000000002,0.2],\\\"domain\\\":[0.057305336832895896,0.9901574803149605],\\\"ticktext\\\":[\\\"0.00\\\",\\\"0.05\\\",\\\"0.10\\\",\\\"0.15\\\",\\\"0.20\\\"],\\\"zeroline\\\":false,\\\"linecolor\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"tickcolor\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"anchor\\\":\\\"x\\\"},\\\"annotations\\\":[],\\\"width\\\":600,\\\"plot_bgcolor\\\":\\\"rgba(255, 255, 255, 1.000)\\\",\\\"showlegend\\\":true,\\\"legend\\\":{\\\"bgcolor\\\":\\\"rgba(255, 255, 255, 1.000)\\\",\\\"font\\\":{\\\"size\\\":11,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"},\\\"bordercolor\\\":\\\"rgba(0, 0, 0, 1.000)\\\"},\\\"xaxis\\\":{\\\"type\\\":\\\"-\\\",\\\"titlefont\\\":{\\\"size\\\":15,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"},\\\"title\\\":\\\"\\\",\\\"tickfont\\\":{\\\"size\\\":11,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"},\\\"tickmode\\\":\\\"array\\\",\\\"showgrid\\\":true,\\\"tickvals\\\":[0.0,10.0,20.0],\\\"domain\\\":[0.05905511811023622,0.9934383202099738],\\\"ticktext\\\":[\\\"0\\\",\\\"10\\\",\\\"20\\\"],\\\"zeroline\\\":false,\\\"linecolor\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"tickcolor\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"anchor\\\":\\\"y\\\"},\\\"paper_bgcolor\\\":\\\"rgba(255, 255, 255, 1.000)\\\",\\\"margin\\\":{\\\"r\\\":0,\\\"l\\\":0,\\\"b\\\":0,\\\"t\\\":20},\\\"height\\\":400}, {showLink: false});\\n\",\n       \"\\n\",\n       \" </script>\\n\",\n       \"\\n\",\n       \"</body>\\n\",\n       \"</html>\\n\"\n      ]\n     },\n     \"execution_count\": 16,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"plot(Chisq(3), fill = (0.25, :blue), label = \\\"3 degrees of freedom\\\")\\n\",\n    \"plot!(Chisq(5), fill = (0.25, :orange), label = \\\"5 degrees of feedom\\\")\\n\",\n    \"plot!(Chisq(10), fill = (0.25, :deepskyblue), label = \\\"10 degrees of freedom\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The exponential distribution with scale parameter $ \\\\theta $.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<html>\\n\",\n       \"<head>\\n\",\n       \"     <script src=\\\"/Users/juanklopper/.julia/v0.4/PlotlyJS/deps/plotly-latest.min.js\\\"></script>\\n\",\n       \"</head>\\n\",\n       \"<body>\\n\",\n       \"     <div id=\\\"a5318f0d-6205-491d-9da2-9abd066ae034\\\" class=\\\"plotly-graph-div\\\"></div>\\n\",\n       \"\\n\",\n       \"<script>\\n\",\n       \"    window.PLOTLYENV=window.PLOTLYENV || {};\\n\",\n       \"    window.PLOTLYENV.BASE_URL=\\\"https://plot.ly\\\";\\n\",\n       \"   Plotly.newPlot('a5318f0d-6205-491d-9da2-9abd066ae034', [{\\\"type\\\":\\\"scatter\\\",\\\"yaxis\\\":\\\"y\\\",\\\"y\\\":[0.5,0.475374563448467,0.4519619511476412,0.42970243044425466,0.4085392105703657,0.38841829775293785,0.36928835745939903,0.35110058342772654,0.33380857314691514,0.31736820947014094,0.3017375480585798,0.28687671036871637,0.2727477819101217,0.25931471551412366,0.2465432393665799,0.23440076957011766,0.22285632701275881,0.21188045833083807,0.2014451607645665,0.19152381071452412,0.18209109581680746,0.17312295036353567,0.16459649390395278,0.15648997286947966,0.14878270507378266,0.14145502694626294,0.13448824336434176,0.12786457995655032,0.12156713775473342,0.1155798500796721,0.1098874415501268,0.10447538911072092,0.09932988497923538,0.09443780141878091,0.089786657244972,0.0853645859826514,0.08116030559092409,0.07716308967925943,0.07336274014122574,0.06974956113603702,0.06631433435153151,0.06304829548546997,0.059943111885150474,0.05699086128829204,0.054184011610947935,0.05151540173088208,0.04897822321738096,0.04656600296088809,0.04427258665814439,0.042092123110699625,0.04001904929673594,0.03804807617811706,0.03617417520645283,0.03439256549375174,0.032698701614930104,0.03108826201105816,0.029557137963756665,0.02810142311261387,0.02671740348887896,0.02540154804000478,0.024150499620865067,0.022961066428662198,0.021830213859673084,0.020755056767057543,0.01973285209997626,0.01876099190523876,0.017836996673626197,0.01695850901391363,0.016123287638452166,0.015329201644966527,0.01457422507997897,0.013856431769989403,0.013173990407224369,0.01252515987741715,0.011908284817698865,0.011321791393267212,0.010764183282058026,0.010234037857175242,0.00973000255733953,0.009250791436095494,0.008795181880973425,0.008362011494235221,0.007950175127246266,0.007558622060907105,0.007186353324951336,0.006832419149270358,0.006495916540762689,0.006175986979525481,0.00587181422851068,0.005582622251057526,0.005307673230988337,0.005046265690216392,0.004797732699063191,0.0045614401747191965,0.004336785263506876,0.004123194802818654,0.00392012385880581,0.0037270543360874648,0.0035434936559325873,0.0033689734995427335],\\\"showlegend\\\":true,\\\"name\\\":\\\"Scale parameter 2\\\",\\\"line\\\":{\\\"width\\\":1,\\\"dash\\\":\\\"solid\\\",\\\"color\\\":\\\"rgba(0, 154, 250, 1.000)\\\",\\\"shape\\\":\\\"linear\\\"},\\\"xaxis\\\":\\\"x\\\",\\\"x\\\":[0.0,0.10101010101010101,0.20202020202020202,0.30303030303030304,0.40404040404040403,0.5050505050505051,0.6060606060606061,0.7070707070707071,0.8080808080808081,0.9090909090909091,1.0101010101010102,1.1111111111111112,1.2121212121212122,1.3131313131313131,1.4141414141414141,1.5151515151515151,1.6161616161616161,1.7171717171717171,1.8181818181818181,1.9191919191919191,2.0202020202020203,2.121212121212121,2.2222222222222223,2.323232323232323,2.4242424242424243,2.525252525252525,2.6262626262626263,2.727272727272727,2.8282828282828283,2.9292929292929295,3.0303030303030303,3.1313131313131315,3.2323232323232323,3.3333333333333335,3.4343434343434343,3.5353535353535355,3.6363636363636362,3.7373737373737375,3.8383838383838382,3.9393939393939394,4.040404040404041,4.141414141414141,4.242424242424242,4.343434343434343,4.444444444444445,4.545454545454546,4.646464646464646,4.747474747474747,4.848484848484849,4.94949494949495,5.05050505050505,5.151515151515151,5.252525252525253,5.353535353535354,5.454545454545454,5.555555555555555,5.656565656565657,5.757575757575758,5.858585858585859,5.959595959595959,6.0606060606060606,6.161616161616162,6.262626262626263,6.363636363636363,6.4646464646464645,6.565656565656566,6.666666666666667,6.767676767676767,6.8686868686868685,6.96969696969697,7.070707070707071,7.171717171717172,7.2727272727272725,7.373737373737374,7.474747474747475,7.575757575757576,7.6767676767676765,7.777777777777778,7.878787878787879,7.97979797979798,8.080808080808081,8.181818181818182,8.282828282828282,8.383838383838384,8.484848484848484,8.585858585858587,8.686868686868687,8.787878787878787,8.88888888888889,8.98989898989899,9.090909090909092,9.191919191919192,9.292929292929292,9.393939393939394,9.494949494949495,9.595959595959595,9.696969696969697,9.797979797979798,9.8989898989899,10.0],\\\"mode\\\":\\\"lines\\\"},{\\\"type\\\":\\\"scatter\\\",\\\"yaxis\\\":\\\"y\\\",\\\"y\\\":[0.25,0.2376872817242335,0.2259809755738206,0.21485121522212733,0.20426960528518284,0.19420914887646892,0.18464417872969952,0.17555029171386327,0.16690428657345757,0.15868410473507047,0.1508687740292899,0.14343835518435818,0.13637389095506086,0.12965735775706183,0.12327161968328995,0.11720038478505883,0.11142816350637941,0.10594022916541904,0.10072258038228325,0.09576190535726206,0.09104554790840373,0.08656147518176784,0.08229824695197639,0.07824498643473983,0.07439135253689133,0.07072751347313147,0.06724412168217088,0.06393228997827516,0.06078356887736671,0.05778992503983605,0.0549437207750634,0.05223769455536046,0.04966494248961769,0.04721890070939046,0.044893328622486,0.0426822929913257,0.040580152795462045,0.038581544839629715,0.03668137007061287,0.03487478056801851,0.03315716717576576,0.03152414774273499,0.029971555942575237,0.02849543064414602,0.027092005805473968,0.02575770086544104,0.02448911160869048,0.023283001480444043,0.022136293329072194,0.021046061555349813,0.02000952464836797,0.01902403808905853,0.018087087603226415,0.01719628274687587,0.016349350807465052,0.01554413100552908,0.014778568981878333,0.014050711556306935,0.01335870174443948,0.01270077402000239,0.012075249810432533,0.011480533214331099,0.010915106929836542,0.010377528383528772,0.00986642604998813,0.00938049595261938,0.008918498336813099,0.008479254506956815,0.008061643819226083,0.0076646008224832635,0.007287112539989485,0.006928215884994701,0.006586995203612184,0.006262579938708575,0.0059541424088494325,0.005660895696633606,0.005382091641029013,0.005117018928587621,0.004865001278669765,0.004625395718047747,0.004397590940486713,0.004181005747117611,0.003975087563623133,0.0037793110304535525,0.003593176662475668,0.003416209574635179,0.0032479582703813445,0.0030879934897627406,0.00293590711425534,0.002791311125528763,0.0026538366154941683,0.002523132845108196,0.0023988663495315954,0.0022807200873595983,0.002168392631753438,0.002061597401409327,0.001960061929402905,0.0018635271680437324,0.0017717468279662937,0.0016844867497713668],\\\"showlegend\\\":true,\\\"name\\\":\\\"Scale parameter 4\\\",\\\"line\\\":{\\\"width\\\":1,\\\"dash\\\":\\\"solid\\\",\\\"color\\\":\\\"rgba(227, 111, 71, 1.000)\\\",\\\"shape\\\":\\\"linear\\\"},\\\"xaxis\\\":\\\"x\\\",\\\"x\\\":[0.0,0.20202020202020202,0.40404040404040403,0.6060606060606061,0.8080808080808081,1.0101010101010102,1.2121212121212122,1.4141414141414141,1.6161616161616161,1.8181818181818181,2.0202020202020203,2.2222222222222223,2.4242424242424243,2.6262626262626263,2.8282828282828283,3.0303030303030303,3.2323232323232323,3.4343434343434343,3.6363636363636362,3.8383838383838382,4.040404040404041,4.242424242424242,4.444444444444445,4.646464646464646,4.848484848484849,5.05050505050505,5.252525252525253,5.454545454545454,5.656565656565657,5.858585858585859,6.0606060606060606,6.262626262626263,6.4646464646464645,6.666666666666667,6.8686868686868685,7.070707070707071,7.2727272727272725,7.474747474747475,7.6767676767676765,7.878787878787879,8.080808080808081,8.282828282828282,8.484848484848484,8.686868686868687,8.88888888888889,9.090909090909092,9.292929292929292,9.494949494949495,9.696969696969697,9.8989898989899,10.1010101010101,10.303030303030303,10.505050505050505,10.707070707070708,10.909090909090908,11.11111111111111,11.313131313131313,11.515151515151516,11.717171717171718,11.919191919191919,12.121212121212121,12.323232323232324,12.525252525252526,12.727272727272727,12.929292929292929,13.131313131313131,13.333333333333334,13.535353535353535,13.737373737373737,13.93939393939394,14.141414141414142,14.343434343434344,14.545454545454545,14.747474747474747,14.94949494949495,15.151515151515152,15.353535353535353,15.555555555555555,15.757575757575758,15.95959595959596,16.161616161616163,16.363636363636363,16.565656565656564,16.767676767676768,16.96969696969697,17.171717171717173,17.373737373737374,17.575757575757574,17.77777777777778,17.97979797979798,18.181818181818183,18.383838383838384,18.585858585858585,18.78787878787879,18.98989898989899,19.19191919191919,19.393939393939394,19.595959595959595,19.7979797979798,20.0],\\\"mode\\\":\\\"lines\\\"},{\\\"type\\\":\\\"scatter\\\",\\\"yaxis\\\":\\\"y\\\",\\\"y\\\":[0.16666666666666666,0.15845818781615567,0.1506539837158804,0.14323414348141822,0.13617973685678855,0.12947276591764595,0.12309611915313301,0.11703352780924217,0.11126952438230504,0.10578940315671365,0.10057918268619326,0.09562557012290546,0.09091592730337392,0.08643823850470789,0.08218107978885997,0.07813358985670588,0.07428544233758627,0.07062681944361268,0.06714838692152217,0.06384127023817471,0.06069703193893583,0.05770765012117855,0.05486549796798426,0.05216332428982655,0.04959423502459424,0.04715167564875431,0.044829414454780586,0.04262152665218344,0.04052237925157781,0.03852661669322404,0.03662914718337559,0.03482512970357364,0.03310996165974513,0.03147926713959365,0.029928885748324002,0.02845486199421714,0.0270534351969747,0.025721029893086476,0.02445424671374191,0.02324985371201234,0.02210477811717718,0.021016098495156656,0.019981037295050158,0.018996953762764012,0.01806133720364931,0.0171718005769607,0.01632607440579365,0.015522000986962695,0.014757528886048137,0.014030707703566549,0.01333968309891198,0.012682692059372353,0.012058058402150943,0.011464188497917246,0.010899567204976701,0.010362754003686053,0.009852379321252226,0.009367141037537956,0.008905801162959656,0.008467182680001593,0.008050166540288355,0.007653688809554068,0.007276737953224361,0.0069183522556858475,0.006577617366658753,0.006253663968412922,0.005945665557875401,0.005652836337971206,0.005374429212817389,0.005109733881655509,0.004858075026659659,0.004618810589996469,0.004391330135741458,0.004175053292472383,0.003969428272566288,0.003773930464422405,0.003588061094019342,0.003411345952391749,0.0032433341857798434,0.0030835971453651656,0.0029317272936578106,0.0027873371647450735,0.0026500583757487553,0.002519540686969035,0.002395451108317112,0.002277473049756788,0.002165305513587563,0.0020586623265084936,0.00195727140950356,0.0018608740836858419,0.0017692244103294469,0.0016820885634054655,0.0015992442330210635,0.001520480058239732,0.0014455950878356253,0.0013743982676062178,0.0013067079529352709,0.0012423514453624883,0.00118116455197753,0.0011229911665142445],\\\"showlegend\\\":true,\\\"name\\\":\\\"Scale parameter 6\\\",\\\"line\\\":{\\\"width\\\":1,\\\"dash\\\":\\\"solid\\\",\\\"color\\\":\\\"rgba(62, 164, 78, 1.000)\\\",\\\"shape\\\":\\\"linear\\\"},\\\"xaxis\\\":\\\"x\\\",\\\"x\\\":[0.0,0.30303030303030304,0.6060606060606061,0.9090909090909091,1.2121212121212122,1.5151515151515151,1.8181818181818181,2.121212121212121,2.4242424242424243,2.727272727272727,3.0303030303030303,3.3333333333333335,3.6363636363636362,3.9393939393939394,4.242424242424242,4.545454545454546,4.848484848484849,5.151515151515151,5.454545454545454,5.757575757575758,6.0606060606060606,6.363636363636363,6.666666666666667,6.96969696969697,7.2727272727272725,7.575757575757576,7.878787878787879,8.181818181818182,8.484848484848484,8.787878787878787,9.090909090909092,9.393939393939394,9.696969696969697,10.0,10.303030303030303,10.606060606060606,10.909090909090908,11.212121212121213,11.515151515151516,11.818181818181818,12.121212121212121,12.424242424242424,12.727272727272727,13.030303030303031,13.333333333333334,13.636363636363637,13.93939393939394,14.242424242424242,14.545454545454545,14.848484848484848,15.151515151515152,15.454545454545455,15.757575757575758,16.060606060606062,16.363636363636363,16.666666666666668,16.96969696969697,17.272727272727273,17.575757575757574,17.87878787878788,18.181818181818183,18.484848484848484,18.78787878787879,19.09090909090909,19.393939393939394,19.696969696969695,20.0,20.303030303030305,20.606060606060606,20.90909090909091,21.21212121212121,21.515151515151516,21.818181818181817,22.12121212121212,22.424242424242426,22.727272727272727,23.03030303030303,23.333333333333332,23.636363636363637,23.939393939393938,24.242424242424242,24.545454545454547,24.848484848484848,25.151515151515152,25.454545454545453,25.757575757575758,26.060606060606062,26.363636363636363,26.666666666666668,26.96969696969697,27.272727272727273,27.575757575757574,27.87878787878788,28.181818181818183,28.484848484848484,28.78787878787879,29.09090909090909,29.393939393939394,29.696969696969695,30.0],\\\"mode\\\":\\\"lines\\\"}],  {\\\"yaxis\\\":{\\\"type\\\":\\\"-\\\",\\\"titlefont\\\":{\\\"size\\\":15,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"},\\\"title\\\":\\\"\\\",\\\"tickfont\\\":{\\\"size\\\":11,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"},\\\"tickmode\\\":\\\"array\\\",\\\"showgrid\\\":true,\\\"tickvals\\\":[0.1,0.2,0.30000000000000004,0.4,0.5],\\\"domain\\\":[0.057305336832895896,0.9901574803149605],\\\"ticktext\\\":[\\\"0.1\\\",\\\"0.2\\\",\\\"0.3\\\",\\\"0.4\\\",\\\"0.5\\\"],\\\"zeroline\\\":false,\\\"linecolor\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"tickcolor\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"anchor\\\":\\\"x\\\"},\\\"annotations\\\":[],\\\"width\\\":600,\\\"plot_bgcolor\\\":\\\"rgba(255, 255, 255, 1.000)\\\",\\\"showlegend\\\":true,\\\"legend\\\":{\\\"bgcolor\\\":\\\"rgba(255, 255, 255, 1.000)\\\",\\\"font\\\":{\\\"size\\\":11,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"},\\\"bordercolor\\\":\\\"rgba(0, 0, 0, 1.000)\\\"},\\\"xaxis\\\":{\\\"type\\\":\\\"-\\\",\\\"titlefont\\\":{\\\"size\\\":15,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"},\\\"title\\\":\\\"\\\",\\\"tickfont\\\":{\\\"size\\\":11,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"},\\\"tickmode\\\":\\\"array\\\",\\\"showgrid\\\":true,\\\"tickvals\\\":[0.0,5.0,10.0,15.0,20.0,25.0,30.0],\\\"domain\\\":[0.05905511811023622,0.9934383202099738],\\\"ticktext\\\":[\\\"0\\\",\\\"5\\\",\\\"10\\\",\\\"15\\\",\\\"20\\\",\\\"25\\\",\\\"30\\\"],\\\"zeroline\\\":false,\\\"linecolor\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"tickcolor\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"anchor\\\":\\\"y\\\"},\\\"paper_bgcolor\\\":\\\"rgba(255, 255, 255, 1.000)\\\",\\\"margin\\\":{\\\"r\\\":0,\\\"l\\\":0,\\\"b\\\":0,\\\"t\\\":20},\\\"height\\\":400}, {showLink: false});\\n\",\n       \"\\n\",\n       \" </script>\\n\",\n       \"\\n\",\n       \"</body>\\n\",\n       \"</html>\\n\"\n      ]\n     },\n     \"execution_count\": 17,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"plot(Exponential(2), fill = (0.25, :blue), label = \\\"Scale parameter 2\\\")\\n\",\n    \"plot!(Exponential(4), fill = (0.25, :orange), label = \\\"Scale parameter 4\\\")\\n\",\n    \"plot!(Exponential(6), fill = (0.25, :deepskyblue), label = \\\"Scale parameter 6\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>Comparing samples</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The reason for the detour to a quick peek into the distributions package, is that we want to create arrays of data point values or elements that are picked at random, each drawn from a specific distribution.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"So, imagine that we compare the results of two sets of experiments or observed outcomes.  These can take on many, many form.  We have seen data from an Ebola epidemic, but we can consider a lot more.  Let's keep it simple and consider the examination results of a particular course.  Imagine that we have the results of two consecutive years.  Our aim is to learn how to use Julia.  So, we don't need actual results.  We can simply simulate some results.  You can well imagine that these values can be stored as arrays!\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"If $ 100 $ students take the examination each year, we can use the `rand()` function to generate random values.  As argument, though, we pass a specific distribution.  We'll use the normal distribution with a mean and a standard deviation.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"year1 = rand(Normal(67, 10), 100)\\n\",\n    \"year2 = rand(Normal(71, 15), 100);\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Our aim will be to compare these.  The average scored for each year differs.  Are they statistically different, though?  This is not a course in statistics, but using Julia, we'll see how easy it is to tell us if there is such a difference.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"For now, let's plot the examination results as theoretical distributions.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<html>\\n\",\n       \"<head>\\n\",\n       \"     <script src=\\\"/Users/juanklopper/.julia/v0.4/PlotlyJS/deps/plotly-latest.min.js\\\"></script>\\n\",\n       \"</head>\\n\",\n       \"<body>\\n\",\n       \"     <div id=\\\"4d1f87ea-f1c9-45f1-8a99-382fb1836dc6\\\" class=\\\"plotly-graph-div\\\"></div>\\n\",\n       \"\\n\",\n       \"<script>\\n\",\n       \"    window.PLOTLYENV=window.PLOTLYENV || {};\\n\",\n       \"    window.PLOTLYENV.BASE_URL=\\\"https://plot.ly\\\";\\n\",\n       \"   Plotly.newPlot('4d1f87ea-f1c9-45f1-8a99-382fb1836dc6', [{\\\"type\\\":\\\"scatter\\\",\\\"yaxis\\\":\\\"y\\\",\\\"y\\\":[1.3383022576488537e-5,1.842953023181513e-5,2.5213805615265854e-5,3.42709872958592e-5,4.627846144597001e-5,6.208622991664071e-5,8.275147546819388e-5,0.00010957722143120589,0.00014415473165370923,0.00018840898101538152,0.00024464614683183836,0.0003156016316418038,0.00040448663858864774,0.0005150307992360891,0.000651517825226789,0.0008188106526787256,0.0010223621121960588,0.0012682068349159797,0.001562929947685561,0.0019136081713996122,0.002327719266608458,0.0028130164137278443,0.0033773651035270635,0.0040285414616323435,0.00477399263068535,0.005620561850894386,0.006574183149645659,0.007639552978506679,0.008819788596894867,0.010116085346212432,0.011527387018442577,0.01305008512268505,0.014677763819165196,0.01640100746759936,0.018207287002022687,0.020080939619629347,0.022003253536999078,0.023952665870127492,0.025905077152969923,0.02783428081117128,0.029712500305497436,0.03151102095673197,0.03320089799750083,0.03475371751511984,0.03614238298827435,0.037341897375397885,0.03833010941724852,0.03908839311999517,0.03960223133906328,0.03986167793238105,0.03986167793238105,0.03960223133906328,0.03908839311999517,0.03833010941724852,0.03734189737539788,0.03614238298827435,0.03475371751511985,0.03320089799750083,0.031511020956731986,0.02971250030549742,0.02783428081117128,0.02590507715296994,0.023952665870127492,0.022003253536999078,0.020080939619629326,0.018207287002022687,0.016401007467599375,0.01467776381916518,0.01305008512268505,0.01152738701844259,0.010116085346212432,0.008819788596894878,0.007639552978506665,0.006574183149645659,0.005620561850894394,0.00477399263068535,0.0040285414616323435,0.003377365103527061,0.0028130164137278443,0.0023277192666084634,0.0019136081713996105,0.001562929947685561,0.0012682068349159825,0.0010223621121960588,0.0008188106526787256,0.0006515178252267873,0.0005150307992360891,0.0004044866385886481,0.0003156016316418038,0.00024464614683183836,0.000188408981015381,0.00014415473165370923,0.00010957722143120615,8.275147546819388e-5,6.208622991664071e-5,4.627846144597018e-5,3.42709872958592e-5,2.5213805615265854e-5,1.8429530231815095e-5,1.3383022576488537e-5],\\\"showlegend\\\":true,\\\"name\\\":\\\"Year 1\\\",\\\"line\\\":{\\\"width\\\":1,\\\"dash\\\":\\\"solid\\\",\\\"color\\\":\\\"rgba(0, 154, 250, 1.000)\\\",\\\"shape\\\":\\\"linear\\\"},\\\"xaxis\\\":\\\"x\\\",\\\"x\\\":[27.0,27.80808080808081,28.616161616161616,29.424242424242426,30.232323232323232,31.04040404040404,31.848484848484848,32.656565656565654,33.464646464646464,34.27272727272727,35.08080808080808,35.888888888888886,36.696969696969695,37.505050505050505,38.313131313131315,39.121212121212125,39.92929292929293,40.73737373737374,41.54545454545455,42.35353535353536,43.16161616161616,43.96969696969697,44.77777777777778,45.58585858585859,46.39393939393939,47.2020202020202,48.01010101010101,48.81818181818182,49.62626262626262,50.43434343434343,51.24242424242424,52.05050505050505,52.85858585858586,53.666666666666664,54.474747474747474,55.282828282828284,56.09090909090909,56.898989898989896,57.707070707070706,58.515151515151516,59.323232323232325,60.13131313131313,60.93939393939394,61.74747474747475,62.55555555555556,63.36363636363637,64.17171717171718,64.97979797979798,65.78787878787878,66.5959595959596,67.4040404040404,68.21212121212122,69.02020202020202,69.82828282828282,70.63636363636364,71.44444444444444,72.25252525252525,73.06060606060606,73.86868686868686,74.67676767676768,75.48484848484848,76.29292929292929,77.1010101010101,77.9090909090909,78.71717171717172,79.52525252525253,80.33333333333333,81.14141414141415,81.94949494949495,82.75757575757575,83.56565656565657,84.37373737373737,85.18181818181819,85.98989898989899,86.79797979797979,87.60606060606061,88.41414141414141,89.22222222222223,90.03030303030303,90.83838383838383,91.64646464646465,92.45454545454545,93.26262626262626,94.07070707070707,94.87878787878788,95.68686868686869,96.4949494949495,97.3030303030303,98.11111111111111,98.91919191919192,99.72727272727273,100.53535353535354,101.34343434343434,102.15151515151516,102.95959595959596,103.76767676767676,104.57575757575758,105.38383838383838,106.1919191919192,107.0],\\\"mode\\\":\\\"lines\\\"},{\\\"type\\\":\\\"scatter\\\",\\\"yaxis\\\":\\\"y\\\",\\\"y\\\":[8.922015050992357e-6,1.2286353487876752e-5,1.680920374351054e-5,2.2847324863906172e-5,3.085230763064667e-5,4.139081994442714e-5,5.516765031212936e-5,7.305148095413737e-5,9.610315443580616e-5,0.00012560598734358744,0.00016309743122122557,0.00021040108776120253,0.0002696577590590985,0.0003433538661573927,0.0004343452168178589,0.0005458737684524838,0.0006815747414640392,0.000845471223277321,0.0010419532984570407,0.0012757387809330747,0.001551812844405641,0.0018753442758185628,0.002251576735684709,0.002685694307754893,0.0031826617537902358,0.003747041233929592,0.004382788766430439,0.00509303531900445,0.005879859064596579,0.006744056897474955,0.007684924678961721,0.0087000567484567,0.009785175879443461,0.010934004978399576,0.012138191334681792,0.013387293079752892,0.014668835691332711,0.015968443913418333,0.01727005143531329,0.01855618720744752,0.019808333536998284,0.021007347304487986,0.02213393199833389,0.023169145010079897,0.0240949219921829,0.024894598250265257,0.025553406278165672,0.02605892874666345,0.026401487559375516,0.026574451954920697,0.026574451954920697,0.026401487559375516,0.02605892874666345,0.025553406278165672,0.024894598250265257,0.0240949219921829,0.023169145010079897,0.02213393199833389,0.021007347304487993,0.019808333536998284,0.018556187207447512,0.01727005143531329,0.01596844391341833,0.014668835691332717,0.013387293079752892,0.0121381913346818,0.010934004978399576,0.009785175879443452,0.0087000567484567,0.007684924678961716,0.006744056897474959,0.005879859064596579,0.005093035319004454,0.004382788766430439,0.0037470412339295892,0.0031826617537902358,0.002685694307754893,0.0022515767356847114,0.0018753442758185628,0.0015518128444056423,0.0012757387809330747,0.0010419532984570392,0.000845471223277321,0.0006815747414640392,0.0005458737684524838,0.0004343452168178589,0.00034335386615739246,0.0002696577590590985,0.00021040108776120253,0.00016309743122122557,0.00012560598734358744,9.610315443580633e-5,7.305148095413737e-5,5.5167650312129256e-5,4.139081994442714e-5,3.085230763064667e-5,2.2847324863906172e-5,1.6809203743510603e-5,1.2286353487876774e-5,8.922015050992357e-6],\\\"showlegend\\\":true,\\\"name\\\":\\\"Year 2\\\",\\\"line\\\":{\\\"width\\\":1,\\\"dash\\\":\\\"solid\\\",\\\"color\\\":\\\"rgba(227, 111, 71, 1.000)\\\",\\\"shape\\\":\\\"linear\\\"},\\\"xaxis\\\":\\\"x\\\",\\\"x\\\":[11.0,12.212121212121213,13.424242424242424,14.636363636363637,15.848484848484848,17.060606060606062,18.272727272727273,19.484848484848484,20.696969696969695,21.90909090909091,23.12121212121212,24.333333333333332,25.545454545454547,26.757575757575758,27.96969696969697,29.181818181818183,30.393939393939394,31.606060606060606,32.81818181818182,34.03030303030303,35.24242424242424,36.45454545454545,37.666666666666664,38.878787878787875,40.09090909090909,41.303030303030305,42.515151515151516,43.72727272727273,44.93939393939394,46.15151515151515,47.36363636363637,48.57575757575758,49.78787878787879,51.0,52.21212121212121,53.42424242424242,54.63636363636363,55.84848484848485,57.06060606060606,58.27272727272727,59.484848484848484,60.696969696969695,61.90909090909091,63.121212121212125,64.33333333333333,65.54545454545455,66.75757575757575,67.96969696969697,69.18181818181819,70.39393939393939,71.60606060606061,72.81818181818181,74.03030303030303,75.24242424242425,76.45454545454545,77.66666666666667,78.87878787878788,80.0909090909091,81.3030303030303,82.51515151515152,83.72727272727273,84.93939393939394,86.15151515151516,87.36363636363636,88.57575757575758,89.78787878787878,91.0,92.21212121212122,93.42424242424242,94.63636363636364,95.84848484848484,97.06060606060606,98.27272727272727,99.48484848484848,100.6969696969697,101.9090909090909,103.12121212121212,104.33333333333333,105.54545454545455,106.75757575757575,107.96969696969697,109.18181818181819,110.39393939393939,111.60606060606061,112.81818181818181,114.03030303030303,115.24242424242425,116.45454545454545,117.66666666666667,118.87878787878788,120.0909090909091,121.3030303030303,122.51515151515152,123.72727272727273,124.93939393939394,126.15151515151516,127.36363636363636,128.57575757575756,129.78787878787878,131.0],\\\"mode\\\":\\\"lines\\\"}],  {\\\"yaxis\\\":{\\\"type\\\":\\\"-\\\",\\\"titlefont\\\":{\\\"size\\\":15,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"},\\\"title\\\":\\\"\\\",\\\"tickfont\\\":{\\\"size\\\":11,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"},\\\"tickmode\\\":\\\"array\\\",\\\"showgrid\\\":true,\\\"tickvals\\\":[0.01,0.02,0.03],\\\"domain\\\":[0.057305336832895896,0.9415463692038495],\\\"ticktext\\\":[\\\"0.01\\\",\\\"0.02\\\",\\\"0.03\\\"],\\\"zeroline\\\":false,\\\"linecolor\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"tickcolor\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"anchor\\\":\\\"x\\\"},\\\"annotations\\\":[{\\\"text\\\":\\\"Boxplot\\\",\\\"y\\\":1.0,\\\"xref\\\":\\\"paper\\\",\\\"font\\\":{\\\"size\\\":20,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"},\\\"xanchor\\\":\\\"center\\\",\\\"x\\\":0.526246719160105,\\\"yref\\\":\\\"paper\\\",\\\"showarrow\\\":false,\\\"yanchor\\\":\\\"top\\\",\\\"rotation\\\":0.0}],\\\"width\\\":600,\\\"plot_bgcolor\\\":\\\"rgba(255, 255, 255, 1.000)\\\",\\\"showlegend\\\":true,\\\"legend\\\":{\\\"bgcolor\\\":\\\"rgba(255, 255, 255, 1.000)\\\",\\\"font\\\":{\\\"size\\\":11,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"},\\\"bordercolor\\\":\\\"rgba(0, 0, 0, 1.000)\\\"},\\\"xaxis\\\":{\\\"type\\\":\\\"-\\\",\\\"titlefont\\\":{\\\"size\\\":15,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"},\\\"title\\\":\\\"\\\",\\\"tickfont\\\":{\\\"size\\\":11,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"},\\\"tickmode\\\":\\\"array\\\",\\\"showgrid\\\":true,\\\"tickvals\\\":[50.0,100.0],\\\"domain\\\":[0.05905511811023622,0.9934383202099738],\\\"ticktext\\\":[\\\"50\\\",\\\"100\\\"],\\\"zeroline\\\":false,\\\"linecolor\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"tickcolor\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"anchor\\\":\\\"y\\\"},\\\"paper_bgcolor\\\":\\\"rgba(255, 255, 255, 1.000)\\\",\\\"margin\\\":{\\\"r\\\":0,\\\"l\\\":0,\\\"b\\\":0,\\\"t\\\":20},\\\"height\\\":400}, {showLink: false});\\n\",\n       \"\\n\",\n       \" </script>\\n\",\n       \"\\n\",\n       \"</body>\\n\",\n       \"</html>\\n\"\n      ]\n     },\n     \"execution_count\": 19,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"plot(Normal(67, 10), fill = (0.5, :orange), label = \\\"Year 1\\\", title = \\\"Boxplot\\\")\\n\",\n    \"plot!(Normal(71, 15), fill = (0.5, :blue), label = \\\"Year 2\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can get more statistical information from these two distributions.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(-0.3590249626162794,-0.2712731443968414)\"\n      ]\n     },\n     \"execution_count\": 20,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Skewness\\n\",\n    \"skewness(year1), skewness(year2)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(-0.24819742119013233,0.5338220842834196)\"\n      ]\n     },\n     \"execution_count\": 21,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Kurtosis\\n\",\n    \"kurtosis(year1), kurtosis(year2)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Now let's compare these two year by way of Student's *t*-test.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Two sample t-test (equal variance)\\n\",\n       \"----------------------------------\\n\",\n       \"Population details:\\n\",\n       \"    parameter of interest:   Mean difference\\n\",\n       \"    value under h_0:         0\\n\",\n       \"    point estimate:          -2.111143437856555\\n\",\n       \"    95% confidence interval: (-5.708365875161718,1.4860789994486088)\\n\",\n       \"\\n\",\n       \"Test summary:\\n\",\n       \"    outcome with 95% confidence: fail to reject h_0\\n\",\n       \"    two-sided p-value:           0.24852747168272385 (not significant)\\n\",\n       \"\\n\",\n       \"Details:\\n\",\n       \"    number of observations:   [100,100]\\n\",\n       \"    t-statistic:              -1.1573406510806181\\n\",\n       \"    degrees of freedom:       198\\n\",\n       \"    empirical standard error: 1.8241331416859534\\n\"\n      ]\n     },\n     \"execution_count\": 22,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"EqualVarianceTTest(year1, year2)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Imagine instead that these were the same students going on from year $ 1 $ to year $ 2 $.  We want to know if there is a correlation between the marks in the two years.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<table class=\\\"data-frame\\\"><tr><th></th><th>One</th><th>Two</th></tr><tr><th>1</th><td>85.56665254670962</td><td>62.34881336314274</td></tr><tr><th>2</th><td>56.33542789265572</td><td>76.92087492053813</td></tr><tr><th>3</th><td>54.71533933232834</td><td>73.77501170672417</td></tr><tr><th>4</th><td>68.70643694805445</td><td>96.1885520748975</td></tr><tr><th>5</th><td>70.3197013880923</td><td>71.82211615546416</td></tr><tr><th>6</th><td>63.72222464133985</td><td>94.29675767988732</td></tr><tr><th>7</th><td>60.12139398315749</td><td>66.19638903498446</td></tr><tr><th>8</th><td>84.87567767932708</td><td>38.05867614005484</td></tr><tr><th>9</th><td>65.25112844009759</td><td>42.477947831637636</td></tr><tr><th>10</th><td>74.03102806217764</td><td>83.18937814854877</td></tr><tr><th>11</th><td>61.80682368616857</td><td>51.232722549194776</td></tr><tr><th>12</th><td>73.83114887902654</td><td>76.2572915932042</td></tr><tr><th>13</th><td>54.71558936963074</td><td>73.2831393949963</td></tr><tr><th>14</th><td>82.76610993911783</td><td>59.03831880561019</td></tr><tr><th>15</th><td>59.67123118708488</td><td>62.41075977564218</td></tr><tr><th>16</th><td>79.24066674366964</td><td>66.69557856013982</td></tr><tr><th>17</th><td>52.76010005699229</td><td>70.05885656118848</td></tr><tr><th>18</th><td>68.91742609899175</td><td>80.85921272351895</td></tr><tr><th>19</th><td>63.44417634468187</td><td>78.62803375499023</td></tr><tr><th>20</th><td>56.07934742692252</td><td>66.59238331500538</td></tr><tr><th>21</th><td>60.35870680157897</td><td>64.43349092751555</td></tr><tr><th>22</th><td>66.01564231072904</td><td>79.04270414115932</td></tr><tr><th>23</th><td>65.19957134019428</td><td>73.09404424212711</td></tr><tr><th>24</th><td>74.40335702050712</td><td>60.15827854272642</td></tr><tr><th>25</th><td>54.55347158553312</td><td>73.491947667917</td></tr><tr><th>26</th><td>79.54794593513314</td><td>74.2862247140128</td></tr><tr><th>27</th><td>75.92782800015107</td><td>43.65346888612976</td></tr><tr><th>28</th><td>44.17736911051651</td><td>83.22735004322611</td></tr><tr><th>29</th><td>49.970577706833055</td><td>77.07272071163887</td></tr><tr><th>30</th><td>74.65938636307811</td><td>61.87919438910521</td></tr><tr><th>&vellip;</th><td>&vellip;</td><td>&vellip;</td></tr></table>\"\n      ],\n      \"text/plain\": [\n       \"100×2 DataFrames.DataFrame\\n\",\n       \"│ Row │ One     │ Two     │\\n\",\n       \"├─────┼─────────┼─────────┤\\n\",\n       \"│ 1   │ 85.5667 │ 62.3488 │\\n\",\n       \"│ 2   │ 56.3354 │ 76.9209 │\\n\",\n       \"│ 3   │ 54.7153 │ 73.775  │\\n\",\n       \"│ 4   │ 68.7064 │ 96.1886 │\\n\",\n       \"│ 5   │ 70.3197 │ 71.8221 │\\n\",\n       \"│ 6   │ 63.7222 │ 94.2968 │\\n\",\n       \"│ 7   │ 60.1214 │ 66.1964 │\\n\",\n       \"│ 8   │ 84.8757 │ 38.0587 │\\n\",\n       \"│ 9   │ 65.2511 │ 42.4779 │\\n\",\n       \"│ 10  │ 74.031  │ 83.1894 │\\n\",\n       \"│ 11  │ 61.8068 │ 51.2327 │\\n\",\n       \"⋮\\n\",\n       \"│ 89  │ 85.7863 │ 55.9266 │\\n\",\n       \"│ 90  │ 53.2831 │ 57.4449 │\\n\",\n       \"│ 91  │ 75.0159 │ 63.5089 │\\n\",\n       \"│ 92  │ 68.4065 │ 74.1756 │\\n\",\n       \"│ 93  │ 78.0063 │ 70.435  │\\n\",\n       \"│ 94  │ 78.9671 │ 49.1502 │\\n\",\n       \"│ 95  │ 58.9093 │ 62.8795 │\\n\",\n       \"│ 96  │ 71.2858 │ 73.654  │\\n\",\n       \"│ 97  │ 64.8244 │ 70.4013 │\\n\",\n       \"│ 98  │ 80.1767 │ 103.665 │\\n\",\n       \"│ 99  │ 65.5091 │ 68.875  │\\n\",\n       \"│ 100 │ 68.6899 │ 87.3212 │\"\n      ]\n     },\n     \"execution_count\": 24,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"data = DataFrame(One = year1, Two = year2)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"DataFrames.DataFrameRegressionModel{GLM.GeneralizedLinearModel{GLM.GlmResp{Array{Float64,1},Distributions.Normal{Float64},GLM.IdentityLink},GLM.DensePredChol{Float64,Base.LinAlg.Cholesky{Float64,Array{Float64,2}}}},Float64}\\n\",\n       \"\\n\",\n       \"Formula: One ~ 1 + Two\\n\",\n       \"\\n\",\n       \"Coefficients:\\n\",\n       \"               Estimate Std.Error   z value Pr(>|z|)\\n\",\n       \"(Intercept)     70.9896   5.32343   13.3353   <1e-39\\n\",\n       \"Two          -0.0501649 0.0710303 -0.706247   0.4800\\n\"\n      ]\n     },\n     \"execution_count\": 25,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"OLS = glm(One ~ Two, data, Normal(), IdentityLink())\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Plotly\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Plotly is a collabrotaive / social website for plotting.  Let's have a look.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<html>\\n\",\n       \"<head>\\n\",\n       \"     <script src=\\\"/Users/juanklopper/.julia/v0.4/PlotlyJS/deps/plotly-latest.min.js\\\"></script>\\n\",\n       \"</head>\\n\",\n       \"<body>\\n\",\n       \"     <div id=\\\"9722b782-2aa6-48f4-9071-69612bdce405\\\" class=\\\"plotly-graph-div\\\"></div>\\n\",\n       \"\\n\",\n       \"<script>\\n\",\n       \"    window.PLOTLYENV=window.PLOTLYENV || {};\\n\",\n       \"    window.PLOTLYENV.BASE_URL=\\\"https://plot.ly\\\";\\n\",\n       \"   Plotly.newPlot('9722b782-2aa6-48f4-9071-69612bdce405', [{\\\"type\\\":\\\"scatter\\\",\\\"yaxis\\\":\\\"y\\\",\\\"y\\\":[0.0,0.05963193580574426,0.3568447334177247,0.2886257578883158,1.031561992553435,2.4989092764194156,2.1652923524048835,2.8161735852925567,1.7151306438654947,1.9060060348245034,1.863623231804101,1.4309264260878607,3.5808679537462886,4.208296043954742,2.659230323984323,3.8582073232544243,2.7030910996128124,3.212180161915742,0.9731432159548867,1.4586646449745746,0.6969785234074337,-0.8032139977388808,-1.3977249247686119,-1.5761750944631818,-2.94517962234435,-2.609294990372325,-3.4075655349456633,-1.1236684694249708,-1.728910602496641,-1.5217562155276139,-1.0688022671628212,-3.136691897527805,-0.7538077038315678,1.4905086745384855,1.4794751655386849,1.2907128046039387,0.47619601941629874,2.25910393876983,3.5487601109977165,4.41525420213542,4.912741480383075,4.665913280694718,4.698166191643591,4.3494044398601135,3.9552341938619255,4.817355712413916,4.544680825678131,3.3147958664772394,4.005828676200682,3.9122101517595755],\\\"showlegend\\\":true,\\\"name\\\":\\\"y1\\\",\\\"line\\\":{\\\"width\\\":1,\\\"dash\\\":\\\"solid\\\",\\\"color\\\":\\\"rgba(0, 154, 250, 1.000)\\\",\\\"shape\\\":\\\"linear\\\"},\\\"xaxis\\\":\\\"x\\\",\\\"x\\\":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50],\\\"mode\\\":\\\"lines\\\"},{\\\"type\\\":\\\"scatter\\\",\\\"yaxis\\\":\\\"y\\\",\\\"y\\\":[0.0,-0.7457751112543586,-0.8226502979187953,-0.32237077248050006,-0.6356142597134774,0.3173709758437657,-0.09712638859848005,-0.9144197531977147,0.4515498783355131,-0.83575717020556,-1.0009201683904463,-1.3451260296919827,-0.7777439021762107,0.4759205576896419,0.34329127714869057,0.3692591128286088,0.34033652853447166,1.2341901411114156,-0.616485172083546,1.2245767971256876,3.3359439837261937,2.1223541249798625,2.635498364205006,2.6788778175043992,3.007379194348149,2.4646692877609735,0.7740329689151411,1.2139490831679225,2.860368823761163,3.3118803864842032,4.120014916579902,3.3926441996709302,3.1566694755249936,2.133964854725985,1.9775345715573658,2.477650107019021,1.3519636295659714,0.5275501404320032,0.026346529924376638,-0.6910206819073003,-1.289399469198815,-2.281424129254161,-2.58727498019531,-2.7247927547342976,-1.7036275984379543,-1.6206554702976232,-1.6259824987780116,-1.8253995217060184,-0.6825881460171714,-1.416339919841518],\\\"showlegend\\\":true,\\\"name\\\":\\\"y2\\\",\\\"line\\\":{\\\"width\\\":1,\\\"dash\\\":\\\"solid\\\",\\\"color\\\":\\\"rgba(227, 111, 71, 1.000)\\\",\\\"shape\\\":\\\"linear\\\"},\\\"xaxis\\\":\\\"x\\\",\\\"x\\\":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50],\\\"mode\\\":\\\"lines\\\"},{\\\"type\\\":\\\"scatter\\\",\\\"yaxis\\\":\\\"y\\\",\\\"y\\\":[0.0,-0.5042798648675575,-1.017340769103721,-1.3199786746826427,-0.4267208492060399,0.6010521342561421,-0.05975208144888988,1.2623951878335422,0.46561493447998403,-0.1640643126296118,1.5087388825431274,1.1451198595563454,1.5936154550921788,1.0452257853889653,1.8769639109685783,1.9560370434431282,0.8451927436832771,-0.061999143749492225,1.2783219688987855,-0.7774653327860397,0.12875698595847707,-0.732266231597127,-0.2961527428043906,-1.333361685341735,-1.3205498597211984,-3.8470818236306683,-2.44092644318055,-1.7656306933374037,-2.64823757117935,-3.463196583274052,-2.9274142741365727,-4.119172116317276,-1.7479428495172025,-2.016760203340669,-1.1087430523987736,-0.39092030309520154,1.6162002566049432,1.5588929365131952,0.7449409869101874,0.9564150630923897,1.5481498617653737,2.828829627443231,3.5663069237600404,1.4568506654820645,1.5461315197023122,0.638542084815312,-0.5464307974540534,-0.23059672229557343,0.5483064289982562,0.551283462988372],\\\"showlegend\\\":true,\\\"name\\\":\\\"y3\\\",\\\"line\\\":{\\\"width\\\":1,\\\"dash\\\":\\\"solid\\\",\\\"color\\\":\\\"rgba(62, 164, 78, 1.000)\\\",\\\"shape\\\":\\\"linear\\\"},\\\"xaxis\\\":\\\"x\\\",\\\"x\\\":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50],\\\"mode\\\":\\\"lines\\\"},{\\\"type\\\":\\\"scatter\\\",\\\"yaxis\\\":\\\"y\\\",\\\"y\\\":[0.0,-0.21272754476788058,0.5389900826803685,-0.26258098228871796,-0.5756871677117807,-2.984163217096008,-4.2817117987948246,-5.51055034872171,-6.286927766537257,-5.551136227059317,-5.53922170369656,-4.991081908140075,-4.081163565363186,-4.7124437543755775,-4.501563223068691,-3.7818787728403724,-2.115642093963515,-1.2876394437105718,-1.25587385808212,-2.088481322901173,-1.7178779746197814,-0.389671994031735,-0.60719386140667,-2.062563151053088,-2.4481148267576422,-1.2792188694514655,-0.5744493707930294,-1.4287864313360714,-3.170038272602978,-1.6611334432805247,-1.8386655007521933,-1.4555596822930315,-0.147696401479253,1.3377212531084217,1.8056678377053557,2.7086966214550596,1.8393630820394349,1.2241906846508264,0.7786126658941985,0.8039639535081821,1.4027528760346328,2.472752957841262,1.943103382435025,0.1720314975283579,0.34363396468282087,-0.027447770283827,0.8335466385178827,1.0939526148962684,0.34406356904505875,1.0869289180774815],\\\"showlegend\\\":true,\\\"name\\\":\\\"y4\\\",\\\"line\\\":{\\\"width\\\":1,\\\"dash\\\":\\\"solid\\\",\\\"color\\\":\\\"rgba(195, 113, 210, 1.000)\\\",\\\"shape\\\":\\\"linear\\\"},\\\"xaxis\\\":\\\"x\\\",\\\"x\\\":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50],\\\"mode\\\":\\\"lines\\\"},{\\\"type\\\":\\\"scatter\\\",\\\"yaxis\\\":\\\"y\\\",\\\"y\\\":[0.0,0.7066657798753294,1.737573086278298,0.9583377927573608,1.6355624126201953,2.717269588433459,2.483730525806401,2.433679494564191,2.88694547329118,3.3487904254476657,4.928538292814473,3.8905185752996774,2.9183933952847485,2.027988388345671,2.6881728729340315,2.6756455802660275,4.2940601596408206,4.752638924805961,3.4754821241457856,3.48305035164291,1.2839869207657522,0.7641873717941635,1.2807366115001229,0.1440596734657449,0.09394248619083487,-0.9918595329079398,-0.41423516819661643,-0.649073323779013,-1.2857031296329708,-2.0431842198075616,-0.41642220399855456,1.1383951320047545,2.795873335278589,3.6915791758627523,4.414031935525304,4.199533387907985,3.435761392434712,4.207499369339844,3.9109320019075957,2.8110878947293862,2.83927623867532,2.451067876559564,3.153115665250161,3.4670865227199954,1.766103591204232,0.5979072734598492,-0.6848020593457321,-1.5649719989124296,-1.6146316128739762,-1.4103034150933815],\\\"showlegend\\\":true,\\\"name\\\":\\\"y5\\\",\\\"line\\\":{\\\"width\\\":1,\\\"dash\\\":\\\"solid\\\",\\\"color\\\":\\\"rgba(172, 142, 24, 1.000)\\\",\\\"shape\\\":\\\"linear\\\"},\\\"xaxis\\\":\\\"x\\\",\\\"x\\\":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50],\\\"mode\\\":\\\"lines\\\"}],  {\\\"yaxis\\\":{\\\"linecolor\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"type\\\":\\\"-\\\",\\\"domain\\\":[0.057305336832895896,0.9901574803149605],\\\"titlefont\\\":{\\\"size\\\":15,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"},\\\"tickcolor\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"title\\\":\\\"\\\",\\\"showgrid\\\":true,\\\"zeroline\\\":false,\\\"anchor\\\":\\\"x\\\",\\\"tickfont\\\":{\\\"size\\\":11,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"}},\\\"annotations\\\":[],\\\"width\\\":600,\\\"plot_bgcolor\\\":\\\"rgba(255, 255, 255, 1.000)\\\",\\\"showlegend\\\":true,\\\"legend\\\":{\\\"bgcolor\\\":\\\"rgba(255, 255, 255, 1.000)\\\",\\\"font\\\":{\\\"size\\\":11,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"},\\\"bordercolor\\\":\\\"rgba(0, 0, 0, 1.000)\\\"},\\\"xaxis\\\":{\\\"linecolor\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"type\\\":\\\"-\\\",\\\"domain\\\":[0.05905511811023622,0.9934383202099738],\\\"titlefont\\\":{\\\"size\\\":15,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"},\\\"tickcolor\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"title\\\":\\\"\\\",\\\"showgrid\\\":true,\\\"zeroline\\\":false,\\\"anchor\\\":\\\"y\\\",\\\"tickfont\\\":{\\\"size\\\":11,\\\"color\\\":\\\"rgba(0, 0, 0, 1.000)\\\",\\\"family\\\":\\\"Helvetica\\\"}},\\\"paper_bgcolor\\\":\\\"rgba(255, 255, 255, 1.000)\\\",\\\"margin\\\":{\\\"r\\\":0,\\\"l\\\":0,\\\"b\\\":0,\\\"t\\\":20},\\\"height\\\":400}, {showLink: false});\\n\",\n       \"\\n\",\n       \" </script>\\n\",\n       \"\\n\",\n       \"</body>\\n\",\n       \"</html>\\n\"\n      ]\n     },\n     \"execution_count\": 26,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"plot(Plots.fakedata(50, 5), w = 1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"anaconda-cloud\": {},\n  \"kernelspec\": {\n   \"display_name\": \"Julia 0.4.6\",\n   \"language\": \"julia\",\n   \"name\": \"julia-0.4\"\n  },\n  \"language_info\": {\n   \"file_extension\": \".jl\",\n   \"mimetype\": \"application/julia\",\n   \"name\": \"julia\",\n   \"version\": \"0.4.6\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 0\n}\n"
  },
  {
    "path": "CCS.csv",
    "content": "\"PatientID\",\"Cat1\",\"Cat2\",\"Var1\",\"Var2\",\"Var3\"\n1,\"A\",\"C\",38.25682170735211,5.939131803063266,35.05790787394423\n2,\"A\",\"C\",17.831672926455425,5.3475437647467015,21.130960534087748\n8,\"A\",\"B\",16.021847362622296,6.60708739107548,60.94357572800236\n9,\"A\",\"C\",45.11578946046756,6.007331523437179,21.879716257527214\n16,\"A\",\"C\",20.448024664719128,8.548191553013755,20.662273742223093\n18,\"A\",\"B\",28.354866592358434,7.956423420109708,33.180721180524046\n25,\"A\",\"C\",22.449698055243154,6.346176553966556,40.23647859806062\n28,\"A\",\"B\",48.41249747282861,5.325830066483782,28.89558282117991\n29,\"A\",\"C\",40.00749019795842,11.418946000149159,71.59107138476448\n33,\"A\",\"C\",20.718078088759942,5.3776825349838875,27.421634761166143\n37,\"A\",\"B\",17.039552902790813,5.341678126021321,24.350125791798412\n38,\"A\",\"B\",42.668677048130725,5.822836826149952,52.361023970347645\n41,\"A\",\"B\",19.954005492731604,5.139109665644092,93.1999049245544\n42,\"A\",\"B\",20.616861807456626,5.373775257683365,22.956316044932706\n45,\"A\",\"B\",31.96943333536114,7.03175222186184,32.4353920798117\n48,\"A\",\"C\",15.896503262657347,6.816307422196048,56.91791495074396\n50,\"A\",\"B\",34.12637671623271,10.132043236302893,95.0800494348705\n54,\"A\",\"C\",17.266696029416444,6.232851527491789,30.592429272236995\n56,\"A\",\"B\",17.65139392415621,6.482234591532695,30.411111164705403\n57,\"A\",\"C\",19.411007643097165,6.7381729160524415,51.404061512592136\n58,\"A\",\"B\",20.72167664093812,12.544965670716241,23.516481089946932\n72,\"A\",\"C\",41.067434948202134,6.790353447911059,25.463601202747274\n77,\"A\",\"C\",21.748637652644852,5.331207233871429,53.37901535144456\n79,\"A\",\"B\",24.795379875133985,6.421028372159899,67.80454363409564\n81,\"A\",\"C\",19.455898596105506,15.58264883701855,42.09359631060543\n87,\"A\",\"B\",20.42366215424995,6.0313350908620045,20.315296150337286\n90,\"A\",\"B\",32.12531899176456,7.5079670766812505,30.041428426466076\n91,\"A\",\"C\",27.80314774867038,5.569594345445192,20.873838118661297\n93,\"A\",\"B\",22.519476318918194,8.263168140286755,38.939609071578595\n96,\"A\",\"C\",52.42066995572101,10.589195161626716,22.849503575655408\n97,\"A\",\"B\",17.86580280548761,5.655153490926597,24.834925736117476\n98,\"A\",\"C\",18.304614879706364,5.206774148431451,60.24118038143812\n99,\"A\",\"B\",34.7957739318938,5.216771110070992,59.17313599632728\n106,\"A\",\"C\",17.990856155662172,5.805746954705914,22.986199725703937\n107,\"A\",\"B\",39.836469762383274,6.022064589307947,113.15915549478461\n109,\"A\",\"C\",17.89733059230163,9.017338715515097,39.73978608265236\n114,\"A\",\"B\",24.85255007423403,9.605542413410712,27.385339755186326\n116,\"A\",\"B\",17.997482304579076,8.204854456465476,23.41802059390876\n117,\"A\",\"C\",18.126071048122057,5.861439897610202,33.45755944581491\n118,\"A\",\"B\",17.575316399030562,8.71839481538569,56.086741718272286\n4,\"A\",\"R\",15.235601323477356,6.215777958365601,52.76976082287107\n5,\"A\",\"R\",25.15592340019337,7.490853667122982,33.99205373814725\n6,\"A\",\"L\",20.374496641186234,8.042691101281173,36.737306584027735\n7,\"A\",\"L\",43.5454122027658,5.299561550914789,75.76065870686222\n11,\"A\",\"L\",27.00543246299954,7.33753361967878,51.95612370492146\n13,\"A\",\"L\",17.735061128409228,5.251731495227136,25.925747015591718\n14,\"A\",\"R\",35.64113423781144,5.611566778966378,22.31970427696362\n15,\"A\",\"R\",16.48124586197382,8.144386537580985,44.26031952257776\n20,\"A\",\"R\",27.678888117250423,5.007772798459267,48.91881800373497\n24,\"A\",\"R\",20.290681944092228,7.885401148400058,32.836306424266965\n26,\"A\",\"R\",17.505164918032847,6.240301965190178,35.342960208912075\n27,\"A\",\"R\",27.823738893199685,7.101351572945177,102.85932501129798\n30,\"A\",\"L\",23.417627180715208,5.759435713338087,37.780811668758844\n31,\"A\",\"L\",17.416035856675663,5.7669808788855415,72.7943296690139\n34,\"A\",\"L\",34.72990536077704,5.445868658294521,58.065830110339235\n40,\"A\",\"R\",16.61883230435811,11.990779570002214,75.98733027504302\n43,\"A\",\"L\",36.13353019343677,9.397166165878637,50.02309957641912\n44,\"A\",\"L\",24.809298589357333,5.488379786878529,32.86894571765556\n46,\"A\",\"L\",38.30912284860666,6.233737160602212,21.21064844444261\n47,\"A\",\"R\",17.295927130680944,5.837944799072202,21.8276428223884\n3,\"B\",\"X\",24.06717700015676,3.0953199839743557,112.89374831207112\n10,\"B\",\"F\",16.589170569532676,7.1961316954933165,64.60108919251198\n12,\"B\",\"F\",40.10862142125212,4.098132961724937,31.34378123959812\n17,\"B\",\"X\",15.64473700818153,4.398113164328716,90.43175254860111\n19,\"B\",\"X\",39.368824847370625,6.393289044425163,54.47765539222189\n21,\"B\",\"X\",19.75510302623217,6.67391560088026,65.63213195508845\n22,\"B\",\"X\",46.448031059566205,7.751223293581221,41.80920515708942\n23,\"B\",\"F\",20.110684991712837,6.010929352119751,30.54343507281063\n32,\"B\",\"X\",30.549244560679348,3.709026551771673,94.08221057281018\n35,\"B\",\"X\",40.342410369530434,5.802418229901492,32.431285425829245\n36,\"B\",\"F\",17.61996478246801,3.272834021856402,45.279244306347266\n39,\"B\",\"F\",16.733111232009126,6.61873179993091,136.54780501476213\n49,\"B\",\"X\",34.171806783254596,3.750692428586434,32.270046028269256\n51,\"B\",\"X\",22.66461295251438,5.434594856859489,46.391239612707636\n53,\"B\",\"F\",30.135912277898576,3.76523838506742,30.321857770813068\n59,\"B\",\"F\",46.669586712038395,7.434769526485639,119.21343212403997\n60,\"B\",\"X\",43.32784943607196,3.9676916323091,78.8563412369135\n63,\"B\",\"X\",37.769606895027124,4.683753740577215,62.531800530107404\n64,\"B\",\"F\",31.74416965486681,3.5353814489730864,37.02352631086494\n66,\"B\",\"X\",21.384324733014576,4.743470890116747,49.275427145539155\n67,\"B\",\"F\",50.314538396562334,3.900974215467013,44.348033258162914\n70,\"B\",\"X\",62.371171183468505,3.018192374313788,147.39740194224694\n71,\"B\",\"F\",21.34654236894925,5.593431828293242,42.86011283343048\n74,\"B\",\"F\",15.820464572624056,3.2672668036815287,81.89634808229764\n75,\"B\",\"X\",84.23781038235661,5.6973824946641525,33.62948279937371\n82,\"B\",\"X\",41.73087408600318,3.454628386262769,65.72050426362536\n85,\"B\",\"X\",20.47493230602923,3.0117329341084575,67.70290091219718\n88,\"B\",\"F\",18.820495284292548,3.350410136146232,63.12557433232596\n89,\"B\",\"F\",26.73651845631796,3.8857375757598116,32.131917472465275\n94,\"B\",\"F\",22.69554494043684,3.913500381488114,49.53126214241773\n100,\"B\",\"F\",22.85363951467999,3.4813819703202014,34.7470936977334\n102,\"B\",\"F\",26.168582545839982,7.8584928331483646,99.3884671188813\n103,\"B\",\"X\",25.189755052026534,3.95881641016381,37.58826724970993\n104,\"B\",\"F\",37.018649921471,3.2954579895322436,110.74930744994928\n105,\"B\",\"F\",16.001958073218425,3.597589178824381,33.509407699797606\n108,\"B\",\"X\",19.765408611319234,3.4852524696675835,82.22448707504337\n110,\"B\",\"X\",19.578361699219148,11.917936789833698,44.043972351378805\n111,\"B\",\"F\",51.47410177495646,7.390867958250017,54.05613535009404\n112,\"B\",\"F\",22.58171946648838,5.629658117233228,39.46161322194196\n120,\"B\",\"F\",18.915525082842635,4.655106220303599,43.02578086404075\n52,\"B\",\"R\",29.982079670804236,6.90968000880066,57.51301755799257\n55,\"B\",\"L\",17.638581517150232,3.22905408396069,91.98045477526048\n61,\"B\",\"L\",25.46667156604546,8.555814504073485,88.77349639506795\n62,\"B\",\"R\",17.790822188585835,3.8816708712371217,106.08580109774431\n65,\"B\",\"R\",68.88733313061795,5.759272330342896,31.936985641936744\n68,\"B\",\"L\",29.06522838659918,4.684200064538992,77.62150616089157\n69,\"B\",\"R\",29.646945148445013,4.638146015092245,67.20166997221638\n73,\"B\",\"R\",23.26159974788763,3.0325095342576898,34.19143854116885\n76,\"B\",\"R\",17.002920887616682,5.394773109501809,31.129698423073002\n78,\"B\",\"L\",55.3878765748924,4.153035018201736,40.08457579332007\n80,\"B\",\"R\",20.220543535369945,6.36441733413244,45.43500515886002\n83,\"B\",\"L\",16.41724330342222,3.8416674717599735,89.69686766584209\n84,\"B\",\"R\",47.62237187470963,5.400323458550362,47.45407464660502\n86,\"B\",\"L\",73.02293637462614,3.3834931659546856,55.1737331680735\n92,\"B\",\"R\",16.410649941738182,4.303512135274212,87.73566030225827\n95,\"B\",\"R\",16.280064844736785,3.3725173889152478,52.60176250341807\n101,\"B\",\"L\",16.888304208704465,3.1959840213773445,60.18825331103146\n113,\"B\",\"R\",32.353749277992264,3.386772487438742,30.01573902344151\n115,\"B\",\"R\",20.13788637918843,3.4273072950030423,44.68926075087645\n119,\"B\",\"L\",17.61437635438921,3.4511600360326606,40.694652906806695\n"
  },
  {
    "path": "Collections.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 86,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Julia Version 1.0.3\\n\",\n      \"Commit 099e826241 (2018-12-18 01:34 UTC)\\n\",\n      \"Platform Info:\\n\",\n      \"  OS: Linux (x86_64-pc-linux-gnu)\\n\",\n      \"  CPU: Intel(R) Xeon(R) CPU E5-2673 v4 @ 2.30GHz\\n\",\n      \"  WORD_SIZE: 64\\n\",\n      \"  LIBM: libopenlibm\\n\",\n      \"  LLVM: libLLVM-6.0.0 (ORCJIT, broadwell)\\n\",\n      \"Environment:\\n\",\n      \"  JULIABOX = true\\n\",\n      \"  JULIA_PKG_SERVER = https://pkg.juliacomputing.com\\n\",\n      \"  JULIA = /opt/julia-0.6/bin/julia\\n\",\n      \"  JULIA_KERNELS = ['julia-0.6', 'julia-1.0', 'julia-1.0k']\\n\",\n      \"  JULIA_PKG_TOKEN_PATH = /mnt/juliabox/.julia/token.toml\\n\",\n      \"  JULIABOX_ROLE = \\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"versioninfo()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# COLLECTIONS\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"* Collections are groups of elements\\n\",\n    \"* Elements are values of different Julia data types\\n\",\n    \"* Storing elements in collections is one of the most useful operations in computing\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## I ARRAYS\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"*  Arrays are collections of values separated with commas and placing them inside of square brackets\\n\",\n    \"* They are represented in column or in row form\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Array{Int64,1}\"\n      ]\n     },\n     \"execution_count\": 1,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 1 A column vector\\n\",\n    \"array1 = [1, 2, 3]\\n\",\n    \"typeof(array1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3-element Array{Int64,1}:\\n\",\n       \" 1\\n\",\n       \" 2\\n\",\n       \" 3\"\n      ]\n     },\n     \"execution_count\": 3,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"array1\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Array{Int64,2}\"\n      ]\n     },\n     \"execution_count\": 2,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 2 A row vector\\n\",\n    \"array2 = [1 2 3]\\n\",\n    \"typeof(array2)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"1×3 Array{Int64,2}:\\n\",\n       \" 1  2  3\"\n      ]\n     },\n     \"execution_count\": 4,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"array2\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"1×3 LinearAlgebra.Adjoint{Int64,Array{Int64,1}}:\\n\",\n       \" 1  2  3\"\n      ]\n     },\n     \"execution_count\": 5,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 3 The transpose converts between the two\\n\",\n    \"transpose(array1)\\n\",\n    \"#The apostrophe is an alternative notation\\n\",\n    \"array1'\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"true\"\n      ]\n     },\n     \"execution_count\": 6,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 4 Boolean logic (==)\\n\",\n    \"transpose(array1) == array1'\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"1.0\"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 5 Data type inheritance\\n\",\n    \"# With a mix of types, all the elements inherent the \\\"highest\\\" type\\n\",\n    \"array2 = [1, 2, 3.0]\\n\",\n    \"#Index for one of the original integers will be Float64\\n\",\n    \"array2[1]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×3 Array{Int64,2}:\\n\",\n       \" 1  4  7\\n\",\n       \" 2  5  8\\n\",\n       \" 3  6  9\"\n      ]\n     },\n     \"execution_count\": 8,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 6 Column-wise entry of multidimensional array\\n\",\n    \"array3 = [[1, 2, 3] [4, 5, 6] [7, 8, 9]]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×3 Array{Int64,2}:\\n\",\n       \" 1  2  3\\n\",\n       \" 4  5  6\\n\",\n       \" 7  8  9\"\n      ]\n     },\n     \"execution_count\": 9,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 7 Row-wise entry of multidimensional array\\n\",\n    \"array4 = [[1 2 3]; [4 5 6]; [7 8 9]]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"9\"\n      ]\n     },\n     \"execution_count\": 11,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 8 Length of array\\n\",\n    \"length(array3)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"9\"\n      ]\n     },\n     \"execution_count\": 12,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"length(array4)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Element 1 is 1\\n\",\n      \"Element 2 is 2\\n\",\n      \"Element 3 is 3\\n\",\n      \"Element 4 is 4\\n\",\n      \"Element 5 is 5\\n\",\n      \"Element 6 is 6\\n\",\n      \"Element 7 is 7\\n\",\n      \"Element 8 is 8\\n\",\n      \"Element 9 is 9\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# 9 Index order of column-wise array\\n\",\n    \"for i in 1:length(array3)\\n\",\n    \"    println(\\\"Element $(i) is \\\", array3[i])\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Element 1 is 1\\n\",\n      \"Element 2 is 4\\n\",\n      \"Element 3 is 7\\n\",\n      \"Element 4 is 2\\n\",\n      \"Element 5 is 5\\n\",\n      \"Element 6 is 8\\n\",\n      \"Element 7 is 3\\n\",\n      \"Element 8 is 6\\n\",\n      \"Element 9 is 9\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# 10 Index order of row-wise array\\n\",\n    \"for i in 1:length(array4)\\n\",\n    \"    println(\\\"Element $(i) is \\\", array4[i])\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"6-element Array{Int64,1}:\\n\",\n       \" 1\\n\",\n       \" 2\\n\",\n       \" 1\\n\",\n       \" 2\\n\",\n       \" 1\\n\",\n       \" 2\"\n      ]\n     },\n     \"execution_count\": 15,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 11 Using repeat() to repeat elements\\n\",\n    \"repeat([1, 2], 3)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"1:1:10\"\n      ]\n     },\n     \"execution_count\": 17,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 12 Using range(start, step, number of elements)\\n\",\n    \"range(1, step = 1, length = 10)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"StepRange{Int64,Int64}\"\n      ]\n     },\n     \"execution_count\": 18,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"typeof(range(1, step = 1, length = 10))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"10-element Array{Int64,1}:\\n\",\n       \"  1\\n\",\n       \"  2\\n\",\n       \"  3\\n\",\n       \"  4\\n\",\n       \"  5\\n\",\n       \"  6\\n\",\n       \"  7\\n\",\n       \"  8\\n\",\n       \"  9\\n\",\n       \" 10\"\n      ]\n     },\n     \"execution_count\": 19,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 13 Create collections usin gthe collect() function\\n\",\n    \"collect(range(1, step = 1, length = 10))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"10-element Array{Int64,1}:\\n\",\n       \"  1\\n\",\n       \"  2\\n\",\n       \"  3\\n\",\n       \"  4\\n\",\n       \"  5\\n\",\n       \"  6\\n\",\n       \"  7\\n\",\n       \"  8\\n\",\n       \"  9\\n\",\n       \" 10\"\n      ]\n     },\n     \"execution_count\": 20,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#Short-hand\\n\",\n    \"collect(1:10)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"UnitRange{Int64}\"\n      ]\n     },\n     \"execution_count\": 21,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"typeof(1:10)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"5-element Array{Int64,1}:\\n\",\n       \"  2\\n\",\n       \"  4\\n\",\n       \"  6\\n\",\n       \"  8\\n\",\n       \" 10\"\n      ]\n     },\n     \"execution_count\": 22,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#Add step size\\n\",\n    \"collect(2:2:10)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Array{Int64,1}\"\n      ]\n     },\n     \"execution_count\": 23,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"typeof(collect(2:2:10))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"2×3 Array{Union{Missing, Int64},2}:\\n\",\n       \" missing  missing  missing\\n\",\n       \" missing  missing  missing\"\n      ]\n     },\n     \"execution_count\": 24,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 14 Creating empty array with two rows and three columns\\n\",\n    \"array5 = Array{Union{Missing, Int}}(missing, 2, 3)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×2 Array{Union{Missing, Int64},2}:\\n\",\n       \" missing  missing\\n\",\n       \" missing  missing\\n\",\n       \" missing  missing\"\n      ]\n     },\n     \"execution_count\": 25,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 15 Reshaping\\n\",\n    \"reshape(array5, 3, 2)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"10×5 Array{Int64,2}:\\n\",\n       \" 16  19  19  15  15\\n\",\n       \" 16  12  19  10  18\\n\",\n       \" 20  18  19  17  13\\n\",\n       \" 16  17  20  15  17\\n\",\n       \" 13  15  10  14  19\\n\",\n       \" 20  15  18  14  18\\n\",\n       \" 12  10  13  16  10\\n\",\n       \" 20  18  11  18  14\\n\",\n       \" 17  19  12  10  14\\n\",\n       \" 11  14  10  15  19\"\n      ]\n     },\n     \"execution_count\": 26,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 16 Indexing (slicing)\\n\",\n    \"#Random uniform distribution of values in closed domain [10,20]\\n\",\n    \"#Shape 10 x 5\\n\",\n    \"array6 = rand(10:20, 10, 5)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 27,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"10-element Array{Int64,1}:\\n\",\n       \" 16\\n\",\n       \" 16\\n\",\n       \" 20\\n\",\n       \" 16\\n\",\n       \" 13\\n\",\n       \" 20\\n\",\n       \" 12\\n\",\n       \" 20\\n\",\n       \" 17\\n\",\n       \" 11\"\n      ]\n     },\n     \"execution_count\": 27,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#All rows in first column\\n\",\n    \"array6[:, 1]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 28,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"4-element Array{Int64,1}:\\n\",\n       \" 12\\n\",\n       \" 18\\n\",\n       \" 17\\n\",\n       \" 15\"\n      ]\n     },\n     \"execution_count\": 28,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#Rows two through five of second column\\n\",\n    \"array6[2:5, 2]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 29,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×2 Array{Int64,2}:\\n\",\n       \" 16  18\\n\",\n       \" 16  17\\n\",\n       \" 20  18\"\n      ]\n     },\n     \"execution_count\": 29,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#Values in rows 2, 4, 6, and in columns 1 and 5\\n\",\n    \"array6[[2, 4, 6], [1, 5]]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 30,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3-element Array{Int64,1}:\\n\",\n       \" 19\\n\",\n       \" 15\\n\",\n       \" 15\"\n      ]\n     },\n     \"execution_count\": 30,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#Values in row 1 from column 3 to the last column\\n\",\n    \"array6[1, 3:end]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 31,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"10-element BitArray{1}:\\n\",\n       \"  true\\n\",\n       \"  true\\n\",\n       \"  true\\n\",\n       \"  true\\n\",\n       \"  true\\n\",\n       \"  true\\n\",\n       \" false\\n\",\n       \"  true\\n\",\n       \"  true\\n\",\n       \" false\"\n      ]\n     },\n     \"execution_count\": 31,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Boolean logic (returning only true and false)\\n\",\n    \"array6[:, 1] .> 12\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 32,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"5-element Array{Int64,1}:\\n\",\n       \" 1\\n\",\n       \" 2\\n\",\n       \" 3\\n\",\n       \" 4\\n\",\n       \" 5\"\n      ]\n     },\n     \"execution_count\": 32,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 17 Changing element values\\n\",\n    \"array7 = [1, 2, 3, 4, 5]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 33,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"6-element Array{Int64,1}:\\n\",\n       \"  1\\n\",\n       \"  2\\n\",\n       \"  3\\n\",\n       \"  4\\n\",\n       \"  5\\n\",\n       \" 10\"\n      ]\n     },\n     \"execution_count\": 33,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#Permanantly append 10 to end of array\\n\",\n    \"push!(array7, 10)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 34,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"5-element Array{Int64,1}:\\n\",\n       \" 1\\n\",\n       \" 2\\n\",\n       \" 3\\n\",\n       \" 4\\n\",\n       \" 5\"\n      ]\n     },\n     \"execution_count\": 34,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#Remove last element\\n\",\n    \"#Only the removed value will be displayed\\n\",\n    \"pop!(array7)\\n\",\n    \"array7\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 35,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"5-element Array{Int64,1}:\\n\",\n       \"    1\\n\",\n       \" 1000\\n\",\n       \"    3\\n\",\n       \"    4\\n\",\n       \"    5\"\n      ]\n     },\n     \"execution_count\": 35,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#Change second element value to 1000\\n\",\n    \"array7[2] = 1000\\n\",\n    \"array7\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 36,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"5-element Array{Int64,1}:\\n\",\n       \"  3\\n\",\n       \"  6\\n\",\n       \"  9\\n\",\n       \" 12\\n\",\n       \" 15\"\n      ]\n     },\n     \"execution_count\": 36,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 18 List comprehension\\n\",\n    \"array8 = [3 * i for i in 1:5]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 37,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×3 Array{Int64,2}:\\n\",\n       \" 1  2  3\\n\",\n       \" 2  4  6\\n\",\n       \" 3  6  9\"\n      ]\n     },\n     \"execution_count\": 37,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#Column-wise collection iterating through second element first\\n\",\n    \"array9 = [a * b for a in 1:3, b in 1:3]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 38,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"5-element Array{Int64,1}:\\n\",\n       \"  4\\n\",\n       \"  7\\n\",\n       \" 10\\n\",\n       \" 13\\n\",\n       \" 16\"\n      ]\n     },\n     \"execution_count\": 38,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 19 Arithmetic on arrays\\n\",\n    \"#Elementwise addition of a scalar using dot notation\\n\",\n    \"array8 .+ 1\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 39,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"5-element Array{Int64,1}:\\n\",\n       \"    4\\n\",\n       \" 1006\\n\",\n       \"   12\\n\",\n       \"   16\\n\",\n       \"   20\"\n      ]\n     },\n     \"execution_count\": 39,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#Elementwise addition of similar sized arrays\\n\",\n    \"array7 + array8\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"* `Missing` is a Julia data type\\n\",\n    \"* Provides a placeholder for missing data in a statistical sense\\n\",\n    \"* Propagates automatically\\n\",\n    \"* Equality as a type can be tested\\n\",\n    \"* Sorting is possible since missing is seen as greater than other values\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 40,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"missing\"\n      ]\n     },\n     \"execution_count\": 40,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#20 Missing values\\n\",\n    \"#Propagation\\n\",\n    \"missing + 1\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 41,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"missing\"\n      ]\n     },\n     \"execution_count\": 41,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"missing > 1\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 42,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"5-element Array{Union{Missing, Int64},1}:\\n\",\n       \" 11       \\n\",\n       \" 22       \\n\",\n       \" 33       \\n\",\n       \"   missing\\n\",\n       \" 55       \"\n      ]\n     },\n     \"execution_count\": 42,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"[1, 2, 3, missing, 5] + [10, 20, 30, 40 ,50]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 43,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"missing\"\n      ]\n     },\n     \"execution_count\": 43,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#Cannot return true or false since value is not known\\n\",\n    \"missing == missing\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 44,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"true\"\n      ]\n     },\n     \"execution_count\": 44,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#Equality\\n\",\n    \"missing === missing\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 45,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"true\"\n      ]\n     },\n     \"execution_count\": 45,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"isequal(missing, missing)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 46,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"true\"\n      ]\n     },\n     \"execution_count\": 46,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#Sorting with isless()\\n\",\n    \"isless(1, missing)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 47,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"true\"\n      ]\n     },\n     \"execution_count\": 47,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"isless(Inf, missing)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 48,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×3 Array{Int8,2}:\\n\",\n       \" 0  0  0\\n\",\n       \" 0  0  0\\n\",\n       \" 0  0  0\"\n      ]\n     },\n     \"execution_count\": 48,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 21 Array of integer zeros\\n\",\n    \"array11 = zeros(Int8, 3, 3)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 49,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×3 Array{Float16,2}:\\n\",\n       \" 1.0  1.0  1.0\\n\",\n       \" 1.0  1.0  1.0\\n\",\n       \" 1.0  1.0  1.0\"\n      ]\n     },\n     \"execution_count\": 49,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 22 Array of floating point ones\\n\",\n    \"array12 = ones(Float16, 3, 3)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 50,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×3 BitArray{2}:\\n\",\n       \" true  true  true\\n\",\n       \" true  true  true\\n\",\n       \" true  true  true\"\n      ]\n     },\n     \"execution_count\": 50,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 23 Array of true (bit array) values\\n\",\n    \"array13 = trues(3, 3)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 51,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×3 Array{Int64,2}:\\n\",\n       \" 10  10  10\\n\",\n       \" 10  10  10\\n\",\n       \" 10  10  10\"\n      ]\n     },\n     \"execution_count\": 51,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 24 Fill an array with n elements of value x\\n\",\n    \"array14 = fill(10, 3, 3)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 52,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×3 Array{Float16,2}:\\n\",\n       \" 10.0  10.0  10.0\\n\",\n       \" 10.0  10.0  10.0\\n\",\n       \" 10.0  10.0  10.0\"\n      ]\n     },\n     \"execution_count\": 52,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 25 Convert elements to a different data type\\n\",\n    \"convert.(Float16, array14)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 53,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3-element Array{Int64,1}:\\n\",\n       \" 1\\n\",\n       \" 2\\n\",\n       \" 3\"\n      ]\n     },\n     \"execution_count\": 53,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 26 Concatenation\\n\",\n    \"#Concatenate arrays along rows (makes row)\\n\",\n    \"array15 = [1, 2, 3]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 54,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3-element Array{Int64,1}:\\n\",\n       \" 10\\n\",\n       \" 20\\n\",\n       \" 30\"\n      ]\n     },\n     \"execution_count\": 54,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"array16 = [10, 20, 30]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 55,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"6-element Array{Int64,1}:\\n\",\n       \"  1\\n\",\n       \"  2\\n\",\n       \"  3\\n\",\n       \" 10\\n\",\n       \" 20\\n\",\n       \" 30\"\n      ]\n     },\n     \"execution_count\": 55,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"cat(array15, array16, dims = 1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 56,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"6-element Array{Int64,1}:\\n\",\n       \"  1\\n\",\n       \"  2\\n\",\n       \"  3\\n\",\n       \" 10\\n\",\n       \" 20\\n\",\n       \" 30\"\n      ]\n     },\n     \"execution_count\": 56,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#Same as above\\n\",\n    \"vcat(array15, array16)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 57,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×2 Array{Int64,2}:\\n\",\n       \" 1  10\\n\",\n       \" 2  20\\n\",\n       \" 3  30\"\n      ]\n     },\n     \"execution_count\": 57,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#Concatenate arrays along columns (makes colums)\\n\",\n    \"cat(array15, array16, dims = 2)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 58,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×2 Array{Int64,2}:\\n\",\n       \" 1  10\\n\",\n       \" 2  20\\n\",\n       \" 3  30\"\n      ]\n     },\n     \"execution_count\": 58,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#Same as above\\n\",\n    \"hcat(array15, array16)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## II Tuples\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"* Tuples are immutable collections\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 59,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(1, 2, 3, 4, \\\"Julia\\\")\"\n      ]\n     },\n     \"execution_count\": 59,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 1 Tuples with mixed types\\n\",\n    \"tuple1 = (1, 2, 3, 4, \\\"Julia\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 60,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \" The value of the tuple at index number 1 is 1 and the type is Int64.\\n\",\n      \" The value of the tuple at index number 2 is 2 and the type is Int64.\\n\",\n      \" The value of the tuple at index number 3 is 3 and the type is Int64.\\n\",\n      \" The value of the tuple at index number 4 is 4 and the type is Int64.\\n\",\n      \" The value of the tuple at index number 5 is Julia and the type is String.\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"#For loop to look at value and type of each element\\n\",\n    \"for i in 1:length(tuple1)\\n\",\n    \"    println(\\\" The value of the tuple at index number $(i) is $(tuple1[i]) and the type is $(typeof(tuple1[i])).\\\")\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 61,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(1, 3, 5, 7)\"\n      ]\n     },\n     \"execution_count\": 61,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 2 Each element can be named\\n\",\n    \"a, b, c, seven = (1, 3, 5, 7)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 62,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"1\"\n      ]\n     },\n     \"execution_count\": 62,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"a\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 63,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"7\"\n      ]\n     },\n     \"execution_count\": 63,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"seven\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 64,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(\\\"Julia\\\", 4, 3, 2, 1)\"\n      ]\n     },\n     \"execution_count\": 64,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 2 Reverse order index (can be done with arrays too)\\n\",\n    \"tuple1[end:-1:1]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 65,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"((1, 2, 3), 1, 2, (3, 100, 1))\"\n      ]\n     },\n     \"execution_count\": 65,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 3 Mixed length tuples\\n\",\n    \"tuple2 = ((1, 2, 3), 1, 2, (3, 100, 1))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 66,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(3, 100, 1)\"\n      ]\n     },\n     \"execution_count\": 66,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#Element 4\\n\",\n    \"tuple2[4]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 67,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"100\"\n      ]\n     },\n     \"execution_count\": 67,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#Element 2 in element 4\\n\",\n    \"tuple2[4][2]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## III DICTIONARIES\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"* Dictionaries are collections of key-value pairs\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 68,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Dict{Int64,Int64} with 3 entries:\\n\",\n       \"  2 => 66\\n\",\n       \"  3 => 1\\n\",\n       \"  1 => 77\"\n      ]\n     },\n     \"execution_count\": 68,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 1 Example of a dictionary\\n\",\n    \"dictionary1 = Dict(1 => 77, 2 => 66, 3 => 1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 69,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Dict{Int64,Int64} with 3 entries:\\n\",\n       \"  2 => 200\\n\",\n       \"  3 => 300\\n\",\n       \"  1 => 100\"\n      ]\n     },\n     \"execution_count\": 69,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#The => is shorthand for the Pair() function\\n\",\n    \"dictionary2 = Dict(Pair(1,100), Pair(2,200), Pair(3,300))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 70,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Dict{Any,Any} with 3 entries:\\n\",\n       \"  2 => 66\\n\",\n       \"  3 => \\\"three\\\"\\n\",\n       \"  1 => 77\"\n      ]\n     },\n     \"execution_count\": 70,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 2 Specifying types\\n\",\n    \"dictionary3 = Dict{Any, Any}(1 => 77, 2 => 66, 3 => \\\"three\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 71,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Dict{Any,Any} with 2 entries:\\n\",\n       \"  (2, 3) => \\\"hello\\\"\\n\",\n       \"  \\\"a\\\"    => 1\"\n      ]\n     },\n     \"execution_count\": 71,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#We can get a bit crazy\\n\",\n    \"dictionary4 = Dict{Any, Any}(\\\"a\\\" => 1, (2, 3) => \\\"hello\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 72,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Dict{Symbol,Int64} with 3 entries:\\n\",\n       \"  :A => 300\\n\",\n       \"  :B => 305\\n\",\n       \"  :C => 309\"\n      ]\n     },\n     \"execution_count\": 72,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 3 Using symbols as keys\\n\",\n    \"dictionary5 = Dict(:A => 300, :B => 305, :C => 309)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 73,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"300\"\n      ]\n     },\n     \"execution_count\": 73,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"dictionary5[:A]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 74,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"true\"\n      ]\n     },\n     \"execution_count\": 74,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 4 Using in() to check on key-value pairs\\n\",\n    \"in((:A => 300), dictionary5)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 75,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"1000\"\n      ]\n     },\n     \"execution_count\": 75,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 5 Changing an existing value\\n\",\n    \"dictionary5[:C] = 1000\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 76,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Dict{Symbol,Int64} with 3 entries:\\n\",\n       \"  :A => 300\\n\",\n       \"  :B => 305\\n\",\n       \"  :C => 1000\"\n      ]\n     },\n     \"execution_count\": 76,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"dictionary5\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 77,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Dict{Symbol,Int64} with 2 entries:\\n\",\n       \"  :B => 305\\n\",\n       \"  :C => 1000\"\n      ]\n     },\n     \"execution_count\": 77,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 6 Using the delete!() function\\n\",\n    \"delete!(dictionary5, :A)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 78,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Base.KeySet for a Dict{Symbol,Int64} with 2 entries. Keys:\\n\",\n       \"  :B\\n\",\n       \"  :C\"\n      ]\n     },\n     \"execution_count\": 78,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 7 The keys of a dictionary\\n\",\n    \"keys(dictionary5)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 79,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Base.ValueIterator for a Dict{Symbol,Int64} with 2 entries. Values:\\n\",\n       \"  305\\n\",\n       \"  1000\"\n      ]\n     },\n     \"execution_count\": 79,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 8 The values of a dictionary\\n\",\n    \"values(dictionary5)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 80,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3-element Array{String,1}:\\n\",\n       \" \\\"Appendectomy\\\"   \\n\",\n       \" \\\"Colectomy\\\"      \\n\",\n       \" \\\"Cholecystectomy\\\"\"\n      ]\n     },\n     \"execution_count\": 80,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 8 Creating a dictionary with automatic keys\\n\",\n    \"procedure_vals = [\\\"Appendectomy\\\", \\\"Colectomy\\\", \\\"Cholecystectomy\\\"]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 81,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"procedure_dict = Dict{AbstractString,AbstractString}()\\n\",\n    \"for (s, n) in enumerate(procedure_vals)\\n\",\n    \"    procedure_dict[\\\"x_$(s)\\\"] = n\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 82,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Dict{AbstractString,AbstractString} with 3 entries:\\n\",\n       \"  \\\"x_1\\\" => \\\"Appendectomy\\\"\\n\",\n       \"  \\\"x_2\\\" => \\\"Colectomy\\\"\\n\",\n       \"  \\\"x_3\\\" => \\\"Cholecystectomy\\\"\"\n      ]\n     },\n     \"execution_count\": 82,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#Procedure_dict is now a dictionary\\n\",\n    \"procedure_dict\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 83,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"x_1 is Appendectomy\\n\",\n      \"x_2 is Colectomy\\n\",\n      \"x_3 is Cholecystectomy\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# 9 Iterating through a dictionary by key and value\\n\",\n    \"for (k, v) in procedure_dict\\n\",\n    \"    println(k, \\\" is \\\",v)\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 84,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Dict{String,Int64} with 6 entries:\\n\",\n       \"  \\\"f\\\" => 6\\n\",\n       \"  \\\"c\\\" => 3\\n\",\n       \"  \\\"e\\\" => 5\\n\",\n       \"  \\\"b\\\" => 2\\n\",\n       \"  \\\"a\\\" => 1\\n\",\n       \"  \\\"d\\\" => 4\"\n      ]\n     },\n     \"execution_count\": 84,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 10 Sorting\\n\",\n    \"dictionary6 = Dict(\\\"a\\\"=> 1,\\\"b\\\"=>2 ,\\\"c\\\"=>3 ,\\\"d\\\"=>4 ,\\\"e\\\"=>5 ,\\\"f\\\"=>6)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 85,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"a is 1\\n\",\n      \"b is 2\\n\",\n      \"c is 3\\n\",\n      \"d is 4\\n\",\n      \"e is 5\\n\",\n      \"f is 6\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# Sorting using a for loop\\n\",\n    \"for k in sort(collect(keys(dictionary6)))\\n\",\n    \"    println(\\\"$(k) is $(dictionary6[k])\\\")\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Julia 1.0.3\",\n   \"language\": \"julia\",\n   \"name\": \"julia-1.0\"\n  },\n  \"language_info\": {\n   \"file_extension\": \".jl\",\n   \"mimetype\": \"application/julia\",\n   \"name\": \"julia\",\n   \"version\": \"1.0.3\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "Collections_using_v_1.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Collections\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## In this lecture\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"- [Introduction](#Introduction)\\n\",\n    \"- [Arrays](#Arrays)\\n\",\n    \"- [Tuples](#Tuples)\\n\",\n    \"- [Dictionaries](#Dictionaries)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Introduction\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Collections are groups of elements.  These elements are values of different Julia types.  Storing elements in collections is one of the most useful operations in computing.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Arrays\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Arrays are collections of values separated with commas and placed inside of a set of square brackets.  They can be represented in column or in row form.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# A column vector\\n\",\n    \"array1 = [1, 2, 3]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The `typeof()` function shows that `array1` is an instance of an array object, containing integer values.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# The type of the object array1\\n\",\n    \"typeof(array1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Below we create `array2`.  Note that there are only spaces between the elements.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"1×3 Array{Int64,2}:\\n\",\n       \" 1  2  3\"\n      ]\n     },\n     \"execution_count\": 3,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# A row vector\\n\",\n    \"array2 = [1 2 3]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The `transpose()` function will create a linear algebra transpose of our column vector, `array1`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"1×3 LinearAlgebra.Transpose{Int64,Array{Int64,1}}:\\n\",\n       \" 1  2  3\"\n      ]\n     },\n     \"execution_count\": 4,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# The transpose\\n\",\n    \"transpose(array1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"When the types of the elements are not the same, all elements _inherit_ the _highest_ type.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3-element Array{Float64,1}:\\n\",\n       \" 1.0\\n\",\n       \" 2.0\\n\",\n       \" 3.0\"\n      ]\n     },\n     \"execution_count\": 5,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# With a mix of types, all the elements inherent the \\\"highest\\\" type\\n\",\n    \"array2 = [1, 2, 3.0]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"1.0\"\n      ]\n     },\n     \"execution_count\": 6,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Index for one of the original integers will be Float64\\n\",\n    \"array2[1]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Arrays can have more than one _dimension_ (here dimension does not refer to the number of elements in a vector, representing a vector field).\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×3 Array{Int64,2}:\\n\",\n       \" 1  4  7\\n\",\n       \" 2  5  8\\n\",\n       \" 3  6  9\"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Column-wise entry of multidimensional array\\n\",\n    \"array3 = [[1, 2, 3] [4, 5, 6] [7, 8, 9]]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×3 Array{Int64,2}:\\n\",\n       \" 1  2  3\\n\",\n       \" 4  5  6\\n\",\n       \" 7  8  9\"\n      ]\n     },\n     \"execution_count\": 8,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Row-wise entry of multidimensional array\\n\",\n    \"array4 = [[1 2 3]; [4 5 6]; [7 8 9]]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The `length()` function returns the number of elements.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"9\"\n      ]\n     },\n     \"execution_count\": 9,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Length of array3\\n\",\n    \"length(array3)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"9\"\n      ]\n     },\n     \"execution_count\": 10,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"length(array4)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Since the two arrays above were created differently, let's take a look at indexes of their elements.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Element 1 is 1\\n\",\n      \"Element 2 is 2\\n\",\n      \"Element 3 is 3\\n\",\n      \"Element 4 is 4\\n\",\n      \"Element 5 is 5\\n\",\n      \"Element 6 is 6\\n\",\n      \"Element 7 is 7\\n\",\n      \"Element 8 is 8\\n\",\n      \"Element 9 is 9\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# Index order of column-wise array\\n\",\n    \"for i in 1:length(array3)\\n\",\n    \"    println(\\\"Element $(i) is \\\", array3[i])\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Element 1 is 1\\n\",\n      \"Element 2 is 4\\n\",\n      \"Element 3 is 7\\n\",\n      \"Element 4 is 2\\n\",\n      \"Element 5 is 5\\n\",\n      \"Element 6 is 8\\n\",\n      \"Element 7 is 3\\n\",\n      \"Element 8 is 6\\n\",\n      \"Element 9 is 9\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# Index order of row-wise array\\n\",\n    \"for i in 1:length(array4)\\n\",\n    \"    println(\\\"Element $(i) is \\\", array4[i])\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Elements can be repeated using the `repeat()` function.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"6-element Array{Int64,1}:\\n\",\n       \" 1\\n\",\n       \" 2\\n\",\n       \" 1\\n\",\n       \" 2\\n\",\n       \" 1\\n\",\n       \" 2\"\n      ]\n     },\n     \"execution_count\": 13,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Using repeat() to repeat column elements\\n\",\n    \"repeat([1, 2], 3)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×2 Array{Int64,2}:\\n\",\n       \" 1  2\\n\",\n       \" 1  2\\n\",\n       \" 1  2\"\n      ]\n     },\n     \"execution_count\": 14,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Using repeat() to repeat row elements\\n\",\n    \"repeat([1 2], 3)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The `range()` function creates a range object.  The first argument is the value of the first element.  The `step = ` argument specifies the step-size, and the `length =` argument specifies how many elements the array should have.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"1:1:10\"\n      ]\n     },\n     \"execution_count\": 15,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Using range(start, step, number of elements)\\n\",\n    \"range(1, step = 1, length = 10)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can change the range object into an array using the `collect()` function.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"10-element Array{Int64,1}:\\n\",\n       \"  1\\n\",\n       \"  2\\n\",\n       \"  3\\n\",\n       \"  4\\n\",\n       \"  5\\n\",\n       \"  6\\n\",\n       \"  7\\n\",\n       \"  8\\n\",\n       \"  9\\n\",\n       \" 10\"\n      ]\n     },\n     \"execution_count\": 16,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Create collections using the collect() function\\n\",\n    \"collect(range(1, step = 1, length = 10))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"10-element Array{Int64,1}:\\n\",\n       \"  1\\n\",\n       \"  2\\n\",\n       \"  3\\n\",\n       \"  4\\n\",\n       \"  5\\n\",\n       \"  6\\n\",\n       \"  7\\n\",\n       \"  8\\n\",\n       \"  9\\n\",\n       \" 10\"\n      ]\n     },\n     \"execution_count\": 17,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Short-hand syntax\\n\",\n    \"collect(1:10)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can create empty arrays as placeholders.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"2×3 Array{Union{Missing, Int64},2}:\\n\",\n       \" missing  missing  missing\\n\",\n       \" missing  missing  missing\"\n      ]\n     },\n     \"execution_count\": 18,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Creating empty array with two rows and three columns\\n\",\n    \"array5 = Array{Union{Missing, Int}}(missing, 2, 3)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Reshaping is achieved using the `reshape()` function.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×2 Array{Union{Missing, Int64},2}:\\n\",\n       \" missing  missing\\n\",\n       \" missing  missing\\n\",\n       \" missing  missing\"\n      ]\n     },\n     \"execution_count\": 19,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Reshaping\\n\",\n    \"reshape(array5, 3, 2)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Every element in an arrays has an index (address) value.  We already saw this above when we created a for-loop to cycle through the values of our row vs. column created arrays.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"10×5 Array{Int64,2}:\\n\",\n       \" 18  20  13  18  13\\n\",\n       \" 16  14  14  12  16\\n\",\n       \" 14  13  11  19  20\\n\",\n       \" 19  11  10  12  14\\n\",\n       \" 20  15  15  14  12\\n\",\n       \" 11  20  20  10  20\\n\",\n       \" 10  15  17  13  12\\n\",\n       \" 11  17  13  14  16\\n\",\n       \" 18  10  16  15  10\\n\",\n       \" 12  13  18  14  10\"\n      ]\n     },\n     \"execution_count\": 20,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Creating a 10 x 5 array with each element drawn randomly from value 10 through 20\\n\",\n    \"array6 = rand(10:20, 10, 5)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Indexing is indicated with square brackets.  For arrays with rows and columns, the index values will be in the form `[row, column]`.  A colon serves as short-hand syntax indicating _all_ values.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"10-element Array{Int64,1}:\\n\",\n       \" 18\\n\",\n       \" 16\\n\",\n       \" 14\\n\",\n       \" 19\\n\",\n       \" 20\\n\",\n       \" 11\\n\",\n       \" 10\\n\",\n       \" 11\\n\",\n       \" 18\\n\",\n       \" 12\"\n      ]\n     },\n     \"execution_count\": 22,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#All rows in first column\\n\",\n    \"array6[:, 1]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"4-element Array{Int64,1}:\\n\",\n       \" 14\\n\",\n       \" 13\\n\",\n       \" 11\\n\",\n       \" 15\"\n      ]\n     },\n     \"execution_count\": 23,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Rows two through five of second column\\n\",\n    \"array6[2:5, 2]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×2 Array{Int64,2}:\\n\",\n       \" 16  16\\n\",\n       \" 19  14\\n\",\n       \" 11  20\"\n      ]\n     },\n     \"execution_count\": 24,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Values in rows 2, 4, 6, and in columns 1 and 5\\n\",\n    \"array6[[2, 4, 6], [1, 5]]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3-element Array{Int64,1}:\\n\",\n       \" 13\\n\",\n       \" 18\\n\",\n       \" 13\"\n      ]\n     },\n     \"execution_count\": 25,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Values in row 1 from column 3 to the last column\\n\",\n    \"array6[1, 3:end]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Boolean logic can be used to select values based on rules.  Below we check if each value in column one is equal to or greater than $12$.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"10-element BitArray{1}:\\n\",\n       \"  true\\n\",\n       \"  true\\n\",\n       \"  true\\n\",\n       \"  true\\n\",\n       \"  true\\n\",\n       \" false\\n\",\n       \" false\\n\",\n       \" false\\n\",\n       \"  true\\n\",\n       \" false\"\n      ]\n     },\n     \"execution_count\": 26,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Boolean logic (returning only true or false)\\n\",\n    \"array6[:, 1] .> 12\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can add values to an array using the `push!()` function.  Many functions in Julia have an added exclamation mark, called a _bang_.  It is used to make permanent changes to the values in a computer variable.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 27,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"6-element Array{Int64,1}:\\n\",\n       \"  1\\n\",\n       \"  2\\n\",\n       \"  3\\n\",\n       \"  4\\n\",\n       \"  5\\n\",\n       \" 10\"\n      ]\n     },\n     \"execution_count\": 27,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Creating a five element array\\n\",\n    \"array7 = [1, 2, 3, 4, 5]\\n\",\n    \"# Permanantly append 10 to end of array\\n\",\n    \"push!(array7, 10)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The `pop!()` function removes the last element (the bang makes it permanent).\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 28,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"10\"\n      ]\n     },\n     \"execution_count\": 28,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"pop!(array7)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can also change the value of an element by using its index.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 29,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"1000\"\n      ]\n     },\n     \"execution_count\": 29,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Change second element value to 1000\\n\",\n    \"array7[2] = 1000\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 30,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"5-element Array{Int64,1}:\\n\",\n       \"    1\\n\",\n       \" 1000\\n\",\n       \"    3\\n\",\n       \"    4\\n\",\n       \"    5\"\n      ]\n     },\n     \"execution_count\": 30,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Viewing the change\\n\",\n    \"array7\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"_List comprehension_ is a term that refers to the creating of an array using a _recipe_.  View the following example.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 31,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"5-element Array{Int64,1}:\\n\",\n       \"  3\\n\",\n       \"  6\\n\",\n       \"  9\\n\",\n       \" 12\\n\",\n       \" 15\"\n      ]\n     },\n     \"execution_count\": 31,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# An example of list comprehension\\n\",\n    \"array8 = [3 * i for i in 1:5]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The Julia syntax is very expressive, as the above example shows.  Square brackets indicate that we are creating a list.  The expression, `3 * i` indicates what we want each element to look like.  The for-loop uses the placeholder over which we wish to iterate, together with the range that we require.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"This allows for very complex array creation, which makes it quite versatile.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 32,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×3 Array{Int64,2}:\\n\",\n       \" 1  2  3\\n\",\n       \" 2  4  6\\n\",\n       \" 3  6  9\"\n      ]\n     },\n     \"execution_count\": 32,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Column-wise collection iterating through second element first\\n\",\n    \"array9 = [a * b for a in 1:3, b in 1:3]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Arithmetic operations on arrays are performed through the process of _broadcasting_.  Below we add $1$ to each element in `array9`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 34,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×3 Array{Int64,2}:\\n\",\n       \" 2  3   4\\n\",\n       \" 3  5   7\\n\",\n       \" 4  7  10\"\n      ]\n     },\n     \"execution_count\": 34,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Elementwise addition of a scalar using dot notation\\n\",\n    \"array9 .+ 1\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"When arrays are of similar shape, we can do elemnt wise addition.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 35,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"5-element Array{Int64,1}:\\n\",\n       \"    4\\n\",\n       \" 1006\\n\",\n       \"   12\\n\",\n       \"   16\\n\",\n       \"   20\"\n      ]\n     },\n     \"execution_count\": 35,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Elementwise addition of similar sized arrays\\n\",\n    \"array7 + array8\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"While it is nice to have a complete set of elements, data is often _missing_.  `Missing` is a Julia data type that provides a placeholder for missing data in a statistical sense.  It propagates automatically and its equality as a type can be tested.  Sorting is possible since missing is seen as greater than other values.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 36,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"missing\"\n      ]\n     },\n     \"execution_count\": 36,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Propagation\\n\",\n    \"missing + 1\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 37,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"missing\"\n      ]\n     },\n     \"execution_count\": 37,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"missing > 1\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 38,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"5-element Array{Union{Missing, Int64},1}:\\n\",\n       \" 11       \\n\",\n       \" 22       \\n\",\n       \" 33       \\n\",\n       \"   missing\\n\",\n       \" 55       \"\n      ]\n     },\n     \"execution_count\": 38,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"[1, 2, 3, missing, 5] + [10, 20, 30, 40 ,50]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 39,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"missing\"\n      ]\n     },\n     \"execution_count\": 39,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Checking equality of value using ==\\n\",\n    \"# Cannot return true or false since value is not known\\n\",\n    \"missing == missing\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 40,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"true\"\n      ]\n     },\n     \"execution_count\": 40,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Checking equality of type with ===\\n\",\n    \"missing === missing\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 41,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"true\"\n      ]\n     },\n     \"execution_count\": 41,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Checking type equality with isequal()\\n\",\n    \"isequal(missing, missing)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 42,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"true\"\n      ]\n     },\n     \"execution_count\": 42,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Sorting with isless()\\n\",\n    \"isless(1, missing)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 43,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"true\"\n      ]\n     },\n     \"execution_count\": 43,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Checking on infinity\\n\",\n    \"isless(Inf, missing)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can create an array of zeros.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 44,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×3 Array{Int8,2}:\\n\",\n       \" 0  0  0\\n\",\n       \" 0  0  0\\n\",\n       \" 0  0  0\"\n      ]\n     },\n     \"execution_count\": 44,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# A 3 x 3 array of integer zeros\\n\",\n    \"array11 = zeros(Int8, 3, 3)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Here is an array of ones.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 45,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×3 Array{Float16,2}:\\n\",\n       \" 1.0  1.0  1.0\\n\",\n       \" 1.0  1.0  1.0\\n\",\n       \" 1.0  1.0  1.0\"\n      ]\n     },\n     \"execution_count\": 45,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# A 3 x 3 array of floating point ones\\n\",\n    \"array12 = ones(Float16, 3, 3)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Boolean values are also allowed.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 46,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×3 BitArray{2}:\\n\",\n       \" true  true  true\\n\",\n       \" true  true  true\\n\",\n       \" true  true  true\"\n      ]\n     },\n     \"execution_count\": 46,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Array of true (bit array) values\\n\",\n    \"array13 = trues(3, 3)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can even fill an array with a specified value.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 47,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×3 Array{Int64,2}:\\n\",\n       \" 10  10  10\\n\",\n       \" 10  10  10\\n\",\n       \" 10  10  10\"\n      ]\n     },\n     \"execution_count\": 47,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Fill an array with elements of value x\\n\",\n    \"array14 = fill(10, 3, 3)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We have already seen that elemnts of different types all inherit the _highest_ type.  We can in fact, change the type manually, with the convert function.  As elsewhere in Julia, the dot opetaror maps the function to each element of a list.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 48,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×3 Array{Float16,2}:\\n\",\n       \" 10.0  10.0  10.0\\n\",\n       \" 10.0  10.0  10.0\\n\",\n       \" 10.0  10.0  10.0\"\n      ]\n     },\n     \"execution_count\": 48,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Convert elements to a different data type\\n\",\n    \"convert.(Float16, array14)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Arrays can be concatenated.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 49,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"6-element Array{Int64,1}:\\n\",\n       \"  1\\n\",\n       \"  2\\n\",\n       \"  3\\n\",\n       \" 10\\n\",\n       \" 20\\n\",\n       \" 30\"\n      ]\n     },\n     \"execution_count\": 49,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Concatenate arrays along rows (makes rows)\\n\",\n    \"array15 = [1, 2, 3]\\n\",\n    \"array16 = [10, 20, 30]\\n\",\n    \"cat(array15, array16, dims = 1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 50,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"6-element Array{Int64,1}:\\n\",\n       \"  1\\n\",\n       \"  2\\n\",\n       \"  3\\n\",\n       \" 10\\n\",\n       \" 20\\n\",\n       \" 30\"\n      ]\n     },\n     \"execution_count\": 50,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Same as above\\n\",\n    \"vcat(array15, array16)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 51,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×2 Array{Int64,2}:\\n\",\n       \" 1  10\\n\",\n       \" 2  20\\n\",\n       \" 3  30\"\n      ]\n     },\n     \"execution_count\": 51,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Concatenate arrays along columns (makes columns)\\n\",\n    \"cat(array15, array16, dims = 2)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 52,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3×2 Array{Int64,2}:\\n\",\n       \" 1  10\\n\",\n       \" 2  20\\n\",\n       \" 3  30\"\n      ]\n     },\n     \"execution_count\": 52,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Same as above\\n\",\n    \"hcat(array15, array16)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Tuples\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Tuples are immutable collections.  Immutable refers to the fact that the values are set and cannot be changed.  This type is indicated by the use of parenthesis instead of square brackets.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 57,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(1, 2.0, π = 3.1415926535897..., 4, \\\"Julia\\\")\"\n      ]\n     },\n     \"execution_count\": 57,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Tuples with mixed types\\n\",\n    \"tuple1 = (1, 2., π, 4, \\\"Julia\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Let's check on the values and types of each element.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 58,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \" The value of the tuple at index number 1 is 1 and the type is Int64.\\n\",\n      \" The value of the tuple at index number 2 is 2.0 and the type is Float64.\\n\",\n      \" The value of the tuple at index number 3 is π = 3.1415926535897... and the type is Irrational{:π}.\\n\",\n      \" The value of the tuple at index number 4 is 4 and the type is Int64.\\n\",\n      \" The value of the tuple at index number 5 is Julia and the type is String.\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# For loop to look at value and type of each element\\n\",\n    \"for i in 1:length(tuple1)\\n\",\n    \"    println(\\\" The value of the tuple at index number $(i) is $(tuple1[i]) and the type is $(typeof(tuple1[i])).\\\")\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Tuples are useful as each elemnt can be named.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 59,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"1\"\n      ]\n     },\n     \"execution_count\": 59,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Each element can be named\\n\",\n    \"a, b, c, seven = (1, 3, 5, 7)\\n\",\n    \"a\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 60,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"7\"\n      ]\n     },\n     \"execution_count\": 60,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"seven\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"A range can be used to reverse the order of a tuple.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 61,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(\\\"Julia\\\", 4, π = 3.1415926535897..., 2.0, 1)\"\n      ]\n     },\n     \"execution_count\": 61,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Reverse order index (can be done with arrays too)\\n\",\n    \"tuple1[end:-1:1]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Arrays can be made up of elemnts of different length.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 62,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"((1, 2, 3), 1, 2, (3, 100, 1))\"\n      ]\n     },\n     \"execution_count\": 62,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Mixed length tuples\\n\",\n    \"tuple2 = ((1, 2, 3), 1, 2, (3, 100, 1))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 63,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(3, 100, 1)\"\n      ]\n     },\n     \"execution_count\": 63,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Element 4\\n\",\n    \"tuple2[4]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 64,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"100\"\n      ]\n     },\n     \"execution_count\": 64,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Element 2 in element 4\\n\",\n    \"tuple2[4][2]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Dictionaries\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Dictionaries are collection sof key-value pairs.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 65,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Dict{Int64,Int64} with 3 entries:\\n\",\n       \"  2 => 66\\n\",\n       \"  3 => 1\\n\",\n       \"  1 => 77\"\n      ]\n     },\n     \"execution_count\": 65,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 1 Example of a dictionary\\n\",\n    \"dictionary1 = Dict(1 => 77, 2 => 66, 3 => 1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"In the example above we have key-values of `1,2,3` and value-values of `77,66,1`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 66,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Dict{Int64,Int64} with 3 entries:\\n\",\n       \"  2 => 200\\n\",\n       \"  3 => 300\\n\",\n       \"  1 => 100\"\n      ]\n     },\n     \"execution_count\": 66,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# The => is shorthand for the Pair() function\\n\",\n    \"dictionary2 = Dict(Pair(1,100), Pair(2,200), Pair(3,300))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can specify the types used in a dict.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 67,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Dict{Any,Any} with 3 entries:\\n\",\n       \"  2 => 66\\n\",\n       \"  3 => \\\"three\\\"\\n\",\n       \"  1 => 77\"\n      ]\n     },\n     \"execution_count\": 67,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 2 Specifying types\\n\",\n    \"dictionary3 = Dict{Any, Any}(1 => 77, 2 => 66, 3 => \\\"three\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 68,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Dict{Any,Any} with 2 entries:\\n\",\n       \"  (2, 3) => \\\"hello\\\"\\n\",\n       \"  \\\"a\\\"    => 1\"\n      ]\n     },\n     \"execution_count\": 68,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# We can get a bit crazy\\n\",\n    \"dictionary4 = Dict{Any, Any}(\\\"a\\\" => 1, (2, 3) => \\\"hello\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"It is perhaps more useful to use symbols (colon symbol and a name) as key values.  We can then refer to the key-name when we want to inquire about its value.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 69,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"300\"\n      ]\n     },\n     \"execution_count\": 69,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Using symbols as keys\\n\",\n    \"dictionary5 = Dict(:A => 300, :B => 305, :C => 309)\\n\",\n    \"dictionary5[:A]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can check on the key-value pairs in a dictionary.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 70,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"true\"\n      ]\n     },\n     \"execution_count\": 70,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Using in() to check on key-value pairs\\n\",\n    \"in((:A => 300), dictionary5)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Change value using the key is easy to perform.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 71,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Dict{Symbol,Int64} with 3 entries:\\n\",\n       \"  :A => 300\\n\",\n       \"  :B => 305\\n\",\n       \"  :C => 1000\"\n      ]\n     },\n     \"execution_count\": 71,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Changing an existing value\\n\",\n    \"dictionary5[:C] = 1000\\n\",\n    \"dictionary5\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The `delete!()` function permanently deletes a key-value pair.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 72,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Dict{Symbol,Int64} with 2 entries:\\n\",\n       \"  :B => 305\\n\",\n       \"  :C => 1000\"\n      ]\n     },\n     \"execution_count\": 72,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Using the delete!() function\\n\",\n    \"delete!(dictionary5, :A)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can list both the keys and the values in a dictionary.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 73,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Base.KeySet for a Dict{Symbol,Int64} with 2 entries. Keys:\\n\",\n       \"  :B\\n\",\n       \"  :C\"\n      ]\n     },\n     \"execution_count\": 73,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# The keys of a dictionary\\n\",\n    \"keys(dictionary5)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 74,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Base.ValueIterator for a Dict{Symbol,Int64} with 2 entries. Values:\\n\",\n       \"  305\\n\",\n       \"  1000\"\n      ]\n     },\n     \"execution_count\": 74,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"values(dictionary5)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Through the use of iteration, we can get creative in the creation and interrogation of a dictionary.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 76,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Creating a dictionary with automatic keys\\n\",\n    \"procedure_vals = [\\\"Appendectomy\\\", \\\"Colectomy\\\", \\\"Cholecystectomy\\\"]\\n\",\n    \"procedure_dict = Dict{AbstractString,AbstractString}()  # An empty dictionary with types specified\\n\",\n    \"for (s, n) in enumerate(procedure_vals)\\n\",\n    \"    procedure_dict[\\\"x_$(s)\\\"] = n\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 77,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Dict{AbstractString,AbstractString} with 3 entries:\\n\",\n       \"  \\\"x_1\\\" => \\\"Appendectomy\\\"\\n\",\n       \"  \\\"x_2\\\" => \\\"Colectomy\\\"\\n\",\n       \"  \\\"x_3\\\" => \\\"Cholecystectomy\\\"\"\n      ]\n     },\n     \"execution_count\": 77,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"procedure_dict\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 78,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"x_1 is Appendectomy\\n\",\n      \"x_2 is Colectomy\\n\",\n      \"x_3 is Cholecystectomy\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# Iterating through a dictionary by key and value\\n\",\n    \"for (k, v) in procedure_dict\\n\",\n    \"    println(k, \\\" is \\\",v)\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Lastly, we can sort using iteration.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 79,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"a is 1\\n\",\n      \"b is 2\\n\",\n      \"c is 3\\n\",\n      \"d is 4\\n\",\n      \"e is 5\\n\",\n      \"f is 6\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# Sorting\\n\",\n    \"dictionary6 = Dict(\\\"a\\\"=> 1,\\\"b\\\"=>2 ,\\\"c\\\"=>3 ,\\\"d\\\"=>4 ,\\\"e\\\"=>5 ,\\\"f\\\"=>6)\\n\",\n    \"# Sorting using a for loop\\n\",\n    \"for k in sort(collect(keys(dictionary6)))\\n\",\n    \"    println(\\\"$(k) is $(dictionary6[k])\\\")\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Julia 1.0.3\",\n   \"language\": \"julia\",\n   \"name\": \"julia-1.0\"\n  },\n  \"language_info\": {\n   \"file_extension\": \".jl\",\n   \"mimetype\": \"application/julia\",\n   \"name\": \"julia\",\n   \"version\": \"1.0.3\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "Countries.csv",
    "content": "\"iso3c\",\"iso2c\",\"name\",\"region\",\"capital\",\"longitude\",\"latitude\",\"income\",\"lending\"\n\"ABW\",\"AW\",\"Aruba\",\"Latin America & Caribbean \",\"Oranjestad\",-70.0167,12.5167,\"High income\",\"Not classified\"\n\"AFG\",\"AF\",\"Afghanistan\",\"South Asia\",\"Kabul\",69.1761,34.5228,\"Low income\",\"IDA\"\n\"AFR\",\"A9\",\"Africa\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"AGO\",\"AO\",\"Angola\",\"Sub-Saharan Africa \",\"Luanda\",13.242,-8.81155,\"Upper middle income\",\"IBRD\"\n\"ALB\",\"AL\",\"Albania\",\"Europe & Central Asia\",\"Tirane\",19.8172,41.3317,\"Upper middle income\",\"IBRD\"\n\"AND\",\"AD\",\"Andorra\",\"Europe & Central Asia\",\"Andorra la Vella\",1.5218,42.5075,\"High income\",\"Not classified\"\n\"ANR\",\"L5\",\"Andean Region\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"ARB\",\"1A\",\"Arab World\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"ARE\",\"AE\",\"United Arab Emirates\",\"Middle East & North Africa\",\"Abu Dhabi\",54.3705,24.4764,\"High income\",\"Not classified\"\n\"ARG\",\"AR\",\"Argentina\",\"Latin America & Caribbean \",\"Buenos Aires\",-58.4173,-34.6118,\"Not classified\",\"IBRD\"\n\"ARM\",\"AM\",\"Armenia\",\"Europe & Central Asia\",\"Yerevan\",44.509,40.1596,\"Lower middle income\",\"IBRD\"\n\"ASM\",\"AS\",\"American Samoa\",\"East Asia & Pacific\",\"Pago Pago\",-170.691,-14.2846,\"Upper middle income\",\"Not classified\"\n\"ATG\",\"AG\",\"Antigua and Barbuda\",\"Latin America & Caribbean \",\"Saint John's\",-61.8456,17.1175,\"High income\",\"IBRD\"\n\"AUS\",\"AU\",\"Australia\",\"East Asia & Pacific\",\"Canberra\",149.129,-35.282,\"High income\",\"Not classified\"\n\"AUT\",\"AT\",\"Austria\",\"Europe & Central Asia\",\"Vienna\",16.3798,48.2201,\"High income\",\"Not classified\"\n\"AZE\",\"AZ\",\"Azerbaijan\",\"Europe & Central Asia\",\"Baku\",49.8932,40.3834,\"Upper middle income\",\"IBRD\"\n\"BDI\",\"BI\",\"Burundi\",\"Sub-Saharan Africa \",\"Bujumbura\",29.3639,-3.3784,\"Low income\",\"IDA\"\n\"BEA\",\"B4\",\"East Asia & Pacific (IBRD-only countries)\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"BEC\",\"B7\",\"Europe & Central Asia (IBRD-only countries)\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"BEL\",\"BE\",\"Belgium\",\"Europe & Central Asia\",\"Brussels\",4.36761,50.8371,\"High income\",\"Not classified\"\n\"BEN\",\"BJ\",\"Benin\",\"Sub-Saharan Africa \",\"Porto-Novo\",2.6323,6.4779,\"Low income\",\"IDA\"\n\"BFA\",\"BF\",\"Burkina Faso\",\"Sub-Saharan Africa \",\"Ouagadougou\",-1.53395,12.3605,\"Low income\",\"IDA\"\n\"BGD\",\"BD\",\"Bangladesh\",\"South Asia\",\"Dhaka\",90.4113,23.7055,\"Lower middle income\",\"IDA\"\n\"BGR\",\"BG\",\"Bulgaria\",\"Europe & Central Asia\",\"Sofia\",23.3238,42.7105,\"Upper middle income\",\"IBRD\"\n\"BHI\",\"B1\",\"IBRD countries classified as high income\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"BHR\",\"BH\",\"Bahrain\",\"Middle East & North Africa\",\"Manama\",50.5354,26.1921,\"High income\",\"Not classified\"\n\"BHS\",\"BS\",\"Bahamas, The\",\"Latin America & Caribbean \",\"Nassau\",-77.339,25.0661,\"High income\",\"Not classified\"\n\"BIH\",\"BA\",\"Bosnia and Herzegovina\",\"Europe & Central Asia\",\"Sarajevo\",18.4214,43.8607,\"Upper middle income\",\"IBRD\"\n\"BLA\",\"B2\",\"Latin America & the Caribbean (IBRD-only countries)\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"BLR\",\"BY\",\"Belarus\",\"Europe & Central Asia\",\"Minsk\",27.5766,53.9678,\"Upper middle income\",\"IBRD\"\n\"BLZ\",\"BZ\",\"Belize\",\"Latin America & Caribbean \",\"Belmopan\",-88.7713,17.2534,\"Upper middle income\",\"IBRD\"\n\"BMN\",\"B3\",\"Middle East & North Africa (IBRD-only countries)\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"BMU\",\"BM\",\"Bermuda\",\"North America\",\"Hamilton\",-64.706,32.3293,\"High income\",\"Not classified\"\n\"BOL\",\"BO\",\"Bolivia\",\"Latin America & Caribbean \",\"La Paz\",-66.1936,-13.9908,\"Lower middle income\",\"Blend\"\n\"BRA\",\"BR\",\"Brazil\",\"Latin America & Caribbean \",\"Brasilia\",-47.9292,-15.7801,\"Upper middle income\",\"IBRD\"\n\"BRB\",\"BB\",\"Barbados\",\"Latin America & Caribbean \",\"Bridgetown\",-59.6105,13.0935,\"High income\",\"Not classified\"\n\"BRN\",\"BN\",\"Brunei Darussalam\",\"East Asia & Pacific\",\"Bandar Seri Begawan\",114.946,4.94199,\"High income\",\"Not classified\"\n\"BSS\",\"B6\",\"Sub-Saharan Africa (IBRD-only countries)\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"BTN\",\"BT\",\"Bhutan\",\"South Asia\",\"Thimphu\",89.6177,27.5768,\"Lower middle income\",\"IDA\"\n\"BWA\",\"BW\",\"Botswana\",\"Sub-Saharan Africa \",\"Gaborone\",25.9201,-24.6544,\"Upper middle income\",\"IBRD\"\n\"CAA\",\"C9\",\"Sub-Saharan Africa (IFC classification)\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"CAF\",\"CF\",\"Central African Republic\",\"Sub-Saharan Africa \",\"Bangui\",21.6407,5.63056,\"Low income\",\"IDA\"\n\"CAN\",\"CA\",\"Canada\",\"North America\",\"Ottawa\",-75.6919,45.4215,\"High income\",\"Not classified\"\n\"CEA\",\"C4\",\"East Asia and the Pacific (IFC classification)\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"CEB\",\"B8\",\"Central Europe and the Baltics\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"CEU\",\"C5\",\"Europe and Central Asia (IFC classification)\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"CHE\",\"CH\",\"Switzerland\",\"Europe & Central Asia\",\"Bern\",7.44821,46.948,\"High income\",\"Not classified\"\n\"CHI\",\"JG\",\"Channel Islands\",\"Europe & Central Asia\",\"\",NA,NA,\"High income\",\"Not classified\"\n\"CHL\",\"CL\",\"Chile\",\"Latin America & Caribbean \",\"Santiago\",-70.6475,-33.475,\"High income\",\"IBRD\"\n\"CHN\",\"CN\",\"China\",\"East Asia & Pacific\",\"Beijing\",116.286,40.0495,\"Upper middle income\",\"IBRD\"\n\"CIV\",\"CI\",\"Cote d'Ivoire\",\"Sub-Saharan Africa \",\"Yamoussoukro\",-4.0305,5.332,\"Lower middle income\",\"IDA\"\n\"CLA\",\"C6\",\"Latin America and the Caribbean (IFC classification)\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"CME\",\"C7\",\"Middle East and North Africa (IFC classification)\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"CMR\",\"CM\",\"Cameroon\",\"Sub-Saharan Africa \",\"Yaounde\",11.5174,3.8721,\"Lower middle income\",\"Blend\"\n\"COD\",\"CD\",\"Congo, Dem. Rep.\",\"Sub-Saharan Africa \",\"Kinshasa\",15.3222,-4.325,\"Low income\",\"IDA\"\n\"COG\",\"CG\",\"Congo, Rep.\",\"Sub-Saharan Africa \",\"Brazzaville\",15.2662,-4.2767,\"Lower middle income\",\"Blend\"\n\"COL\",\"CO\",\"Colombia\",\"Latin America & Caribbean \",\"Bogota\",-74.082,4.60987,\"Upper middle income\",\"IBRD\"\n\"COM\",\"KM\",\"Comoros\",\"Sub-Saharan Africa \",\"Moroni\",43.2418,-11.6986,\"Low income\",\"IDA\"\n\"CPV\",\"CV\",\"Cabo Verde\",\"Sub-Saharan Africa \",\"Praia\",-23.5087,14.9218,\"Lower middle income\",\"Blend\"\n\"CRI\",\"CR\",\"Costa Rica\",\"Latin America & Caribbean \",\"San Jose\",-84.0089,9.63701,\"Upper middle income\",\"IBRD\"\n\"CSA\",\"C8\",\"South Asia (IFC classification)\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"CSS\",\"S3\",\"Caribbean small states\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"CUB\",\"CU\",\"Cuba\",\"Latin America & Caribbean \",\"Havana\",-82.3667,23.1333,\"Upper middle income\",\"Not classified\"\n\"CUW\",\"CW\",\"Curacao\",\"Latin America & Caribbean \",\"Willemstad\",NA,NA,\"High income\",\"Not classified\"\n\"CYM\",\"KY\",\"Cayman Islands\",\"Latin America & Caribbean \",\"George Town\",-81.3857,19.3022,\"High income\",\"Not classified\"\n\"CYP\",\"CY\",\"Cyprus\",\"Europe & Central Asia\",\"Nicosia\",33.3736,35.1676,\"High income\",\"Not classified\"\n\"CZE\",\"CZ\",\"Czech Republic\",\"Europe & Central Asia\",\"Prague\",14.4205,50.0878,\"High income\",\"Not classified\"\n\"DEA\",\"D4\",\"East Asia & Pacific (IDA-eligible countries)\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"DEC\",\"D7\",\"Europe & Central Asia (IDA-eligible countries)\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"DEU\",\"DE\",\"Germany\",\"Europe & Central Asia\",\"Berlin\",13.4115,52.5235,\"High income\",\"Not classified\"\n\"DFS\",\"D8\",\"IDA countries classified as Fragile Situations\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"DJI\",\"DJ\",\"Djibouti\",\"Middle East & North Africa\",\"Djibouti\",43.1425,11.5806,\"Lower middle income\",\"IDA\"\n\"DLA\",\"D2\",\"Latin America & the Caribbean (IDA-eligible countries)\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"DMA\",\"DM\",\"Dominica\",\"Latin America & Caribbean \",\"Roseau\",-61.39,15.2976,\"Upper middle income\",\"Blend\"\n\"DMN\",\"D3\",\"Middle East & North Africa (IDA-eligible countries)\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"DNF\",\"D9\",\"IDA countries not classified as Fragile Situations\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"DNK\",\"DK\",\"Denmark\",\"Europe & Central Asia\",\"Copenhagen\",12.5681,55.6763,\"High income\",\"Not classified\"\n\"DNS\",\"N6\",\"IDA countries in Sub-Saharan Africa not classified as fragile situations \",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"DOM\",\"DO\",\"Dominican Republic\",\"Latin America & Caribbean \",\"Santo Domingo\",-69.8908,18.479,\"Upper middle income\",\"IBRD\"\n\"DSA\",\"D5\",\"South Asia (IDA-eligible countries)\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"DSF\",\"F6\",\"IDA countries in Sub-Saharan Africa classified as fragile situations \",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"DSS\",\"D6\",\"Sub-Saharan Africa (IDA-eligible countries)\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"DXS\",\"6D\",\"IDA total, excluding Sub-Saharan Africa\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"DZA\",\"DZ\",\"Algeria\",\"Middle East & North Africa\",\"Algiers\",3.05097,36.7397,\"Upper middle income\",\"IBRD\"\n\"EAP\",\"4E\",\"East Asia & Pacific (excluding high income)\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"EAR\",\"V2\",\"Early-demographic dividend\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"EAS\",\"Z4\",\"East Asia & Pacific\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"ECA\",\"7E\",\"Europe & Central Asia (excluding high income)\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"ECS\",\"Z7\",\"Europe & Central Asia\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"ECU\",\"EC\",\"Ecuador\",\"Latin America & Caribbean \",\"Quito\",-78.5243,-0.229498,\"Upper middle income\",\"IBRD\"\n\"EGY\",\"EG\",\"Egypt, Arab Rep.\",\"Middle East & North Africa\",\"Cairo\",31.2461,30.0982,\"Lower middle income\",\"IBRD\"\n\"EMU\",\"XC\",\"Euro area\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"ERI\",\"ER\",\"Eritrea\",\"Sub-Saharan Africa \",\"Asmara\",38.9183,15.3315,\"Low income\",\"IDA\"\n\"ESP\",\"ES\",\"Spain\",\"Europe & Central Asia\",\"Madrid\",-3.70327,40.4167,\"High income\",\"Not classified\"\n\"EST\",\"EE\",\"Estonia\",\"Europe & Central Asia\",\"Tallinn\",24.7586,59.4392,\"High income\",\"Not classified\"\n\"ETH\",\"ET\",\"Ethiopia\",\"Sub-Saharan Africa \",\"Addis Ababa\",38.7468,9.02274,\"Low income\",\"IDA\"\n\"EUU\",\"EU\",\"European Union\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"FCS\",\"F1\",\"Fragile and conflict affected situations\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"FIN\",\"FI\",\"Finland\",\"Europe & Central Asia\",\"Helsinki\",24.9525,60.1608,\"High income\",\"Not classified\"\n\"FJI\",\"FJ\",\"Fiji\",\"East Asia & Pacific\",\"Suva\",178.399,-18.1149,\"Upper middle income\",\"IBRD\"\n\"FRA\",\"FR\",\"France\",\"Europe & Central Asia\",\"Paris\",2.35097,48.8566,\"High income\",\"Not classified\"\n\"FRO\",\"FO\",\"Faroe Islands\",\"Europe & Central Asia\",\"Torshavn\",-6.91181,61.8926,\"High income\",\"Not classified\"\n\"FSM\",\"FM\",\"Micronesia, Fed. Sts.\",\"East Asia & Pacific\",\"Palikir\",158.185,6.91771,\"Lower middle income\",\"IDA\"\n\"FXS\",\"6F\",\"IDA countries classified as fragile situations, excluding Sub-Saharan Africa\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"GAB\",\"GA\",\"Gabon\",\"Sub-Saharan Africa \",\"Libreville\",9.45162,0.38832,\"Upper middle income\",\"IBRD\"\n\"GBR\",\"GB\",\"United Kingdom\",\"Europe & Central Asia\",\"London\",-0.126236,51.5002,\"High income\",\"Not classified\"\n\"GEO\",\"GE\",\"Georgia\",\"Europe & Central Asia\",\"Tbilisi\",44.793,41.71,\"Upper middle income\",\"IBRD\"\n\"GHA\",\"GH\",\"Ghana\",\"Sub-Saharan Africa \",\"Accra\",-0.20795,5.57045,\"Lower middle income\",\"IDA\"\n\"GIB\",\"GI\",\"Gibraltar\",\"Europe & Central Asia\",\"\",NA,NA,\"High income\",\"Not classified\"\n\"GIN\",\"GN\",\"Guinea\",\"Sub-Saharan Africa \",\"Conakry\",-13.7,9.51667,\"Low income\",\"IDA\"\n\"GMB\",\"GM\",\"Gambia, The\",\"Sub-Saharan Africa \",\"Banjul\",-16.5885,13.4495,\"Low income\",\"IDA\"\n\"GNB\",\"GW\",\"Guinea-Bissau\",\"Sub-Saharan Africa \",\"Bissau\",-15.1804,11.8037,\"Low income\",\"IDA\"\n\"GNQ\",\"GQ\",\"Equatorial Guinea\",\"Sub-Saharan Africa \",\"Malabo\",8.7741,3.7523,\"Upper middle income\",\"IBRD\"\n\"GRC\",\"GR\",\"Greece\",\"Europe & Central Asia\",\"Athens\",23.7166,37.9792,\"High income\",\"Not classified\"\n\"GRD\",\"GD\",\"Grenada\",\"Latin America & Caribbean \",\"Saint George's\",-61.7449,12.0653,\"Upper middle income\",\"Blend\"\n\"GRL\",\"GL\",\"Greenland\",\"Europe & Central Asia\",\"Nuuk\",-51.7214,64.1836,\"High income\",\"Not classified\"\n\"GTM\",\"GT\",\"Guatemala\",\"Latin America & Caribbean \",\"Guatemala City\",-90.5328,14.6248,\"Lower middle income\",\"IBRD\"\n\"GUM\",\"GU\",\"Guam\",\"East Asia & Pacific\",\"Agana\",144.794,13.4443,\"High income\",\"Not classified\"\n\"GUY\",\"GY\",\"Guyana\",\"Latin America & Caribbean \",\"Georgetown\",-58.1548,6.80461,\"Upper middle income\",\"IDA\"\n\"HIC\",\"XD\",\"High income\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"HKG\",\"HK\",\"Hong Kong SAR, China\",\"East Asia & Pacific\",\"\",114.109,22.3964,\"High income\",\"Not classified\"\n\"HND\",\"HN\",\"Honduras\",\"Latin America & Caribbean \",\"Tegucigalpa\",-87.4667,15.1333,\"Lower middle income\",\"IDA\"\n\"HPC\",\"XE\",\"Heavily indebted poor countries (HIPC)\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"HRV\",\"HR\",\"Croatia\",\"Europe & Central Asia\",\"Zagreb\",15.9614,45.8069,\"High income\",\"IBRD\"\n\"HTI\",\"HT\",\"Haiti\",\"Latin America & Caribbean \",\"Port-au-Prince\",-72.3288,18.5392,\"Low income\",\"IDA\"\n\"HUN\",\"HU\",\"Hungary\",\"Europe & Central Asia\",\"Budapest\",19.0408,47.4984,\"High income\",\"Not classified\"\n\"IBB\",\"ZB\",\"IBRD, including blend\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"IBD\",\"XF\",\"IBRD only\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"IBT\",\"ZT\",\"IDA & IBRD total\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"IDA\",\"XG\",\"IDA total\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"IDB\",\"XH\",\"IDA blend\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"IDN\",\"ID\",\"Indonesia\",\"East Asia & Pacific\",\"Jakarta\",106.83,-6.19752,\"Lower middle income\",\"IBRD\"\n\"IDX\",\"XI\",\"IDA only\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"IMN\",\"IM\",\"Isle of Man\",\"Europe & Central Asia\",\"Douglas\",-4.47928,54.1509,\"High income\",\"Not classified\"\n\"IND\",\"IN\",\"India\",\"South Asia\",\"New Delhi\",77.225,28.6353,\"Lower middle income\",\"IBRD\"\n\"INX\",\"XY\",\"Not classified\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"IRL\",\"IE\",\"Ireland\",\"Europe & Central Asia\",\"Dublin\",-6.26749,53.3441,\"High income\",\"Not classified\"\n\"IRN\",\"IR\",\"Iran, Islamic Rep.\",\"Middle East & North Africa\",\"Tehran\",51.4447,35.6878,\"Upper middle income\",\"IBRD\"\n\"IRQ\",\"IQ\",\"Iraq\",\"Middle East & North Africa\",\"Baghdad\",44.394,33.3302,\"Upper middle income\",\"IBRD\"\n\"ISL\",\"IS\",\"Iceland\",\"Europe & Central Asia\",\"Reykjavik\",-21.8952,64.1353,\"High income\",\"Not classified\"\n\"ISR\",\"IL\",\"Israel\",\"Middle East & North Africa\",\"\",35.2035,31.7717,\"High income\",\"Not classified\"\n\"ITA\",\"IT\",\"Italy\",\"Europe & Central Asia\",\"Rome\",12.4823,41.8955,\"High income\",\"Not classified\"\n\"JAM\",\"JM\",\"Jamaica\",\"Latin America & Caribbean \",\"Kingston\",-76.792,17.9927,\"Upper middle income\",\"IBRD\"\n\"JOR\",\"JO\",\"Jordan\",\"Middle East & North Africa\",\"Amman\",35.9263,31.9497,\"Upper middle income\",\"IBRD\"\n\"JPN\",\"JP\",\"Japan\",\"East Asia & Pacific\",\"Tokyo\",139.77,35.67,\"High income\",\"Not classified\"\n\"KAZ\",\"KZ\",\"Kazakhstan\",\"Europe & Central Asia\",\"Astana\",71.4382,51.1879,\"Upper middle income\",\"IBRD\"\n\"KEN\",\"KE\",\"Kenya\",\"Sub-Saharan Africa \",\"Nairobi\",36.8126,-1.27975,\"Lower middle income\",\"IDA\"\n\"KGZ\",\"KG\",\"Kyrgyz Republic\",\"Europe & Central Asia\",\"Bishkek\",74.6057,42.8851,\"Lower middle income\",\"IDA\"\n\"KHM\",\"KH\",\"Cambodia\",\"East Asia & Pacific\",\"Phnom Penh\",104.874,11.5556,\"Lower middle income\",\"IDA\"\n\"KIR\",\"KI\",\"Kiribati\",\"East Asia & Pacific\",\"Tarawa\",172.979,1.32905,\"Lower middle income\",\"IDA\"\n\"KNA\",\"KN\",\"St. Kitts and Nevis\",\"Latin America & Caribbean \",\"Basseterre\",-62.7309,17.3,\"High income\",\"IBRD\"\n\"KOR\",\"KR\",\"Korea, Rep.\",\"East Asia & Pacific\",\"Seoul\",126.957,37.5323,\"High income\",\"Not classified\"\n\"KSV\",\"XK\",\"Kosovo\",\"Europe & Central Asia\",\"Pristina\",20.926,42.565,\"Lower middle income\",\"IDA\"\n\"KWT\",\"KW\",\"Kuwait\",\"Middle East & North Africa\",\"Kuwait City\",47.9824,29.3721,\"High income\",\"Not classified\"\n\"LAC\",\"XJ\",\"Latin America & Caribbean (excluding high income)\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"LAO\",\"LA\",\"Lao PDR\",\"East Asia & Pacific\",\"Vientiane\",102.177,18.5826,\"Lower middle income\",\"IDA\"\n\"LBN\",\"LB\",\"Lebanon\",\"Middle East & North Africa\",\"Beirut\",35.5134,33.8872,\"Upper middle income\",\"IBRD\"\n\"LBR\",\"LR\",\"Liberia\",\"Sub-Saharan Africa \",\"Monrovia\",-10.7957,6.30039,\"Low income\",\"IDA\"\n\"LBY\",\"LY\",\"Libya\",\"Middle East & North Africa\",\"Tripoli\",13.1072,32.8578,\"Upper middle income\",\"IBRD\"\n\"LCA\",\"LC\",\"St. Lucia\",\"Latin America & Caribbean \",\"Castries\",-60.9832,14.0,\"Upper middle income\",\"Blend\"\n\"LCN\",\"ZJ\",\"Latin America & Caribbean \",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"LCR\",\"L4\",\"Latin America and the Caribbean\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"LDC\",\"XL\",\"Least developed countries: UN classification\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"LIC\",\"XM\",\"Low income\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"LIE\",\"LI\",\"Liechtenstein\",\"Europe & Central Asia\",\"Vaduz\",9.52148,47.1411,\"High income\",\"Not classified\"\n\"LKA\",\"LK\",\"Sri Lanka\",\"South Asia\",\"Colombo\",79.8528,6.92148,\"Lower middle income\",\"Blend\"\n\"LMC\",\"XN\",\"Lower middle income\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"LMY\",\"XO\",\"Low & middle income\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"LSO\",\"LS\",\"Lesotho\",\"Sub-Saharan Africa \",\"Maseru\",27.7167,-29.5208,\"Lower middle income\",\"IDA\"\n\"LTE\",\"V3\",\"Late-demographic dividend\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"LTU\",\"LT\",\"Lithuania\",\"Europe & Central Asia\",\"Vilnius\",25.2799,54.6896,\"High income\",\"Not classified\"\n\"LUX\",\"LU\",\"Luxembourg\",\"Europe & Central Asia\",\"Luxembourg\",6.1296,49.61,\"High income\",\"Not classified\"\n\"LVA\",\"LV\",\"Latvia\",\"Europe & Central Asia\",\"Riga\",24.1048,56.9465,\"High income\",\"Not classified\"\n\"MAC\",\"MO\",\"Macao SAR, China\",\"East Asia & Pacific\",\"\",113.55,22.1667,\"High income\",\"Not classified\"\n\"MAF\",\"MF\",\"St. Martin (French part)\",\"Latin America & Caribbean \",\"Marigot\",NA,NA,\"High income\",\"Not classified\"\n\"MAR\",\"MA\",\"Morocco\",\"Middle East & North Africa\",\"Rabat\",-6.8704,33.9905,\"Lower middle income\",\"IBRD\"\n\"MCA\",\"L6\",\"Central America\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"MCO\",\"MC\",\"Monaco\",\"Europe & Central Asia\",\"Monaco\",7.41891,43.7325,\"High income\",\"Not classified\"\n\"MDA\",\"MD\",\"Moldova\",\"Europe & Central Asia\",\"Chisinau\",28.8497,47.0167,\"Lower middle income\",\"Blend\"\n\"MDE\",\"M1\",\"Middle East (developing only)\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"MDG\",\"MG\",\"Madagascar\",\"Sub-Saharan Africa \",\"Antananarivo\",45.7167,-20.4667,\"Low income\",\"IDA\"\n\"MDV\",\"MV\",\"Maldives\",\"South Asia\",\"Male\",73.5109,4.1742,\"Upper middle income\",\"IDA\"\n\"MEA\",\"ZQ\",\"Middle East & North Africa\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"MEX\",\"MX\",\"Mexico\",\"Latin America & Caribbean \",\"Mexico City\",-99.1276,19.427,\"Upper middle income\",\"IBRD\"\n\"MHL\",\"MH\",\"Marshall Islands\",\"East Asia & Pacific\",\"Majuro\",171.135,7.11046,\"Upper middle income\",\"IDA\"\n\"MIC\",\"XP\",\"Middle income\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"MKD\",\"MK\",\"Macedonia, FYR\",\"Europe & Central Asia\",\"Skopje\",21.4361,42.0024,\"Upper middle income\",\"IBRD\"\n\"MLI\",\"ML\",\"Mali\",\"Sub-Saharan Africa \",\"Bamako\",-7.50034,13.5667,\"Low income\",\"IDA\"\n\"MLT\",\"MT\",\"Malta\",\"Middle East & North Africa\",\"Valletta\",14.5189,35.9042,\"High income\",\"Not classified\"\n\"MMR\",\"MM\",\"Myanmar\",\"East Asia & Pacific\",\"Naypyidaw\",95.9562,21.914,\"Lower middle income\",\"IDA\"\n\"MNA\",\"XQ\",\"Middle East & North Africa (excluding high income)\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"MNE\",\"ME\",\"Montenegro\",\"Europe & Central Asia\",\"Podgorica\",19.2595,42.4602,\"Upper middle income\",\"IBRD\"\n\"MNG\",\"MN\",\"Mongolia\",\"East Asia & Pacific\",\"Ulaanbaatar\",106.937,47.9129,\"Lower middle income\",\"Blend\"\n\"MNP\",\"MP\",\"Northern Mariana Islands\",\"East Asia & Pacific\",\"Saipan\",145.765,15.1935,\"High income\",\"Not classified\"\n\"MOZ\",\"MZ\",\"Mozambique\",\"Sub-Saharan Africa \",\"Maputo\",32.5713,-25.9664,\"Low income\",\"IDA\"\n\"MRT\",\"MR\",\"Mauritania\",\"Sub-Saharan Africa \",\"Nouakchott\",-15.9824,18.2367,\"Lower middle income\",\"IDA\"\n\"MUS\",\"MU\",\"Mauritius\",\"Sub-Saharan Africa \",\"Port Louis\",57.4977,-20.1605,\"Upper middle income\",\"IBRD\"\n\"MWI\",\"MW\",\"Malawi\",\"Sub-Saharan Africa \",\"Lilongwe\",33.7703,-13.9899,\"Low income\",\"IDA\"\n\"MYS\",\"MY\",\"Malaysia\",\"East Asia & Pacific\",\"Kuala Lumpur\",101.684,3.12433,\"Upper middle income\",\"IBRD\"\n\"NAC\",\"XU\",\"North America\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"NAF\",\"M2\",\"North Africa\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"NAM\",\"NA\",\"Namibia\",\"Sub-Saharan Africa \",\"Windhoek\",17.0931,-22.5648,\"Upper middle income\",\"IBRD\"\n\"NCL\",\"NC\",\"New Caledonia\",\"East Asia & Pacific\",\"Noum'ea\",166.464,-22.2677,\"High income\",\"Not classified\"\n\"NER\",\"NE\",\"Niger\",\"Sub-Saharan Africa \",\"Niamey\",2.1073,13.514,\"Low income\",\"IDA\"\n\"NGA\",\"NG\",\"Nigeria\",\"Sub-Saharan Africa \",\"Abuja\",7.48906,9.05804,\"Lower middle income\",\"Blend\"\n\"NIC\",\"NI\",\"Nicaragua\",\"Latin America & Caribbean \",\"Managua\",-86.2734,12.1475,\"Lower middle income\",\"IDA\"\n\"NLD\",\"NL\",\"Netherlands\",\"Europe & Central Asia\",\"Amsterdam\",4.89095,52.3738,\"High income\",\"Not classified\"\n\"NLS\",\"6L\",\"Non-resource rich Sub-Saharan Africa countries, of which landlocked\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"NOR\",\"NO\",\"Norway\",\"Europe & Central Asia\",\"Oslo\",10.7387,59.9138,\"High income\",\"Not classified\"\n\"NPL\",\"NP\",\"Nepal\",\"South Asia\",\"Kathmandu\",85.3157,27.6939,\"Low income\",\"IDA\"\n\"NRS\",\"6X\",\"Non-resource rich Sub-Saharan Africa countries\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"NRU\",\"NR\",\"Nauru\",\"East Asia & Pacific\",\"Yaren District\",166.920867,-0.5477,\"High income\",\"IBRD\"\n\"NXS\",\"6N\",\"IDA countries not classified as fragile situations, excluding Sub-Saharan Africa\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"NZL\",\"NZ\",\"New Zealand\",\"East Asia & Pacific\",\"Wellington\",174.776,-41.2865,\"High income\",\"Not classified\"\n\"OED\",\"OE\",\"OECD members\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"OMN\",\"OM\",\"Oman\",\"Middle East & North Africa\",\"Muscat\",58.5874,23.6105,\"High income\",\"Not classified\"\n\"OSS\",\"S4\",\"Other small states\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"PAK\",\"PK\",\"Pakistan\",\"South Asia\",\"Islamabad\",72.8,30.5167,\"Lower middle income\",\"Blend\"\n\"PAN\",\"PA\",\"Panama\",\"Latin America & Caribbean \",\"Panama City\",-79.5188,8.99427,\"Upper middle income\",\"IBRD\"\n\"PER\",\"PE\",\"Peru\",\"Latin America & Caribbean \",\"Lima\",-77.0465,-12.0931,\"Upper middle income\",\"IBRD\"\n\"PHL\",\"PH\",\"Philippines\",\"East Asia & Pacific\",\"Manila\",121.035,14.5515,\"Lower middle income\",\"IBRD\"\n\"PLW\",\"PW\",\"Palau\",\"East Asia & Pacific\",\"Koror\",134.479,7.34194,\"Upper middle income\",\"IBRD\"\n\"PNG\",\"PG\",\"Papua New Guinea\",\"East Asia & Pacific\",\"Port Moresby\",147.194,-9.47357,\"Lower middle income\",\"Blend\"\n\"POL\",\"PL\",\"Poland\",\"Europe & Central Asia\",\"Warsaw\",21.02,52.26,\"High income\",\"IBRD\"\n\"PRE\",\"V1\",\"Pre-demographic dividend\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"PRI\",\"PR\",\"Puerto Rico\",\"Latin America & Caribbean \",\"San Juan\",-66.0,18.23,\"High income\",\"Not classified\"\n\"PRK\",\"KP\",\"Korea, Dem. People’s Rep.\",\"East Asia & Pacific\",\"Pyongyang\",125.754,39.0319,\"Low income\",\"Not classified\"\n\"PRT\",\"PT\",\"Portugal\",\"Europe & Central Asia\",\"Lisbon\",-9.13552,38.7072,\"High income\",\"Not classified\"\n\"PRY\",\"PY\",\"Paraguay\",\"Latin America & Caribbean \",\"Asuncion\",-57.6362,-25.3005,\"Upper middle income\",\"IBRD\"\n\"PSE\",\"PS\",\"West Bank and Gaza\",\"Middle East & North Africa\",\"\",NA,NA,\"Lower middle income\",\"Not classified\"\n\"PSS\",\"S2\",\"Pacific island small states\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"PST\",\"V4\",\"Post-demographic dividend\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"PYF\",\"PF\",\"French Polynesia\",\"East Asia & Pacific\",\"Papeete\",-149.57,-17.535,\"High income\",\"Not classified\"\n\"QAT\",\"QA\",\"Qatar\",\"Middle East & North Africa\",\"Doha\",51.5082,25.2948,\"High income\",\"Not classified\"\n\"ROU\",\"RO\",\"Romania\",\"Europe & Central Asia\",\"Bucharest\",26.0979,44.4479,\"Upper middle income\",\"IBRD\"\n\"RRS\",\"R6\",\"Resource rich Sub-Saharan Africa countries\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"RSO\",\"O6\",\"Resource rich Sub-Saharan Africa countries, of which oil exporters\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"RUS\",\"RU\",\"Russian Federation\",\"Europe & Central Asia\",\"Moscow\",37.6176,55.7558,\"Upper middle income\",\"IBRD\"\n\"RWA\",\"RW\",\"Rwanda\",\"Sub-Saharan Africa \",\"Kigali\",30.0587,-1.95325,\"Low income\",\"IDA\"\n\"SAS\",\"8S\",\"South Asia\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"SAU\",\"SA\",\"Saudi Arabia\",\"Middle East & North Africa\",\"Riyadh\",46.6977,24.6748,\"High income\",\"Not classified\"\n\"SCE\",\"L7\",\"Southern Cone\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"SDN\",\"SD\",\"Sudan\",\"Sub-Saharan Africa \",\"Khartoum\",32.5363,15.5932,\"Lower middle income\",\"IDA\"\n\"SEN\",\"SN\",\"Senegal\",\"Sub-Saharan Africa \",\"Dakar\",-17.4734,14.7247,\"Low income\",\"IDA\"\n\"SGP\",\"SG\",\"Singapore\",\"East Asia & Pacific\",\"Singapore\",103.85,1.28941,\"High income\",\"Not classified\"\n\"SLB\",\"SB\",\"Solomon Islands\",\"East Asia & Pacific\",\"Honiara\",159.949,-9.42676,\"Lower middle income\",\"IDA\"\n\"SLE\",\"SL\",\"Sierra Leone\",\"Sub-Saharan Africa \",\"Freetown\",-13.2134,8.4821,\"Low income\",\"IDA\"\n\"SLV\",\"SV\",\"El Salvador\",\"Latin America & Caribbean \",\"San Salvador\",-89.2073,13.7034,\"Lower middle income\",\"IBRD\"\n\"SMR\",\"SM\",\"San Marino\",\"Europe & Central Asia\",\"San Marino\",12.4486,43.9322,\"High income\",\"Not classified\"\n\"SOM\",\"SO\",\"Somalia\",\"Sub-Saharan Africa \",\"Mogadishu\",45.3254,2.07515,\"Low income\",\"IDA\"\n\"SRB\",\"RS\",\"Serbia\",\"Europe & Central Asia\",\"Belgrade\",20.4656,44.8024,\"Upper middle income\",\"IBRD\"\n\"SSA\",\"ZF\",\"Sub-Saharan Africa (excluding high income)\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"SSD\",\"SS\",\"South Sudan\",\"Sub-Saharan Africa \",\"Juba\",31.6,4.85,\"Low income\",\"IDA\"\n\"SSF\",\"ZG\",\"Sub-Saharan Africa \",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"SST\",\"S1\",\"Small states\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"STP\",\"ST\",\"Sao Tome and Principe\",\"Sub-Saharan Africa \",\"Sao Tome\",6.6071,0.20618,\"Lower middle income\",\"IDA\"\n\"SUR\",\"SR\",\"Suriname\",\"Latin America & Caribbean \",\"Paramaribo\",-55.1679,5.8232,\"Upper middle income\",\"IBRD\"\n\"SVK\",\"SK\",\"Slovak Republic\",\"Europe & Central Asia\",\"Bratislava\",17.1073,48.1484,\"High income\",\"Not classified\"\n\"SVN\",\"SI\",\"Slovenia\",\"Europe & Central Asia\",\"Ljubljana\",14.5044,46.0546,\"High income\",\"Not classified\"\n\"SWE\",\"SE\",\"Sweden\",\"Europe & Central Asia\",\"Stockholm\",18.0645,59.3327,\"High income\",\"Not classified\"\n\"SWZ\",\"SZ\",\"Swaziland\",\"Sub-Saharan Africa \",\"Mbabane\",31.4659,-26.5225,\"Lower middle income\",\"IBRD\"\n\"SXM\",\"SX\",\"Sint Maarten (Dutch part)\",\"Latin America & Caribbean \",\"Philipsburg\",NA,NA,\"High income\",\"Not classified\"\n\"SXZ\",\"A4\",\"Sub-Saharan Africa excluding South Africa\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"SYC\",\"SC\",\"Seychelles\",\"Sub-Saharan Africa \",\"Victoria\",55.4466,-4.6309,\"High income\",\"IBRD\"\n\"SYR\",\"SY\",\"Syrian Arab Republic\",\"Middle East & North Africa\",\"Damascus\",36.3119,33.5146,\"Lower middle income\",\"IBRD\"\n\"TCA\",\"TC\",\"Turks and Caicos Islands\",\"Latin America & Caribbean \",\"Grand Turk\",-71.141389,21.4602778,\"High income\",\"Not classified\"\n\"TCD\",\"TD\",\"Chad\",\"Sub-Saharan Africa \",\"N'Djamena\",15.0445,12.1048,\"Low income\",\"IDA\"\n\"TEA\",\"T4\",\"East Asia & Pacific (IDA & IBRD countries)\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"TEC\",\"T7\",\"Europe & Central Asia (IDA & IBRD countries)\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"TGO\",\"TG\",\"Togo\",\"Sub-Saharan Africa \",\"Lome\",1.2255,6.1228,\"Low income\",\"IDA\"\n\"THA\",\"TH\",\"Thailand\",\"East Asia & Pacific\",\"Bangkok\",100.521,13.7308,\"Upper middle income\",\"IBRD\"\n\"TJK\",\"TJ\",\"Tajikistan\",\"Europe & Central Asia\",\"Dushanbe\",68.7864,38.5878,\"Lower middle income\",\"IDA\"\n\"TKM\",\"TM\",\"Turkmenistan\",\"Europe & Central Asia\",\"Ashgabat\",58.3794,37.9509,\"Upper middle income\",\"IBRD\"\n\"TLA\",\"T2\",\"Latin America & the Caribbean (IDA & IBRD countries)\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"TLS\",\"TL\",\"Timor-Leste\",\"East Asia & Pacific\",\"Dili\",125.567,-8.56667,\"Lower middle income\",\"Blend\"\n\"TMN\",\"T3\",\"Middle East & North Africa (IDA & IBRD countries)\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"TON\",\"TO\",\"Tonga\",\"East Asia & Pacific\",\"Nuku'alofa\",-175.216,-21.136,\"Lower middle income\",\"IDA\"\n\"TSA\",\"T5\",\"South Asia (IDA & IBRD)\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"TSS\",\"T6\",\"Sub-Saharan Africa (IDA & IBRD countries)\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"TTO\",\"TT\",\"Trinidad and Tobago\",\"Latin America & Caribbean \",\"Port-of-Spain\",-61.4789,10.6596,\"High income\",\"IBRD\"\n\"TUN\",\"TN\",\"Tunisia\",\"Middle East & North Africa\",\"Tunis\",10.21,36.7899,\"Lower middle income\",\"IBRD\"\n\"TUR\",\"TR\",\"Turkey\",\"Europe & Central Asia\",\"Ankara\",32.3606,39.7153,\"Upper middle income\",\"IBRD\"\n\"TUV\",\"TV\",\"Tuvalu\",\"East Asia & Pacific\",\"Funafuti\",179.089567,-8.6314877,\"Upper middle income\",\"IDA\"\n\"TWN\",\"TW\",\"Taiwan, China\",\"East Asia & Pacific\",\"\",NA,NA,\"High income\",\"Not classified\"\n\"TZA\",\"TZ\",\"Tanzania\",\"Sub-Saharan Africa \",\"Dodoma\",35.7382,-6.17486,\"Low income\",\"IDA\"\n\"UGA\",\"UG\",\"Uganda\",\"Sub-Saharan Africa \",\"Kampala\",32.5729,0.314269,\"Low income\",\"IDA\"\n\"UKR\",\"UA\",\"Ukraine\",\"Europe & Central Asia\",\"Kiev\",30.5038,50.4536,\"Lower middle income\",\"IBRD\"\n\"UMC\",\"XT\",\"Upper middle income\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"URY\",\"UY\",\"Uruguay\",\"Latin America & Caribbean \",\"Montevideo\",-56.0675,-34.8941,\"High income\",\"IBRD\"\n\"USA\",\"US\",\"United States\",\"North America\",\"Washington D.C.\",-77.032,38.8895,\"High income\",\"Not classified\"\n\"UZB\",\"UZ\",\"Uzbekistan\",\"Europe & Central Asia\",\"Tashkent\",69.269,41.3052,\"Lower middle income\",\"Blend\"\n\"VCT\",\"VC\",\"St. Vincent and the Grenadines\",\"Latin America & Caribbean \",\"Kingstown\",-61.2653,13.2035,\"Upper middle income\",\"Blend\"\n\"VEN\",\"VE\",\"Venezuela, RB\",\"Latin America & Caribbean \",\"Caracas\",-69.8371,9.08165,\"Upper middle income\",\"IBRD\"\n\"VGB\",\"VG\",\"British Virgin Islands\",\"Latin America & Caribbean \",\"Road Town\",-64.623056,18.431389,\"High income\",\"Not classified\"\n\"VIR\",\"VI\",\"Virgin Islands (U.S.)\",\"Latin America & Caribbean \",\"Charlotte Amalie\",-64.8963,18.3358,\"High income\",\"Not classified\"\n\"VNM\",\"VN\",\"Vietnam\",\"East Asia & Pacific\",\"Hanoi\",105.825,21.0069,\"Lower middle income\",\"Blend\"\n\"VUT\",\"VU\",\"Vanuatu\",\"East Asia & Pacific\",\"Port-Vila\",168.321,-17.7404,\"Lower middle income\",\"IDA\"\n\"WLD\",\"1W\",\"World\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"WSM\",\"WS\",\"Samoa\",\"East Asia & Pacific\",\"Apia\",-171.752,-13.8314,\"Lower middle income\",\"IDA\"\n\"XZN\",\"A5\",\"Sub-Saharan Africa excluding South Africa and Nigeria\",\"Aggregates\",\"\",NA,NA,\"Aggregates\",\"Aggregates\"\n\"YEM\",\"YE\",\"Yemen, Rep.\",\"Middle East & North Africa\",\"Sana'a\",44.2075,15.352,\"Lower middle income\",\"IDA\"\n\"ZAF\",\"ZA\",\"South Africa\",\"Sub-Saharan Africa \",\"Pretoria\",28.1871,-25.746,\"Upper middle income\",\"IBRD\"\n\"ZMB\",\"ZM\",\"Zambia\",\"Sub-Saharan Africa \",\"Lusaka\",28.2937,-15.3982,\"Lower middle income\",\"IDA\"\n\"ZWE\",\"ZW\",\"Zimbabwe\",\"Sub-Saharan Africa \",\"Harare\",31.0672,-17.8312,\"Low income\",\"Blend\"\n"
  },
  {
    "path": "Functions.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Julia Version 1.0.3\\n\",\n      \"Commit 099e826241 (2018-12-18 01:34 UTC)\\n\",\n      \"Platform Info:\\n\",\n      \"  OS: Linux (x86_64-pc-linux-gnu)\\n\",\n      \"  CPU: Intel(R) Xeon(R) CPU E5-2673 v4 @ 2.30GHz\\n\",\n      \"  WORD_SIZE: 64\\n\",\n      \"  LIBM: libopenlibm\\n\",\n      \"  LLVM: libLLVM-6.0.0 (ORCJIT, broadwell)\\n\",\n      \"Environment:\\n\",\n      \"  JULIABOX = true\\n\",\n      \"  JULIA_PKG_SERVER = https://pkg.juliacomputing.com\\n\",\n      \"  JULIA = /opt/julia-0.6/bin/julia\\n\",\n      \"  JULIA_KERNELS = ['julia-0.6', 'julia-1.0', 'julia-1.0k']\\n\",\n      \"  JULIA_PKG_TOKEN_PATH = /mnt/juliabox/.julia/token.toml\\n\",\n      \"  JULIABOX_ROLE = \\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"versioninfo()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Functions\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"* A function maps a tuple of arguments to a return value\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## I Creating basic Functions\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"my_addition (generic function with 1 method)\"\n      ]\n     },\n     \"execution_count\": 2,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 1 using the function keyword\\n\",\n    \"#Create a function named my_addition\\n\",\n    \"#Takes two arguments\\n\",\n    \"#Return the addition of the two values\\n\",\n    \"function my_addition(x, y)\\n\",\n    \"    return x + y\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"7\"\n      ]\n     },\n     \"execution_count\": 3,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 2 Calling a function\\n\",\n    \"#Call the function with two argument values\\n\",\n    \"my_addition(3, 4)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"7\"\n      ]\n     },\n     \"execution_count\": 4,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 3 Built-in functions\\n\",\n    \"#The plus, +, symbol (as other arithmetical symbols) are built-in functions\\n\",\n    \"+(3, 4)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Σ (generic function with 1 method)\"\n      ]\n     },\n     \"execution_count\": 5,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 4 Using a Unicode symbol as a function name (done by typing \\\\Sigma and hitting the Tab key)\\n\",\n    \"function Σ(x, y)\\n\",\n    \"    return x + y\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"7\"\n      ]\n     },\n     \"execution_count\": 6,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"Σ(3, 4)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## II Anonymous functions\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"* Functions can be assigned to variables\\n\",\n    \"* Functions can be used as arguments\\n\",\n    \"* Functions can be returned as values\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"#3 (generic function with 1 method)\"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 1 An anonymous function\\n\",\n    \"x -> x^2 + 3\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3-element Array{Float64,1}:\\n\",\n       \" 2.0\\n\",\n       \" 3.0\\n\",\n       \" 8.0\"\n      ]\n     },\n     \"execution_count\": 8,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 2 A function as an argument\\n\",\n    \"#Passing the round() function as argument to the map() function\\n\",\n    \"map(round, [2.1, 3.4, 7.9])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3-element Array{Int64,1}:\\n\",\n       \"  4\\n\",\n       \"  9\\n\",\n       \" 16\"\n      ]\n     },\n     \"execution_count\": 9,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#Passing an anonymous function as an arguemt to the map() function\\n\",\n    \"map(x -> x^2, [2, 3, 4])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## III Tuples and functions\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"* Tuples are immutable collections\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(1, \\\"Julia\\\", 7)\"\n      ]\n     },\n     \"execution_count\": 10,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 1 Examples of tuples\\n\",\n    \"my_tuple = (1, \\\"Julia\\\", 7)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Tuple{Int64,String,Int64}\"\n      ]\n     },\n     \"execution_count\": 11,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"typeof(my_tuple)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(4,)\"\n      ]\n     },\n     \"execution_count\": 12,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# * Single value tuple must have a comma\\n\",\n    \"my_second_tuple = (4,)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Tuple{Int64}\"\n      ]\n     },\n     \"execution_count\": 13,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"typeof(my_second_tuple)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3\"\n      ]\n     },\n     \"execution_count\": 14,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 2 Indexing a tuple\\n\",\n    \"length(my_tuple)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"\\\"Julia\\\"\"\n      ]\n     },\n     \"execution_count\": 15,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"my_tuple[2]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(a = 4, b = \\\"Julia\\\", c = 3)\"\n      ]\n     },\n     \"execution_count\": 16,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 3 Tuple indexing\\n\",\n    \"# * Named tuple creates a name for each element\\n\",\n    \"my_other_tuple = (a = 4, b = \\\"Julia\\\", c = 3)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"\\\"Julia\\\"\"\n      ]\n     },\n     \"execution_count\": 17,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#Indexing tuple by name\\n\",\n    \"my_other_tuple.b\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"my_function (generic function with 1 method)\"\n      ]\n     },\n     \"execution_count\": 18,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 4 Function returns\\n\",\n    \"# * Multiple return values of a function are tuples\\n\",\n    \"function my_function(a, b)\\n\",\n    \"    return a + b, a - b\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(15, 5)\"\n      ]\n     },\n     \"execution_count\": 19,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#Calling the function\\n\",\n    \"my_function(10, 5)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Tuple{Int64,Int64}\"\n      ]\n     },\n     \"execution_count\": 20,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#Looking up the type of the function return\\n\",\n    \"typeof(my_function(10, 5))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(15, 5)\"\n      ]\n     },\n     \"execution_count\": 21,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#This allows for each element to be given a variable name\\n\",\n    \"r, s = my_function(10, 5)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"15\"\n      ]\n     },\n     \"execution_count\": 22,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"r\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"5\"\n      ]\n     },\n     \"execution_count\": 23,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"s\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## IV Functions with keyword arguments\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"* Keyword arguments are added after semi-colon\\n\",\n    \"* Their order is not explicit\\n\",\n    \"* Default values are addded\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"my_keyword_function (generic function with 1 method)\"\n      ]\n     },\n     \"execution_count\": 24,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 1 Creating a function with a keyword argument\\n\",\n    \"function my_keyword_function(x, y; z = 3)\\n\",\n    \"    return x + y + z\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"6\"\n      ]\n     },\n     \"execution_count\": 25,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 2 Omission of keyword argument uses default\\n\",\n    \"my_keyword_function(1, 2)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"13\"\n      ]\n     },\n     \"execution_count\": 26,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 3 Keyword argument names must be used\\n\",\n    \"my_keyword_function(1, 2, z = 10)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 27,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"5-element Array{Float64,1}:\\n\",\n       \"  0.0                   \\n\",\n       \"  1.0                   \\n\",\n       \"  1.2246467991473532e-16\\n\",\n       \" -1.0                   \\n\",\n       \"  1.2246467991473532e-16\"\n      ]\n     },\n     \"execution_count\": 27,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 4 Use of dot notation for functions\\n\",\n    \"#Passes a collection elementwise to a function\\n\",\n    \"#Use instead of map()\\n\",\n    \"sin.([0., π/2., π, 3/2. * π, π])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Julia 1.0.3\",\n   \"language\": \"julia\",\n   \"name\": \"julia-1.0\"\n  },\n  \"language_info\": {\n   \"file_extension\": \".jl\",\n   \"mimetype\": \"application/julia\",\n   \"name\": \"julia\",\n   \"version\": \"1.0.3\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "Functions_using_v_1.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Functions\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## In this lesson\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"- [Introduction](#Introduction)\\n\",\n    \"- [Creating a simple single expression function](#Creating-a-simple-single-expression-function)\\n\",\n    \"- [Multiple expression functions](#Multiple-expression-functions)\\n\",\n    \"- [Flow control in a function](#Flow-control-in-a-function)\\n\",\n    \"- [Using optional arguments](#Using-optional-arguments)\\n\",\n    \"- [Using keyword arguments to bypass the order problem](#Using-keyword-arguments-to-bypass-the-order-problem)\\n\",\n    \"- [Functions with a variable number of arguments](#Functions-with-a-variable-number-of-arguments)\\n\",\n    \"- [Passing arrays as function arguments](#Passing-arrays-as-function-arguments)\\n\",\n    \"- [Type parameters](#Type-parameters)\\n\",\n    \"- [Stabby functions and do blocks](#Stabby-functions-and-do-blocks)\\n\",\n    \"- [Using functions as arguments](#Using-functions-as-arguments)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Introduction\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Julia is a functional language.  Given specific information (called arguments), a function is a keyword that executes a task according to rules designed specifically for that function.  Think of arithmetical addition as a task (a function) and the values to be added as the arguments.\\n\",\n    \"The term _multiple dispatch_ refers to calling the right implementation of a function based on the arguments. Note that only the positional arguments are used to look up the correct method. When the function is used again, but with different argument types, a new method is selected. This is called _overloading_.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"While we would usually think of the task of addition as a single task, adding numbers, it can in fact be seen as more than one function.  One with rules for adding integers, one for adding real numbers, one for adding complex numbers, and so on.  So, when we call a function (typing the specific keyword and adding the arguments is referred to as _calling the function_), we actually call a whole buch of them.  Julia decides which one it is going to use based on the argument types (there is a lookup table for every function, which is stored with the function). Julia generates low-level code based on your computer's instruction set. So, when you create a function () such as...\\n\",\n    \"```\\n\",\n    \"function cbd(a)\\n\",\n    \"    return a^3\\n\",\n    \"end\\n\",\n    \"```\\n\",\n    \"... a whole bunch of methods are created (the different implementations of a function are called _methods_). When the function is called with an integer argument, Julia will generate code that uses the CPU's integer multiplication instruction set and when a floating point value is used, the floating point multiplication instruction set will be targeted.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Let's have a look at a quintessential Julia function.  You might not recognize it at first, but typing `2 + 3` is actually converted to a keyword with arguments when executed.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"5\"\n      ]\n     },\n     \"execution_count\": 1,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Adding 2 and 3\\n\",\n    \"2 + 3\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The `+` symbol is actual a function name.  The typical _architecture_ of a Julia function is then a keyword, with a set of arguments, seperated by commas, all inside of a set of parenthesis.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"5\"\n      ]\n     },\n     \"execution_count\": 3,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Addition as a function\\n\",\n    \"+(2, 3)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Creating a simple single expression function\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Functions in Julia can be created much like a mathematical function.  Below we create a function called `f` that takes a single argument.  We use the character `x` as placeholder argument.  The right-hand side of the equation stipulates the task that we want the function to perform, given a value for the argument.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"f (generic function with 1 method)\"\n      ]\n     },\n     \"execution_count\": 1,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# A function to square the argument value\\n\",\n    \"f(x) = x^2\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"1 method for generic function <b>f</b>:<ul><li> f(x) in Main at In[1]:2</li> </ul>\"\n      ],\n      \"text/plain\": [\n       \"# 1 method for generic function \\\"f\\\":\\n\",\n       \"[1] f(x) in Main at In[1]:2\"\n      ]\n     },\n     \"execution_count\": 2,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"methods(f)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can no call the function and provide an argument.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"100\"\n      ]\n     },\n     \"execution_count\": 3,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Squaring 10\\n\",\n    \"f(10)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The answer is $100$ as expected.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Whilest our function seems algebraic in nature, we can create a similar function that will act on a string.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"p (generic function with 1 method)\"\n      ]\n     },\n     \"execution_count\": 4,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Creating a function to print input to the screen\\n\",\n    \"p(x) = println(x, \\\" was entered!\\\")  # The comma concatenates the two strings\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"If we now pass a string as argument and see the result.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Julia was entered!\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# Passing the string \\\"Julia\\\"\\n\",\n    \"p(\\\"Julia\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can use more than one argument too.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"g (generic function with 1 method)\"\n      ]\n     },\n     \"execution_count\": 6,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Simple replication of the + function for two arguments\\n\",\n    \"g(x, y) = x + y\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Passing two numbers as arguments now adds the two values.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"7\"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"g(3, 4)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Multiple expression functions\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"With single expression functions, it was convenient to use the shortcut (almost mathematical) syntax we used above. If we want a function to do a few more things, even have flow control, we have to use function syntax. In the first example below we will have a function that takes two arguments and performs two tasks (has two expressions).\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The creation of such a proper Julia function is achieved using the `function` keyword.  this is followed by the name given to our new function.  It is important to stick to conventions and not use illegal words and characters.  The former included reserved keywords that are already Julia functions and the latter includes leading numbers.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"A list of placeholder symbols for our arguments follow.  In the function below, we use two arguments.  The first task we would like the function to perform is to print the two values that are entered as arguments.  The second multiplies the values.  All function are completed with the `end` keyword.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"mltpl (generic function with 1 method)\"\n      ]\n     },\n     \"execution_count\": 9,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Declaring the block of code as a function using the function keyword, giving it a name,\\n\",\n    \"# and listing the arguments\\n\",\n    \"function mltpl(x, y)\\n\",\n    \"    print(\\\"The first value is $x and the second value is $y.\\\\n$x x $y is:\\\")\\n\",\n    \"    # The dollar signs are placeholders for the argument values\\n\",\n    \"    # The \\\\n combination indicates a new-line\\n\",\n    \"    x * y\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"The first value is 3 and the second value is 4.\\n\",\n      \"3 x 4 is:\"\n     ]\n    },\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"12\"\n      ]\n     },\n     \"execution_count\": 10,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"mltpl(3, 4)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The `return` keyword can be used to force a halt to the taks being performed.  It is not immediately obvious how this can be helpful.  Below is a demonstartion. (An example that shows the usefulness of the `return` keyword is shown in [Flow control in a function](#Flow-control-in-a-function) below.)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"mltpl_return (generic function with 1 method)\"\n      ]\n     },\n     \"execution_count\": 11,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# The expression (task) after the return keyword will be ignored\\n\",\n    \"function mltpl_return(x, y)\\n\",\n    \"    print(\\\"The first value is $x and the second value is $y.\\\\n$x x $y is:\\\")\\n\",\n    \"    # The dollar signs are placeholders for the argument values\\n\",\n    \"    # The \\\\n combination indicates a new-line\\n\",\n    \"    return x * y\\n\",\n    \"    x + y  # Adding addition of the two argument values after the return keyword\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"The first value is 3 and the second value is 4.\\n\",\n      \"3 x 4 is:\"\n     ]\n    },\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"12\"\n      ]\n     },\n     \"execution_count\": 12,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"mltpl_return(3, 4)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The omission of the `return` keyword can lead to some unexpected behaviour.  Below, we print a line in the first expression, than successively add, subtract, and multiply the two argument values.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"omit_return (generic function with 1 method)\"\n      ]\n     },\n     \"execution_count\": 16,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"function omit_return(x, y)\\n\",\n    \"    println(\\\"The argument values that were passed are $x and $y\\\")\\n\",\n    \"    x + y\\n\",\n    \"    x - y\\n\",\n    \"    x * y\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"The argument values that were passed are 3 and 4\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"12\"\n      ]\n     },\n     \"execution_count\": 17,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"omit_return(3, 4)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Only the `println()` expression and the last expression were executed.  We can correct this as shown below.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"multiple_return (generic function with 1 method)\"\n      ]\n     },\n     \"execution_count\": 18,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"function multiple_return(x , y)\\n\",\n    \"    println(\\\"The argument values that were passed are $x and $y\\\")\\n\",\n    \"    x + y, x - y, x * y\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"The argument values that were passed are 3 and 4\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(7, -1, 12)\"\n      ]\n     },\n     \"execution_count\": 19,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"multiple_return(3, 4)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We see the result of the arithmetical operations are returned as a tuple.  This can be useful as we can assign a computer variable name to each of the elements in the tuple.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"The argument values that were passed are 3 and 4\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(7, -1, 12)\"\n      ]\n     },\n     \"execution_count\": 20,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"ans1, ans2, ans3 = multiple_return(3, 4)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"7\"\n      ]\n     },\n     \"execution_count\": 21,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Calling the value in ans1\\n\",\n    \"ans1\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"-1\"\n      ]\n     },\n     \"execution_count\": 22,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"ans2\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"12\"\n      ]\n     },\n     \"execution_count\": 23,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"ans3\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Flow control in a function\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"A function can have flow control, i.e. `if-else` statements as tasks.  Below is an example that also makes the benefits of the use of the `return` keyword more obvious.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The aim of the function is to return the absolute value of the difference between two numbers, without the use of the `abs()` function.  The latter returns the absolute value of a value.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"abs_diff (generic function with 1 method)\"\n      ]\n     },\n     \"execution_count\": 13,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"function abs_diff(x, y)\\n\",\n    \"    if x >= y\\n\",\n    \"        return x - y\\n\",\n    \"    end\\n\",\n    \"    return y - x\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"1\"\n      ]\n     },\n     \"execution_count\": 14,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# The absolute value of 4 - 3\\n\",\n    \"abs_diff(4, 3)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"2\"\n      ]\n     },\n     \"execution_count\": 15,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# The absolute value of 10 - 12\\n\",\n    \"abs_diff(10, 12)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Using optional arguments\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Optional arguments can be passed as arguments when a function is being created.  These are provided with default values.  When they are not used when calling the function, these default values are used.  They can be overwritten when the argument is called, though.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"func (generic function with 2 methods)\"\n      ]\n     },\n     \"execution_count\": 24,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"function func(a, b, c = 100)\\n\",\n    \"    print(\\\" We have the values $a, $b, and $c.\\\")\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"When omitting to provide the third argument, the default of $100$ is used.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \" We have the values 10, 20, and 100.\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# Omitting the third argument\\n\",\n    \"func(10, 20)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Below, we provide a different value to the third argument.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \" We have the values 10, 20, and 1000.\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"func(10, 20, 1000)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Using keyword arguments to bypass the order problem\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can create function with many, many argument. Problem is, we might forget the argument order when calling the function and passing values to it. To solve this problem the semi-colon (;) can be used (usually after the ordered arguments). Let's take a look.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 27,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"func2 (generic function with 2 methods)\"\n      ]\n     },\n     \"execution_count\": 27,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# A most ridiculously long print statement (apologies)\\n\",\n    \"function func2(a, b, c = 100 ; p = 100, q = \\\"red\\\")\\n\",\n    \"    println(\\\"The first ordered argument value is $(a).\\\")\\n\",\n    \"    println(\\\"The second ordered argumnent is $(b).\\\")\\n\",\n    \"    println(\\\"The third ordered argument was optional.\\\")\\n\",\n    \"    println(\\\"If you see a value of 100 here, you either passed a value of 100 or omitted it: $(c).\\\")\\n\",\n    \"    println(\\\"Let's see what happend to the keyword p: $(p).\\\")\\n\",\n    \"    println(\\\"Let's see what happens to the keyword q: $(q).\\\")\\n\",\n    \"    println(\\\"Oh yes, let's also return something useful, like multiplying $(a) and $(b), yielding:\\\")\\n\",\n    \"    return a * b\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can now call the function with just the first two arguments.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 28,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"The first ordered argument value is 3.\\n\",\n      \"The second ordered argumnent is 4.\\n\",\n      \"The third ordered argument was optional.\\n\",\n      \"If you see a value of 100 here, you either passed a value of 100 or omitted it: 100.\\n\",\n      \"Let's see what happend to the keyword p: 100.\\n\",\n      \"Let's see what happens to the keyword q: red.\\n\",\n      \"Oh yes, let's also return something useful, like multiplying 3 and 4, yielding:\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"12\"\n      ]\n     },\n     \"execution_count\": 28,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Calling just the first two ordered arguments\\n\",\n    \"func2(3, 4)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Now, let's change the default value for the third arguments and then also some of the keyword arguments.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 29,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"The first ordered argument value is 3.\\n\",\n      \"The second ordered argumnent is 4.\\n\",\n      \"The third ordered argument was optional.\\n\",\n      \"If you see a value of 100 here, you either passed a value of 100 or omitted it: 5.\\n\",\n      \"Let's see what happend to the keyword p: 100.\\n\",\n      \"Let's see what happens to the keyword q: red.\\n\",\n      \"Oh yes, let's also return something useful, like multiplying 3 and 4, yielding:\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"12\"\n      ]\n     },\n     \"execution_count\": 29,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Calling something else for c\\n\",\n    \"func2(3, 4, 5)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 30,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"The first ordered argument value is 3.\\n\",\n      \"The second ordered argumnent is 4.\\n\",\n      \"The third ordered argument was optional.\\n\",\n      \"If you see a value of 100 here, you either passed a value of 100 or omitted it: 100.\\n\",\n      \"Let's see what happend to the keyword p: π = 3.1415926535897....\\n\",\n      \"Let's see what happens to the keyword q: red.\\n\",\n      \"Oh yes, let's also return something useful, like multiplying 3 and 4, yielding:\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"12\"\n      ]\n     },\n     \"execution_count\": 30,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Now let's have some fun with the keyword arguments\\n\",\n    \"func2(3, 4, p = pi)  # Using the pi Julia keyword\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 31,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"The first ordered argument value is 3.\\n\",\n      \"The second ordered argumnent is 4.\\n\",\n      \"The third ordered argument was optional.\\n\",\n      \"If you see a value of 100 here, you either passed a value of 100 or omitted it: 2.\\n\",\n      \"Let's see what happend to the keyword p: 100.\\n\",\n      \"Let's see what happens to the keyword q: Hello!.\\n\",\n      \"Oh yes, let's also return something useful, like multiplying 3 and 4, yielding:\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"12\"\n      ]\n     },\n     \"execution_count\": 31,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Now for q\\n\",\n    \"func2(3, 4, 2, q = \\\"Hello!\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The order of the keyword arguments can now be changed when calling the function.  As long as we remember to use their names.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 32,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"The first ordered argument value is 3.\\n\",\n      \"The second ordered argumnent is 4.\\n\",\n      \"The third ordered argument was optional.\\n\",\n      \"If you see a value of 100 here, you either passed a value of 100 or omitted it: 2.\\n\",\n      \"Let's see what happend to the keyword p: 2.718281828459045.\\n\",\n      \"Let's see what happens to the keyword q: It works!.\\n\",\n      \"Oh yes, let's also return something useful, like multiplying 3 and 4, yielding:\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"12\"\n      ]\n     },\n     \"execution_count\": 32,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Mixing the keyword arguments around\\n\",\n    \"func2(3, 4, 2, q = \\\"It works!\\\", p = exp(1))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The keyword arguments can indeed be placed anywhere, simply use their names. The values before the semicolon, though has to be used, or at least interspersed in the correct order.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 33,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"The first ordered argument value is 3.\\n\",\n      \"The second ordered argumnent is 4.\\n\",\n      \"The third ordered argument was optional.\\n\",\n      \"If you see a value of 100 here, you either passed a value of 100 or omitted it: 2.\\n\",\n      \"Let's see what happend to the keyword p: 1.7320508075688772.\\n\",\n      \"Let's see what happens to the keyword q: Bananas!.\\n\",\n      \"Oh yes, let's also return something useful, like multiplying 3 and 4, yielding:\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"12\"\n      ]\n     },\n     \"execution_count\": 33,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# And finally, we go bananas!\\n\",\n    \"func2(q = \\\"Bananas!\\\", 3, 4, p = sqrt(3), 2)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Functions with a variable number of arguments\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can use three dots, as in ..., (called a splat or ellipsis) to indicate none, one, or many arguments. Let's take a look.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 34,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"func3 (generic function with 1 method)\"\n      ]\n     },\n     \"execution_count\": 34,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"function func3(args...)\\n\",\n    \"    print(\\\"I can tell you how many arguments you passed: $(length(args)).\\\")\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The function simply counts the number of arguments passed.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 35,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"I can tell you how many arguments you passed: 0.\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# Calling nothing, nothing, nothing.  Hello!  Is anyone home?\\n\",\n    \"func3()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Below, we take a look at what happens when we pass a variety of arguments.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 36,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"I can tell you how many arguments you passed: 1.\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# Now someone's home!\\n\",\n    \"func3(1000000)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 37,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"I can tell you how many arguments you passed: 1.\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# It's Julia!\\n\",\n    \"func3(\\\"Julia\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 39,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"I can tell you how many arguments you passed: 2.\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# Passing two arguments\\n\",\n    \"func3(\\\"Hello\\\", \\\"Julia\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 40,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"I can tell you how many arguments you passed: 7.\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# Passing multiple arguments of different types\\n\",\n    \"func3(\\\"Julia\\\", \\\"is\\\", 1, \\\"in\\\", \\\"a\\\", 1000000, \\\"!\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The splat or ellipsis as indicator of allowing the use of multiple (infinite) arguments, can solve some problems. In the example below we will pass a list of strings as arguments and see what happens.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 42,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"surgery (generic function with 1 method)\"\n      ]\n     },\n     \"execution_count\": 42,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# A functions that joins strings\\n\",\n    \"function surgery(string_array)\\n\",\n    \"    string_items = join(string_array, \\\", \\\", \\\" and \\\")  # Creating a computer variable to hold\\n\",\n    \"    # the arguments and concatenate a comma and the word and\\n\",\n    \"    print(\\\"Today I performed the following operations: $string_items\\\", \\\"!\\\")\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 43,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Today I performed the following operations: colonic resection and appendectomy!\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# Passing two arguments\\n\",\n    \"surgery([\\\"colonic resection\\\", \\\"appendectomy\\\"])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 44,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Today I performed the following operations: a, p, p, e, n, d, e, c, t, o, m and y!\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# What if I forget the square brackets []\\n\",\n    \"# The join() function will act on the characters in the string\\n\",\n    \"surgery(\\\"appendectomy\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 45,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"splat_surgery (generic function with 1 method)\"\n      ]\n     },\n     \"execution_count\": 45,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Now we don't restrict the number of arguments\\n\",\n    \"function splat_surgery(stringsss...)\\n\",\n    \"    string_items = join(stringsss, \\\", \\\", \\\" and \\\")\\n\",\n    \"    print(\\\"Today I performed the following operations: $string_items\\\", \\\"!\\\")\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 46,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Today I performed the following operations: appendectomy!\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"splat_surgery(\\\"appendectomy\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"For the sake of clarity, look at the following example to see what Julia does to the args... arguments. You will note that it is actually managed as a tuple.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 47,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"argues (generic function with 1 method)\"\n      ]\n     },\n     \"execution_count\": 47,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"function argues(a, b, s...)\\n\",\n    \"    print(\\\"The argument values are: $a, $b, and $s\\\")\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 48,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"The argument values are: 3, 4, and (5, 6, 7, 8, \\\"Julia\\\")\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# The first two values, 3 and 4, have proper assignment, but the rest will be in a tuple\\n\",\n    \"argues(3, 4, 5, 6, 7, 8, \\\"Julia\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 49,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"The argument values are: 3, 4, and ()\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# Now for an empty tuple\\n\",\n    \"argues(3, 4)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Now for some real fun. We can combine keywords and splats. Have a look at this.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 50,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"fun_func (generic function with 1 method)\"\n      ]\n     },\n     \"execution_count\": 50,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Creating a function that only contains keywords, but they are\\n\",\n    \"# splats\\n\",\n    \"function fun_func(; a...)\\n\",\n    \"    a\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 51,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"pairs(::NamedTuple) with 3 entries:\\n\",\n       \"  :var1 => \\\"Julia\\\"\\n\",\n       \"  :var2 => \\\"Language\\\"\\n\",\n       \"  :val1 => 3\"\n      ]\n     },\n     \"execution_count\": 51,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Calling the fun_func() function, remembering to give the keywords names\\n\",\n    \"fun_func(var1 = \\\"Julia\\\", var2 = \\\"Language\\\", val1 = 3)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We now have a collection of (key, value) tuples, with the key coming from the name we gave the keyword argument. Moreover, it is actually a symbol which you will note by the colon (:) preceding it.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Passing arrays as function arguments\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Once a function is defined, an array of values can be passed to it using the `map()` function.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 52,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Creating an array\\n\",\n    \"xvals = [-3, -2.5, -2, -1.5, -1, -0.5, 0, 0.5, 1, 1.5, 2, 2.5, 3];\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 53,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"sqr (generic function with 1 method)\"\n      ]\n     },\n     \"execution_count\": 53,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Creating the function\\n\",\n    \"function sqr(a)\\n\",\n    \"    return a^2\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The `map()` function will now map the function to each value in the array.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 54,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"13-element Array{Float64,1}:\\n\",\n       \" 9.0 \\n\",\n       \" 6.25\\n\",\n       \" 4.0 \\n\",\n       \" 2.25\\n\",\n       \" 1.0 \\n\",\n       \" 0.25\\n\",\n       \" 0.0 \\n\",\n       \" 0.25\\n\",\n       \" 1.0 \\n\",\n       \" 2.25\\n\",\n       \" 4.0 \\n\",\n       \" 6.25\\n\",\n       \" 9.0 \"\n      ]\n     },\n     \"execution_count\": 54,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Mapping the array to the function\\n\",\n    \"map(sqr, xvals)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The dot notation after a function achieves the same results.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 64,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"13-element Array{Float64,1}:\\n\",\n       \" 9.0 \\n\",\n       \" 6.25\\n\",\n       \" 4.0 \\n\",\n       \" 2.25\\n\",\n       \" 1.0 \\n\",\n       \" 0.25\\n\",\n       \" 0.0 \\n\",\n       \" 0.25\\n\",\n       \" 1.0 \\n\",\n       \" 2.25\\n\",\n       \" 4.0 \\n\",\n       \" 6.25\\n\",\n       \" 9.0 \"\n      ]\n     },\n     \"execution_count\": 64,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"sqr.(xvals)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Type parameters\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"It is possible to limit a function to accepting only cenrtain argument types.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 58,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"m (generic function with 1 method)\"\n      ]\n     },\n     \"execution_count\": 58,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"function m(x::Int)\\n\",\n    \"    return 3 * x\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Using the `methods()` function, we can now see that only integers argument values are allowed.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 60,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"1 method for generic function <b>m</b>:<ul><li> m(x::<b>Int64</b>) in Main at In[58]:2</li> </ul>\"\n      ],\n      \"text/plain\": [\n       \"# 1 method for generic function \\\"m\\\":\\n\",\n       \"[1] m(x::Int64) in Main at In[58]:2\"\n      ]\n     },\n     \"execution_count\": 60,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"methods(m)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 61,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"9\"\n      ]\n     },\n     \"execution_count\": 61,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Calling the function with an integer\\n\",\n    \"m(3)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"A flotaing point value such as `m(3.)` will result in an error.\\n\",\n    \"```\\n\",\n    \"MethodError: no method matching m(::Float64)\\n\",\n    \"Closest candidates are:\\n\",\n    \"  m(!Matched::Int64) at In[58]:2\\n\",\n    \"\\n\",\n    \"Stacktrace:\\n\",\n    \" [1] top-level scope at In[62]:1\\n\",\n    \" ```\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Stabby functions and do blocks\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Stabby lambda functions as they are called, are quick-and-dirty functions. They are examples of anonymous functions, the latter referring to the fact that they don't have a name. The do block is also a form of anonymous function. Let's look at some examples.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 68,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"#5 (generic function with 1 method)\"\n      ]\n     },\n     \"execution_count\": 68,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# The Julia syntax uses the -> character combinations, hence stabby!\\n\",\n    \"x -> 2x^2 + 3x - 2\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can now us the `map()` function to apply the values in an array to this stabby function. Note that the stabby function cannot be called.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 69,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"5-element Array{Int64,1}:\\n\",\n       \"  3\\n\",\n       \" 12\\n\",\n       \" 25\\n\",\n       \" 42\\n\",\n       \" 63\"\n      ]\n     },\n     \"execution_count\": 69,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"map(x -> 2x^2 + 3x - 2, [1, 2, 3, 4, 5])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"There is another way of achieving this using `do` blocks.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 70,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"5-element Array{Int64,1}:\\n\",\n       \"  3\\n\",\n       \" 12\\n\",\n       \" 25\\n\",\n       \" 42\\n\",\n       \" 63\"\n      ]\n     },\n     \"execution_count\": 70,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Let's do something\\n\",\n    \"map([1, 2, 3, 4, 5]) do x\\n\",\n    \"    2x^2 + 3x - 2\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The `do` block can do some more!\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 73,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"5-element Array{Int64,1}:\\n\",\n       \"  300\\n\",\n       \"  600\\n\",\n       \"  900\\n\",\n       \" 2000\\n\",\n       \" 3300\"\n      ]\n     },\n     \"execution_count\": 73,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"map([3, 6, 9, 10, 11]) do x\\n\",\n    \"    if mod(x, 3) == 0  # If the value is divisible by 3\\n\",\n    \"        100x\\n\",\n    \"        elseif mod(x, 3) == 1  # If the remainder after dividing by 3 is 1\\n\",\n    \"        200x\\n\",\n    \"    else\\n\",\n    \"        mod(x, 3) == 2  # If the remainder is 2\\n\",\n    \"        300x\\n\",\n    \"    end\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Using functions as arguments\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"As the title of this section implies, we can pass a function as an argument. That functional argument will actually call the function.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 75,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"luv (generic function with 1 method)\"\n      ]\n     },\n     \"execution_count\": 75,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# First function\\n\",\n    \"function string_func(s)\\n\",\n    \"    str = s()\\n\",\n    \"    print(\\\"I love $str\\\", \\\"!\\\")\\n\",\n    \"end\\n\",\n    \"\\n\",\n    \"# Second function\\n\",\n    \"function luv()\\n\",\n    \"    return(\\\"Julia\\\")\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 76,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"I love Julia!\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"string_func(luv)\\n\",\n    \"# Calling the function string_func\\n\",\n    \"# Passing a function as an argument, which then calls that function\\n\",\n    \"# The called luv function returns the string Julia, which is now the argument of the originally called function\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Julia 1.1.0\",\n   \"language\": \"julia\",\n   \"name\": \"julia-1.1\"\n  },\n  \"language_info\": {\n   \"file_extension\": \".jl\",\n   \"mimetype\": \"application/julia\",\n   \"name\": \"julia\",\n   \"version\": \"1.1.0\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "GadflyTutorialData.csv",
    "content": "Patient,Gender,Age,Variable1,Variable2,Variable3,Variable4,Category1,Category2,Category3\r1,F,37,22.3,104,5.3,64,A,C,P\r2,F,55,12.1,84,12.7,58,B,X,Q\r3,M,44,15.6,101,6.9,68,A,R,Q\r4,F,54,20.8,111,14.8,54,B,C,R\r5,M,41,21.5,106,25.1,50,A,X,P\r6,F,51,14.7,112,14.1,70,B,R,R\r7,M,42,18.7,99,0.3,63,A,C,P\r8,M,50,22.1,102,5.7,62,B,X,R\r9,M,50,11.6,114,12,64,A,R,P\r10,F,55,18.9,107,7.8,54,B,C,P\r11,F,37,9.5,109,12.8,58,A,X,Q\r12,F,36,11.1,102,0.5,53,B,R,Q\r13,M,45,13.4,95,6.7,62,A,C,R\r14,F,54,9.1,69,11.2,50,B,X,P\r15,M,38,16,105,4.9,62,A,R,R\r16,F,35,14.7,106,3.8,56,B,C,P\r17,M,44,10.4,102,8.3,50,A,X,R\r18,M,47,23.6,100,23.6,65,B,R,P\r19,M,55,8.6,109,9.2,66,A,C,P\r20,F,46,10.4,86,4.9,66,B,X,Q\r21,F,38,11.8,91,5.9,55,A,R,Q\r22,F,51,16.5,106,5,62,B,C,R\r23,M,36,20,103,8.1,70,A,X,P\r24,F,55,23.8,95,3.2,64,B,R,R\r25,M,48,14.4,101,3.3,67,A,C,P\r26,F,51,11.7,93,11.9,67,B,X,R\r27,M,37,18.5,99,9.8,55,A,R,P\r28,M,40,14.9,94,9.2,53,B,C,P\r29,M,51,19.8,97,57.9,63,A,X,Q\r30,F,35,10.6,97,3.9,60,B,R,Q\r31,F,43,23.6,99,3.4,60,A,C,R\r32,F,53,21.1,92,22,66,B,X,P\r33,M,45,13.9,119,18.4,51,A,R,R\r34,F,42,15.7,101,20.7,64,B,C,P\r35,M,52,24.7,84,19.8,68,A,X,R\r36,F,35,12.6,95,1.3,55,B,R,P\r37,M,42,16.4,106,18.1,59,A,C,P\r38,M,49,18.4,120,5.9,54,B,X,Q\r39,M,47,13.4,98,19.6,61,A,R,Q\r40,F,55,20.5,88,0.3,68,B,C,R\r41,F,38,13.8,101,11.5,61,A,X,P\r42,F,54,10.3,110,17.2,50,B,R,R\r43,M,39,22.5,116,14.4,51,A,C,P\r44,F,44,16.2,98,1.9,54,B,X,R\r45,M,37,15.5,102,6.3,55,A,R,P\r46,F,47,18.7,96,5.4,57,B,C,P\r47,M,53,8.8,92,6.3,50,A,X,Q\r48,M,54,13.2,90,18.3,62,B,R,Q\r49,M,42,17.2,86,0.2,52,A,C,R\r50,F,52,12.7,104,26.4,53,B,X,P\r51,F,36,9.1,97,14.5,64,A,R,R\r52,F,53,14.5,101,13.9,50,B,C,P\r53,M,44,12.2,111,14.7,60,A,X,R\r54,F,35,20.1,84,7.5,53,B,R,P\r55,M,48,15.4,92,11.3,54,A,C,P\r56,F,41,18.8,96,10,65,B,X,Q\r57,M,53,23.3,104,3.2,69,A,R,Q\r58,M,46,21.3,101,3.5,60,B,C,R\r59,M,55,16.3,100,2.1,58,A,X,P\r60,F,54,14.8,110,8.3,61,B,R,R\r61,F,41,17,111,4.6,50,A,C,P\r62,F,50,11.5,93,4.8,53,B,X,R\r63,M,48,12.1,106,0.8,63,A,R,P\r64,F,47,8.5,110,32.4,50,B,C,P\r65,M,35,12.3,90,11.2,70,A,X,Q\r66,F,49,23.8,105,4.9,68,B,R,Q\r67,M,45,16.7,108,9.7,58,A,C,R\r68,M,48,14,93,8.7,68,B,X,P\r69,M,52,24.8,103,0.2,60,A,R,R\r70,F,51,24.9,119,7.6,54,B,C,P\r71,F,37,12.9,94,2.4,69,A,X,R\r72,F,40,24.4,84,3.2,61,B,R,P\r73,M,44,14.3,78,1.5,53,A,C,P\r74,F,42,16.6,108,19.5,66,B,X,Q\r75,M,49,24.3,114,11.5,62,A,R,Q\r76,F,54,17.9,90,3.9,54,B,C,R\r77,M,43,21.2,99,3.9,61,A,X,P\r78,M,41,11.3,97,17.7,70,B,R,R\r79,M,45,22.4,106,0.8,62,A,C,P\r80,F,39,19.3,103,10.7,57,B,X,R\r81,F,39,15.1,90,3.1,61,A,R,P\r82,F,42,23,97,14.3,64,B,C,P\r83,M,40,19.5,103,27.3,65,A,X,Q\r84,F,42,22.5,98,7.7,51,B,R,Q\r85,M,50,8.8,103,1.7,59,A,C,R\r86,F,45,14.4,99,7.4,63,B,X,P\r87,M,37,8.6,93,21.7,58,A,R,R\r88,M,50,12.8,97,0.6,50,B,C,P\r89,M,52,14.3,91,7.6,70,A,X,R\r90,F,52,19.9,105,14.6,53,B,R,P\r91,F,53,19.7,118,2.7,59,A,C,P\r92,F,50,10,102,0.6,54,B,X,Q\r93,M,54,22.8,108,17.4,51,A,R,Q\r94,F,41,24.7,91,16.2,64,B,C,R\r95,M,54,9.4,108,1.5,58,A,X,P\r96,F,39,22.4,99,4.1,50,B,R,R\r97,M,46,21.1,84,8.8,65,A,C,P\r98,M,43,19.1,99,13.4,65,B,X,R\r99,M,53,15.7,93,0.5,51,A,R,P\r100,F,38,24.8,99,5.1,57,B,C,P\r101,F,55,18.6,95,23.3,53,A,C,P\r102,F,52,24.8,106,7.2,52,B,X,Q\r103,M,53,15,91,7.9,50,A,R,Q\r104,F,46,11.6,114,0.5,57,B,C,R\r105,M,43,12.9,106,7.5,64,A,X,P\r106,F,53,22.8,106,8.6,51,B,R,R\r107,M,38,17.7,123,0.1,69,A,C,P\r108,M,52,19.3,93,25,67,B,X,R\r109,M,44,12.3,87,24.6,50,A,R,P\r110,F,40,13.7,112,3.2,50,B,C,P\r111,F,49,16.6,104,5.4,68,A,X,Q\r112,F,44,23.7,88,18.3,55,B,R,Q\r113,M,40,22.5,101,7.4,53,A,C,R\r114,F,43,14.9,85,53.9,66,B,X,P\r115,M,52,23.8,111,2.1,68,A,R,R\r116,F,42,21.4,107,2.1,67,B,C,P\r117,M,53,11.6,100,4.6,56,A,X,R\r118,M,37,20.9,105,1.3,64,B,R,P\r119,M,53,17.3,104,11.8,67,A,C,P\r120,F,37,15.3,98,4.4,50,B,X,Q\r121,F,47,16.8,90,0.7,62,A,R,Q\r122,F,37,23.2,112,1.1,51,B,C,R\r123,M,42,19.2,106,12.3,69,A,X,P\r124,F,55,21.7,98,9.3,70,B,R,R\r125,M,53,16.8,101,1.4,56,A,C,P\r126,F,52,24.4,107,5.5,60,B,X,R\r127,M,46,13.1,115,5.6,69,A,R,P\r128,M,45,23,101,5.7,70,B,C,P\r129,M,53,12,101,22.7,55,A,X,Q\r130,F,44,24.5,87,8.8,58,B,R,Q\r131,F,40,17.7,93,5.6,54,A,C,R\r132,F,40,10.5,100,10.3,50,B,X,P\r133,M,50,16.2,98,4.2,66,A,R,R\r134,F,37,22.7,117,0.3,52,B,C,P\r135,M,40,23.5,84,2.9,67,A,X,R\r136,F,47,18.3,104,17.8,57,B,R,P\r137,M,54,15.5,74,12.8,58,A,C,P\r138,M,41,24.1,117,24.5,59,B,X,Q\r139,M,47,10.6,110,19.4,61,A,R,Q\r140,F,50,13.9,104,8,55,B,C,R\r141,F,48,19.3,97,5.6,68,A,X,P\r142,F,47,17.3,108,11.7,69,B,R,R\r143,M,51,24.6,111,2,64,A,C,P\r144,F,38,24.7,111,7.3,54,B,X,R\r145,M,36,22.4,95,7.7,58,A,R,P\r146,F,52,24.5,93,5,69,B,C,P\r147,M,36,11.4,103,2.2,63,A,X,Q\r148,M,41,24.3,93,0.5,57,B,R,Q\r149,M,36,18.1,98,10.6,69,A,C,R\r150,F,53,24.5,87,10.9,51,B,X,P\r151,F,39,23.3,90,1,56,A,R,R\r152,F,55,23.7,118,27,66,B,C,P\r153,M,37,20.4,104,20.8,65,A,X,R\r154,F,42,21.6,95,24.2,70,B,R,P\r155,M,44,15.1,95,77.9,64,A,C,P\r156,F,53,12.3,105,17.9,65,B,X,Q\r157,M,39,10.2,104,22.7,62,A,R,Q\r158,M,50,18.2,102,8.3,57,B,C,R\r159,M,48,20.1,91,1.1,62,A,X,P\r160,F,54,15,98,2.4,69,B,R,R\r161,F,52,9.7,104,1.3,50,A,C,P\r162,F,46,21.3,105,6.8,68,B,X,R\r163,M,36,15.2,96,18.7,51,A,R,P\r164,F,40,12.5,96,8.9,52,B,C,P\r165,M,48,10.4,105,5.1,60,A,X,Q\r166,F,36,20,105,27.2,62,B,R,Q\r167,M,37,17.2,98,7.1,67,A,C,R\r168,M,54,19.7,109,3.9,70,B,X,P\r169,M,47,19.9,93,13.8,51,A,R,R\r170,F,55,9.3,111,20.5,62,B,C,P\r171,F,41,16,90,51.1,55,A,X,R\r172,F,50,14.5,89,1.5,70,B,R,P\r173,M,42,12.3,64,12.6,70,A,C,P\r174,F,52,8.9,103,12.8,58,B,X,Q\r175,M,43,21.1,112,13.8,65,A,R,Q\r176,F,47,21.4,125,0.5,50,B,C,R\r177,M,50,10.2,101,9.9,70,A,X,P\r178,M,52,23.9,73,7.1,58,B,R,R\r179,M,49,17.4,93,4.1,62,A,C,P\r180,F,47,10.3,111,10,55,B,X,R\r181,F,40,8.9,88,29.6,55,A,R,P\r182,F,51,22.6,86,17.7,61,B,C,P\r183,M,37,22.8,102,6.4,58,A,X,Q\r184,F,52,23.4,107,30.1,65,B,R,Q\r185,M,39,21,98,5,65,A,C,R\r186,F,53,24.3,105,1.3,62,B,X,P\r187,M,45,11,94,7.6,50,A,R,R\r188,M,53,14.1,99,46.1,53,B,C,P\r189,M,37,17.8,104,2.1,52,A,X,R\r190,F,54,11.8,92,0.6,66,B,R,P\r191,F,54,23.6,93,6.3,51,A,C,P\r192,F,47,13.5,99,0.1,70,B,X,Q\r193,M,42,16,108,1.7,51,A,R,Q\r194,F,53,14.3,96,7.7,58,B,C,R\r195,M,54,9.7,100,1.3,55,A,X,P\r196,F,40,9.6,103,12.1,56,B,R,R\r197,M,42,12.6,109,3.6,68,A,C,P\r198,M,49,11.2,95,1.8,53,B,X,R\r199,M,36,24.2,97,8.2,58,A,R,P\r200,F,48,10.3,114,20.4,63,B,C,P\r\n"
  },
  {
    "path": "Indicators.csv",
    "content": "\"indicator\",\"name\",\"description\",\"source_database\",\"source_organization\"\n\"1.0.HCount.1.90usd\",\"Poverty Headcount ($1.90 a day)\",\"The poverty headcount index measures the proportion of the population with daily per capita income (in 2011 PPP) below the poverty line.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"1.0.HCount.2.5usd\",\"Poverty Headcount ($2.50 a day)\",\"The poverty headcount index measures the proportion of the population with daily per capita income (in 2005 PPP) below the poverty line.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"1.0.HCount.Mid10to50\",\"Middle Class ($10-50 a day) Headcount\",\"The poverty headcount index measures the proportion of the population with daily per capita income (in 2005 PPP) below the poverty line.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"1.0.HCount.Ofcl\",\"Official Moderate Poverty Rate-National\",\"The poverty headcount index measures the proportion of the population with daily per capita income below the official poverty line developed by each country.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of data from National Statistical Offices.\"\n\"1.0.HCount.Poor4uds\",\"Poverty Headcount ($4 a day)\",\"The poverty headcount index measures the proportion of the population with daily per capita income (in 2005 PPP) below the poverty line.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"1.0.HCount.Vul4to10\",\"Vulnerable ($4-10 a day) Headcount\",\"The poverty headcount index measures the proportion of the population with daily per capita income (in 2005 PPP) below the poverty line.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"1.0.PGap.1.90usd\",\"Poverty Gap ($1.90 a day)\",\"The poverty gap captures the mean aggregate income or consumption shortfall relative to the poverty line across the entire population. It measures the total resources needed to bring all the poor to the level of the poverty line (averaged over the total population). \",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"1.0.PGap.2.5usd\",\"Poverty Gap ($2.50 a day)\",\"The poverty gap captures the mean aggregate income or consumption shortfall relative to the poverty line across the entire population. It measures the total resources needed to bring all the poor to the level of the poverty line (averaged over the total population). \",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"1.0.PGap.Poor4uds\",\"Poverty Gap ($4 a day)\",\"The poverty gap captures the mean aggregate income or consumption shortfall relative to the poverty line across the entire population. It measures the total resources needed to bring all the poor to the level of the poverty line (averaged over the total population). \",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"1.0.PSev.1.90usd\",\"Poverty Severity ($1.90 a day)\",\"The poverty severity index combines information on both poverty and inequality among the poor by averaging the squares of the poverty gaps relative the poverty line\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"1.0.PSev.2.5usd\",\"Poverty Severity ($2.50 a day)\",\"The poverty severity index combines information on both poverty and inequality among the poor by averaging the squares of the poverty gaps relative the poverty line\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"1.0.PSev.Poor4uds\",\"Poverty Severity ($4 a day)\",\"The poverty severity index combines information on both poverty and inequality among the poor by averaging the squares of the poverty gaps relative the poverty line\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"1.1.HCount.1.90usd\",\"Poverty Headcount ($1.90 a day)-Rural\",\"The poverty headcount index measures the proportion of the population with daily per capita income (in 2011 PPP) below the poverty line.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"1.1.HCount.2.5usd\",\"Poverty Headcount ($2.50 a day)-Rural\",\"The poverty headcount index measures the proportion of the population with daily per capita income (in 2005 PPP) below the poverty line.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"1.1.HCount.Mid10to50\",\"Middle Class ($10-50 a day) Headcount-Rural\",\"The poverty headcount index measures the proportion of the population with daily per capita income (in 2005 PPP) below the poverty line.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"1.1.HCount.Ofcl\",\"Official Moderate Poverty Rate- Rural\",\"The poverty headcount index measures the proportion of the population with daily per capita income below the official poverty line developed by each country.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of data from National Statistical Offices.\"\n\"1.1.HCount.Poor4uds\",\"Poverty Headcount ($4 a day)-Rural\",\"The poverty headcount index measures the proportion of the population with daily per capita income (in 2005 PPP) below the poverty line.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"1.1.HCount.Vul4to10\",\"Vulnerable ($4-10 a day) Headcount-Rural\",\"The poverty headcount index measures the proportion of the population with daily per capita income (in 2005 PPP) below the poverty line.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"1.1.PGap.1.90usd\",\"Poverty Gap ($1.90 a day)-Rural\",\"The poverty gap captures the mean aggregate income or consumption shortfall relative to the poverty line across the entire population. It measures the total resources needed to bring all the poor to the level of the poverty line (averaged over the total population). \",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"1.1.PGap.2.5usd\",\"Poverty Gap ($2.50 a day)-Rural\",\"The poverty gap captures the mean aggregate income or consumption shortfall relative to the poverty line across the entire population. It measures the total resources needed to bring all the poor to the level of the poverty line (averaged over the total population). \",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"1.1.PGap.Poor4uds\",\"Poverty Gap ($4 a day)-Rural\",\"The poverty gap captures the mean aggregate income or consumption shortfall relative to the poverty line across the entire population. It measures the total resources needed to bring all the poor to the level of the poverty line (averaged over the total population). \",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"1.1.PSev.1.90usd\",\"Poverty Severity ($1.90 a day)-Rural\",\"The poverty severity index combines information on both poverty and inequality among the poor by averaging the squares of the poverty gaps relative the poverty line\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"1.1.PSev.2.5usd\",\"Poverty Severity ($2.50 a day)-Rural\",\"The poverty severity index combines information on both poverty and inequality among the poor by averaging the squares of the poverty gaps relative the poverty line\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"1.1.PSev.Poor4uds\",\"Poverty Severity ($4 a day)-Rural\",\"The poverty severity index combines information on both poverty and inequality among the poor by averaging the squares of the poverty gaps relative the poverty line\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"1.1_ACCESS.ELECTRICITY.TOT\",\"Access to electricity (% of total population)\",\"Access to electricity is the percentage of population with access to electricity.\",\"Sustainable Energy for All\",\"World Bank Global Electrification Database 2012\"\n\"1.1_TOTAL.FINAL.ENERGY.CONSUM\",\"Total final energy consumption (TFEC)\",\"Total final energy consumption (TFEC): This indicator is derived form energy balances statistics and is equivalent to total final consumption excluding non-energy use.\",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"1.1_YOUTH.LITERACY.RATE\",\"Literacy rate, youth total (% of people ages 15-24) \",\"The number of persons aged 15 to 24 years who can both read and write with understanding a short simple statement on their everyday life, divided by the population in that age group. Generally, ‘literacy’ also encompasses ‘numeracy’, the ability to make simple arithmetic calculations. For further country-specific definition details please refer to the source of information, the UNESCO Institute for Statistics (UIS): www.uis.unesco.org\",\"Global Partnership for Education\",\"Source of information: UNESCO Institute for Statistics (www.uis.unesco.org). Please refer to its website for country-specific details on the specific national data sources and method used. \"\n\"1.2.HCount.1.90usd\",\"Poverty Headcount ($1.90 a day)-Urban\",\"The poverty headcount index measures the proportion of the population with daily per capita income (in 2011 PPP) below the poverty line.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"1.2.HCount.2.5usd\",\"Poverty Headcount ($2.50 a day)-Urban\",\"The poverty headcount index measures the proportion of the population with daily per capita income (in 2005 PPP) below the poverty line.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"1.2.HCount.Mid10to50\",\"Middle Class ($10-50 a day) Headcount-Urban\",\"The poverty headcount index measures the proportion of the population with daily per capita income (in 2005 PPP) below the poverty line.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"1.2.HCount.Ofcl\",\"Official Moderate Poverty Rate-Urban\",\"The poverty headcount index measures the proportion of the population with daily per capita income below the official poverty line developed by each country.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of data from National Statistical Offices.\"\n\"1.2.HCount.Poor4uds\",\"Poverty Headcount ($4 a day)-Urban\",\"The poverty headcount index measures the proportion of the population with daily per capita income (in 2005 PPP) below the poverty line.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"1.2.HCount.Vul4to10\",\"Vulnerable ($4-10 a day) Headcount-Urban\",\"The poverty headcount index measures the proportion of the population with daily per capita income (in 2005 PPP) below the poverty line.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"1.2.PGap.1.90usd\",\"Poverty Gap ($1.90 a day)-Urban\",\"The poverty gap captures the mean aggregate income or consumption shortfall relative to the poverty line across the entire population. It measures the total resources needed to bring all the poor to the level of the poverty line (averaged over the total population). \",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"1.2.PGap.2.5usd\",\"Poverty Gap ($2.50 a day)-Urban\",\"The poverty gap captures the mean aggregate income or consumption shortfall relative to the poverty line across the entire population. It measures the total resources needed to bring all the poor to the level of the poverty line (averaged over the total population). \",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"1.2.PGap.Poor4uds\",\"Poverty Gap ($4 a day)-Urban\",\"The poverty gap captures the mean aggregate income or consumption shortfall relative to the poverty line across the entire population. It measures the total resources needed to bring all the poor to the level of the poverty line (averaged over the total population). \",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"1.2.PSev.1.90usd\",\"Poverty Severity ($1.90 a day)-Urban\",\"The poverty severity index combines information on both poverty and inequality among the poor by averaging the squares of the poverty gaps relative the poverty line\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"1.2.PSev.2.5usd\",\"Poverty Severity ($2.50 a day)-Urban\",\"The poverty severity index combines information on both poverty and inequality among the poor by averaging the squares of the poverty gaps relative the poverty line\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"1.2.PSev.Poor4uds\",\"Poverty Severity ($4 a day)-Urban\",\"The poverty severity index combines information on both poverty and inequality among the poor by averaging the squares of the poverty gaps relative the poverty line\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"1.2_ACCESS.ELECTRICITY.RURAL\",\"Access to electricity (% of rural population)\",\"Access to electricity is the percentage of rural population with access to electricity. \",\"Sustainable Energy for All\",\"World Bank Global Electrification Database 2013\"\n\"1.3_ACCESS.ELECTRICITY.URBAN\",\"Access to electricity (% of urban population)\",\"Access to electricity is the percentage of total population with access to electricity. \",\"Sustainable Energy for All\",\"World Bank Global Electrification Database 2014\"\n\"10.1_ENERGY.SAVINGS\",\"Energy savings of primary energy (TJ)\",\"Energy savings of primary energy (TJ): Energy savings due to realized energy intensity improvements. Country level savings represent the difference between a hypothetical energy consumption that would have been should the energy intensity remained at its 1990 level and actual consumption. Global, regional and income group savings represent the sum of country by country savings and not calculated separately.\",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"11.1_THERMAL.EFFICIENCY\",\"Thermal efficiency (%) in power supply\",\"Thermal efficiency (%) in power supply:  This supply-side energy efficiency indicator measure the efficiency of thermal plants in converting primary energy sources—such as coal, gas, and oil—into electricity. They are calculated by dividing gross electricity production from electricity and cogeneration plants by total inputs of fuels into those plants. Whether market-based or privately owned, self-generating plants that do not export their power are included in the index assessment. In the case of cogeneration plants, fuel inputs are allocated between electricity and heat production in proportion to their shares of the annual output. \",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"12.1_TD.LOSSES\",\"Transmission and distribution losses (%)\",\"Transmission and distribution losses (%): Transmission and distribution (T&D) losses measure power lost in the transmission of (high-voltage) electricity from power generators to distributors and in the distribution of (medium- and low-voltage) electricity from distributors to end-users. T&D losses are represented as a percentage of gross electricity production. They include both technical and nontechnical (or commercial) losses. Included in the latter are unmetered, unbilled, and unpaid electricity, including theft, which could be significant in developing countries. Aggregate T&D system indicators may be dominated by factors other than losses. The location of primary energy resources (such as hydro lakes and coal seams) and large loads (cities and industries) may be more significant factors in T&D efficiency indicators than the losses or efficiency of the transmission system itself. Properly separating true losses (and hence the efficiency potential of transmission systems) from exogenous location and scale factors and nontechnical losses would require detailed studies of system-dynamic interactions and real operating requirements that are not practical for global tracking purposes.\",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"13.1_INDUSTRY.ENERGY.INTENSITY\",\"Energy intensity of industrial sector (MJ/$2005)\",\"Energy intensity of industrial sector (MJ/$2005):  A ratio between energy consumption in industry (including energy industry own use) and industry sector value added measured at purchasing power parity. Energy intensity is an indication of how much energy is used to produce one unit of economic output. Lower ratio indicates that less energy is used to produce one unit of output. \",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"14.1_AGR.ENERGY.INTENSITY\",\"Energy intensity of agricultural sector (MJ/$2005)\",\"Energy intensity of agricultural sector (MJ/$2005):  A ratio between energy consumption in agricultural sector (including forestry and fishing) and agricultural sector value added measured at purchasing power parity. Energy intensity is an indication of how much energy is used to produce one unit of economic output. Lower ratio indicates that less energy is used to produce one unit of output. \",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"15.1_SERVICES.ENERGY.INTENSITY\",\"Energy intensity of service sector (MJ/2011 USD PPP)\",\"\",\"Sustainable Energy for All\",\"\"\n\"16.1_TRANS.ENERGY.INTENSITY\",\"Energy intensity of transportation sector (MJ/2011 USD PPP)\",\"\",\"Sustainable Energy for All\",\"\"\n\"17.1_HOUSEHOLD.ENERG.INTENSITY\",\"Energy intensity of residential sector (GJ/household)\",\"\",\"Sustainable Energy for All\",\"\"\n\"18.1_DECOMP.EFFICIENCY.IND\",\"Divisia Decomposition Analysis - Energy Intensity component Index\",\"\",\"Sustainable Energy for All\",\"\"\n\"18.2_DECOMP.ACTIVITY.INDEX\",\"Divisia Decomposition Analysis - Activity component Index\",\"\",\"Sustainable Energy for All\",\"\"\n\"18.3_DECOMP.STRUCTURE.INDEX\",\"Divisia Decomposition Analysis - Structure Component Index \",\"\",\"Sustainable Energy for All\",\"\"\n\"18.4_DECOMP.EFFICIENCY.RATE\",\"Divisia Decomposition Analysis - Energy Intensity component rate of improvement (%)\",\"\",\"Sustainable Energy for All\",\"\"\n\"18.5_DECOMP.ACTIVITY.RATE\",\"Divisia Decomposition Analysis - Activity component rate of improvement (%)\",\"\",\"Sustainable Energy for All\",\"\"\n\"18.6_DECOMP.STRUCTURE.RATE\",\"Divisia Decomposition Analysis - Structure component rate of improvement (%)\",\"\",\"Sustainable Energy for All\",\"\"\n\"2.0.cov.Cel\",\"Coverage: Mobile Phone\",\"The coverage rate is the childhood access rate of a given opportunity used in calculating the Human Opportunities Index (HOI). The coverage rate does not take into account inequality of access between different circumstance groups.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"2.0.cov.Ele\",\"Coverage: Electricity\",\"The coverage rate is the childhood access rate of a given opportunity used in calculating the Human Opportunities Index (HOI). The coverage rate does not take into account inequality of access between different circumstance groups.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"2.0.cov.FPS\",\"Coverage: Finished Primary School\",\"The coverage rate is the childhood access rate of a given opportunity used in calculating the Human Opportunities Index (HOI). The coverage rate does not take into account inequality of access between different circumstance groups.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"2.0.cov.Int\",\"Coverage: Internet \",\"The coverage rate is the childhood access rate of a given opportunity used in calculating the Human Opportunities Index (HOI). The coverage rate does not take into account inequality of access between different circumstance groups.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"2.0.cov.Math.pl_2.all\",\"Coverage: Mathematics Proficiency Level 2\",\"The coverage rate is the childhood access rate of a given opportunity used in calculating the Human Opportunities Index (HOI). The coverage rate does not take into account inequality of access between different circumstance groups.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations using PISA Data.\"\n\"2.0.cov.Math.pl_2.prv\",\"Coverage: Mathematics Proficiency Level 2, Private schools\",\"The coverage rate is the childhood access rate of a given opportunity used in calculating the Human Opportunities Index (HOI). The coverage rate does not take into account inequality of access between different circumstance groups.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations using PISA Data.\"\n\"2.0.cov.Math.pl_2.pub\",\"Coverage: Mathematics Proficiency Level 2, Public schools\",\"The coverage rate is the childhood access rate of a given opportunity used in calculating the Human Opportunities Index (HOI). The coverage rate does not take into account inequality of access between different circumstance groups.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations using PISA Data.\"\n\"2.0.cov.Math.pl_3.all\",\"Coverage: Mathematics Proficiency Level 3\",\"The coverage rate is the childhood access rate of a given opportunity used in calculating the Human Opportunities Index (HOI). The coverage rate does not take into account inequality of access between different circumstance groups.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations using PISA Data.\"\n\"2.0.cov.Math.pl_3.prv\",\"Coverage: Mathematics Proficiency Level 3, Private schools\",\"The coverage rate is the childhood access rate of a given opportunity used in calculating the Human Opportunities Index (HOI). The coverage rate does not take into account inequality of access between different circumstance groups.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations using PISA Data.\"\n\"2.0.cov.Math.pl_3.pub\",\"Coverage: Mathematics Proficiency Level 3, Public schools\",\"The coverage rate is the childhood access rate of a given opportunity used in calculating the Human Opportunities Index (HOI). The coverage rate does not take into account inequality of access between different circumstance groups.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations using PISA Data.\"\n\"2.0.cov.Read.pl_2.all\",\"Coverage: Reading Proficiency Level 2\",\"The coverage rate is the childhood access rate of a given opportunity used in calculating the Human Opportunities Index (HOI). The coverage rate does not take into account inequality of access between different circumstance groups.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations using PISA Data.\"\n\"2.0.cov.Read.pl_2.prv\",\"Coverage: Reading Proficiency Level 2, Private schools\",\"The coverage rate is the childhood access rate of a given opportunity used in calculating the Human Opportunities Index (HOI). The coverage rate does not take into account inequality of access between different circumstance groups.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations using PISA Data.\"\n\"2.0.cov.Read.pl_2.pub\",\"Coverage: Reading Proficiency Level 2, Public schools\",\"The coverage rate is the childhood access rate of a given opportunity used in calculating the Human Opportunities Index (HOI). The coverage rate does not take into account inequality of access between different circumstance groups.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations using PISA Data.\"\n\"2.0.cov.Read.pl_3.all\",\"Coverage: Reading Proficiency Level 3\",\"The coverage rate is the childhood access rate of a given opportunity used in calculating the Human Opportunities Index (HOI). The coverage rate does not take into account inequality of access between different circumstance groups.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations using PISA Data.\"\n\"2.0.cov.Read.pl_3.prv\",\"Coverage: Reading Proficiency Level 3, Private schools\",\"The coverage rate is the childhood access rate of a given opportunity used in calculating the Human Opportunities Index (HOI). The coverage rate does not take into account inequality of access between different circumstance groups.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations using PISA Data.\"\n\"2.0.cov.Read.pl_3.pub\",\"Coverage: Reading Proficiency Level 3, Public schools\",\"The coverage rate is the childhood access rate of a given opportunity used in calculating the Human Opportunities Index (HOI). The coverage rate does not take into account inequality of access between different circumstance groups.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations using PISA Data.\"\n\"2.0.cov.San\",\"Coverage: Sanitation\",\"The coverage rate is the childhood access rate of a given opportunity used in calculating the Human Opportunities Index (HOI). The coverage rate does not take into account inequality of access between different circumstance groups.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"2.0.cov.Sch\",\"Coverage: School Enrollment\",\"The coverage rate is the childhood access rate of a given opportunity used in calculating the Human Opportunities Index (HOI). The coverage rate does not take into account inequality of access between different circumstance groups.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"2.0.cov.Scie.pl_2.all\",\"Coverage: Science Proficiency Level 2\",\"The coverage rate is the childhood access rate of a given opportunity used in calculating the Human Opportunities Index (HOI). The coverage rate does not take into account inequality of access between different circumstance groups.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations using PISA Data.\"\n\"2.0.cov.Scie.pl_2.prv\",\"Coverage: Science Proficiency Level 2, Private schools\",\"The coverage rate is the childhood access rate of a given opportunity used in calculating the Human Opportunities Index (HOI). The coverage rate does not take into account inequality of access between different circumstance groups.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations using PISA Data.\"\n\"2.0.cov.Scie.pl_2.pub\",\"Coverage: Science Proficiency Level 2, Public schools\",\"The coverage rate is the childhood access rate of a given opportunity used in calculating the Human Opportunities Index (HOI). The coverage rate does not take into account inequality of access between different circumstance groups.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations using PISA Data.\"\n\"2.0.cov.Scie.pl_3.all\",\"Coverage: Science Proficiency Level 3\",\"The coverage rate is the childhood access rate of a given opportunity used in calculating the Human Opportunities Index (HOI). The coverage rate does not take into account inequality of access between different circumstance groups.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations using PISA Data.\"\n\"2.0.cov.Scie.pl_3.prv\",\"Coverage: Science Proficiency Level 3, Private schools\",\"The coverage rate is the childhood access rate of a given opportunity used in calculating the Human Opportunities Index (HOI). The coverage rate does not take into account inequality of access between different circumstance groups.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations using PISA Data.\"\n\"2.0.cov.Scie.pl_3.pub\",\"Coverage: Science Proficiency Level 3, Public schools\",\"The coverage rate is the childhood access rate of a given opportunity used in calculating the Human Opportunities Index (HOI). The coverage rate does not take into account inequality of access between different circumstance groups.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations using PISA Data.\"\n\"2.0.cov.Wat\",\"Coverage: Water\",\"The coverage rate is the childhood access rate of a given opportunity used in calculating the Human Opportunities Index (HOI). The coverage rate does not take into account inequality of access between different circumstance groups.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"2.0.hoi.Cel\",\"HOI: Mobile Phone\",\"The Human Opportunities Index (HOI) is an economic indicator that captures the degree of inequality of access to an essential service by different circumstance groups. This index takes into account the average access rate (the coverage) of a given opportunity (service) and the inequality of its distribution. The circumstances included in the HOI are the gender of the child, parents' education, household per capita income, number of siblings, presence of both parents in the household, gender of the household head, and urban or rural residence.An increase in the index can be related either to an increase in the coverage or to a more equal distribution of that service.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"2.0.hoi.Ele\",\"HOI: Electricity\",\"The Human Opportunities Index (HOI) is an economic indicator that captures the degree of inequality of access to an essential service by different circumstance groups. This index takes into account the average access rate (the coverage) of a given opportunity (service) and the inequality of its distribution. The circumstances included in the HOI are the gender of the child, parents' education, household per capita income, number of siblings, presence of both parents in the household, gender of the household head, and urban or rural residence.An increase in the index can be related either to an increase in the coverage or to a more equal distribution of that service.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"2.0.hoi.FPS\",\"HOI: Finished Primary School\",\"The Human Opportunities Index (HOI) is an economic indicator that captures the degree of inequality of access to an essential service by different circumstance groups. This index takes into account the average access rate (the coverage) of a given opportunity (service) and the inequality of its distribution. The circumstances included in the HOI are the gender of the child, parents' education, household per capita income, number of siblings, presence of both parents in the household, gender of the household head, and urban or rural residence.An increase in the index can be related either to an increase in the coverage or to a more equal distribution of that service.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"2.0.hoi.Int\",\"HOI: Internet \",\"The Human Opportunities Index (HOI) is an economic indicator that captures the degree of inequality of access to an essential service by different circumstance groups. This index takes into account the average access rate (the coverage) of a given opportunity (service) and the inequality of its distribution. The circumstances included in the HOI are the gender of the child, parents' education, household per capita income, number of siblings, presence of both parents in the household, gender of the household head, and urban or rural residence.An increase in the index can be related either to an increase in the coverage or to a more equal distribution of that service.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"2.0.hoi.Math.pl_2.all\",\"HOI: Mathematics Proficiency Level 2\",\"The Human Opportunities Index (HOI) is an economic indicator that captures the degree of inequality of access to an essential service by different circumstance groups. This index takes into account the average access rate (the coverage) of a given opportunity (service) and the inequality of its distribution. The circumstances included in the HOI are the gender of the child, parents' education, region of school location, father's occupation, and a household wealth index based on assets.An increase in the index can be related either to an increase in the coverage or to a more equal distribution of that service.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations using PISA Data.\"\n\"2.0.hoi.Math.pl_2.prv\",\"HOI: Mathematics Proficiency Level 2, Private schools\",\"The Human Opportunities Index (HOI) is an economic indicator that captures the degree of inequality of access to an essential service by different circumstance groups. This index takes into account the average access rate (the coverage) of a given opportunity (service) and the inequality of its distribution. The circumstances included in the HOI are the gender of the child, parents' education, region of school location, father's occupation, and a household wealth index based on assets.An increase in the index can be related either to an increase in the coverage or to a more equal distribution of that service.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations using PISA Data.\"\n\"2.0.hoi.Math.pl_2.pub\",\"HOI: Mathematics Proficiency Level 2, Public schools\",\"The Human Opportunities Index (HOI) is an economic indicator that captures the degree of inequality of access to an essential service by different circumstance groups. This index takes into account the average access rate (the coverage) of a given opportunity (service) and the inequality of its distribution. The circumstances included in the HOI are the gender of the child, parents' education, region of school location, father's occupation, and a household wealth index based on assets.An increase in the index can be related either to an increase in the coverage or to a more equal distribution of that service.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations using PISA Data.\"\n\"2.0.hoi.Math.pl_3.all\",\"HOI: Mathematics Proficiency Level 3\",\"The Human Opportunities Index (HOI) is an economic indicator that captures the degree of inequality of access to an essential service by different circumstance groups. This index takes into account the average access rate (the coverage) of a given opportunity (service) and the inequality of its distribution. The circumstances included in the HOI are the gender of the child, parents' education, region of school location, father's occupation, and a household wealth index based on assets.An increase in the index can be related either to an increase in the coverage or to a more equal distribution of that service.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations using PISA Data.\"\n\"2.0.hoi.Math.pl_3.prv\",\"HOI: Mathematics Proficiency Level 3, Private schools\",\"The Human Opportunities Index (HOI) is an economic indicator that captures the degree of inequality of access to an essential service by different circumstance groups. This index takes into account the average access rate (the coverage) of a given opportunity (service) and the inequality of its distribution. The circumstances included in the HOI are the gender of the child, parents' education, region of school location, father's occupation, and a household wealth index based on assets.An increase in the index can be related either to an increase in the coverage or to a more equal distribution of that service.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations using PISA Data.\"\n\"2.0.hoi.Math.pl_3.pub\",\"HOI: Mathematics Proficiency Level 3, Public schools\",\"The Human Opportunities Index (HOI) is an economic indicator that captures the degree of inequality of access to an essential service by different circumstance groups. This index takes into account the average access rate (the coverage) of a given opportunity (service) and the inequality of its distribution. The circumstances included in the HOI are the gender of the child, parents' education, region of school location, father's occupation, and a household wealth index based on assets.An increase in the index can be related either to an increase in the coverage or to a more equal distribution of that service.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations using PISA Data.\"\n\"2.0.hoi.Read.pl_2.all\",\"HOI: Reading Proficiency Level 2\",\"The Human Opportunities Index (HOI) is an economic indicator that captures the degree of inequality of access to an essential service by different circumstance groups. This index takes into account the average access rate (the coverage) of a given opportunity (service) and the inequality of its distribution. The circumstances included in the HOI are the gender of the child, parents' education, region of school location, father's occupation, and a household wealth index based on assets.An increase in the index can be related either to an increase in the coverage or to a more equal distribution of that service.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations using PISA Data.\"\n\"2.0.hoi.Read.pl_2.prv\",\"HOI: Reading Proficiency Level 2, Private schools\",\"The Human Opportunities Index (HOI) is an economic indicator that captures the degree of inequality of access to an essential service by different circumstance groups. This index takes into account the average access rate (the coverage) of a given opportunity (service) and the inequality of its distribution. The circumstances included in the HOI are the gender of the child, parents' education, region of school location, father's occupation, and a household wealth index based on assets.An increase in the index can be related either to an increase in the coverage or to a more equal distribution of that service.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations using PISA Data.\"\n\"2.0.hoi.Read.pl_2.pub\",\"HOI: Reading Proficiency Level 2, Public schools\",\"The Human Opportunities Index (HOI) is an economic indicator that captures the degree of inequality of access to an essential service by different circumstance groups. This index takes into account the average access rate (the coverage) of a given opportunity (service) and the inequality of its distribution. The circumstances included in the HOI are the gender of the child, parents' education, region of school location, father's occupation, and a household wealth index based on assets.An increase in the index can be related either to an increase in the coverage or to a more equal distribution of that service.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations using PISA Data.\"\n\"2.0.hoi.Read.pl_3.all\",\"HOI: Reading Proficiency Level 3\",\"The Human Opportunities Index (HOI) is an economic indicator that captures the degree of inequality of access to an essential service by different circumstance groups. This index takes into account the average access rate (the coverage) of a given opportunity (service) and the inequality of its distribution. The circumstances included in the HOI are the gender of the child, parents' education, region of school location, father's occupation, and a household wealth index based on assets.An increase in the index can be related either to an increase in the coverage or to a more equal distribution of that service.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations using PISA Data.\"\n\"2.0.hoi.Read.pl_3.prv\",\"HOI: Reading Proficiency Level 3, Private schools\",\"The Human Opportunities Index (HOI) is an economic indicator that captures the degree of inequality of access to an essential service by different circumstance groups. This index takes into account the average access rate (the coverage) of a given opportunity (service) and the inequality of its distribution. The circumstances included in the HOI are the gender of the child, parents' education, region of school location, father's occupation, and a household wealth index based on assets.An increase in the index can be related either to an increase in the coverage or to a more equal distribution of that service.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations using PISA Data.\"\n\"2.0.hoi.Read.pl_3.pub\",\"HOI: Reading Proficiency Level 3, Public schools\",\"The Human Opportunities Index (HOI) is an economic indicator that captures the degree of inequality of access to an essential service by different circumstance groups. This index takes into account the average access rate (the coverage) of a given opportunity (service) and the inequality of its distribution. The circumstances included in the HOI are the gender of the child, parents' education, region of school location, father's occupation, and a household wealth index based on assets.An increase in the index can be related either to an increase in the coverage or to a more equal distribution of that service.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations using PISA Data.\"\n\"2.0.hoi.San\",\"HOI: Sanitation\",\"The Human Opportunities Index (HOI) is an economic indicator that captures the degree of inequality of access to an essential service by different circumstance groups. This index takes into account the average access rate (the coverage) of a given opportunity (service) and the inequality of its distribution. The circumstances included in the HOI are the gender of the child, parents' education, household per capita income, number of siblings, presence of both parents in the household, gender of the household head, and urban or rural residence.An increase in the index can be related either to an increase in the coverage or to a more equal distribution of that service.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"2.0.hoi.Sch\",\"HOI: School Enrollment\",\"The Human Opportunities Index (HOI) is an economic indicator that captures the degree of inequality of access to an essential service by different circumstance groups. This index takes into account the average access rate (the coverage) of a given opportunity (service) and the inequality of its distribution. The circumstances included in the HOI are the gender of the child, parents' education, household per capita income, number of siblings, presence of both parents in the household, gender of the household head, and urban or rural residence.An increase in the index can be related either to an increase in the coverage or to a more equal distribution of that service.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"2.0.hoi.Scie.pl_2.all\",\"HOI: Science Proficiency Level 2\",\"The Human Opportunities Index (HOI) is an economic indicator that captures the degree of inequality of access to an essential service by different circumstance groups. This index takes into account the average access rate (the coverage) of a given opportunity (service) and the inequality of its distribution. The circumstances included in the HOI are the gender of the child, parents' education, region of school location, father's occupation, and a household wealth index based on assets.An increase in the index can be related either to an increase in the coverage or to a more equal distribution of that service.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations using PISA Data.\"\n\"2.0.hoi.Scie.pl_2.prv\",\"HOI: Science Proficiency Level 2, Private schools\",\"The Human Opportunities Index (HOI) is an economic indicator that captures the degree of inequality of access to an essential service by different circumstance groups. This index takes into account the average access rate (the coverage) of a given opportunity (service) and the inequality of its distribution. The circumstances included in the HOI are the gender of the child, parents' education, region of school location, father's occupation, and a household wealth index based on assets.An increase in the index can be related either to an increase in the coverage or to a more equal distribution of that service.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations using PISA Data.\"\n\"2.0.hoi.Scie.pl_2.pub\",\"HOI: Science Proficiency Level 2, Public schools\",\"The Human Opportunities Index (HOI) is an economic indicator that captures the degree of inequality of access to an essential service by different circumstance groups. This index takes into account the average access rate (the coverage) of a given opportunity (service) and the inequality of its distribution. The circumstances included in the HOI are the gender of the child, parents' education, region of school location, father's occupation, and a household wealth index based on assets.An increase in the index can be related either to an increase in the coverage or to a more equal distribution of that service.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations using PISA Data.\"\n\"2.0.hoi.Scie.pl_3.all\",\"HOI: Science Proficiency Level 3\",\"The Human Opportunities Index (HOI) is an economic indicator that captures the degree of inequality of access to an essential service by different circumstance groups. This index takes into account the average access rate (the coverage) of a given opportunity (service) and the inequality of its distribution. The circumstances included in the HOI are the gender of the child, parents' education, region of school location, father's occupation, and a household wealth index based on assets.An increase in the index can be related either to an increase in the coverage or to a more equal distribution of that service.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations using PISA Data.\"\n\"2.0.hoi.Scie.pl_3.prv\",\"HOI: Science Proficiency Level 3, Private schools\",\"The Human Opportunities Index (HOI) is an economic indicator that captures the degree of inequality of access to an essential service by different circumstance groups. This index takes into account the average access rate (the coverage) of a given opportunity (service) and the inequality of its distribution. The circumstances included in the HOI are the gender of the child, parents' education, region of school location, father's occupation, and a household wealth index based on assets.An increase in the index can be related either to an increase in the coverage or to a more equal distribution of that service.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations using PISA Data.\"\n\"2.0.hoi.Scie.pl_3.pub\",\"HOI: Science Proficiency Level 3, Public schools\",\"The Human Opportunities Index (HOI) is an economic indicator that captures the degree of inequality of access to an essential service by different circumstance groups. This index takes into account the average access rate (the coverage) of a given opportunity (service) and the inequality of its distribution. The circumstances included in the HOI are the gender of the child, parents' education, region of school location, father's occupation, and a household wealth index based on assets.An increase in the index can be related either to an increase in the coverage or to a more equal distribution of that service.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations using PISA Data.\"\n\"2.0.hoi.Wat\",\"HOI: Water\",\"The Human Opportunities Index (HOI) is an economic indicator that captures the degree of inequality of access to an essential service by different circumstance groups. This index takes into account the average access rate (the coverage) of a given opportunity (service) and the inequality of its distribution. The circumstances included in the HOI are the gender of the child, parents' education, household per capita income, number of siblings, presence of both parents in the household, gender of the household head, and urban or rural residence.An increase in the index can be related either to an increase in the coverage or to a more equal distribution of that service.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"2.01.01.02.nabase\",\"National accounts base year\",\"National accounts base year is the year used as the base period for constant price calculations in the country's national accounts. It is recommended that he base year of constant price estimates be changed periodically to reflect changes in economic structure and relative prices.\",\"Statistical Capacity Indicators\",\"World Bank: World Development Indicator (Primary Data Documentation)\"\n\"2.01.03.01.prcpbase\",\"Consumer price index base year\",\"Consumer Price Index (CPI) serves as indicators of inflation and reflects changes in the cost of acquiring a fixed basket of goods and services by the average consumer. Weights are usually derived from consumer expenditure surveys and the CPI base year refers to the year the weights were derived.\",\"Statistical Capacity Indicators\",\"IMF: International Financial Statistics (IFS) - Country notes\"\n\"2.04.01.01.excncpt\",\"Balance of payments manual in use\",\"The Balance of Payments Manual serves as an international standard for the compilation of balance of payments statistics. The manual has evolved to meet changing economic and financial environment and analytic requirements. The first edition was published in 1948 and successive editions in 1950, 1961, 1977, 1993, and 2013.\",\"Statistical Capacity Indicators\",\"IMF: Balance of Payment Statistics yearbook (BPS)\"\n\"2.1.1_SHARE.TRADBIO\",\"Traditional biomass consumption (% in TFEC)\",\"Traditional biomass consumption (% in TFEC): Share of traditional biomass in total final energy consumption. Traditional biomass is defined as biomass consumed in the residential sector in non-OECD countries. It includes the following categories in the IEA statistics: primary solid biofuels, charcoal and non-specified primary biofuels and waste.\",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"2.1.10_SHARE.MARINE\",\"Marine energy consumption (% in TFEC)\",\"Marine energy consumption (% in TFEC): Share of marine energy in total final consumption\",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"2.1.2_SHARE.MODERNBIO\",\"Modern biomass consumption (% in TFEC)\",\"Modern biomass consumption (% in TFEC): Share of modern biomass in total final energy consumption. Modern biomass is defined as all biomass that was not consumed in the residential sector in non-OECD countries. It includes the following categories in the IEA statistics: primary solid biofuels, charcoal and non-specified primary biofuels and waste.\",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"2.1.3_SHARE.HYDRO\",\"Hydro energy consumption (% in TFEC)\",\"Hydro consumption (% in TFEC): Share of hydro energy in total final energy consumption\",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"2.1.4_SHARE.BIOFUELS\",\"Liquid biofuels consumption (% in TFEC)\",\"Liquid biofuels consumption (% in TFEC): Share of liquid biofuels energy in total final energy consumption\",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"2.1.5_SHARE.WIND\",\"Wind energy consumption (% in TFEC)\",\"Wind consumption (% in TFEC): Share of wind energy in total final energy consumption\",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"2.1.6_SHARE.SOLAR\",\"Solar energy consumption (% in TFEC)\",\"Solar consumption (% in TFEC): Share of solar energy in total final energy consumption\",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"2.1.7_SHARE.GEOTHERMAL\",\"Geothermal energy consumption (% in TFEC)\",\"Geothermal consumption (% in TFEC): Share of geothermal energy in total final energy consumption\",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"2.1.8_SHARE.WASTE\",\"Waste energy consumption (% in TFEC)\",\"Waste energy consumption (% in TFEC): Share of waste energy in total final consumption, which is defined in the IEA statistics as renewable municipal waste\",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"2.1.9_SHARE.BIOGAS\",\"Biogas consumption (% in TFEC)\",\"Biogas consumption (% in TFEC): Share of biogas in total final energy consumption\",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"2.1_ACCESS.NONSOLIDFUEL.TOT\",\"Access to Non-Solid Fuel (% of total population)\",\"Access to Non-Solid Fuel is the percentage of population with access to Non-Solid Fuel. \",\"Sustainable Energy for All\",\"WHO Global Household Energy Database 2012\"\n\"2.1_PRE.PRIMARY.GER\",\"School enrolment, preprimary, national source (% gross)\",\"Pre-Primary Gross Enrolment Rate (GER): The number of pupils enrolled in pre-primary school, regardless of age, expressed as a percentage of the population in the theoretical age group in pre-primary school. The purpose of this indicator is to measure the general level of participation of children in Early Childhood Education (ECE) programs. Country-specific definition, method and targets are determined by countries themselves. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"2.1_SHARE.TOTAL.RE.IN.TFEC\",\"Renewable energy consumption(% in TFEC)\",\"Renewable energy consumption(% in TFEC): Share of renewables energy in total final energy consumption\",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"2.2_ACCESS.NONSOLIDFUEL.RURAL\",\"Access to Non-Solid Fuel (% of rural population)\",\"Access to Non-Solid Fuel is the percentage of rural population with access to Non-Solid Fuel. \",\"Sustainable Energy for All\",\"WHO Global Household Energy Database 2013\"\n\"2.2_GIR\",\"Gross intake ratio in grade 1, total, national source (% of relevant age group)\",\"Gross intake ratio (GIR): This indicator measures the total number of new entrants in the first grade of primary education, regardless of age, expressed as a percentage of the population at the official primary school-entrance age. Country-specific definition, method and targets are determined by countries themselves. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"2.3_ACCESS.NONSOLIDFUEL.URBAN\",\"Access to Non-Solid Fuel (% of urban population)\",\"Access to Non-Solid Fuel is the percentage of total population with access to Non-Solid Fuel. \",\"Sustainable Energy for All\",\"WHO Global Household Energy Database 2014\"\n\"2.3_GIR.GPI\",\"Gender parity index for gross intake ratio in grade 1\",\"Ratio of female to male values of gross intake ratio for primary first grade. Country-specific definition, method and targets are determined by countries themselves. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"2.4_OOSC.RATE\",\"Rate of out of school children, national source (% of relevant age group) \",\"Number of children of official primary school age who are not enrolled in primary or secondary school, expressed as a percentage of the population of official primary school age. This indicator is intended to measure the size of the population in the official primary school age range that should be targeted by policies and efforts to achieve universal primary education. Country-specific definition, method and targets are determined by countries themselves. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"2.5_PCR\",\"Primary completion rate, total, national source (% of relevant age group)\",\"The Primary Completion Rate (PCR) is the percentage of pupils who completed the last year of primary schooling. It is computed by dividing the total number of students in the last grade of primary school minus repeaters in that grade, divided by the total number of children of official completing age. Country-specific definition, method and targets are determined by countries themselves.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"2.6_PCR.GPI\",\"Gender parity index for primary completion rate \",\"Ratio of female to male values of Primary Completion Rate. Country-specific definition, method and targets are determined by countries themselves. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"2.7_PRI.SEC.TRANSITION.RATE\",\"Progression to secondary school, national source (%)\",\"This indicator measures the number of new entrants to the first grade of secondary education (general programs only) in a given year, expressed as a percentage of the number of pupils enrolled in the final grade of primary education in the previous year. Country-specific definition, method and targets are determined by countries themselves. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"2.8_LOW.SEC.COMPLETION.RATE\",\"Lower secondary completion rate, total, national source (% of relevant age group)\",\"The lower secondary school completion rate is the percentage of children who are completing the last year of lower secondary education. It is computed by dividing the total number of students in the last grade of lower secondary education school minus repeaters in that grade divided by the total number of children of official completing age. Country-specific definition, method and targets are determined by countries themselves. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"3.0.Atkin.0.5\",\"Atkinson, A(.5)\",\"Atkinson (1970) proposed this class of inequality measures with  a weighting parameter ε which measures aversion to inequality. As ε rises, the index becomes more sensitive to transfers at the lower end of the distribution and less sensitive to transfers at the top. The limit case, ε→0, the index reflects the Function of Rawls which only takes account of transfers to the very lowest income group; at the other extreme, when ε=0, we obtain the linear utility function. This ranks distributions solely according to total income.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"3.0.Atkin.1\",\"Atkinson, A(1)\",\"Atkinson (1970) proposed this class of inequality measures with  a weighting parameter ε which measures aversion to inequality. As ε rises, the index becomes more sensitive to transfers at the lower end of the distribution and less sensitive to transfers at the top. The limit case, ε→0, the index reflects the Function of Rawls which only takes account of transfers to the very lowest income group; at the other extreme, when ε=0, we obtain the linear utility function. This ranks distributions solely according to total income.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"3.0.Atkin.2\",\"Atkinson, A(2)\",\"Atkinson (1970) proposed this class of inequality measures with  a weighting parameter ε which measures aversion to inequality. As ε rises, the index becomes more sensitive to transfers at the lower end of the distribution and less sensitive to transfers at the top. The limit case, ε→0, the index reflects the Function of Rawls which only takes account of transfers to the very lowest income group; at the other extreme, when ε=0, we obtain the linear utility function. This ranks distributions solely according to total income.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"3.0.GenEnt-1\",\"Generalized Entrophy, GE(-1)\",\"The parameter α in the GE class represents the weight given to distances between incomes at different parts of the income distribution, and can take any real value. For lower values of α, GE is more sensitive to changes in the lower tail of the distribution, and for higher values GE is more sensitive to changes that affect the upper tail. GE(1) is the Theil index.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"3.0.GenEnt2\",\"Generalized Entrophy, GE(2)\",\"The parameter α in the GE class represents the weight given to distances between incomes at different parts of the income distribution, and can take any real value. For lower values of α, GE is more sensitive to changes in the lower tail of the distribution, and for higher values GE is more sensitive to changes that affect the upper tail. GE(1) is the Theil index.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"3.0.Gini\",\"Gini Coefficient\",\"The Gini coefficient is most common measure of inequality. It is based on the Lorenz curve, a cumulative frequency curve that compares the distribution of a specific variable (in this case, income) with the uniform distribution that represents equality. The Gini coefficient is bounded by 0 (indicating perfect equality of income) and 1, which means complete inequality. This calculation includes observations of 0 income.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"3.0.Gini_nozero\",\"Gini Coefficient (No Zero Income)\",\"The Gini coefficient is most common measure of inequality. It is based on the Lorenz curve, a cumulative frequency curve that compares the distribution of a specific variable (in this case, income) with the uniform distribution that represents equality. The Gini coefficient is bounded by 0 (indicating perfect equality of income) and 1, which means complete inequality. This calculation does not includes observations of 0 income.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"3.0.IncShr.q1\",\"Income Share of First Quintile\",\"Share of household income held by the bottom quintile (0-20 percent).\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"3.0.IncShr.q2\",\"Income Share of Second Quintile\",\"Share of household income held by the seocnd quintile (20 - 40 percent).\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"3.0.IncShr.q3\",\"Income Share of Third Quintile\",\"Share of household income held by the third quintile (40 - 60 percent).\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"3.0.IncShr.q4\",\"Income Share of Fourth Quintile\",\"Share of household income held by the fourth quintile (60 - 80 percent).\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"3.0.IncShr.q5\",\"Income Share of Fifth Quintile\",\"Share of household income held by the top quintile (80 - 100 percent).\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"3.0.MLongDev0\",\"Mean Log Deviation, GE(0)\",\"The parameter α in the GE class represents the weight given to distances between incomes at different parts of the income distribution, and can take any real value. For lower values of α, GE is more sensitive to changes in the lower tail of the distribution, and for higher values GE is more sensitive to changes that affect the upper tail. GE(1) is the Theil index.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"3.0.Rate75-25\",\"Rate 75/25\",\"The decile dispersion ratio presents the ratio of the average income of the richest 25 percent by that of the poorest 25 percent. This ratio expresses the income of the top quantile as multiples of that of the poorest quantile. However, it ignores information about incomes in the middle of the income distribution and doesn’t use information about the distribution of income within the top and bottom deciles or percentiles.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"3.0.Rate90-10\",\"Rate 90/10\",\"The decile dispersion ratio presents the ratio of the average income of the richest 10 percent by that of the poorest 10 percent. This ratio expresses the income of the top quantile as multiples of that of the poorest quantile. However, it ignores information about incomes in the middle of the income distribution and doesn’t use information about the distribution of income within the top and bottom deciles or percentiles.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"3.0.TheilInd1\",\"Theil Index, GE(1)\",\" The Theil index is part of a larger family of measures referred to as the General Entropy class. Compared to the Gini index, it has the advantage of being additive across different subgroups or regions in the country. However, it does not have a straightforward representation and lacks the appealing interpretation of the Gini coefficient. \",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"3.01.04.01.agcen\",\"Agricultural census\",\"Agricultural censuses collect information on agricultural activities, such as agricultural land use, employment and production, and provide basic structural data and sampling frames for agricultural surveys. It is recommended that agricultural censuses be conducted at least every 10 years.\",\"Statistical Capacity Indicators\",\"World Bank: Microdata library. Original source: Food and Agriculture Organisation (FAO)\"\n\"3.02.01.02.fscov\",\"Government finance accounting\",\"Government finance accounting concept describes the accounting basis for reporting central government financial data. For many countries government finance data have been consolidated into one set of accounts capturing all the central government's fiscal activities. Budgetary central government accounts do not necessarily include all central government units, the picture they provide of central government activities is usually incomplete.\",\"Statistical Capacity Indicators\",\"World Bank: World Development Indicator (Primary Data Documentation). Original source: IMF: Government Finance Statistics Yearbook.\"\n\"3.1.1_TRADBIO.CONSUM\",\"Traditional biomass consumption (TJ)\",\"Traditional biomass consumption (TJ): Final consumption of traditional biomass. Traditional biomass is defined as biomass consumed in the residential sector in non-OECD countries. It includes the following categories in the IEA statistics: primary solid biofuels, charcoal and non-specified primary biofuels and waste.\",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"3.1.10_MARINE.CONSUM\",\"Marine energy consumption (TJ)\",\"Marine energy consumption (TJ): Final consumption of marine energy\",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"3.1.2_MODERNBIO.CONSUM\",\"Modern biomass consumption (TJ)\",\"Modern biomass consumption (% in TFEC): Final consumption of modern biomass. Modern biomass is defined as all biomass that was not consumed in the residential sector in non-OECD countries. It includes the following categories in the IEA statistics: primary solid biofuels, charcoal and non-specified primary biofuels and waste.\",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"3.1.3_HYDRO.CONSUM\",\"Hydro energy consumption (TJ)\",\"Hydro consumption (TJ): Final consumption of hydro energy\",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"3.1.4_BIOFUELS.CONSUM\",\"Liquid biofuels consumption (TJ)\",\"Liquid biofuels consumption (TJ): Final consumption of liquid biofuels, including biogasoline, biodiesels and other liquid biofuels\",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"3.1.5_WIND.CONSUM\",\"Wind energy consumption (TJ)\",\"Wind consumption (TJ): Final consumption of wind energy\",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"3.1.6_SOLAR.CONSUM\",\"Solar energy consumption (TJ)\",\"Solar consumption (TJ): Final consumption of solar energy, including solar PV and solar thermal\",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"3.1.7_GEOTHERMAL.CONSUM\",\"Geothermal energy consumption (TJ)\",\"Geothermal consumption (TJ): Final consumption of geothermal energy\",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"3.1.8_WASTE.CONSUM\",\"Waste energy consumption (TJ)\",\"Waste energy consumption (TJ): Final consumption of waste energy, which is defined in the IEA statistics as renewable municipal waste\",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"3.1.9_BIOGAS.CONSUM\",\"Biogas consumption (TJ)\",\"Biogas consumption (TJ): Final consumption of biogas\",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"3.1.Gini\",\"Gini, Rural\",\"The Gini coefficient is most common measure of inequality. It is based on the Lorenz curve, a cumulative frequency curve that compares the distribution of a specific variable (in this case, income) with the uniform distribution that represents equality. The Gini coefficient is bounded by 0 (indicating perfect equality of income) and 1, which means complete inequality. This calculation includes observations of 0 income.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"3.1.MLongDev0\",\"Mean Log Deviation, GE(0), Rural\",\"The parameter α in the GE class represents the weight given to distances between incomes at different parts of the income distribution, and can take any real value. For lower values of α, GE is more sensitive to changes in the lower tail of the distribution, and for higher values GE is more sensitive to changes that affect the upper tail. GE(1) is the Theil index.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"3.1.TheilInd1\",\"Theil Index, GE(1), Rural\",\" The Theil index is part of a larger family of measures referred to as the General Entropy class. Compared to the Gini index, it has the advantage of being additive across different subgroups or regions in the country. However, it does not have a straightforward representation and lacks the appealing interpretation of the Gini coefficient. \",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"3.1_LOW.SEC.NEW.TEACHERS\",\"Lower secondary education, new teachers, national source\",\"Persons employed for the first time in an official capacity to guide and direct the learning experience of pupils in lower secondary school, excluding educational personnel who have no active teaching duties. Country-specific definition, method and targets are determined by countries themselves. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"3.1_PRI.NEW.ENTRANTS\",\"Primary education, new entrants, national source\",\"Pupils entering primary school for the first time, excluding repetears. Country-specific definition, method and targets are determined by countries themselves. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"3.1_RE.CONSUMPTION\",\"Renewable energy consumption (TJ)\",\"Renewable energy consumption (TJ): This indicator includes renewable energy consumption of all technologies: hydro, modern and traditional biomass, wind, solar, liquid biofuels, biogas, geothermal, marine and waste\",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"3.11.01.01.popcen\",\"Population census\",\"Population censuses collect data on the size, distribution and composition of population and information on a broad range of social and economic characteristics of the population. It also provides sampling frames for household and other surveys. It is recommended that population censuses be conducted at least every 10 years.\",\"Statistical Capacity Indicators\",\"World Bank Microdata library. Original source: United Nations Statistical Division (UNSD), 2010 World Population and Housing Censuses Programme\"\n\"3.11.01.03.popreg\",\"Vital registration system coverage\",\"Vital registration systems record the occurrence and characteristics of vital events pertaining to the population and serve as a main source of vital statistics. Countries with complete vital statistics registries may have more accurate and timely demographic indicators.\",\"Statistical Capacity Indicators\",\"World Bank: World Development Indicator (Primary Data Documentation): Original source: United Nations Department of Economic and Social Information and Policy Analysis, Statistics Division. Population and Vital Statistics Report\"\n\"3.11_LOW.SEC.CLASSROOMS\",\"Lower secondary education, classrooms, national source\",\"Number of rooms or single accommodations, minimally equipped, in which a class of pupils in lower secondary school is taught. Country-specific definition, method and targets are determined by countries themselves.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"3.12_LOW.SEC.NEW.CLASSROOMS\",\"Lower secondary education, new classrooms, national source\",\"Number of rooms or single accommodations, minimally equipped, built for the first time in which a class of pupils in lower secondary school is taught. Country-specific definition, method and targets are determined by countries themselves. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"3.13_PRI.MATH.BOOK.PER.PUPIL\",\"Ratio of textbooks per pupil, primary education, mathematics\",\"Number of books used by a single pupil used as a standard work for the study of the mathematics subject. Country-specific definition, method and targets are determined by countries themselves. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"3.14_PRI.LANGU.BOOK.PER.PUPIL\",\"Ratio of textbooks per pupil, primary education, language\",\"Number of books used by a single pupil used as a standard work for the study of the primary language of instruction. Country-specific definition, method and targets are determined by countries themselves. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"3.15_LEARN.TIME.TEACHER.STUDY\",\"Last study on effective learning time and teacher attendance (year)\",\"Date (year) of the most recent study carried out by any national or international entity on the effectiveness of the instruction time devoted to learning activities.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"3.2.Gini\",\"Gini, Urban\",\"The Gini coefficient is most common measure of inequality. It is based on the Lorenz curve, a cumulative frequency curve that compares the distribution of a specific variable (in this case, income) with the uniform distribution that represents equality. The Gini coefficient is bounded by 0 (indicating perfect equality of income) and 1, which means complete inequality. This calculation includes observations of 0 income.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"3.2.MLongDev0\",\"Mean Log Deviation, GE(0),Urban\",\"The parameter α in the GE class represents the weight given to distances between incomes at different parts of the income distribution, and can take any real value. For lower values of α, GE is more sensitive to changes in the lower tail of the distribution, and for higher values GE is more sensitive to changes that affect the upper tail. GE(1) is the Theil index.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"3.2.TheilInd1\",\"Theil Index, GE(1),Urban\",\" The Theil index is part of a larger family of measures referred to as the General Entropy class. Compared to the Gini index, it has the advantage of being additive across different subgroups or regions in the country. However, it does not have a straightforward representation and lacks the appealing interpretation of the Gini coefficient. \",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"3.2_PRI.STUDENTS\",\"Primary education, pupils, national source\",\"Total population of pupils in primary school, regardless of age. Country-specific definition, method and targets are determined by countries themselves. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"3.3_PRI.TEACHERS\",\"Primary education, teachers, national source\",\"Persons employed in an official capacity to guide and direct the learning experience of pupils in primary school, excluding educational personnel who have no active teaching duties. Country-specific definition, method and targets are determined by countries themselves. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"3.4_PRI.NEW.TEACHERS\",\"Primary education, new teachers, national source\",\"Persons employed for the first time in an official capacity to guide and direct the learning experience of pupils in primary school. Country-specific definition, method and targets are determined by countries themselves. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"3.5_PRI.CLASSROOMS\",\"Primary education, classrooms, national source\",\"Number of rooms or single accommodations, minimally equipped, in which a class of pupils in primary school is taught. Country-specific definition, method and targets are determined by countries themselves.  \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"3.6_PRI.NEW.CLASSROOMS\",\"Primary education, new classrooms, national source\",\"Number of rooms or single accommodations, minimally equipped, built for the first time in which a class of pupils in primary school is taught. Country-specific definition, method and targets are determined by countries themselves. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"3.7_LOW.SEC.NEW.ENTRANTS\",\"Lower Secondary education, new entrants, national source\",\"Pupils entering lower secondary school for the first time, excluding repeaters. Country-specific definition, method and targets are determined by countries themselves.  \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"3.8_LOW.SEC.STUDENTS\",\"Lower secondary education, pupils, national source\",\"Total population of pupils in lower secondary school, regardless of age. Country-specific definition, method and targets are determined by countries themselves. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"3.9_LOW.SEC.TEACHERS\",\"Lower secondary education, teachers, national source\",\"Persons employed in an official capacity to guide and direct the learning experience of pupils in lower secondary school, excluding educational personnel who have no active teaching duties. Country-specific definition, method and targets are determined by countries themselves. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"4.0.nini.15a18\",\"Youth: Neither in School Nor Working  (15-18)\",\"Share of the population ages 15-18 that is neither employed nor in school.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank), based on \\\"Out of School and Out of Work: A Diagnostic of Ninis in Latin America\\\" by De Hoyos, Popova, and Rogers (2014, World Bank).\"\n\"4.0.nini.15a24\",\"Youth: Neither in School Nor Working  (15-24)\",\"Share of the population ages 15-24 that is neither employed nor in school.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank), based on \\\"Out of School and Out of Work: A Diagnostic of Ninis in Latin America\\\" by De Hoyos, Popova, and Rogers (2014, World Bank).\"\n\"4.0.nini.19a24\",\"Youth: Neither in School Nor Working  (19-24)\",\"Share of the population ages 19-24 that is neither employed nor in school.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank), based on \\\"Out of School and Out of Work: A Diagnostic of Ninis in Latin America\\\" by De Hoyos, Popova, and Rogers (2014, World Bank).\"\n\"4.0.stud.15a18\",\"Youth: In School (15-18)\",\"Share of the population ages 15-18 that is in school and not employed.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank), based on \\\"Out of School and Out of Work: A Diagnostic of Ninis in Latin America\\\" by De Hoyos, Popova, and Rogers (2014, World Bank).\"\n\"4.0.stud.15a24\",\"Youth: In School (15-24)\",\"Share of the population ages 15-24 that is in school and not employed.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank), based on \\\"Out of School and Out of Work: A Diagnostic of Ninis in Latin America\\\" by De Hoyos, Popova, and Rogers (2014, World Bank).\"\n\"4.0.stud.19a24\",\"Youth: In School (19-24)\",\"Share of the population ages 19-24 that is in school and not employed.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank), based on \\\"Out of School and Out of Work: A Diagnostic of Ninis in Latin America\\\" by De Hoyos, Popova, and Rogers (2014, World Bank).\"\n\"4.0.studwork.15a18\",\"Youth: In School and Employed (15-18)\",\"Share of the population ages 15-18 that is in school and employed.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank), based on \\\"Out of School and Out of Work: A Diagnostic of Ninis in Latin America\\\" by De Hoyos, Popova, and Rogers (2014, World Bank).\"\n\"4.0.studwork.15a24\",\"Youth: In School and Employed (15-24)\",\"Share of the population ages 15-24 that is in school and employed.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank), based on \\\"Out of School and Out of Work: A Diagnostic of Ninis in Latin America\\\" by De Hoyos, Popova, and Rogers (2014, World Bank).\"\n\"4.0.studwork.19a24\",\"Youth: In School and Employed (19-24)\",\"Share of the population ages 19-24 that is in school and employed.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank), based on \\\"Out of School and Out of Work: A Diagnostic of Ninis in Latin America\\\" by De Hoyos, Popova, and Rogers (2014, World Bank).\"\n\"4.0.work.15a18\",\"Youth: Employed (15-18)\",\"Share of the population ages 15-18 that is employed and not in school.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank), based on \\\"Out of School and Out of Work: A Diagnostic of Ninis in Latin America\\\" by De Hoyos, Popova, and Rogers (2014, World Bank).\"\n\"4.0.work.15a24\",\"Youth: Employed (15-24)\",\"Share of the population ages 15-24 that is employed and not in school.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank), based on \\\"Out of School and Out of Work: A Diagnostic of Ninis in Latin America\\\" by De Hoyos, Popova, and Rogers (2014, World Bank).\"\n\"4.0.work.19a24\",\"Youth: Employed (19-24)\",\"Share of the population ages 19-24 that is employed and not in school.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank), based on \\\"Out of School and Out of Work: A Diagnostic of Ninis in Latin America\\\" by De Hoyos, Popova, and Rogers (2014, World Bank).\"\n\"4.1.1_TOTAL.ELECTRICITY.OUTPUT\",\"Total electricity output (GWh)\",\"Total electricity output (GWh): Total number of GWh generated by all power plants\",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"4.1.2_REN.ELECTRICITY.OUTPUT\",\"Renewable energy electricity output (GWh)\",\"Renewable energy electricity output (GWh): Total number of GWh generated by renewable power plants, including wind, solar PV, solar thermal, hydro, marine, geothermal, biomass, renewable municipal waste, liquid biofuels and biogas. Electricity production for hydro pumpted storage is excluded.\",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"4.1.nini.15a18\",\"Youth: Neither in School Nor Working  (15-18), Male\",\"Share of the male population ages 15-18 that is neither employed nor in school.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank), based on \\\"Out of School and Out of Work: A Diagnostic of Ninis in Latin America\\\" by De Hoyos, Popova, and Rogers (2014, World Bank).\"\n\"4.1.nini.15a24\",\"Youth: Neither in School Nor Working  (15-24), Male\",\"Share of the male population ages 15-24 that is neither employed nor in school.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank), based on \\\"Out of School and Out of Work: A Diagnostic of Ninis in Latin America\\\" by De Hoyos, Popova, and Rogers (2014, World Bank).\"\n\"4.1.nini.19a24\",\"Youth: Neither in School Nor Working  (19-24), Male\",\"Share of the male population ages 19-24 that is neither employed nor in school.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank), based on \\\"Out of School and Out of Work: A Diagnostic of Ninis in Latin America\\\" by De Hoyos, Popova, and Rogers (2014, World Bank).\"\n\"4.1.stud.15a18\",\"Youth: In School (15-18), Male\",\"Share of the male population ages 15-18 that is in school and not employed.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank), based on \\\"Out of School and Out of Work: A Diagnostic of Ninis in Latin America\\\" by De Hoyos, Popova, and Rogers (2014, World Bank).\"\n\"4.1.stud.15a24\",\"Youth: In School (15-24), Male\",\"Share of the male population ages 15-24 that is in school and not employed.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank), based on \\\"Out of School and Out of Work: A Diagnostic of Ninis in Latin America\\\" by De Hoyos, Popova, and Rogers (2014, World Bank).\"\n\"4.1.stud.19a24\",\"Youth: In School (19-24), Male\",\"Share of the male population ages 19-24 that is in school and not employed.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank), based on \\\"Out of School and Out of Work: A Diagnostic of Ninis in Latin America\\\" by De Hoyos, Popova, and Rogers (2014, World Bank).\"\n\"4.1.studwork.15a18\",\"Youth: In School and Employed (15-18), Male\",\"Share of the male population ages 15-18 that is in school and employed.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank), based on \\\"Out of School and Out of Work: A Diagnostic of Ninis in Latin America\\\" by De Hoyos, Popova, and Rogers (2014, World Bank).\"\n\"4.1.studwork.15a24\",\"Youth: In School and Employed (15-24), Male\",\"Share of the male population ages 15-24 that is in school and employed.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank), based on \\\"Out of School and Out of Work: A Diagnostic of Ninis in Latin America\\\" by De Hoyos, Popova, and Rogers (2014, World Bank).\"\n\"4.1.studwork.19a24\",\"Youth: In School and Employed (19-24), Male\",\"Share of the male population ages 19-24 that is in school and employed.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank), based on \\\"Out of School and Out of Work: A Diagnostic of Ninis in Latin America\\\" by De Hoyos, Popova, and Rogers (2014, World Bank).\"\n\"4.1.work.15a18\",\"Youth: Employed (15-18), Male\",\"Share of the male population ages 15-18 that is employed and not in school.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank), based on \\\"Out of School and Out of Work: A Diagnostic of Ninis in Latin America\\\" by De Hoyos, Popova, and Rogers (2014, World Bank).\"\n\"4.1.work.15a24\",\"Youth: Employed (15-24), Male\",\"Share of the male population ages 15-24 that is employed and not in school.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank), based on \\\"Out of School and Out of Work: A Diagnostic of Ninis in Latin America\\\" by De Hoyos, Popova, and Rogers (2014, World Bank).\"\n\"4.1.work.19a24\",\"Youth: Employed (19-24), Male\",\"Share of the male population ages 19-24 that is employed and not in school.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank), based on \\\"Out of School and Out of Work: A Diagnostic of Ninis in Latin America\\\" by De Hoyos, Popova, and Rogers (2014, World Bank).\"\n\"4.1_SHARE.RE.IN.ELECTRICITY\",\"Renewable electricity (% in total electricity output)\",\"Renewable electricity (% in total electricity output): Share of electrity generated by renewable power plants in total electricity generated by all types of plants\",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"4.1_TOTAL.EDU.SPENDING\",\"Public spending on total education (% of total public spending)\",\"Public expenses devoted to the education sector, including recurrent and capital expenditures and teacher salaries, expressed as a percentage of the total general government expenses. Country-specific definition, method and targets are determined by countries themselves. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"4.2.nini.15a18\",\"Youth: Neither in School Nor Working  (15-18), Female\",\"Share of the female population ages 15-18 that is neither employed nor in school.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank), based on \\\"Out of School and Out of Work: A Diagnostic of Ninis in Latin America\\\" by De Hoyos, Popova, and Rogers (2014, World Bank).\"\n\"4.2.nini.15a24\",\"Youth: Neither in School Nor Working  (15-24), Female\",\"Share of the female population ages 15-24 that is neither employed nor in school.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank), based on \\\"Out of School and Out of Work: A Diagnostic of Ninis in Latin America\\\" by De Hoyos, Popova, and Rogers (2014, World Bank).\"\n\"4.2.nini.19a24\",\"Youth: Neither in School Nor Working  (19-24), Female\",\"Share of the female population ages 19-24 that is neither employed nor in school.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank), based on \\\"Out of School and Out of Work: A Diagnostic of Ninis in Latin America\\\" by De Hoyos, Popova, and Rogers (2014, World Bank).\"\n\"4.2.stud.15a18\",\"Youth: In School (15-18), Female\",\"Share of the female population ages 15-18 that is in school and not employed.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank), based on \\\"Out of School and Out of Work: A Diagnostic of Ninis in Latin America\\\" by De Hoyos, Popova, and Rogers (2014, World Bank).\"\n\"4.2.stud.15a24\",\"Youth: In School (15-24), Female\",\"Share of the female population ages 15-24 that is in school and not employed.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank), based on \\\"Out of School and Out of Work: A Diagnostic of Ninis in Latin America\\\" by De Hoyos, Popova, and Rogers (2014, World Bank).\"\n\"4.2.stud.19a24\",\"Youth: In School (19-24), Female\",\"Share of the female population ages 19-24 that is in school and not employed.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank), based on \\\"Out of School and Out of Work: A Diagnostic of Ninis in Latin America\\\" by De Hoyos, Popova, and Rogers (2014, World Bank).\"\n\"4.2.studwork.15a18\",\"Youth: In School and Employed (15-18), Female\",\"Share of the female population ages 15-18 that is in school and employed.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank), based on \\\"Out of School and Out of Work: A Diagnostic of Ninis in Latin America\\\" by De Hoyos, Popova, and Rogers (2014, World Bank).\"\n\"4.2.studwork.15a24\",\"Youth: In School and Employed (15-24), Female\",\"Share of the female population ages 15-24 that is in school and employed.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank), based on \\\"Out of School and Out of Work: A Diagnostic of Ninis in Latin America\\\" by De Hoyos, Popova, and Rogers (2014, World Bank).\"\n\"4.2.studwork.19a24\",\"Youth: In School and Employed (19-24), Female\",\"Share of the female population ages 19-24 that is in school and employed.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank), based on \\\"Out of School and Out of Work: A Diagnostic of Ninis in Latin America\\\" by De Hoyos, Popova, and Rogers (2014, World Bank).\"\n\"4.2.work.15a18\",\"Youth: Employed (15-18), Female\",\"Share of the female population ages 15-18 that is employed and not in school.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank), based on \\\"Out of School and Out of Work: A Diagnostic of Ninis in Latin America\\\" by De Hoyos, Popova, and Rogers (2014, World Bank).\"\n\"4.2.work.15a24\",\"Youth: Employed (15-24), Female\",\"Share of the female population ages 15-24 that is employed and not in school.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank), based on \\\"Out of School and Out of Work: A Diagnostic of Ninis in Latin America\\\" by De Hoyos, Popova, and Rogers (2014, World Bank).\"\n\"4.2.work.19a24\",\"Youth: Employed (19-24), Female\",\"Share of the female population ages 19-24 that is employed and not in school.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank), based on \\\"Out of School and Out of Work: A Diagnostic of Ninis in Latin America\\\" by De Hoyos, Popova, and Rogers (2014, World Bank).\"\n\"4.2_BASIC.EDU.SPENDING\",\"Public spending on basic education (% of public spending on total education)\",\"Public expenses devoted to the basic education sector, including recurrent and capital expenditures and teacher salaries, expressed as a percentage of the public spending on total education. Country-specific definition, method and targets are determined by countries themselves. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"4.3_TOTAL.EDU.RECURRENT\",\"Public recurrent spending on total education (% of total public recurrent spending)\",\"Public recurrent expenses devoted to the education sector, expressed as a percentage of the total general government recurrent expenses. Country-specific definition, method and targets are determined by countries themselves. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"4.4_BASIC.EDU.RECURRENT\",\"Public recurrent spending on basic education (% of public recurrent spending on total education)\",\"Public recurrent expenses devoted to the basic education sector, expressed as a percentage of the public recurrent spending on total education. Country-specific definition, method and targets are determined by countries themselves. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"5.0.AMeanIncGr.All\",\"Annualized Mean Income Growth (2004-2014)\",\"The official indicator to monitor shared prosperity is the growth in real per capita income (or consumption) of the bottom 40 percent of the income (or consumption) distribution in a country.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank) and World Development Indicators\"\n\"5.0.AMeanIncGr.B40\",\"Annualized Mean Income Growth Bottom 40 Percent (2004-2014)\",\"The indicator to monitor shared prosperity is the growth in real per capita income (or consumption) of the bottom 40 percent of the income (or consumption) distribution in a country.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank) and World Development Indicators\"\n\"5.01.01.01.indust\",\"Industrial production index\",\"Industrial production index measures changes in industrial production and is widely used for the observation and analysis of the current economic activity. Monthly survey on industrial production of index allows identifying the turning points in economic development at an early stage.\",\"Statistical Capacity Indicators\",\"IMF: International Financial Statistics (IFS), Series 66\"\n\"5.04.01.01.exdebt\",\"External debt reporting status\",\"The principal sources of external debt statistics are reports submitted to the World Bank through its Debtor Reporting System by reporting countries. Data quality and coverage vary among countries and from year to year. The reporting status shows, for the latest series, whether data were used as reported (actual), data were preliminary and included an element of staff estimation (preliminary), or data are staff estimates (estimate).\",\"Statistical Capacity Indicators\",\"World Bank: World Development Indicator (Primary Data Documentation): Original source: International Debt Statistics (for low and middle income countries).\"\n\"5.04.01.02.impexp\",\"Import and export price indexes\",\"Import and export price indexes measure changes in the price of goods and services in international trade. They are used to deflate the value of imports and exports. Import price index is also used as an indicator of future domestic inflation.\",\"Statistical Capacity Indicators\",\"IMF: International Financial Statistics (IFS). Series 74, 75, or/and 76.\"\n\"5.1.1_AFG.TOTA.AID.CIDA\",\"International aid disbursed to total education, CIDA to Afghanistan (USD million)\",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.1_ALB.TOTA.AID.WB\",\"International aid disbursed to total education, World Bank to Albania (USD million)\",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.1_BFA.TOTA.AID.CIDA\",\"International aid disbursed to total education, CIDA to Burkina Faso (USD million)\",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.1_CAF.TOT.AID.GPE\",\" International aid disbursed to total education, Global Partnership for Education to Central African Republic (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.1_CIV.TOTA.AID.AFDB\",\" International aid disbursed to total education, AfDB to Côte d'Ivoire (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.1_CMR.TOTA.AID.BAD\",\"International aid disbursed to total education, AfDB to Cameroun (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.1_DJI.TOTA.AID.WB\",\"International aid disbursed to total education, World Bank (IDA) to Djibouti (USD million)\",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.1_ETH.TOTA.AID.ADB\",\"International aid disbursed to total education, ADB to Ethiopia (USD million)\",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.1_GEO.TOTA.AID.EC\",\"International aid disbursed to total education, European Commission to Georgia (USD million)\",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.1_GHA.TOTA.AID.DFID\",\"International aid disbursed to total education, DFID to Djibouti (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.1_GIN.TOTA.AID.ADPP.AFD\",\"International aid disbursed to total education, AFD to Guinea (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.1_GNB.TOTA.AID.ADPP.EU\",\"International aid disbursed to total education, ADPP (European Union) to Guinea Bissau (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.1_KGZ.TOTA.AID.ADPP.EU\",\" International aid disbursed to total education, European Commission to Kyrgyzstan (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.1_KHM.TOTA.AID.BAD\",\" International aid disbursed to total education, AfDB to Cambodia (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.1_LAO.TOTA.AID.ADB\",\" International aid disbursed to total education, ADB to Laos (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.1_LBR.TOTA.AID.UNICEF\",\" International aid disbursed to total education, UNICEF to Liberia (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.1_MDA.TOTA.AID.UNICEF\",\" International aid disbursed to total education, UNICEF to Moldova (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.1_MDG.TOTA.AID.WB\",\" International aid to total education executed by World Bank (including GPE funds) in Madagascar (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.1_MOZ.TOTA.AID.CAN\",\" International aid disbursed to total education, Canada to Mozambique (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.1_MRT.TOTA.AID.AFD\",\"International aid disbursed to total education, AFD to Mauritania (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.1_MWI.TOTA.AID.AFDB\",\"International aid disbursed to total education, AfDB to Malawi (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.1_NER.TOTA.AID.AFD\",\"International aid disbursed to total education, AFD to Niger (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.1_RWA.TOTA.AID.DFID\",\" International aid disbursed to total education, DFID to Rwanda (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.1_SEN.TOTA.AID.CIDA\",\" International aid disbursed to total education, CIDA to Senegal (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.1_SLE.TOTA.AID.DFID\",\" International aid disbursed to total education, DFID to Sierra Leone (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.1_TOTAL.CAPACITY\",\"Total installed generation capacity (GW)\",\"Total installed generation capacity (GW): Total number of GW of installed capacity\",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"5.1.1_VNM.TOTA.AID.BEL\",\"International aid disbursed to total education, Belgium to Vietnam (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.1_ZMB.TOTA.AID.DNK\",\"International aid disbursed to total education, Denmark to Zambia (USD million)\",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.10_AFG.TOTA.AID.SIDA\",\"International aid disbursed to total education, Sida to Afghanistan (USD million)\",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.10_ETH.TOTA.AID.JPN\",\"International aid disbursed to total education, Japan Government to Ethiopia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.10_KHM.TOTA.AID.WFP\",\" International aid disbursed to total education, WFP to Cambodia (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.10_LAO.TOTA.AID.WB\",\" International aid disbursed to total education, World Bank to Laos (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.10_MDG.TOTA.AID.EC\",\" International aid to total education executed by the European Commission in Madagascar (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.10_MOZ.TOTA.AID.JPN\",\" International aid disbursed to total education, Japan to Mozambique (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.10_MWI.TOTA.AID.WFP\",\"International aid disbursed to total education, WFP to Malawi (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.10_NER.TOTA.AID.UNICEF\",\"International aid disbursed to total  education, UNICEF to Niger (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.10_TJK.TOTA.AID.WB\",\" International aid disbursed to total education, World Bank to Tajikistan (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.11_AFG.TOTA.AID.UNESCO\",\"International aid disbursed to total education, UNESCO to Afghanistan (USD million)\",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.11_ETH.TOTA.AID.JICA\",\"International aid disbursed to total education, JICA to Ethiopia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.11_KHM.TOTA.AID.WB\",\" International aid disbursed to total education, World Bank to Cambodia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.11_LAO.TOTA.AID.INGOS\",\" International aid disbursed to total education, International NGOs to Laos (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.11_MOZ.TOTA.AID.NLD\",\" International aid disbursed to total education, Netherlands to Mozambique (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.11_MWI.TOTA.AID.WB\",\"International aid disbursed to total education, World Bank to Malawi (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.12_AFG.TOTA.AID.USAID\",\"International aid disbursed to total education, USAID to Afghanistan (USD million)\",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.12_ETH.TOTA.AID.KFW\",\"International aid disbursed to total education, KfW to Ethiopia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.12_MOZ.TOTA.AID.PRT\",\" International aid disbursed to total education, Portugal to Mozambique (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.13_AFG.TOTA.AID.WB\",\"International aid disbursed to total education, World Bank to Afghanistan (USD million)\",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.13_ETH.TOTA.AID.NLD\",\"International aid disbursed to total education, Netherlands to Ethiopia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.13_MOZ.TOTA.AID.ESP\",\" International aid disbursed to total education, Spain to Mozambique (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.14_ETH.TOTA.AID.SIDA\",\"International aid disbursed to total education, Sida to Ethiopia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.14_MOZ.TOTA.AID.UNICEF\",\" International aid disbursed to total education, UNICEF to Mozambique (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.15_ETH.TOTA.AID.UNICEF\",\"International aid disbursed to total education, UNICEF to Ethiopia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.15_MOZ.TOTA.AID.USAID\",\" International aid disbursed to total education, USAID to Mozambique (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.16_ETH.TOTA.AID.USAID\",\"International aid disbursed to total education, USAID to Ethiopia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.16_MOZ.TOTA.AID.WB\",\" International aid disbursed to total education, World Bank to Mozambique (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.17_ETH.TOTA.AID.WFP\",\"International aid disbursed to total education, WFP to Ethiopia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.18_ETH.TOTA.AID.WB\",\"International aid disbursed to total education, World Bank to Ethiopia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.2_AFG.TOTA.AID.DANIDA\",\"International aid disbursed to total education, DANIDA to Afghanistan (USD million)\",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.2_ALB.TOTA.AID.BEI\",\"International aid disbursed to total education, BEI to Albania (USD million)\",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.2_BFA.TOTA.AID.AFD\",\" International aid disbursed to total education, AFD to Burkina Faso (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.2_CIV.TOTA.AID.BADEA\",\" International aid disbursed to total education, BADEA to Côte d'Ivoire (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.2_CMR.TOTA.AID.WB\",\"International aid disbursed to total education, World Bank to Cameroun (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.2_DJI.TOTA.AID.FSD\",\"International aid disbursed to total education, FSD to Djibouti (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.2_ETH.TOTA.AID.BEL\",\"International aid disbursed to total education, Belgium (VLIR USO) to Ethiopia (USD million)\",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.2_GEO.TOTA.AID.UNICEF\",\"International aid disbursed to total education, UNICEF to Georgia (USD million)\",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.2_GHA.TOTA.AID.GPE\",\"International aid disbursed to total education, Global Partnership for Education to Djibouti (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.2_GIN.TOTA.AID.ADPP.AFDB\",\"International aid disbursed to total education, AfDB to Guinea (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.2_GNB.TOTA.AID.ADPP.HUM\",\"International aid disbursed to total education, ADPP (Humana People to People) to Guinea Bissau (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.2_KGZ.TOTA.AID.ADPP.GIZ\",\" International aid disbursed to total education, GIZ to Kyrgyzstan (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.2_KHM.TOTA.AID.BEL\",\" International aid disbursed to total education, Belgium to Cambodia (USD million)   \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.2_LAO.TOTA.AID.AUS\",\" International aid disbursed to total education, AusAID to Laos (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.2_LBR.TOTA.AID.USAID\",\" International aid disbursed to total education, USAID to Liberia (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.2_MDA.TOTA.AID.WB\",\" International aid disbursed to total education, World Bank to Moldova (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.2_MDG.TOTA.AID.ILO\",\" International aid to total education executed by ILO in Madagascar (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.2_MOZ.TOTA.AID.DANIDA\",\" International aid disbursed to total education, DANIDA to Mozambique (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.2_MRT.TOTA.AID.ISDB\",\"International aid disbursed to total education, IsDB to Mauritania (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.2_MWI.TOTA.AID.CIDA\",\"International aid disbursed to total education, CIDA to Malawi (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.2_NER.TOTA.AID.BEL\",\"International aid disbursed to total  education, Belgium to Niger (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.2_RE.CAPACITY\",\"Renewable energy installed capacity (GW)\",\"Renewable energy installed capacity (GW): Total number of renewable energy installed capacity\",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"5.1.2_RWA.TOTA.AID.GPE\",\" International aid disbursed to total education, Global Partnership for Education to Rwanda (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.2_SEN.TOTA.AID.FR\",\" International aid disbursed to total education, AFD and French Embassy to Senegal (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.2_SLE.TOTA.AID.EC\",\" International aid disbursed to total education, European Commission to Sierra Leone (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.2_TJK.TOTA.AID.AGAK\",\" International aid disbursed to total education, Aga Khan to Tajikistan (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.2_VNM.TOTA.AID.CIDA\",\"International aid disbursed to total education, CIDA to Vietnam (USD million)\",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.2_ZMB.TOTA.AID.IRL\",\"International aid disbursed to total education, Ireland to Zambia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.3_AFG.TOTA.AID.FRA\",\"International aid disbursed to total education, France to Afghanistan (USD million)\",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.3_ALB.TOTA.AID.CEIB\",\"International aid disbursed to total education, CEIB to Albania (USD million)\",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.3_BFA.TOTA.AID.CHE\",\" International aid disbursed to total education, Switzerland to Burkina Faso (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.3_CIV.TOTA.AID.WB\",\" International aid disbursed to total education, World Bank to Côte d'Ivoire (USD million)   \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.3_CMR.TOTA.AID.FR\",\"International aid disbursed to total education, AFD and French Embassy to Cameroun (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.3_DJI.TOTA.AID.AFD\",\"International aid disbursed to total education, AFD to Djibouti (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.3_ETH.TOTA.AID.DFID\",\"International aid disbursed to total education, DFID to Ethiopia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.3_GEO.TOTA.AID.USAID\",\"International aid disbursed to total education, USAID to Georgia (USD million)\",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.3_GHA.TOTA.AID.JICA\",\"International aid disbursed to total education, JICA to Djibouti (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.3_GIN.TOTA.AID.ADPP.WB\",\"International aid disbursed to total education, World Bank to Guinea (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.3_GNB.TOTA.AID.ADPP.OTH\",\"International aid disbursed to total education, ADPP (other donors) to Guinea Bissau (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.3_KGZ.TOTA.AID.ADPP.UNICEF\",\" International aid disbursed to total education, UNICEF to Kyrgyzstan (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.3_KHM.TOTA.AID.GPE\",\" International aid disbursed to total education, Global Partnership for Education to Cambodia (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.3_LAO.TOTA.AID.EC\",\" International aid disbursed to total education, European Commission to Laos (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.3_LBR.TOTA.AID.WB\",\" International aid disbursed to total education, World Bank to Liberia (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.3_MDG.TOTA.AID.FR\",\" International aid to total education executed by AFD and French Embassy in Madagascar (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.3_MOZ.TOTA.AID.DFID\",\" International aid disbursed to total education, DFID to Mozambique (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.3_MRT.TOTA.AID.SP\",\"International aid disbursed to total education, Spanish Cooperation to Mauritania (USD million)\",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.3_MWI.TOTA.AID.DFID\",\"International aid disbursed to total education, DFID to Malawi (USD million)\",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.3_NER.TOTA.AID.FR\",\"International aid disbursed to total  education, French Embassy to Niger (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.3_RWA.TOTA.AID.UNICEF\",\" International aid disbursed to total education, UNICEF to Rwanda (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.3_SEN.TOTA.AID.GPE\",\" International aid disbursed to total education, Global Partnership for Education to Senegal (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.3_SLE.TOTA.AID.GIZ\",\" International aid disbursed to total education, GIZ to Sierra Leone (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.3_TJK.TOTA.AID.OPENS\",\" International aid disbursed to total education, Open Society Foundations to Tajikistan (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.3_VNM.TOTA.AID.DFID\",\"International aid disbursed to total education, DFID to Vietnam (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.3_ZMB.TOTA.AID.ILO\",\"International aid disbursed to total education, ILO to Zambia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.4_AFG.TOTA.AID.DEU\",\"International aid disbursed to total education, Germany to Afghanistan (USD million)\",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.4_BFA.TOTA.AID.DNK\",\" International aid disbursed to total education, Denmark to Burkina Faso (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.4_CIV.TOTA.AID.ISDB\",\" International aid disbursed to total education, IsDB to Côte d'Ivoire (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.4_CMR.TOTA.AID.JICA\",\"International aid disbursed to total education, JICA to Cameroun (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.4_DJI.TOTA.AID.AFDB\",\"International aid disbursed to total education, AfDB to Djibouti (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.4_ETH.TOTA.AID.DVV\",\"International aid disbursed to total education, DVV international to Ethiopia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.4_GEO.TOTA.AID.WB\",\"International aid disbursed to total education, World Bank to Georgia (USD million)\",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.4_GHA.TOTA.AID.UNICEF\",\"International aid disbursed to total education, UNICEF to Djibouti (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.4_GIN.TOTA.AID.ADPP.GPE\",\"International aid disbursed to total education, Global Partnership for Education to Guinea (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.4_GNB.TOTA.AID.EU\",\"International aid disbursed to total education, European Commission to Guinea Bissau (USD million)\",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.4_KGZ.TOTA.AID.ADPP.WB\",\" International aid disbursed to total education, World Bank to Kyrgyzstan (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.4_KHM.TOTA.AID.EC\",\" International aid disbursed to total education, European Commission to Cambodia (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.4_LAO.TOTA.AID.DEU\",\" International aid disbursed to total education, Germany (GIZ and KfW) to Laos (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.4_MDG.TOTA.AID.JICA\",\" International aid to total education executed by JICA in Madagascar (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.4_MOZ.TOTA.AID.FIN\",\" International aid disbursed to total education, Finland to Mozambique (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.4_MRT.TOTA.AID.UNESCO\",\"International aid disbursed to total education, UNESCO to Mauritania (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.4_MWI.TOTA.AID.GIZ\",\"International aid disbursed to total education, GIZ to Malawi (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.4_NER.TOTA.AID.JAPAN\",\"International aid disbursed to total  education, Japan to Niger (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.4_RWA.TOTA.AID.USAID\",\" International aid disbursed to total education, USAID to Rwanda (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.4_SEN.TOTA.AID.IT\",\" International aid disbursed to total education, Italy to Senegal (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.4_SLE.TOTA.AID.JICA\",\" International aid disbursed to total education, JICA to Sierra Leone (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.4_TJK.TOTA.AID.EC\",\" International aid disbursed to total education, European Commission to Tajikistan (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.4_VNM.TOTA.AID.JICA\",\"International aid disbursed to total education, JICA to Vietnam (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.4_ZMB.TOTA.AID.JPN\",\"International aid disbursed to total education, Japan to Zambia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.5_AFG.TOTA.AID.IND\",\"International aid disbursed to total education, India to Afghanistan (USD million)\",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.5_BFA.TOTA.AID.JICA\",\" International aid disbursed to total education, JICA to Burkina Faso (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.5_CIV.TOTA.AID.FSD\",\" International aid disbursed to total education, FSD to Côte d'Ivoire (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.5_CMR.TOTA.AID.UNESCO\",\"International aid disbursed to total education, UNESCO to Cameroun (USD million)\",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.5_DJI.TOTA.AID.ISDB\",\"International aid disbursed to total education, IsDB to Djibouti (USD million)\",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.5_ETH.TOTA.AID.EC\",\"International aid disbursed to total education, European Commission to Ethiopia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.5_GHA.TOTA.AID.USAID\",\"International aid disbursed to total education, USAID to Djibouti (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.5_GIN.TOTA.AID.ADPP.GIZ\",\"International aid disbursed to total education, GIZ to Guinea (USD million)\",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.5_GNB.TOTA.AID.FR\",\"International aid disbursed to total education, AFD and French Embassy to Guinea Bissau (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.5_KHM.TOTA.AID.JPN\",\" International aid disbursed to total education, Japan to Cambodia (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.5_LAO.TOTA.AID.GPE\",\" International aid disbursed to total education, Global Partnership for Education to Laos (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.5_MDG.TOTA.AID.NOR\",\" International aid to total education executed by Norway in Madagascar (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.5_MOZ.TOTA.AID.FLAND\",\" International aid disbursed to total education, Flanders to Mozambique (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.5_MRT.TOTA.AID.UNICEF\",\"International aid disbursed to total education, UNICEF to Mauritania (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.5_MWI.TOTA.AID.GPE\",\"International aid disbursed to total education, Global Partnership for Education to Malawi (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.5_NER.TOTA.AID.KFW\",\"International aid disbursed to total  education, KfW to Niger (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.5_RWA.TOTA.AID.WB\",\" International aid disbursed to total education, World Bank to Rwanda (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.5_SEN.TOTA.AID.UNICEF\",\" International aid disbursed to total education, UNICEF to Senegal (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.5_SLE.TOTA.AID.SIDA\",\" International aid disbursed to total education, Sida to Sierra Leone (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.5_TJK.TOTA.AID.GIZ\",\" International aid disbursed to total education, GIZ to Tajikistan (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.5_VNM.TOTA.AID.UNESCO\",\"International aid disbursed to total education, UNESCO to Vietnam (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.5_ZMB.TOTA.AID.ZMB\",\"International aid disbursed to total education, Netherlands to Zambia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.6_AFG.TOTA.AID.JPN\",\"International aid disbursed to total education, Japan's MoFA to Afghanistan (USD million)\",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.6_BFA.TOTA.AID.NLD\",\" International aid disbursed to total education, Netherlands to Burkina Faso (USD million)   \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.6_CIV.TOTA.AID.KFW\",\" International aid disbursed to total education, KfW to Côte d'Ivoire (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.6_CMR.TOTA.AID.UNICEF\",\"International aid disbursed to total education, UNICEF to Cameroun (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.6_DJI.TOTA.AID.IMOA\",\"International aid disbursed to total education, IMOA to Djibouti (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.6_ETH.TOTA.AID.FIN\",\"International aid disbursed to total education, Finland to Ethiopia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.6_GHA.TOTA.AID.WFP\",\"International aid disbursed to total education, WFP to Djibouti (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.6_GIN.TOTA.AID.ADPP.KFW\",\"International aid disbursed to total education, KfW to Guinea (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.6_GNB.TOTA.AID.PORT\",\"International aid disbursed to total education, Portuguese Cooperation to Guinea Bissau (USD million)\",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.6_KHM.TOTA.AID.SWE\",\" International aid disbursed to total education, Sweden to Cambodia (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.6_LAO.TOTA.AID.JICA\",\" International aid disbursed to total education, JICA to Laos (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.6_MDG.TOTA.AID.WFP\",\" International aid to total education executed by WFP in Madagascar (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.6_MOZ.TOTA.AID.DEU\",\" International aid disbursed to total education, Germany (GIZ and KfW) to Mozambique (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.6_MWI.TOTA.AID.JICA\",\"International aid disbursed to total education, JICA to Malawi (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.6_NER.TOTA.AID.WFP\",\"International aid disbursed to total  education, WFP to Niger (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.6_SEN.TOTA.AID.USAID\",\" International aid disbursed to total education, USAID to Senegal (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.6_SLE.TOTA.AID.UNICEF\",\" International aid disbursed to total education, UNICEF to Sierra Leone (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.6_TJK.TOTA.AID.GPE\",\" International aid disbursed to total education, Global Partnership for Education (CF and EPDF) to Tajikistan (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.6_VNM.TOTA.AID.UNICEF\",\"International aid disbursed to total education, UNICEF to Vietnam (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.6_ZMB.TOTA.AID.UNICEF\",\"International aid disbursed to total education, UNICEF to Zambia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.7_AFG.TOTA.AID.JICA\",\"International aid disbursed to total education, JICA to Afghanistan (USD million)\",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.7_BFA.TOTA.AID.UNICEF\",\" International aid disbursed to total education, UNICEF to Burkina Faso (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.7_CIV.TOTA.AID.UNICEF\",\" International aid disbursed to total education, UNICEF to Côte d'Ivoire (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.7_ETH.TOTA.AID.GIZ\",\"International aid disbursed to total education, GIZ/BMZ to Ethiopia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.7_GHA.TOTA.AID.WB\",\"International aid disbursed to total education, World Bank to Djibouti (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.7_GIN.TOTA.AID.ADPP.UNICEF\",\"International aid disbursed to total education, UNICEF to Guinea (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.7_GNB.TOTA.AID.UNICEF\",\"International aid disbursed to total education, UNICEF (excluding Japan funds) to Guinea Bissau (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.7_KHM.TOTA.AID.UNESCO\",\" International aid disbursed to total education, UNESCO to Cambodia (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.7_LAO.TOTA.AID.UNESCO\",\" International aid disbursed to total education, UNESCO to Laos (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.7_MDG.TOTA.AID.UNESCO\",\" International aid to total education executed by UNESCO in Madagascar (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.7_MOZ.TOTA.AID.GPE\",\" International aid disbursed to total education, GPE to Mozambique (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.7_MWI.TOTA.AID.KFW\",\"International aid disbursed to total education,  KfW to Malawi (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.7_NER.TOTA.AID.DFID\",\"International aid disbursed to total  education, DFID to Niger (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.7_SLE.TOTA.AID.WB\",\" International aid disbursed to total education, World Bank (including the Global Partnership for Education) to Sierra Leone (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.7_TJK.TOTA.AID.UNICEF\",\" International aid disbursed to total education, UNICEF to Tajikistan (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.7_VNM.TOTA.AID.USAID\",\"International aid disbursed to total education, USAID to Vietnam (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.7_ZMB.TOTA.AID.USAID\",\"International aid disbursed to total education, USAID to Zambia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.8_AFG.TOTA.AID.NLD\",\"International aid disbursed to total education, Netherlands to Afghanistan (USD million)\",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.8_BFA.TOTA.AID.EC\",\" International aid disbursed to total education, European Commission to Burkina Faso (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.8_CIV.TOTA.AID.USAID\",\" International aid disbursed to total education, USAID to Côte d'Ivoire (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.8_ETH.TOTA.AID.GPE\",\"International aid disbursed to total education, GPE Catalytic Fund to Ethiopia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.8_GNB.TOTA.AID.JAP\",\"International aid disbursed to total education, Japan (via UNICEF) to Guinea Bissau (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.8_KHM.TOTA.AID.UNICEF\",\" International aid disbursed to total education, UNICEF to Cambodia (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.8_LAO.TOTA.AID.UNICEF\",\" International aid disbursed to total education, UNICEF to Laos (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.8_MDG.TOTA.AID.UNICEF\",\" International aid to total education executed by UNICEF (excluding GPE funds) in Madagascar (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.8_MOZ.TOTA.AID.IRL\",\" International aid disbursed to total education, Ireland to Mozambique (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.8_MWI.TOTA.AID.UNICEF\",\"International aid disbursed to total education, UNICEF to Malawi (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.8_NER.TOTA.AID.CHE\",\"International aid disbursed to total  education, Switzerland to Niger (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.8_SLE.TOTA.AID.WFP\",\" International aid disbursed to total education from WFP to Sierra Leone (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.8_TJK.TOTA.AID.USAID\",\" International aid disbursed to total education, USAID to Tajikistan (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.8_VNM.TOTA.AID.WB\",\"International aid disbursed to total education, World Bank to Vietnam (USD million)\",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.9_AFG.TOTA.AID.NZL\",\"International aid disbursed to total education, New Zealand to Afghanistan (USD million)\",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.9_ETH.TOTA.AID.ITA\",\"International aid disbursed to total education, Italian Cooperation to Ethiopia (USD million)\",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.9_KHM.TOTA.AID.USAID\",\" International aid disbursed to total education, USAID to Cambodia (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.9_LAO.TOTA.AID.WFP\",\" International aid disbursed to total education, WFP to Laos (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.9_MDG.TOTA.AID.GPE\",\" International aid disbursed to total education from the Global Partnership for Education (via UNICEF and WB) to Madagascar (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.9_MOZ.TOTA.AID.ITA\",\" International aid disbursed to total education, Italy to Mozambique (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.9_MWI.TOTA.AID.USAID\",\"International aid disbursed to total education, USAID to Malawi (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.9_NER.TOTA.AID.LUX\",\"International aid disbursed to total  education, Luxembourg to Niger (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.9_TJK.TOTA.AID.WFP\",\" International aid disbursed to total education, WFP to Tajikistan (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.1.AMeanIncGr.All\",\"Annualized Mean Income Growth (2004-2009)\",\"The indicator to monitor shared prosperity is the growth in real per capita income (or consumption) of the bottom 40 percent of the income (or consumption) distribution in a country.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank) and World Development Indicators\"\n\"5.1.AMeanIncGr.B40\",\"Annualized Mean Income Growth Bottom 40 Percent (2004-2009)\",\"The indicator to monitor shared prosperity is the growth in real per capita income (or consumption) of the bottom 40 percent of the income (or consumption) distribution in a country.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank) and World Development Indicators\"\n\"5.1_RE.SHARE.IN.CAPACITY\",\"Share of renewable capacity in total capacity (%)\",\"Share of renewable capacity in total capacity (%): Share of renewable energy capacity in total istalled capacity\",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"5.1_TOTAL.EDU.AID\",\"International aid for total education, disbursed (up to present year) and scheduled (next years), aggregation of reporting donors (USD million)\",\"Sum of international concessional aid disbursed by reporting development partners (donors) to the total education sector in a specific developing country. Targets indicate the sum of the scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by donors to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education (GPE) in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.12.01.01.unesco\",\"UNESCO reporting\",\"UNESCO Institute of Statistics compiles data on education based on official responses to surveys and from reports provided by education authorities in each country. As the recommended periodicity of these data is annual, annual reporting from countries is considered a good practice.\",\"Statistical Capacity Indicators\",\"World Bank EdStats. Original source: UNESCO Institute for Statistics (UIS)\"\n\"5.13.01.01.hlthsurv\",\"Health survey\",\"Health surveys collect information on various aspects of health of populations, such as health expenditure, access, utilization, and outcomes. They typically include Demographic and Health Surveys, Core Welfare Indicator Questionnaire surveys, Multiple Indicator Cluster Survey, Integrated Surveys, Living Standard Measuring Surveys, Priority Surveys and other health related surveys. It is recommended that health surveys be conducted at least every 3 to 5 years.\",\"Statistical Capacity Indicators\",\"Microdata library. Original source: Measure DHS - Demographic and Health Surveys\"\n\"5.13.01.01.who\",\"National immunization coverage\",\"WHO and UNICEF collect and review data available on national immunization coverage. Then estimates on the level of immunization coverage are made by using officially reported data, survey results, scientific literature, and by taking account of potential biases and consultation with local experts. The gap between the international estimates and the government official estimates therefore suggests that the estimation method adopted by the country differs from the internationally recommended practice.\",\"Statistical Capacity Indicators\",\"WHO / UNICEF\"\n\"5.14.01.01.povsurv\",\"Poverty survey\",\"Poverty surveys collect data on household income, consumption and expenditure, including income in kind. They typically include income, expenditure, and consumption surveys, household budget surveys, Integrated Surveys, Living Standard Measuring Surveys, and other poverty related surveys. It is recommended that poverty surveys be conducted at least every 3 to 5 years.\",\"Statistical Capacity Indicators\",\"World Bank Microdata library\"\n\"5.2.1_AFG.BAS.AID.CIDA\",\"International aid disbursed to basic education, CIDA to Afghanistan (USD million)\",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.1_ALB.BAS.AID.WB\",\"International aid disbursed to basic education, World Bank to Albania (USD million)\",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.1_BFA.BAS.AID.CIDA\",\"International aid disbursed to basic education, CIDA to Burkina Faso (USD million)\",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.1_CAF.BAS.AID.GPE\",\" International aid disbursed to total education, Global Partnership for Education to Central African Republic (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.1_CIV.BAS.AID.AFDB\",\" International aid disbursed to basic education, AfDB to Côte d'Ivoire (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.1_CMR.BAS.AID.BAD\",\"International aid disbursed to basic education, AfDB to Cameroun (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.1_DJI.BAS.AID.WB\",\"International aid disbursed to basic education, World Bank (IDA) to Djibouti (USD million)\",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.1_ETH.BAS.AID.ADB\",\"International aid disbursed to basic education, ADB to Ethiopia (USD million)\",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.1_GEO.BAS.AID.EC\",\"International aid disbursed to basic education, European Commission to Georgia (USD million)\",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.1_GHA.BAS.AID.DFID\",\"International aid disbursed to basic education, DFID to Djibouti (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.1_GIN.BAS.AID.ADPP.AFD\",\"International aid disbursed to basic education, AFD to Guinea (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.1_GNB.BAS.AID.ADPP.EU\",\"International aid disbursed to basic education, ADPP (European Union) to Guinea Bissau (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.1_KGZ.BAS.AID.ADPP.EU\",\" International aid disbursed to basic education, European Commission to Kyrgyzstan (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.1_KHM.BAS.AID.BAD\",\" International aid disbursed to basic education, AfDB to Cambodia (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.1_LAO.BAS.AID.ADB\",\" International aid disbursed to basic education, ADB to Laos (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.1_LBR.BAS.AID.UNICEF\",\" International aid disbursed to basic education, UNICEF to Liberia (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.1_MDA.BAS.AID.UNICEF\",\" International aid disbursed to basic education, UNICEF to Moldova (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.1_MDG.BAS.AID.WB\",\" International aid to basic education executed by World Bank (GPE funds) in Madagascar (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.1_MRT.TOTA.AID.WFP\",\"International aid disbursed to total education, WFP to Mauritania (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.1_MWI.BAS.AID.AFDB\",\"International aid disbursed to basic education,  AfDB to Malawi (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.1_NER.BAS.AID.AFD\",\"International aid disbursed to basic education, AFD to Niger (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.1_RWA.BAS.AID.DFID\",\" International aid disbursed to basic education, DFID to Rwanda (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.1_SEN.BAS.AID.CIDA\",\" International aid disbursed to basic education, CIDA to Senegal (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.1_SLE.BAS.AID.DFID\",\" International aid disbursed to basic education, DFID to Sierra Leone (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.1_TJK.BAS.AID.AGAK\",\" International aid disbursed to basic education, Aga Khan to Tajikistan (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.1_TLS.TOT.AID.AUSAID.CFAUS\",\" International aid disbursed to total education, AusAID and ChildFund Australia to Tajikistan (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.1_VNM.BAS.AID.CIDA\",\"International aid disbursed to basic education, CIDA to Vietnam (USD million)\",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.1_ZMB.BAS.AID.DNK\",\"International aid disbursed to basic education, Denmark to Zambia (USD million)\",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.10_AFG.BAS.AID.SIDA\",\"International aid disbursed to basic education, Sida to Afghanistan (USD million)\",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.10_ETH.BAS.AID.JPN\",\"International aid disbursed to basic education, Japan Government to Ethiopia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.10_KHM.BAS.AID.WFP\",\" International aid disbursed to basic education, WFP to Cambodia (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.10_LAO.BAS.AID.WB\",\" International aid disbursed to basic education, World Bank to Laos (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.10_MDG.BAS.AID.EC\",\" International aid to basic education executed by the European Commission in Madagascar (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.10_MWI.BAS.AID.WFP\",\"International aid disbursed to basic education, WFP to Malawi (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.10_NER.BAS.AID.UNICEF\",\"International aid disbursed to basic education, UNICEF to Niger (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.10_TLS.TOT.AID.PRIV\",\" International aid disbursed to total education, private donors to Timor-Leste (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.11_AFG.BAS.AID.UNESCO\",\"International aid disbursed to basic education, UNESCO to Afghanistan (USD million)\",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.11_ETH.BAS.AID.JICA\",\"International aid disbursed to basic education, JICA to Ethiopia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.11_KHM.BAS.AID.WB\",\" International aid disbursed to basic education, World Bank to Cambodia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.11_LAO.BAS.AID.INGOS\",\" International aid disbursed to basic education, International NGOs to Laos (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.11_MWI.BAS.AID.WB\",\"International aid disbursed to basic education, World Bank to Malawi (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.11_TLS.TOT.AID.UNICEF\",\" International aid disbursed to total education, UNICEF to Timor-Leste (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.12_AFG.BAS.AID.USAID\",\"International aid disbursed to basic education, USAID to Afghanistan (USD million)\",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.12_ETH.BAS.AID.KFW\",\"International aid disbursed to basic education, KfW to Ethiopia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.12_TLS.TOT.AID.USAID\",\" International aid disbursed to total education, USAID to Timor-Leste (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.13_AFG.BAS.AID.WB\",\"International aid disbursed to basic education, World Bank to Afghanistan (USD million)\",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.13_ETH.BAS.AID.NLD\",\"International aid disbursed to basic education, Netherlands to Ethiopia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.14_ETH.BAS.AID.SIDA\",\"International aid disbursed to basic education, Sida to Ethiopia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.15_ETH.BAS.AID.UNICEF\",\"International aid disbursed to basic education, UNICEF to Ethiopia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.16_ETH.BAS.AID.USAID\",\"International aid disbursed to basic education, USAID to Ethiopia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.17_ETH.BAS.AID.WFP\",\"International aid disbursed to basic education, WFP to Ethiopia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.18_ETH.BAS.AID.WB\",\"International aid disbursed to basic education, World Bank to Ethiopia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.2_AFG.BAS.AID.DANIDA\",\"International aid disbursed to basic education, DANIDA to Afghanistan (USD million)\",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.2_ALB.BAS.AID.BEI\",\"International aid disbursed to basic education, BEI to Albania (USD million)\",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.2_BFA.BAS.AID.AFD\",\" International aid disbursed to basic education, AFD to Burkina Faso (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.2_CIV.BAS.AID.BADEA\",\" International aid disbursed to basic education, BADEA to Côte d'Ivoire (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.2_CMR.BAS.AID.WB\",\"International aid disbursed to basic education, World Bank to Cameroun (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.2_DJI.BAS.AID.FSD\",\"International aid disbursed to basic education, FSD to Djibouti (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.2_ETH.BAS.AID.BEL\",\"International aid disbursed to basic education, Belgium (VLIR USO) to Ethiopia (USD million)\",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.2_GEO.BAS.AID.UNICEF\",\"International aid disbursed to basic education, UNICEF to Georgia (USD million)\",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.2_GHA.BAS.AID.GPE\",\"International aid disbursed to basic education, Global Partnership for Education to Djibouti (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.2_GIN.BAS.AID.ADPP.AFDB\",\"International aid disbursed to basic education, AfDB to Guinea (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.2_GNB.BAS.AID.ADPP.HUM\",\"International aid disbursed to basic education, ADPP (Humana People to People) to Guinea Bissau (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.2_KGZ.BAS.AID.ADPP.GIZ\",\" International aid disbursed to basic education, GIZ to Kyrgyzstan (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.2_KHM.BAS.AID.BEL\",\" International aid disbursed to basic education, Belgium to Cambodia (USD million)   \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.2_LAO.BAS.AID.AUS\",\" International aid disbursed to basic education, AusAID to Laos (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.2_LBR.BAS.AID.USAID\",\" International aid disbursed to basic education, USAID to Liberia (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.2_MDA.BAS.AID.WB\",\" International aid disbursed to basic education, World Bank to Moldova (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.2_MDG.BAS.AID.ILO\",\" International aid to basic education executed by ILO in Madagascar (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.2_MRT.BAS.AID.AFD\",\"International aid disbursed to basic education, AFD to Mauritania (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.2_MWI.BAS.AID.CIDA\",\"International aid disbursed to basic education, CIDA to Malawi (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.2_NER.BAS.AID.BEL\",\"International aid disbursed to basic education, Belgium to Niger (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.2_RWA.BAS.AID.GPE\",\" International aid disbursed to basic education, Global Partnership for Education to Rwanda (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.2_SEN.BAS.AID.FR\",\" International aid disbursed to basic education, AFD and French Embassy to Senegal (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.2_SLE.BAS.AID.EC\",\" International aid disbursed to basic education, European Commission to Sierra Leone (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.2_TJK.BAS.AID.OPENS\",\" International aid disbursed to basic education, Open Society Foundations to Tajikistan (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.2_TLS.TOT.AID.AUSAID.WB\",\" International aid disbursed to total education, AusAID (World Bank) to Timor-Leste (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.2_VNM.BAS.AID.DFID\",\"International aid disbursed to basic education, DFID to Vietnam (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.2_ZMB.BAS.AID.IRL\",\"International aid disbursed to basic education, Ireland to Zambia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.3_AFG.BAS.AID.FRA\",\"International aid disbursed to basic education, France to Afghanistan (USD million)\",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.3_ALB.BAS.AID.CEIB\",\"International aid disbursed to basic education, CEIB to Albania (USD million)\",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.3_BFA.BAS.AID.CHE\",\" International aid disbursed to basic education, Switzerland to Burkina Faso (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.3_CIV.BAS.AID.WB\",\" International aid disbursed to basic education, World Bank to Côte d'Ivoire (USD million)   \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.3_CMR.BAS.AID.FR\",\"International aid disbursed to basic education, AFD and French Embassy to Cameroun (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.3_DJI.BAS.AID.AFD\",\"International aid disbursed to basic education, AFD to Djibouti (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.3_ETH.BAS.AID.DFID\",\"International aid disbursed to basic education, DFID to Ethiopia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.3_GEO.BAS.AID.USAID\",\"International aid disbursed to basic education, USAID to Georgia (USD million)\",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.3_GHA.BAS.AID.JICA\",\"International aid disbursed to basic education, JICA to Djibouti (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.3_GIN.BAS.AID.ADPP.WB\",\"International aid disbursed to basic education, World Bank to Guinea (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.3_GNB.BAS.AID.ADPP.OTH\",\"International aid disbursed to basic education, ADPP (other donors) to Guinea Bissau (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.3_KGZ.BAS.AID.ADPP.UNICEF\",\" International aid disbursed to basic education, UNICEF to Kyrgyzstan (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.3_KHM.BAS.AID.GPE\",\" International aid disbursed to basic education, Global Partnership for Education to Cambodia (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.3_LAO.BAS.AID.EC\",\" International aid disbursed to basic education, European Commission to Laos (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.3_LBR.BAS.AID.WB\",\" International aid disbursed to basic education, World Bank to Liberia (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.3_MDG.BAS.AID.FR\",\" International aid to basic education executed by AFD and French Embassy in Madagascar (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.3_MRT.BAS.AID.ISDB\",\"International aid disbursed to basic education, IsDB to Mauritania (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.3_MWI.BAS.AID.DFID\",\"International aid disbursed to basic education, DFID to Malawi (USD million)\",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.3_NER.BAS.AID.FR\",\"International aid disbursed to basic education, French Embassy to Niger (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.3_RWA.BAS.AID.UNICEF\",\" International aid disbursed to basic education, UNICEF to Rwanda (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.3_SEN.BAS.AID.GPE\",\" International aid disbursed to basic education, Global Partnership for Education to Senegal (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.3_SLE.BAS.AID.GIZ\",\" International aid disbursed to basic education, GIZ to Sierra Leone (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.3_TJK.BAS.AID.EC\",\" International aid disbursed to basic education, European Commission to Tajikistan (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.3_TLS.TOT.AID.AUS\",\" International aid disbursed to total education, Australia to Timor-Leste (USD million) \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.3_VNM.BAS.AID.JICA\",\"International aid disbursed to basic education, JICA to Vietnam (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.3_ZMB.BAS.AID.ILO\",\"International aid disbursed to basic education, ILO to Zambia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.4_AFG.BAS.AID.DEU\",\"International aid disbursed to basic education, Germany to Afghanistan (USD million)\",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.4_BFA.BAS.AID.DNK\",\" International aid disbursed to basic education, Denmark to Burkina Faso (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.4_CIV.BAS.AID.ISDB\",\" International aid disbursed to basic education, IsDB to Côte d'Ivoire (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.4_CMR.BAS.AID.JICA\",\"International aid disbursed to basic education, JICA to Cameroun (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.4_DJI.BAS.AID.AFDB\",\"International aid disbursed to basic education, AfDB to Djibouti (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.4_ETH.BAS.AID.DVV\",\"International aid disbursed to basic education, DVV international to Ethiopia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.4_GEO.BAS.AID.WB\",\"International aid disbursed to basic education, World Bank to Georgia (USD million)\",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.4_GHA.BAS.AID.UNICEF\",\"International aid disbursed to basic education, UNICEF to Djibouti (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.4_GIN.BAS.AID.ADPP.GPE\",\"International aid disbursed to basic education, Global Partnership for Education to Guinea (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.4_GNB.BAS.AID.EU\",\"International aid disbursed to basic education, European Commission to Guinea Bissau (USD million)\",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.4_KGZ.BAS.AID.ADPP.WB\",\" International aid disbursed to basic education, World Bank to Kyrgyzstan (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.4_KHM.BAS.AID.EC\",\" International aid disbursed to basic education, European Commission to Cambodia (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.4_LAO.BAS.AID.DEU\",\" International aid disbursed to basic education, Germany (GIZ and KfW) to Laos (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.4_MDG.BAS.AID.JICA\",\" International aid to basic education executed by JICA in Madagascar (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.4_MRT.BAS.AID.SP\",\"International aid disbursed to basic education, Spanish Cooperation to Mauritania (USD million)\",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.4_MWI.BAS.AID.GIZ\",\"International aid disbursed to basic education, GIZ to Malawi (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.4_NER.BAS.AID.JAPAN\",\"International aid disbursed to basic education, Japan to Niger (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.4_RWA.BAS.AID.USAID\",\" International aid disbursed to basic education, USAID to Rwanda (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.4_SEN.BAS.AID.IT\",\" International aid disbursed to basic education, Italy to Senegal (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.4_SLE.BAS.AID.JICA\",\" International aid disbursed to basic education, JICA to Sierra Leone (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.4_TJK.BAS.AID.GIZ\",\" International aid disbursed to basic education, GIZ to Tajikistan (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.4_TLS.TOT.AID.WB\",\" International aid disbursed to total education, World Bank (IDA) to Timor-Leste (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.4_VNM.BAS.AID.UNESCO\",\"International aid disbursed to basic education, UNESCO to Vietnam (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.4_ZMB.BAS.AID.JPN\",\"International aid disbursed to basic education, Japan to Zambia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.5_AFG.BAS.AID.IND\",\"International aid disbursed to basic education, India to Afghanistan (USD million)\",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.5_BFA.BAS.AID.JICA\",\" International aid disbursed to basic education, JICA to Burkina Faso (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.5_CIV.BAS.AID.FSD\",\" International aid disbursed to basic education, FSD to Côte d'Ivoire (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.5_CMR.BAS.AID.UNESCO\",\"International aid disbursed to basic education, UNESCO to Cameroun (USD million)\",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.5_DJI.BAS.AID.ISDB\",\"International aid disbursed to basic education, IsDB to Djibouti (USD million)\",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.5_ETH.BAS.AID.EC\",\"International aid disbursed to basic education, European Commission to Ethiopia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.5_GHA.BAS.AID.USAID\",\"International aid disbursed to basic education, USAID to Djibouti (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.5_GIN.BAS.AID.ADPP.GIZ\",\"International aid disbursed to basic education, GIZ to Guinea (USD million)\",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.5_GNB.BAS.AID.FR\",\"International aid disbursed to basic education, AFD and French Embassy to Guinea Bissau (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.5_KHM.BAS.AID.JPN\",\" International aid disbursed to basic education, Japan to Cambodia (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.5_LAO.BAS.AID.GPE\",\" International aid disbursed to basic education, Global Partnership for Education to Laos (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.5_MDG.BAS.AID.NOR\",\" International aid to basic education executed by Norway in Madagascar (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.5_MRT.BAS.AID.UNESCO\",\"International aid disbursed to basic education, UNESCO to Mauritania (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.5_MWI.BAS.AID.GPE\",\"International aid disbursed to basic education, Global Partnership for Education to Malawi (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.5_NER.BAS.AID.KFW\",\"International aid disbursed to basic education, KfW to Niger (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.5_RWA.BAS.AID.WB\",\" International aid disbursed to basic education, World Bank to Rwanda (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.5_SEN.BAS.AID.UNICEF\",\" International aid disbursed to basic education, UNICEF to Senegal (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.5_SLE.BAS.AID.SIDA\",\" International aid disbursed to basic education, Sida to Sierra Leone (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.5_TJK.BAS.AID.GPE\",\" International aid disbursed to basic education, Global Partnership for Education (CF and EPDF) to Tajikistan (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.5_TLS.TOT.AID.JPN\",\" International aid disbursed to total education, Japan to Timor-Leste (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.5_VNM.BAS.AID.UNICEF\",\"International aid disbursed to basic education, UNICEF to Vietnam (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.5_ZMB.BAS.AID.ZMB\",\"International aid disbursed to basic education, Netherlands to Zambia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.6_AFG.BAS.AID.JPN\",\"International aid disbursed to basic education, Japan's MoFA to Afghanistan (USD million)\",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.6_BFA.BAS.AID.NLD\",\" International aid disbursed to basic education, Netherlands to Burkina Faso (USD million)   \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.6_CIV.BAS.AID.KFW\",\" International aid disbursed to basic education, KfW to Côte d'Ivoire (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.6_CMR.BAS.AID.UNICEF\",\"International aid disbursed to basic education, UNICEF to Cameroun (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.6_DJI.BAS.AID.IMOA\",\"International aid disbursed to basic education, IMOA to Djibouti (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.6_ETH.BAS.AID.FIN\",\"International aid disbursed to basic education, Finland to Ethiopia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.6_GHA.BAS.AID.WFP\",\"International aid disbursed to basic education, WFP to Djibouti (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.6_GIN.BAS.AID.ADPP.KFW\",\"International aid disbursed to basic education, KfW to Guinea (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.6_GNB.BAS.AID.PORT\",\"International aid disbursed to basic education, Portuguese Cooperation to Guinea Bissau (USD million)\",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.6_KHM.BAS.AID.SWE\",\" International aid disbursed to basic education, Sweden to Cambodia (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.6_LAO.BAS.AID.JICA\",\" International aid disbursed to basic education, JICA to Laos (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.6_MDG.BAS.AID.WFP\",\" International aid to basic education executed by WFP in Madagascar (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.6_MRT.BAS.AID.UNICEF\",\"International aid disbursed to basic education, UNICEF to Mauritania (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.6_MWI.BAS.AID.JICA\",\"International aid disbursed to basic education,  JICA to Malawi (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.6_NER.BAS.AID.WFP\",\"International aid disbursed to basic education, WFP to Niger (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.6_SEN.BAS.AID.USAID\",\" International aid disbursed to basic education, USAID to Senegal (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.6_SLE.BAS.AID.UNICEF\",\" International aid disbursed to basic education, UNICEF to Sierra Leone (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.6_TJK.BAS.AID.UNICEF\",\" International aid disbursed to basic education, UNICEF to Tajikistan (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.6_TLS.TOT.AID.KOR\",\" International aid disbursed to total education, South Korea to Timor-Leste (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.6_VNM.BAS.AID.USAID\",\"International aid disbursed to basic education, USAID to Vietnam (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.6_ZMB.BAS.AID.UNICEF\",\"International aid disbursed to basic education, UNICEF to Zambia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.7_AFG.BAS.AID.JICA\",\"International aid disbursed to basic education, JICA to Afghanistan (USD million)\",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.7_BFA.BAS.AID.UNICEF\",\" International aid disbursed to basic education, UNICEF to Burkina Faso (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.7_CIV.BAS.AID.UNICEF\",\" International aid disbursed to basic education, UNICEF to Côte d'Ivoire (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.7_ETH.BAS.AID.GIZ\",\"International aid disbursed to basic education, GIZ/BMZ to Ethiopia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.7_GHA.BAS.AID.WB\",\"International aid disbursed to basic education, World Bank to Djibouti (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.7_GIN.BAS.AID.ADPP.UNICEF\",\"International aid disbursed to basic education, UNICEF to Guinea (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.7_GNB.BAS.AID.UNICEF\",\"International aid disbursed to basic education, UNICEF (excluding Japan funds) to Guinea Bissau (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.7_KHM.BAS.AID.UNESCO\",\" International aid disbursed to basic education, UNESCO to Cambodia (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.7_LAO.BAS.AID.UNESCO\",\" International aid disbursed to basic education, UNESCO to Laos (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.7_MDG.BAS.AID.UNESCO\",\" International aid to basic education executed by UNESCO in Madagascar (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.7_MRT.BAS.AID.WFP\",\"International aid disbursed to basic education, WFP to Mauritania (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.7_MWI.BAS.AID.KFW\",\"International aid disbursed to basic education, KfW to Malawi (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.7_NER.BAS.AID.DFID\",\"International aid disbursed to basic education, DFID to Niger (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.7_SLE.BAS.AID.WB\",\" International aid disbursed to basic education, World Bank (including the Global Partnership for Education) to Sierra Leone (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.7_TJK.BAS.AID.USAID\",\" International aid disbursed to basic education, USAID to Tajikistan (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.7_TLS.TOT.AID.NZL\",\" International aid disbursed to total education, New Zealand to Timor-Leste (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.7_VNM.BAS.AID.WB\",\"International aid disbursed to basic education, World Bank to Vietnam (USD million)\",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.7_ZMB.BAS.AID.USAID\",\"International aid disbursed to basic education, USAID to Zambia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.8_AFG.BAS.AID.NLD\",\"International aid disbursed to basic education, Netherlands to Afghanistan (USD million)\",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.8_BFA.BAS.AID.EC\",\" International aid disbursed to basic education, European Commission to Burkina Faso (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.8_CIV.BAS.AID.USAID\",\" International aid disbursed to basic education, USAID to Côte d'Ivoire (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.8_ETH.BAS.AID.GPE\",\"International aid disbursed to basic education, GPE Catalytic Fund to Ethiopia (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.8_GNB.BAS.AID.JAP\",\"International aid disbursed to basic education, Japan (via UNICEF) to Guinea Bissau (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.8_KHM.BAS.AID.UNICEF\",\" International aid disbursed to basic education, UNICEF to Cambodia (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.8_LAO.BAS.AID.UNICEF\",\" International aid disbursed to basic education, UNICEF to Laos (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.8_MDG.BAS.AID.UNICEF\",\" International aid to basic education executed by UNICEF in Madagascar (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.8_MWI.BAS.AID.UNICEF\",\"International aid disbursed to basic education, UNICEF to Malawi (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.8_NER.BAS.AID.CHE\",\"International aid disbursed to basic education, Switzerland to Niger (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.8_SLE.BAS.AID.WFP\",\" International aid disbursed to basic education, WFP to Sierra Leone (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.8_TJK.BAS.AID.WFP\",\" International aid disbursed to basic education, WFP to Tajikistan (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.8_TLS.TOT.AID.CFNZL\",\" International aid disbursed to total education, ChildFund NZAID and UNICEF to Timor-Leste (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.9_AFG.BAS.AID.NZL\",\"International aid disbursed to basic education, New Zealand to Afghanistan (USD million)\",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.9_ETH.BAS.AID.ITA\",\"International aid disbursed to basic education, Italian Cooperation to Ethiopia (USD million)\",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.9_KHM.BAS.AID.USAID\",\" International aid disbursed to basic education, AUSAID to Cambodia (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.9_LAO.BAS.AID.WFP\",\" International aid disbursed to basic education, WFP to Laos (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.9_MDG.BAS.AID.GPE\",\" International aid disbursed to basic education, Global Partnership for Education to Madagascar (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.9_MWI.BAS.AID.USAID\",\"International aid disbursed to basic education, USAID to Malawi (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.9_NER.BAS.AID.LUX\",\"International aid disbursed to basic education, Luxembourg to Niger (USD million) \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.9_TJK.BAS.AID.WB\",\" International aid disbursed to basic education, World Bank to Tajikistan (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the basic education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.9_TLS.TOT.AID.PRT\",\" International aid disbursed to total education, Portugal to Timor-Leste (USD million)  \",\"International concessional aid disbursed by the reporting development partner to the total education sector in the specific developing country. Targets indicate scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by the donor to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.2.AMeanIncGr.All\",\"Annualized Mean Income Growth (2009-2014)\",\"The indicator to monitor shared prosperity is the growth in real per capita income (or consumption) of the bottom 40 percent of the income (or consumption) distribution in a country.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank) and World Development Indicators\"\n\"5.2.AMeanIncGr.B40\",\"Annualized Mean Income Growth Bottom 40 Percent (2009-2014)\",\"The indicator to monitor shared prosperity is the growth in real per capita income (or consumption) of the bottom 40 percent of the income (or consumption) distribution in a country.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank) and World Development Indicators\"\n\"5.2_BASIC.EDU.AID\",\"International aid for basic education, disbursed (up to present year) and scheduled (next years), aggregation of reporting donors (USD million)\",\"Sum of international concessional aid disbursed by reporting development partners (donors) to the total education sector in a specific developing country. Targets indicate the sum of the scheduled or projected aid. Accounted aid includes activities, projects, technical cooperation and sector and budget support (20%), as it was reported by donors to the Global Partnership for Education.\",\"Global Partnership for Education\",\"The 2011 Monitoring Exercise on Aid Effectiveness in the Education Sector was produced by the Global Partnership for Education (GPE) in parallel to the OECD’s 2011 Survey on Monitoring the Paris Declaration. Through this exercise participating donors reported on the international aid allocated and projected to specific developing countries. Data were later validated and/or updated when preparing the GPE Results Report in 2012. Most of the figures were reported in 2011 and in USD. When it was not the case, currencies were converted to USD. Data are relative to a calendar year, unless it is specified otherwise in the country notes. For further details in this 2012 Monitoring Exercise, please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2/\"\n\"5.21.01.01.sdds\",\"Special Data Dissemination Standard\",\"The Special Data Dissemination Standard (SDDS) was established by the IMF for member countries that have or that might seek access to international capital markets, to guide them in providing their economic and financial data to the public. Although subscription is voluntary, the subscribing member needs to be committed to observing the standard and provide information about its data and data dissemination practices (metadata). The metadata are posted on the IMF's Dissemination Standards Bulletin Board. The SDDS is expected to enhance the availability of timely and comprehensive data and improve the functioning of financial markets.\",\"Statistical Capacity Indicators\",\"World Bank: World Development Indicator (Primary Data Documentation).  Original Source: IMF SDDS website\"\n\"5.51.01.01.poverty\",\"Income poverty\",\"Proportion of population below US$1.25 a day is the percentage of the population living on less than $1.25 a day at 2005 international prices. The US$1.25 poverty line is compared to consumption or income per person and includes consumption from own production and income in kind. This poverty line has fixed purchasing power across countries. This indicator measures progress toward the reduction of extreme poverty and relates to the first MDG goal to eradicate extreme poverty and hunger.\",\"Statistical Capacity Indicators\",\"World Development Indicator (WDI) databank. Original source: World Bank, Development Research Group, PovcalNet\"\n\"5.51.01.02.malnut\",\"Child malnutrition\",\"Prevalence of underweight children under-five years of age, also known as prevalence of child malnutrition (weight for age), is the percentage of children under-five whose weight for age is less than minus two standard deviations from the median for the international reference population ages 0 to 59 months. The data are based on the World Health Organization’s new child growth standards released in 2006. Child malnutrition is linked to poverty, low levels of education, and poor access to health services. Sufficient and good-quality nutrition is therefore critical for development, health, and survival of current and succeeding generations. This indicator monitors nutritional status and health in populations and relates to the first MDG aiming at reducing poverty and hunger.\",\"Statistical Capacity Indicators\",\"World Development Indicator (WDI) databank. Original source: World Health Organization (WHO), Global Database on Child Growth and Malnutrition\"\n\"5.51.01.03.mortal\",\"Child mortality\",\"Under-five mortality rate is the probability that a newborn baby will die before reaching age five, if subject to current age-specific mortality rates. The probability is expressed as a rate per 1,000. The indicator measures child survival. Survival of a child is closely linked to the provision of primary health-care services; but poverty, malnutrition, a decline in breast-feeding, maternal education, use of improved water, and inadequacy sanitation and health facilities are all associated with high child mortality. The indicator relates to the fourth MDG calling for reducing child mortality.\",\"Statistical Capacity Indicators\",\"World Development Indicator (WDI) databank. Original source: UNICEF, WHO, World Bank, UN DESA, UNPD\"\n\"5.51.01.04.immun\",\"Immunization\",\"The proportion of one-year-old children immunized against measles is the proportion of children aged one who received one dose of measles vaccine. A child is considered adequately immunized against measles after receiving one dose of vaccine. Immunization is an essential component for reducing under-five mortality, and it serves as a proxy to measure the coverage and the quality of the child health care system. This indicator is also related to the fourth MDG aiming at reducing child mortality.\",\"Statistical Capacity Indicators\",\"World Development Indicator (WDI) databank. Original source: WHO and UNICEF\"\n\"5.51.01.05.hiv\",\"HIV/AIDS\",\"HIV prevalence at any given age is the difference between the cumulative numbers of people who have become affected with HIV up to this age and the number who died, expressed as a percentage of the total number alive at this age. The basis of measuring infection is the incidence of HIV among people aged 15-49. HIV/AIDS is one of the world’s most important killers and has its greatest impact on poor countries and poor people. This indicator relates to MDG number six to combat HIV/AIDS, malaria, and other diseases.\",\"Statistical Capacity Indicators\",\"World Development Indicator (WDI) databank. Original source: UNAIDS\"\n\"5.51.01.06.matern\",\"Maternal health\",\"Births attended by skilled health staff are the percentage of deliveries attended by personnel trained to give the necessary supervision, care, and advice to women during pregnancy, labor, and the postpartum period, to conduct deliveries on their own, and to care for the newborns. High maternal mortality rates in many countries are the result of inadequate reproductive health care for women and inadequately spaced births. The indicator monitors the ability of the health system to provide good antenatal and postnatal care for women and relates to the fifth MDG aiming at improving maternal health, with a target of reducing by three-quarters, between 1990 and 2015, the maternal mortality ratio.\",\"Statistical Capacity Indicators\",\"World Development Indicator (WDI) databank. Original sources: UNICEF: State of the World's Children\"\n\"5.51.01.07.gender\",\"Gender equality\",\"The indicator is defined as the ratio of the gross enrollment rate of girls to boys in primary and secondary education levels in both public and private schools. Women have an enormous impact on the well-being of their families and societies, but their potential is sometimes not realized because of discriminatory social norms, incentives, and legal institutions. Although their status has improved in recent decades, gender inequalities persist. Education is one of the most important aspects of human development, and eliminating gender disparity at all levels of education would help to increase the status and capabilities of women. This indicator provides a measure of equality of educational opportunity and relates to the third MDG that seeks to promote gender equality and the empowerment of women.\",\"Statistical Capacity Indicators\",\"World Development Indicator (WDI) databank. Original source: UNESCO Institute for Statistics: Table 5: Enrolment ratios by ISCED level\"\n\"5.51.01.08.primcomp\",\"Primary completion\",\"Primary completion rate (PCR) is the number of students successfully completing the last year of (or graduating from) primary school in a given year, divided by the number of children of official graduation age in the population. Because of difficulties with developing data based on this definition, data analysis is generally based on the PCR proxy indicator which is the number of children reaching the last year of primary school (as defined by a country) net of repeaters. The indicator, which monitors education system coverage and student progression, is intended to measure human capital formation and school system quality and efficiency and relates to the second MDG to achieve universal primary education.\",\"Statistical Capacity Indicators\",\"World Development Indicator (WDI) databank. Original source: UNESCO Institute for Statistics: Table 12: Measures of progression and completion in primary education (ISCED 1)\"\n\"5.51.01.09.water\",\"Access to water\",\"Access to an improved water source is currently defined as the percentage of the population that can obtain at least 20 liters per person per day from an “improved” source that is within one kilometer of the user’s dwelling. Improved water sources include household connection, public standpipe, borehole, protected well or spring, and rainwater collection, but do not include water provided through vendors, tanker trucks, unprotected wells, unprotected springs, and bottled water. Unsafe water and lack of basic sanitation is the direct cause of many water-related diseases in developing countries. This indicator monitors access to improved water sources based on the assumption that improved sources are likely to provide safer water and relates to the seventh MDG to ensure environmental sustainability.\",\"Statistical Capacity Indicators\",\"World Development Indicator (WDI) databank. Original source: World Health Organization and United Nations Children's Fund, Joint Measurement Programme (JMP)\"\n\"5.51.01.10.gdp\",\"Per capita GDP growth\",\"GDP per capita is the sum of gross value added by all resident producers in the economy plus any product taxes (less subsidies) not included in the valuation of output, divided by mid-year population. Growth is calculated from constant price GDP data in local currency. Sustained economic growth increases average incomes and is strongly linked to poverty reduction. GDP per capita provides a basic measure of the value of output per person, which is an indirect indicator of per capita income. Growth in GDP and GDP per capita are considered broad measures of economic growth.\",\"Statistical Capacity Indicators\",\"World Development Indicator (WDI) databank. Original source: World Bank national accounts data, and OECD National Accounts data files\"\n\"6.0.Conspc\",\"Consumption per capita (2011 $)\",\"Consumption per capita is the market value of all goods and services, including durable products and payments and fees to governments to obtain permits and licenses, purchased by households. It excludes purchases of dwellings but includes imputed rent for owner-occupied dwellings. It also includes the expenditures of nonprofit institutions serving households, even when reported separately by the country.\",\"LAC Equity Lab\",\"LAC Equity Lab Tablulations of the World Development Indicators (World Bank).\"\n\"6.0.GDP_current\",\"GDP (current $)\",\"GDP is the sum of gross value added by all resident producers in the economy plus any product taxes and minus any subsidies not included in the value of the products. It is calculated without making deductions for depreciation of fabricated assets or for depletion and degradation of natural resources. Data are in current U.S. dollars. Dollar figures for GDP are converted from domestic currencies using single year official exchange rates. For a few countries where the official exchange rate does not reflect the rate effectively applied to actual foreign exchange transactions, an alternative conversion factor is used. \",\"LAC Equity Lab\",\"World Development Indicators (World Bank)\"\n\"6.0.GDP_growth\",\"GDP growth (annual %)\",\"Annual percentage growth rate of GDP at market prices based on constant local currency. Aggregates are based on constant 2011 U.S. dollars. GDP is the sum of gross value added by all resident producers in the economy plus any product taxes and minus any subsidies not included in the value of the products. It is calculated without making deductions for depreciation of fabricated assets or for depletion and degradation of natural resources.\",\"LAC Equity Lab\",\"World Development Indicators (World Bank)\"\n\"6.0.GDP_usd\",\"GDP (constant 2005 $)\",\"GDP is the sum of gross value added by all resident producers in the economy plus any product taxes and minus any subsidies not included in the value of the products. It is calculated without making deductions for depreciation of fabricated assets or for depletion and degradation of natural resources. Data are in constant 2005 U.S. dollars. Dollar figures for GDP are converted from domestic currencies using 2000 official exchange rates. For a few countries where the official exchange rate does not reflect the rate effectively applied to actual foreign exchange transactions, an alternative conversion factor is used. \",\"LAC Equity Lab\",\"World Development Indicators (World Bank)\"\n\"6.0.GDPpc_constant\",\"GDP per capita, PPP (constant 2011 international $) \",\"GDP per capita based on purchasing power parity (PPP). PPP GDP is gross domestic product converted to international dollars using purchasing power parity rates. An international dollar has the same purchasing power over GDP as the U.S. dollar has in the United States. GDP is the sum of gross value added by all resident producers in the economy plus any product taxes and minus any subsidies not included in the value of the products. It is calculated without making deductions for depreciation of fabricated assets or for depletion and degradation of natural resources. Data are in constant 2011 international dollars. \",\"LAC Equity Lab\",\"World Development Indicators (World Bank)\"\n\"6.0.GNIpc\",\"GNI per capita (2011 $)\",\"GNI per capita is the gross national income, converted to U.S. dollars using the World Bank Atlas method, divided by the midyear population. GNI is the sum of value added by all resident producers plus any product taxes (less subsidies) not included in the valuation of output plus net receipts of primary income (compensation of employees and property income) from abroad. To smooth fluctuations in prices and exchange rates, a special Atlas method of conversion is used by the World Bank. This applies a conversion factor that averages the exchange rate for a given year and the two preceding years, adjusted for differences in rates of inflation between the country, and the Euro area, Japan, the United Kingdom, and the United States.\",\"LAC Equity Lab\",\"LAC Equity Lab Tablulations of the World Development Indicators (World Bank).\"\n\"6.1.1_PRIMARY.ENERGY.SUPPLY\",\"Total primary energy supply (TJ)\",\"Total primary energy supply (TJ): As defined by the IEA, total primary energy supply is made up of production+net imports-international marine and aviation bunkers+-stock changes.\",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"6.1.2_GDP.PPP\",\"GDP (2011 USD PPP)\",\"\",\"Sustainable Energy for All\",\"\"\n\"6.1_LEG.CA\",\"Coordinating agency of Local Education Group (1=text in notes)\",\"Coordinating Agency (CA) or lead donor in the Local Education Group (LEG) coordinates and facilitates partners’ engagement with the Global Partnership for Education, thus serving as the communication link between the LEG and the Secretariat. The CA has a central role in facilitating the work of the LEG and is selected by this group. The LEG is the local structure of the Global Partnership for Education that bring together partners to develop high quality education strategies and programs. They are typically led by the Ministry of Education and include development partners and other education stakeholders such as national government and public entities, local and international civil society organizations (CSOs), CSO coalitions, teachers' and parents' organizations and private sector providers. The specific composition, title, and working arrangements of the LEG will vary from country to country. The LEG should be a collaborative forum for policy dialogue and for alignment and harmonization of technical and financial support to the education sector plan. It seeks to ensure that all parties are kept fully apprised of the progress and challenges in the sector, and it collates and disseminates information on domestic and external funding for the education sector.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG. The use of \\\"1\\\" as value indicates that the indicator contains text, expressed as a note for the specific country.\"\n\"6.1_PRIMARY.ENERGY.INTENSITY\",\"Energy intensity level of primary energy (MJ/$2005 PPP)\",\"Energy intensity level of primary energy (MJ/$2005 PPP): A ratio between energy supply and gross domestic product measured at purchasing power parity. Energy intensity is an indication of how much energy is used to produce one unit of economic output. Lower ratio indicates that less energy is used to produce one unit of output. \",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"6.2_LEG.OTHER.DONORS\",\"Donor members in Local Education Group (1=text in notes)\",\"Development partners other than the Coordinating Agency or lead donor in the Local Education Group (LEG), excluding civil society organizations (CSOs) and government and public entities. The LEG is the local structure of the Global Partnership for Education that bring together partners to develop high quality education strategies and programs. They are typically led by the Ministry of Education and include development partners and other education stakeholders such as national government and public entities, local and international civil society organizations (CSOs), CSO coalitions, teachers' and parents' organizations and private sector providers. The specific composition, title, and working arrangements of the LEG will vary from country to country. The LEG should be a collaborative forum for policy dialogue and for alignment and harmonization of technical and financial support to the education sector plan. It seeks to ensure that all parties are kept fully apprised of the progress and challenges in the sector, and it collates and disseminates information on domestic and external funding for the education sector.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG. The use of \\\"1\\\" as value indicates that the indicator contains text, expressed as a note for the specific country.\"\n\"6.3_LEG.CSO\",\"Civil society organizations in Local Education Group (1=text in notes)\",\"Local and international civil society organizations (CSO) participating in the Local Education Group (LEG), excluding development partners and government and public entities. The LEG is the local structure of the Global Partnership for Education that brings together partners to develop high quality education strategies and programs. They are typically led by the Ministry of Education and include development partners and other education stakeholders such as national government and public entities, local and international civil society organizations (CSOs), CSO coalitions, teachers' and parents' organizations and private sector providers. The specific composition, title, and working arrangements of the LEG will vary from country to country. The LEG should be a collaborative forum for policy dialogue and for alignment and harmonization of technical and financial support to the education sector plan. It seeks to ensure that all parties are kept fully apprised of the progress and challenges in the sector, and it collates and disseminates information on domestic and external funding for the education sector.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG. The use of \\\"1\\\" as value indicates that the indicator contains text, expressed as a note for the specific country.\"\n\"6.4_LAST.JSR\",\"Date of last Joint Education Sector Review (year=full date in notes)\",\"Date of most recent Joint Sector Review (JSR) carried out by the Local Education Group (LEG). A JSR is a monitoring and review mechanism where LEG members get together to assess progress, challenges and funding of the education sector. They provide an opportunity to measure progress against Education Sector Plans (ESPs) as well as to influence allocations and work-plans. They take place annually or biannually (some countries have more than two JSRs per year). Periodicity, participants and working arrangements are determined by the LEG. An aide-memoire gathering conclusions reached by stakeholders is produced at the end of the JSR.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG. The year of the date is indicated in the corresponding year column and the full date in a note for the specific indicator and country.\"\n\"6.5_NEXT.JSR\",\"Date of next Joint Education Sector Review (year=full date in notes)\",\"Date of next Joint Sector Review (JSR) planned by the Local Education Group (LEG). A JSR is a monitoring and review mechanism where LEG members get together to assess progress, challenges and funding of the education sector. They provide an opportunity to measure progress against Education Sector Plans (ESPs) as well as to influence allocations and work-plans. They take place annually or biannually (some countries have more than two JSRs per year). Periodicity, participants and working arrangements are determined by the LEG. An aide-memoire gathering conclusions reached by stakeholders is produced at the end of the JSR.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG. The year of the date is indicated in the corresponding year column and the full date in a note for the specific indicator and country.\"\n\"7.1.1_ESP.PERIOD.START\",\"Starting year of current Education Sector Plan period (year=full period in notes)\",\"The starting year for the period in which the Education Sector Plan or Transitional Education Plan is in effect. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG. The year in which the Education Sector Plan came into effect is indicated in the corresponding year column, and the full period in a note for the specific indicator and country.\"\n\"7.1.2_ESP.PERIOD.END\",\"Ending year of current Education Sector Plan period (year=full period in notes)\",\"The ending year for the period in which the Education Sector Plan or Transitional Education Plan is in effect. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG. The year in which the Education Sector Plan came into effect is indicated in the corresponding year column, and the full period in a note for the specific indicator and country.\"\n\"7.1_CURR.ALLOCATION.SE\",\"Current allocation - Supervising or managing entity (1=text in notes)\",\"When a Program Implementation Grant is requested from the Global Partnership, a supervising entity (SE) or managing entity (ME) must be designated by the Local Education Group (LEG). They are a bilateral or multilateral development agency. The key difference between these two roles is that a SE will transfer grant funds to the developing-country government, who will implement the program, whereas a ME will manage program activities directly.\",\"Global Partnership for Education\",\"This refers to Global Partnership for Education internal information that was shared with the Local Education Group for their review and validation. The use of \\\"1\\\" as value indicates that the indicator contains text, expressed as a note for the specific country.\"\n\"7.1_PRIMARY.ENER.INTENS.RATE\",\"Primary energy intensity - Compound Annual Growth Rate (%)\",\"Rate of primary energy intensity improvement (%): Compound annual gross rate (CAGR) of the energy intensity ratio reported for two decades (1990-2000 and 2000-2010) and a twenty-year period (1990-2010). Negative values represent improvements in energy intensity (less energy is used to produce one unit of output), while positive numbers indicate declination of energy intensity (more energy is used to produce one unit of output)\",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"7.11_CURR.ALLOCATION.MODALITY\",\"Current allocation - Modality (1=text in notes)\",\"The Global Partnership for Education is underpinned by the principles set out in the March 2005 Paris Declaration on Aid Effectiveness. The Global Partnership, therefore, anticipates that Local Education Groups (LEGs) will use the following order of preference when choosing a modality for GPE funding: Budget support (general or sector); pool funding; or stand-alone project. The LEG will need to determine the most appropriate and efficient way to channel the Program Implementation Grant into the education sector, balancing risks with the need to optimize capacity building and country ownership.\",\"Global Partnership for Education\",\"This refers to Global Partnership for Education internal information that was shared with the Local Education Group for their review and validation. The use of \\\"1\\\" as value indicates that the indicator contains text, expressed as a note for the specific country.\"\n\"7.12_CURR.ALLOCATION.2011.DISB\",\"Current allocation - Total disbursements as of 12/2011 (USD millions)\",\"Current GPE funding disbursed from the date of the signature of allocation to December 31st, 2011.\",\"Global Partnership for Education\",\"This refers to Global Partnership for Education internal information that was shared with the Local Education Group for their review and validation. The total amount disbursed up to December 31st, 2011 is indicated in the 2011 year column.\"\n\"7.13_CURR.ALLOCATION.DISB\",\"Current allocation - Annual disbursements (USD million)\",\"Current GPE funding disbursed and projected. Disbursements are indicated up to 2011; projections are labeled as \\\"targets\\\" starting in 2012. \",\"Global Partnership for Education\",\"This refers to Global Partnership for Education internal information that was shared with the Local Education Group for their review and validation. \"\n\"7.2_ESP.ENDORSEMENT\",\"Endorsement of Education Sector Plan (year)\",\"Year in which the Education Sector Plan or Transitional Education Plan was endorsed (a first or subsecuent times) by local donor partners, which grants membership into the Global Partnership for Education (GPE) and enable developing countries to apply for GPE funding. Education sector plans should contribute to the Education for All goals. When partners endorse a country’s education sector plan, they signal that the plan contributes to the attainment of those goals, and they commit to aligning their technical and financial support with the plan. This commitment promotes harmonization as well as consistency, coherence, and sustainability in education sector development.\",\"Global Partnership for Education\",\"This refers to Global Partnership for Education internal information that was shared with the Local Education Group for their review and validation. The year in which the Education Sector Plan was first endorsed is indicated in the corresponding year column.\"\n\"7.3_PREV.ALLOCATION.YEAR\",\"Previous allocation - Approval (year)\",\"Year(s) of approval of a Global Partnership funding operation that is now closed. \",\"Global Partnership for Education\",\"This refers to Global Partnership for Education (GPE) internal information that was shared with the Local Education Group for their review and validation. The year in which the GPE funding was approved is indicated in the corresponding year column.\"\n\"7.4_PREV.ALLOCATION.AMOUNT\",\"Previous allocation - Amount disbursed (USD million)\",\"Amount(s) allocated through a Global Partnership funding operation that is now closed.\",\"Global Partnership for Education\",\"This refers to Global Partnership for Education (GPE) internal information that was shared with the Local Education Group for their review and validation. The amount of the GPE funding is indicated in the corresponding approval year column. \"\n\"7.5_CURR.ALLOCATION.YEAR\",\"Current allocation - Approval (year)\",\"Year of approval of a Global Partnership funding operation that is currently being disbursed.\",\"Global Partnership for Education\",\"This refers to Global Partnership for Education (GPE) internal information that was shared with the Local Education Group for their review and validation. The year in which the GPE funding was approved is indicated in the corresponding year column.\"\n\"7.6_CURR.ALLOCATION.AMOUNT\",\"Current allocation - Total indicative amount (USD million)\",\"Amount allocated through a Global Partnership funding operation that is currently being disbursed.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. Data were not processed or analyzed by the Global Partnership for Education (GPE). It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG. The amount of the GPE funding is indicated in the corresponding approval year column.\"\n\"7.7.1_CURR.ALLOCATION.PERIOD.START\",\"Current allocation - Starting year of implementation period (year=full period in notes)\",\"The starting year for the disbursement period of the current Global Partnership funding.\",\"Global Partnership for Education\",\"This refers to Global Partnership for Education (GPE) internal information that was shared with the Local Education Group for their review and validation. The year in which the the GPE funding was first disbursed, or is expected to be first disbursed, is indicated in the corresponding year column, and the full period in a note for the specific indicator and country.\"\n\"7.7.2_CURR.ALLOCATION.PERIOD.END\",\"Current allocation - Ending year of Implementation period (year=full period in notes)\",\"The ending year for the disbursement period of the current Global Partnership funding.\",\"Global Partnership for Education\",\"This refers to Global Partnership for Education (GPE) internal information that was shared with the Local Education Group for their review and validation. The year in which the the GPE funding was first disbursed, or is expected to be first disbursed, is indicated in the corresponding year column, and the full period in a note for the specific indicator and country.\"\n\"7.8_CURR.ALLOCATION.SIGNATURE\",\"Current allocation - Signature date (year=full date in notes)\",\"Date of GPE grant agreement signature between a recipient government and the supervising entity.\",\"Global Partnership for Education\",\"This refers to Global Partnership for Education internal information that was shared with the Local Education Group for their review and validation. The year of the date is indicated in the corresponding year column and the full date in a note for the specific indicator and country.\"\n\"7.9_CURR.ALLOCATION.CLOSURE\",\"Current allocation - Closing date (year=full date in notes)\",\"Date of GPE grant agreement closure, when the supervising or managing entity informs the GPE that there will not be any other disbursements on the grant.\",\"Global Partnership for Education\",\"This refers to Global Partnership for Education internal information that was shared with the Local Education Group for their review and validation. The use of \\\"1\\\" as value indicates that the indicator contains text, expressed as a note for the specific country.\"\n\"8.0.LIPI\",\"Labor Income Poverty Index\",\"The Labor Income Poverty Index (LIPI)  measures changes in the share of households that have per capita labor income below the regional poverty line of $4 per day, relative to a selected reference period. This reference period is the third quarter in 2010 (2010Q3 = 1), except for Chile and Guatemala, where 2010Q4 = 1.\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of LABLAC (CEDLAS and the World Bank).\"\n\"8.1.1_FINAL.ENERGY.CONSUMPTION\",\"Total final consumption (TJ)\",\"Total final consumption (TJ): As defined by the IEA, total final consumption represents the sum of consumption in the end-use sectors and excludes energy used for transformation processes and energy used of the energy producing industries\",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"8.1.2_FINAL.ENERGY.INTENSITY\",\"Energy intensity level of final energy (MJ/$2005 PPP)\",\"Energy intensity level of final energy (MJ/$2005 PPP): A ratio between final energy consumption and gross domestic product measured at purchasing power parity. Energy intensity is an indication of how much energy is used to produce one unit of economic output. Lower ratio indicates that less energy is used to produce one unit of output. \",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"8.1_FINAL.ENER.INTENS.RATE\",\"Final energy intensity - Compound Annual Growth Rate (%)\",\"Rate of final energy intensity improvement (%): Compound annual gross rate (CAGR) of the energy intensity ratio reported for two decades (1990-2000 and 2000-2010) and a twenty-year period (1990-2010). Negative values represent improvements in energy intensity (less energy is used to produce one unit of output), while positive numbers indicate declination of energy intensity (more energy is used to produce one unit of output)\",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"8.1_SCH.LEAVING.EXAMS\",\"Administration of school leaving exams (yes=1, no=0, see notes if available)\",\"It indicates if school leaving exams are administered for primary and lower secondary levels and in which grade. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG. \"\n\"8.2_INT.TESTS\",\"Participation in international tests (yes=1, no=0, see notes if available)\",\"It indicates in which international learning outcome assessments has the country participated and in which year. Please refer to the subtopic Learning Outcomes and the specific country for details on the scores obtained in these assessments, as reported by the Local Education Group (LEG). \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG. \"\n\"8.3.1_ALB.LEAR.TEST.9.LANG.MEAN\",\"National assessment for learning outcomes in Albania, grade 9, Language (mean score)\",\"Mean score calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. Scale goes up to 50.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.1_BFA.PASEC.CP2.FR\",\"PASEC in Burkina Faso, CP2, French (mean score)\",\"Mean score calculated for the results of the Programme on the Analysis of Education Systems (PASEC) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PASEC is an international study created in 1991 by the Conference of Ministers of Education of Francophone countries (CONFEMEN) to assess educational attainments in primary school. For further information please refer to this web site: www.confemen.org.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.1_CAF.BREVET.SUCC\",\" Brevet des colleges in Central African Republic, success rate (%) \",\"Success rate in the Brevet des colleges, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.1_CIV.LEAR.TEST.PRIM.ALL.MEAN\",\"National assessment for learning outcomes in Côte d'Ivoire, primary (CEPE), mean score of all subjects \",\"Mean score calculated for the results of the national assessment carried out in the specific education level for French, Mathematics, Sciences and H-G, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.1_CMR.PASEC.25.FRE\",\"PASEC in Cameroon, grades 2 and 5, French (mean score)\",\"Mean score calculated for the results of the Programme on the Analysis of Education Systems (PASEC) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PASEC is an international study created in 1991 by the Conference of Ministers of Education of Francophone countries (CONFEMEN) to assess educational attainments in primary school. For further information please refer to this web site: www.confemen.org.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.1_ETH.LEAR.TEST.10.ENG.OPT\",\"National assessment for learning outcomes in Ethiopia, grade 10, English, optimal competency (%)\",\"Optimal competency calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. Optimal competency are scores above 50%.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.1_GEO.PIRLS.4.READ.MEAN\",\"PIRLS in Georgia, grade 4, Reading (mean score)\",\"Mean score calculated for the results of the Progress in International Reading Literacy Study (PIRLS) on the reading achievement of fourth grade students, as reported by the Local Education Group (LEG). It was first conduced in 2001 and then every five years by the TIMS & PIRLS International Study Center of Boston College's Lynch School of Education. For further details please refer to this web site: pirls.bc.edu.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.1_GHA.LEAR.TEST.P3.ENG.ABOV.MEAN\",\"National assessment for learning outcomes in Ghana, P3, English, students above mean (%)\",\"Students with results above the mean competency in the National Education Assessment (NEA) carried out in the specific subject and grade, using multiple choice items with 4 options, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.1_GIN.PASEC.CP2.FR.MEAN\",\"PASEC in Guinea, CP2, French (mean score)\",\"Mean score calculated for the results of the Programme on the Analysis of Education Systems (PASEC) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PASEC is an international study created in 1991 by the Conference of Ministers of Education of Francophone countries (CONFEMEN) to assess educational attainments in primary school. For further information please refer to this web site: www.confemen.org.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.1_KGZ.PISA.89.READ1\",\"PISA in Kyrgyzstan, grades 8-9, Reading - overall (mean score)\",\"Mean score calculated for the results of the Programme for International Student Assessment (PISA) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PISA is an international study that was launched by the OECD in 1997. It aims to evaluate education systems worldwide every three years by assessing 15-year-olds' competencies in the key subjects: reading, mathematics and science. For further details please refer to this web site: http://www.oecd.org/pisa/. Pupils who were 15 year old participated in this test, some of them were at grade 8 and some at grade 10.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.1_KHM.LEAR.TEST.3.LANG.MEAN\",\"National assessment for learning outcomes in Cambodia, grade 3, Language (mean score)\",\"Mean score calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.1_LAO.LEAR.TEST.5.LANG.MEAN\",\"National assessment for learning outcomes in Laos, grade 5, Language (mean score)\",\"Mean score calculated for the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.1_MDA.LEAR.TEST.4.MEAN\",\"National assessment for learning outcomes in Moldova, grade 4, mean competency (%)\",\"Students with mean competency in the results of the national assessment carried out in the specific grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.1_MDG.PASEC.CM2.FRE\",\"PASEC in Madagascar, CM2, French (mean score)\",\"Mean score calculated for the results of the Programme on the Analysis of Education Systems (PASEC) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PASEC is an international study created in 1991 by the Conference of Ministers of Education of Francophone countries (CONFEMEN) to assess educational attainments in primary school. For further information please refer to this web site: www.confemen.org.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.1_MOZ.SACMEQ.TEST.6.READ\",\"SACMEQ in Mozambique, grade 5, Reading (mean score)\",\"Mean score calculated for the results of the Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. SACMEQ has completed two major education policy research projects (SACMEQ I and SACMEQ II) between 1995 and 2005. The third project (SACMEQ III) commenced in 2007 and was completed in 2011. For further details please refer to the following web site: www.sacmeq.org. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.1_MRT.PASEC.5.FR\",\"PASEC in Mauritania, grade 5, French (mean score)\",\"Mean score calculated for the results of the Programme on the Analysis of Education Systems (PASEC) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PASEC is an international study created in 1991 by the Conference of Ministers of Education of Francophone countries (CONFEMEN) to assess educational attainments in primary school. For further information please refer to this web site: www.confemen.org.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.1_MWI.SACMEQ.357.READ\",\"SACMEQ in Malawi, standards 3,5,7, Reading (mean score)\",\"Mean score calculated for the results of the Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. SACMEQ has completed two major education policy research projects (SACMEQ I and SACMEQ II) between 1995 and 2005. The third project (SACMEQ III) commenced in 2007 and was completed in 2011. For further details please refer to the following web site: www.sacmeq.org. In Malawi SACMEQ I tested learners on English; SACMEQ II on English and Mathematics; and SACMEQ III on English, Mathematics, and HIV/AIDs. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.1_NER.LEAR.TEST.CP.FR.MEAN\",\"National assessment for learning outcomes in Niger, CP, French (mean score)\",\"Mean scores calculated for the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.1_SEN.LEAR.TEST.CE2.MATH.MIN\",\"National assessment for learning outcomes (SNERS) in Senegal, CE2, Mathematics, minimal competency (%)\",\"Minimal competency calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.1_VNM.LEAR.TEST.5.MAT1\",\"National assessment for learning outcomes in Vietnam, grade 5, Mathematics - Level 1, scores in indicated level (%)\",\"Students in respective level in the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. Relative level means that student: Reads, writes and compares natural numbers, fractions and decimals. Uses single operations of +, -, x and : on simple whole numbers; works with simple measures such as time; recognizes simple 3D shapes.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.1_VNM.LEAR.TEST.5.READ1\",\"National assessment for learning outcomes in Vietnam, grade 5, Reading - Level 1, scores in indicated level (%)\",\"Students in respective level in the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. Relative level means that student: Matches text at word or sentence level aided by pictures. Restricted to a limited range of vocabulary linked to pictures.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.1_ZMB.LEAR.TEST.5.READ\",\"National assessment for learning outcomes in Zambia, grade 5, Reading (mean score)\",\"Mean score calculated for the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.10_ETH.LEAR.TEST.12.CHE.OPT\",\"National assessment for learning outcomes in Ethiopia, grade 12, Chemistry, optimal competency (%)\",\"Optimal competency calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. Optimal competency are scores above 50%.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.10_GEO.LEAR.TEST.9.LANG.LOWEST\",\"National assessment for learning outcomes in Georgia, grade 9, Language, students in lowest level (%)\",\"Students with lowest competency in the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.10_GHA.LEAR.TEST.P6.ENG.ABOV.PROF\",\"National assessment for learning outcomes in Ghana, P6, English, students above proficient levels (%)\",\"Students with results above proficient competency in the National Education Assessment (NEA) carried out in the specific subject and grade, using multiple choice items with 4 options, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. % of pupils achieving 55% of results or more in the test.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.10_GIN.PASEC.CM1.FR.MATH.MEAN.BEG\",\"PASEC in Guinea, CM1, French and Mathematics, mean score at the end of year (%)\",\"Mean score calculated at the end of the year for the results of the Programme on the Analysis of Education Systems (PASEC) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PASEC is an international study created in 1991 by the Conference of Ministers of Education of Francophone countries (CONFEMEN) to assess educational attainments in primary school. For further information please refer to this web site: www.confemen.org.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.10_NER.LEAR.TEST.CP.FR.UNDERMIN\",\"National assessment for learning outcomes in Niger, CP, French, under minimal competency (%)\",\"Students under minimal competency in the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.11_ETH.LEAR.TEST.12.PHY.OPT\",\"National assessment for learning outcomes in Ethiopia, grade 12, Physics, optimal competency (%)\",\"Optimal competency calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. Optimal competency are scores above 50%.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.11_GEO.LEAR.TEST.9.MAT.LOWEST\",\"National assessment for learning outcomes in Georgia, grade 9, Mathematics, students in lowest level (%)\",\"Students with lowest competency in the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.11_GHA.LEAR.TEST.P3.MAT.ABOV.PROF\",\"National assessment for learning outcomes in Ghana, P3, Mathematics, students above proficient levels (%)\",\"Students with results above proficient competency in the National Education Assessment (NEA) carried out in the specific subject and grade, using multiple choice items with 4 options, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. % of pupils achieving 55% of results or more in the test.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.11_GIN.LEAR.TEST.CEPE.MEAN\",\"National assessment at the end of primary (CEPE) in Guinea, CM2 (6 grade) (mean score)\",\"Mean score calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.11_NER.LEAR.TEST.CE2.FR.UNDERMIN\",\"National assessment for learning outcomes in Niger, CE2, French, under minimal competency (%)\",\"Students under minimal competency in the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.12_ETH.LEAR.TEST.12.AVR.OPT\",\"National assessment for learning outcomes in Ethiopia, grade 12, average of all subjects, optimal competency (%)\",\"Optimal competency calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. Optimal competency are scores above 50%.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.12_GEO.LEAR.TEST.1.ENG.MED\",\"National assessment for learning outcomes in Georgia, grade 1, English, students in medium level (%)\",\"Students with medium competency in the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.12_GHA.LEAR.TEST.P6.MAT.ABOV.PROF\",\"National assessment for learning outcomes in Ghana, P6, Mathematics, students above proficient levels (%)\",\"Students with results above proficient competency in the National Education Assessment (NEA) carried out in the specific subject and grade, using multiple choice items with 4 options, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. % of pupils achieving 55% of results or more in the test.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.12_GIN.LEAR.TEST.BEPC.MEAN\",\"National assessment at the end of lower secondary (BEPC) in Guinea, 10 grade (mean score)\",\"Mean score calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.12_NER.LEAR.TEST.CM2.FR.UNDERMIN\",\"National assessment for learning outcomes in Niger, CM2, French, under minimal competency (%)\",\"Students under minimal competency in the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.13_GEO.LEAR.TEST.9.LANG.MED\",\"National assessment for learning outcomes in Georgia, grade 9, Language, students in medium level (%)\",\"Students with medium competency in the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.13_GHA.TIMSS.8.MAT.MEAN\",\"TIMSS in Ghana, grade 8, Mathematics (mean score)\",\"Mean score calculated for the results of the Trends in International Mathematics and Science Study (TIMSS) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. It was first conduced in 1995 and then every four years by the TIMS & PIRLS International Study Center of Boston College's Lynch School of Education. For further details please refer to this web site: timss.bc.edu.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.13_GIN.LEAR.TEST.BAC.MEAN\",\"National assessment at the end of secondary (BAC) in Guinea, Terminale (mean score)\",\"Mean score calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.13_NER.LEAR.TEST.CP.MATH.MEAN\",\"National assessment for learning outcomes in Niger, CP, Mathematics (mean score)\",\"Mean scores calculated for the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.14_GEO.LEAR.TEST.9.MAT.MED\",\"National assessment for learning outcomes in Georgia, grade 9, Mathematics, students in medium level (%)\",\"Students with medium competency in the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.14_GHA.TIMSS.8.SCI.MEAN\",\"TIMSS in Ghana, grade 8, Science (mean score)\",\"Mean score calculated for the results of the Trends in International Mathematics and Science Study (TIMSS) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. It was first conduced in 1995 and then every four years by the TIMS & PIRLS International Study Center of Boston College's Lynch School of Education. For further details please refer to this web site: timss.bc.edu.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.14_GIN.LEAR.TEST.CEPE.MIN\",\"National assessment at the end of primary (CEPE) in Guinea, CM2 (6 grade), minimal competency \",\"Minimal competency calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.14_NER.LEAR.TEST.CE2.MATH.MEAN\",\"National assessment for learning outcomes in Niger, CE2, Mathematics (mean score)\",\"Mean score calculated for the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.15_GEO.LEAR.TEST.1.ENG.HIGH\",\"National assessment for learning outcomes in Georgia, grade 1, English, students in higher level (%)\",\"Students with higher competency in the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.15_GHA.LITERACY.P3.LETTERS\",\"Making the Grade Scores in Ghana, P3, Literacy in English, Letters per minute (mean)\",\"Mean score calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.15_GIN.LEAR.TEST.BEPC.MIN\",\"National assessment at the end of lower secondary (BEPC) in Guinea, 10 grade, minimum competency \",\"Minimum competency calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.15_NER.LEAR.TEST.CM2.MATH.MEAN\",\"National assessment for learning outcomes in Niger, CM2, Mathematics (mean score)\",\"Mean scores calculated for the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.16_GEO.LEAR.TEST.9.LANG.HIGH\",\"National assessment for learning outcomes in Georgia, grade 9, Language, students in higher level (%)\",\"Students with higher competency in the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.16_GHA.LITERACY.P5.LETTERS\",\"Making the Grade Scores in Ghana, P5, Literacy in English, Letters per minute (mean)\",\"Mean letters per minute read in the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.16_GIN.LEAR.TEST.BAC.MIN\",\"National assessment at the end of secondary (BAC) in Guinea, minimal competency \",\"Minimal competency calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.16_NER.LEAR.TEST.CP.MATH.OPTIM\",\"National assessment for learning outcomes in Niger, CP, Mathematics, optimal competency (%)\",\"Students with optimal competency in the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.17_GEO.LEAR.TEST.9.MAT.HIGH\",\"National assessment for learning outcomes in Georgia, grade 9, Mathematics, students in higher level (%)\",\"Students with higher competency in the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.17_GHA.LITERACY.P3.WORDS\",\"Making the Grade Scores in Ghana, P3 Literacy in English, Words per minute (mean)\",\"Mean score calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.17_GIN.LEAR.TEST.CEPE.OPTIM\",\"National assessment at the end of primary (CEPE) in Guinea, CM2 (6 grade), optimal competency \",\"Optimal competency calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.17_NER.LEAR.TEST.CE2.MATH.OPTIM\",\"National assessment for learning outcomes in Niger, CE2, Mathematics, optimal competency (%)\",\"Students with optimal competency in the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.18_GEO.LEAR.TEST.9.LAG.HIGHEST\",\"National assessment for learning outcomes in Georgia, grade 9, Language, students in highest level (%)\",\"Students with highest competency in the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.18_GHA.LITERACY.P5.WORDS\",\"Making the Grade Scores in Ghana, P5, Literacy in English, Words per minute (mean)\",\"Mean words per minute read in the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.18_GIN.LEAR.TEST.BEPC.OPTIM\",\"National assessment at the end of lower secondary (BEPC) in Guinea, 10 grade, optimal competency \",\"Optimal competency calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.18_NER.LEAR.TEST.CM2.MATH.OPTIM\",\"National assessment for learning outcomes in Niger, CM2, Mathematics, optimal competency (%)\",\"Students with optimal competency in the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.19_GEO.LEAR.TEST.9.MAT.HIGHEST\",\"National assessment for learning outcomes in Georgia, grade 9, Mathematics, students in highest level (%)\",\"Students with highest competency in the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.19_GHA.LITERACY.P3.ZERO\",\"Making the Grade Scores in Ghana, P3, Literacy in English, Zero score \",\"Zero score in results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.19_GIN.LEAR.TEST.BAC.OPTIM\",\"National assessment at the end of secondary (BAC) in Guinea, optimal competency \",\"Optimal competency calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.19_NER.LEAR.TEST.CP.MATH.MIN\",\"National assessment for learning outcomes in Niger, CP, Mathematics, minimal competency (%)\",\"Students with minimal competency in the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.2_ALB.LEAR.TEST.9.MAT.MEAN\",\"National assessment for learning outcomes in Albania, grade 9, Mathematics (mean score)\",\"Mean score calculated for the results of the national assessment carried out in the specific subject and grade. Country-specific definition and method are determined by country. Scale goes up to 50.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.2_BFA.PASEC.CM1.FR\",\"PASEC in Burkina Faso, CM1, French (mean score)\",\"Mean score calculated for the results of the Programme on the Analysis of Education Systems (PASEC) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PASEC is an international study created in 1991 by the Conference of Ministers of Education of Francophone countries (CONFEMEN) to assess educational attainments in primary school. For further information please refer to this web site: www.confemen.org.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.2_CAF.BAC.SUCC\",\" Baccalaureate in Central African Republic, exam at the end of secondary education, success rate (%) \",\"Success rate in the exam at the end of secondary education (Baccalaureate), as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.2_CIV.LEAR.TEST.SEC.ALL.MEAN\",\"National assessment for learning outcomes in Côte d'Ivoire, lower secondary (BEPC), mean score of all subjects \",\"Mean score calculated for the results of the national assessment carried out in the specific education level for French, Mathematics, Physics, English, SVT, L2, H-G and ECM, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.2_CMR.PASEC.25.MAT\",\"PASEC in Cameroon, grades 2 and 5, Mathematics (mean score)\",\"Mean score calculated for the results of the Programme on the Analysis of Education Systems (PASEC) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PASEC is an international study created in 1991 by the Conference of Ministers of Education of Francophone countries (CONFEMEN) to assess educational attainments in primary school. For further information please refer to this web site: www.confemen.org.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.2_ETH.LEAR.TEST.10.MAT.OPT\",\"National assessment for learning outcomes in Ethiopia, grade 10, Mathematics, optimal competency (%)\",\"Optimal competency calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. Optimal competency are scores above 50%.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.2_GEO.TIMSS.4.MAT.MEAN\",\"TIMSS in Georgia, grade 4, Mathematics (mean score)\",\"Mean score calculated for the results of the Trends in International Mathematics and Science Study (TIMSS) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. It was first conduced in 1995 and then every four years by the TIMS & PIRLS International Study Center of Boston College's Lynch School of Education. For further details please refer to this web site: timss.bc.edu.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.2_GHA.LEAR.TEST.P6.ENG.ABOV.MEAN\",\"National assessment for learning outcomes in Ghana, P6, English, students above mean (%)\",\"Students with results above the mean competency in the National Education Assessment (NEA) carried out in the specific subject and grade, using multiple choice items with 4 options, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.2_GIN.PASEC.CP2.MAT.MEAN\",\"PASEC in Guinea, CP2, Mathematics (mean score)\",\"Mean score calculated for the results of the Programme on the Analysis of Education Systems (PASEC) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PASEC is an international study created in 1991 by the Conference of Ministers of Education of Francophone countries (CONFEMEN) to assess educational attainments in primary school. For further information please refer to this web site: www.confemen.org.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.2_KGZ.PISA.89.READ2\",\"PISA in Kyrgyzstan, grades 8-9, Reading - access and retrieve (mean score)\",\"Mean score calculated for the results of the Programme for International Student Assessment (PISA) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PISA is an international study that was launched by the OECD in 1997. It aims to evaluate education systems worldwide every three years by assessing 15-year-olds' competencies in the key subjects: reading, mathematics and science. For further details please refer to this web site: http://www.oecd.org/pisa/. Pupils who were 15 year old participated in this test, some of them were at grade 8 and some at grade 10.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.2_KHM.LEAR.TEST.3.MAT.MEAN\",\"National assessment for learning outcomes in Cambodia, grade 3, Mathematics (mean score)\",\"Mean score calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.2_LAO.LEAR.TEST.5.LANG.MIN\",\"National assessment for learning outcomes in Laos, grade 5, Language (minimal competency)\",\"Mean score calculated for the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.2_MDA.LEAR.TEST.9.MEAN\",\"National assessment for learning outcomes in Moldova, grade 9, mean competency (%)\",\"Students with mean competency in the results of the national assessment carried out in the specific grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.2_MDG.PASEC.CM2.MAT\",\"PASEC in Madagascar, CM2, Mathematics (mean score)\",\"Mean score calculated for the results of the Programme on the Analysis of Education Systems (PASEC) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PASEC is an international study created in 1991 by the Conference of Ministers of Education of Francophone countries (CONFEMEN) to assess educational attainments in primary school. For further information please refer to this web site: www.confemen.org.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.2_MOZ.SACMEQ.TEST.6.MAT\",\"SACMEQ in Mozambique, grade 5, Mathematics (mean score)\",\"Mean score calculated for the results of the Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. SACMEQ has completed two major education policy research projects (SACMEQ I and SACMEQ II) between 1995 and 2005. The third project (SACMEQ III) commenced in 2007 and was completed in 2011. For further details please refer to the following web site: www.sacmeq.org. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.2_MRT.PASEC.5.MAT\",\"PASEC in Mauritania, grade 5, Mathematics (mean score)\",\"Mean score calculated for the results of the Programme on the Analysis of Education Systems (PASEC) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PASEC is an international study created in 1991 by the Conference of Ministers of Education of Francophone countries (CONFEMEN) to assess educational attainments in primary school. For further information please refer to this web site: www.confemen.org.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.2_MWI.SACMEQ.357.MAT\",\"SACMEQ in Malawi, standards 3,5,7, Mathematics (mean score)\",\"Mean score calculated for the results of the Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. SACMEQ has completed two major education policy research projects (SACMEQ I and SACMEQ II) between 1995 and 2005. The third project (SACMEQ III) commenced in 2007 and was completed in 2011. For further details please refer to the following web site: www.sacmeq.org. In Malawi SACMEQ I tested learners on English; SACMEQ II on English and Mathematics; and SACMEQ III on English, Mathematics, and HIV/AIDs. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.2_NER.LEAR.TEST.CE2.FR.MEAN\",\"National assessment for learning outcomes in Niger, CE2, French (mean score)\",\"Mean score calculated for the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.2_SEN.LEAR.TEST.CE2.FR.MIN\",\"National assessment for learning outcomes (SNERS) in Senegal, CE2, French, minimal competency (%)\",\"Minimal competency calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.2_VNM.LEAR.TEST.5.MAT2\",\"National assessment for learning outcomes in Vietnam, grade 5, Mathematics - Level 1, scores in indicated level (%)\",\"Students in respective level in the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. Relative level means that student: Converts fractions with denominator of 10 to decimals. Calculates with whole numbers using one operation (x, -, + or ;) in a one step word problem; recognizes 2D and 3D shapes.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.2_VNM.LEAR.TEST.5.READ2\",\"National assessment for learning outcomes in Vietnam, grade 5, Reading - Level 2, scores in indicated level (%)\",\"Students in respective level in the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. Relative level means that student: Locates text expressed in short repetitive sentences and can deal with text unaided by pictures. Type of text is limited to short sentences and phrases with repetitive patterns.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.2_ZMB.LEAR.TEST.5.MAT\",\"National assessment for learning outcomes in Zambia, grade 5, Mathematics (mean score)\",\"Mean score calculated for the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.20_GHA.LITERACY.P5.ZERO\",\"Making the Grade Scores in Ghana, P5, Literacy in English, Zero score \",\"Zero score in results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.20_GIN.LEAR.TEST.CEPE.MAX\",\"National assessment at the end of primary (CEPE) in Guinea, CM2 (6 grade), maximal competency \",\"Maximum competency calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.20_NER.LEAR.TEST.CE2.MATH.MIN\",\"National assessment for learning outcomes in Niger, CE2, Mathematics, minimal competency (%)\",\"Students with minimal competency in the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.21_GHA.NUMERACY.P3.ADDITIO\",\"Making the Grade Scores in Ghana, P3, Numeracy, Correct Additions (%)\",\"Students capable of perform correct additions in the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.21_GIN.LEAR.TEST.BEPC.MAX\",\"National assessment at the end of lower secondary (BEPC) in Guinea, 10 grade, maximal competency \",\"Maximum competency calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.21_NER.LEAR.TEST.CM2.MATH.MIN\",\"National assessment for learning outcomes in Niger, CM2, Mathematics, minimal competency (%)\",\"Students with minimal competency in the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.22_GHA.NUMERACY.P5.ADDITIO\",\"Making the Grade Scores in Ghana, P5, Numeracy, Correct Additions (%)\",\"Students capable of perform correct additions in the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.22_GIN.LEAR.TEST.BAC.MAX\",\"National assessment at the end of secondary (BAC) in Guinea, maximal competency \",\"Maximum competency calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.22_NER.LEAR.TEST.CP.MATH.UNDERMIN\",\"National assessment for learning outcomes in Niger, CP, Mathematics, under minimal competency (%)\",\"Students under minimal competency in the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.23_GHA.NUMERACY.P3.MULTIPLI\",\"Making the Grade Scores in Ghana, P3, Numeracy, Correct Multiplications (%)\",\"Students capable of performing correct multiplications in the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.23_GIN.LEAR.TEST.CEPE.SUCC\",\"National assessment at the end of primary (CEPE) in Guinea, CM2 (6 grade), success rate (%)\",\"Success rate calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.23_NER.LEAR.TEST.CE2.MATH.UNDERMIN\",\"National assessment for learning outcomes in Niger, CE2, Mathematics, under minimal competency (%)\",\"Students under minimal competency in the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.24_GHA.NUMERACY.P5.MULTIPLI\",\"Making the Grade Scores in Ghana, P5, Numeracy, Correct Multiplications (%)\",\"Students capable of perform correct multiplications in the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.24_GIN.LEAR.TEST.BEPC.SUCC\",\"National assessment at the end of lower secondary (BEPC) in Guinea, 10 grade, success rate (%)\",\"Success rate calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.24_NER.LEAR.TEST.CM2.MATH.UNDERMIN\",\"National assessment for learning outcomes in Niger, CM2, Mathematics, under minimal competency (%)\",\"Students under minimal competency in the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.25_GHA.NUMERACY.P3.ZERO\",\"Making the Grade Scores in Ghana, P3, Numeracy, Zero score \",\"Zero score in results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.25_GIN.LEAR.TEST.BAC.SUCC\",\"National assessment at the end of secondary (BAC) in Guinea, success rate (%)\",\"Success rate calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.25_NER.LEAR.TEST.CERTIFICATE.SUCC\",\"National assessment for learning outcomes in Niger, end of 1st degree certificate, success rate (%)\",\"Success rate in the end of 1st degree certificate, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.26_GHA.NUMERACY.P5.ZERO\",\"Making the Grade Scores in Ghana, P5, Numeracy, Zero score \",\"Zero score in results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.3_ALB.PISA.910.READ\",\"PISA in Albania, grade 9 and 10, Reading (mean score)\",\"Mean score calculated for the results of the Programme for International Student Assessment (PISA) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PISA is an international study that was launched by the OECD in 1997. It aims to evaluate education systems worldwide every three years by assessing 15-year-olds' competencies in the key subjects: reading, mathematics and science. For further details please refer to this web site: http://www.oecd.org/pisa/\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.3_BFA.PASEC.CP2.MAT\",\"PASEC in Burkina Faso, CP2, Mathematics (mean score)\",\"Mean score calculated for the results of the Programme on the Analysis of Education Systems (PASEC) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PASEC is an international study created in 1991 by the Conference of Ministers of Education of Francophone countries (CONFEMEN) to assess educational attainments in primary school. For further information please refer to this web site: www.confemen.org.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.3_CIV.LEAR.TEST.PRIM.ALL.MIN.COMP\",\"National assessment for learning outcomes in Côte d'Ivoire, primary (CEPE), minimal competency (%)\",\"Mean score calculated for the results of the national assessment carried out in the specific education level for French, Mathematics, Sciences and H-G, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.3_ETH.LEAR.TEST.10.BIO.OPT\",\"National assessment for learning outcomes in Ethiopia, grade 10, Biology, optimal competency (%)\",\"Optimal competency calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. Optimal competency are scores above 50%.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.3_GEO.TIMSS.4.SCI.MEAN\",\"TIMSS in Georgia, grade 4, Science (mean score)\",\"Mean score calculated for the results of the Trends in International Mathematics and Science Study (TIMSS) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. It was first conduced in 1995 and then every four years by the TIMS & PIRLS International Study Center of Boston College's Lynch School of Education. For further details please refer to this web site: timss.bc.edu.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.3_GHA.LEAR.TEST.P3.MAT.ABOV.MEAN\",\"National assessment for learning outcomes in Ghana, P3, Mathematics, students above mean (%)\",\"Students with results above the mean competency in the National Education Assessment (NEA) carried out in the specific subject and grade, using multiple choice items with 4 options, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.3_GIN.PASEC.CP2.FR.MAT.MEAN\",\"PASEC in Guinea, CP2, French and Mathematics (mean score)\",\"Mean score calculated for the results of the Programme on the Analysis of Education Systems (PASEC) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PASEC is an international study created in 1991 by the Conference of Ministers of Education of Francophone countries (CONFEMEN) to assess educational attainments in primary school. For further information please refer to this web site: www.confemen.org.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.3_KGZ.PISA.89.READ3\",\"PISA in Kyrgyzstan, grades 8-9, Reading - integrate and interpret (mean score)\",\"Mean score calculated for the results of the Programme for International Student Assessment (PISA) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PISA is an international study that was launched by the OECD in 1997. It aims to evaluate education systems worldwide every three years by assessing 15-year-olds' competencies in the key subjects: reading, mathematics and science. For further details please refer to this web site: http://www.oecd.org/pisa/. Pupils who were 15 year old participated in this test, some of them were at grade 8 and some at grade 10.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.3_KHM.LEAR.TEST.6.LANG.MEAN\",\"National assessment for learning outcomes in Cambodia, grade 6, Language (mean score)\",\"Mean score calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.3_LAO.LEAR.TEST.5.LANG.PROF\",\"National assessment for learning outcomes in Laos, grade 5, Language (proficiency)\",\"Mean score calculated for the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.3_MDA.LEAR.TEST.4.MIN\",\"National assessment for learning outcomes in Moldova, grade 4, minimal competency (%)\",\"Students with minimal competency in the results of the national assessment carried out in the specific grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.3_NER.LEAR.TEST.CM2.FR.MEAN\",\"National assessment for learning outcomes in Niger, CM2, French (mean score)\",\"Mean score calculated for the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.3_SEN.LEAR.TEST.CE2.MATH.OPT\",\"National assessment for learning outcomes (SNERS) in Senegal, CE2, Mathematics, optimal competency (%)\",\"Optimal competency calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.3_VNM.LEAR.TEST.5.MAT3\",\"National assessment for learning outcomes in Vietnam, grade 5, Mathematics - Level 1, scores in indicated level (%)\",\"Students in respective level in the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. Relative level means that student: Identifies place value; determines the value of a simple number sentence; understands equivalent fractions; adds and subtracts simple fractions; carries out multiple operations in correct order; converts and estimates common and familiar measurement units in solving problems.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.3_VNM.LEAR.TEST.5.READ3\",\"National assessment for learning outcomes in Vietnam, grade 5, Reading - Level 3, scores in indicated level (%)\",\"Students in respective level in the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. Relative level means that student: Reads and understands longer passages. Can search backwards or forwards through text for information. Understands paraphrasing. Expanding vocabulary enables understanding of sentences with some complex structure.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.3_ZMB.SACMEQ.TEST.5.READ\",\"SACMEQ in Zambia, grade 5, Reading (mean score)\",\"Mean score calculated for the results of the Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. SACMEQ has completed two major education policy research projects (SACMEQ I and SACMEQ II) between 1995 and 2005. The third project (SACMEQ III) commenced in 2007 and was completed in 2011. For further details please refer to the following web site: www.sacmeq.org. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.4_ALB.PISA.910.MAT\",\"PISA in Albania, grade 9 and 10, Mathematics (mean score)\",\"Mean score calculated for the results of the Programme for International Student Assessment (PISA) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PISA is an international study that was launched by the OECD in 1997. It aims to evaluate education systems worldwide every three years by assessing 15-year-olds' competencies in the key subjects: reading, mathematics and science. For further details please refer to this web site: http://www.oecd.org/pisa/\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.4_BFA.PASEC.CM1.MAT\",\"PASEC in Burkina Faso, CM1, Mathematics (mean score)\",\"Mean score calculated for the results of the Programme on the Analysis of Education Systems (PASEC) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PASEC is an international study created in 1991 by the Conference of Ministers of Education of Francophone countries (CONFEMEN) to assess educational attainments in primary school. For further information please refer to this web site: www.confemen.org.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.4_CIV.LEAR.TEST.SEC.ALL.MIN.COMP\",\"National assessment for learning outcomes in Côte d'Ivoire, lower secondary (BEPC), minimal competency (%)\",\"Mean score calculated for the results of the national assessment carried out in the specific education level for French, Mathematics, Physics, English, SVT, L2, H-G and ECM, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. Subjects include: French, Mathematics, Physics, English, SVT, L2, H-G and ECM.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.4_ETH.LEAR.TEST.10.CHE.OPT\",\"National assessment for learning outcomes in Ethiopia, grade 10, Chemistry, optimal competency (%)\",\"Optimal competency calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. Optimal competency are scores above 50%.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.4_GEO.TIMSS.8.MAT.MEAN\",\"TIMSS in Georgia, grade 8, Mathematics (mean score)\",\"Mean score calculated for the results of the Trends in International Mathematics and Science Study (TIMSS) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. It was first conduced in 1995 and then every four years by the TIMS & PIRLS International Study Center of Boston College's Lynch School of Education. For further details please refer to this web site: timss.bc.edu.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.4_GHA.LEAR.TEST.P6.MAT.ABOV.MEAN\",\"National assessment for learning outcomes in Ghana, P6, Mathematics, students above mean (%)\",\"Students with results above the mean competency in the National Education Assessment (NEA) carried out in the specific subject and grade, using multiple choice items with 4 options, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.4_GIN.PASEC.CM1.FR.MEAN\",\"PASEC in Guinea, CM1, French (mean score)\",\"Mean score calculated for the results of the Programme on the Analysis of Education Systems (PASEC) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PASEC is an international study created in 1991 by the Conference of Ministers of Education of Francophone countries (CONFEMEN) to assess educational attainments in primary school. For further information please refer to this web site: www.confemen.org.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.4_KGZ.PISA.89.READ4\",\"PISA in Kyrgyzstan, grades 8-9, Reading - reflect and evaluate (mean score)\",\"Mean score calculated for the results of the Programme for International Student Assessment (PISA) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PISA is an international study that was launched by the OECD in 1997. It aims to evaluate education systems worldwide every three years by assessing 15-year-olds' competencies in the key subjects: reading, mathematics and science. For further details please refer to this web site: http://www.oecd.org/pisa/. Pupils who were 15 year old participated in this test, some of them were at grade 8 and some at grade 10.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.4_KHM.LEAR.TEST.6.MAT.MEAN\",\"National assessment for learning outcomes in Cambodia, grade 6, Mathematics (mean score)\",\"Mean score calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.4_LAO.LEAR.TEST.5.MAT.MEAN\",\"National assessment for learning outcomes in Laos, grade 5, Mathematics (mean score)\",\"Mean score calculated for the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.4_MDA.LEAR.TEST.9.MIN\",\"National assessment for learning outcomes in Moldova, grade 9, minimal competency (%)\",\"Students with minimal competency in the results of the national assessment carried out in the specific grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.4_NER.LEAR.TEST.CP.FR.OPTIM\",\"National assessment for learning outcomes in Niger, CP, French, optimal competency (%)\",\"Students with optimal competency in the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.4_SEN.LEAR.TEST.CE2.FR.OPT\",\"National assessment for learning outcomes (SNERS) in Senegal, CE2, French, optimal competency (%)\",\"Optimal competency calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.4_VNM.LEAR.TEST.5.MAT4\",\"National assessment for learning outcomes in Vietnam, grade 5, Mathematics - Level 1, scores in indicated level (%)\",\"Students in respective level in the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. Relative level means that student: Reads, writes and compares larger numbers; solves problems involving calendars and currency, area and volume; uses charts and tables for estimation; solves inequalities; transformations with 3D figures; knowledge of angles in regular figures; understands simple transformations with 2D and 3D shapes.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.4_VNM.LEAR.TEST.5.READ4\",\"National assessment for learning outcomes in Vietnam, grade 5, Reading - Level 4, scores in indicated level (%)\",\"Students in respective level in the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. Relative level means that student: Links information from different parts of the text. Selects and connects text to derive and infer different possible meanings.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.4_ZMB.SACMEQ.TEST.5.MAT\",\"SACMEQ in Zambia, grade 5, Mathematics (mean score)\",\"Mean score calculated for the results of the Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. SACMEQ has completed two major education policy research projects (SACMEQ I and SACMEQ II) between 1995 and 2005. The third project (SACMEQ III) commenced in 2007 and was completed in 2011. For further details please refer to the following web site: www.sacmeq.org. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.5_ALB.PISA.910.SCIENCE\",\"PISA in Albania, grade 9 and 10, Science (mean score)\",\"Mean score calculated for the results of the Programme for International Student Assessment (PISA) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PISA is an international study that was launched by the OECD in 1997. It aims to evaluate education systems worldwide every three years by assessing 15-year-olds' competencies in the key subjects: reading, mathematics and science. For further details please refer to this web site: http://www.oecd.org/pisa/\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.5_CIV.LEAR.TEST.PRIM.ALL.OPT.COMP\",\"National assessment for learning outcomes in Côte d'Ivoire, primary (CEPE), optimal competency (%)\",\"Mean score calculated for the results of the national assessment carried out in the specific education level for French, Mathematics, Sciences and H-G, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.5_ETH.LEAR.TEST.10.PHY.OPT\",\"National assessment for learning outcomes in Ethiopia, grade 10, Physics, optimal competency (%)\",\"Optimal competency calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. Optimal competency are scores above 50%.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.5_GEO.TIMSS.8.SCI.MEAN\",\"TIMSS in Georgia, grade 8, Science (mean score)\",\"Mean score calculated for the results of the Trends in International Mathematics and Science Study (TIMSS) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. It was first conduced in 1995 and then every four years by the TIMS & PIRLS International Study Center of Boston College's Lynch School of Education. For further details please refer to this web site: timss.bc.edu.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.5_GHA.LEAR.TEST.P3.ENG.ABOV.MIN\",\"National assessment for learning outcomes in Ghana, P3, English, students above minimal competency (%)\",\"Students with results above the minimal competency in the National Education Assessment (NEA) carried out in the specific subject and grade, using multiple choice items with 4 options, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. % of pupils achieving 35% of results or more in the test.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.5_GIN.PASEC.CM1.MAT.MEAN\",\"PASEC in Guinea, CM1, Mathematics (mean score)\",\"Mean score calculated for the results of the Programme on the Analysis of Education Systems (PASEC) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PASEC is an international study created in 1991 by the Conference of Ministers of Education of Francophone countries (CONFEMEN) to assess educational attainments in primary school. For further information please refer to this web site: www.confemen.org.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.5_KGZ.PISA.89.READ5\",\"PISA in Kyrgyzstan, grades 8-9, Reading - continuous texts (mean score)\",\"Mean score calculated for the results of the Programme for International Student Assessment (PISA) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PISA is an international study that was launched by the OECD in 1997. It aims to evaluate education systems worldwide every three years by assessing 15-year-olds' competencies in the key subjects: reading, mathematics and science. For further details please refer to this web site: http://www.oecd.org/pisa/. Pupils who were 15 year old participated in this test, some of them were at grade 8 and some at grade 10.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.5_KHM.LEAR.TEST.9.LANG.MEAN\",\"National assessment for learning outcomes in Cambodia, grade 9, Language (mean score)\",\"Mean score calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.5_LAO.LEAR.TEST.5.MAT.MIN\",\"National assessment for learning outcomes in Laos, grade 5, Mathematics (minimal competency)\",\"Mean score calculated for the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.5_MDA.LEAR.TEST.4.PROF\",\"National assessment for learning outcomes in Moldova, grade 4, proficient competency (%)\",\"Students with proficient competency in the results of the national assessment carried out in the specific grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.5_NER.LEAR.TEST.CE2.FR.OPTIM\",\"National assessment for learning outcomes in Niger, CE2, French, optimal competency (%)\",\"Students with optimal competency in the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.5_SEN.PASEC.CM1.MATH.MEAN\",\"PASEC in Senegal, CM1, Mathematics (mean score)\",\"Mean score calculated for the results of the Programme on the Analysis of Education Systems (PASEC) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PASEC is an international study created in 1991 by the Conference of Ministers of Education of Francophone countries (CONFEMEN) to assess educational attainments in primary school. For further information please refer to this web site: www.confemen.org.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.5_VNM.LEAR.TEST.5.MAT5\",\"National assessment for learning outcomes in Vietnam, grade 5, Mathematics - Level 1, scores in indicated level (%)\",\"Students in respective level in the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. Relative level means that student: Calculates with multiple and varied operations; recognizes rules and patterns in number sequences; calculates the perimeter and area of irregular shapes; measurement of irregular objects; recognized transformed figures after reflection; solves problems with multiple operations involving measurement units, percentage and averages.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.5_VNM.LEAR.TEST.5.READ5\",\"National assessment for learning outcomes in Vietnam, grade 5, Reading - Level 5, scores in indicated level (%)\",\"Students in respective level in the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. Relative level means that student: Links inferences and identifies an author's intention from information stated in different ways, in different text types and in documents where the message is not explicit.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.6_CIV.LEAR.TEST.SEC.ALL.OPT.COMP\",\"National assessment for learning outcomes in Côte d'Ivoire, lower secondary (BEPC), optimal competency (%)\",\"Mean score calculated for the results of the national assessment carried out in the specific education level for French, Mathematics, Physics, English, SVT, L2, H-G and ECM, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.6_ETH.LEAR.TEST.10.AVR.OPT\",\"National assessment for learning outcomes in Ethiopia, grade 10, average of all subjects, optimal competency (%)\",\"Optimal competency calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. Optimal competency are scores above 50%.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.6_GEO.PISA.9.READ.MEAN\",\"PISA in Georgia, grade 9, Reading (mean score)\",\"Mean score calculated for the results of the Programme for International Student Assessment (PISA) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PISA is an international study that was launched by the OECD in 1997. It aims to evaluate education systems worldwide every three years by assessing 15-year-olds' competencies in the key subjects: reading, mathematics and science. For further details please refer to this web site: http://www.oecd.org/pisa/\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.6_GHA.LEAR.TEST.P6.ENG.ABOV.MIN\",\"National assessment for learning outcomes in Ghana, P6, English, students above minimum competency (%)\",\"Students with results above the mean competency in the National Education Assessment (NEA) carried out in the specific subject and grade, using multiple choice items with 4 options, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. % of pupils achieving 35% of results or more in the test.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.6_GIN.PASEC.CM1.FR.MAT.MEAN\",\"PASEC in Guinea, CM1, French and Mathematics (mean score)\",\"Mean score calculated for the results of the Programme on the Analysis of Education Systems (PASEC) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PASEC is an international study created in 1991 by the Conference of Ministers of Education of Francophone countries (CONFEMEN) to assess educational attainments in primary school. For further information please refer to this web site: www.confemen.org.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.6_KGZ.PISA.89.READ6\",\"PISA in Kyrgyzstan, grades 8-9, Reading - non-continuous texts (mean score)\",\"Mean score calculated for the results of the Programme for International Student Assessment (PISA) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PISA is an international study that was launched by the OECD in 1997. It aims to evaluate education systems worldwide every three years by assessing 15-year-olds' competencies in the key subjects: reading, mathematics and science. For further details please refer to this web site: http://www.oecd.org/pisa/. Pupils who were 15 year old participated in this test, some of them were at grade 8 and some at grade 10.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.6_KHM.LEAR.TEST.9.MAT.MEAN\",\"National assessment for learning outcomes in Cambodia, grade 9, Mathematics (mean score)\",\"Mean score calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.6_LAO.LEAR.TEST.5.MAT.PROF\",\"National assessment for learning outcomes in Laos, grade 5, Mathematics (proficiency)\",\"Mean score calculated for the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.6_MDA.LEAR.TEST.9.PROF\",\"National assessment for learning outcomes in Moldova, grade 9, proficient competency (%)\",\"Students with proficient competency in the results of the national assessment carried out in the specific grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.6_NER.LEAR.TEST.CM2.FR.OPTIM\",\"National assessment for learning outcomes in Niger, CM2, French, optimal competency (%)\",\"Students with optimal competency in the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.6_SEN.PASEC.CM1.FR.MEAN\",\"PASEC in Senegal, CM1, French (mean score)\",\"Mean score calculated for the results of the Programme on the Analysis of Education Systems (PASEC) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PASEC is an international study created in 1991 by the Conference of Ministers of Education of Francophone countries (CONFEMEN) to assess educational attainments in primary school. For further information please refer to this web site: www.confemen.org.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.6_VNM.LEAR.TEST.5.MAT6\",\"National assessment for learning outcomes in Vietnam, grade 5, Mathematics - Level 1, scores in indicated level (%)\",\"Students in respective level in the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. Relative level means that student: Problem solving with periods of time, length, area and volume; embedded and dependent number patterns; develops formulas; recognizes 3D figures after rotation and reflection and embedded figures and right angles in irregular shapes; use data from graphs.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.6_VNM.LEAR.TEST.5.READ6\",\"National assessment for learning outcomes in Vietnam, grade 5, Reading - Level 6, scores in indicated level (%)\",\"Students in respective level in the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. Relative level means that student: Combines text with outside knowledge to infer various meanings, including hidden meanings. Identifies an author's purposes, attitudes, values, beliefs, motives, unstated assumptions and arguments.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.7_CIV.PASEC.PRI.FRE.MAT\",\"PASEC in Côte d'Ivoire, CP2 and CM1, French and Mathematics (mean score)\",\"Mean score calculated for the results of the Programme on the Analysis of Education Systems (PASEC) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PASEC is an international study created in 1991 by the Conference of Ministers of Education of Francophone countries (CONFEMEN) to assess educational attainments in primary school. For further information please refer to this web site: www.confemen.org.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.7_ETH.LEAR.TEST.12.ENG.OPT\",\"National assessment for learning outcomes in Ethiopia, grade 12, English, optimal competency (%)\",\"Optimal competency calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. Optimal competency are scores above 50%.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.7_GEO.PISA.9.MAT.MEAN\",\"PISA in Georgia, grade 9, Mathematics (mean score)\",\"Mean score calculated for the results of the Programme for International Student Assessment (PISA) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PISA is an international study that was launched by the OECD in 1997. It aims to evaluate education systems worldwide every three years by assessing 15-year-olds' competencies in the key subjects: reading, mathematics and science. For further details please refer to this web site: http://www.oecd.org/pisa/\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.7_GHA.LEAR.TEST.P3.MAT.ABOV.MIN\",\"National assessment for learning outcomes in Ghana, P3, Mathematics, students above minimal competency (%)\",\"Students with results above the minimal competency in the National Education Assessment (NEA) carried out in the specific subject and grade, using multiple choice items with 4 options, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. % of pupils achieving 35% of results or more in the test.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.7_GIN.PASEC.CP2.FR.MATH.MEAN.END\",\"PASEC in Guinea, CP2, French and Mathematics, mean score at the end of year (%)\",\"Mean score calculated at the end of the year for the results of the Programme on the Analysis of Education Systems (PASEC) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PASEC is an international study created in 1991 by the Conference of Ministers of Education of Francophone countries (CONFEMEN) to assess educational attainments in primary school. For further information please refer to this web site: www.confemen.org.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.7_KGZ.PISA.89.READ7\",\"PISA in Kyrgyzstan, grades 8-9, Reading - mathematics (mean score)\",\"Mean score calculated for the results of the Programme for International Student Assessment (PISA) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PISA is an international study that was launched by the OECD in 1997. It aims to evaluate education systems worldwide every three years by assessing 15-year-olds' competencies in the key subjects: reading, mathematics and science. For further details please refer to this web site: http://www.oecd.org/pisa/. Pupils who were 15 year old participated in this test, some of them were at grade 8 and some at grade 10.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.7_LAO.LEAR.TEST.5.WORLD.MEAN\",\"National assessment for learning outcomes in Laos, grade 5, world around us (mean score)\",\"Mean score calculated for the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.7_MDA.PIRLS.READ.4.MEAN\",\"PIRLS in Moldova, grade 4, Reading (mean score)\",\"Mean score calculated for the results of the Progress in International Reading Literacy Study (PIRLS) on the reading achievement of fourth grade students, as reported by the Local Education Group (LEG). It was first conduced in 2001 and then every five years by the TIMS & PIRLS International Study Center of Boston College's Lynch School of Education. For further details please refer to this web site: pirls.bc.edu.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.7_NER.LEAR.TEST.CP.FR.MIN\",\"National assessment for learning outcomes in Niger, CP, French, minimal competency (%)\",\"Students with minimal competency in the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.7_SEN.PASEC.MATH.MEAN\",\"PASEC in Senegal, Mathematics, (mean score)\",\"Mean score calculated for the results of the Programme on the Analysis of Education Systems (PASEC) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PASEC is an international study created in 1991 by the Conference of Ministers of Education of Francophone countries (CONFEMEN) to assess educational attainments in primary school. For further information please refer to this web site: www.confemen.org.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.8_ETH.LEAR.TEST.12.MAT.OPT\",\"National assessment for learning outcomes in Ethiopia, grade 12, Mathematics, optimal competency (%)\",\"Optimal competency calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. Optimal competency are scores above 50%.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.8_GEO.PISA.9.SCI.MEAN\",\"PISA in Georgia, grade 9, Science (mean score)\",\"Mean score calculated for the results of the Programme for International Student Assessment (PISA) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PISA is an international study that was launched by the OECD in 1997. It aims to evaluate education systems worldwide every three years by assessing 15-year-olds' competencies in the key subjects: reading, mathematics and science. For further details please refer to this web site: http://www.oecd.org/pisa/\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.8_GHA.LEAR.TEST.P6.MAT.ABOV.MIN\",\"National assessment for learning outcomes in Ghana, P6, Mathematics, students above minimal competency (%)\",\"Students with results above the minimal competency in the National Education Assessment (NEA) carried out in the specific subject and grade, using multiple choice items with 4 options, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. % of pupils achieving 35% of results or more in the test.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.8_GIN.PASEC.CM1.FR.MATH.MEAN.END\",\"PASEC in Guinea, CM1, French and Mathematics, mean score at the end of year (%)\",\"Mean score calculated at the end of the year for the results of the Programme on the Analysis of Education Systems (PASEC) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PASEC is an international study created in 1991 by the Conference of Ministers of Education of Francophone countries (CONFEMEN) to assess educational attainments in primary school. For further information please refer to this web site: www.confemen.org.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.8_KGZ.PISA.89.READ8\",\"PISA in Kyrgyzstan, grades 8-9, Reading - science (mean score)\",\"Mean score calculated for the results of the Programme for International Student Assessment (PISA) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PISA is an international study that was launched by the OECD in 1997. It aims to evaluate education systems worldwide every three years by assessing 15-year-olds' competencies in the key subjects: reading, mathematics and science. For further details please refer to this web site: http://www.oecd.org/pisa/. Pupils who were 15 year old participated in this test, some of them were at grade 8 and some at grade 10.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.8_LAO.LEAR.TEST.5.WORLD.MIN\",\"National assessment for learning outcomes in Laos, grade 5, world around us (minimal competency)\",\"Mean score calculated for the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.8_MDA.TIMSS.MAT.MEAN\",\"TIMSS in Moldova, Mathematics (mean score)\",\"Mean score calculated for the results of the Trends in International Mathematics and Science Study (TIMSS) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. It was first conduced in 1995 and then every four years by the TIMS & PIRLS International Study Center of Boston College's Lynch School of Education. For further details please refer to this web site: timss.bc.edu.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.8_NER.LEAR.TEST.CE2.FR.MIN\",\"National assessment for learning outcomes in Niger, CE2, French, minimal competency (%)\",\"Students with minimal competency in the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.8_SEN.PASEC.FR.MEAN\",\"PASEC in Senegal, French (mean score)\",\"Mean score calculated for the results of the Programme on the Analysis of Education Systems (PASEC) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PASEC is an international study created in 1991 by the Conference of Ministers of Education of Francophone countries (CONFEMEN) to assess educational attainments in primary school. For further information please refer to this web site: www.confemen.org.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.9_ETH.LEAR.TEST.12.BIO.OPT\",\"National assessment for learning outcomes in Ethiopia, grade 12, Biology, optimal competency (%)\",\"Optimal competency calculated for the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. Optimal competency are scores above 50%.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.9_GEO.LEAR.TEST.1.ENG.LOWEST\",\"National assessment for learning outcomes in Georgia, grade 1, English, students in lowest level (%)\",\"Students with lowest competency in the results of the national assessment carried out in the specific subject and grade, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.9_GHA.LEAR.TEST.P3.ENG.ABOV.PROF\",\"National assessment for learning outcomes in Ghana, P3, English, students above proficient levels (%)\",\"Students with results above the proficient competency in the National Education Assessment (NEA) carried out in the specific subject and grade, using multiple choice items with 4 options, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. % of pupils achieving 55% of results or more in the test.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.9_GIN.PASEC.CP2.FR.MATH.MEAN.BEG\",\"PASEC in Guinea, CP2, French and Mathematics, mean score at the end of year (%)\",\"Mean score calculated at the end of the year for the results of the Programme on the Analysis of Education Systems (PASEC) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. PASEC is an international study created in 1991 by the Conference of Ministers of Education of Francophone countries (CONFEMEN) to assess educational attainments in primary school. For further information please refer to this web site: www.confemen.org.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.9_LAO.LEAR.TEST.5.WORLD.PROF\",\"National assessment for learning outcomes in Laos, grade 5, world around us (proficiency)\",\"Mean score calculated for the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country. \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.9_MDA.TIMSS.SCIEN.MEAN\",\"TIMSS in Moldova, Science (mean score)\",\"Mean score calculated for the results of the Trends in International Mathematics and Science Study (TIMSS) in the specific subject and grade, as reported by the Local Education Group (LEG) of the evaluated country. It was first conduced in 1995 and then every four years by the TIMS & PIRLS International Study Center of Boston College's Lynch School of Education. For further details please refer to this web site: timss.bc.edu.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3.9_NER.LEAR.TEST.CM2.FR.MIN\",\"National assessment for learning outcomes in Niger, CM2, French, minimal competency (%)\",\"Students with minimal competency in the results of the national assessment carried out in the specific grade and subject, as reported by the Local Education Group (LEG). Country-specific definition and method are determined by the country.\",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. LEGs are typically led by the Ministry of Education and include development partners and other education stakeholders. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG.\"\n\"8.3_NATIONAL.ASSESSMENTS\",\"Realization of national assessments (yes=1, no=0, see notes if available)\",\"It indicates if national assessments for learning outcomes are administered for primary and lower secondary level and in which grade. Please refer to the subtopic Learning Outcomes and the specific country for details on the scores obtained in these assessments, as reported by the Local Education Group (LEG). \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG. \"\n\"8.4_ORAL.READING.TEST\",\"Administration of oral reading fluency tests (yes=1, no=0, see notes if available)\",\"It indicates if oral reading fluency tests are administered for primary and lower secondary level and in which grade. Please refer to the subtopic Learning Outcomes and the specific country for details on the scores obtained in these assessments, as reported by the Local Education Group (LEG). \",\"Global Partnership for Education\",\"Data were collected from national and other publicly available sources, and validated by the Local Education Group (LEG) in each country. Data were not processed or analyzed by the Global Partnership for Education. It is reported as it was presented in the original sources, or as it was communicated to us through the Coordinating Agency or Lead Donor of the LEG. \"\n\"9.0.Employee.All\",\"Employees (%)\",\"Share of the labor force (ages 18-65) that is a wage or salary worker\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.0.Employee.B40\",\"Employees-Bottom 40 Percent (%)\",\"Share of the labor force (ages 18-65) in the bottom 40 percent that is a wage or salary worker\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.0.Employee.T60\",\"Employees-Top 60 Percent (%)\",\"Share of the labor force (ages 18-65) in the top 60 percent that is a wage or salary worker\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.0.Employer.All\",\"Employers (%)\",\"Share of the labor force (ages 18-65) that is an employer\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.0.Employer.B40\",\"Employers-Bottom 40 Percent (%)\",\"Share of the labor force (ages 18-65) in the bottom 40 percent that is an employer\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.0.Employer.T60\",\"Employers-Top 60 Percent (%)\",\"Share of the labor force (ages 18-65) in the top 60 percent that is an employer\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.0.Labor.All\",\"Labor Force Participation Rate (%)\",\"Share of the population (ages 18-65) that is in the labor force\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.0.Labor.B40\",\"Labor Force Participation Rate (%)-Bottom 40 Percent\",\"Share of the population (ages 18-65) in the Bottom 40 percent that is in the labor force\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.0.Labor.T60\",\"Labor Force Participation Rate (%)-Top 60 Percent\",\"Share of the population (ages 18-65) in the Top 60 percent that is in the labor force\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.0.SelfEmp.All\",\"Self-Employed (%)\",\"Share of the labor force (ages 18-65) that is self-employed and not an employer\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.0.SelfEmp.B40\",\"Self-Employed-Bottom 40 Percent (%)\",\"Share of the labor force (ages 18-65) in the bottom 40 percent that is self-employed and not an employer\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.0.SelfEmp.T60\",\"Self-Employed-Top 60 Percent (%)\",\"Share of the labor force (ages 18-65) in the top 60 percent that is a self-employed and not an employer\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.0.Unemp.All\",\"Unemployed (%)\",\"Share of the labor force (ages 18-65) that is unemployed\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.0.Unemp.B40\",\"Unemployed-Bottom 40 Percent (%)\",\"Share of the labor force (ages 18-65) in the bottom 40 percent that is unemployed\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.0.Unemp.T60\",\"Unemployed-Top 60 Percent (%)\",\"Share of the labor force (ages 18-65) in the top 60 percent that is unemployed\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.0.Unpaid.All\",\"Unpaid Workers (%)\",\"Share of the labor force (ages 18-65) that works without pay\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.0.Unpaid.B40\",\"Unpaid Workers-Bottom 40 Percent (%)\",\"Share of the labor force (ages 18-65) in the bottom 40 percent that works without pay\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.0.Unpaid.T60\",\"Unpaid Workers-Top 60 Percent (%)\",\"Share of the labor force (ages 18-65) in the top 60 percent that works without pay\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.1.Employee.All\",\"Employees (%), Male\",\"Share of the male labor force (ages 18-65) that is a wage or salary worker\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.1.Employee.B40\",\"Employees-Bottom 40 Percent (%), Male\",\"Share of the male labor force (ages 18-65) in the bottom 40 percent that is a wage or salary worker\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.1.Employee.T60\",\"Employees-Top 60 Percent (%), Male\",\"Share of the male labor force (ages 18-65) in the top 60 percent that is a wage or salary worker\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.1.Employer.All\",\"Employers (%), Male\",\"Share of the male labor force (ages 18-65) that is an employer\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.1.Employer.B40\",\"Employers-Bottom 40 Percent (%), Male\",\"Share of the male labor force (ages 18-65) in the bottom 40 percent that is an employer\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.1.Employer.T60\",\"Employers-Top 60 Percent (%), Male\",\"Share of the male labor force (ages 18-65) in the top 60 percent that is an employer\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.1.Labor.All\",\"Labor Force Participation Rate (%), Male\",\"Share of the male population (ages 18-65) that is in the labor force\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.1.Labor.B40\",\"Labor Force Participation Rate (%)-Bottom 40 Percent, Male\",\"Share of the male population (ages 18-65) in the Bottom 40 percent that is in the labor force\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.1.Labor.T60\",\"Labor Force Participation Rate (%)-Top 60 Percent, Male\",\"Share of the male population (ages 18-65) in the Top 60 percent that is in the labor force\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.1.SelfEmp.All\",\"Self-Employed (%), Male\",\"Share of the male labor force (ages 18-65) that is self-employed and not an employer\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.1.SelfEmp.B40\",\"Self-Employed-Bottom 40 Percent (%), Male\",\"Share of the male labor force (ages 18-65) in the bottom 40 percent that is self-employed and not an employer\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.1.SelfEmp.T60\",\"Self-Employed-Top 60 Percent (%), Male\",\"Share of the male labor force (ages 18-65) in the top 60 percent that is a self-employed and not an employer\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.1.Unemp.All\",\"Unemployed (%), Male\",\"Share of the male labor force (ages 18-65) that is unemployed\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.1.Unemp.B40\",\"Unemployed-Bottom 40 Percent (%), Male\",\"Share of the male labor force (ages 18-65) in the bottom 40 percent that is unemployed\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.1.Unemp.T60\",\"Unemployed-Top 60 Percent (%), Male\",\"Share of the male labor force (ages 18-65) in the top 60 percent that is unemployed\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.1.Unpaid.All\",\"Unpaid Workers (%), Male\",\"Share of the male labor force (ages 18-65) that works without pay\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.1.Unpaid.B40\",\"Unpaid Workers-Bottom 40 Percent (%), Male\",\"Share of the male labor force (ages 18-65) in the bottom 40 percent that works without pay\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.1.Unpaid.T60\",\"Unpaid Workers-Top 60 Percent (%), Male\",\"Share of the male labor force (ages 18-65) in the top 60 percent that works without pay\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.1_AID.ALIGNMENT\",\"Alignment of aid to education (% of total international aid to education)\",\"Estimated international education aid reported on the government’s budget and expressed as a percentage of the disbursed education aid for the government sector. Government sector aid includes aid disbursed in the context of an agreement with administrations (ministries, departments, agencies or municipalities) authorized to receive revenue or undertake expenditures on behalf of central government. This is part of the 2011 Monitoring Exercise on Development Effectiveness in the Education Sector, an unprecedented picture of aid effectiveness in the education sector that can be used as the basis for in-country dialogue and debate going forward. This information looks at how education aid is delivered and managed by development partners and governments. \",\"Global Partnership for Education\",\"This indicator is part of the 2011 Monitoring Exercise on Development Effectiveness in the Education Sector. Data was collected in 2011 by the Global Partnership for Education (GPE) from Ministries of Education and development partners on selected Paris Declaration indicators, which were adapted for the education sector, and on other additional information. Three tools were used to collect this data: the Ministry of Education Questionnaire and the Donor questionnaire for quantitative data, and an Explanatory Note for qualitative data. The GPE Secretariat worked closely with Local Education Groups (LEGs ) to collect, process, produce, review and validate this information; and the Coordinating Agency or lead donor was tasked to coordinate the exercise with the LEG and to work with the Ministry of Education. Information refers to data from 2010. For further details in this exercise please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2.\"\n\"9.1_FINAL.PRIMARY.RATIO\",\"Final to primary energy ratio (%)\",\"Final to primary energy ratio (%): A high-level indicator that captures the overall energy efficiency in the supply sector obtained by dividing end-use final energy over primary energy.  High ratio indicates better supply sector efficiency.  \",\"Sustainable Energy for All\",\"World Bank and International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).  \"\n\"9.2.Employee.All\",\"Employees (%), Female\",\"Share of the female labor force (ages 18-65) that is a wage or salary worker\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.2.Employee.B40\",\"Employees-Bottom 40 Percent (%), Female\",\"Share of the female labor force (ages 18-65) in the bottom 40 percent that is a wage or salary worker\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.2.Employee.T60\",\"Employees-Top 60 Percent (%), Female\",\"Share of the female labor force (ages 18-65) in the top 60 percent that is a wage or salary worker\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.2.Employer.All\",\"Employers (%), Female\",\"Share of the female labor force (ages 18-65) that is an employer\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.2.Employer.B40\",\"Employers-Bottom 40 Percent (%), Female\",\"Share of the female labor force (ages 18-65) in the bottom 40 percent that is an employer\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.2.Employer.T60\",\"Employers-Top 60 Percent (%), Female\",\"Share of the female labor force (ages 18-65) in the top 60 percent that is an employer\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.2.Labor.All\",\"Labor Force Participation Rate (%), Female\",\"Share of the female population (ages 18-65) that is in the labor force\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.2.Labor.B40\",\"Labor Force Participation Rate (%)-Bottom 40 Percent, Female\",\"Share of the female population (ages 18-65) in the Bottom 40 percent that is in the labor force\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.2.Labor.T60\",\"Labor Force Participation Rate (%)-Top 60 Percent, Female\",\"Share of the female population (ages 18-65) in the Top 60 percent that is in the labor force\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.2.SelfEmp.All\",\"Self-Employed (%), Female\",\"Share of the female labor force (ages 18-65) that is self-employed and not an employer\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.2.SelfEmp.B40\",\"Self-Employed-Bottom 40 Percent (%), Female\",\"Share of the female labor force (ages 18-65) in the bottom 40 percent that is self-employed and not an employer\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.2.SelfEmp.T60\",\"Self-Employed-Top 60 Percent (%), Female\",\"Share of the female labor force (ages 18-65) in the top 60 percent that is a self-employed and not an employer\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.2.Unemp.All\",\"Unemployed (%), Female\",\"Share of the female labor force (ages 18-65) that is unemployed\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.2.Unemp.B40\",\"Unemployed-Bottom 40 Percent (%), Female\",\"Share of the female labor force (ages 18-65) in the bottom 40 percent that is unemployed\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.2.Unemp.T60\",\"Unemployed-Top 60 Percent (%), Female\",\"Share of the female labor force (ages 18-65) in the top 60 percent that is unemployed\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.2.Unpaid.All\",\"Unpaid Workers (%), Female\",\"Share of the female labor force (ages 18-65) that works without pay\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.2.Unpaid.B40\",\"Unpaid Workers-Bottom 40 Percent (%), Female\",\"Share of the female labor force (ages 18-65) in the bottom 40 percent that works without pay\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.2.Unpaid.T60\",\"Unpaid Workers-Top 60 Percent (%), Female\",\"Share of the female labor force (ages 18-65) in the top 60 percent that works without pay\",\"LAC Equity Lab\",\"LAC Equity Lab tabulations of SEDLAC (CEDLAS and the World Bank).\"\n\"9.2_COORDINATED.TECH.COOP\",\"Coordinated technical cooperation (% of total cooperation to education)\",\"Technical cooperation from development partners provided through coordinated programs and expressed as a percentage of the total disbursed technical cooperation. Coordinated technical cooperation is consistent with the capacity development priorities of the developing recipient government. This is part of the 2011 Monitoring Exercise on Development Effectiveness in the Education Sector, an unprecedented picture of aid effectiveness in the education sector that can be used as the basis for in-country dialogue and debate going forward. This information looks at how education aid is delivered and managed by development partners and governments. \",\"Global Partnership for Education\",\"This indicator is part of the 2011 Monitoring Exercise on Development Effectiveness in the Education Sector. Data was collected in 2011 by the Global Partnership for Education (GPE) from Ministries of Education and development partners on selected Paris Declaration indicators, which were adapted for the education sector, and on other additional information. Three tools were used to collect this data: the Ministry of Education Questionnaire and the Donor questionnaire for quantitative data, and an Explanatory Note for qualitative data. The GPE Secretariat worked closely with Local Education Groups (LEGs ) to collect, process, produce, review and validate this information; and the Coordinating Agency or lead donor was tasked to coordinate the exercise with the LEG and to work with the Ministry of Education. Information refers to data from 2010. For further details in this exercise please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2.\"\n\"9.3_PFM.COUNTRY.SYSTEMS\",\"Use of public financial management country systems (% of total international aid to education)\",\"International education aid using national public financial management (PFM) systems and expressed as a percentage of the disbursed education aid for the government sector. PFM systems include budge execution procedures, financial reporting procedures and auditing procedures. Donors use national budget execution procedures when the funds they provide are managed according to the national budgeting procedures established in the general legislation and implemented by government. The use of national financial reporting means that donors do not impose additional requirements on governments for financial reporting. The use of national auditing procedures means that donors rely on the audit opinions issued by the country's supreme audit institution and on the government's normal financial reports/statements. Government sector aid includes aid disbursed in the context of an agreement with administrations (ministries, departments, agencies or municipalities) authorized to receive revenue or undertake expenditures on behalf of central government. This is part of the 2011 Monitoring Exercise on Development Effectiveness in the Education Sector, an unprecedented picture of aid effectiveness in the education sector that can be used as the basis for in-country dialogue and debate going forward. This information looks at how education aid is delivered and managed by development partners and governments. \",\"Global Partnership for Education\",\"This indicator is part of the 2011 Monitoring Exercise on Development Effectiveness in the Education Sector. Data was collected in 2011 by the Global Partnership for Education (GPE) from Ministries of Education and development partners on selected Paris Declaration indicators, which were adapted for the education sector, and on other additional information. Three tools were used to collect this data: the Ministry of Education Questionnaire and the Donor questionnaire for quantitative data, and an Explanatory Note for qualitative data. The GPE Secretariat worked closely with Local Education Groups (LEGs ) to collect, process, produce, review and validate this information; and the Coordinating Agency or lead donor was tasked to coordinate the exercise with the LEG and to work with the Ministry of Education. Information refers to data from 2010. For further details in this exercise please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2.\"\n\"9.4_PROCUREMENT.COUNTRY.SYSTEMS\",\"Use of procurement country systems (% of total international aid to education)\",\"International education aid using national procurement systems and procedures expressed as a percentage of the disbursed education aid for the government sector. Donors use national procurement systems when the funds they provide for the implementation of projects and programs are managed according to the national procurement procedures as they were established in the general legislation and implemented by government. Government sector aid includes aid disbursed in the context of an agreement with administrations (ministries, departments, agencies or municipalities) authorized to receive revenue or undertake expenditures on behalf of central government. This is part of the 2011 Monitoring Exercise on Development Effectiveness in the Education Sector, an unprecedented picture of aid effectiveness in the education sector that can be used as the basis for in-country dialogue and debate going forward. This information looks at how education aid is delivered and managed by development partners and governments. \",\"Global Partnership for Education\",\"This indicator is part of the 2011 Monitoring Exercise on Development Effectiveness in the Education Sector. Data was collected in 2011 by the Global Partnership for Education (GPE) from Ministries of Education and development partners on selected Paris Declaration indicators, which were adapted for the education sector, and on other additional information. Three tools were used to collect this data: the Ministry of Education Questionnaire and the Donor questionnaire for quantitative data, and an Explanatory Note for qualitative data. The GPE Secretariat worked closely with Local Education Groups (LEGs ) to collect, process, produce, review and validate this information; and the Coordinating Agency or lead donor was tasked to coordinate the exercise with the LEG and to work with the Ministry of Education. Information refers to data from 2010. For further details in this exercise please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2.\"\n\"9.5_PIU\",\"Number of parallel implementation units, education sector\",\"Number of parallel implementation units (PIUs) in the education sector, as reported by the development donors. A project implementation unit (PIU) is parallel when it is created and operates outside existing country institutional and administrative structures at the behest of a donor. This is part of the 2011 Monitoring Exercise on Development Effectiveness in the Education Sector, an unprecedented picture of aid effectiveness in the education sector that can be used as the basis for in-country dialogue and debate going forward. This information looks at how education aid is delivered and managed by development partners and governments. \",\"Global Partnership for Education\",\"This indicator is part of the 2011 Monitoring Exercise on Development Effectiveness in the Education Sector. Data was collected in 2011 by the Global Partnership for Education (GPE) from Ministries of Education and development partners on selected Paris Declaration indicators, which were adapted for the education sector, and on other additional information. Three tools were used to collect this data: the Ministry of Education Questionnaire and the Donor questionnaire for quantitative data, and an Explanatory Note for qualitative data. The GPE Secretariat worked closely with Local Education Groups (LEGs ) to collect, process, produce, review and validate this information; and the Coordinating Agency or lead donor was tasked to coordinate the exercise with the LEG and to work with the Ministry of Education. Information refers to data from 2010. For further details in this exercise please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2.\"\n\"9.6_PBA\",\"Aid provided through program based approaches (% of international aid to education)\",\"International education aid provided in the context of programme-based approaches (PBAs) and expressed as a percentage of the total disbursed education aid. This indicator is measured by the donors’ use of (general or sector) budget support and/or joint financing mechanisms such as pool funding mechanisms. PBA is a way of engaging in development co-operation based on the principles of coordinated support for a locally owned programme of development, such as a national education plan. Programme-based approaches share the following features: Leadership by the host country; a single comprehensive programme and budget framework; a formalized process for donor coordination and harmonization of donor procedures; efforts to increase the use of country systems. This is part of the 2011 Monitoring Exercise on Development Effectiveness in the Education Sector, an unprecedented picture of aid effectiveness in the education sector that can be used as the basis for in-country dialogue and debate going forward. This information looks at how education aid is delivered and managed by development partners and governments. \",\"Global Partnership for Education\",\"This indicator is part of the 2011 Monitoring Exercise on Development Effectiveness in the Education Sector. Data was collected in 2011 by the Global Partnership for Education (GPE) from Ministries of Education and development partners on selected Paris Declaration indicators, which were adapted for the education sector, and on other additional information. Three tools were used to collect this data: the Ministry of Education Questionnaire and the Donor questionnaire for quantitative data, and an Explanatory Note for qualitative data. The GPE Secretariat worked closely with Local Education Groups (LEGs ) to collect, process, produce, review and validate this information; and the Coordinating Agency or lead donor was tasked to coordinate the exercise with the LEG and to work with the Ministry of Education. Information refers to data from 2010. For further details in this exercise please refer to the following web site: http://www.globalpartnership.org/our-work/areas-of-focus/aid-effectiveness/2011-monitoring-exercise-on-aid-effectiveness-2.\"\n\"A1\",\"01.Number of Exporters\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A10i\",\"26.Export Value per Incumbent: Mean\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A10ii\",\"27.Export Value per Incumbent: Median\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A10iii\",\"28.Export Value per Incumbent: StDev\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A10iv\",\"29.Export Value per Incumbent: First Quartile\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A10v\",\"30.Export Value per Incumbent: Third Quartile\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A11i\",\"31.Growth of Incumbents: Mean\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A11ii\",\"32.Growth of Incumbents: Median\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A11iii\",\"33.Growth of Incumbents: StDev\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A11iv\",\"34.Growth of Incumbents: First Quartile\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A11v\",\"35.Growth of Incumbents: Third Quartile\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A12i\",\"36.Growth of Survivors: Mean\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A12ii\",\"37.Growth of Survivors: Median\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A12iii\",\"38.Growth of Survivors: StDev\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A12iv\",\"39.Growth of Survivors: First Quartile\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A12v\",\"40.Growth of Survivors: Third Quartile\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A2\",\"02.Number of Entrants\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A3\",\"03.Number of Exiters\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A4\",\"04.Number of Survivors\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A5\",\"05.Number of Incumbents\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A6i\",\"06.Export Value per Exporter: Mean\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A6ii\",\"07.Export Value per Exporter: Median\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A6iii\",\"08.Export Value per Exporter: StDev\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A6iv\",\"09.Export Value per Exporter: First Quartile\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A6v\",\"10.Export Value per Exporter: Third Quartile\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A7i\",\"11.Export Value per Entrant: Mean\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A7ii\",\"12.Export Value per Entrant: Median\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A7iii\",\"13.Export Value per Entrant: StDev\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A7iv\",\"14.Export Value per Entrant: First Quartile\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A7v\",\"15.Export Value per Entrant: Third Quartile\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A8i\",\"16.Export Value per Exiter: Mean\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A8ii\",\"17.Export Value per Exiter: Median\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A8iii\",\"18.Export Value per Exiter: StDev\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A8iv\",\"19.Export Value per Exiter: First Quartile\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A8v\",\"20.Export Value per Exiter: Third Quartile\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A9i\",\"21.Export Value per Survivor: Mean\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A9ii\",\"22.Export Value per Survivor: Median\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A9iii\",\"23.Export Value per Survivor: StDev\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A9iv\",\"24.Export Value per Survivor: First Quartile\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"A9v\",\"25.Export Value per Survivor: Third Quartile\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"AED.PRIM.MATH\",\"Adjusted Primary Math Score\",\"A test score that has been standardized over time and across various international and regional mathematics assessments taken at the primary school level. It is calculated by creating a ratio between U.S. primary math scores on international tests (such as PISA and TIMSS) to primary math scores on the U.S. National Assessment of Educational Progress (NAEP) approximated to the nearest 5-year time step from 1965-2010. All raw primary math international scores are approximated to the nearest 5-year interval, averaged, and then multiplied by this ratio. This makes these adjusted scores comparable over time, across countries and across international tests. Primary math test scores from countries which only participate in regional assessments are included in the above transformation after being multiplied by a ratio comparing average primary math scores in a given regional test and primary math scores on an international assessment for all doubloon countries - countries which participate in the same regional assessment and an international test. This makes adjusted primary math test scores comparable over across time, over countries and over all assessments.\",\"Education Statistics\",\"Angrist, N., Patrinos, H. and  Schlotter, M.. The World Bank (2013)\"\n\"AED.PRIM.MEAN\",\"Average Adjusted Primary Test Score.\",\"A test score that has been standardized over time, across subjects, and across various international and regional assessments taken at the primary school level. It is calculated by creating a ratio between U.S. primary scores averaged across subjects on all international tests (such as PISA and TIMSS) to average primary scores averaged across subjects on the U.S. National Assessment of Educational Progress (NAEP) approximated to the nearest 5-year time step from 1965-2010. All raw international primary scores are averaged across subjects and approximated to the nearest 5-year interval, averaged across tests, and then multiplied by this ratio. This makes these adjusted scores comparable over time, across countries and across international tests. Primary test scores from countries which only participate in regional assessments are included in the above transformation after being averaged across subjects and then multiplied by a ratio comparing average primary scores across subjects in a given regional test and average primary scores across subjects on an international assessment for all doubloon countries - countries which participate in the same regional assessment and an international test. This makes adjusted primary test scores comparable over across time, across subjects, over countries and over all assessments.\",\"Education Statistics\",\"Angrist, N., Patrinos, H. and  Schlotter, M.. The World Bank (2013)\"\n\"AED.PRIM.READ\",\"Adjusted Primary Reading Score\",\"A test score that has been standardized over time and across various international and regional reading assessments taken at the primary school level. It is calculated by creating a ratio between U.S. primary reading scores on international tests (such as PISA and TIMSS) to primary reading scores on the U.S. National Assessment of Educational Progress (NAEP) approximated to the nearest 5-year time step from 1965-2010. All raw international primary reading scores are approximated to the nearest 5-year interval, averaged, and then multiplied by this ratio. This makes these adjusted scores comparable over time, across countries and across international tests. Primary reading test scores from countries which only participate in regional assessments are included in the above transformation after being multiplied by a ratio comparing average primary reading scores in a given regional test and primary reading scores on an international assessment for all doubloon countries - countries which participate in the same regional assessment and an international test. This makes adjusted primary reading test scores comparable over across time, over countries and over all assessments.\",\"Education Statistics\",\"Angrist, N., Patrinos, H. and  Schlotter, M.. The World Bank (2013)\"\n\"AED.PRIM.SCNC\",\"Adjusted Primary Science Score\",\"A test score that has been standardized over time and across various international and regional science assessments taken at the primary school level. It is calculated by creating a ratio between U.S. primary science scores on international tests (such as PISA and TIMSS) to primary science scores on the U.S. National Assessment of Educational Progress (NAEP) approximated to the nearest 5-year time step from 1965-2010. All raw primary science international scores are approximated to the nearest 5-year interval, averaged, and then multiplied by this ratio. This makes these adjusted scores comparable over time, across countries and across international tests. Primary science test scores from countries which only participate in regional assessments are included in the above transformation after being multiplied by a ratio comparing average primary science scores in a given regional test and primary science scores on an international assessment for all doubloon countries - countries which participate in the same regional assessment and an international test. This makes adjusted primary science test scores comparable over across time, over countries and over all assessments.\",\"Education Statistics\",\"Angrist, N., Patrinos, H. and  Schlotter, M.. The World Bank (2013)\"\n\"AED.PRSC.MEAN\",\"Average Adjusted Test Score\",\"A test score that has been standardized over time, across subjects, across schooling levels, and across various international and regional assessments. It is calculated by creating a ratio between U.S. scores averaged across subjects and over schooling level on all international tests (such as PISA and TIMSS) to average scores averaged across subjects and over schooling levels on the U.S. National Assessment of Educational Progress (NAEP) approximated to the nearest 5-year time step from 1965-2010. All raw international scores are averaged across subjects and over school levels and approximated to the nearest 5-year interval, averaged across tests, and then multiplied by this ratio. This makes these adjusted scores comparable over time, across countries and across international tests. Test scores from countries which only participate in regional assessments are included in the above transformation after being averaged across subjects and over schooling levels and then multiplied by a ratio comparing average scores across subjects and schooling levels in a given regional test and average scores across subjects and schooling levels on an international assessment for all doubloon countries - countries which participate in the same regional assessment and an international test. This makes adjusted test scores comparable over time, across subjects, across schooling levels, over countries and over all assessments.\",\"Education Statistics\",\"Angrist, N., Patrinos, H. and  Schlotter, M.. The World Bank (2013)\"\n\"AED.SECO.MATH\",\"Adjusted Secondary Math Score\",\"A test score that has been standardized over time and across various international and regional mathematics assessments taken at the secondary school level. It is calculated by creating a ratio between U.S. secondary math scores on international tests (such as PISA and TIMSS) to secondary math scores on the U.S. National Assessment of Educational Progress (NAEP) approximated to the nearest 5-year time step from 1965-2010. All raw secondary math international scores are approximated to the nearest 5-year interval, averaged, and then multiplied by this ratio. This makes these adjusted scores comparable over time, across countries and across international tests. Secondary math test scores from countries which only participate in regional assessments are included in the above transformation after being multiplied by a ratio comparing average secondary math scores in a given regional test and secondary math scores on an international assessment for all doubloon countries - countries which participate in the same regional assessment and an international test. This makes adjusted secondary math test scores comparable over across time, over countries and over all assessments.\",\"Education Statistics\",\"Angrist, N., Patrinos, H. and  Schlotter, M.. The World Bank (2013)\"\n\"AED.SECO.MEAN\",\"Average Adjusted Secondary Test Score\",\"A test score that has been standardized over time, across subjects, and across various international and regional assessments taken at the secondary school level. It is calculated by creating a ratio between U.S. secondary scores averaged across subjects on all international tests (such as PISA and TIMSS) to average secondary scores averaged across subjects on the U.S. National Assessment of Educational Progress (NAEP) approximated to the nearest 5-year time step from 1965-2010. All raw international secondary scores are averaged across subjects and approximated to the nearest 5-year interval, averaged across tests, and then multiplied by this ratio. This makes these adjusted scores comparable over time, across countries and across international tests. Secondary test scores from countries which only participate in regional assessments are included in the above transformation after being averaged across subjects and then multiplied by a ratio comparing average secondary scores across subjects in a given regional test and average secondary scores across subjects on an international assessment for all doubloon countries - countries which participate in the same regional assessment and an international test. This makes adjusted secondary test scores comparable over time, across subjects, over countries and over all assessments.\",\"Education Statistics\",\"Angrist, N., Patrinos, H. and  Schlotter, M.. The World Bank (2013)\"\n\"AED.SECO.READ\",\"Adjusted Secondary Reading Score\",\"A test score that has been standardized over time and across various international and regional reading assessments taken at the secondary school level. It is calculated by creating a ratio between U.S. secondary reading scores on international tests (such as PISA and TIMSS) to secondary reading scores on the U.S. National Assessment of Educational Progress (NAEP) approximated to the nearest 5-year time step from 1965-2010. All raw secondary reading international scores are approximated to the nearest 5-year interval, averaged, and then multiplied by this ratio. This makes these adjusted scores comparable over time, across countries and across international tests. Secondary reading test scores from countries which only participate in regional assessments are included in the above transformation after being multiplied by a ratio comparing average secondary readings scores in a given regional test and secondary reading scores on an international assessment for all doubloon countries - countries which participate in the same regional assessment and an international test. This makes adjusted secondary reading test scores comparable over across time, over countries and over all assessments.\",\"Education Statistics\",\"Angrist, N., Patrinos, H. and  Schlotter, M.. The World Bank (2013)\"\n\"AED.SECO.SCNC\",\"Adjusted Secondary Science Score\",\"A test score that has been standardized over time and across various international and regional science assessments taken at the secondary school level. It is calculated by creating a ratio between U.S. secondary science scores on international tests (such as PISA and TIMSS) to secondary science scores on the U.S. National Assessment of Educational Progress (NAEP) approximated to the nearest 5-year time step from 1965-2010. All raw secondary science international scores are approximated to the nearest 5-year interval, averaged, and then multiplied by this ratio. This makes these adjusted scores comparable over time, across countries and across international tests. Secondary science test scores from countries which only participate in regional assessments are included in the above transformation after being multiplied by a ratio comparing average secondary science scores in a given regional test and secondary science scores on an international assessment for all doubloon countries - countries which participate in the same regional assessment and an international test. This makes adjusted secondary science test scores comparable over across time, over countries and over all assessments.\",\"Education Statistics\",\"Angrist, N., Patrinos, H. and  Schlotter, M.. The World Bank (2013)\"\n\"AG.AGR.TRAC.NO\",\"Agricultural machinery, tractors\",\"Agricultural machinery refers to the number of wheel and crawler tractors (excluding garden tractors) in use in agriculture at the end of the calendar year specified or during the first quarter of the following year.\",\"World Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.AID.CREL.MT\",\"Cereal food aid deliveries (FAO, tonnes)\",\"Food aid shipments represent a transfer of food commodities from donor to recipient countries on a total-grant basis. Processed and blended cereals are converted into their grain equivalent by applying the conversion factors included in the Rule of Procedures under the 1999 Food Aid Convention to facilitate comparisons between deliveries of different commodities.  For cereals, the period refers to July/June, beginning in the year shown. \",\"Africa Development Indicators\",\"World Food Programme, electronic files and web site (http://www.wfp.org/fais/)\"\n\"AG.AID.FOOD.MT\",\"Total food (cereals and non-cereal) food aid deliveries (FAO, tonnes)\",\"Food aid represent a transfer of food commodities from donor to recipient countries on a total-grant basis or on highly concessional terms.  \",\"Africa Development Indicators\",\"World Food Programme, electronic files and web site (http://www.wfp.org/fais/)\"\n\"AG.AID.NCREL.MT\",\"Non-cereal food aid deliveries (FAO, tonnes)\",\"Non-cereal commodities or commodity groups include skimmed milk powder, vegetable oil, butter oil, other dairy products, meat, fish, pulses, sugar, dried fruit and other foodstuffs. From 1977 to 1986, because of the non-availability of data, non-cereal food aid is composed of four commodities only: skimmed milk powder, vegetable oil, butter oil and other dairy products.\",\"Africa Development Indicators\",\"World Food Programme, electronic files and web site (http://www.wfp.org/fais/)\"\n\"AG.CON.FERT.PT.ZS\",\"Fertilizer consumption (% of fertilizer production)\",\"Fertilizer consumption measures the quantity of plant nutrients used per unit of arable land. Fertilizer products cover nitrogenous, potash, and phosphate fertilizers (including ground rock phosphate). Traditional nutrients--animal and plant manures--are not included. For the purpose of data dissemination, FAO has adopted the concept of a calendar year (January to December). Some countries compile fertilizer data on a calendar year basis, while others are on a split-year basis.\",\"World Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.CON.FERT.ZS\",\"Fertilizer consumption (kilograms per hectare of arable land)\",\"Fertilizer consumption measures the quantity of plant nutrients used per unit of arable land. Fertilizer products cover nitrogenous, potash, and phosphate fertilizers (including ground rock phosphate). Traditional nutrients--animal and plant manures--are not included. For the purpose of data dissemination, FAO has adopted the concept of a calendar year (January to December). Some countries compile fertilizer data on a calendar year basis, while others are on a split-year basis. Arable land includes land defined by the FAO as land under temporary crops (double-cropped areas are counted once), temporary meadows for mowing or for pasture, land under market or kitchen gardens, and land temporarily fallow. Land abandoned as a result of shifting cultivation is excluded.\",\"World Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.CRP.BLY.CD\",\"Producer Price for Barley (per tonne, current US$)\",\"Producer prices are prices received by farmers for primary agricultural products as defined in the SNA 93.  The producer's price is the amount receivable by the producer from the purchaser for a unit of a good or service produced as output minus any VAT, \",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.CRP.BLY.CN\",\"Producer Price for Barley (per tonne, current LCU)\",\"Producer prices are prices received by farmers for primary agricultural products as defined in the SNA 93.  The producer's price is the amount receivable by the producer from the purchaser for a unit of a good or service produced as output minus any VAT, \",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.CRP.FNO.CD\",\"Producer Price for Fonio (per tonne, current US$)\",\"Producer prices are prices received by farmers for primary agricultural products as defined in the SNA 93.  The producer's price is the amount receivable by the producer from the purchaser for a unit of a good or service produced as output minus any VAT, \",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.CRP.FNO.CN\",\"Producer Price for Fonio (per tonne, current LCU)\",\"Producer prices are prices received by farmers for primary agricultural products as defined in the SNA 93.  The producer's price is the amount receivable by the producer from the purchaser for a unit of a good or service produced as output minus any VAT, \",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.CRP.MLT.CD\",\"Producer Price for Millet (per tonne, current US$)\",\"Producer prices are prices received by farmers for primary agricultural products as defined in the SNA 93.  The producer's price is the amount receivable by the producer from the purchaser for a unit of a good or service produced as output minus any VAT, \",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.CRP.MLT.CN\",\"Producer Price for Millet (per tonne, current LCU)\",\"Producer prices are prices received by farmers for primary agricultural products as defined in the SNA 93.  The producer's price is the amount receivable by the producer from the purchaser for a unit of a good or service produced as output minus any VAT, \",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.CRP.MZE.CD\",\"Producer Price for Maize (per tonne, current US$)\",\"Producer prices are prices received by farmers for primary agricultural products as defined in the SNA 93.  The producer's price is the amount receivable by the producer from the purchaser for a unit of a good or service produced as output minus any VAT, or similar deductible tax, invoiced to the purchaser. It excludes any transport charges invoiced separately by the producer.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.CRP.MZE.CN\",\"Producer Price for Maize (per tonne, current LCU)\",\"Producer prices are prices received by farmers for primary agricultural products as defined in the SNA 93.  The producer's price is the amount receivable by the producer from the purchaser for a unit of a good or service produced as output minus any VAT, or similar deductible tax, invoiced to the purchaser. It excludes any transport charges invoiced separately by the producer.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.CRP.RICE.CD\",\"Producer Price for Rice, paddy (per tonne, current US$)\",\"Producer prices are prices received by farmers for primary agricultural products as defined in the SNA 93.  The producer's price is the amount receivable by the producer from the purchaser for a unit of a good or service produced as output minus any VAT, or similar deductible tax, invoiced to the purchaser. It excludes any transport charges invoiced separately by the producer.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.CRP.RICE.CN\",\"Producer Price for Rice, paddy (per tonne, current LCU)\",\"Producer prices are prices received by farmers for primary agricultural products as defined in the SNA 93.  The producer's price is the amount receivable by the producer from the purchaser for a unit of a good or service produced as output minus any VAT, or similar deductible tax, invoiced to the purchaser. It excludes any transport charges invoiced separately by the producer.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.CRP.SGM.CD\",\"Producer Price for Sorghum (per tonne, current US$)\",\"Producer prices are prices received by farmers for primary agricultural products as defined in the SNA 93.  The producer's price is the amount receivable by the producer from the purchaser for a unit of a good or service produced as output minus any VAT, or similar deductible tax, invoiced to the purchaser. It excludes any transport charges invoiced separately by the producer.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.CRP.SGM.CN\",\"Producer Price for Sorghum (per tonne, current LCU)\",\"Producer prices are prices received by farmers for primary agricultural products as defined in the SNA 93.  The producer's price is the amount receivable by the producer from the purchaser for a unit of a good or service produced as output minus any VAT, or similar deductible tax, invoiced to the purchaser. It excludes any transport charges invoiced separately by the producer.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.CRP.WHT.CD\",\"Producer Price for Wheat (per tonne, current US$)\",\"Producer prices are prices received by farmers for primary agricultural products as defined in the SNA 93.  The producer's price is the amount receivable by the producer from the purchaser for a unit of a good or service produced as output minus any VAT, or similar deductible tax, invoiced to the purchaser. It excludes any transport charges invoiced separately by the producer.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.CRP.WHT.CN\",\"Producer Price for Wheat (per tonne, current LCU)\",\"Producer prices are prices received by farmers for primary agricultural products as defined in the SNA 93.  The producer's price is the amount receivable by the producer from the purchaser for a unit of a good or service produced as output minus any VAT, or similar deductible tax, invoiced to the purchaser. It excludes any transport charges invoiced separately by the producer.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.FRST.PROD.CHAR\",\"Wood charcoal production quantity (tonnes)\",\"Wood carbonized by partial combustion or application of heat from an external source. It is used as a fuel or for other uses. Figures are given in weight (MT). \",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.FRST.PROD.WOOD\",\"Wood fuel production quantity (CUM, solid volume units)\",\"Wood fuel refers to all roundwood used as fuel for purposes such as cooking, heating, or power production. It includes wood harvested from main stems, branches and other parts of trees. It also includes wood intended for charcoal production.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.LND.AGRI.HA\",\"Agricultural land (hectares)\",\"Agricultural land refers to the share of land area that is arable, under permanent crops, and under permanent pastures. Arable land includes land defined by the FAO as land under temporary crops (double-cropped areas are counted once), temporary meadows for mowing or for pasture, land under market or kitchen gardens, and land temporarily fallow. Land abandoned as a result of shifting cultivation is excluded. Land under permanent crops is land cultivated with crops that occupy the land for long periods and need not be replanted after each harvest, such as cocoa, coffee, and rubber. This category includes land under flowering shrubs, fruit trees, nut trees, and vines, but excludes land under trees grown for wood or timber. Permanent pasture is land used for five or more years for forage, including natural and cultivated crops.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.LND.AGRI.K2\",\"Agricultural land (sq. km)\",\"Agricultural land refers to the share of land area that is arable, under permanent crops, and under permanent pastures. Arable land includes land defined by the FAO as land under temporary crops (double-cropped areas are counted once), temporary meadows for mowing or for pasture, land under market or kitchen gardens, and land temporarily fallow. Land abandoned as a result of shifting cultivation is excluded. Land under permanent crops is land cultivated with crops that occupy the land for long periods and need not be replanted after each harvest, such as cocoa, coffee, and rubber. This category includes land under flowering shrubs, fruit trees, nut trees, and vines, but excludes land under trees grown for wood or timber. Permanent pasture is land used for five or more years for forage, including natural and cultivated crops.\",\"World Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.LND.AGRI.ZS\",\"Agricultural land (% of land area)\",\"Agricultural land refers to the share of land area that is arable, under permanent crops, and under permanent pastures. Arable land includes land defined by the FAO as land under temporary crops (double-cropped areas are counted once), temporary meadows for mowing or for pasture, land under market or kitchen gardens, and land temporarily fallow. Land abandoned as a result of shifting cultivation is excluded. Land under permanent crops is land cultivated with crops that occupy the land for long periods and need not be replanted after each harvest, such as cocoa, coffee, and rubber. This category includes land under flowering shrubs, fruit trees, nut trees, and vines, but excludes land under trees grown for wood or timber. Permanent pasture is land used for five or more years for forage, including natural and cultivated crops.\",\"World Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.LND.ARBL.HA\",\"Arable land (hectares)\",\"Arable land (in hectares) includes land defined by the FAO as land under temporary crops (double-cropped areas are counted once), temporary meadows for mowing or for pasture, land under market or kitchen gardens, and land temporarily fallow. Land abandoned as a result of shifting cultivation is excluded.\",\"World Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.LND.ARBL.HA.PC\",\"Arable land (hectares per person)\",\"Arable land (hectares per person) includes land defined by the FAO as land under temporary crops (double-cropped areas are counted once), temporary meadows for mowing or for pasture, land under market or kitchen gardens, and land temporarily fallow. Land abandoned as a result of shifting cultivation is excluded.\",\"World Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.LND.ARBL.ZS\",\"Arable land (% of land area)\",\"Arable land includes land defined by the FAO as land under temporary crops (double-cropped areas are counted once), temporary meadows for mowing or for pasture, land under market or kitchen gardens, and land temporarily fallow. Land abandoned as a result of shifting cultivation is excluded.\",\"World Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.LND.BLY.HA\",\"Land under barley production (hectares)\",\"Land under barley production refers to harvested area, although some countries report only sown or cultivated area. Production data on relate to crop harvested for dry grain only. Crop harvested for hay or harvested green for food, feed, or silage and those used for grazing are excluded.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.LND.CERE.ZS\",\"Cereal cropland (% of land area)\",\"Land under cereal production refers to harvested area, although some countries report only sown or cultivated area. Cereals include wheat, rice, maize, barley, oats, rye, millet, sorghum, buckwheat, and mixed grains. Production data on cereals relate to crops harvested for dry grain only. Cereal crops harvested for hay or harvested green for food, feed, or silage and those used for grazing are excluded. \",\"Africa Development Indicators\",\"Food and Agriculture Organization, Production Yearbook and data files. \"\n\"AG.LND.CREL.HA\",\"Land under cereal production (hectares)\",\"Land under cereal production refers to harvested area, although some countries report only sown or cultivated area. Cereals include wheat, rice, maize, barley, oats, rye, millet, sorghum, buckwheat, and mixed grains. Production data on cereals relate to crops harvested for dry grain only. Cereal crops harvested for hay or harvested green for food, feed, or silage and those used for grazing are excluded.\",\"World Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.LND.CROP.HA\",\"Permanent cropland (hectares)\",\"Permanent cropland is land cultivated with crops that occupy the land for long periods and need not be replanted after each harvest, such as cocoa, coffee, and rubber. This category includes land under flowering shrubs, fruit trees, nut trees, and vines, but excludes land under trees grown for wood or timber.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.LND.CROP.ZS\",\"Permanent cropland (% of land area)\",\"Permanent cropland is land cultivated with crops that occupy the land for long periods and need not be replanted after each harvest, such as cocoa, coffee, and rubber. This category includes land under flowering shrubs, fruit trees, nut trees, and vines, but excludes land under trees grown for wood or timber.\",\"World Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.LND.CRPA.HA\",\"Arable and permanent cropland (hectares)\",\"This land category is the sum of areas under “Arable land” and \\\"Permanent crops”.   Arable land includes land defined by the FAO as land under temporary crops (double-cropped areas are counted once), temporary meadows for mowing or for pasture, land under\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.LND.EL5M.RU.K2\",\"Rural land area where elevation is below 5 meters (sq. km)\",\"Rural land area below 5m is the total rural land area in square kilometers where the elevation is 5 meters or less.\",\"World Development Indicators\",\"Center for International Earth Science Information Network (CIESIN)/Columbia University. 2013. Urban-Rural Population and Land Area Estimates Version 2. Palisades, NY: NASA Socioeconomic Data and Applications Center (SEDAC). http://sedac.ciesin.columbia.edu/data/set/lecz-urban-rural-population-land-area-estimates-v2.\"\n\"AG.LND.EL5M.RU.ZS\",\"Rural land area where elevation is below 5 meters (% of total land area)\",\"Rural land area below 5m is the percentage of total land where the rural land elevation is 5 meters or less.\",\"World Development Indicators\",\"Center for International Earth Science Information Network (CIESIN)/Columbia University. 2013. Urban-Rural Population and Land Area Estimates Version 2. Palisades, NY: NASA Socioeconomic Data and Applications Center (SEDAC). http://sedac.ciesin.columbia.edu/data/set/lecz-urban-rural-population-land-area-estimates-v2.\"\n\"AG.LND.EL5M.UR.K2\",\"Urban land area where elevation is below 5 meters (sq. km)\",\"Urban land area below 5m is the total urban land area in square kilometers where the elevation is 5 meters or less.\",\"World Development Indicators\",\"Center for International Earth Science Information Network (CIESIN)/Columbia University. 2013. Urban-Rural Population and Land Area Estimates Version 2. Palisades, NY: NASA Socioeconomic Data and Applications Center (SEDAC). http://sedac.ciesin.columbia.edu/data/set/lecz-urban-rural-population-land-area-estimates-v2.\"\n\"AG.LND.EL5M.UR.ZS\",\"Urban land area where elevation is below 5 meters (% of total land area)\",\"Urban land area below 5m is the percentage of total land where the urban land elevation is 5 meters or less.\",\"World Development Indicators\",\"Center for International Earth Science Information Network (CIESIN)/Columbia University. 2013. Urban-Rural Population and Land Area Estimates Version 2. Palisades, NY: NASA Socioeconomic Data and Applications Center (SEDAC). http://sedac.ciesin.columbia.edu/data/set/lecz-urban-rural-population-land-area-estimates-v2.\"\n\"AG.LND.EL5M.ZS\",\"Land area where elevation is below 5 meters (% of total land area)\",\"Land area below 5m is the percentage of total land where the elevation is 5 meters or less.\",\"World Development Indicators\",\"Center for International Earth Science Information Network (CIESIN)/Columbia University. 2013. Urban-Rural Population and Land Area Estimates Version 2. Palisades, NY: NASA Socioeconomic Data and Applications Center (SEDAC). http://sedac.ciesin.columbia.edu/data/set/lecz-urban-rural-population-land-area-estimates-v2.\"\n\"AG.LND.FNO.HA\",\"Land under fonio production (hectares)\",\"Land under fonio production refers to harvested area, although some countries report only sown or cultivated area. Production data on relate to crop harvested for dry grain only. Crop harvested for hay or harvested green for food, feed, or silage and those used for grazing are excluded.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.LND.FRST.HA\",\"Forest area (hectares)\",\"Forest area is land under natural or planted stands of trees of at least 5 meters in situ, whether productive or not, and excludes tree stands in agricultural production systems (for example, in fruit plantations and agroforestry systems) and trees in urban parks and gardens.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.LND.FRST.K2\",\"Forest area (sq. km)\",\"Forest area is land under natural or planted stands of trees of at least 5 meters in situ, whether productive or not, and excludes tree stands in agricultural production systems (for example, in fruit plantations and agroforestry systems) and trees in urban parks and gardens.\",\"World Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.LND.FRST.ZS\",\"Forest area (% of land area)\",\"Forest area is land under natural or planted stands of trees of at least 5 meters in situ, whether productive or not, and excludes tree stands in agricultural production systems (for example, in fruit plantations and agroforestry systems) and trees in urban parks and gardens.\",\"World Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.LND.IRIG.AG.ZS\",\"Agricultural irrigated land (% of total agricultural land)\",\"Agricultural irrigated land refers to agricultural areas purposely provided with water, including land irrigated by controlled flooding.\",\"World Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.LND.IRIG.HA.AG\",\"Agricultural area irrigated (ha)\",\"Agricultural area irrigated, part of the full or partial control irrigated agricultural land which is actually irrigated in a given year. Often, part of the equipped area is not irrigated for various reasons, such as lack of water, absence of farmers, land degradation, damage, organisational problems etc. \",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.LND.IRIG.PO.HA\",\"Land area equipped for irrigation (hectares)\",\"Area equipped to provide water (via irrigation) to the crops. It includes areas equipped for full and partial control irrigation, equipped lowland areas, pastures, and areas equipped for spate irrigation. Data are expressed in 1000 hectares. \",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.LND.MLT.HA\",\"Land under millet production (hectares)\",\"Land under millet production refers to harvested area, although some countries report only sown or cultivated area. Production data on relate to crop harvested for dry grain only. Crop harvested for hay or harvested green for food, feed, or silage and those used for grazing are excluded.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.LND.MZE.HA\",\"Land under maize production (hectares)\",\"Land under maize production refers to harvested area, although some countries report only sown or cultivated area. Production data on relate to crop harvested for dry grain only. Crop harvested for hay or harvested green for food, feed, or silage and those used for grazing are excluded.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.LND.PRCP.MM\",\"Average precipitation in depth (mm per year)\",\"Average precipitation is the long-term average in depth (over space and time) of annual precipitation in the country. Precipitation is defined as any kind of water that falls from clouds as a liquid or a solid.\",\"World Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.LND.RICE.HA\",\"Land under rice production (hectares)\",\"Land under rice production refers to harvested area, although some countries report only sown or cultivated area. Production data on relate to crop harvested for dry grain only. Crop harvested for hay or harvested green for food, feed, or silage and those used for grazing are excluded.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.LND.SGM.HA\",\"Land under sorghum production (hectares)\",\"Land under sorghum production refers to harvested area, although some countries report only sown or cultivated area. Production data on relate to crop harvested for dry grain only. Crop harvested for hay or harvested green for food, feed, or silage and those used for grazing are excluded.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.LND.TOTL.HA\",\"Land area (hectares)\",\"Land area is a country's total area, excluding area under inland water bodies, national claims to continental shelf, and exclusive economic zones. In most cases the definition of inland water bodies includes major rivers and lakes.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.LND.TOTL.K2\",\"Land area (sq. km)\",\"Land area is a country's total area, excluding area under inland water bodies, national claims to continental shelf, and exclusive economic zones. In most cases the definition of inland water bodies includes major rivers and lakes.\",\"World Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.LND.TOTL.RU.K2\",\"Rural land area (sq. km)\",\"Rural land area in square kilometers, derived from urban extent grids which distinguish urban and rural areas based on a combination of population counts (persons), settlement points, and the presence of Nighttime Lights. Areas are defined as urban where contiguous lighted cells from the Nighttime Lights or approximated urban extents based on buffered settlement points for which the total population is greater than 5,000 persons.\",\"World Development Indicators\",\"Center for International Earth Science Information Network (CIESIN)/Columbia University. 2013. Urban-Rural Population and Land Area Estimates Version 2. Palisades, NY: NASA Socioeconomic Data and Applications Center (SEDAC). http://sedac.ciesin.columbia.edu/data/set/lecz-urban-rural-population-land-area-estimates-v2.\"\n\"AG.LND.TOTL.UR.K2\",\"Urban land area (sq. km)\",\"Urban land area in square kilometers, based on a combination of population counts (persons), settlement points, and the presence of Nighttime Lights. Areas are defined as urban where contiguous lighted cells from the Nighttime Lights or approximated urban extents based on buffered settlement points for which the total population is greater than 5,000 persons.\",\"World Development Indicators\",\"Center for International Earth Science Information Network (CIESIN)/Columbia University. 2013. Urban-Rural Population and Land Area Estimates Version 2. Palisades, NY: NASA Socioeconomic Data and Applications Center (SEDAC). http://sedac.ciesin.columbia.edu/data/set/lecz-urban-rural-population-land-area-estimates-v2.\"\n\"AG.LND.TRAC.ZS\",\"Agricultural machinery, tractors per 100 sq. km of arable land\",\"Agricultural machinery refers to the number of wheel and crawler tractors (excluding garden tractors) in use in agriculture at the end of the calendar year specified or during the first quarter of the following year. Arable land includes land defined by the FAO as land under temporary crops (double-cropped areas are counted once), temporary meadows for mowing or for pasture, land under market or kitchen gardens, and land temporarily fallow. Land abandoned as a result of shifting cultivation is excluded.\",\"World Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.LND.WHT.HA\",\"Land under wheat production (hectares)\",\"Land under wheat production refers to harvested area, although some countries report only sown or cultivated area. Production data on relate to crop harvested for dry grain only. Crop harvested for hay or harvested green for food, feed, or silage and those used for grazing are excluded.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.PRD.AGRI.XD\",\"Agriculture production index (1999-2001 = 100)\",\"The FAO indices of agricultural production show the relative level of the aggregate volume of agricultural production for each year in comparison with the base period 2004-2006. They are based on the sum of price-weighted quantities of different agricultural commodities produced after deductions of quantities used as seed and feed weighted in a similar manner. The resulting aggregate represents, therefore, disposable production for any use except as seed and feed.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.PRD.BLY.MT\",\"Barley production (metric tons)\",\"Production data on barley relate to crop harvested for dry grain only. Crop harvested for hay or harvested green for food, feed, or silage and those used for grazing are excluded.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.PRD.CREL.MT\",\"Cereal production (metric tons)\",\"Production data on cereals relate to crops harvested for dry grain only. Cereal crops harvested for hay or harvested green for food, feed, or silage and those used for grazing are excluded.\",\"World Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.PRD.CREL.XD\",\"Cereal production index (1999-2001 = 100)\",\"Cereal production index covers cereals that are considered edible and that contain nutrients.  The FAO indices of agricultural production show the relative level of the aggregate volume of agricultural production for each year in comparison with the base period 2004-2006. They are based on the sum of price-weighted quantities of different agricultural commodities produced after deductions of quantities used as seed and feed weighted in a similar manner. The resulting aggregate represents, therefore, disposable production for any use except as seed and feed.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.PRD.CROP.XD\",\"Crop production index (2004-2006 = 100)\",\"Crop production index shows agricultural production for each year relative to the base period 2004-2006. It includes all crops except fodder crops. Regional and income group aggregates for the FAO's production indexes are calculated from the underlying values in international dollars, normalized to the base period 2004-2006.\",\"World Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.PRD.FNO.MT\",\"Fonio production (metric tons)\",\"Production data on fonio relate to crop harvested for dry grain only. Crop harvested for hay or harvested green for food, feed, or silage and those used for grazing are excluded.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.PRD.FOOD.XD\",\"Food production index (2004-2006 = 100)\",\"Food production index covers food crops that are considered edible and that contain nutrients. Coffee and tea are excluded because, although edible, they have no nutritive value.\",\"World Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.PRD.GAGRI.XD\",\"Agriculture production index (gross, 1999-2001 = 100)\",\"The FAO indices of agricultural production show the relative level of the aggregate volume of agricultural production for each year in comparison with the base period 2004-2006. They are based on the sum of price-weighted quantities of different agricultural commodities produced after deductions of quantities used as seed and feed weighted in a similar manner. The resulting aggregate represents, therefore, disposable production for any use except as seed and feed.  All the indices at the country, regional and world levels are calculated by the Laspeyres formula. Production quantities of each commodity are weighted by 2004-2006 average international commodity prices and summed for each year.  To obtain the index, the aggregate for a given year is divided by the average aggregate for the base period 2004-2006.  Since the FAO indices are based on the concept of agriculture as a single enterprise, amounts of seed and feed are subtracted from the production data to avoid double counting them, once in the production data and once with the crops or livestock produced from them.  Deductions for seed (in the case of eggs, for hatching) and for livestock and poultry feed apply to both domestically produced and imported commodities.  They cover only primary agricultural products destined to animal feed (e.g. maize, potatoes, milk, etc.). Processed and semi-processed feed items such as bran, oilcakes, meals and molasses have been completely excluded from the calculations at all stages.   should be noted that when calculating indices of agricultural, food and nonfood production, all intermediate primary inputs of agricultural origin are deducted. However, for indices of any other commodity group, only inputs originating from within the same group are deducted; thus, only seed is removed from the group “crops” and from all crop subgroups, such as cereals, oil crops, etc.; and both feed and seed originating from within the livestock sector (e.g. milk feed, hatching eggs) are removed from the group “livestock products”. For the main two livestock subgroups, namely, meat and milk, only feed originating from the respective subgroup is removed.  The  ”international commodity prices” are used in order to avoid the use of exchange rates for obtaining continental and world aggregates, and also to improve and facilitate international comparative analysis of productivity at the national level. These” international prices”, expressed in so-called \\\"\\\"international dollars”, are derived using a Geary-Khamis formula for the agricultural sector. This method assigns a single “price” to each commodity. For example, one metric ton of wheat has the same price regardless of the country where it was produced. The currency unit in which the prices are expressed has no influence on the indices published.  The commodities covered in the computation of indices of agricultural production are all crops and livestock products originating in each country.  Practically all products are covered, with the main exception of fodder crops. The category of food production includes commodities that are considered edible and that contain nutrients.  Accordingly, coffee and tea are excluded along with inedible commodities because, although edible, they have practically no nutritive value.  Aggregates are the sum of available data.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.PRD.GCREL.XD\",\"Cereal production index (gross, 1999-2001 = 100)\",\"Cereal production index covers cereals that are considered edible and that contain nutrients.  The FAO indices of agricultural production show the relative level of the aggregate volume of agricultural production for each year in comparison with the base period 2004-2006. They are based on the sum of price-weighted quantities of different agricultural commodities produced after deductions of quantities used as seed and feed weighted in a similar manner. The resulting aggregate represents, therefore, disposable production for any use except as seed and feed.  All the indices at the country, regional and world levels are calculated by the Laspeyres formula. Production quantities of each commodity are weighted by 2004-2006 average international commodity prices and summed for each year.  To obtain the index, the aggregate for a given year is divided by the average aggregate for the base period 2004-2006.  Since the FAO indices are based on the concept of agriculture as a single enterprise, amounts of seed and feed are subtracted from the production data to avoid double counting them, once in the production data and once with the crops or livestock produced from them.  Deductions for seed (in the case of eggs, for hatching) and for livestock and poultry feed apply to both domestically produced and imported commodities.  They cover only primary agricultural products destined to animal feed (e.g. maize, potatoes, milk, etc.). Processed and semi-processed feed items such as bran, oilcakes, meals and molasses have been completely excluded from the calculations at all stages.   should be noted that when calculating indices of agricultural, food and nonfood production, all intermediate primary inputs of agricultural origin are deducted. However, for indices of any other commodity group, only inputs originating from within the same group are deducted; thus, only seed is removed from the group “crops” and from all crop subgroups, such as cereals, oil crops, etc.; and both feed and seed originating from within the livestock sector (e.g. milk feed, hatching eggs) are removed from the group “livestock products”. For the main two livestock subgroups, namely, meat and milk, only feed originating from the respective subgroup is removed.  The  ”international commodity prices” are used in order to avoid the use of exchange rates for obtaining continental and world aggregates, and also to improve and facilitate international comparative analysis of productivity at the national level. These” international prices”, expressed in so-called \\\"\\\"international dollars”, are derived using a Geary-Khamis formula for the agricultural sector. This method assigns a single “price” to each commodity. For example, one metric ton of wheat has the same price regardless of the country where it was produced. The currency unit in which the prices are expressed has no influence on the indices published.  The commodities covered in the computation of indices of agricultural production are all crops and livestock products originating in each country.  Practically all products are covered, with the main exception of fodder crops. The category of food production includes commodities that are considered edible and that contain nutrients.  Accordingly, coffee and tea are excluded along with inedible commodities because, although edible, they have practically no nutritive value.  Aggregates are the sum of available data.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.PRD.GCROP.XD\",\"Crop production index (gross, 1999-2001 = 100)\",\"Crop production index shows agricultural production for each year relative to the base period 2004-2006. It includes all crops except fodder crops. Regional and income group aggregates for the FAO's production indexes are calculated from the underlying values in international dollars, normalized to the base period 2004-2006.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.PRD.GFOOD.XD\",\"Food production index (gross, 1999-2001 = 100)\",\"Food production index covers food crops that are considered edible and that contain nutrients. Coffee and tea are excluded because, although edible, they have no nutritive value.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.PRD.GLVSK.XD\",\"Livestock production index (gross, 1999-2001 = 100)\",\"Livestock production index includes meat and milk from all sources, dairy products such as cheese, and eggs, honey, raw silk, wool, and hides and skins.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.PRD.GNFOOD.XD\",\"Non-food production index (gross, 1999-2001 = 100)\",\"Non-food production index covers non-food items.  All the indices at the country, regional and world levels are calculated by the Laspeyres formula. Production quantities of each commodity are weighted by 2004-2006 average international commodity prices and summed for each year. To obtain the index, the aggregate for a given year is divided by the average aggregate for the base period 2004-2006.  It should be noted that when calculating indices of agricultural, food and nonfood production, all intermediate primary inputs of agricultural origin are deducted. However, for indices of any other commodity group, only inputs originating from within the same group are deducted; thus, only seed is removed from the group “crops” and from all crop subgroups, such as cereals, oil crops, etc.; and both feed and seed originating from within the livestock sector (e.g. milk feed, hatching eggs) are removed from the group “livestock products”. For the main two livestock subgroups, namely, meat and milk, only feed originating from the respective subgroup is removed.  The \\\"\\\"international commodity prices” are used in order to avoid the use of exchange rates for obtaining continental and world aggregates, and also to improve and facilitate international comparative analysis of productivity at the national level. These” international prices”, expressed in so-called \\\"\\\"international dollars”, are derived using a Geary-Khamis formula for the agricultural sector. This method assigns a single “price” to each commodity. For example, one metric ton of wheat has the same price regardless of the country where it was produced. The currency unit in which the prices are expressed has no influence on the indices published.  The indices are calculated from production data presented on a calendar year basis.  Aggregates are the sum of available data.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, Production Yearbook and data files.\"\n\"AG.PRD.LVSK.XD\",\"Livestock production index (2004-2006 = 100)\",\"Livestock production index includes meat and milk from all sources, dairy products such as cheese, and eggs, honey, raw silk, wool, and hides and skins.\",\"World Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.PRD.MLT.MT\",\"Millet production (metric tons)\",\"Production data on millet relate to crop harvested for dry grain only. Crop harvested for hay or harvested green for food, feed, or silage and those used for grazing are excluded.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.PRD.MZE.MT\",\"Maize production (metric tons)\",\"Production data on maize relate to crop harvested for dry grain only. Crop harvested for hay or harvested green for food, feed, or silage and those used for grazing are excluded.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.PRD.NFOOD.XD\",\"Gross non-food production index (1999-2001 = 100)\",\"Non-food production index covers non-food items.  The FAO indices of agricultural production show the relative level of the aggregate volume of agricultural production for each year in comparison with the base period 2004-2006. They are based on the sum of price-weighted quantities of different agricultural commodities produced after deductions of quantities used as seed and feed weighted in a similar manner. The resulting aggregate represents, therefore, disposable production for any use except as seed and feed.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, Production Yearbook and data files.\"\n\"AG.PRD.RICE.MT\",\"Rice production (metric tons)\",\"Production data on rice relate to crop harvested for dry grain only. Crop harvested for hay or harvested green for food, feed, or silage and those used for grazing are excluded.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.PRD.SGM.MT\",\"Sorghum production (metric tons)\",\"Production data on sorghum relate to crop harvested for dry grain only. Crop harvested for hay or harvested green for food, feed, or silage and those used for grazing are excluded.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.PRD.WHT.MT\",\"Wheat production (metric tons)\",\"Production data on wheat relate to crop harvested for dry grain only. Crop harvested for hay or harvested green for food, feed, or silage and those used for grazing are excluded.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.SED.BLY.MT\",\"Barley seed quantity (FAO, metric tonnes)\",\"Data include the amounts of the commodity in question set aside for sowing or planting (or generally for reproduction purposes, e.g. sugar cane planted, potatoes for seed, eggs for hatching and fish for bait, whether domestically produced or imported) during the reference period. Account is taken of double or successive sowing or planting whenever it occurs. The data of seed include also, when it is the case, the quantities necessary for sowing or planting the area relating to crops harvested green for fodder or for food.(e.g. green peas, green beans, maize for forage) Data for seed element are stored in tonnes (t). Whenever official data were not available, seed figures have been estimated either as a percentage of supply (e.g. eggs for hatching) or by multiplying a seed rate with the area under the crop of the subsequent year.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.SED.CREL.MT\",\"Cereal seed quantity (FAO, metric tonnes)\",\"Data include the amounts of the commodity in question set aside for sowing or planting (or generally for reproduction purposes, e.g. sugar cane planted, potatoes for seed, eggs for hatching and fish for bait, whether domestically produced or imported) during the reference period. Account is taken of double or successive sowing or planting whenever it occurs. The data of seed include also, when it is the case, the quantities necessary for sowing or planting the area relating to crops harvested green for fodder or for food.(e.g. green peas, green beans, maize for forage) Data for seed element are stored in tonnes (t). Whenever official data were not available, seed figures have been estimated either as a percentage of supply (e.g. eggs for hatching) or by multiplying a seed rate with the area under the crop of the subsequent year.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.SED.FNO.MT\",\"Fonio seed quantity (FAO, metric tonnes)\",\"Data include the amounts of the commodity in question set aside for sowing or planting (or generally for reproduction purposes, e.g. sugar cane planted, potatoes for seed, eggs for hatching and fish for bait, whether domestically produced or imported) during the reference period. Account is taken of double or successive sowing or planting whenever it occurs. The data of seed include also, when it is the case, the quantities necessary for sowing or planting the area relating to crops harvested green for fodder or for food.(e.g. green peas, green beans, maize for forage) Data for seed element are stored in tonnes (t). Whenever official data were not available, seed figures have been estimated either as a percentage of supply (e.g. eggs for hatching) or by multiplying a seed rate with the area under the crop of the subsequent year.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.SED.MLT.MT\",\"Millet seed quantity (FAO, metric tonnes)\",\"Data include the amounts of the commodity in question set aside for sowing or planting (or generally for reproduction purposes, e.g. sugar cane planted, potatoes for seed, eggs for hatching and fish for bait, whether domestically produced or imported) during the reference period. Account is taken of double or successive sowing or planting whenever it occurs. The data of seed include also, when it is the case, the quantities necessary for sowing or planting the area relating to crops harvested green for fodder or for food.(e.g. green peas, green beans, maize for forage) Data for seed element are stored in tonnes (t). Whenever official data were not available, seed figures have been estimated either as a percentage of supply (e.g. eggs for hatching) or by multiplying a seed rate with the area under the crop of the subsequent year.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.SED.MZE.MT\",\"Maize seed quantity (FAO, metric tonnes)\",\"Data include the amounts of the commodity in question set aside for sowing or planting (or generally for reproduction purposes, e.g. sugar cane planted, potatoes for seed, eggs for hatching and fish for bait, whether domestically produced or imported) during the reference period. Account is taken of double or successive sowing or planting whenever it occurs. The data of seed include also, when it is the case, the quantities necessary for sowing or planting the area relating to crops harvested green for fodder or for food.(e.g. green peas, green beans, maize for forage) Data for seed element are stored in tonnes (t). Whenever official data were not available, seed figures have been estimated either as a percentage of supply (e.g. eggs for hatching) or by multiplying a seed rate with the area under the crop of the subsequent year.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.SED.RICE.MT\",\"Rice seed quantity (FAO, metric tonnes)\",\"Data include the amounts of the commodity in question set aside for sowing or planting (or generally for reproduction purposes, e.g. sugar cane planted, potatoes for seed, eggs for hatching and fish for bait, whether domestically produced or imported) during the reference period. Account is taken of double or successive sowing or planting whenever it occurs. The data of seed include also, when it is the case, the quantities necessary for sowing or planting the area relating to crops harvested green for fodder or for food.(e.g. green peas, green beans, maize for forage) Data for seed element are stored in tonnes (t). Whenever official data were not available, seed figures have been estimated either as a percentage of supply (e.g. eggs for hatching) or by multiplying a seed rate with the area under the crop of the subsequent year.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.SED.SGM.MT\",\"Sorghum seed quantity (FAO, metric tonnes)\",\"Data include the amounts of the commodity in question set aside for sowing or planting (or generally for reproduction purposes, e.g. sugar cane planted, potatoes for seed, eggs for hatching and fish for bait, whether domestically produced or imported) during the reference period. Account is taken of double or successive sowing or planting whenever it occurs. The data of seed include also, when it is the case, the quantities necessary for sowing or planting the area relating to crops harvested green for fodder or for food.(e.g. green peas, green beans, maize for forage) Data for seed element are stored in tonnes (t). Whenever official data were not available, seed figures have been estimated either as a percentage of supply (e.g. eggs for hatching) or by multiplying a seed rate with the area under the crop of the subsequent year.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.SED.WHT.MT\",\"Wheat seed quantity (FAO, metric tonnes)\",\"Data include the amounts of the commodity in question set aside for sowing or planting (or generally for reproduction purposes, e.g. sugar cane planted, potatoes for seed, eggs for hatching and fish for bait, whether domestically produced or imported) during the reference period. Account is taken of double or successive sowing or planting whenever it occurs. The data of seed include also, when it is the case, the quantities necessary for sowing or planting the area relating to crops harvested green for fodder or for food.(e.g. green peas, green beans, maize for forage) Data for seed element are stored in tonnes (t). Whenever official data were not available, seed figures have been estimated either as a percentage of supply (e.g. eggs for hatching) or by multiplying a seed rate with the area under the crop of the subsequent year.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.SRF.TOTL.HA\",\"Surface area (ha)\",\"Surface area is a country's total area, including areas under inland bodies of water and some coastal waterways.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.SRF.TOTL.K2\",\"Surface area (sq. km)\",\"Surface area is a country's total area, including areas under inland bodies of water and some coastal waterways.\",\"World Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.YLD.BLY.KG\",\"Barley yield (kg per hectare)\",\"Barley yield, measured as kilograms per hectare of harvested land. Production data on  relate to crops harvested for dry grain only. Crop harvested for hay or harvested green for food, feed, or silage and those used for grazing are excluded.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.YLD.CREL.KG\",\"Cereal yield (kg per hectare)\",\"Cereal yield, measured as kilograms per hectare of harvested land, includes wheat, rice, maize, barley, oats, rye, millet, sorghum, buckwheat, and mixed grains. Production data on cereals relate to crops harvested for dry grain only. Cereal crops harvested for hay or harvested green for food, feed, or silage and those used for grazing are excluded. The FAO allocates production data to the calendar year in which the bulk of the harvest took place. Most of a crop harvested near the end of a year will be used in the following year.\",\"World Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.YLD.FNO.KG\",\"Fonio yield (kg per hectare)\",\"Fonio yield, measured as kilograms per hectare of harvested land. Production data on  relate to crops harvested for dry grain only. Crop harvested for hay or harvested green for food, feed, or silage and those used for grazing are excluded.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.YLD.MLT.KG\",\"Millet yield (kg per hectare)\",\"Millet yield, measured as kilograms per hectare of harvested land. Production data on  relate to crops harvested for dry grain only. Crop harvested for hay or harvested green for food, feed, or silage and those used for grazing are excluded.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.YLD.MZE.KG\",\"Maize yield (kg per hectare)\",\"Maize yield, measured as kilograms per hectare of harvested land. Production data on  relate to crops harvested for dry grain only. Crop harvested for hay or harvested green for food, feed, or silage and those used for grazing are excluded.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.YLD.RICE.KG\",\"Rice yield (kg per hectare)\",\"Rice yield, measured as kilograms per hectare of harvested land. Production data on  relate to crops harvested for dry grain only. Crop harvested for hay or harvested green for food, feed, or silage and those used for grazing are excluded.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.YLD.SGM.KG\",\"Sorghum yield (kg per hectare)\",\"Sorghum yield, measured as kilograms per hectare of harvested land. Production data on  relate to crops harvested for dry grain only. Crop harvested for hay or harvested green for food, feed, or silage and those used for grazing are excluded.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"AG.YLD.WHT.KG\",\"Wheat yield (kg per hectare)\",\"Wheat yield, measured as kilograms per hectare of harvested land. Production data on  relate to crops harvested for dry grain only. Crop harvested for hay or harvested green for food, feed, or silage and those used for grazing are excluded.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"ALUMINUM\",\"Aluminum, $/mt, current$\",\"Aluminum (LME) London Metal Exchange, unalloyed primary ingots, high grade, minimum 99.7% purity, settlement price beginning 2005; previously cash price\",\"Global Economic Monitor (GEM) Commodities\",\"Platts Metals Week, Thomson Reuters Datastream; World Bank.\"\n\"B1\",\"41.Herfindahl-Hirschman Index\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"B2i\",\"42.Share of top 1% Exporters in TEV (Total Export Value)\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"B2ii\",\"43.Share of top 5% Exporters in TEV (Total Export Value)\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"B2iii\",\"44.Share of top 25% Exporters in TEV (Total Export Value)\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"B3i\",\"45.Number of HS6 Products per Exporter: Mean\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"B3ii\",\"46.Number of HS6 Products per Exporter: Median\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"B3iii\",\"47.Number of HS6 Products per Exporter: StDev\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"B4i\",\"48.Number of Destinations per Exporter: Mean\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"B4ii\",\"49.Number of Destinations per Exporter: Median\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"B4iii\",\"50.Number of Destinations per Exporter: StDev\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"B5i\",\"51.Number of Exporters per HS6 Product: Mean\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"B5ii\",\"52.Number of Exporters per HS6 Product: Median\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"B5iii\",\"53.Number of Exporters per HS6 Product: StDev\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"B6i\",\"54.Number of Exporters per Destination: Mean\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"B6ii\",\"55.Number of Exporters per Destination: Median\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"B6iii\",\"56.Number of Exporters per Destination: StDev\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"BANANA_EU\",\"Bananas, EU, $/mt, current$\",\"Bananas (Central & South America), major brands, c.i.f. Hamburg\",\"Global Economic Monitor (GEM) Commodities\",\"Sopisco News; Union of Banana-Exporting Countries (UPEB); Food and Agricultural Organization; US Bureau of Labor Statistics; World Bank.\"\n\"BANANA_US\",\"Bananas, US, $/mt, current$\",\"Bananas (Central & South America), major brands, US import price, free on truck (f.o.t.) US Gulf ports\",\"Global Economic Monitor (GEM) Commodities\",\"Sopisco News; Union of Banana-Exporting Countries (UPEB); Food and Agricultural Organization; US Bureau of Labor Statistics; World Bank.\"\n\"BAR.NOED.1519.FE.ZS\",\"Barro-Lee: Percentage of female population age 15-19 with no education\",\"Percentage of female population age 15-19 with no education\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.NOED.1519.ZS\",\"Barro-Lee: Percentage of population age 15-19 with no education\",\"Percentage of population age 15-19 with no education\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.NOED.15UP.FE.ZS\",\"Barro-Lee: Percentage of female population age 15+ with no education\",\"Percentage of female population age 15+ with no education\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.NOED.15UP.ZS\",\"Barro-Lee: Percentage of population age 15+ with no education\",\"Percentage of population age 15+ with no education\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.NOED.2024.FE.ZS\",\"Barro-Lee: Percentage of female population age 20-24 with no education\",\"Percentage of female population age 20-24 with no education\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.NOED.2024.ZS\",\"Barro-Lee: Percentage of population age 20-24 with no education\",\"Percentage of population age 20-24 with no education\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.NOED.2529.FE.ZS\",\"Barro-Lee: Percentage of female population age 25-29 with no education\",\"Percentage of female population age 25-29 with no education\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.NOED.2529.ZS\",\"Barro-Lee: Percentage of population age 25-29 with no education\",\"Percentage of population age 25-29 with no education\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.NOED.25UP.FE.ZS\",\"Barro-Lee: Percentage of female population age 25+ with no education\",\"Percentage of female population age 25+ with no education\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.NOED.25UP.ZS\",\"Barro-Lee: Percentage of population age 25+ with no education\",\"Percentage of population age 25+ with no education\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.NOED.3034.FE.ZS\",\"Barro-Lee: Percentage of female population age 30-34 with no education\",\"Percentage of female population age 30-34 with no education\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.NOED.3034.ZS\",\"Barro-Lee: Percentage of population age 30-34 with no education\",\"Percentage of population age 30-34 with no education\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.NOED.3539.FE.ZS\",\"Barro-Lee: Percentage of female population age 35-39 with no education\",\"Percentage of female population age 35-39 with no education\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.NOED.3539.ZS\",\"Barro-Lee: Percentage of population age 35-39 with no education\",\"Percentage of population age 35-39 with no education\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.NOED.4044.FE.ZS\",\"Barro-Lee: Percentage of female population age 40-44 with no education\",\"Percentage of female population age 40-44 with no education\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.NOED.4044.ZS\",\"Barro-Lee: Percentage of population age 40-44 with no education\",\"Percentage of population age 40-44 with no education\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.NOED.4549.FE.ZS\",\"Barro-Lee: Percentage of female population age 45-49 with no education\",\"Percentage of female population age 45-49 with no education\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.NOED.4549.ZS\",\"Barro-Lee: Percentage of population age 45-49 with no education\",\"Percentage of population age 45-49 with no education\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.NOED.5054.FE.ZS\",\"Barro-Lee: Percentage of female population age 50-54 with no education\",\"Percentage of female population age 50-54 with no education\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.NOED.5054.ZS\",\"Barro-Lee: Percentage of population age 50-54 with no education\",\"Percentage of population age 50-54 with no education\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.NOED.5559.FE.ZS\",\"Barro-Lee: Percentage of female population age 55-59 with no education\",\"Percentage of female population age 55-59 with no education\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.NOED.5559.ZS\",\"Barro-Lee: Percentage of population age 55-59 with no education\",\"Percentage of population age 55-59 with no education\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.NOED.6064.FE.ZS\",\"Barro-Lee: Percentage of female population age 60-64 with no education\",\"Percentage of female population age 60-64 with no education\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.NOED.6064.ZS\",\"Barro-Lee: Percentage of population age 60-64 with no education\",\"Percentage of population age 60-64 with no education\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.NOED.6569.FE.ZS\",\"Barro-Lee: Percentage of female population age 65-69 with no education\",\"Percentage of female population age 65-69 with no education\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.NOED.6569.ZS\",\"Barro-Lee: Percentage of population age 65-69 with no education\",\"Percentage of population age 65-69 with no education\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.NOED.7074.FE.ZS\",\"Barro-Lee: Percentage of female population age 70-74 with no education\",\"Percentage of female population age 70-74 with no education\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.NOED.7074.ZS\",\"Barro-Lee: Percentage of population age 70-74 with no education\",\"Percentage of population age 70-74 with no education\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.NOED.75UP.FE.ZS\",\"Barro-Lee: Percentage of female population age 75+ with no education\",\"Percentage of female population age 75+ with no education\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.NOED.75UP.ZS\",\"Barro-Lee: Percentage of population age 75+ with no education\",\"Percentage of population age 75+ with no education\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.POP.1519\",\"Barro-Lee: Population in thousands, age 15-19, total\",\"Population in thousands, age 15-19, total is the total population of 15-19 year olds in thousands estimated by Barro-Lee.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.POP.1519.FE\",\"Barro-Lee: Population in thousands, age 15-19, female\",\"Population in thousands, age 15-19, female is the female population of 15-19 year olds in thousands estimated by Barro-Lee.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.POP.15UP\",\"Barro-Lee: Population in thousands, age 15+, total\",\"Population in thousands, age 15+, total is the total population over age 15 in thousands estimated by Barro-Lee.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.POP.15UP.FE\",\"Barro-Lee: Population in thousands, age 15+, female\",\"Population in thousands, age 15+, female is the female population over age 15 in thousands estimated by Barro-Lee.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.POP.2024\",\"Barro-Lee: Population in thousands, age 20-24, total\",\"Population in thousands, age 20-24, total is the total population of 20-24 year olds in thousands estimated by Barro-Lee.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.POP.2024.FE\",\"Barro-Lee: Population in thousands, age 20-24, female\",\"Population in thousands, age 20-24, female is the female population of 20-24 year olds in thousands estimated by Barro-Lee.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.POP.2529\",\"Barro-Lee: Population in thousands, age 25-29, total\",\"Population in thousands, age 25-29, total is the total population of 25-29 year olds in thousands estimated by Barro-Lee.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.POP.2529.FE\",\"Barro-Lee: Population in thousands, age 25-29, female\",\"Population in thousands, age 25-29, female is the female population of 25-29 year olds in thousands estimated by Barro-Lee.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.POP.25UP\",\"Barro-Lee: Population in thousands, age 25+, total\",\"Population in thousands, age 25+, total is the total population over age 25 in thousands estimated by Barro-Lee.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.POP.25UP.FE\",\"Barro-Lee: Population in thousands, age 25+, female\",\"Population in thousands, age 25+, female is the female population over age 25 in thousands estimated by Barro-Lee.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.POP.3034\",\"Barro-Lee: Population in thousands, age 30-34, total\",\"Population in thousands, age 30-34, total is the total population of 30-34 year olds in thousands estimated by Barro-Lee.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.POP.3034.FE\",\"Barro-Lee: Population in thousands, age 30-34, female\",\"Population in thousands, age 30-34, female is the female population of 30-34 year olds in thousands estimated by Barro-Lee.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.POP.3539\",\"Barro-Lee: Population in thousands, age 35-39, total\",\"Population in thousands, age 35-39, total is the total population of 35-39 year olds in thousands estimated by Barro-Lee.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.POP.3539.FE\",\"Barro-Lee: Population in thousands, age 35-39, female\",\"Population in thousands, age 35-39, female is the female population of 35-39 year olds in thousands estimated by Barro-Lee.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.POP.4044\",\"Barro-Lee: Population in thousands, age 40-44, total\",\"Population in thousands, age 40-44, total is the total population of 40-44 year olds in thousands estimated by Barro-Lee.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.POP.4044.FE\",\"Barro-Lee: Population in thousands, age 40-44, female\",\"Population in thousands, age 40-44, female is the female population of 40-44 year olds in thousands estimated by Barro-Lee.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.POP.4549\",\"Barro-Lee: Population in thousands, age 45-49, total\",\"Population in thousands, age 45-49, total is the total population of 45-49 year olds in thousands estimated by Barro-Lee.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.POP.4549.FE\",\"Barro-Lee: Population in thousands, age 45-49, female\",\"Population in thousands, age 45-49, female is the female population of 45-49 year olds in thousands estimated by Barro-Lee.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.POP.5054\",\"Barro-Lee: Population in thousands, age 50-54, total\",\"Population in thousands, age 50-54, total is the total population of 50-54 year olds in thousands estimated by Barro-Lee.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.POP.5054.FE\",\"Barro-Lee: Population in thousands, age 50-54, female\",\"Population in thousands, age 50-54, female is the female population of 50-54 year olds in thousands estimated by Barro-Lee.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.POP.5559\",\"Barro-Lee: Population in thousands, age 55-59, total\",\"Population in thousands, age 55-59, total is the total population of 55-59 year olds in thousands estimated by Barro-Lee.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.POP.5559.FE\",\"Barro-Lee: Population in thousands, age 55-59, female\",\"Population in thousands, age 55-59, female is the female population of 55-59 year olds in thousands estimated by Barro-Lee.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.POP.6064\",\"Barro-Lee: Population in thousands, age 60-64, total\",\"Population in thousands, age 60-64, total is the total population of 60-64 year olds in thousands estimated by Barro-Lee.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.POP.6064.FE\",\"Barro-Lee: Population in thousands, age 60-64, female\",\"Population in thousands, age 60-64, female is the female population of 60-64 year olds in thousands estimated by Barro-Lee.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.POP.6569\",\"Barro-Lee: Population in thousands, age 65-69, total\",\"Population in thousands, age 65-69, total is the total population of 65-69 year olds in thousands estimated by Barro-Lee.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.POP.6569.FE\",\"Barro-Lee: Population in thousands, age 65-69, female\",\"Population in thousands, age 65-69, female is the female population of 65-69 year olds in thousands estimated by Barro-Lee.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.POP.7074\",\"Barro-Lee: Population in thousands, age 70-74, total\",\"Population in thousands, age 70-74, total is the total population of 70-74 year olds in thousands estimated by Barro-Lee.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.POP.7074.FE\",\"Barro-Lee: Population in thousands, age 70-74, female\",\"Population in thousands, age 70-74, female is the female population of 70-74 year olds in thousands estimated by Barro-Lee.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.POP.75UP\",\"Barro-Lee: Population in thousands, age 75+, total\",\"Population in thousands, age 75+, total is the total population over age 75 in thousands estimated by Barro-Lee.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.POP.75UP.FE\",\"Barro-Lee: Population in thousands, age 75+, female\",\"Population in thousands, age 75+, female is the female population over age 75 in thousands estimated by Barro-Lee.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.CMPT.1519.FE.ZS\",\"Barro-Lee: Percentage of female population age 15-19 with primary schooling. Completed Primary\",\"Percentage of female population age 15-19 with primary schooling. Completed Primary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.CMPT.1519.ZS\",\"Barro-Lee: Percentage of population age 15-19 with primary schooling. Completed Primary\",\"Percentage of population age 15-19 with primary schooling. Completed Primary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.CMPT.15UP.FE.ZS\",\"Barro-Lee: Percentage of female population age 15+ with primary schooling. Completed Primary\",\"Percentage of female population age 15+ with primary schooling. Completed Primary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.CMPT.15UP.ZS\",\"Barro-Lee: Percentage of population age 15+ with primary schooling. Completed Primary\",\"Percentage of population age 15+ with primary schooling. Completed Primary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.CMPT.2024.FE.ZS\",\"Barro-Lee: Percentage of female population age 20-24 with primary schooling. Completed Primary\",\"Percentage of female population age 20-24 with primary schooling. Completed Primary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.CMPT.2024.ZS\",\"Barro-Lee: Percentage of population age 20-24 with primary schooling. Completed Primary\",\"Percentage of population age 20-24 with primary schooling. Completed Primary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.CMPT.2529.FE.ZS\",\"Barro-Lee: Percentage of female population age 25-29 with primary schooling. Completed Primary\",\"Percentage of female population age 25-29 with primary schooling. Completed Primary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.CMPT.2529.ZS\",\"Barro-Lee: Percentage of population age 25-29 with primary schooling. Completed Primary\",\"Percentage of population age 25-29 with primary schooling. Completed Primary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.CMPT.25UP.FE.ZS\",\"Barro-Lee: Percentage of female population age 25+ with primary schooling. Completed Primary\",\"Percentage of female population age 25+ with primary schooling. Completed Primary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.CMPT.25UP.ZS\",\"Barro-Lee: Percentage of population age 25+ with primary schooling. Completed Primary\",\"Percentage of population age 25+ with primary schooling. Completed Primary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.CMPT.3034.FE.ZS\",\"Barro-Lee: Percentage of female population age 30-34 with primary schooling. Completed Primary\",\"Percentage of female population age 30-34 with primary schooling. Completed Primary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.CMPT.3034.ZS\",\"Barro-Lee: Percentage of population age 30-34 with primary schooling. Completed Primary\",\"Percentage of population age 30-34 with primary schooling. Completed Primary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.CMPT.3539.FE.ZS\",\"Barro-Lee: Percentage of female population age 35-39 with primary schooling. Completed Primary\",\"Percentage of female population age 35-39 with primary schooling. Completed Primary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.CMPT.3539.ZS\",\"Barro-Lee: Percentage of population age 35-39 with primary schooling. Completed Primary\",\"Percentage of population age 35-39 with primary schooling. Completed Primary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.CMPT.4044.FE.ZS\",\"Barro-Lee: Percentage of female population age 40-44 with primary schooling. Completed Primary\",\"Percentage of female population age 40-44 with primary schooling. Completed Primary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.CMPT.4044.ZS\",\"Barro-Lee: Percentage of population age 40-44 with primary schooling. Completed Primary\",\"Percentage of population age 40-44 with primary schooling. Completed Primary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.CMPT.4549.FE.ZS\",\"Barro-Lee: Percentage of female population age 45-49 with primary schooling. Completed Primary\",\"Percentage of female population age 45-49 with primary schooling. Completed Primary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.CMPT.4549.ZS\",\"Barro-Lee: Percentage of population age 45-49 with primary schooling. Completed Primary\",\"Percentage of population age 45-49 with primary schooling. Completed Primary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.CMPT.5054.FE.ZS\",\"Barro-Lee: Percentage of female population age 50-54 with primary schooling. Completed Primary\",\"Percentage of female population age 50-54 with primary schooling. Completed Primary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.CMPT.5054.ZS\",\"Barro-Lee: Percentage of population age 50-54 with primary schooling. Completed Primary\",\"Percentage of population age 50-54 with primary schooling. Completed Primary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.CMPT.5559.FE.ZS\",\"Barro-Lee: Percentage of female population age 55-59 with primary schooling. Completed Primary\",\"Percentage of female population age 55-59 with primary schooling. Completed Primary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.CMPT.5559.ZS\",\"Barro-Lee: Percentage of population age 55-59 with primary schooling. Completed Primary\",\"Percentage of population age 55-59 with primary schooling. Completed Primary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.CMPT.6064.FE.ZS\",\"Barro-Lee: Percentage of female population age 60-64 with primary schooling. Completed Primary\",\"Percentage of female population age 60-64 with primary schooling. Completed Primary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.CMPT.6064.ZS\",\"Barro-Lee: Percentage of population age 60-64 with primary schooling. Completed Primary\",\"Percentage of population age 60-64 with primary schooling. Completed Primary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.CMPT.6569.FE.ZS\",\"Barro-Lee: Percentage of female population age 65-69 with primary schooling. Completed Primary\",\"Percentage of female population age 65-69 with primary schooling. Completed Primary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.CMPT.6569.ZS\",\"Barro-Lee: Percentage of population age 65-69 with primary schooling. Completed Primary\",\"Percentage of population age 65-69 with primary schooling. Completed Primary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.CMPT.7074.FE.ZS\",\"Barro-Lee: Percentage of female population age 70-74 with primary schooling. Completed Primary\",\"Percentage of female population age 70-74 with primary schooling. Completed Primary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.CMPT.7074.ZS\",\"Barro-Lee: Percentage of population age 70-74 with primary schooling. Completed Primary\",\"Percentage of population age 70-74 with primary schooling. Completed Primary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.CMPT.75UP.FE.ZS\",\"Barro-Lee: Percentage of female population age 75+ with primary schooling. Completed Primary\",\"Percentage of female population age 75+ with primary schooling. Completed Primary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.CMPT.75UP.ZS\",\"Barro-Lee: Percentage of population age 75+ with primary schooling. Completed Primary\",\"Percentage of population age 75+ with primary schooling. Completed Primary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.ICMP.1519.FE.ZS\",\"Barro-Lee: Percentage of female population age 15-19 with primary schooling. Total (Incomplete and Completed Primary)\",\"Percentage of female population age 15-19 with primary schooling. Total (Incomplete and Completed Primary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.ICMP.1519.ZS\",\"Barro-Lee: Percentage of population age 15-19 with primary schooling. Total (Incomplete and Completed Primary)\",\"Percentage of population age 15-19 with primary schooling. Total (Incomplete and Completed Primary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.ICMP.15UP.FE.ZS\",\"Barro-Lee: Percentage of female population age 15+ with primary schooling. Total (Incomplete and Completed Primary)\",\"Percentage of female population age 15+ with primary schooling. Total (Incomplete and Completed Primary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.ICMP.15UP.ZS\",\"Barro-Lee: Percentage of population age 15+ with primary schooling. Total (Incomplete and Completed Primary)\",\"Percentage of population age 15+ with primary schooling. Total (Incomplete and Completed Primary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.ICMP.2024.FE.ZS\",\"Barro-Lee: Percentage of female population age 20-24 with primary schooling. Total (Incomplete and Completed Primary)\",\"Percentage of female population age 20-24 with primary schooling. Total (Incomplete and Completed Primary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.ICMP.2024.ZS\",\"Barro-Lee: Percentage of population age 20-24 with primary schooling. Total (Incomplete and Completed Primary)\",\"Percentage of population age 20-24 with primary schooling. Total (Incomplete and Completed Primary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.ICMP.2529.FE.ZS\",\"Barro-Lee: Percentage of female population age 25-29 with primary schooling. Total (Incomplete and Completed Primary)\",\"Percentage of female population age 25-29 with primary schooling. Total (Incomplete and Completed Primary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.ICMP.2529.ZS\",\"Barro-Lee: Percentage of population age 25-29 with primary schooling. Total (Incomplete and Completed Primary)\",\"Percentage of population age 25-29 with primary schooling. Total (Incomplete and Completed Primary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.ICMP.25UP.FE.ZS\",\"Barro-Lee: Percentage of female population age 25+ with primary schooling. Total (Incomplete and Completed Primary)\",\"Percentage of female population age 25+ with primary schooling. Total (Incomplete and Completed Primary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.ICMP.25UP.ZS\",\"Barro-Lee: Percentage of population age 25+ with primary schooling. Total (Incomplete and Completed Primary)\",\"Percentage of population age 25+ with primary schooling. Total (Incomplete and Completed Primary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.ICMP.3034.FE.ZS\",\"Barro-Lee: Percentage of female population age 30-34 with primary schooling. Total (Incomplete and Completed Primary)\",\"Percentage of female population age 30-34 with primary schooling. Total (Incomplete and Completed Primary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.ICMP.3034.ZS\",\"Barro-Lee: Percentage of population age 30-34 with primary schooling. Total (Incomplete and Completed Primary)\",\"Percentage of population age 30-34 with primary schooling. Total (Incomplete and Completed Primary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.ICMP.3539.FE.ZS\",\"Barro-Lee: Percentage of female population age 35-39 with primary schooling. Total (Incomplete and Completed Primary)\",\"Percentage of female population age 35-39 with primary schooling. Total (Incomplete and Completed Primary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.ICMP.3539.ZS\",\"Barro-Lee: Percentage of population age 35-39 with primary schooling. Total (Incomplete and Completed Primary)\",\"Percentage of population age 35-39 with primary schooling. Total (Incomplete and Completed Primary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.ICMP.4044.FE.ZS\",\"Barro-Lee: Percentage of female population age 40-44 with primary schooling. Total (Incomplete and Completed Primary)\",\"Percentage of female population age 40-44 with primary schooling. Total (Incomplete and Completed Primary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.ICMP.4044.ZS\",\"Barro-Lee: Percentage of population age 40-44 with primary schooling. Total (Incomplete and Completed Primary)\",\"Percentage of population age 40-44 with primary schooling. Total (Incomplete and Completed Primary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.ICMP.4549.FE.ZS\",\"Barro-Lee: Percentage of female population age 45-49 with primary schooling. Total (Incomplete and Completed Primary)\",\"Percentage of female population age 45-49 with primary schooling. Total (Incomplete and Completed Primary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.ICMP.4549.ZS\",\"Barro-Lee: Percentage of population age 45-49 with primary schooling. Total (Incomplete and Completed Primary)\",\"Percentage of population age 45-49 with primary schooling. Total (Incomplete and Completed Primary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.ICMP.5054.FE.ZS\",\"Barro-Lee: Percentage of female population age 50-54 with primary schooling. Total (Incomplete and Completed Primary)\",\"Percentage of female population age 50-54 with primary schooling. Total (Incomplete and Completed Primary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.ICMP.5054.ZS\",\"Barro-Lee: Percentage of population age 50-54 with primary schooling. Total (Incomplete and Completed Primary)\",\"Percentage of population age 50-54 with primary schooling. Total (Incomplete and Completed Primary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.ICMP.5559.FE.ZS\",\"Barro-Lee: Percentage of female population age 55-59 with primary schooling. Total (Incomplete and Completed Primary)\",\"Percentage of female population age 55-59 with primary schooling. Total (Incomplete and Completed Primary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.ICMP.5559.ZS\",\"Barro-Lee: Percentage of population age 55-59 with primary schooling. Total (Incomplete and Completed Primary)\",\"Percentage of population age 55-59 with primary schooling. Total (Incomplete and Completed Primary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.ICMP.6064.FE.ZS\",\"Barro-Lee: Percentage of female population age 60-64 with primary schooling. Total (Incomplete and Completed Primary)\",\"Percentage of female population age 60-64 with primary schooling. Total (Incomplete and Completed Primary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.ICMP.6064.ZS\",\"Barro-Lee: Percentage of population age 60-64 with primary schooling. Total (Incomplete and Completed Primary)\",\"Percentage of population age 60-64 with primary schooling. Total (Incomplete and Completed Primary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.ICMP.6569.FE.ZS\",\"Barro-Lee: Percentage of female population age 65-69 with primary schooling. Total (Incomplete and Completed Primary)\",\"Percentage of female population age 65-69 with primary schooling. Total (Incomplete and Completed Primary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.ICMP.6569.ZS\",\"Barro-Lee: Percentage of population age 65-69 with primary schooling. Total (Incomplete and Completed Primary)\",\"Percentage of population age 65-69 with primary schooling. Total (Incomplete and Completed Primary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.ICMP.7074.FE.ZS\",\"Barro-Lee: Percentage of female population age 70-74 with primary schooling. Total (Incomplete and Completed Primary)\",\"Percentage of female population age 70-74 with primary schooling. Total (Incomplete and Completed Primary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.ICMP.7074.ZS\",\"Barro-Lee: Percentage of population age 70-74 with primary schooling. Total (Incomplete and Completed Primary)\",\"Percentage of population age 70-74 with primary schooling. Total (Incomplete and Completed Primary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.ICMP.75UP.FE.ZS\",\"Barro-Lee: Percentage of female population age 75+ with primary schooling. Total (Incomplete and Completed Primary)\",\"Percentage of female population age 75+ with primary schooling. Total (Incomplete and Completed Primary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.ICMP.75UP.ZS\",\"Barro-Lee: Percentage of population age 75+ with primary schooling. Total (Incomplete and Completed Primary)\",\"Percentage of population age 75+ with primary schooling. Total (Incomplete and Completed Primary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.SCHL.1519\",\"Barro-Lee: Average years of primary schooling, age 15-19, total\",\"Average years of primary schooling, 15-19, total is the average years of primary education completed among people age 15-19.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.SCHL.1519.FE\",\"Barro-Lee: Average years of primary schooling, age 15-19, female\",\"Average years of primary schooling, 15-19, female is the average years of primary education completed among females age 15-19.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.SCHL.15UP\",\"Barro-Lee: Average years of primary schooling, age 15+, total\",\"Average years of primary schooling, 15+, total is the average years of primary education completed among people over age 15.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.SCHL.15UP.FE\",\"Barro-Lee: Average years of primary schooling, age 15+, female\",\"Average years of primary schooling, 15+, female is the average years of primary education completed among females over age 15.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.SCHL.2024\",\"Barro-Lee: Average years of primary schooling, age 20-24, total\",\"Average years of primary schooling, 20-24, total is the average years of primary education completed among people age 20-24.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.SCHL.2024.FE\",\"Barro-Lee: Average years of primary schooling, age 20-24, female\",\"Average years of primary schooling, 20-24, female is the average years of primary education completed among females age 20-24.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.SCHL.2529\",\"Barro-Lee: Average years of primary schooling, age 25-29, total\",\"Average years of primary schooling, 25-29, total is the average years of primary education completed among people age 25-29.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.SCHL.2529.FE\",\"Barro-Lee: Average years of primary schooling, age 25-29, female\",\"Average years of primary schooling, 25-29, female is the average years of primary education completed among females age 25-29.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.SCHL.25UP\",\"Barro-Lee: Average years of primary schooling, age 25+, total\",\"Average years of primary schooling, 25+, total is the average years of primary education completed among people over age 25.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.SCHL.25UP.FE\",\"Barro-Lee: Average years of primary schooling, age 25+, female\",\"Average years of primary schooling, 25+, female is the average years of primary education completed among females over age 25.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.SCHL.3034\",\"Barro-Lee: Average years of primary schooling, age 30-34, total\",\"Average years of primary schooling, 30-34, total is the average years of primary education completed among people age 30-34.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.SCHL.3034.FE\",\"Barro-Lee: Average years of primary schooling, age 30-34, female\",\"Average years of primary schooling, 30-34, female is the average years of primary education completed among females age 30-34.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.SCHL.3539\",\"Barro-Lee: Average years of primary schooling, age 35-39, total\",\"Average years of primary schooling, 35-39, total is the average years of primary education completed among people age 35-39.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.SCHL.3539.FE\",\"Barro-Lee: Average years of primary schooling, age 35-39, female\",\"Average years of primary schooling, 35-39, female is the average years of primary education completed among females age 35-39.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.SCHL.4044\",\"Barro-Lee: Average years of primary schooling, age 40-44, total\",\"Average years of primary schooling, 40-44, total is the average years of primary education completed among people age 40-44.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.SCHL.4044.FE\",\"Barro-Lee: Average years of primary schooling, age 40-44, female\",\"Average years of primary schooling, 40-44, female is the average years of primary education completed among females age 40-44.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.SCHL.4549\",\"Barro-Lee: Average years of primary schooling, age 45-49, total\",\"Average years of primary schooling, 45-49, total is the average years of primary education completed among people age 45-49.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.SCHL.4549.FE\",\"Barro-Lee: Average years of primary schooling, age 45-49, female\",\"Average years of primary schooling, 45-49, female is the average years of primary education completed among females age 45-49.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.SCHL.5054\",\"Barro-Lee: Average years of primary schooling, age 50-54, total\",\"Average years of primary schooling, 50-54, total is the average years of primary education completed among people age 50-54.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.SCHL.5054.FE\",\"Barro-Lee: Average years of primary schooling, age 50-54, female\",\"Average years of primary schooling, 50-54, female is the average years of primary education completed among females age 50-54.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.SCHL.5559\",\"Barro-Lee: Average years of primary schooling, age 55-59, total\",\"Average years of primary schooling, 55-59, total is the average years of primary education completed among people age 55-59.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.SCHL.5559.FE\",\"Barro-Lee: Average years of primary schooling, age 55-59, female\",\"Average years of primary schooling, 55-59, female is the average years of primary education completed among females age 55-59.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.SCHL.6064\",\"Barro-Lee: Average years of primary schooling, age 60-64, total\",\"Average years of primary schooling, 60-64, total is the average years of primary education completed among people age 60-64.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.SCHL.6064.FE\",\"Barro-Lee: Average years of primary schooling, age 60-64, female\",\"Average years of primary schooling, 60-64, female is the average years of primary education completed among females age 60-64.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.SCHL.6569\",\"Barro-Lee: Average years of primary schooling, age 65-69, total\",\"Average years of primary schooling, 65-69, total is the average years of primary education completed among people age 65-69.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.SCHL.6569.FE\",\"Barro-Lee: Average years of primary schooling, age 65-69, female\",\"Average years of primary schooling, 65-69, female is the average years of primary education completed among females age 65-69.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.SCHL.7074\",\"Barro-Lee: Average years of primary schooling, age 70-74, total\",\"Average years of primary schooling, 70-74, total is the average years of primary education completed among people age 70-74.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.SCHL.7074.FE\",\"Barro-Lee: Average years of primary schooling, age 70-74, female\",\"Average years of primary schooling, 70-74, female is the average years of primary education completed among females age 70-74.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.SCHL.75UP\",\"Barro-Lee: Average years of primary schooling, age 75+, total\",\"Average years of primary schooling, 75+, total is the average years of primary education completed among people over age 75.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.PRM.SCHL.75UP.FE\",\"Barro-Lee: Average years of primary schooling, age 75+, female\",\"Average years of primary schooling, 75+, female is the average years of primary education completed among females over age 75.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SCHL.1519\",\"Barro-Lee: Average years of total schooling, age 15-19, total\",\"Average years of total schooling, 15-19, total is the average years of education completed among people age 15-19.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SCHL.1519.FE\",\"Barro-Lee: Average years of total schooling, age 15-19, female\",\"Average years of total schooling, 15-19, female is the average years of education completed among females age 15-19.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SCHL.15UP\",\"Barro-Lee: Average years of total schooling, age 15+, total\",\"Average years of total schooling, 15+, total is the average years of education completed among people over age 15.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SCHL.15UP.FE\",\"Barro-Lee: Average years of total schooling, age 15+, female\",\"Average years of total schooling, 15+, female is the average years of education completed among females over age 15.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SCHL.2024\",\"Barro-Lee: Average years of total schooling, age 20-24, total\",\"Average years of total schooling, 20-24, total is the average years of education completed among people age 20-24.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SCHL.2024.FE\",\"Barro-Lee: Average years of total schooling, age 20-24, female\",\"Average years of total schooling, 20-24, female is the average years of education completed among females age 20-24.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SCHL.2529\",\"Barro-Lee: Average years of total schooling, age 25-29, total\",\"Average years of total schooling, 25-29, total is the average years of education completed among people age 25-29.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SCHL.2529.FE\",\"Barro-Lee: Average years of total schooling, age 25-29, female\",\"Average years of total schooling, 25-29, female is the average years of education completed among females age 25-29.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SCHL.25UP\",\"Barro-Lee: Average years of total schooling, age 25+, total\",\"Average years of total schooling, 25+, total is the average years of education completed among people over age 25.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SCHL.25UP.FE\",\"Barro-Lee: Average years of total schooling, age 25+, female\",\"Average years of total schooling, 25+, female is the average years of education completed among females over age 25.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SCHL.3034\",\"Barro-Lee: Average years of total schooling, age 30-34, total\",\"Average years of total schooling, 30-34, total is the average years of education completed among people age 30-34.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SCHL.3034.FE\",\"Barro-Lee: Average years of total schooling, age 30-34, female\",\"Average years of total schooling, 30-34, female is the average years of education completed among females age 30-34.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SCHL.3539\",\"Barro-Lee: Average years of total schooling, age 35-39, total\",\"Average years of total schooling, 35-39, total is the average years of education completed among people age 35-39.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SCHL.3539.FE\",\"Barro-Lee: Average years of total schooling, age 35-39, female\",\"Average years of total schooling, 35-39, female is the average years of education completed among females age 35-39.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SCHL.4044\",\"Barro-Lee: Average years of total schooling, age 40-44, total\",\"Average years of total schooling, 40-44, total is the average years of education completed among people age 40-44.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SCHL.4044.FE\",\"Barro-Lee: Average years of total schooling, age 40-44, female\",\"Average years of total schooling, 40-44, female is the average years of education completed among females age 40-44.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SCHL.4549\",\"Barro-Lee: Average years of total schooling, age 45-49, total\",\"Average years of total schooling, 45-49, total is the average years of education completed among people age 45-49.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SCHL.4549.FE\",\"Barro-Lee: Average years of total schooling, age 45-49, female\",\"Average years of total schooling, 45-49, female is the average years of education completed among females age 45-49.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SCHL.5054\",\"Barro-Lee: Average years of total schooling, age 50-54, total\",\"Average years of total schooling, 50-54, total is the average years of education completed among people age 50-54.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SCHL.5054.FE\",\"Barro-Lee: Average years of total schooling, age 50-54, female\",\"Average years of total schooling, 50-54, female is the average years of education completed among females age 50-54.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SCHL.5559\",\"Barro-Lee: Average years of total schooling, age 55-59, total\",\"Average years of total schooling, 55-59, total is the average years of education completed among people age 55-59.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SCHL.5559.FE\",\"Barro-Lee: Average years of total schooling, age 55-59, female\",\"Average years of total schooling, 55-59, female is the average years of education completed among females age 55-59.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SCHL.6064\",\"Barro-Lee: Average years of total schooling, age 60-64, total\",\"Average years of total schooling, 60-64, total is the average years of education completed among people age 60-64.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SCHL.6064.FE\",\"Barro-Lee: Average years of total schooling, age 60-64, female\",\"Average years of total schooling, 60-64, female is the average years of education completed among females age 60-64.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SCHL.6569\",\"Barro-Lee: Average years of total schooling, age 65-69, total\",\"Average years of total schooling, 65-69, total is the average years of education completed among people age 65-69.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SCHL.6569.FE\",\"Barro-Lee: Average years of total schooling, age 65-69, female\",\"Average years of total schooling, 65-69, female is the average years of education completed among females age 65-69.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SCHL.7074\",\"Barro-Lee: Average years of total schooling, age 70-74, total\",\"Average years of total schooling, 70-74, total is the average years of education completed among people age 70-74.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SCHL.7074.FE\",\"Barro-Lee: Average years of total schooling, age 70-74, female\",\"Average years of total schooling, 70-74, female is the average years of education completed among females age 70-74.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SCHL.75UP\",\"Barro-Lee: Average years of total schooling, age 75+, total\",\"Average years of total schooling, 75+, total is the average years of education completed among people over age 75.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SCHL.75UP.FE\",\"Barro-Lee: Average years of total schooling, age 75+, female\",\"Average years of total schooling, 75+, female is the average years of education completed among females over age 75.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.CMPT.1519.FE.ZS\",\"Barro-Lee: Percentage of female population age 15-19 with secondary schooling. Completed Secondary\",\"Percentage of female population age 15-19 with secondary schooling. Completed Secondary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.CMPT.1519.ZS\",\"Barro-Lee: Percentage of population age 15-19 with secondary schooling. Completed Secondary\",\"Percentage of population age 15-19 with secondary schooling. Completed Secondary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.CMPT.15UP.FE.ZS\",\"Barro-Lee: Percentage of female population age 15+ with secondary schooling. Completed Secondary\",\"Percentage of female population age 15+ with secondary schooling. Completed Secondary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.CMPT.15UP.ZS\",\"Barro-Lee: Percentage of population age 15+ with secondary schooling. Completed Secondary\",\"Percentage of population age 15+ with secondary schooling. Completed Secondary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.CMPT.2024.FE.ZS\",\"Barro-Lee: Percentage of female population age 20-24 with secondary schooling. Completed Secondary\",\"Percentage of female population age 20-24 with secondary schooling. Completed Secondary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.CMPT.2024.ZS\",\"Barro-Lee: Percentage of population age 20-24 with secondary schooling. Completed Secondary\",\"Percentage of population age 20-24 with secondary schooling. Completed Secondary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.CMPT.2529.FE.ZS\",\"Barro-Lee: Percentage of female population age 25-29 with secondary schooling. Completed Secondary\",\"Percentage of female population age 25-29 with secondary schooling. Completed Secondary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.CMPT.2529.ZS\",\"Barro-Lee: Percentage of population age 25-29 with secondary schooling. Completed Secondary\",\"Percentage of population age 25-29 with secondary schooling. Completed Secondary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.CMPT.25UP.FE.ZS\",\"Barro-Lee: Percentage of female population age 25+ with secondary schooling. Completed Secondary\",\"Percentage of female population age 25+ with secondary schooling. Completed Secondary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.CMPT.25UP.ZS\",\"Barro-Lee: Percentage of population age 25+ with secondary schooling. Completed Secondary\",\"Percentage of population age 25+ with secondary schooling. Completed Secondary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.CMPT.3034.FE.ZS\",\"Barro-Lee: Percentage of female population age 30-34 with secondary schooling. Completed Secondary\",\"Percentage of female population age 30-34 with secondary schooling. Completed Secondary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.CMPT.3034.ZS\",\"Barro-Lee: Percentage of population age 30-34 with secondary schooling. Completed Secondary\",\"Percentage of population age 30-34 with secondary schooling. Completed Secondary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.CMPT.3539.FE.ZS\",\"Barro-Lee: Percentage of female population age 35-39 with secondary schooling. Completed Secondary\",\"Percentage of female population age 35-39 with secondary schooling. Completed Secondary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.CMPT.3539.ZS\",\"Barro-Lee: Percentage of population age 35-39 with secondary schooling. Completed Secondary\",\"Percentage of population age 35-39 with secondary schooling. Completed Secondary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.CMPT.4044.FE.ZS\",\"Barro-Lee: Percentage of female population age 40-44 with secondary schooling. Completed Secondary\",\"Percentage of female population age 40-44 with secondary schooling. Completed Secondary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.CMPT.4044.ZS\",\"Barro-Lee: Percentage of population age 40-44 with secondary schooling. Completed Secondary\",\"Percentage of population age 40-44 with secondary schooling. Completed Secondary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.CMPT.4549.FE.ZS\",\"Barro-Lee: Percentage of female population age 45-49 with secondary schooling. Completed Secondary\",\"Percentage of female population age 45-49 with secondary schooling. Completed Secondary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.CMPT.4549.ZS\",\"Barro-Lee: Percentage of population age 45-49 with secondary schooling. Completed Secondary\",\"Percentage of population age 45-49 with secondary schooling. Completed Secondary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.CMPT.5054.FE.ZS\",\"Barro-Lee: Percentage of female population age 50-54 with secondary schooling. Completed Secondary\",\"Percentage of female population age 50-54 with secondary schooling. Completed Secondary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.CMPT.5054.ZS\",\"Barro-Lee: Percentage of population age 50-54 with secondary schooling. Completed Secondary\",\"Percentage of population age 50-54 with secondary schooling. Completed Secondary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.CMPT.5559.FE.ZS\",\"Barro-Lee: Percentage of female population age 55-59 with secondary schooling. Completed Secondary\",\"Percentage of female population age 55-59 with secondary schooling. Completed Secondary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.CMPT.5559.ZS\",\"Barro-Lee: Percentage of population age 55-59 with secondary schooling. Completed Secondary\",\"Percentage of population age 55-59 with secondary schooling. Completed Secondary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.CMPT.6064.FE.ZS\",\"Barro-Lee: Percentage of female population age 60-64 with secondary schooling. Completed Secondary\",\"Percentage of female population age 60-64 with secondary schooling. Completed Secondary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.CMPT.6064.ZS\",\"Barro-Lee: Percentage of population age 60-64 with secondary schooling. Completed Secondary\",\"Percentage of population age 60-64 with secondary schooling. Completed Secondary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.CMPT.6569.FE.ZS\",\"Barro-Lee: Percentage of female population age 65-69 with secondary schooling. Completed Secondary\",\"Percentage of female population age 65-69 with secondary schooling. Completed Secondary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.CMPT.6569.ZS\",\"Barro-Lee: Percentage of population age 65-69 with secondary schooling. Completed Secondary\",\"Percentage of population age 65-69 with secondary schooling. Completed Secondary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.CMPT.7074.FE.ZS\",\"Barro-Lee: Percentage of female population age 70-74 with secondary schooling. Completed Secondary\",\"Percentage of female population age 70-74 with secondary schooling. Completed Secondary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.CMPT.7074.ZS\",\"Barro-Lee: Percentage of population age 70-74 with secondary schooling. Completed Secondary\",\"Percentage of population age 70-74 with secondary schooling. Completed Secondary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.CMPT.75UP.FE.ZS\",\"Barro-Lee: Percentage of female population age 75+ with secondary schooling. Completed Secondary\",\"Percentage of female population age 75+ with secondary schooling. Completed Secondary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.CMPT.75UP.ZS\",\"Barro-Lee: Percentage of population age 75+ with secondary schooling. Completed Secondary\",\"Percentage of population age 75+ with secondary schooling. Completed Secondary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.ICMP.1519.FE.ZS\",\"Barro-Lee: Percentage of female population age 15-19 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Percentage of female population age 15-19 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.ICMP.1519.ZS\",\"Barro-Lee: Percentage of population age 15-19 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Percentage of population age 15-19 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.ICMP.15UP.FE.ZS\",\"Barro-Lee: Percentage of female population age 15+ with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Percentage of female population age 15+ with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.ICMP.15UP.ZS\",\"Barro-Lee: Percentage of population age 15+ with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Percentage of population age 15+ with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.ICMP.2024.FE.ZS\",\"Barro-Lee: Percentage of female population age 20-24 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Percentage of female population age 20-24 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.ICMP.2024.ZS\",\"Barro-Lee: Percentage of population age 20-24 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Percentage of population age 20-24 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.ICMP.2529.FE.ZS\",\"Barro-Lee: Percentage of female population age 25-29 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Percentage of female population age 25-29 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.ICMP.2529.ZS\",\"Barro-Lee: Percentage of population age 25-29 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Percentage of population age 25-29 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.ICMP.25UP.FE.ZS\",\"Barro-Lee: Percentage of female population age 25+ with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Percentage of female population age 25+ with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.ICMP.25UP.ZS\",\"Barro-Lee: Percentage of population age 25+ with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Percentage of population age 25+ with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.ICMP.3034.FE.ZS\",\"Barro-Lee: Percentage of female population age 30-34 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Percentage of female population age 30-34 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.ICMP.3034.ZS\",\"Barro-Lee: Percentage of population age 30-34 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Percentage of population age 30-34 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.ICMP.3539.FE.ZS\",\"Barro-Lee: Percentage of female population age 35-39 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Percentage of female population age 35-39 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.ICMP.3539.ZS\",\"Barro-Lee: Percentage of population age 35-39 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Percentage of population age 35-39 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.ICMP.4044.FE.ZS\",\"Barro-Lee: Percentage of female population age 40-44 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Percentage of female population age 40-44 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.ICMP.4044.ZS\",\"Barro-Lee: Percentage of population age 40-44 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Percentage of population age 40-44 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.ICMP.4549.FE.ZS\",\"Barro-Lee: Percentage of female population age 45-49 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Percentage of female population age 45-49 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.ICMP.4549.ZS\",\"Barro-Lee: Percentage of population age 45-49 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Percentage of population age 45-49 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.ICMP.5054.FE.ZS\",\"Barro-Lee: Percentage of female population age 50-54 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Percentage of female population age 50-54 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.ICMP.5054.ZS\",\"Barro-Lee: Percentage of population age 50-54 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Percentage of population age 50-54 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.ICMP.5559.FE.ZS\",\"Barro-Lee: Percentage of female population age 55-59 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Percentage of female population age 55-59 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.ICMP.5559.ZS\",\"Barro-Lee: Percentage of population age 55-59 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Percentage of population age 55-59 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.ICMP.6064.FE.ZS\",\"Barro-Lee: Percentage of female population age 60-64 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Percentage of female population age 60-64 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.ICMP.6064.ZS\",\"Barro-Lee: Percentage of population age 60-64 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Percentage of population age 60-64 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.ICMP.6569.FE.ZS\",\"Barro-Lee: Percentage of female population age 65-69 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Percentage of female population age 65-69 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.ICMP.6569.ZS\",\"Barro-Lee: Percentage of population age 65-69 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Percentage of population age 65-69 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.ICMP.7074.FE.ZS\",\"Barro-Lee: Percentage of female population age 70-74 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Percentage of female population age 70-74 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.ICMP.7074.ZS\",\"Barro-Lee: Percentage of population age 70-74 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Percentage of population age 70-74 with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.ICMP.75UP.FE.ZS\",\"Barro-Lee: Percentage of female population age 75+ with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Percentage of female population age 75+ with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.ICMP.75UP.ZS\",\"Barro-Lee: Percentage of population age 75+ with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Percentage of population age 75+ with secondary schooling. Total (Incomplete and Completed Secondary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.SCHL.1519\",\"Barro-Lee: Average years of secondary schooling, age 15-19, total\",\"Average years of secondary schooling, 15-19, total is the average years of secondary education completed among people age 15-19.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.SCHL.1519.FE\",\"Barro-Lee: Average years of secondary schooling, age 15-19, female\",\"Average years of secondary schooling, 15-19, female is the average years of secondary education completed among females age 15-19.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.SCHL.15UP\",\"Barro-Lee: Average years of secondary schooling, age 15+, total\",\"Average years of secondary schooling, 15+, total is the average years of secondary education completed among people over age 15.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.SCHL.15UP.FE\",\"Barro-Lee: Average years of secondary schooling, age 15+, female\",\"Average years of secondary schooling, 15+, female is the average years of secondary education completed among females over age 15.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.SCHL.2024\",\"Barro-Lee: Average years of secondary schooling, age 20-24, total\",\"Average years of secondary schooling, 20-24, total is the average years of secondary education completed among people age 20-24.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.SCHL.2024.FE\",\"Barro-Lee: Average years of secondary schooling, age 20-24, female\",\"Average years of secondary schooling, 20-24, female is the average years of secondary education completed among females age 20-24.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.SCHL.2529\",\"Barro-Lee: Average years of secondary schooling, age 25-29, total\",\"Average years of secondary schooling, 25-29, total is the average years of secondary education completed among people age 25-29.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.SCHL.2529.FE\",\"Barro-Lee: Average years of secondary schooling, age 25-29, female\",\"Average years of secondary schooling, 25-29, female is the average years of secondary education completed among females age 25-29.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.SCHL.25UP\",\"Barro-Lee: Average years of secondary schooling, age 25+, total\",\"Average years of secondary schooling, 25+, total is the average years of secondary education completed among people over age 25.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.SCHL.25UP.FE\",\"Barro-Lee: Average years of secondary schooling, age 25+, female\",\"Average years of secondary schooling, 25+, female is the average years of secondary education completed among females over age 25.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.SCHL.3034\",\"Barro-Lee: Average years of secondary schooling, age 30-34, total\",\"Average years of secondary schooling, 30-34, total is the average years of secondary education completed among people age 30-34.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.SCHL.3034.FE\",\"Barro-Lee: Average years of secondary schooling, age 30-34, female\",\"Average years of secondary schooling, 30-34, female is the average years of secondary education completed among females age 30-34.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.SCHL.3539\",\"Barro-Lee: Average years of secondary schooling, age 35-39, total\",\"Average years of secondary schooling, 35-39, total is the average years of secondary education completed among people age 35-39.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.SCHL.3539.FE\",\"Barro-Lee: Average years of secondary schooling, age 35-39, female\",\"Average years of secondary schooling, 35-39, female is the average years of secondary education completed among females age 35-39.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.SCHL.4044\",\"Barro-Lee: Average years of secondary schooling, age 40-44, total\",\"Average years of secondary schooling, 40-44, total is the average years of secondary education completed among people age 40-44.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.SCHL.4044.FE\",\"Barro-Lee: Average years of secondary schooling, age 40-44, female\",\"Average years of secondary schooling, 40-44, female is the average years of secondary education completed among females age 40-44.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.SCHL.4549\",\"Barro-Lee: Average years of secondary schooling, age 45-49, total\",\"Average years of secondary schooling, 45-49, total is the average years of secondary education completed among people age 45-49.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.SCHL.4549.FE\",\"Barro-Lee: Average years of secondary schooling, age 45-49, female\",\"Average years of secondary schooling, 45-49, female is the average years of secondary education completed among females age 45-49.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.SCHL.5054\",\"Barro-Lee: Average years of secondary schooling, age 50-54, total\",\"Average years of secondary schooling, 50-54, total is the average years of secondary education completed among people age 50-54.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.SCHL.5054.FE\",\"Barro-Lee: Average years of secondary schooling, age 50-54, female\",\"Average years of secondary schooling, 50-54, female is the average years of secondary education completed among females age 50-54.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.SCHL.5559\",\"Barro-Lee: Average years of secondary schooling, age 55-59, total\",\"Average years of secondary schooling, 55-59, total is the average years of secondary education completed among people age 55-59.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.SCHL.5559.FE\",\"Barro-Lee: Average years of secondary schooling, age 55-59, female\",\"Average years of secondary schooling, 55-59, female is the average years of secondary education completed among females age 55-59.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.SCHL.6064\",\"Barro-Lee: Average years of secondary schooling, age 60-64, total\",\"Average years of secondary schooling, 60-64, total is the average years of secondary education completed among people age 60-64.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.SCHL.6064.FE\",\"Barro-Lee: Average years of secondary schooling, age 60-64, female\",\"Average years of secondary schooling, 60-64, female is the average years of secondary education completed among females age 60-64.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.SCHL.6569\",\"Barro-Lee: Average years of secondary schooling, age 65-69, total\",\"Average years of secondary schooling, 65-69, total is the average years of secondary education completed among people age 65-69.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.SCHL.6569.FE\",\"Barro-Lee: Average years of secondary schooling, age 65-69, female\",\"Average years of secondary schooling, 65-69, female is the average years of secondary education completed among females age 65-69.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.SCHL.7074\",\"Barro-Lee: Average years of secondary schooling, age 70-74, total\",\"Average years of secondary schooling, 70-74, total is the average years of secondary education completed among people age 70-74.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.SCHL.7074.FE\",\"Barro-Lee: Average years of secondary schooling, age 70-74, female\",\"Average years of secondary schooling, 70-74, female is the average years of secondary education completed among females age 70-74.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.SCHL.75UP\",\"Barro-Lee: Average years of secondary schooling, age 75+, total\",\"Average years of secondary schooling, 75+, total is the average years of secondary education completed among people over age 75.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.SEC.SCHL.75UP.FE\",\"Barro-Lee: Average years of secondary schooling, age 75+, female\",\"Average years of secondary schooling, 75+, female is the average years of secondary education completed among females over age 75.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.CMPT.1519.FE.ZS\",\"Barro-Lee: Percentage of female population age 15-19 with tertiary schooling. Completed Tertiary\",\"Percentage of female population age 15-19 with tertiary schooling. Completed Tertiary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.CMPT.1519.ZS\",\"Barro-Lee: Percentage of population age 15-19 with tertiary schooling. Completed Tertiary\",\"Percentage of population age 15-19 with tertiary schooling. Completed Tertiary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.CMPT.15UP.FE.ZS\",\"Barro-Lee: Percentage of female population age 15+ with tertiary schooling. Completed Tertiary\",\"Percentage of female population age 15+ with tertiary schooling. Completed Tertiary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.CMPT.15UP.ZS\",\"Barro-Lee: Percentage of population age 15+ with tertiary schooling. Completed Tertiary\",\"Percentage of population age 15+ with tertiary schooling. Completed Tertiary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.CMPT.2024.FE.ZS\",\"Barro-Lee: Percentage of female population age 20-24 with tertiary schooling. Completed Tertiary\",\"Percentage of female population age 20-24 with tertiary schooling. Completed Tertiary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.CMPT.2024.ZS\",\"Barro-Lee: Percentage of population age 20-24 with tertiary schooling. Completed Tertiary\",\"Percentage of population age 20-24 with tertiary schooling. Completed Tertiary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.CMPT.2529.FE.ZS\",\"Barro-Lee: Percentage of female population age 25-29 with tertiary schooling. Completed Tertiary\",\"Percentage of female population age 25-29 with tertiary schooling. Completed Tertiary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.CMPT.2529.ZS\",\"Barro-Lee: Percentage of population age 25-29 with tertiary schooling. Completed Tertiary\",\"Percentage of population age 25-29 with tertiary schooling. Completed Tertiary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.CMPT.25UP.FE.ZS\",\"Barro-Lee: Percentage of female population age 25+ with tertiary schooling. Completed Tertiary\",\"Percentage of female population age 25+ with tertiary schooling. Completed Tertiary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.CMPT.25UP.ZS\",\"Barro-Lee: Percentage of population age 25+ with tertiary schooling. Completed Tertiary\",\"Percentage of population age 25+ with tertiary schooling. Completed Tertiary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.CMPT.3034.FE.ZS\",\"Barro-Lee: Percentage of female population age 30-34 with tertiary schooling. Completed Tertiary\",\"Percentage of female population age 30-34 with tertiary schooling. Completed Tertiary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.CMPT.3034.ZS\",\"Barro-Lee: Percentage of population age 30-34 with tertiary schooling. Completed Tertiary\",\"Percentage of population age 30-34 with tertiary schooling. Completed Tertiary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.CMPT.3539.FE.ZS\",\"Barro-Lee: Percentage of female population age 35-39 with tertiary schooling. Completed Tertiary\",\"Percentage of female population age 35-39 with tertiary schooling. Completed Tertiary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.CMPT.3539.ZS\",\"Barro-Lee: Percentage of population age 35-39 with tertiary schooling. Completed Tertiary\",\"Percentage of population age 35-39 with tertiary schooling. Completed Tertiary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.CMPT.4044.FE.ZS\",\"Barro-Lee: Percentage of female population age 40-44 with tertiary schooling. Completed Tertiary\",\"Percentage of female population age 40-44 with tertiary schooling. Completed Tertiary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.CMPT.4044.ZS\",\"Barro-Lee: Percentage of population age 40-44 with tertiary schooling. Completed Tertiary\",\"Percentage of population age 40-44 with tertiary schooling. Completed Tertiary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.CMPT.4549.FE.ZS\",\"Barro-Lee: Percentage of female population age 45-49 with tertiary schooling. Completed Tertiary\",\"Percentage of female population age 45-49 with tertiary schooling. Completed Tertiary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.CMPT.4549.ZS\",\"Barro-Lee: Percentage of population age 45-49 with tertiary schooling. Completed Tertiary\",\"Percentage of population age 45-49 with tertiary schooling. Completed Tertiary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.CMPT.5054.FE.ZS\",\"Barro-Lee: Percentage of female population age 50-54 with tertiary schooling. Completed Tertiary\",\"Percentage of female population age 50-54 with tertiary schooling. Completed Tertiary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.CMPT.5054.ZS\",\"Barro-Lee: Percentage of population age 50-54 with tertiary schooling. Completed Tertiary\",\"Percentage of population age 50-54 with tertiary schooling. Completed Tertiary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.CMPT.5559.FE.ZS\",\"Barro-Lee: Percentage of female population age 55-59 with tertiary schooling. Completed Tertiary\",\"Percentage of female population age 55-59 with tertiary schooling. Completed Tertiary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.CMPT.5559.ZS\",\"Barro-Lee: Percentage of population age 55-59 with tertiary schooling. Completed Tertiary\",\"Percentage of population age 55-59 with tertiary schooling. Completed Tertiary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.CMPT.6064.FE.ZS\",\"Barro-Lee: Percentage of female population age 60-64 with tertiary schooling. Completed Tertiary\",\"Percentage of female population age 60-64 with tertiary schooling. Completed Tertiary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.CMPT.6064.ZS\",\"Barro-Lee: Percentage of population age 60-64 with tertiary schooling. Completed Tertiary\",\"Percentage of population age 60-64 with tertiary schooling. Completed Tertiary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.CMPT.6569.FE.ZS\",\"Barro-Lee: Percentage of female population age 65-69 with tertiary schooling. Completed Tertiary\",\"Percentage of female population age 65-69 with tertiary schooling. Completed Tertiary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.CMPT.6569.ZS\",\"Barro-Lee: Percentage of population age 65-69 with tertiary schooling. Completed Tertiary\",\"Percentage of population age 65-69 with tertiary schooling. Completed Tertiary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.CMPT.7074.FE.ZS\",\"Barro-Lee: Percentage of female population age 70-74 with tertiary schooling. Completed Tertiary\",\"Percentage of female population age 70-74 with tertiary schooling. Completed Tertiary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.CMPT.7074.ZS\",\"Barro-Lee: Percentage of population age 70-74 with tertiary schooling. Completed Tertiary\",\"Percentage of population age 70-74 with tertiary schooling. Completed Tertiary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.CMPT.75UP.FE.ZS\",\"Barro-Lee: Percentage of female population age 75+ with tertiary schooling. Completed Tertiary\",\"Percentage of female population age 75+ with tertiary schooling. Completed Tertiary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.CMPT.75UP.ZS\",\"Barro-Lee: Percentage of population age 75+ with tertiary schooling. Completed Tertiary\",\"Percentage of population age 75+ with tertiary schooling. Completed Tertiary\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.ICMP.1519.FE.ZS\",\"Barro-Lee: Percentage of female population age 15-19 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Percentage of female population age 15-19 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.ICMP.1519.ZS\",\"Barro-Lee: Percentage of population age 15-19 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Percentage of population age 15-19 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.ICMP.15UP.FE.ZS\",\"Barro-Lee: Percentage of female population age 15+ with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Percentage of female population age 15+ with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.ICMP.15UP.ZS\",\"Barro-Lee: Percentage of population age 15+ with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Percentage of population age 15+ with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.ICMP.2024.FE.ZS\",\"Barro-Lee: Percentage of female population age 20-24 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Percentage of female population age 20-24 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.ICMP.2024.ZS\",\"Barro-Lee: Percentage of population age 20-24 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Percentage of population age 20-24 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.ICMP.2529.FE.ZS\",\"Barro-Lee: Percentage of female population age 25-29 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Percentage of female population age 25-29 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.ICMP.2529.ZS\",\"Barro-Lee: Percentage of population age 25-29 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Percentage of population age 25-29 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.ICMP.25UP.FE.ZS\",\"Barro-Lee: Percentage of female population age 25+ with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Percentage of female population age 25+ with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.ICMP.25UP.ZS\",\"Barro-Lee: Percentage of population age 25+ with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Percentage of population age 25+ with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.ICMP.3034.FE.ZS\",\"Barro-Lee: Percentage of female population age 30-34 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Percentage of female population age 30-34 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.ICMP.3034.ZS\",\"Barro-Lee: Percentage of population age 30-34 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Percentage of population age 30-34 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.ICMP.3539.FE.ZS\",\"Barro-Lee: Percentage of female population age 35-39 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Percentage of female population age 35-39 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.ICMP.3539.ZS\",\"Barro-Lee: Percentage of population age 35-39 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Percentage of population age 35-39 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.ICMP.4044.FE.ZS\",\"Barro-Lee: Percentage of female population age 40-44 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Percentage of female population age 40-44 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.ICMP.4044.ZS\",\"Barro-Lee: Percentage of population age 40-44 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Percentage of population age 40-44 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.ICMP.4549.FE.ZS\",\"Barro-Lee: Percentage of female population age 45-49 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Percentage of female population age 45-49 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.ICMP.4549.ZS\",\"Barro-Lee: Percentage of population age 45-49 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Percentage of population age 45-49 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.ICMP.5054.FE.ZS\",\"Barro-Lee: Percentage of female population age 50-54 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Percentage of female population age 50-54 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.ICMP.5054.ZS\",\"Barro-Lee: Percentage of population age 50-54 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Percentage of population age 50-54 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.ICMP.5559.FE.ZS\",\"Barro-Lee: Percentage of female population age 55-59 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Percentage of female population age 55-59 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.ICMP.5559.ZS\",\"Barro-Lee: Percentage of population age 55-59 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Percentage of population age 55-59 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.ICMP.6064.FE.ZS\",\"Barro-Lee: Percentage of female population age 60-64 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Percentage of female population age 60-64 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.ICMP.6064.ZS\",\"Barro-Lee: Percentage of population age 60-64 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Percentage of population age 60-64 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.ICMP.6569.FE.ZS\",\"Barro-Lee: Percentage of female population age 65-69 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Percentage of female population age 65-69 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.ICMP.6569.ZS\",\"Barro-Lee: Percentage of population age 65-69 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Percentage of population age 65-69 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.ICMP.7074.FE.ZS\",\"Barro-Lee: Percentage of female population age 70-74 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Percentage of female population age 70-74 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.ICMP.7074.ZS\",\"Barro-Lee: Percentage of population age 70-74 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Percentage of population age 70-74 with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.ICMP.75UP.FE.ZS\",\"Barro-Lee: Percentage of female population age 75+ with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Percentage of female population age 75+ with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.ICMP.75UP.ZS\",\"Barro-Lee: Percentage of population age 75+ with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Percentage of population age 75+ with tertiary schooling. Total (Incomplete and Completed Tertiary)\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.SCHL.1519\",\"Barro-Lee: Average years of tertiary schooling, age 15-19, total\",\"Average years of tertiary schooling, 15-19, total is the average years of tertiary education completed among people age 15-19.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.SCHL.1519.FE\",\"Barro-Lee: Average years of tertiary schooling, age 15-19, female\",\"Average years of tertiary schooling, 15-19, female is the average years of tertiary education completed among females age 15-19.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.SCHL.15UP\",\"Barro-Lee: Average years of tertiary schooling, age 15+, total\",\"Average years of tertiary schooling, 15+, total is the average years of tertiary education completed among people over age 15.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.SCHL.15UP.FE\",\"Barro-Lee: Average years of tertiary schooling, age 15+, female\",\"Average years of tertiary schooling, 15+, female is the average years of tertiary education completed among females over age 15.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.SCHL.2024\",\"Barro-Lee: Average years of tertiary schooling, age 20-24, total\",\"Average years of tertiary schooling, 20-24, total is the average years of tertiary education completed among people age 20-24.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.SCHL.2024.FE\",\"Barro-Lee: Average years of tertiary schooling, age 20-24, female\",\"Average years of tertiary schooling, 20-24, female is the average years of tertiary education completed among females age 20-24.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.SCHL.2529\",\"Barro-Lee: Average years of tertiary schooling, age 25-29, total\",\"Average years of tertiary schooling, 25-29, total is the average years of tertiary education completed among people age 25-29.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.SCHL.2529.FE\",\"Barro-Lee: Average years of tertiary schooling, age 25-29, female\",\"Average years of tertiary schooling, 25-29, female is the average years of tertiary education completed among females age 25-29.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.SCHL.25UP\",\"Barro-Lee: Average years of tertiary schooling, age 25+, total\",\"Average years of tertiary schooling, 25+, total is the average years of tertiary education completed among people over age 25.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.SCHL.25UP.FE\",\"Barro-Lee: Average years of tertiary schooling, age 25+, female\",\"Average years of tertiary schooling, 25+, female is the average years of tertiary education completed among females over age 25.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.SCHL.3034\",\"Barro-Lee: Average years of tertiary schooling, age 30-34, total\",\"Average years of tertiary schooling, 30-34, total is the average years of tertiary education completed among people age 30-34.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.SCHL.3034.FE\",\"Barro-Lee: Average years of tertiary schooling, age 30-34, female\",\"Average years of tertiary schooling, 30-34, female is the average years of tertiary education completed among females age 30-34.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.SCHL.3539\",\"Barro-Lee: Average years of tertiary schooling, age 35-39, total\",\"Average years of tertiary schooling, 35-39, total is the average years of tertiary education completed among people age 35-39.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.SCHL.3539.FE\",\"Barro-Lee: Average years of tertiary schooling, age 35-39, female\",\"Average years of tertiary schooling, 35-39, female is the average years of tertiary education completed among females age 35-39.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.SCHL.4044\",\"Barro-Lee: Average years of tertiary schooling, age 40-44, total\",\"Average years of tertiary schooling, 40-44, total is the average years of tertiary education completed among people age 40-44.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.SCHL.4044.FE\",\"Barro-Lee: Average years of tertiary schooling, age 40-44, female\",\"Average years of tertiary schooling, 40-44, female is the average years of tertiary education completed among females age 40-44.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.SCHL.4549\",\"Barro-Lee: Average years of tertiary schooling, age 45-49, total\",\"Average years of tertiary schooling, 45-49, total is the average years of tertiary education completed among people age 45-49.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.SCHL.4549.FE\",\"Barro-Lee: Average years of tertiary schooling, age 45-49, female\",\"Average years of tertiary schooling, 45-49, female is the average years of tertiary education completed among females age 45-49.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.SCHL.5054\",\"Barro-Lee: Average years of tertiary schooling, age 50-54, total\",\"Average years of tertiary schooling, 50-54, total is the average years of tertiary education completed among people age 50-54.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.SCHL.5054.FE\",\"Barro-Lee: Average years of tertiary schooling, age 50-54, female\",\"Average years of tertiary schooling, 50-54, female is the average years of tertiary education completed among females age 50-54.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.SCHL.5559\",\"Barro-Lee: Average years of tertiary schooling, age 55-59, total\",\"Average years of tertiary schooling, 55-59, total is the average years of tertiary education completed among people age 55-59.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.SCHL.5559.FE\",\"Barro-Lee: Average years of tertiary schooling, age 55-59, female\",\"Average years of tertiary schooling, 55-59, female is the average years of tertiary education completed among females age 55-59.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.SCHL.6064\",\"Barro-Lee: Average years of tertiary schooling, age 60-64, total\",\"Average years of tertiary schooling, 60-64, total is the average years of tertiary education completed among people age 60-64.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.SCHL.6064.FE\",\"Barro-Lee: Average years of tertiary schooling, age 60-64, female\",\"Average years of tertiary schooling, 60-64, female is the average years of tertiary education completed among females age 60-64.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.SCHL.6569\",\"Barro-Lee: Average years of tertiary schooling, age 65-69, total\",\"Average years of tertiary schooling, 65-69, total is the average years of tertiary education completed among people age 65-69.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.SCHL.6569.FE\",\"Barro-Lee: Average years of tertiary schooling, age 65-69, female\",\"Average years of tertiary schooling, 65-69, female is the average years of tertiary education completed among females age 65-69.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.SCHL.7074\",\"Barro-Lee: Average years of tertiary schooling, age 70-74, total\",\"Average years of tertiary schooling, 70-74, total is the average years of tertiary education completed among people age 70-74.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.SCHL.7074.FE\",\"Barro-Lee: Average years of tertiary schooling, age 70-74, female\",\"Average years of tertiary schooling, 70-74, female is the average years of tertiary education completed among females age 70-74.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.SCHL.75UP\",\"Barro-Lee: Average years of tertiary schooling, age 75+, total\",\"Average years of tertiary schooling, 75+, total is the average years of tertiary education completed among people over age 75.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BAR.TER.SCHL.75UP.FE\",\"Barro-Lee: Average years of tertiary schooling, age 75+, female\",\"Average years of tertiary schooling, 75+, female is the average years of tertiary education completed among females over age 75.\",\"Education Statistics\",\"Robert J. Barro and Jong-Wha Lee: http://www.barrolee.com/\"\n\"BARLEY\",\"Barley, $/mt, current$\",\"Barley (Canada), feed, Western No. 1, Winnipeg Commodity Exchange, spot, wholesale farmers' price\",\"Global Economic Monitor (GEM) Commodities\",\"Bloomberg; World Bank.\"\n\"BEEF\",\"Meat, beef, cents/kg, current$\",\"Meat, beef (Australia/New Zealand), chucks and cow forequarters, frozen boneless, 85% chemical lean, c.i.f. U.S. port (East Coast), ex-dock, beginning November 2002; previously cow forequarters\",\"Global Economic Monitor (GEM) Commodities\",\"Meat & Livestock Australia, Meat and Livestock Weekly; The National Provisioner; US Department of Agriculture;  World Bank.\"\n\"BG.GSR.NFSV.GD.ZS\",\"Trade in services (% of GDP)\",\"Trade in services is the sum of service exports and imports divided by the value of GDP, all in current U.S. dollars.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files, and World Bank and OECD GDP estimates.\"\n\"BM.AG.AGR.TRAC.CD\",\"Agricultural tractors, exports (FAO, current US$)\",\"Agricultural machinery refers to the number of wheel and crawler tractors (excluding garden tractors) in use in agriculture at the end of the calendar year specified or during the first quarter of the following year.  Data are in US$.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"BM.AG.AGR.TRAC.NO\",\"Agricultural tractors, exports\",\"Agricultural machinery refers to the number of wheel and crawler tractors (excluding garden tractors) in use in agriculture at the end of the calendar year specified or during the first quarter of the following year.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"BM.AG.CREL.CD\",\"Cereal exports (FAO, current US$)\",\"Cereals include wheat, rice, maize, barley, oats, rye, millet, sorghum, buckwheat, and mixed grains. Production data on cereals relate to crops harvested for dry grain only. Cereal crops harvested for hay or harvested green for food, feed, or silage and those used for grazing are excluded. \",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"BM.AG.CREL.MT\",\"Cereal exports quantity (FAO, tonnes)\",\"Cereals include wheat, rice, maize, barley, oats, rye, millet, sorghum, buckwheat, and mixed grains. Production data on cereals relate to crops harvested for dry grain only. Cereal crops harvested for hay or harvested green for food, feed, or silage and those used for grazing are excluded. \",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"BM.AG.FRST.CD\",\"Forest products imports (FAO, current US$)\",\"Forest products imports.  Data are in current U.S. dollars. \",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"BM.AG.HZ.PEST.CD\",\"Hazardous pesticides imports (FAO, current US$)\",\"Pesticides refer to insecticides, fungicides, herbicides, disinfectants and any substance or mixture of substances intended for preventing, destroying or controlling any pest, including vectors of human or animal disease, unwanted species of plants or animals causing harm during or otherwise interfering with the production, processing, storage, transport or marketing of food, agricultural commodities, wood and wood products or animal feedstuffs, or substances which may be administered to animals for the control of insects, arachnids or other pests in or on their bodies.  The term includes substances intended for use as a plant growth regulator, defoliant, desiccant or agent for thinning fruit or preventing the premature fall of fruit, and substances applied to crops either before or after harvest to protect the commodity from deterioration during storage and transport.  Pesticide trade is the value of trade covering insecticides, fungicides, herbicides, disinfectants and others, as described by the Harmonised Coding System (HS) code 3808.  Differences between figures given for total exports and total imports at the world level may be due to several factors, e.g. the time lag between the dispatch of goods from exporting country and their arrival in the importing country; the use of different classification of the same product by different countries; or the fact that some countries supply data on general trade while others give data on special trade.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"BM.AG.PEST.CD\",\"Pesticides imports (FAO, current US$)\",\"Pesticides refer to insecticides, fungicides, herbicides, disinfectants and any substance or mixture of substances intended for preventing, destroying or controlling any pest, including vectors of human or animal disease, unwanted species of plants or animals causing harm during or otherwise interfering with the production, processing, storage, transport or marketing of food, agricultural commodities, wood and wood products or animal feedstuffs, or substances which may be administered to animals for the control of insects, arachnids or other pests in or on their bodies. The term includes substances intended for use as a plant growth regulator, defoliant, desiccant or agent for thinning fruit or preventing the premature fall of fruit, and substances applied to crops either before or after harvest to protect the commodity from deterioration during storage and transport.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"BM.FOD.AGRI.CD\",\"Food imports excluding fish (FAO, current US$)\",\"Food imports excludes fish.  Data are expressed in current U.S. dollar at cost-insurance-freight (cif) prices. Excludes fish. \",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"BM.GSR.AGRI.CD\",\"Total agricultural imports (FAO, current US$)\",\"Total agricultural imports are expressed in terms of value.  They cover all movements into the country of the commodity in question during the reference period. They include commercial trade, food aid granted on specific terms, donated quantities and estimates of unrecorded trade.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"BM.GSR.CMCP.ZS\",\"Communications, computer, etc. (% of service imports, BoP)\",\"Communications, computer, information, and other services cover international telecommunications; computer data; news-related service transactions between residents and nonresidents; construction services; royalties and license fees; miscellaneous business, professional, and technical services; personal, cultural, and recreational services; manufacturing services on physical inputs owned by others; and maintenance and repair services and government services not included elsewhere.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BM.GSR.FCTY.CD\",\"Primary income payments (BoP, current US$)\",\"Primary income payments refer to employee compensation paid to nonresident workers and investment income (payments on direct investment, portfolio investment, other investments). Data are in current U.S. dollars.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BM.GSR.FXAI.CD\",\"Other income payments (BoP, current US$)\",\"Other income payments. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"BM.GSR.GNFS.CD\",\"Imports of goods and services (BoP, current US$)\",\"Imports of goods and services comprise all transactions between residents of a country and the rest of the world involving a change of ownership from nonresidents to residents of general merchandise, nonmonetary gold, and services. Data are in current U.S. dollars.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BM.GSR.INSF.ZS\",\"Insurance and financial services (% of service imports, BoP)\",\"Insurance and financial services cover various types of insurance provided to nonresidents by resident insurance enterprises and vice versa, and financial intermediary and auxiliary services (except those of insurance enterprises and pension funds) exchanged between residents and nonresidents.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BM.GSR.MRCH.CD\",\"Goods imports (BoP, current US$)\",\"Goods imports refer to all movable goods (including nonmonetary gold) involved in a change of ownership from nonresidents to residents. Data are in current U.S. dollars.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BM.GSR.NFSV.CD\",\"Service imports (BoP, current US$)\",\"Services refer to economic output of intangible commodities that may be produced, transferred, and consumed at the same time. Data are in current U.S. dollars.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BM.GSR.ROYL.CD\",\"Charges for the use of intellectual property, payments (BoP, current US$)\",\"Charges for the use of intellectual property are payments and receipts between residents and nonresidents for the authorized use of proprietary rights (such as patents, trademarks, copyrights, industrial processes and designs including trade secrets, and franchises) and for the use, through licensing agreements, of produced originals or prototypes (such as copyrights on books and manuscripts, computer software, cinematographic works, and sound recordings) and related rights (such as for live performances and television, cable, or satellite broadcast). Data are in current U.S. dollars.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BM.GSR.SERV.CD\",\"Imports of  total services (Debit, current US$)\",\"Imports of total services is calculated as the difference between imports of goods and services and merchandise imports. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"BM.GSR.TOTL.CD\",\"Imports of goods, services and primary income (BoP, current US$)\",\"Imports of goods, services and primary income is the sum of goods imports, service imports and primary income payments. Data are in current U.S. dollars.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BM.GSR.TRAN.ZS\",\"Transport services (% of service imports, BoP)\",\"Transport covers all transport services (sea, air, land, internal waterway, pipeline, space and electricity transmission) performed by residents of one economy for those of another and involving the carriage of passengers, the movement of goods (freight), rental of carriers with crew, and related support and auxiliary services. Also included are postal and courier services. Excluded are freight insurance (included in insurance services); goods procured in ports by nonresident carriers (included in goods); maintenance and repairs on transport equipment (included in maintenance and repair services n.i.e.); and repairs of railway facilities, harbors, and airfield facilities (included in construction).\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BM.GSR.TRVL.ZS\",\"Travel services (% of service imports, BoP)\",\"Travel covers goods and services acquired from an economy by travelers for their own use during visits of less than one year in that economy for either business or personal purposes. Travel includes local transport (i.e., transport within the economy being visited and provided by a resident of that economy), but excludes international transport (which is included in passenger transport. Travel also excludes goods for resale, which are included in general merchandise.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BM.KLT.DINV.CD\",\"Foreign direct investment, net outflows by reporting economy (IMF-BoP, current US$)\",\"Foreign direct investment are the net inflows of investment to acquire a lasting management interest (10 percent or more of voting stock) in an enterprise operating in an economy other than that of the investor. It is the sum of equity capital, reinvestment of earnings, other long-term capital, and short-term capital as shown in the balance of payments. This series shows net outflows of investment from the reporting economy to the rest of the world. Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BM.KLT.DINV.CD.WD\",\"Foreign direct investment, net outflows (BoP, current US$)\",\"Foreign direct investment refers to direct investment equity flows in an economy. It is the sum of equity capital, reinvestment of earnings, and other capital. Direct investment is a category of cross-border investment associated with a resident in one economy having control or a significant degree of influence on the management of an enterprise that is resident in another economy. Ownership of 10 percent or more of the ordinary shares of voting stock is the criterion for determining the existence of a direct investment relationship. This series shows net outflows of investment from the reporting economy to the rest of the world. Data are in current U.S. dollars.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments database, supplemented by data from the United Nations Conference on Trade and Development and official national sources.\"\n\"BM.KLT.DINV.WD.GD.ZS\",\"Foreign direct investment, net outflows (% of GDP)\",\"Foreign direct investment are the net inflows of investment to acquire a lasting management interest (10 percent or more of voting stock) in an enterprise operating in an economy other than that of the investor. It is the sum of equity capital, reinvestment of earnings, other long-term capital, and short-term capital as shown in the balance of payments. This series shows net outflows of investment from the reporting economy to the rest of the world and is divided by GDP.\",\"World Development Indicators\",\"International Monetary Fund, International Financial Statistics and Balance of Payments databases, World Bank, International Debt Statistics, and World Bank and OECD GDP estimates.\"\n\"BM.TRF.CURR.CD\",\"Current transfers, payments (BoP, current US$)\",\"Current transfers comprise transfers of income between residents of the reporting country and the rest of the world that carry no provisions for repayment. Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BM.TRF.MGR.CD\",\"Migrant remittance outflows (current US$)\",\"Migrants’ remittances are defined as the sum of worker’s remittances,\",\"Africa Development Indicators\",\"World Bank staff estimates based on the International Monetary Fund's Balance of Payments Statistics Yearbook 2008.  \"\n\"BM.TRF.OFDC.CD\",\"Official current transfers, payments (BoP, current US$)\",\"Current transfers are recorded in the balance of payments whenever an economy provides or receives goods, services, income, or financial items without a quid pro quo. All transfers not considered to be capital are current. Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BM.TRF.PRVT.CD\",\"Secondary income, other sectors, payments (BoP, current US$)\",\"Secondary income refers to transfers recorded in the balance of payments whenever an economy provides or receives goods, services, income, or financial items without a quid pro quo. All transfers not considered to be capital are current. Data are in current U.S. dollars.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BM.TRF.PWKR.CD\",\"Workers' remittances, payments (BoP, current US$)\",\"Workers' remittances are current transfers by migrants who are employed or intend to remain employed for more than a year in another economy in which they are considered residents. Some developing countries classify workers' remittances as a factor income receipt (and thus as a component of GNI). The World Bank adheres to international guidelines in defining GNI, and its classification of workers' remittances may therefore differ from national practices. This item shows payments by the reporting country. Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BM.TRF.PWKR.CD.DT\",\"Personal remittances, paid (current US$)\",\"Personal remittances comprise personal transfers and compensation of employees. Personal transfers consist of all current transfers in cash or in kind made or received by resident households to or from nonresident households. Personal transfers thus include all current transfers between resident and nonresident individuals. Compensation of employees refers to the income of border, seasonal, and other short-term workers who are employed in an economy where they are not resident and of residents employed by nonresident entities. Data are the sum of two items defined in the sixth edition of the IMF's Balance of Payments Manual: personal transfers and compensation of employees. Data are in current U.S. dollars. \\n \",\"World Development Indicators\",\"World Bank staff estimates based on IMF balance of payments data.\"\n\"BN.CAB.XOKA.CD\",\"Current account balance (BoP, current US$)\",\"Current account balance is the sum of net exports of goods and services, net primary income, and net secondary income. Data are in current U.S. dollars.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BN.CAB.XOKA.GD.ZS\",\"Current account balance (% of GDP)\",\"Current account balance is the sum of net exports of goods and services, net primary income, and net secondary income.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files, and World Bank and OECD GDP estimates.\"\n\"BN.CAB.XOKA.GN.ZS\",\"Current account balance (% of GNP)\",\"Current account balance is the sum of net exports of goods, services, net income, and net current transfers. Data are in current U.S. dollars.  Data are divided by GNP at market prices in U.S. dollars to facilitate comparison across economies. \",\"Africa Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BN.CUR.GDPM.ZS\",\"Current account balance excluding net official capital grants (% of GDP)\",\"Current account balance is the sum of net exports of goods, services, net income, and net current transfers.  This is divided by GDP at market prices, with both series expressed in current U.S. dollars. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"BN.DSR.UNPD.CD\",\"Debt service not paid (BoP, current US$)\",\"Debt service not paid (BoP, current US$). \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"BN.FAC.ARAC.CD\",\"Debt Service not paid: Arrears Accumulation (BoP, current US$)\",\"In the standard presentation of the balance of payments, arrears of interest and amortization--amounts that are past due and unpaid--are recorded as if the amounts had been paid on schedule, and an offsetting entry is made to reflect the associated new, short-term commitments.  Data are in current US dollars. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"BN.FIN.TOTL.CD\",\"Net financial account (BoP, current US$)\",\"The net financial account shows net acquisition and disposal of financial assets and liabilities. It measures how net lending to or borrowing from nonresidents is financed, and is conceptually equal to the sum of the balances on the current and capital accounts. Data are in current U.S. dollars.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BN.GSR.FCTY.CD\",\"Net primary income (BoP, current US$)\",\"Net primary income refers to receipts and payments of employee compensation paid to nonresident workers and investment income (receipts and payments on direct investment, portfolio investment, other investments, and receipts on reserve assets). Data are in current U.S. dollars.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BN.GSR.FCTY.CD.ZS\",\"Net income (% of GDP)\",\"Net income refers to receipts and payments of employee compensation paid to nonresident workers and investment income (receipts and payments on direct investment, portfolio investment, other investments, and receipts on reserve assets). Income derived from the use of intangible assets is recorded under business services. Data are in current U.S. dollars. \",\"Africa Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files. World Bank GDP estimates are used for the denominator.\"\n\"BN.GSR.GNFS.CD\",\"Net trade in goods and services (BoP, current US$)\",\"Net trade in goods and services is derived by offsetting imports of goods and services against exports of goods and services. Exports and imports of goods and services comprise all transactions involving a change of ownership of goods and services between residents of one country and the rest of the world. Data are in current U.S. dollars.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BN.GSR.MRCH.CD\",\"Net trade in goods (BoP, current US$)\",\"Net trade in goods is the difference between exports and imports of goods. Trade in services is not included. Data are in current U.S. dollars.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BN.KAC.EOMS.CD\",\"Net errors and omissions (BoP, current US$)\",\"Net errors and omissions constitute a residual category needed to ensure that accounts in the balance of payments statement sum to zero. Net errors and omissions are derived as the balance on the financial account minus the balances on the current and capital accounts. Data are in current U.S. dollars.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BN.KAC.FNEI.CD\",\"Capital flows not elsewhere included (BoP, current US$)\",\"This item comprises capital transactions not included elsewhere. Data are in current U.S. dollars.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"BN.KAC.OTHR.CD\",\"Other capital flows, net (BoP, current US$)\",\"The sum of short-term capital, net errors and omissions, and capital transactions not included elsewhere. Data denominated in current U.S. dollars.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"BN.KLT.DINV.CD\",\"Foreign direct investment, net (BoP, current US$)\",\"Foreign direct investment are the net inflows of investment to acquire a lasting management interest (10 percent or more of voting stock) in an enterprise operating in an economy other than that of the investor. It is the sum of equity capital, reinvestment of earnings, other long-term capital, and short-term capital as shown in the balance of payments. This series shows total net FDI. In BPM6, financial account balances are calculated as the change in assets minus the change in liabilities. Net FDI outflows are assets and net FDI inflows are liabilities. Data are in current U.S. dollars.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BN.KLT.DINV.CD.ZS\",\"Foreign direct investment (% of GDP)\",\"Foreign direct investment is net inflows of investment to acquire a lasting management interest (10 percent or more of voting stock) in an enterprise operating in an economy other than that of the investor. It is the sum of equity capital, reinvestment of earnings, other long-term capital, and short-term capital as shown in the balance of payments. This series shows total net, that is, net FDI in the reporting economy from foreign sources less net FDI by the reporting economy to the rest of the world. Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"BN.KLT.NFLW.CD\",\"Net long-term borrowing (BoP, current US$)\",\"Net long-term borrowing includes external debt disbursements less repayments due, plus other net long-term inflows. Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BN.KLT.OTHR.CD\",\"Other long-term inflows, net (BoP, current US$)\",\"Other long-term capital comprises the difference between long-term capital, as defined for total long-term capital: excluding reserves and LCFAR, and the similar item reported in IMF balance of payments statistics. Data are in current U.S. dollars.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"BN.KLT.PRVT.CD\",\"Private capital flows, total (BoP, current US$)\",\"Private capital flows consist of net foreign direct investment and portfolio investment. Foreign direct investment is net inflows of investment to acquire a lasting management interest (10 percent or more of voting stock) in an enterprise operating in an economy other than that of the investor. It is the sum of equity capital, reinvestment of earnings, other long-term capital, and short-term capital as shown in the balance of payments. The FDI included here is total net, that is, net FDI in the reporting economy from foreign sources less net FDI by the reporting economy to the rest of the world. Portfolio investment covers transactions in equity securities and debt securities. Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BN.KLT.PRVT.GD.ZS\",\"Private capital flows, total (% of GDP)\",\"Private capital flows consist of net foreign direct investment and portfolio investment. Foreign direct investment is net inflows of investment to acquire a lasting management interest (10 percent or more of voting stock) in an enterprise operating in an economy other than that of the investor. It is the sum of equity capital, reinvestment of earnings, other long-term capital, and short-term capital as shown in the balance of payments. The FDI included here is total net, that is, net FDI in the reporting economy from foreign sources less net FDI by the reporting economy to the rest of the world. Portfolio investment covers transactions in equity securities and debt securities.\",\"Africa Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files, and World Bank and OECD GDP estimates.\"\n\"BN.KLT.PTXL.CD\",\"Portfolio Investment, net (BoP, current US$)\",\"Portfolio investment covers transactions in equity securities and debt securities. Data are in current U.S. dollars.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BN.RES.INCL.CD\",\"Reserves and related items (BoP, current US$)\",\"Reserves and related items is the net change in a country's holdings of international reserves resulting from transactions on the current, capital, and financial accounts. Reserve assets are those external assets that are readily available to and controlled by monetary authorities for meeting balance of payments financing needs, and include holdings of monetary gold, special drawing rights (SDRs), reserve position in the International Monetary Fund (IMF), and other reserve assets. Also included are net credit and loans from the IMF (excluding reserve position) and total exceptional financing. Data are in current U.S. dollars.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BN.TRF.CURR.CD\",\"Net secondary income (BoP, current US$)\",\"Secondary income refers to transfers recorded in the balance of payments whenever an economy provides or receives goods, services, income, or financial items without a quid pro quo. All transfers not considered to be capital are current. Data are in current U.S. dollars.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BN.TRF.CURR.CD.ZS\",\"Net current transfers (% of GDP)\",\"Net current transfers are recorded in the balance of payments whenever an economy provides or receives goods, services, income, or financial items without a quid pro quo. All transfers not considered to be capital are current. Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files. World Bank GDP estimates are used for the denominator.\"\n\"BN.TRF.KOGT.CD\",\"Net capital account (BoP, current US$)\",\"Net capital account records acquisitions and disposals of nonproduced nonfinancial assets, such as land sold to embassies and sales of leases and licenses, as well as capital transfers, including government debt forgiveness. The use of the term capital account in this context is designed to be consistent with the System of National Accounts, which distinguishes between capital transactions and financial transactions. Data are in current U.S. dollars.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BN.TRF.OFDC.CD\",\"Official current transfers, net (BoP, current US$)\",\"Current transfers are recorded in the balance of payments whenever an economy provides or receives goods, services, income, or financial items without a quid pro quo. All transfers not considered to be capital are current. Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BN.TRF.PRVT.CD\",\"Private current transfers, net (BoP, current US$)\",\"Current transfers are recorded in the balance of payments whenever an economy provides or receives goods, services, income, or financial items without a quid pro quo. All transfers not considered to be capital are current. Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BN.TRF.PWKR.CD\",\"Workers' remittances, net (BoP, current US$)\",\"Workers' remittances are current transfers by migrants who are employed or intend to remain employed for more than a year in another economy in which they are considered residents. Some developing countries classify workers' remittances as a factor income receipt (and thus as a component of GNI). The World Bank adheres to international guidelines in defining GNI, and its classification of workers' remittances may therefore differ from national practices. Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BN.TRN.KOGT.CD\",\"Grants (disbursements) from new commitments (BoP, current US$)\",\"Grants (disbursements) from new commitments in current US dollars.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"BPK.AUD.SUBN\",\"BPK Audit Report on Sub-National Budget\",\"\",\"INDO-DAPOER\",\"BPK - Indonesia Audit Board, Report\"\n\"BX.AG.AGR.TRAC.CD\",\"Agricultural tractors, imports (FAO, current US$)\",\"Agricultural machinery refers to the number of wheel and crawler tractors (excluding garden tractors) in use in agriculture at the end of the calendar year specified or during the first quarter of the following year.  Data are in US$.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"BX.AG.AGR.TRAC.NO\",\"Agricultural tractors, imports\",\"Agricultural machinery refers to the number of wheel and crawler tractors (excluding garden tractors) in use in agriculture at the end of the calendar year specified or during the first quarter of the following year.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"BX.AG.CREL.CD\",\"Cereal imports (FAO, current US$)\",\"Cereals include wheat, rice, maize, barley, oats, rye, millet, sorghum, buckwheat, and mixed grains. Production data on cereals relate to crops harvested for dry grain only. Cereal crops harvested for hay or harvested green for food, feed, or silage and those used for grazing are excluded.  \",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"BX.AG.CREL.MT\",\"Cereal imports quantity (FAO, tonnes)\",\"Cereals include wheat, rice, maize, barley, oats, rye, millet, sorghum, buckwheat, and mixed grains. Production data on cereals relate to crops harvested for dry grain only. Cereal crops harvested for hay or harvested green for food, feed, or silage and those used for grazing are excluded.  \",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"BX.AG.FRST.CD\",\"Forest products exports (FAO, current US$)\",\"Forest products exports.  Data are in current U.S. dollars.  \",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"BX.AG.HZ.PEST.CD\",\"Hazardous pesticides exports (FAO, current US$)\",\"Pesticides refer to insecticides, fungicides, herbicides, disinfectants and any substance or mixture of substances intended for preventing, destroying or controlling any pest, including vectors of human or animal disease, unwanted species of plants or animals causing harm during or otherwise interfering with the production, processing, storage, transport or marketing of food, agricultural commodities, wood and wood products or animal feedstuffs, or substances which may be administered to animals for the control of insects, arachnids or other pests in or on their bodies.  The term includes substances intended for use as a plant growth regulator, defoliant, desiccant or agent for thinning fruit or preventing the premature fall of fruit, and substances applied to crops either before or after harvest to protect the commodity from deterioration during storage and transport.  Pesticide trade is the value of trade covering insecticides, fungicides, herbicides, disinfectants and others, as described by the Harmonised Coding System (HS) code 3808.  Differences between figures given for total exports and total imports at the world level may be due to several factors, e.g. the time lag between the dispatch of goods from exporting country and their arrival in the importing country; the use of different classification of the same product by different countries; or the fact that some countries supply data on general trade while others give data on special trade.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"BX.AG.PEST.CD\",\"Pesticides exports (FAO, current US$)\",\"Pesticides trade refers to the value of all types of pesticides (put up in forms or packings for retail sale or as preparations or articles), provided to (exports) or received (imported) from the rest of the world. Differences between figures given for total exports and total imports at the world level may be due to several factors, e.g. the time lag between the dispatch of goods from exporting country and their arrival in the importing country; the use of different classification of the same product by different countries; or the fact that some countries supply data on general trade while others give data on special trade.  Pesticides refers to insecticides, fungicides, herbicides, disinfectants and any substance intended for preventing, destroying, attracting, repelling, or controlling any pest including unwanted species of plants or animals during the production, storage, transport, distribution, and processing of food, agricultural commodities, or animal feeds of which may be administered to animals for the control of ectoparasites. \",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"BX.FOD.AGRI.CD\",\"Food exports excluding fish (FAO, current US$)\",\"Food exports an are expressed in current U.S. dollars at free on board (fob) prices. Excludes fish.  \",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"BX.GRT.EXTA.CD.WD\",\"Grants, excluding technical cooperation (BoP, current US$)\",\"Grants are defined as legally binding commitments that obligate a specific value of funds available for disbursement for which there is no repayment requirement. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics, and OECD.\"\n\"BX.GRT.TECH.CD.WD\",\"Technical cooperation grants (BoP, current US$)\",\"Technical cooperation grants include free-standing technical cooperation grants, which are intended to finance the transfer of technical and managerial skills or of technology for the purpose of building up general national capacity without reference to any specific investment projects; and investment-related technical cooperation grants, which are provided to strengthen the capacity to execute specific investment projects. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics, and OECD.\"\n\"BX.GSR.AGRI.CD\",\"Total agricultural exports (FAO, current US$)\",\"Total agricultural imports are expressed in terms of value.  They cover all movements into the country of the commodity in question during the reference period. They include commercial trade, food aid granted on specific terms, donated quantities and estimates of unrecorded trade.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"BX.GSR.CCIS.CD\",\"ICT service exports (BoP, current US$)\",\"Information and communication technology service exports include computer and communications services (telecommunications and postal and courier services) and information services (computer data and news-related service transactions). Data are in current U.S. dollars.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BX.GSR.CCIS.ZS\",\"ICT service exports (% of service exports, BoP)\",\"Information and communication technology service exports include computer and communications services (telecommunications and postal and courier services) and information services (computer data and news-related service transactions).\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BX.GSR.CMCP.ZS\",\"Communications, computer, etc. (% of service exports, BoP)\",\"Communications, computer, information, and other services cover international telecommunications; computer data; news-related service transactions between residents and nonresidents; construction services; royalties and license fees; miscellaneous business, professional, and technical services; personal, cultural, and recreational services; manufacturing services on physical inputs owned by others; and maintenance and repair services and government services not included elsewhere.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BX.GSR.FCTY.CD\",\"Primary income receipts (BoP, current US$)\",\"Primary income receipts refer to employee compensation paid to resident workers working abroad and investment income (receipts on direct investment, portfolio investment, other investments, and receipts on reserve assets). Data are in current U.S. dollars.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BX.GSR.GNFS.CD\",\"Exports of goods and services (BoP, current US$)\",\"Exports of goods and services comprise all transactions between residents of a country and the rest of the world involving a change of ownership from residents to nonresidents of general merchandise, net exports of goods under merchanting, nonmonetary gold, and services. Data are in current U.S. dollars.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BX.GSR.INCL.CD\",\"Exports of goods, services, income and workers' remittances (BoP, current US$)\",\"Exports of goods and services are the total value of goods and services exported as well as income and workers' remittances received. Workers' remittances include compensation of employees. Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"BX.GSR.INSF.ZS\",\"Insurance and financial services (% of service exports, BoP)\",\"Insurance and financial services cover various types of insurance provided to nonresidents by resident insurance enterprises and vice versa, and financial intermediary and auxiliary services (except those of insurance enterprises and pension funds) exchanged between residents and nonresidents.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BX.GSR.MRCH.CD\",\"Goods exports (BoP, current US$)\",\"Goods exports refer to all movable goods (including nonmonetary gold and net exports of goods under merchanting) involved in a change of ownership from residents to nonresidents. Data are in current U.S. dollars.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BX.GSR.NFSV.CD\",\"Service exports (BoP, current US$)\",\"Services refer to economic output of intangible commodities that may be produced, transferred, and consumed at the same time. Data are in current U.S. dollars.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BX.GSR.ROYL.CD\",\"Charges for the use of intellectual property, receipts (BoP, current US$)\",\"Charges for the use of intellectual property are payments and receipts between residents and nonresidents for the authorized use of proprietary rights (such as patents, trademarks, copyrights, industrial processes and designs including trade secrets, and franchises) and for the use, through licensing agreements, of produced originals or prototypes (such as copyrights on books and manuscripts, computer software, cinematographic works, and sound recordings) and related rights (such as for live performances and television, cable, or satellite broadcast). Data are in current U.S. dollars.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BX.GSR.TOTL.CD\",\"Exports of goods, services and primary income (BoP, current US$)\",\"Exports of goods, services and primary income is the sum of goods exports, service exports and primary income receipts. Data are in current U.S. dollars.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BX.GSR.TRAN.ZS\",\"Transport services (% of service exports, BoP)\",\"Transport covers all transport services (sea, air, land, internal waterway, pipeline, space and electricity transmission) performed by residents of one economy for those of another and involving the carriage of passengers, the movement of goods (freight), rental of carriers with crew, and related support and auxiliary services. Also included are postal and courier services. Excluded are freight insurance (included in insurance services); goods procured in ports by nonresident carriers (included in goods); maintenance and repairs on transport equipment (included in maintenance and repair services n.i.e.); and repairs of railway facilities, harbors, and airfield facilities (included in construction).\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BX.GSR.TRVL.ZS\",\"Travel services (% of service exports, BoP)\",\"Travel covers goods and services acquired from an economy by travelers for their own use during visits of less than one year in that economy for either business or personal purposes. Travel includes local transport (i.e., transport within the economy being visited and provided by a resident of that economy), but excludes international transport (which is included in passenger transport. Travel also excludes goods for resale, which are included in general merchandise.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BX.KLT.DINV.CD\",\"Foreign direct investment, net inflows in reporting economy (IMF-BoP, current US$)\",\"Foreign direct investment is net inflows of investment to acquire a lasting management interest (10 percent or more of voting stock) in an enterprise operating in an economy other than that of the investor. It is the sum of equity capital, reinvestment of earnings, other long-term capital, and short-term capital as shown in the balance of payments. Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BX.KLT.DINV.CD.WD\",\"Foreign direct investment, net inflows (BoP, current US$)\",\"Foreign direct investment refers to direct investment equity flows in the reporting economy. It is the sum of equity capital, reinvestment of earnings, and other capital. Direct investment is a category of cross-border investment associated with a resident in one economy having control or a significant degree of influence on the management of an enterprise that is resident in another economy. Ownership of 10 percent or more of the ordinary shares of voting stock is the criterion for determining the existence of a direct investment relationship. Data are in current U.S. dollars.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments database, supplemented by data from the United Nations Conference on Trade and Development and official national sources.\"\n\"BX.KLT.DINV.WD.GD.ZS\",\"Foreign direct investment, net inflows (% of GDP)\",\"Foreign direct investment are the net inflows of investment to acquire a lasting management interest (10 percent or more of voting stock) in an enterprise operating in an economy other than that of the investor. It is the sum of equity capital, reinvestment of earnings, other long-term capital, and short-term capital as shown in the balance of payments. This series shows net inflows (new investment inflows less disinvestment) in the reporting economy from foreign investors, and is divided by GDP.\",\"World Development Indicators\",\"International Monetary Fund, International Financial Statistics and Balance of Payments databases, World Bank, International Debt Statistics, and World Bank and OECD GDP estimates.\"\n\"BX.KLT.DREM.CD.DT\",\"Primary income on FDI, payments (current US$)\",\"Primary income on foreign direct investment covers payments of direct investment income (debit side), which consist of income on equity (dividends, branch profits, and reinvested earnings) and income on the intercompany debt (interest). Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"BX.PEF.TOTL.CD.WD\",\"Portfolio equity, net inflows (BoP, current US$)\",\"Portfolio equity includes net inflows from equity securities other than those recorded as direct investment and including shares, stocks, depository receipts (American or global), and direct purchases of shares in local stock markets by foreign investors. Data are in current U.S. dollars.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments database, and World Bank, International Debt Statistics.\"\n\"BX.TRF.CURR.CD\",\"Secondary income receipts (BoP, current US$)\",\"Secondary income refers to transfers recorded in the balance of payments whenever an economy provides or receives goods, services, income, or financial items without a quid pro quo. All transfers not considered to be capital are current. Data are in current U.S. dollars.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BX.TRF.MGR.CD\",\"Migrant remittance inflows (current US$)\",\"Migrants’ remittances are defined as the sum of worker’s remittances,\",\"Africa Development Indicators\",\"World Bank staff estimates based on the International Monetary Fund's Balance of Payments Statistics Yearbook 2008.\"\n\"BX.TRF.MGR.DT.GD.ZS\",\"Migrant remittance inflows (% of GDP)\",\"Migrants’ remittances are defined as the sum of worker’s remittances,\",\"Africa Development Indicators\",\"World Bank staff estimates based on the International Monetary Fund's Balance of Payments Statistics Yearbook 2008, and World Bank and OECD GDP estimates.\"\n\"BX.TRF.OFDC.CD\",\"Official current transfers, receipts (BoP, current US$)\",\"Current transfers are recorded in the balance of payments whenever an economy provides or receives goods, services, income, or financial items without a quid pro quo. All transfers not considered to be capital are current. Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BX.TRF.OFFT.CD\",\"Official transfers, current and capital (Credit, current US$)\",\"Current transfers are recorded in the balance of payments whenever an economy provides or receives goods, services, income, or financial items without a quid pro quo. All transfers not considered to be capital are current. Data are in current U.S. dollars\",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"BX.TRF.PRVT.CD\",\"Private current transfers, receipts (BoP, current US$)\",\"Current transfers are recorded in the balance of payments whenever an economy provides or receives goods, services, income, or financial items without a quid pro quo. All transfers not considered to be capital are current. Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BX.TRF.PWKR.CD\",\"Personal transfers, receipts (BoP, current US$)\",\"Personal transfers consist of all current transfers in cash or in kind made or received by resident households to or from nonresident households. Personal transfers thus include all current transfers between resident and nonresident individuals. Data are in current U.S. dollars.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"BX.TRF.PWKR.CD.DT\",\"Personal remittances, received (current US$)\",\"Personal remittances comprise personal transfers and compensation of employees. Personal transfers consist of all current transfers in cash or in kind made or received by resident households to or from nonresident households. Personal transfers thus include all current transfers between resident and nonresident individuals. Compensation of employees refers to the income of border, seasonal, and other short-term workers who are employed in an economy where they are not resident and of residents employed by nonresident entities. Data are the sum of two items defined in the sixth edition of the IMF's Balance of Payments Manual: personal transfers and compensation of employees. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank staff estimates based on IMF balance of payments data.\"\n\"BX.TRF.PWKR.DT.GD.ZS\",\"Personal remittances, received (% of GDP)\",\"Personal remittances comprise personal transfers and compensation of employees. Personal transfers consist of all current transfers in cash or in kind made or received by resident households to or from nonresident households. Personal transfers thus include all current transfers between resident and nonresident individuals. Compensation of employees refers to the income of border, seasonal, and other short-term workers who are employed in an economy where they are not resident and of residents employed by nonresident entities. Data are the sum of two items defined in the sixth edition of the IMF's Balance of Payments Manual: personal transfers and compensation of employees.\\n \",\"World Development Indicators\",\"World Bank staff estimates based on IMF balance of payments data, and World Bank and OECD GDP estimates.\"\n\"BX.TRF.PWKR.GD.ZS\",\"Workers' remittances, receipts (% of GDP)\",\"Workers' remittances are current transfers by migrants who are employed or intend to remain employed for more than a year in another economy in which they are considered residents. Some developing countries classify workers' remittances as a factor income receipt (and thus as a component of GNI). The World Bank adheres to international guidelines in defining GNI, and its classification of workers' remittances may therefore differ from national practices. This item shows receipts by the reporting country. Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files, and World Bank and OECD GDP estimates.\"\n\"C1\",\"57.Firm Entry Rate\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"C2\",\"58.Firm Exit Rate\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"C3\",\"59.Firm Survival Rate\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"C4\",\"60.Share of Entrants in TEV (Total Export Value)\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"C5\",\"61.2-year Firm Survival Rate\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"C6\",\"62.3-year Firm Survival Rate\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"CC.EST\",\"Control of Corruption: Estimate\",\"Control of Corruption captures perceptions of the extent to which public power is exercised for private gain, including both petty and grand forms of corruption, as well as \\\"\\\"capture\\\"\\\" of the state by elites and private interests. \\nEstimate gives the country's score on the aggregate indicator, in units of a standard normal distribution, i.e. ranging from approximately -2.5 to 2.5.\",\"Worldwide Governance Indicators\",\"Worldwide Governance Indicators, The World Bank\"\n\"CC.NO.SRC\",\"Control of Corruption: Number of Sources\",\"Control of Corruption captures perceptions of the extent to which public power is exercised for private gain, including both petty and grand forms of corruption, as well as \\\"capture\\\" of the state by elites and private interests. \",\"Worldwide Governance Indicators\",\"Worldwide Governance Indicators, The World Bank\"\n\"CC.PER.RNK\",\"Control of Corruption: Percentile Rank\",\"Control of Corruption captures perceptions of the extent to which public power is exercised for private gain, including both petty and grand forms of corruption, as well as \\\"capture\\\" of the state by elites and private interests. \",\"Worldwide Governance Indicators\",\"Worldwide Governance Indicators, The World Bank\"\n\"CC.PER.RNK.LOWER\",\"Control of Corruption: Percentile Rank, Lower Bound of 90% Confidence Interval\",\"Control of Corruption captures perceptions of the extent to which public power is exercised for private gain, including both petty and grand forms of corruption, as well as \\\"capture\\\" of the state by elites and private interests.  Percentile rank indicates the country's rank among all countries covered by the aggregate indicator, with 0 corresponding to lowest rank, and 100 to highest rank.  Percentile ranks have been adjusted to correct for changes over time in the composition of the countries covered by the WGI.  Percentile Rank Lower refers to lower bound of 90 percent confidence interval for governance, expressed in percentile rank terms.\",\"Worldwide Governance Indicators\",\"Worldwide Governance Indicators, The World Bank\"\n\"CC.PER.RNK.UPPER\",\"Control of Corruption: Percentile Rank, Upper Bound of 90% Confidence Interval\",\"Control of Corruption captures perceptions of the extent to which public power is exercised for private gain, including both petty and grand forms of corruption, as well as \\\"capture\\\" of the state by elites and private interests.  Percentile rank indicates the country's rank among all countries covered by the aggregate indicator, with 0 corresponding to lowest rank, and 100 to highest rank.  Percentile ranks have been adjusted to correct for changes over time in the composition of the countries covered by the WGI.  Percentile Rank Upper refers to upper bound of 90 percent confidence interval for governance, expressed in percentile rank terms.\",\"Worldwide Governance Indicators\",\"Worldwide Governance Indicators, The World Bank\"\n\"CC.STD.ERR\",\"Control of Corruption: Standard Error\",\"Control of Corruption captures perceptions of the extent to which public power is exercised for private gain, including both petty and grand forms of corruption, as well as \\\"capture\\\" of the state by elites and private interests. \",\"Worldwide Governance Indicators\",\"Worldwide Governance Indicators, The World Bank\"\n\"ccx_agr_pop_eld\",\"Share of employed in agriculture - elderly\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_agr_pop_fem\",\"Share of employed in agriculture - female\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_agr_pop_mal\",\"Share of employed in agriculture - male\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_agr_pop_rur\",\"Share of employed in agriculture - rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_agr_pop_tot\",\"Share of employed in agriculture -total population\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_agr_pop_urb\",\"Share of employed in agriculture - urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_agr_pop_wrk\",\"Share of employed in agriculture - working age\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_agr_pop_you\",\"Share of employed in agriculture - youth\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_chi_pop_fem\",\"Share of children (0-14) in total population  - female\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_chi_pop_mal\",\"Share of children (0-14) in total population   - male\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_chi_pop_rur\",\"Share of children (0-14) in total population  - rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_chi_pop_tot\",\"Share of children (0-14) in total population  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_chi_pop_urb\",\"Share of children (0-14) in total population  - urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_cores_pop_fem\",\"Elderly with non-elderly co-residence rate  - female\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_cores_pop_mal\",\"Elderly with non-elderly co-residence rate  - male\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_cores_pop_rur\",\"Elderly with non-elderly co-residence rate  - rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_cores_pop_tot\",\"Elderly with non-elderly co-residence rate  - total population\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_cores_pop_urb\",\"Elderly with non-elderly co-residence rate  - urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_dep_pop_fem\",\"Dependency rate - female\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_dep_pop_mal\",\"Dependency rate - male\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_dep_pop_rur\",\"Dependency rate - rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_dep_pop_tot\",\"Dependency rate - total population\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_dep_pop_urb\",\"Dependency rate - urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_eld_pop_fem\",\"Share of elderly (60+) in total population  - female\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_eld_pop_mal\",\"Share of elderly (60+) in total population  - male\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_eld_pop_rur\",\"Share of elderly (60+) in total population  - rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_eld_pop_tot\",\"Share of elderly (60+) in total population \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_eld_pop_urb\",\"Share of elderly (60+) in total population  - urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_empl_pop_eld\",\"Share of employed - elderly\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_empl_pop_fem\",\"Share of employed - female\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_empl_pop_mal\",\"Share of employed - male\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_empl_pop_rur\",\"Share of employed - rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_empl_pop_tot\",\"Share of employed in total population\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_empl_pop_urb\",\"Share of employed - urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_empl_pop_wrk\",\"Share of employed - working age\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_empl_pop_you\",\"Share of employed - youth\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_emps_pop_eld\",\"Share of employed workers who are employers - elderly\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_emps_pop_fem\",\"Share of employed workers who are employers - female\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_emps_pop_mal\",\"Share of employed workers who are employers - male\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_emps_pop_rur\",\"Share of employed workers who are employers - rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_emps_pop_tot\",\"Share of employed workers who are employers in total population\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_emps_pop_urb\",\"Share of employed workers who are employers - urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_emps_pop_wrk\",\"Share of employed workers who are employers - working age\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_emps_pop_you\",\"Share of employed workers who are employers - youth\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_hhchi_pop_fem\",\"Share of households with children - female\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_hhchi_pop_mal\",\"Share of households with children - male\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_hhchi_pop_rur\",\"Share of households with children - rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_hhchi_pop_tot\",\"Share of households with children in total population\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_hhchi_pop_urb\",\"Share of households with children - urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_hheld_pop_fem\",\"Share of households with elderly - female\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_hheld_pop_mal\",\"Share of households with elderly - male\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_hheld_pop_rur\",\"Share of households with elderly - rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_hheld_pop_tot\",\"Share of households with elderly in total population\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_hheld_pop_urb\",\"Share of households with elderly - urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_hhwka_pop_fem\",\"Share of households with working age adults - female\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_hhwka_pop_mal\",\"Share of households with working age adults - male\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_hhwka_pop_rur\",\"Share of households with working age adults - rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_hhwka_pop_tot\",\"Share of households with working age adults in total population\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_hhwka_pop_urb\",\"Share of households with working age adults - urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_hhyou_pop_fem\",\"Share of households with youth - female\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_hhyou_pop_mal\",\"Share of households with youth - male\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_hhyou_pop_rur\",\"Share of households with youth - rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_hhyou_pop_tot\",\"Share of households with youth in total population\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_hhyou_pop_urb\",\"Share of households with youth - urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_inact_pop_eld\",\"Share of inactive students - elderly\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_inact_pop_fem\",\"Share of inactive students - female\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_inact_pop_mal\",\"Share of inactive students - male\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_inact_pop_rur\",\"Share of inactive students - rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_inact_pop_tot\",\"Share of inactive students in total population\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_inact_pop_urb\",\"Share of inactive students - urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_inact_pop_wrk\",\"Share of inactive students - working age\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_inact_pop_you\",\"Share of inactive students - youth\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_inactns_pop_eld\",\"Share of inactive non-students - elderly\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_inactns_pop_fem\",\"Share of inactive non-students - female\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_inactns_pop_mal\",\"Share of inactive non-students - male\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_inactns_pop_rur\",\"Share of inactive non-students - rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_inactns_pop_tot\",\"Share of inactive non-students in total population\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_inactns_pop_urb\",\"Share of inactive non-students - urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_inactns_pop_wrk\",\"Share of inactive non-students - working age\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_inactns_pop_you\",\"Share of inactive non-students - youth\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_ind_pop_eld\",\"Share of employed in industry - elderly\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_ind_pop_fem\",\"Share of employed in industry - female\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_ind_pop_mal\",\"Share of employed in industry - male\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_ind_pop_rur\",\"Share of employed in industry - rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_ind_pop_tot\",\"Share of employed in industry -total population\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_ind_pop_urb\",\"Share of employed in industry - urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_ind_pop_wrk\",\"Share of employed in industry - working age\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_ind_pop_you\",\"Share of employed in industry - youth\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_lf_pop_eld\",\"Labor Force Participation rates - elderly\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_lf_pop_fem\",\"Labor Force Participation rates - female\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_lf_pop_mal\",\"Labor Force Participation rates - male\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_lf_pop_rur\",\"Labor Force Participation rates - rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_lf_pop_tot\",\"Labor Force Participation rates in total population\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_lf_pop_urb\",\"Labor Force Participation rates - urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_lf_pop_wrk\",\"Labor Force Participation rates - working age\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_lf_pop_you\",\"Labor Force Participation rates - youth\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_povchi_40_fem\",\"Poverty headcount of children (below bottom 40%) - female\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_povchi_40_mal\",\"Poverty headcount of children (below bottom 40%) - male\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_povchi_40_rur\",\"Poverty headcount of children (below bottom 40%) - rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_povchi_40_tot\",\"Poverty headcount of children (below bottom 40%)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_povchi_40_urb\",\"Poverty headcount of children (below bottom 40%) - urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_poveld_40_fem\",\"Poverty headcount of the elderly (below bottom 40%) - female\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_poveld_40_mal\",\"Poverty headcount of the elderly (below bottom 40%) - male\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_poveld_40_rur\",\"Poverty headcount of the elderly (below bottom 40%) - rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_poveld_40_tot\",\"Poverty headcount of the elderly (below bottom 40%)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_poveld_40_urb\",\"Poverty headcount of the elderly (below bottom 40%) - urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_povwka_40_fem\",\"Poverty headcount of working age adults (below bottom 40%) - female\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_povwka_40_mal\",\"Poverty headcount of working age adults (below bottom 40%) - male\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_povwka_40_rur\",\"Poverty headcount of working age adults (below bottom 40%) - rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_povwka_40_tot\",\"Poverty headcount of working age adults (below bottom 40%)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_povwka_40_urb\",\"Poverty headcount of working age adults (below bottom 40%) - urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_povyou_40_fem\",\"Poverty headcount of youth (below bottom 40%) - female\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_povyou_40_mal\",\"Poverty headcount of youth (below bottom 40%) - male\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_povyou_40_rur\",\"Poverty headcount of youth (below bottom 40%) - rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_povyou_40_tot\",\"Poverty headcount of youth (below bottom 40%)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_povyou_40_urb\",\"Poverty headcount of youth (below bottom 40%) - urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_self_pop_eld\",\"Share of employed workers who are self-employed - elderly\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_self_pop_fem\",\"Share of employed workers who are self-employed - female\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_self_pop_mal\",\"Share of employed workers who are self-employed - male\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_self_pop_rur\",\"Share of employed workers who are self-employed - rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_self_pop_tot\",\"Share of employed workers who are self-employed in total population\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_self_pop_urb\",\"Share of employed workers who are self-employed - urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_self_pop_wrk\",\"Share of employed workers who are self-employed - working age\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_self_pop_you\",\"Share of employed workers who are self-employed - youth\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_serv_pop_eld\",\"Share of employed in services - elderly\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_serv_pop_fem\",\"Share of employed in services - female\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_serv_pop_mal\",\"Share of employed in services - male\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_serv_pop_rur\",\"Share of employed in services - rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_serv_pop_tot\",\"Share of employed in services -total population\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_serv_pop_urb\",\"Share of employed in services - urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_serv_pop_wrk\",\"Share of employed in services - working age\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_serv_pop_you\",\"Share of employed in services - youth\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_unempl_pop_eld\",\"Share of unemployed - elderly\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_unempl_pop_fem\",\"Share of unemployed - female\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_unempl_pop_mal\",\"Share of unemployed - male\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_unempl_pop_rur\",\"Share of unemployed - rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_unempl_pop_tot\",\"Share of unemployed in total population\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_unempl_pop_urb\",\"Share of unemployed - urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_unempl_pop_wrk\",\"Share of unemployed - working age\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_unempl_pop_you\",\"Share of unemployed - youth\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_unempr_pop_eld\",\"Unemployment rate - elderly\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_unempr_pop_fem\",\"Unemployment rate - female\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_unempr_pop_mal\",\"Unemployment rate - male\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_unempr_pop_rur\",\"Unemployment rate - rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_unempr_pop_tot\",\"Unemployment rate in total population\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_unempr_pop_urb\",\"Unemployment rate - urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_unempr_pop_wrk\",\"Unemployment rate - working age\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_unempr_pop_you\",\"Unemployment rate - youth\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_unpaid_pop_eld\",\"Share of employed workers who are unpaid - elderly\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_unpaid_pop_fem\",\"Share of employed workers who are unpaid - female\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_unpaid_pop_mal\",\"Share of employed workers who are unpaid - male\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_unpaid_pop_rur\",\"Share of employed workers who are unpaid - rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_unpaid_pop_tot\",\"Share of employed workers who are unpaid in total population\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_unpaid_pop_urb\",\"Share of employed workers who are unpaid - urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_unpaid_pop_wrk\",\"Share of employed workers who are unpaid - working age\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_unpaid_pop_you\",\"Share of employed workers who are unpaid - youth\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_wage_pop_eld\",\"Share of employed workers who are wage employees - elderly\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_wage_pop_fem\",\"Share of employed workers who are wage employees - female\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_wage_pop_mal\",\"Share of employed workers who are wage employees - male\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_wage_pop_rur\",\"Share of employed workers who are wage employees - rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_wage_pop_tot\",\"Share of employed workers who are wage employees in total population\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_wage_pop_urb\",\"Share of employed workers who are wage employees - urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_wage_pop_wrk\",\"Share of employed workers who are wage employees - working age\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_wage_pop_you\",\"Share of employed workers who are wage employees - youth\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_wka_pop_fem\",\"Share of working age (25-59) in total population  - female\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_wka_pop_mal\",\"Share of working age (25-59) in total population  - male\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_wka_pop_rur\",\"Share of working age (25-59) in total population  - rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_wka_pop_tot\",\"Share of working age (25-59) in total population \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_wka_pop_urb\",\"Share of working age (25-59) in total population  - urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_yaurr_pop_fem\",\"Youth to adult unemployment rate - female\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_yaurr_pop_mal\",\"Youth to adult unemployment rate - male\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_yaurr_pop_rur\",\"Youth to adult unemployment rate - rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_yaurr_pop_tot\",\"Youth to adult unemployment rate in total population\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_yaurr_pop_urb\",\"Youth to adult unemployment rate - urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_you_pop_fem\",\"Share of youth (15-24) in total population  - female\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_you_pop_mal\",\"Share of youth (15-24) in total population  - male\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_you_pop_rur\",\"Share of youth (15-24) in total population  - rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_you_pop_tot\",\"Share of youth (15-24) in total population \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"ccx_you_pop_urb\",\"Share of youth (15-24) in total population  - urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"CHICKEN\",\"Meat, chicken, cents/kg, current$\",\"Meat, sheep (New Zealand), frozen whole carcasses Prime Medium (PM) wholesale, Smithfield, London  beginning January 2006; previously Prime Light (PL)\",\"Global Economic Monitor (GEM) Commodities\",\"US Department of Agriculture; Bloomberg; World Bank.\"\n\"CM.MKT.INDX.ZG\",\"S&P Global Equity Indices (annual % change)\",\"S&P Global Equity Indices measure the U.S. dollar price change in the stock markets covered by the S&P/IFCI and S&P/Frontier BMI country indices.\",\"World Development Indicators\",\"Standard & Poor's, Global Stock Markets Factbook and supplemental S&P data.\"\n\"CM.MKT.LCAP.CD\",\"Market capitalization of listed domestic companies (current US$)\",\"Market capitalization (also known as market value) is the share price times the number of shares outstanding (including their several classes) for listed domestic companies. Investment funds, unit trusts, and companies whose only business goal is to hold shares of other listed companies are excluded. Data are end of year values converted to U.S. dollars using corresponding year-end foreign exchange rates.\",\"World Development Indicators\",\"World Federation of Exchanges database.\"\n\"CM.MKT.LCAP.GD.ZS\",\"Market capitalization of listed domestic companies (% of GDP)\",\"Market capitalization (also known as market value) is the share price times the number of shares outstanding (including their several classes) for listed domestic companies. Investment funds, unit trusts, and companies whose only business goal is to hold shares of other listed companies are excluded. Data are end of year values.\",\"World Development Indicators\",\"World Federation of Exchanges database.\"\n\"CM.MKT.LDOM.NO\",\"Listed domestic companies, total\",\"Listed domestic companies, including foreign companies which are exclusively listed, are those which have shares listed on an exchange at the end of the year. Investment funds, unit trusts, and companies whose only business goal is to hold shares of other listed companies, such as holding companies and investment companies, regardless of their legal status, are excluded. A company with several classes of shares is counted once. Only companies admitted to listing on the exchange are included.\",\"World Development Indicators\",\"World Federation of Exchanges database.\"\n\"CM.MKT.TRAD.CD\",\"Stocks traded, total value (current US$)\",\"The value of shares traded is the total number of shares traded, both domestic and foreign, multiplied by their respective matching prices. Figures are single counted (only one side of the transaction is considered). Companies admitted to listing and admitted to trading are included in the data. Data are end of year values converted to U.S. dollars using corresponding year-end foreign exchange rates.\",\"World Development Indicators\",\"World Federation of Exchanges database.\"\n\"CM.MKT.TRAD.GD.ZS\",\"Stocks traded, total value (% of GDP)\",\"The value of shares traded is the total number of shares traded, both domestic and foreign, multiplied by their respective matching prices. Figures are single counted (only one side of the transaction is considered). Companies admitted to listing and admitted to trading are included in the data. Data are end of year values.\",\"World Development Indicators\",\"World Federation of Exchanges database.\"\n\"CM.MKT.TRNR\",\"Stocks traded, turnover ratio of domestic shares (%)\",\"Turnover ratio is the value of domestic shares traded divided by their market capitalization. The value is annualized by multiplying the monthly average by 12.\",\"World Development Indicators\",\"World Federation of Exchanges database.\"\n\"COAL_AUS\",\"Coal, Australia, $/mt, current$\",\"Coal (Australia), thermal, f.o.b. piers, Newcastle/Port Kembla, 6,300 kcal/kg (11,340 btu/lb), less than 0.8%, sulfur 13% ash beginning January 2002; previously 6,667 kcal/kg (12,000 btu/lb), less than 1.0% sulfur, 14%  ash\",\"Global Economic Monitor (GEM) Commodities\",\"Coal Week International; Coal Week; World Bank.\"\n\"COAL_COL\",\"Coal, Colombian, $/mt, nominal$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"\"\n\"COAL_SAFRICA\",\"Coal, South African, $/mt, nominal$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"\"\n\"COCOA\",\"Cocoa, cents/kg, current$\",\"Cocoa (ICCO), International Cocoa Organization daily price, average of  the first three positions on the terminal markets of New York and London, nearest three future trading months.\",\"Global Economic Monitor (GEM) Commodities\",\"International Cocoa Organization Secretariat; World Bank.\"\n\"COCONUT_OIL\",\"Coconut oil, $/mt, current$\",\"Coconut oil (Philippines/Indonesia), bulk, c.i.f. Rotterdam\",\"Global Economic Monitor (GEM) Commodities\",\"ISTA Mielke GmbH, Oil World; US Department of Agriculture; World Bank.\"\n\"COFFEE_ARABIC\",\"Coffee, Arabica, cents/kg, current$\",\"Coffee (ICO), International Coffee Organization indicator price, other mild Arabicas, average New York and Bremen/Hamburg markets, ex-dock\",\"Global Economic Monitor (GEM) Commodities\",\"International Coffee Organization; Thomson Reuters Datastream; Complete Coffee Coverage; World Bank.\"\n\"COFFEE_ROBUS\",\"Coffee, Robusta, cents/kg, current$\",\"Coffee (ICO), International Coffee Organization indicator price, Robustas, average New York and Le Havre/Marseilles markets, ex-dock\",\"Global Economic Monitor (GEM) Commodities\",\"International Coffee Organization; Thomson Reuters Datastream; World Bank.\"\n\"COPPER\",\"Copper, $/mt, current$\",\"Copper (LME), grade A, minimum 99.9935% purity, cathodes and wire bar shapes, settlement price\",\"Global Economic Monitor (GEM) Commodities\",\"Platts Metals Week, Engineering and Mining Journal; Thomson Reuters Datastream; World Bank.\"\n\"COPRA\",\"Copra, $/mt, current$\",\"Copra (Philippines/Indonesia), bulk, c.i.f. N.W. Europe\",\"Global Economic Monitor (GEM) Commodities\",\"ISTA Mielke GmbH, Oil World; US Department of Agriculture; World Bank.\"\n\"COTTON_A_INDX\",\"Cotton, A Index, cents/kg, current$\",\"Cotton (Cotton Outlook \\\"CotlookA index\\\"), middling 1-3/32 inch, traded in Far East, C/F beginning 2006; previously Northern Europe, c.i.f.\",\"Global Economic Monitor (GEM) Commodities\",\"Cotton Outlook; International Cotton Advisory Committee; Liverpool Cotton Services Ltd.; World Bank.\"\n\"CPTOTNSXN\",\"CPI Price, nominal\",\"The consumer price index reflects the change in prices for the average consumer of a constant basket of consumer goods. Data is not seasonally adjusted.\",\"Global Economic Monitor\",\"World Bank staff calculations based on Datastream data.\"\n\"CPTOTNSXNZGY\",\"CPI Price, % y-o-y, nominal\",\"The consumer price index reflects the change in prices for the average consumer of a constant basket of consumer goods. Data is in nominal percentage terms, measured on a year-on-year basis, and not seasonally adjusted.\",\"Global Economic Monitor\",\"World Bank staff calculations based on Datastream data.\"\n\"CPTOTSAXMZGY\",\"CPI Price, % y-o-y, median weighted, seas. adj.\",\"Median inflation rate calculated for geographical aggregates (regions, world, etc) of the annual percent change of the CPI. Data is seasonally adjusted.\",\"Global Economic Monitor\",\"World Bank staff calculations based on Datastream data.\"\n\"CPTOTSAXN\",\"CPI Price, nominal, seas. adj.\",\"The consumer price index reflects the change in prices for the average consumer of a constant basket of consumer goods. Data is in nominal terms and seasonally adjusted.\",\"Global Economic Monitor\",\"World Bank staff calculations based on Datastream data.\"\n\"CPTOTSAXNZGY\",\"CPI Price, % y-o-y, nominal, seas. adj.\",\"The consumer price index reflects the change in prices for the average consumer of a constant basket of consumer goods. Data is in nominal percentage terms, measured on a year-on-year basis, and seasonally adjusted.\",\"Global Economic Monitor\",\"World Bank staff calculations based on Datastream data.\"\n\"CRUDE_BRENT\",\"Crude oil, Brendt, $/bbl, current$\",\"Crude oil, U.K. Brent 38` API, f.o.b. U.K ports, spot price\",\"Global Economic Monitor (GEM) Commodities\",\"Bloomberg; World Bank.\"\n\"CRUDE_DUBAI\",\"Crude oil, Dubai, $/bbl, current$\",\"Crude oil, Dubai Fateh 32` API, f.o.b. Dubai, spot price\",\"Global Economic Monitor (GEM) Commodities\",\"Bloomberg; World Bank.\"\n\"CRUDE_PETRO\",\"Crude oil, avg, spot, $/bbl, current$\",\"Crude oil, average spot price of Brent, Dubai and West Texas  Intermediate, equally weighed\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"CRUDE_WTI\",\"Crude oil, WTI, $/bbl, current$\",\"Crude oil, West Texas Intermediate (WTI) 40` API, f.o.b. Midland Texas, spot price\",\"Global Economic Monitor (GEM) Commodities\",\"Bloomberg; World Bank.\"\n\"D1i\",\"63.Product Entry Rate of Incumbents: Mean\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"D1ii\",\"64.Product Entry Rate of Incumbents: Median\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"D1iii\",\"65.Product Entry Rate of Incumbents: StDev\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"D2i\",\"66.Product Entry Rate of Survivors: Mean\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"D2ii\",\"67.Product Entry Rate of Survivors: Median\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"D2iii\",\"68.Product Entry Rate of Survivors: StDev\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"D3i\",\"69.Share of New Products in TEV of Incumbents: Mean\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"D3ii\",\"70.Share of New Products in TEV of Incumbents: Median\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"D3iii\",\"71.Share of New Products in TEV of Incumbents: StDev\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"D4i\",\"72.Share of New Products in TEV of Survivors: Mean\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"D4ii\",\"73.Share of New Products in TEV of Survivors: Median\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"D4iii\",\"74.Share of New Products in TEV of Survivors: StDev\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"D5i\",\"75.Product Exit Rate of Incumbents: Mean\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"D5ii\",\"76.Product Exit Rate of Incumbents: Median\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"D5iii\",\"77.Product Exit Rate of Incumbents: StDev\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"D6i\",\"78.Product Survival Rate of 2-year Incumbents: Mean\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"D6ii\",\"79.Product Survival Rate of 2-year Incumbents: Median\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"D6iii\",\"80.Product Survival Rate of 2-year Incumbents: StDev\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"DAK.AGR.CR\",\"Total Specific Allocation Grant for Agriculture (in IDR Billion)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, Ministry of Finance Regulation\"\n\"DAK.EDU.CR\",\"Total Specific Allocation Grant for Education (in IDR Billion)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, Ministry of Finance Regulation\"\n\"DAK.ENVR.CR\",\"Total Specific Allocation Grant for Environment (in IDR Billion)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, Ministry of Finance Regulation\"\n\"DAK.FRST.CR\",\"Total Specific Allocation Grant for Forestry (in IDR Billion)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, Ministry of Finance Regulation\"\n\"DAK.FSH.CR\",\"Total Specific Allocation Grant for Fishery (in IDR Billion)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, Ministry of Finance Regulation\"\n\"DAK.GOVT.CR\",\"Total Specific Allocation Grant for Government Sector (in IDR Billion)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, Ministry of Finance Regulation\"\n\"DAK.HE.BSRV.CR\",\"Total Specific Allocation Grant for Health Sector (Subsect: Basic Services) (in IDR Billion)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, Ministry of Finance Regulation\"\n\"DAK.HE.CR\",\"Total Specific Allocation Grant for Health (in IDR Billion)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, Ministry of Finance Regulation\"\n\"DAK.HE.RSRV.CR\",\"Total Specific Allocation Grant for Health Sector (Subsect: Recommended Services) (in IDR Billion)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, Ministry of Finance Regulation\"\n\"DAK.INFR.CR\",\"Total Specific Allocation Grant for Infrastructure (in IDR Billion)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, Ministry of Finance Regulation\"\n\"DAK.INFR.H2O.CR\",\"Total Specific Allocation Grant for Infrastructure Sector (Subsect: Water) (in IDR Billion)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, Ministry of Finance Regulation\"\n\"DAK.INFR.IRIG.CR\",\"Total Specific Allocation Grant for Infrastructure Sector (Subsect: Irrigation) (in IDR Billion)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, Ministry of Finance Regulation\"\n\"DAK.INFR.ROD.CR\",\"Total Specific Allocation Grant for Infrastructure Sector (Subsect: Road) (in IDR Billion)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, Ministry of Finance Regulation\"\n\"DAK.POP.CR\",\"Total Specific Allocation Grant for Demographic (in IDR Billion)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, Ministry of Finance Regulation\"\n\"DAK.TRAD.CR\",\"Total Specific Allocation Grant for Trade (in IDR Billion)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, Ministry of Finance Regulation\"\n\"DAK.VILG.CR\",\"Total Specific Allocation Grant for Village (in IDR Billion)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, Ministry of Finance Regulation\"\n\"DAP\",\"DAP, $/mt, current$\",\"DAP (diammonium phosphate), standard size, bulk, spot, f.o.b. US Gulf\",\"Global Economic Monitor (GEM) Commodities\",\"Fertilizer Week; Fertilizer International; World Bank.\"\n\"db_approve_1_dismiss\",\"Third-party approval if 1 worker is dismissed?\",\"Is third-party approval required if 1 worker is dismissed? (Yes=1; No=0)\",\"Jobs for Knowledge Platform\",\"World Bank, Doing Business project (http://www.doingbusiness.org).\"\n\"db_approvie_9_dismiss\",\"Third-party approval if 9 workers are dismissed?\",\"Is third-party approval required if 9 workers are dismissed? (Yes=1; No=0)\",\"Jobs for Knowledge Platform\",\"World Bank, Doing Business project (http://www.doingbusiness.org).\"\n\"DB_ft_prohib_perm\",\"Fixed-term contracts prohibited for permanent tasks?\",\"Are fixed-term contracts prohibited for permanent tasks (Yes=1; No=0)\",\"Jobs for Knowledge Platform\",\"World Bank, Doing Business project (http://www.doingbusiness.org).\"\n\"db_max_hr_day\",\"Maximum working days per week\",\"Maximum working days per week\",\"Jobs for Knowledge Platform\",\"World Bank, Doing Business project (http://www.doingbusiness.org).\"\n\"DB_mw_19apprentice\",\"Minimum wage for a 19-year old worker or an apprentice (US$/month)\",\"Minimum wage for a 19-year old worker or an apprentice (US$/month)\",\"Jobs for Knowledge Platform\",\"World Bank, Doing Business project (http://www.doingbusiness.org).\"\n\"db_mw_val\",\"Ratio of minimum wage to value added per worker\",\"Ratio of minimum wage to value added per worker.\",\"Jobs for Knowledge Platform\",\"World Bank, Doing Business project (http://www.doingbusiness.org).\"\n\"db_notice_20yr\",\"Notice period for redundancy dismissal (for a worker with 20 years of tenure, in salary weeks)\",\"Notice period for redundancy dismissal (for a worker with 20 years of tenure, in salary weeks)\",\"Jobs for Knowledge Platform\",\"World Bank, Doing Business project (http://www.doingbusiness.org).\"\n\"db_notice_5yr\",\"Notice period for redundancy dismissal (for a worker with 5 years of tenure, in salary weeks)\",\"Notice period for redundancy dismissal (for a worker with 5 years of tenure, in salary weeks)\",\"Jobs for Knowledge Platform\",\"World Bank, Doing Business project (http://www.doingbusiness.org).\"\n\"db_notify_1_dismiss\",\"Third-party notification if 1 worker is dismissed?\",\"Is third-party notification  required if 1 worker is dismissed? (Yes=1; No=0)\",\"Jobs for Knowledge Platform\",\"World Bank, Doing Business project (http://www.doingbusiness.org).\"\n\"db_notify_9_dismiss\",\"Third-party notification if 9 workers are dismissed?\",\"Is third-party notification required if 9 workers are dismissed? (Yes=1; No=0)\",\"Jobs for Knowledge Platform\",\"World Bank, Doing Business project (http://www.doingbusiness.org).\"\n\"db_paid_vacation_20yr\",\"Paid annual leave for a worker with 20 years of tenure (in working days)\",\"Paid annual leave for a worker with 20 years of tenure (in working days)\",\"Jobs for Knowledge Platform\",\"World Bank, Doing Business project (http://www.doingbusiness.org).\"\n\"db_paid_vacation_5yr\",\"Paid annual leave for a worker with 5 years of tenure (in working days)\",\"Paid annual leave for a worker with 5 years of tenure (in working days)\",\"Jobs for Knowledge Platform\",\"World Bank, Doing Business project (http://www.doingbusiness.org).\"\n\"db_prem_night_wk\",\"Premium for night work (% of hourly pay) in case of continuous operations\",\"Is there a required premium for night work (% of hourly pay) in case of continuous operations? (Yes=1; No=0)\",\"Jobs for Knowledge Platform\",\"World Bank, Doing Business project (http://www.doingbusiness.org).\"\n\"db_prem_wkend\",\"Premium for work on weekly rest day (% of hourly pay) in case of continuous operations\",\"Is there a required premium for work on weekly rest day (% of hourly pay) in case of continuous operations? (Yes=1; No=0)\",\"Jobs for Knowledge Platform\",\"World Bank, Doing Business project (http://www.doingbusiness.org).\"\n\"db_priority_redundancies\",\"Priority rules for redundancies?\",\"Are there priority rules for redundancies? (Yes=1; No=0)\",\"Jobs for Knowledge Platform\",\"World Bank, Doing Business project (http://www.doingbusiness.org).\"\n\"db_retrain_before_fire\",\"Retraining or reassignment obligation before redundancy?\",\"Is retraining or reassignment obligation before redundancy? (Yes=1; No=0)\",\"Jobs for Knowledge Platform\",\"World Bank, Doing Business project (http://www.doingbusiness.org).\"\n\"db_sev_pau_20yr\",\"Weeks of severance pay for redundancy of experienced workers\",\"Severance pay for redundancy dismissal (for a worker with 20 years of tenure, in salary weeks)\",\"Jobs for Knowledge Platform\",\"World Bank, Doing Business project (http://www.doingbusiness.org).\"\n\"db_sev_pay_5yr\",\"Severance pay for redundancy dismissal (for a worker with 5 years of tenure, in salary weeks)\",\"Severance pay for redundancy dismissal (for a worker with 5 years of tenure, in salary weeks)\",\"Jobs for Knowledge Platform\",\"World Bank, Doing Business project (http://www.doingbusiness.org).\"\n\"DC.DAC.AUSL.CD\",\"Net bilateral aid flows from DAC donors, Australia (current US$)\",\"Net bilateral aid flows from DAC donors are the net disbursements of official development assistance (ODA) or official aid from the members of the Development Assistance Committee (DAC). Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. DAC members are Australia, Austria, Belgium, Canada, Czech Republic, Denmark, Finland, France, Germany, Greece, Iceland, Ireland, Italy, Japan, Republic of Korea, Luxembourg, Netherlands, New Zealand, Norway, Poland, Portugal, Slovak Republic, Slovenia, Spain, Sweden, Switzerland, United Kingdom, United States, and European Union Institutions. Regional aggregates include data for economies not specified elsewhere. World and income group totals include aid not allocated by country or region. Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DC.DAC.AUTL.CD\",\"Net bilateral aid flows from DAC donors, Austria (current US$)\",\"Net bilateral aid flows from DAC donors are the net disbursements of official development assistance (ODA) or official aid from the members of the Development Assistance Committee (DAC). Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. DAC members are Australia, Austria, Belgium, Canada, Czech Republic, Denmark, Finland, France, Germany, Greece, Iceland, Ireland, Italy, Japan, Republic of Korea, Luxembourg, Netherlands, New Zealand, Norway, Poland, Portugal, Slovak Republic, Slovenia, Spain, Sweden, Switzerland, United Kingdom, United States, and European Union Institutions. Regional aggregates include data for economies not specified elsewhere. World and income group totals include aid not allocated by country or region. Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DC.DAC.BELL.CD\",\"Net bilateral aid flows from DAC donors, Belgium (current US$)\",\"Net bilateral aid flows from DAC donors are the net disbursements of official development assistance (ODA) or official aid from the members of the Development Assistance Committee (DAC). Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. DAC members are Australia, Austria, Belgium, Canada, Czech Republic, Denmark, Finland, France, Germany, Greece, Iceland, Ireland, Italy, Japan, Republic of Korea, Luxembourg, Netherlands, New Zealand, Norway, Poland, Portugal, Slovak Republic, Slovenia, Spain, Sweden, Switzerland, United Kingdom, United States, and European Union Institutions. Regional aggregates include data for economies not specified elsewhere. World and income group totals include aid not allocated by country or region. Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DC.DAC.CANL.CD\",\"Net bilateral aid flows from DAC donors, Canada (current US$)\",\"Net bilateral aid flows from DAC donors are the net disbursements of official development assistance (ODA) or official aid from the members of the Development Assistance Committee (DAC). Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. DAC members are Australia, Austria, Belgium, Canada, Czech Republic, Denmark, Finland, France, Germany, Greece, Iceland, Ireland, Italy, Japan, Republic of Korea, Luxembourg, Netherlands, New Zealand, Norway, Poland, Portugal, Slovak Republic, Slovenia, Spain, Sweden, Switzerland, United Kingdom, United States, and European Union Institutions. Regional aggregates include data for economies not specified elsewhere. World and income group totals include aid not allocated by country or region. Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DC.DAC.CECL.CD\",\"Net bilateral aid flows from DAC donors, European Union institutions (current US$)\",\"Net bilateral aid flows from DAC donors are the net disbursements of official development assistance (ODA) or official aid from the members of the Development Assistance Committee (DAC). Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. DAC members are Australia, Austria, Belgium, Canada, Czech Republic, Denmark, Finland, France, Germany, Greece, Iceland, Ireland, Italy, Japan, Republic of Korea, Luxembourg, Netherlands, New Zealand, Norway, Poland, Portugal, Slovak Republic, Slovenia, Spain, Sweden, Switzerland, United Kingdom, United States, and European Union Institutions. Regional aggregates include data for economies not specified elsewhere. World and income group totals include aid not allocated by country or region. Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DC.DAC.CHEL.CD\",\"Net bilateral aid flows from DAC donors, Switzerland (current US$)\",\"Net bilateral aid flows from DAC donors are the net disbursements of official development assistance (ODA) or official aid from the members of the Development Assistance Committee (DAC). Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. DAC members are Australia, Austria, Belgium, Canada, Czech Republic, Denmark, Finland, France, Germany, Greece, Iceland, Ireland, Italy, Japan, Republic of Korea, Luxembourg, Netherlands, New Zealand, Norway, Poland, Portugal, Slovak Republic, Slovenia, Spain, Sweden, Switzerland, United Kingdom, United States, and European Union Institutions. Regional aggregates include data for economies not specified elsewhere. World and income group totals include aid not allocated by country or region. Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DC.DAC.CZEL.CD\",\"Net bilateral aid flows from DAC donors, Czech Republic (current US$)\",\"Net bilateral aid flows from DAC donors are the net disbursements of official development assistance (ODA) or official aid from the members of the Development Assistance Committee (DAC). Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. DAC members are Australia, Austria, Belgium, Canada, Czech Republic, Denmark, Finland, France, Germany, Greece, Iceland, Ireland, Italy, Japan, Republic of Korea, Luxembourg, Netherlands, New Zealand, Norway, Poland, Portugal, Slovak Republic, Slovenia, Spain, Sweden, Switzerland, United Kingdom, United States, and European Union Institutions. Regional aggregates include data for economies not specified elsewhere. World and income group totals include aid not allocated by country or region. Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation \"\n\"DC.DAC.DEUL.CD\",\"Net bilateral aid flows from DAC donors, Germany (current US$)\",\"Net bilateral aid flows from DAC donors are the net disbursements of official development assistance (ODA) or official aid from the members of the Development Assistance Committee (DAC). Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. DAC members are Australia, Austria, Belgium, Canada, Czech Republic, Denmark, Finland, France, Germany, Greece, Iceland, Ireland, Italy, Japan, Republic of Korea, Luxembourg, Netherlands, New Zealand, Norway, Poland, Portugal, Slovak Republic, Slovenia, Spain, Sweden, Switzerland, United Kingdom, United States, and European Union Institutions. Regional aggregates include data for economies not specified elsewhere. World and income group totals include aid not allocated by country or region. Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DC.DAC.DNKL.CD\",\"Net bilateral aid flows from DAC donors, Denmark (current US$)\",\"Net bilateral aid flows from DAC donors are the net disbursements of official development assistance (ODA) or official aid from the members of the Development Assistance Committee (DAC). Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. DAC members are Australia, Austria, Belgium, Canada, Czech Republic, Denmark, Finland, France, Germany, Greece, Iceland, Ireland, Italy, Japan, Republic of Korea, Luxembourg, Netherlands, New Zealand, Norway, Poland, Portugal, Slovak Republic, Slovenia, Spain, Sweden, Switzerland, United Kingdom, United States, and European Union Institutions. Regional aggregates include data for economies not specified elsewhere. World and income group totals include aid not allocated by country or region. Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DC.DAC.ESPL.CD\",\"Net bilateral aid flows from DAC donors, Spain (current US$)\",\"Net bilateral aid flows from DAC donors are the net disbursements of official development assistance (ODA) or official aid from the members of the Development Assistance Committee (DAC). Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. DAC members are Australia, Austria, Belgium, Canada, Czech Republic, Denmark, Finland, France, Germany, Greece, Iceland, Ireland, Italy, Japan, Republic of Korea, Luxembourg, Netherlands, New Zealand, Norway, Poland, Portugal, Slovak Republic, Slovenia, Spain, Sweden, Switzerland, United Kingdom, United States, and European Union Institutions. Regional aggregates include data for economies not specified elsewhere. World and income group totals include aid not allocated by country or region. Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DC.DAC.FINL.CD\",\"Net bilateral aid flows from DAC donors, Finland (current US$)\",\"Net bilateral aid flows from DAC donors are the net disbursements of official development assistance (ODA) or official aid from the members of the Development Assistance Committee (DAC). Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. DAC members are Australia, Austria, Belgium, Canada, Czech Republic, Denmark, Finland, France, Germany, Greece, Iceland, Ireland, Italy, Japan, Republic of Korea, Luxembourg, Netherlands, New Zealand, Norway, Poland, Portugal, Slovak Republic, Slovenia, Spain, Sweden, Switzerland, United Kingdom, United States, and European Union Institutions. Regional aggregates include data for economies not specified elsewhere. World and income group totals include aid not allocated by country or region. Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DC.DAC.FRAL.CD\",\"Net bilateral aid flows from DAC donors, France (current US$)\",\"Net bilateral aid flows from DAC donors are the net disbursements of official development assistance (ODA) or official aid from the members of the Development Assistance Committee (DAC). Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. DAC members are Australia, Austria, Belgium, Canada, Czech Republic, Denmark, Finland, France, Germany, Greece, Iceland, Ireland, Italy, Japan, Republic of Korea, Luxembourg, Netherlands, New Zealand, Norway, Poland, Portugal, Slovak Republic, Slovenia, Spain, Sweden, Switzerland, United Kingdom, United States, and European Union Institutions. Regional aggregates include data for economies not specified elsewhere. World and income group totals include aid not allocated by country or region. Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DC.DAC.GBRL.CD\",\"Net bilateral aid flows from DAC donors, United Kingdom (current US$)\",\"Net bilateral aid flows from DAC donors are the net disbursements of official development assistance (ODA) or official aid from the members of the Development Assistance Committee (DAC). Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. DAC members are Australia, Austria, Belgium, Canada, Czech Republic, Denmark, Finland, France, Germany, Greece, Iceland, Ireland, Italy, Japan, Republic of Korea, Luxembourg, Netherlands, New Zealand, Norway, Poland, Portugal, Slovak Republic, Slovenia, Spain, Sweden, Switzerland, United Kingdom, United States, and European Union Institutions. Regional aggregates include data for economies not specified elsewhere. World and income group totals include aid not allocated by country or region. Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DC.DAC.GRCL.CD\",\"Net bilateral aid flows from DAC donors, Greece (current US$)\",\"Net bilateral aid flows from DAC donors are the net disbursements of official development assistance (ODA) or official aid from the members of the Development Assistance Committee (DAC). Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. DAC members are Australia, Austria, Belgium, Canada, Czech Republic, Denmark, Finland, France, Germany, Greece, Iceland, Ireland, Italy, Japan, Republic of Korea, Luxembourg, Netherlands, New Zealand, Norway, Poland, Portugal, Slovak Republic, Slovenia, Spain, Sweden, Switzerland, United Kingdom, United States, and European Union Institutions. Regional aggregates include data for economies not specified elsewhere. World and income group totals include aid not allocated by country or region. Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DC.DAC.IRLL.CD\",\"Net bilateral aid flows from DAC donors, Ireland (current US$)\",\"Net bilateral aid flows from DAC donors are the net disbursements of official development assistance (ODA) or official aid from the members of the Development Assistance Committee (DAC). Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. DAC members are Australia, Austria, Belgium, Canada, Czech Republic, Denmark, Finland, France, Germany, Greece, Iceland, Ireland, Italy, Japan, Republic of Korea, Luxembourg, Netherlands, New Zealand, Norway, Poland, Portugal, Slovak Republic, Slovenia, Spain, Sweden, Switzerland, United Kingdom, United States, and European Union Institutions. Regional aggregates include data for economies not specified elsewhere. World and income group totals include aid not allocated by country or region. Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DC.DAC.ISLL.CD\",\"Net bilateral aid flows from DAC donors, Iceland (current US$)\",\"Net bilateral aid flows from DAC donors are the net disbursements of official development assistance (ODA) or official aid from the members of the Development Assistance Committee (DAC). Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. DAC members are Australia, Austria, Belgium, Canada, Czech Republic, Denmark, Finland, France, Germany, Greece, Iceland, Ireland, Italy, Japan, Republic of Korea, Luxembourg, Netherlands, New Zealand, Norway, Poland, Portugal, Slovak Republic, Slovenia, Spain, Sweden, Switzerland, United Kingdom, United States, and European Union Institutions. Regional aggregates include data for economies not specified elsewhere. World and income group totals include aid not allocated by country or region. Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DC.DAC.ITAL.CD\",\"Net bilateral aid flows from DAC donors, Italy (current US$)\",\"Net bilateral aid flows from DAC donors are the net disbursements of official development assistance (ODA) or official aid from the members of the Development Assistance Committee (DAC). Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. DAC members are Australia, Austria, Belgium, Canada, Czech Republic, Denmark, Finland, France, Germany, Greece, Iceland, Ireland, Italy, Japan, Republic of Korea, Luxembourg, Netherlands, New Zealand, Norway, Poland, Portugal, Slovak Republic, Slovenia, Spain, Sweden, Switzerland, United Kingdom, United States, and European Union Institutions. Regional aggregates include data for economies not specified elsewhere. World and income group totals include aid not allocated by country or region. Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DC.DAC.JPNL.CD\",\"Net bilateral aid flows from DAC donors, Japan (current US$)\",\"Net bilateral aid flows from DAC donors are the net disbursements of official development assistance (ODA) or official aid from the members of the Development Assistance Committee (DAC). Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. DAC members are Australia, Austria, Belgium, Canada, Czech Republic, Denmark, Finland, France, Germany, Greece, Iceland, Ireland, Italy, Japan, Republic of Korea, Luxembourg, Netherlands, New Zealand, Norway, Poland, Portugal, Slovak Republic, Slovenia, Spain, Sweden, Switzerland, United Kingdom, United States, and European Union Institutions. Regional aggregates include data for economies not specified elsewhere. World and income group totals include aid not allocated by country or region. Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DC.DAC.KORL.CD\",\"Net bilateral aid flows from DAC donors, Korea, Rep. (current US$)\",\"Net bilateral aid flows from DAC donors are the net disbursements of official development assistance (ODA) or official aid from the members of the Development Assistance Committee (DAC). Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. DAC members are Australia, Austria, Belgium, Canada, Czech Republic, Denmark, Finland, France, Germany, Greece, Iceland, Ireland, Italy, Japan, Republic of Korea, Luxembourg, Netherlands, New Zealand, Norway, Poland, Portugal, Slovak Republic, Slovenia, Spain, Sweden, Switzerland, United Kingdom, United States, and European Union Institutions. Regional aggregates include data for economies not specified elsewhere. World and income group totals include aid not allocated by country or region. Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DC.DAC.LUXL.CD\",\"Net bilateral aid flows from DAC donors, Luxembourg (current US$)\",\"Net bilateral aid flows from DAC donors are the net disbursements of official development assistance (ODA) or official aid from the members of the Development Assistance Committee (DAC). Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. DAC members are Australia, Austria, Belgium, Canada, Czech Republic, Denmark, Finland, France, Germany, Greece, Iceland, Ireland, Italy, Japan, Republic of Korea, Luxembourg, Netherlands, New Zealand, Norway, Poland, Portugal, Slovak Republic, Slovenia, Spain, Sweden, Switzerland, United Kingdom, United States, and European Union Institutions. Regional aggregates include data for economies not specified elsewhere. World and income group totals include aid not allocated by country or region. Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DC.DAC.NLDL.CD\",\"Net bilateral aid flows from DAC donors, Netherlands (current US$)\",\"Net bilateral aid flows from DAC donors are the net disbursements of official development assistance (ODA) or official aid from the members of the Development Assistance Committee (DAC). Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. DAC members are Australia, Austria, Belgium, Canada, Czech Republic, Denmark, Finland, France, Germany, Greece, Iceland, Ireland, Italy, Japan, Republic of Korea, Luxembourg, Netherlands, New Zealand, Norway, Poland, Portugal, Slovak Republic, Slovenia, Spain, Sweden, Switzerland, United Kingdom, United States, and European Union Institutions. Regional aggregates include data for economies not specified elsewhere. World and income group totals include aid not allocated by country or region. Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DC.DAC.NORL.CD\",\"Net bilateral aid flows from DAC donors, Norway (current US$)\",\"Net bilateral aid flows from DAC donors are the net disbursements of official development assistance (ODA) or official aid from the members of the Development Assistance Committee (DAC). Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. DAC members are Australia, Austria, Belgium, Canada, Czech Republic, Denmark, Finland, France, Germany, Greece, Iceland, Ireland, Italy, Japan, Republic of Korea, Luxembourg, Netherlands, New Zealand, Norway, Poland, Portugal, Slovak Republic, Slovenia, Spain, Sweden, Switzerland, United Kingdom, United States, and European Union Institutions. Regional aggregates include data for economies not specified elsewhere. World and income group totals include aid not allocated by country or region. Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DC.DAC.NZLL.CD\",\"Net bilateral aid flows from DAC donors, New Zealand (current US$)\",\"Net bilateral aid flows from DAC donors are the net disbursements of official development assistance (ODA) or official aid from the members of the Development Assistance Committee (DAC). Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. DAC members are Australia, Austria, Belgium, Canada, Czech Republic, Denmark, Finland, France, Germany, Greece, Iceland, Ireland, Italy, Japan, Republic of Korea, Luxembourg, Netherlands, New Zealand, Norway, Poland, Portugal, Slovak Republic, Slovenia, Spain, Sweden, Switzerland, United Kingdom, United States, and European Union Institutions. Regional aggregates include data for economies not specified elsewhere. World and income group totals include aid not allocated by country or region. Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DC.DAC.POLL.CD\",\"Net bilateral aid flows from DAC donors, Poland (current US$)\",\"Net bilateral aid flows from DAC donors are the net disbursements of official development assistance (ODA) or official aid from the members of the Development Assistance Committee (DAC). Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. DAC members are Australia, Austria, Belgium, Canada, Czech Republic, Denmark, Finland, France, Germany, Greece, Iceland, Ireland, Italy, Japan, Republic of Korea, Luxembourg, Netherlands, New Zealand, Norway, Poland, Portugal, Slovak Republic, Slovenia, Spain, Sweden, Switzerland, United Kingdom, United States, and European Union Institutions. Regional aggregates include data for economies not specified elsewhere. World and income group totals include aid not allocated by country or region. Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DC.DAC.PRTL.CD\",\"Net bilateral aid flows from DAC donors, Portugal (current US$)\",\"Net bilateral aid flows from DAC donors are the net disbursements of official development assistance (ODA) or official aid from the members of the Development Assistance Committee (DAC). Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. DAC members are Australia, Austria, Belgium, Canada, Czech Republic, Denmark, Finland, France, Germany, Greece, Iceland, Ireland, Italy, Japan, Republic of Korea, Luxembourg, Netherlands, New Zealand, Norway, Poland, Portugal, Slovak Republic, Slovenia, Spain, Sweden, Switzerland, United Kingdom, United States, and European Union Institutions. Regional aggregates include data for economies not specified elsewhere. World and income group totals include aid not allocated by country or region. Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DC.DAC.SVKL.CD\",\"Net bilateral aid flows from DAC donors, Slovak Republic (current US$)\",\"Net bilateral aid flows from DAC donors are the net disbursements of official development assistance (ODA) or official aid from the members of the Development Assistance Committee (DAC). Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. DAC members are Australia, Austria, Belgium, Canada, Czech Republic, Denmark, Finland, France, Germany, Greece, Iceland, Ireland, Italy, Japan, Republic of Korea, Luxembourg, Netherlands, New Zealand, Norway, Poland, Portugal, Slovak Republic, Slovenia, Spain, Sweden, Switzerland, United Kingdom, United States, and European Union Institutions. Regional aggregates include data for economies not specified elsewhere. World and income group totals include aid not allocated by country or region. Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DC.DAC.SVNL.CD\",\"Net bilateral aid flows from DAC donors, Slovenia (current US$)\",\"Net bilateral aid flows from DAC donors are the net disbursements of official development assistance (ODA) or official aid from the members of the Development Assistance Committee (DAC). Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. DAC members are Australia, Austria, Belgium, Canada, Czech Republic, Denmark, Finland, France, Germany, Greece, Iceland, Ireland, Italy, Japan, Republic of Korea, Luxembourg, Netherlands, New Zealand, Norway, Poland, Portugal, Slovak Republic, Slovenia, Spain, Sweden, Switzerland, United Kingdom, United States, and European Union Institutions. Regional aggregates include data for economies not specified elsewhere. World and income group totals include aid not allocated by country or region. Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DC.DAC.SWEL.CD\",\"Net bilateral aid flows from DAC donors, Sweden (current US$)\",\"Net bilateral aid flows from DAC donors are the net disbursements of official development assistance (ODA) or official aid from the members of the Development Assistance Committee (DAC). Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. DAC members are Australia, Austria, Belgium, Canada, Czech Republic, Denmark, Finland, France, Germany, Greece, Iceland, Ireland, Italy, Japan, Republic of Korea, Luxembourg, Netherlands, New Zealand, Norway, Poland, Portugal, Slovak Republic, Slovenia, Spain, Sweden, Switzerland, United Kingdom, United States, and European Union Institutions. Regional aggregates include data for economies not specified elsewhere. World and income group totals include aid not allocated by country or region. Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DC.DAC.TOTL.CD\",\"Net bilateral aid flows from DAC donors, Total (current US$)\",\"Net bilateral aid flows from DAC donors are the net disbursements of official development assistance (ODA) or official aid from the members of the Development Assistance Committee (DAC). Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. DAC members are Australia, Austria, Belgium, Canada, Czech Republic, Denmark, Finland, France, Germany, Greece, Iceland, Ireland, Italy, Japan, Republic of Korea, Luxembourg, Netherlands, New Zealand, Norway, Poland, Portugal, Slovak Republic, Slovenia, Spain, Sweden, Switzerland, United Kingdom, United States, and European Union Institutions. Regional aggregates include data for economies not specified elsewhere. World and income group totals include aid not allocated by country or region. Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DC.DAC.USAL.CD\",\"Net bilateral aid flows from DAC donors, United States (current US$)\",\"Net bilateral aid flows from DAC donors are the net disbursements of official development assistance (ODA) or official aid from the members of the Development Assistance Committee (DAC). Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. DAC members are Australia, Austria, Belgium, Canada, Czech Republic, Denmark, Finland, France, Germany, Greece, Iceland, Ireland, Italy, Japan, Republic of Korea, Luxembourg, Netherlands, New Zealand, Norway, Poland, Portugal, Slovak Republic, Slovenia, Spain, Sweden, Switzerland, United Kingdom, United States, and European Union Institutions. Regional aggregates include data for economies not specified elsewhere. World and income group totals include aid not allocated by country or region. Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DC.ODA.SOCL.ZS\",\"Bilateral, sector-allocable ODA to basic social services (% of bilateral ODA commitments)\",\"Bilateral official development assistance (ODA) commitments are firm obligations, expressed in writing and backed by the necessary funds, undertaken by official bilateral donors to provide specified assistance to a recipient country or a multilateral organization. Bilateral commitments are recorded in the full amount of expected transfer, irrespective of the time required for completing disbursements. Total sector-allocable aid is the sum of aid that can be assigned to specific sectors or multisector activities. Basic social services consists of, primary education, basic life skills for youth and adults and early childhood education, basic health care, basic health infrastructure, basic nutrition, infectious disease control, health education and health personnel development, population policy and administrative management, reproductive health care, family planning, sexually transmitted disease (STD) control including HIV/AIDS, personnel development (population & reproductive health), basic drinking water supply and basic sanitation, and multi-sector aid for basic social services.\",\"Millennium Development Goals\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DC.ODA.TLDC.CD\",\"Net ODA provided, to the least developed countries (current US$)\",\"Net Official development assistance (ODA) comprises grants or loans to developing countries and territories on the OECD/DAC list of aid recipients that are undertaken by the official sector with promotion of economic development and welfare as the main objective and at concessional financial terms. The list of least developed countries (LDCs) has been agreed by the General Assembly, on the recommendation of the Committee for Development Policy, Economic and Social Council.\",\"Millennium Development Goals\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DC.ODA.TLDC.GN.ZS\",\"Net ODA provided to the least developed countries (% of GNI)\",\"Net Official development assistance (ODA) comprises grants or loans to developing countries and territories on the OECD/DAC list of aid recipients that are undertaken by the official sector with promotion of economic development and welfare as the main objective and at concessional financial terms. The list of least developed countries (LDCs) has been agreed by the General Assembly, on the recommendation of the Committee for Development Policy, Economic and Social Council. Series is shown as a share of donors' GNI.\",\"Millennium Development Goals\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DC.ODA.TOTL.CD\",\"Net ODA provided, total (current US$)\",\"Net Official development assistance (ODA) comprises grants or loans to developing countries and territories on the OECD/DAC list of aid recipients that are undertaken by the official sector with promotion of economic development and welfare as the main objective and at concessional financial terms.\",\"Millennium Development Goals\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DC.ODA.TOTL.GN.ZS\",\"Net ODA provided, total (% of GNI)\",\"Net Official development assistance (ODA) comprises grants or loans to developing countries and territories on the OECD/DAC list of aid recipients that are undertaken by the official sector with promotion of economic development and welfare as the main objective and at concessional financial terms. It is shown as a share of donors' GNI.\",\"Millennium Development Goals\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DC.ODA.TOTL.KD\",\"Net ODA provided, total (constant 2013 US$)\",\"Net Official development assistance (ODA) comprises grants or loans to developing countries and territories on the OECD/DAC list of aid recipients that are undertaken by the official sector with promotion of economic development and welfare as the main objective and at concessional financial terms. Data are in constant 2009 U.S. dollars.\",\"Millennium Development Goals\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DC.ODA.UNTD.ZS\",\"Bilateral ODA commitments that is untied (% of bilateral ODA commitments)\",\"Bilateral official development assistance (ODA) commitments are firm obligations, expressed in writing and backed by the necessary funds, undertaken by official bilateral donors to provide specified assistance to a recipient country or a multilateral organization. Bilateral commitments are recorded in the full amount of expected transfer, irrespective of the time required for completing disbursements. Untied bilateral official development assistance is assistance from country to country for which the associated goods and services may be fully and freely procured in substantially all countries.\",\"Millennium Development Goals\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DMGSRMRCHNSCD\",\"Imports Merchandise, Customs, current US$, millions\",\"Merchandise (goods) imports, cost, insurance and freight basis (c.i.f.), in current US$ millions, not seasonally adjusted.\",\"Global Economic Monitor\",\"World Bank staff calculations based on Datastream and IMF International Finance Statistics data.\"\n\"DMGSRMRCHNSKD\",\"Imports Merchandise, Customs, constant US$, millions\",\"Merchandise (goods) imports, cost, insurance and freight basis (c.i.f.), in constant US$ millions, not seasonally adjusted. The base year is 2005.\",\"Global Economic Monitor\",\"World Bank staff calculations based on Datastream and IMF International Finance Statistics data.\"\n\"DMGSRMRCHNSXD\",\"Imports Merchandise, Customs, Price, US$\",\"The price index of Merchandise (goods) imports, cost, insurance and freight basis (c.i.f.), in constant US$ millions, not seasonally adjusted. The base year is 2005.\",\"Global Economic Monitor\",\"World Bank staff calculations based on Datastream and IMF International Finance Statistics data.\"\n\"DMGSRMRCHSACD\",\"Imports Merchandise, Customs, current US$, millions, seas. adj.\",\"Merchandise (goods) imports, cost, insurance and freight basis (c.i.f.), in current US$ millions, seasonally adjusted.\",\"Global Economic Monitor\",\"World Bank staff calculations based on Datastream and IMF International Finance Statistics data.\"\n\"DMGSRMRCHSAKD\",\"Imports Merchandise, Customs, constant US$, millions, seas. adj.\",\"Merchandise (goods) exports, cost, insurance and freight basis (c.i.f.), in constant US$ millions, seasonally adjusted. The base year is 2005.\",\"Global Economic Monitor\",\"World Bank staff calculations based on Datastream and IMF International Finance Statistics data.\"\n\"DMGSRMRCHSAXD\",\"Imports Merchandise, Customs, Price, US$, seas. adj.\",\"The price index of Merchandise (goods) imports, cost, insurance and freight basis (c.i.f.), in constant US$ millions, seasonally adjusted. The base year is 2005.\",\"Global Economic Monitor\",\"World Bank staff calculations based on Datastream and IMF International Finance Statistics data.\"\n\"DP.DOD.DECD.CR.BC\",\"316.Gross Budg. Central Govt. Public Sector Debt, Domestic creditors\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECD.CR.BC.CD\",\"092.Gross Budg. Central Govt. Public Sector Debt, Domestic creditors US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DECD.CR.BC.Z1\",\"540.Gross Budg. Central Govt. Public Sector Debt, Domestic creditors(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECD.CR.CG\",\"284.Central Govt. Public Sector Debt, Domestic creditors\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECD.CR.CG.CD\",\"060.Central Govt. Public Sector Debt, Domestic creditors US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DECD.CR.CG.Z1\",\"508.Central Govt. Public Sector Debt, Domestic creditors(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECD.CR.FC\",\"380.Gross Financial Public Corporations Debt, Domestic creditors\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECD.CR.FC.CD\",\"156.Gross Financial Public Corporations Debt, Domestic creditors  US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DECD.CR.FC.Z1\",\"604.Gross Financial Public Corporations Debt, Domestic creditors(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECD.CR.GG\",\"252.General Govt. Public Sector Debt, Domestic creditors\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECD.CR.GG.CD\",\"028.General Govt. Public Sector Debt, Domestic creditors US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DECD.CR.GG.Z1\",\"476.General Govt. Public Sector Debt, Domestic creditors(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECD.CR.NF\",\"348.Gross Nonfinancial Public Corporations Debt, Domestic creditors\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECD.CR.NF.CD\",\"124.Gross Nonfinancial Public Corporations Debt, Domestic creditors  US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DECD.CR.NF.Z1\",\"572.Gross Nonfinancial Public Corporations Debt, Domestic creditors(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECD.CR.PS\",\"412.Gross Public Sector Debt, Domestic creditors\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECD.CR.PS.CD\",\"188.Gross Public Sector Debt, Domestic creditors  US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DECF.CR.BC\",\"319.Gross Budg. Central Govt. Public Sector Debt, Foreign currency\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECF.CR.BC.CD\",\"095.Gross Budg. Central Govt. Public Sector Debt, Foreign currency US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DECF.CR.BC.Z1\",\"543.Gross Budg. Central Govt. Public Sector Debt, Foreign currency(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECF.CR.CG\",\"287.Central Govt. Public Sector Debt, Foreign currency\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECF.CR.CG.CD\",\"063.Central Govt. Public Sector Debt, Foreign currency US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DECF.CR.CG.Z1\",\"511.Central Govt. Public Sector Debt, Foreign currency(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECF.CR.FC\",\"383.Gross Financial Public Corporations Debt, Foreign currency\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECF.CR.FC.CD\",\"159.Gross Financial Public Corporations Debt, Foreign currency  US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DECF.CR.FC.Z1\",\"607.Gross Financial Public Corporations Debt, Foreign currency(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECF.CR.GG\",\"255.General Govt. Public Sector Debt, Foreign currency\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECF.CR.GG.CD\",\"031.General Govt. Public Sector Debt, Foreign currency US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DECF.CR.GG.Z1\",\"479.General Govt. Public Sector Debt, Foreign currency(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECF.CR.NF\",\"351.Gross Nonfinancial Public Corporations Debt, Foreign currency\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECF.CR.NF.CD\",\"127.Gross Nonfinancial Public Corporations Debt, Foreign currency  US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DECF.CR.NF.Z1\",\"575.Gross Nonfinancial Public Corporations Debt, Foreign currency(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECF.CR.PS\",\"415.Gross Public Sector Debt, Foreign currency\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECF.CR.PS.CD\",\"191.Gross Public Sector Debt, Foreign currency  US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DECN.CR.BC\",\"318.Gross Budg. Central Govt. Public Sector Debt, Domestic currency\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECN.CR.BC.CD\",\"094.Gross Budg. Central Govt. Public Sector Debt, Domestic currency US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DECN.CR.BC.Z1\",\"542.Gross Budg. Central Govt. Public Sector Debt, Domestic currency(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECN.CR.CG\",\"286.Central Govt. Public Sector Debt, Domestic currency\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECN.CR.CG.CD\",\"062.Central Govt. Public Sector Debt, Domestic currency US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DECN.CR.CG.Z1\",\"510.Central Govt. Public Sector Debt, Domestic currency(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECN.CR.FC\",\"382.Gross Financial Public Corporations Debt, Domestic currency\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECN.CR.FC.CD\",\"158.Gross Financial Public Corporations Debt, Domestic currency  US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DECN.CR.FC.Z1\",\"606.Gross Financial Public Corporations Debt, Domestic currency(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECN.CR.GG\",\"254.General Govt. Public Sector Debt, Domestic currency\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECN.CR.GG.CD\",\"030.General Govt. Public Sector Debt, Domestic currency US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DECN.CR.GG.Z1\",\"478.General Govt. Public Sector Debt, Domestic currency(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECN.CR.NF\",\"350.Gross Nonfinancial Public Corporations Debt, Domestic currency\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECN.CR.NF.CD\",\"126.Gross Nonfinancial Public Corporations Debt, Domestic currency  US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DECN.CR.NF.Z1\",\"574.Gross Nonfinancial Public Corporations Debt, Domestic currency(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECN.CR.PS\",\"414.Gross Public Sector Debt, Domestic currency\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECN.CR.PS.CD\",\"190.Gross Public Sector Debt, Domestic currency  US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DECT.CR.BC\",\"289.Gross Budgetary Central Government Debt (PSDCGGB)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECT.CR.BC.CD\",\"065.Gross Budgetary Central Government Debt (PSDCGGB) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DECT.CR.BC.Z1\",\"513.Gross Budgetary Central Government Debt (PSDCGGB)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECT.CR.CG\",\"257.Gross Central Government Debt (PSDCG)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECT.CR.CG.CD\",\"033.Gross Central Government Debt (PSDCG) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DECT.CR.CG.Z1\",\"481.Gross Central Government Debt (PSDCG)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECT.CR.FC\",\"353.Gross Financial Public Corporations Debt (PSDFPC, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECT.CR.FC.CD\",\"129.Gross Financial Public Corporations Debt (PSDFPC) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DECT.CR.FC.Z1\",\"577.Gross Financial Public Corporations Debt (PSDFPC, LT, >1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECT.CR.GG\",\"225.General Govt. Public Sector Debt (PSDGG)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECT.CR.GG.CD\",\"001.General Govt. Public Sector Debt (PSDGG) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DECT.CR.GG.Z1\",\"449.General Govt. Public Sector Debt (PSDGG)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECT.CR.NF\",\"321.Gross Nonfinancial Public Corporations Debt (PSDNFPC)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECT.CR.NF.CD\",\"097.Gross Nonfinancial Public Corporations Debt (PSDNFPC) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DECT.CR.NF.Z1\",\"545.Gross Nonfinancial Public Corporations Debt (PSDNFPC)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECT.CR.PS\",\"385.Gross Public Sector Debt (PSDT)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECT.CR.PS.CD\",\"161.Gross Public Sector Debt (PSDT) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DECX.CR.BC\",\"317.Gross Budg. Central Govt. Public Sector Debt, External creditors\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECX.CR.BC.CD\",\"093.Gross Budg. Central Govt. Public Sector Debt, External creditors US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DECX.CR.BC.Z1\",\"541.Gross Budg. Central Govt. Public Sector Debt, External creditors(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECX.CR.CG\",\"285.Central Govt. Public Sector Debt, External creditors\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECX.CR.CG.CD\",\"061.Central Govt. Public Sector Debt, External creditors US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DECX.CR.CG.Z1\",\"509.Central Govt. Public Sector Debt, External creditors(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECX.CR.FC\",\"381.Gross Financial Public Corporations Debt, External creditors\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECX.CR.FC.CD\",\"157.Gross Financial Public Corporations Debt, External creditors  US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DECX.CR.FC.Z1\",\"605.Gross Financial Public Corporations Debt, External creditors(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECX.CR.GG\",\"253.General Govt. Public Sector Debt, External creditors\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECX.CR.GG.CD\",\"029.General Govt. Public Sector Debt, External creditors US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DECX.CR.GG.Z1\",\"477.General Govt. Public Sector Debt, External creditors(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECX.CR.NF\",\"349.Gross Nonfinancial Public Corporations Debt, External creditors\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECX.CR.NF.CD\",\"125.Gross Nonfinancial Public Corporations Debt, External creditors  US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DECX.CR.NF.Z1\",\"573.Gross Nonfinancial Public Corporations Debt, External creditors(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECX.CR.PS\",\"413.Gross Public Sector Debt, External creditors\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DECX.CR.PS.CD\",\"189.Gross Public Sector Debt, External creditors  US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLCD.CR.BC\",\"311.Currency and deposits (PSDCGGB)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLCD.CR.BC.CD\",\"087.Currency and deposits (PSDCGGB) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLCD.CR.BC.Z1\",\"535.Currency and deposits (PSDCGGB)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLCD.CR.CG\",\"279.Currency and deposits (PSDCG)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLCD.CR.CG.CD\",\"055.Currency and deposits (PSDCG) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLCD.CR.CG.Z1\",\"503.Currency and deposits (PSDCG)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLCD.CR.FC\",\"375.Currency and deposits (PSDFPC)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLCD.CR.FC.CD\",\"151.Currency and deposits (PSDFPC) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLCD.CR.FC.Z1\",\"599.Currency and deposits (PSDFPC)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLCD.CR.GG\",\"247.Currency and deposits (PSDGG, LT)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLCD.CR.GG.CD\",\"023.Currency and deposits (PSDGG) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLCD.CR.GG.Z1\",\"471.Currency and deposits (PSDGG, LT)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLCD.CR.L1.BC\",\"298.Currency and deposits (PSDCGGB, LT, <1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLCD.CR.L1.BC.CD\",\"074.Currency and deposits (PSDCGGB, LT, <1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLCD.CR.L1.BC.Z1\",\"522.Currency and deposits (PSDCGGB, LT, <1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLCD.CR.L1.CG\",\"266.Currency and deposits (PSDCG, LT, <1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLCD.CR.L1.CG.CD\",\"042.Currency and deposits (PSDCG, LT, <1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLCD.CR.L1.CG.Z1\",\"490.Currency and deposits (PSDCG, LT, <1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLCD.CR.L1.FC\",\"362.Currency and deposits (PSDFPC, LT, <1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLCD.CR.L1.FC.CD\",\"138.Currency and deposits (PSDFPC, LT, <1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLCD.CR.L1.FC.Z1\",\"586.Currency and deposits (PSDFPC, LT, <1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLCD.CR.L1.GG\",\"234.Currency and deposits (PSDGG, LT, <1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLCD.CR.L1.GG.CD\",\"010.Currency and deposits (PSDGG, LT, <1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLCD.CR.L1.GG.Z1\",\"458.Currency and deposits (PSDGG, LT, <1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLCD.CR.L1.NF\",\"330.Currency and deposits (PSDNFPC, LT, <1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLCD.CR.L1.NF.CD\",\"106.Currency and deposits (PSDNFPC, LT, <1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLCD.CR.L1.NF.Z1\",\"554.Currency and deposits (PSDNFPC, LT, <1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLCD.CR.L1.PS\",\"394.Currency and deposits (PSDT, LT,<1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLCD.CR.L1.PS.CD\",\"170.Currency and deposits (PSDT, LT,<1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLCD.CR.M1.BC\",\"305.Currency and deposits (PSDCGGB, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLCD.CR.M1.BC.CD\",\"081.Currency and deposits (PSDCGGB, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLCD.CR.M1.BC.Z1\",\"529.Currency and deposits (PSDCGGB, LT, >1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLCD.CR.M1.CG\",\"273.Currency and deposits (PSDCG, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLCD.CR.M1.CG.CD\",\"049.Currency and deposits (PSDCG, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLCD.CR.M1.CG.Z1\",\"497.Currency and deposits (PSDCG, LT, >1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLCD.CR.M1.FC\",\"369.Currency and deposits (PSDFPC, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLCD.CR.M1.FC.CD\",\"145.Currency and deposits (PSDFPC, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLCD.CR.M1.FC.Z1\",\"593.Currency and deposits (PSDFPC, LT, >1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLCD.CR.M1.GG\",\"241.Currency and deposits (PSDGG, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLCD.CR.M1.GG.CD\",\"017.Currency and deposits (PSDGG, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLCD.CR.M1.GG.Z1\",\"465.Currency and deposits (PSDGG, LT, >1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLCD.CR.M1.NF\",\"337.Currency and deposits (PSDNFPC, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLCD.CR.M1.NF.CD\",\"113.Currency and deposits (PSDNFPC, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLCD.CR.M1.NF.Z1\",\"561.Currency and deposits (PSDNFPC, LT, >1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLCD.CR.M1.PS\",\"401.Currency and deposits (PSDT, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLCD.CR.M1.PS.CD\",\"177.Currency and deposits (PSDT, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLCD.CR.NF\",\"343.Currency and deposits (PSDNFPC)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLCD.CR.NF.CD\",\"119.Currency and deposits (PSDNFPC) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLCD.CR.NF.Z1\",\"567.Currency and deposits (PSDNFPC)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLCD.CR.PS\",\"407.Currency and deposits (PSDT, LT)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLCD.CR.PS.CD\",\"183.Currency and deposits (PSDT) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLDS.CR.BC\",\"312.Debt securities (PSDCGGB)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.BC.CD\",\"088.Debt securities (PSDCGGB) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLDS.CR.BC.Z1\",\"536.Debt securities (PSDCGGB)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.CG\",\"280.Debt securities (PSDCG)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.CG.CD\",\"056.Debt securities (PSDCG) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLDS.CR.CG.Z1\",\"504.Debt securities (PSDCG)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.FC\",\"376.Debt securities (PSDFPC)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.FC.CD\",\"152.Debt securities (PSDFPC) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLDS.CR.FC.Z1\",\"600.Debt securities (PSDFPC)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.GG\",\"248.Debt securities (PSDGG, LT)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.GG.CD\",\"024.Debt securities (PSDGG) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLDS.CR.GG.Z1\",\"472.Debt securities (PSDGG, LT)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.L1.BC\",\"299.Debt securities (PSDCGGB, LT, <1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.L1.BC.CD\",\"075.Debt securities (PSDCGGB, LT, <1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLDS.CR.L1.BC.Z1\",\"523.Debt securities (PSDCGGB, LT, <1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.L1.CG\",\"267.Debt securities (PSDCG, LT, <1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.L1.CG.CD\",\"043.Debt securities (PSDCG, LT, <1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLDS.CR.L1.CG.Z1\",\"491.Debt securities (PSDCG, LT, <1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.L1.FC\",\"363.Debt securities (PSDFPC, LT, <1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.L1.FC.CD\",\"139.Debt securities (PSDFPC, LT, <1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLDS.CR.L1.FC.Z1\",\"587.Debt securities (PSDFPC, LT, <1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.L1.GG\",\"235.Debt securities (PSDGG, LT, <1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.L1.GG.CD\",\"011.Debt securities (PSDGG, LT, <1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLDS.CR.L1.GG.Z1\",\"459.Debt securities (PSDGG, LT, <1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.L1.NF\",\"331.Debt securities (PSDNFPC, LT, <1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.L1.NF.CD\",\"107.Debt securities (PSDNFPC, LT, <1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLDS.CR.L1.NF.Z1\",\"555.Debt securities (PSDNFPC, LT, <1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.L1.PS\",\"395.Debt securities (PSDT, LT,<1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.L1.PS.CD\",\"171.Debt securities (PSDT, LT,<1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLDS.CR.M1.BC\",\"306.Debt securities (PSDCGGB, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.M1.BC.CD\",\"082.Debt securities (PSDCGGB, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLDS.CR.M1.BC.Z1\",\"530.Debt securities (PSDCGGB, LT, >1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.M1.CG\",\"274.Debt securities (PSDCG, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.M1.CG.CD\",\"050.Debt securities (PSDCG, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLDS.CR.M1.CG.Z1\",\"498.Debt securities (PSDCG, LT, >1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.M1.FC\",\"370.Debt securities (PSDFPC, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.M1.FC.CD\",\"146.Debt securities (PSDFPC, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLDS.CR.M1.FC.Z1\",\"594.Debt securities (PSDFPC, LT, >1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.M1.GG\",\"242.Debt securities (PSDGG, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.M1.GG.CD\",\"018.Debt securities (PSDGG, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLDS.CR.M1.GG.Z1\",\"466.Debt securities (PSDGG, LT, >1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.M1.NF\",\"338.Debt securities (PSDNFPC, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.M1.NF.CD\",\"114.Debt securities (PSDNFPC, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLDS.CR.M1.NF.Z1\",\"562.Debt securities (PSDNFPC, LT, >1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.M1.PS\",\"402.Debt securities (PSDT, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.M1.PS.CD\",\"178.Debt securities (PSDT, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLDS.CR.MV.BC\",\"320.Gross Budg. Central Govt. Public Sector Debt securities at market value\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.MV.BC.CD\",\"096.Gross Budg. Central Govt. Public Sector Debt Securities at market value US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLDS.CR.MV.BC.Z1\",\"544.Gross Budg. Central Govt. Public Sector Debt securities at market value(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.MV.CG\",\"288.Central Govt. Public Sector Debt securities at market value\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.MV.CG.CD\",\"064.Central Govt. Public Sector Debt Securities at market value US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLDS.CR.MV.CG.Z1\",\"512.Central Govt. Public Sector Debt securities at market value(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.MV.FC\",\"384.Gross Financial Public Corporations Debt securities at market value\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.MV.FC.CD\",\"160.Gross Financial Public Corporations Debt Securities at market value US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLDS.CR.MV.GG\",\"256.General Govt. Public Sector Debt securities at market value\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.MV.GG.CD\",\"032.General Govt. Public Sector Debt Securities at market value US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLDS.CR.MV.GG.Z1\",\"480.General Govt. Public Sector Debt securities at market value(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.MV.NF\",\"352.Gross Nonfinancial Public Corporations Debt securities at market value\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.MV.NF.CD\",\"128.Gross Nonfinancial Public Corporations Debt Securities at market value US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLDS.CR.MV.NF.Z1\",\"576.Gross Nonfinancial Public Corporations Debt securities at market value(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.MV.PS\",\"416.Gross Public Sector Debt securities at market value\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.MV.PS.CD\",\"192.Gross Public Sector Debt Securities at market value US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLDS.CR.NF\",\"344.Debt securities (PSDNFPC)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.NF.CD\",\"120.Debt securities (PSDNFPC) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLDS.CR.NF.Z1\",\"568.Debt securities (PSDNFPC)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.PS\",\"408.Debt securities (PSDT, LT)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLDS.CR.PS.CD\",\"184.Debt securities (PSDT) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLIN.CR.BC\",\"314.Insurance, pensions, and standardized guarantee schemes (PSDCGGB)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLIN.CR.BC.CD\",\"090.Insurance, pensions, and standardized guarantee schemes (PSDCGGB) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLIN.CR.BC.Z1\",\"538.Insurance, pensions, and standardized guarantee schemes (PSDCGGB)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLIN.CR.CG\",\"282.Insurance, pensions, and standardized guarantee schemes (PSDCG)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLIN.CR.CG.CD\",\"058.Insurance, pensions, and standardized guarantee schemes (PSDCG) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLIN.CR.CG.Z1\",\"506.Insurance, pensions, and standardized guarantee schemes (PSDCG)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLIN.CR.FC\",\"378.Insurance, pensions, and standardized guarantee schemes (PSDFPC)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLIN.CR.FC.CD\",\"154.Insurance, pensions, and standardized guarantee schemes (PSDFPC) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLIN.CR.FC.Z1\",\"602.Insurance, pensions, and standardized guarantee schemes (PSDFPC)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLIN.CR.GG\",\"250.Insurance, pensions, and stnd. guarantee schemes (PSDGG, LT)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLIN.CR.GG.CD\",\"026.Insurance, pensions, and standardized guarantee schemes (PSDGG) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLIN.CR.GG.Z1\",\"474.Insurance, pensions, and stnd. guarantee schemes (PSDGG, LT)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLIN.CR.L1.BC\",\"301.Insurance, pensions, and standardized guarantee schemes (PSDCGGB, LT, <1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLIN.CR.L1.BC.CD\",\"077.Insurance, pensions, and standardized guarantee schemes (PSDCGGB, LT, <1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLIN.CR.L1.BC.Z1\",\"525.Insurance, pensions, and standardized guarantee schemes (PSDCGGB, LT, <1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLIN.CR.L1.CG\",\"269.Insurance, pensions, and standardized guarantee schemes (PSDCG, LT, <1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLIN.CR.L1.CG.CD\",\"045.Insurance, pensions, and standardized guarantee schemes (PSDCG, LT, <1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLIN.CR.L1.CG.Z1\",\"493.Insurance, pensions, and standardized guarantee schemes (PSDCG, LT, <1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLIN.CR.L1.FC\",\"365.Insurance, pensions, and standardized guarantee schemes (PSDFPC, LT, <1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLIN.CR.L1.FC.CD\",\"141.Insurance, pensions, and standardized guarantee schemes (PSDFPC, LT, <1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLIN.CR.L1.FC.Z1\",\"589.Insurance, pensions, and standardized guarantee schemes (PSDFPC, LT, <1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLIN.CR.L1.GG\",\"237.Insurance, pensions, and stnd. guarantee schemes (PSDGG, LT, <1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLIN.CR.L1.GG.CD\",\"013.Insurance, pensions, and standardized guarantee schemes (PSDGG, LT, <1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLIN.CR.L1.GG.Z1\",\"461.Insurance, pensions, and stnd. guarantee schemes (PSDGG, LT, <1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLIN.CR.L1.NF\",\"333.Insurance, pensions, and standardized guarantee schemes (PSDNFPC, LT, <1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLIN.CR.L1.NF.CD\",\"109.Insurance, pensions, and standardized guarantee schemes (PSDNFPC, LT, <1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLIN.CR.L1.NF.Z1\",\"557.Insurance, pensions, and standardized guarantee schemes (PSDNFPC, LT, <1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLIN.CR.L1.PS\",\"397.Insurance, pensions, and standardized guarantee schemes (PSDT, LT,<1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLIN.CR.L1.PS.CD\",\"173.Insurance, pensions, and standardized guarantee schemes (PSDT, LT,<1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLIN.CR.M1.BC\",\"308.Insurance, pensions, and standardized guarantee schemes (PSDCGGB, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLIN.CR.M1.BC.CD\",\"084.Insurance, pensions, and standardized guarantee schemes (PSDCGGB, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLIN.CR.M1.BC.Z1\",\"532.Insurance, pensions, and standardized guarantee schemes (PSDCGGB, LT, >1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLIN.CR.M1.CG\",\"276.Insurance, pensions, and standardized guarantee schemes (PSDCG, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLIN.CR.M1.CG.CD\",\"052.Insurance, pensions, and standardized guarantee schemes (PSDCG, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLIN.CR.M1.CG.Z1\",\"500.Insurance, pensions, and standardized guarantee schemes (PSDCG, LT, >1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLIN.CR.M1.FC\",\"372.Insurance, pensions, and standardized guarantee schemes (PSDFPC, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLIN.CR.M1.FC.CD\",\"148.Insurance, pensions, and standardized guarantee schemes (PSDFPC, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLIN.CR.M1.FC.Z1\",\"596.Insurance, pensions, and standardized guarantee schemes (PSDFPC, LT, >1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLIN.CR.M1.GG\",\"244.Insurance, pensions, and stnd. guarantee schemes (PSDGG, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLIN.CR.M1.GG.CD\",\"020.Insurance, pensions, and standardized guarantee schemes (PSDGG, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLIN.CR.M1.GG.Z1\",\"468.Insurance, pensions, and stnd. guarantee schemes (PSDGG, LT, >1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLIN.CR.M1.NF\",\"340.Insurance, pensions, and standardized guarantee schemes (PSDNFPC, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLIN.CR.M1.NF.CD\",\"116.Insurance, pensions, and standardized guarantee schemes (PSDNFPC, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLIN.CR.M1.NF.Z1\",\"564.Insurance, pensions, and standardized guarantee schemes (PSDNFPC, LT, >1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLIN.CR.M1.PS\",\"404.Insurance, pensions, and standardized guarantee schemes (PSDT, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLIN.CR.M1.PS.CD\",\"180.Insurance, pensions, and standardized guarantee schemes (PSDT, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLIN.CR.NF\",\"346.Insurance, pensions, and standardized guarantee schemes (PSDNFPC)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLIN.CR.NF.CD\",\"122.Insurance, pensions, and standardized guarantee schemes (PSDNFPC) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLIN.CR.NF.Z1\",\"570.Insurance, pensions, and standardized guarantee schemes (PSDNFPC)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLIN.CR.PS\",\"410.Insurance, pensions, and standardized guarantee schemes (PSDT, LT)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLIN.CR.PS.CD\",\"186.Insurance, pensions, and standardized guarantee schemes (PSDT) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLLO.CR.BC\",\"313.Loans (PSDCGGB)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLLO.CR.BC.CD\",\"089.Loans (PSDCGGB) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLLO.CR.BC.Z1\",\"537.Loans (PSDCGGB)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLLO.CR.CG\",\"281.Loans (PSDCG)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLLO.CR.CG.CD\",\"057.Loans (PSDCG) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLLO.CR.CG.Z1\",\"505.Loans (PSDCG)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLLO.CR.FC\",\"377.Loans (PSDFPC)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLLO.CR.FC.CD\",\"153.Loans (PSDFPC) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLLO.CR.FC.Z1\",\"601.Loans (PSDFPC)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLLO.CR.GG\",\"249.Loans (PSDGG, LT)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLLO.CR.GG.CD\",\"025.Loans (PSDGG) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLLO.CR.GG.Z1\",\"473.Loans (PSDGG, LT)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLLO.CR.L1.BC\",\"300.Loans (PSDCGGB, LT, <1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLLO.CR.L1.BC.CD\",\"076.Loans (PSDCGGB, LT, <1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLLO.CR.L1.BC.Z1\",\"524.Loans (PSDCGGB, LT, <1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLLO.CR.L1.CG\",\"268.Loans (PSDCG, LT, <1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLLO.CR.L1.CG.CD\",\"044.Loans (PSDCG, LT, <1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLLO.CR.L1.CG.Z1\",\"492.Loans (PSDCG, LT, <1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLLO.CR.L1.FC\",\"364.Loans (PSDFPC, LT, <1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLLO.CR.L1.FC.CD\",\"140.Loans (PSDFPC, LT, <1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLLO.CR.L1.FC.Z1\",\"588.Loans (PSDFPC, LT, <1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLLO.CR.L1.GG\",\"236.Loans (PSDGG, LT, <1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLLO.CR.L1.GG.CD\",\"012.Loans (PSDGG, LT, <1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLLO.CR.L1.GG.Z1\",\"460.Loans (PSDGG, LT, <1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLLO.CR.L1.NF\",\"332.Loans (PSDNFPC, LT, <1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLLO.CR.L1.NF.CD\",\"108.Loans (PSDNFPC, LT, <1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLLO.CR.L1.NF.Z1\",\"556.Loans (PSDNFPC, LT, <1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLLO.CR.L1.PS\",\"396.Loans (PSDT, LT,<1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLLO.CR.L1.PS.CD\",\"172.Loans (PSDT, LT,<1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLLO.CR.M1.BC\",\"307.Loans (PSDCGGB, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLLO.CR.M1.BC.CD\",\"083.Loans (PSDCGGB, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLLO.CR.M1.BC.Z1\",\"531.Loans (PSDCGGB, LT, >1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLLO.CR.M1.CG\",\"275.Loans (PSDCG, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLLO.CR.M1.CG.CD\",\"051.Loans (PSDCG, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLLO.CR.M1.CG.Z1\",\"499.Loans (PSDCG, LT, >1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLLO.CR.M1.FC\",\"371.Loans (PSDFPC, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLLO.CR.M1.FC.CD\",\"147.Loans (PSDFPC, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLLO.CR.M1.FC.Z1\",\"595.Loans (PSDFPC, LT, >1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLLO.CR.M1.GG\",\"243.Loans (PSDGG, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLLO.CR.M1.GG.CD\",\"019.Loans (PSDGG, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLLO.CR.M1.GG.Z1\",\"467.Loans (PSDGG, LT, >1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLLO.CR.M1.NF\",\"339.Loans (PSDNFPC, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLLO.CR.M1.NF.CD\",\"115.Loans (PSDNFPC, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLLO.CR.M1.NF.Z1\",\"563.Loans (PSDNFPC, LT, >1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLLO.CR.M1.PS\",\"403.Loans (PSDT, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLLO.CR.M1.PS.CD\",\"179.Loans (PSDT, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLLO.CR.NF\",\"345.Loans (PSDNFPC)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLLO.CR.NF.CD\",\"121.Loans (PSDNFPC) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLLO.CR.NF.Z1\",\"569.Loans (PSDNFPC)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLLO.CR.PS\",\"409.Loans (PSDT, LT)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLLO.CR.PS.CD\",\"185.Loans (PSDT) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLOA.CR.BC\",\"315.Other accounts payable (PSDCGGB)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLOA.CR.BC.CD\",\"091.Other accounts payable (PSDCGGB) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLOA.CR.BC.Z1\",\"539.Other accounts payable (PSDCGGB)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLOA.CR.CG\",\"283.Other accounts payable (PSDCG)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLOA.CR.CG.CD\",\"059.Other accounts payable (PSDCG) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLOA.CR.CG.Z1\",\"507.Other accounts payable (PSDCG)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLOA.CR.FC\",\"379.Other accounts payable (PSDFPC)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLOA.CR.FC.CD\",\"155.Other accounts payable (PSDFPC) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLOA.CR.FC.Z1\",\"603.Other accounts payable (PSDFPC)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLOA.CR.GG\",\"251.Other accounts payable (PSDGG, LT)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLOA.CR.GG.CD\",\"027.Other accounts payable (PSDGG) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLOA.CR.GG.Z1\",\"475.Other accounts payable (PSDGG, LT)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLOA.CR.L1.BC\",\"302.Other accounts payable (PSDCGGB, LT, <1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLOA.CR.L1.BC.CD\",\"078.Other accounts payable (PSDCGGB, LT, <1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLOA.CR.L1.BC.Z1\",\"526.Other accounts payable (PSDCGGB, LT, <1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLOA.CR.L1.CG\",\"270.Other accounts payable (PSDCG, LT, <1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLOA.CR.L1.CG.CD\",\"046.Other accounts payable (PSDCG, LT, <1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLOA.CR.L1.CG.Z1\",\"494.Other accounts payable (PSDCG, LT, <1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLOA.CR.L1.FC\",\"366.Other accounts payable (PSDFPC, LT, <1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLOA.CR.L1.FC.CD\",\"142.Other accounts payable (PSDFPC, LT, <1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLOA.CR.L1.FC.Z1\",\"590.Other accounts payable (PSDFPC, LT, <1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLOA.CR.L1.GG\",\"238.Other accounts payable (PSDGG, LT, <1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLOA.CR.L1.GG.CD\",\"014.Other accounts payable (PSDGG, LT, <1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLOA.CR.L1.GG.Z1\",\"462.Other accounts payable (PSDGG, LT, <1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLOA.CR.L1.NF\",\"334.Other accounts payable (PSDNFPC, LT, <1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLOA.CR.L1.NF.CD\",\"110.Other accounts payable (PSDNFPC, LT, <1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLOA.CR.L1.NF.Z1\",\"558.Other accounts payable (PSDNFPC, LT, <1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLOA.CR.L1.PS\",\"398.Other accounts payable (PSDT, LT,<1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLOA.CR.L1.PS.CD\",\"174.Other accounts payable (PSDT, LT,<1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLOA.CR.M1.BC\",\"309.Other accounts payable (PSDCGGB, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLOA.CR.M1.BC.CD\",\"085.Other accounts payable (PSDCGGB, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLOA.CR.M1.BC.Z1\",\"533.Other accounts payable (PSDCGGB, LT, >1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLOA.CR.M1.CG\",\"277.Other accounts payable (PSDCG, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLOA.CR.M1.CG.CD\",\"053.Other accounts payable (PSDCG, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLOA.CR.M1.CG.Z1\",\"501.Other accounts payable (PSDCG, LT, >1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLOA.CR.M1.FC\",\"373.Other accounts payable (PSDFPC, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLOA.CR.M1.FC.CD\",\"149.Other accounts payable (PSDFPC, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLOA.CR.M1.FC.Z1\",\"597.Other accounts payable (PSDFPC, LT, >1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLOA.CR.M1.GG\",\"245.Other accounts payable (PSDGG, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLOA.CR.M1.GG.CD\",\"021.Other accounts payable (PSDGG, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLOA.CR.M1.GG.Z1\",\"469.Other accounts payable (PSDGG, LT, >1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLOA.CR.M1.NF\",\"341.Other accounts payable (PSDNFPC, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLOA.CR.M1.NF.CD\",\"117.Other accounts payable (PSDNFPC, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLOA.CR.M1.NF.Z1\",\"565.Other accounts payable (PSDNFPC, LT, >1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLOA.CR.M1.PS\",\"405.Other accounts payable (PSDT, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLOA.CR.M1.PS.CD\",\"181.Other accounts payable (PSDT, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLOA.CR.NF\",\"347.Other accounts payable (PSDNFPC)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLOA.CR.NF.CD\",\"123.Other accounts payable (PSDNFPC) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLOA.CR.NF.Z1\",\"571.Other accounts payable (PSDNFPC)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLOA.CR.PS\",\"411.Other accounts payable /8\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLOA.CR.PS.CD\",\"187.Other accounts payable (PSDT) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLSD.CR.BC\",\"310.Special Drawing Rights (SDRs) (PSDCGGB)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLSD.CR.BC.CD\",\"086.Special Drawing Rights (SDRs) (PSDCGGB) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLSD.CR.BC.Z1\",\"534.Special Drawing Rights (SDRs) (PSDCGGB)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLSD.CR.CG\",\"278.Special Drawing Rights (SDRs) (PSDCG)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLSD.CR.CG.CD\",\"054.Special Drawing Rights (SDRs) (PSDCG) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLSD.CR.CG.Z1\",\"502.Special Drawing Rights (SDRs) (PSDCG)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLSD.CR.FC\",\"374.Special Drawing Rights (SDRs) (PSDFPC)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLSD.CR.FC.CD\",\"150.Special Drawing Rights (SDRs) (PSDFPC) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLSD.CR.FC.Z1\",\"598.Special Drawing Rights (SDRs) (PSDFPC)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLSD.CR.GG\",\"246.Special Drawing Rights (SDRs) (PSDGG, LT)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLSD.CR.GG.CD\",\"022.Special Drawing Rights (SDRs) (PSDGG) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLSD.CR.GG.Z1\",\"470.Special Drawing Rights (SDRs) (PSDGG, LT)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLSD.CR.M1.BC\",\"304.Special Drawing Rights (SDRs) (PSDCGGB, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLSD.CR.M1.BC.CD\",\"080.Special Drawing Rights (SDRs) (PSDCGGB, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLSD.CR.M1.BC.Z1\",\"528.Special Drawing Rights (SDRs) (PSDCGGB, LT, >1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLSD.CR.M1.CG\",\"272.Special Drawing Rights (SDRs) (PSDCG, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLSD.CR.M1.CG.CD\",\"048.Special Drawing Rights (SDRs) (PSDCG, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLSD.CR.M1.CG.Z1\",\"496.Special Drawing Rights (SDRs) (PSDCG, LT, >1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLSD.CR.M1.FC\",\"368.Special Drawing Rights (SDRs) (PSDFPC, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLSD.CR.M1.FC.CD\",\"144.Special Drawing Rights (SDRs) (PSDFPC, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLSD.CR.M1.FC.Z1\",\"592.Special Drawing Rights (SDRs) (PSDFPC, LT, >1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLSD.CR.M1.GG\",\"240.Special Drawing Rights (SDRs) (PSDGG, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLSD.CR.M1.GG.CD\",\"016.Special Drawing Rights (SDRs) (PSDGG, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLSD.CR.M1.GG.Z1\",\"464.Special Drawing Rights (SDRs) (PSDGG, LT, >1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLSD.CR.M1.NF\",\"336.Special Drawing Rights (SDRs) (PSDNFPC, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLSD.CR.M1.NF.CD\",\"112.Special Drawing Rights (SDRs) (PSDNFPC, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLSD.CR.M1.NF.Z1\",\"560.Special Drawing Rights (SDRs) (PSDNFPC, LT, >1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLSD.CR.M1.PS\",\"400.Special Drawing Rights (SDRs) (PSDT, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLSD.CR.M1.PS.CD\",\"176.Special Drawing Rights (SDRs) (PSDT, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLSD.CR.NF\",\"342.Special Drawing Rights (SDRs) (PSDNFPC)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLSD.CR.NF.CD\",\"118.Special Drawing Rights (SDRs) (PSDNFPC) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLSD.CR.NF.Z1\",\"566.Special Drawing Rights (SDRs) (PSDNFPC)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLSD.CR.PS\",\"406.Special Drawing Rights (SDRs) (PSDT, LT)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLSD.CR.PS.CD\",\"182.Special Drawing Rights (SDRs) (PSDT) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLTC.CR.BC\",\"296.Long-term, by original maturity (PSDCGGB, LT)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLTC.CR.BC.CD\",\"072.Long-term, by original maturity (PSDCGGB, LT) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLTC.CR.BC.Z1\",\"520.Long-term, by original maturity (PSDCGGB, LT)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLTC.CR.CG\",\"264.Long-term, by original maturity (PSDCG, LT)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLTC.CR.CG.CD\",\"040.Long-term, by original maturity (PSDCG, LT) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLTC.CR.CG.Z1\",\"488.Long-term, by original maturity (PSDCG, LT)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLTC.CR.FC\",\"360.Long-term, by original maturity (PSDFPC, LT)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLTC.CR.FC.CD\",\"136.Long-term, by original maturity (PSDFPC, LT) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLTC.CR.FC.Z1\",\"584.Long-term, by original maturity (PSDFPC, LT)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLTC.CR.GG\",\"232.Long-term, by original maturity (PSDGG, LT)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLTC.CR.GG.CD\",\"008.Long-term, by original maturity (PSDGG, LT) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLTC.CR.GG.Z1\",\"456.Long-term, by original maturity (PSDGG, LT)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLTC.CR.L1.BC\",\"297.With payment due in one year or less (PSDCGGB, LT, <1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLTC.CR.L1.BC.CD\",\"073.With payment due in one year or less (PSDCGGB, LT, <1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLTC.CR.L1.BC.Z1\",\"521.With payment due in one year or less (PSDCGGB, LT, <1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLTC.CR.L1.CG\",\"265.With payment due in one year or less (PSDCG, LT, <1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLTC.CR.L1.CG.CD\",\"041.With payment due in one year or less (PSDCG, LT, <1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLTC.CR.L1.CG.Z1\",\"489.With payment due in one year or less (PSDCG, LT, <1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLTC.CR.L1.FC\",\"361.With payment due in one year or less (PSDFPC, LT, <1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLTC.CR.L1.FC.CD\",\"137.With payment due in one year or less (PSDFPC, LT, <1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLTC.CR.L1.FC.Z1\",\"585.With payment due in one year or less (PSDFPC, LT, <1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLTC.CR.L1.GG\",\"233.With payment due in one year or less (PSDGG, LT, <1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLTC.CR.L1.GG.CD\",\"009.With payment due in one year or less (PSDGG, LT, <1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLTC.CR.L1.GG.Z1\",\"457.With payment due in one year or less (PSDGG, LT, <1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLTC.CR.L1.NF\",\"329.With payment due in one year or less (PSDNFPC, LT, <1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLTC.CR.L1.NF.CD\",\"105.With payment due in one year or less (PSDNFPC, LT, <1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLTC.CR.L1.NF.Z1\",\"553.With payment due in one year or less (PSDNFPC, LT, <1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLTC.CR.L1.PS\",\"393.With payment due in one year or less (PSDT, LT,<1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLTC.CR.L1.PS.CD\",\"169.With payment due in one year or less (PSDT, LT,<1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLTC.CR.M1.BC\",\"303.With payment due in more than one year (PSDCGGB, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLTC.CR.M1.BC.CD\",\"079.With payment due in more than one year (PSDCGGB, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLTC.CR.M1.BC.Z1\",\"527.With payment due in more than one year (PSDCGGB, LT, >1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLTC.CR.M1.CG\",\"271.With payment due in more than one year (PSDCG, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLTC.CR.M1.CG.CD\",\"047.With payment due in more than one year (PSDCG, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLTC.CR.M1.CG.Z1\",\"495.With payment due in more than one year (PSDCG, LT, >1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLTC.CR.M1.FC\",\"367.With payment due in more than one year (PSDFPC, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLTC.CR.M1.FC.CD\",\"143.With payment due in more than one year (PSDFPC, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLTC.CR.M1.FC.Z1\",\"591.With payment due in more than one year (PSDFPC, LT, >1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLTC.CR.M1.GG\",\"239.With payment due in more than one year (PSDGG, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLTC.CR.M1.GG.CD\",\"015.With payment due in more than one year (PSDGG, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLTC.CR.M1.GG.Z1\",\"463.With payment due in more than one year (PSDGG, LT, >1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLTC.CR.M1.NF\",\"335.With payment due in more than one year (PSDNFPC, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLTC.CR.M1.NF.CD\",\"111.With payment due in more than one year (PSDNFPC, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLTC.CR.M1.NF.Z1\",\"559.With payment due in more than one year (PSDNFPC, LT, >1yr)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLTC.CR.M1.PS\",\"399.With payment due in more than one year (PSDT, LT, >1yr)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLTC.CR.M1.PS.CD\",\"175.With payment due in more than one year (PSDT, LT, >1yr) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLTC.CR.NF\",\"328.Long-term, by original maturity (PSDNFPC, LT)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLTC.CR.NF.CD\",\"104.Long-term, by original maturity (PSDNFPC, LT) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DLTC.CR.NF.Z1\",\"552.Long-term, by original maturity (PSDNFPC, LT)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLTC.CR.PS\",\"392.Long-term, by original maturity (PSDT, LT)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DLTC.CR.PS.CD\",\"168.Long-term, by original maturity (PSDT, LT) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DSCD.CR.BC\",\"291.Currency and deposits (PSDCGGB, ST)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSCD.CR.BC.CD\",\"067.Currency and deposits (PSDCGGB, ST) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DSCD.CR.BC.Z1\",\"515.Currency and deposits (PSDCGGB, ST)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSCD.CR.CG\",\"259.Currency and deposits (PSDCG, ST)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSCD.CR.CG.CD\",\"035.Currency and deposits (PSDCG, ST) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DSCD.CR.CG.Z1\",\"483.Currency and deposits (PSDCG, ST)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSCD.CR.FC\",\"355.Currency and deposits (PSDFPC, ST)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSCD.CR.FC.CD\",\"131.Currency and deposits (PSDFPC, ST) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DSCD.CR.FC.Z1\",\"579.Currency and deposits (PSDFPC, ST)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSCD.CR.GG\",\"227.Currency and deposits (PSDGG, ST)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSCD.CR.GG.CD\",\"003.Currency and deposits (PSDGG, ST) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DSCD.CR.GG.Z1\",\"451.Currency and deposits (PSDGG, ST)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSCD.CR.NF\",\"323.Currency and deposits (PSDNFPC, ST)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSCD.CR.NF.CD\",\"099.Currency and deposits (PSDNFPC, ST) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DSCD.CR.NF.Z1\",\"547.Currency and deposits (PSDNFPC, ST)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSCD.CR.PS\",\"387.Currency and deposits (PSDT)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSCD.CR.PS.CD\",\"163.Currency and deposits (PSDT, ST) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DSDS.CR.BC\",\"292.Debt securities (PSDCGGB, ST)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSDS.CR.BC.CD\",\"068.Debt securities (PSDCGGB, ST) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DSDS.CR.BC.Z1\",\"516.Debt securities (PSDCGGB, ST)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSDS.CR.CG\",\"260.Debt securities (PSDCG, ST)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSDS.CR.CG.CD\",\"036.Debt securities (PSDCG, ST) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DSDS.CR.CG.Z1\",\"484.Debt securities (PSDCG, ST)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSDS.CR.FC\",\"356.Debt securities (PSDFPC, ST)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSDS.CR.FC.CD\",\"132.Debt securities (PSDFPC, ST) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DSDS.CR.FC.Z1\",\"580.Debt securities (PSDFPC, ST)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSDS.CR.GG\",\"228.Debt securities (PSDGG, ST)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSDS.CR.GG.CD\",\"004.Debt securities (PSDGG, ST) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DSDS.CR.GG.Z1\",\"452.Debt securities (PSDGG, ST)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSDS.CR.NF\",\"324.Debt securities (PSDNFPC, ST)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSDS.CR.NF.CD\",\"100.Debt securities (PSDNFPC, ST) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DSDS.CR.NF.Z1\",\"548.Debt securities (PSDNFPC, ST)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSDS.CR.PS\",\"388.Debt securities (PSDT)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSDS.CR.PS.CD\",\"164.Debt securities (PSDT, ST) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DSIN.CR.BC\",\"294.Insurance, pensions, and standardized guarantee schemes (PSDCGGB, ST)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSIN.CR.BC.CD\",\"070.Insurance, pensions, and standardized guarantee schemes (PSDCGGB, ST) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DSIN.CR.BC.Z1\",\"518.Insurance, pensions, and standardized guarantee schemes (PSDCGGB, ST)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSIN.CR.CG\",\"262.Insurance, pensions, and standardized guarantee schemes (PSDCG, ST)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSIN.CR.CG.CD\",\"038.Insurance, pensions, and standardized guarantee schemes (PSDCG, ST) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DSIN.CR.CG.Z1\",\"486.Insurance, pensions, and standardized guarantee schemes (PSDCG, ST)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSIN.CR.FC\",\"358.Insurance, pensions, and standardized guarantee schemes (PSDFPC, ST)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSIN.CR.FC.CD\",\"134.Insurance, pensions, and standardized guarantee schemes (PSDFPC, ST) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DSIN.CR.FC.Z1\",\"582.Insurance, pensions, and standardized guarantee schemes (PSDFPC, ST)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSIN.CR.GG\",\"230.Insurance, pensions, and stnd. guarantee schemes (PSDGG, ST)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSIN.CR.GG.CD\",\"006.Insurance, pensions, and standardized guarantee schemes (PSDGG, ST) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DSIN.CR.GG.Z1\",\"454.Insurance, pensions, and stnd. guarantee schemes (PSDGG, ST)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSIN.CR.NF\",\"326.Insurance, pensions, and standardized guarantee schemes (PSDNFPC, ST)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSIN.CR.NF.CD\",\"102.Insurance, pensions, and standardized guarantee schemes (PSDNFPC, ST) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DSIN.CR.NF.Z1\",\"550.Insurance, pensions, and standardized guarantee schemes (PSDNFPC, ST)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSIN.CR.PS\",\"390.Insurance, pensions, and standardized guarantee schemes (PSDT)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSIN.CR.PS.CD\",\"166.Insurance, pensions, and standardized guarantee schemes (PSDT, ST) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DSLO.CR.BC\",\"293.Loans (PSDCGGB, ST)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSLO.CR.BC.CD\",\"069.Loans (PSDCGGB, ST) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DSLO.CR.BC.Z1\",\"517.Loans (PSDCGGB, ST)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSLO.CR.CG\",\"261.Loans (PSDCG, ST)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSLO.CR.CG.CD\",\"037.Loans (PSDCG, ST) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DSLO.CR.CG.Z1\",\"485.Loans (PSDCG, ST)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSLO.CR.FC\",\"357.Loans (PSDFPC, ST)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSLO.CR.FC.CD\",\"133.Loans (PSDFPC, ST) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DSLO.CR.FC.Z1\",\"581.Loans (PSDFPC, ST)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSLO.CR.GG\",\"229.Loans (PSDGG, ST)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSLO.CR.GG.CD\",\"005.Loans (PSDGG, ST) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DSLO.CR.GG.Z1\",\"453.Loans (PSDGG, ST)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSLO.CR.NF\",\"325.Loans (PSDNFPC, ST)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSLO.CR.NF.CD\",\"101.Loans (PSDNFPC, ST) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DSLO.CR.NF.Z1\",\"549.Loans (PSDNFPC, ST)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSLO.CR.PS\",\"389.Loans (PSDT)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSLO.CR.PS.CD\",\"165.Loans (PSDT, ST) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DSOA.CR.BC\",\"295.Other accounts payable (PSDCGGB, ST)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSOA.CR.BC.CD\",\"071.Other accounts payable (PSDCGGB, ST) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DSOA.CR.BC.Z1\",\"519.Other accounts payable (PSDCGGB, ST)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSOA.CR.CG\",\"263.Other accounts payable (PSDCG, ST)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSOA.CR.CG.CD\",\"039.Other accounts payable (PSDCG, ST) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DSOA.CR.CG.Z1\",\"487.Other accounts payable (PSDCG, ST)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSOA.CR.FC\",\"359.Other accounts payable (PSDFPC, ST)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSOA.CR.FC.CD\",\"135.Other accounts payable (PSDFPC, ST) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DSOA.CR.FC.Z1\",\"583.Other accounts payable (PSDFPC, ST)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSOA.CR.GG\",\"231.Other accounts payable (PSDGG, ST)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSOA.CR.GG.CD\",\"007.Other accounts payable (PSDGG, ST) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DSOA.CR.GG.Z1\",\"455.Other accounts payable (PSDGG, ST)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSOA.CR.NF\",\"327.Other accounts payable (PSDNFPC, ST)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSOA.CR.NF.CD\",\"103.Other accounts payable (PSDNFPC, ST) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DSOA.CR.NF.Z1\",\"551.Other accounts payable (PSDNFPC, ST)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSOA.CR.PS\",\"391.Other accounts payable (PSDT)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSOA.CR.PS.CD\",\"167.Other accounts payable (PSDT, ST) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DSTC.CR.BC\",\"290.Short-term by original maturity (PSDCGGB, ST)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSTC.CR.BC.CD\",\"066.Short-term by original maturity (PSDCGGB, ST) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DSTC.CR.BC.Z1\",\"514.Short-term by original maturity (PSDCGGB, ST)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSTC.CR.CG\",\"258.Short-term by original maturity (PSDCG, ST)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSTC.CR.CG.CD\",\"034.Short-term by original maturity (PSDCG, ST) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DSTC.CR.CG.Z1\",\"482.Short-term by original maturity (PSDCG, ST)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSTC.CR.FC\",\"354.Short-term by original maturity (PSDFPC, ST)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSTC.CR.FC.CD\",\"130.Short-term by original maturity (PSDFPC, ST) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DSTC.CR.FC.Z1\",\"578.Short-term by original maturity (PSDFPC, ST)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSTC.CR.GG\",\"226.Short-term by original maturity (PSDGG, ST)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSTC.CR.GG.CD\",\"002.Short-term by original maturity (PSDGG, ST) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DSTC.CR.GG.Z1\",\"450.Short-term by original maturity (PSDGG, ST)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSTC.CR.NF\",\"322.Short-term by original maturity (PSDNFPC, ST)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSTC.CR.NF.CD\",\"098.Short-term by original maturity (PSDNFPC, ST) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DP.DOD.DSTC.CR.NF.Z1\",\"546.Short-term by original maturity (PSDNFPC, ST)(% of GDP)\",\"The source of non-seasonally adjusted Gross Domestic Product (GDP) data in national currency, at current prices, is the International Finance Statistics quarterly database of the IMF, annualized by the World Bank, unless otherwise specified\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSTC.CR.PS\",\"386.Short-term by original maturity (PSDT)\",\"\",\"Quarterly Public Sector Debt\",\"\"\n\"DP.DOD.DSTC.CR.PS.CD\",\"162.Short-term by original maturity (PSDT, ST) US$\",\"Member Country\",\"Quarterly Public Sector Debt\",\"World Bank.\"\n\"DPANUSIFS\",\"Exchange rate (IFS), LCU per USD, period average\",\"Exchange rate refers to the rate determined in the legally sanctioned exchange market. It is calculated as an annual average based on monthly averages (local currency units relative to the U.S. dollar).\",\"Global Economic Monitor\",\"World Bank staff calculations based on Datastream and IMF International Finance Statistics data.\"\n\"DPANUSLCU\",\"Official exchange rate, LCU per USD, period average\",\"Official exchange rate refers to the exchange rate determined by national authorities or to the rate determined in the legally sanctioned exchange market. It is calculated as an annual average based on monthly averages (local currency units relative to the U.S. dollar).\",\"Global Economic Monitor\",\"World Bank staff calculations based on Datastream and IMF International Finance Statistics data.\"\n\"DPANUSSPB\",\"Exchange rate, new LCU per USD extended backward, period average\",\"Local currency units (LCU) per U.S. dollar, with values prior to the currency's introduction presented in the new currency's terms\",\"Global Economic Monitor\",\"World Bank staff calculations based on Datastream and IMF International Finance Statistics data.\"\n\"DPANUSSPF\",\"Exchange rate, old LCU per USD extended forward, period average\",\"Local currency units (LCU) per U.S. dollar, with values after a new currency's introduction presented in the old currency's terms\",\"Global Economic Monitor\",\"World Bank staff calculations based on Datastream and IMF International Finance Statistics data.\"\n\"DSTKMKTXD\",\"Stock Markets, US$\",\"Local equity market index valued in US$ terms\",\"Global Economic Monitor\",\"World Bank staff calculations based on Datastream and IMF International Finance Statistics data.\"\n\"DSTKMKTXN\",\"Stock Markets, LCU\",\"Local equity market index valued in local currency unit (LCU) terms\",\"Global Economic Monitor\",\"World Bank staff calculations based on Datastream and IMF International Finance Statistics data.\"\n\"DT.AMD.DLXF.CD\",\"LT Principal due per balance of payments account (BoP, current US$)\",\"Memorandum item - repayments due on outstanding debts.  Data are in current U.S. dollars.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"DT.AMT.BLAT.CD\",\"PPG, bilateral (AMT, current US$)\",\"Bilateral debt includes loans from governments and their agencies (including central banks), loans from autonomous bodies, and direct loans from official export credit agencies. Principal repayments are actual amounts of principal (amortization) paid by the borrower in foreign currency, goods, or services in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.AMT.BLTC.CD\",\"PPG, bilateral concessional (AMT, current US$)\",\"Bilateral debt includes loans from governments and their agencies (including central banks), loans from autonomous bodies, and direct loans from official export credit agencies. Concessional debt is defined as loans with an original grant element of 25 percent or more. The grant element of a loan is the grant equivalent expressed as a percentage of the amount committed. It is used as a measure of the overall cost of borrowing. The grant equivalent of a loan is its commitment (present) value, less the discounted present value of its contractual debt service; conventionally, future service payments are discounted at 10 percent. Principal repayments are actual amounts of principal (amortization) paid by the borrower in currency, goods, or services in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.AMT.DEAE.CD.IL.03.US\",\"1281_T3.2_.... Principal (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DEAE.CD.IL.0912.US\",\"1536_T3.2_.... Principal (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DEAE.CD.IL.1218.US\",\"1621_T3.2_.... Principal (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DEAE.CD.IL.1824.US\",\"1706_T3.2_.... Principal (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DEAE.CD.IL.24P.US\",\"1791_T3.2_.... Principal (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DEAE.CD.IL.36.US\",\"1366_T3.2_.... Principal (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DEAE.CD.IL.69.US\",\"1451_T3.2_.... Principal (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DEAE.CD.IL.IQ.US\",\"1196_T3.2_.... Principal (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD\",\"Principal repayments, Total (current US$)\",\"Principal repayments, total (AMT, current U.S. dollars).  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"DT.AMT.DECT.CD.00.03.MO.US\",\"035_T2_.. Principal (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.03.US\",\"0115_T3_.. Principal  (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.03.YR.US\",\"101_T2_.. Principal (3yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.04.06.MO.US\",\"046_T2_.. Principal (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.04.YR.US\",\"112_T2_.. Principal (4yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.05.10.YR.US\",\"134_T2_.. Principal (More than 5 to 10 yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.05.YR.US\",\"123_T2_.. Principal (5yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.07.09.MO.US\",\"057_T2_.. Principal (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.0912.US\",\"0175_T3_.. Principal  (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.10.12.MO.US\",\"068_T2_.. Principal (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.10.15.YR.US\",\"145_T2_.. Principal (More than 10 to 15 yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.1218.US\",\"0195_T3_.. Principal  (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.13.18.MO.US\",\"079_T2_.. Principal (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.15.UP.YR.US\",\"156_T2_.. Principal (More than 15 yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.1824.US\",\"0215_T3_.. Principal  (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.19.24.MO.US\",\"090_T2_.. Principal (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.24P.US\",\"0235_T3_.. Principal  (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.36.US\",\"0135_T3_.. Principal  (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.69.US\",\"0155_T3_.. Principal  (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.AR.03.US\",\"1287_T3.2_.... Principal  (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.AR.0912.US\",\"1542_T3.2_.... Principal  (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.AR.1218.US\",\"1627_T3.2_.... Principal  (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.AR.1824.US\",\"1712_T3.2_.... Principal  (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.AR.24P.US\",\"1797_T3.2_.... Principal  (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.AR.36.US\",\"1372_T3.2_.... Principal  (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.AR.69.US\",\"1457_T3.2_.... Principal  (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.AR.IQ.US\",\"1202_T3.2_.... Principal  (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.CB.03.US\",\"0106_T3_.. Principal (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.CB.0912.US\",\"0166_T3_.. Principal (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.CB.1218.US\",\"0186_T3_.. Principal (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.CB.1824.US\",\"0206_T3_.. Principal (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.CB.24P.US\",\"0226_T3_.. Principal (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.CB.36.US\",\"0126_T3_.. Principal (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.CB.69.US\",\"0146_T3_.. Principal (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.CB.IQ.US\",\"0086_T3_.. Principal (immediate) 3/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.CB.RM.US\",\"0245_T4_.. Principal (One year or less)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.GG.03.US\",\"0100_T3_.. Principal (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.GG.0912.US\",\"0160_T3_.. Principal (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.GG.1218.US\",\"0180_T3_.. Principal (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.GG.1824.US\",\"0200_T3_.. Principal (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.GG.24P.US\",\"0220_T3_.. Principal (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.GG.36.US\",\"0120_T3_.. Principal (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.GG.69.US\",\"0140_T3_.. Principal (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.GG.IQ.US\",\"0080_T3_.. Principal (immediate) 3/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.GG.RM.US\",\"0239_T4_.. Principal (One year or less)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.IL.03.US\",\"0112_T3_.. Principal  (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.IL.0912.US\",\"0172_T3_.. Principal  (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.IL.1218.US\",\"0192_T3_.. Principal  (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.IL.1824.US\",\"0212_T3_.. Principal  (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.IL.24P.US\",\"0232_T3_.. Principal  (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.IL.36.US\",\"0132_T3_.. Principal  (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.IL.69.US\",\"0152_T3_.. Principal  (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.IL.IQ.US\",\"0092_T3_.. Principal  (immediate) 3/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.IL.RM.US\",\"0251_T4_.. Principal (One year or less)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.IQ.00.US\",\"024_T2_.. Principal (immediately) 3/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.MA.03.US\",\"0103_T3_.. Principal (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.MA.0912.US\",\"0163_T3_.. Principal (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.MA.1218.US\",\"0183_T3_.. Principal (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.MA.1824.US\",\"0203_T3_.. Principal (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.MA.24P.US\",\"0223_T3_.. Principal (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.MA.36.US\",\"0123_T3_.. Principal (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.MA.69.US\",\"0143_T3_.. Principal (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.MA.IQ.US\",\"0083_T3_.. Principal (immediate) 3/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.MA.RM.US\",\"0242_T4_.. Principal (One year or less)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.OS.03.US\",\"0109_T3_.. Principal (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.OS.0912.US\",\"0169_T3_.. Principal (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.OS.1218.US\",\"0189_T3_.. Principal (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.OS.1824.US\",\"0209_T3_.. Principal (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.OS.24P.US\",\"0229_T3_.. Principal (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.OS.36.US\",\"0129_T3_.. Principal (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.OS.69.US\",\"0149_T3_.. Principal (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.OS.IQ.US\",\"0089_T3_.. Principal (immediate) 3/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.OS.RM.US\",\"0248_T4_.. Principal (One year or less)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DECT.CD.RM.US\",\"0254_T4_.. Principal (One year or less)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DEFE.CD.IL.03.US\",\"1284_T3.2_.... Principal (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DEFE.CD.IL.0912.US\",\"1539_T3.2_.... Principal (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DEFE.CD.IL.1218.US\",\"1624_T3.2_.... Principal (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DEFE.CD.IL.1824.US\",\"1709_T3.2_.... Principal (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DEFE.CD.IL.24P.US\",\"1794_T3.2_.... Principal (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DEFE.CD.IL.36.US\",\"1369_T3.2_.... Principal (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DEFE.CD.IL.69.US\",\"1454_T3.2_.... Principal (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DEFE.CD.IL.IQ.US\",\"1199_T3.2_.... Principal (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DILD.CD.IL.03.US\",\"1278_T3.2_.... Principal (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DILD.CD.IL.0912.US\",\"1533_T3.2_.... Principal (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DILD.CD.IL.1218.US\",\"1618_T3.2_.... Principal (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DILD.CD.IL.1824.US\",\"1703_T3.2_.... Principal (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DILD.CD.IL.24P.US\",\"1788_T3.2_.... Principal (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DILD.CD.IL.36.US\",\"1363_T3.2_.... Principal (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DILD.CD.IL.69.US\",\"1448_T3.2_.... Principal (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DILD.CD.IL.IQ.US\",\"1193_T3.2_.... Principal (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DIMF.CD\",\"IMF repurchases (AMT, current US$)\",\"IMF repurchases are total repayments of outstanding drawings from the General Resources Account during the year specified, excluding repayments due in the reserve tranche. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.AMT.DLBN.CD.CB.AR.03.US\",\"1249_T3.2_.... Principal (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLBN.CD.CB.AR.0912.US\",\"1504_T3.2_.... Principal (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLBN.CD.CB.AR.1218.US\",\"1589_T3.2_.... Principal (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLBN.CD.CB.AR.1824.US\",\"1674_T3.2_.... Principal (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLBN.CD.CB.AR.24P.US\",\"1759_T3.2_.... Principal (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLBN.CD.CB.AR.36.US\",\"1334_T3.2_.... Principal (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLBN.CD.CB.AR.69.US\",\"1419_T3.2_.... Principal (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLBN.CD.CB.AR.IQ.US\",\"1164_T3.2_....  Principal (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLBN.CD.GG.AR.03.US\",\"1214_T3.2_.... Principal (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLBN.CD.GG.AR.0912.US\",\"1469_T3.2_.... Principal (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLBN.CD.GG.AR.1218.US\",\"1554_T3.2_.... Principal (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLBN.CD.GG.AR.1824.US\",\"1639_T3.2_.... Principal (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLBN.CD.GG.AR.24P.US\",\"1724_T3.2_.... Principal (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLBN.CD.GG.AR.36.US\",\"1299_T3.2_.... Principal (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLBN.CD.GG.AR.69.US\",\"1384_T3.2_.... Principal (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLBN.CD.GG.AR.IQ.US\",\"1129_T3.2_.... Principal (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLBN.CD.MA.AR.03.US\",\"1233_T3.2_.... Principal (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLBN.CD.MA.AR.0912.US\",\"1488_T3.2_.... Principal (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLBN.CD.MA.AR.1218.US\",\"1573_T3.2_.... Principal (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLBN.CD.MA.AR.1824.US\",\"1658_T3.2_.... Principal (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLBN.CD.MA.AR.24P.US\",\"1743_T3.2_.... Principal (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLBN.CD.MA.AR.36.US\",\"1318_T3.2_.... Principal (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLBN.CD.MA.AR.69.US\",\"1403_T3.2_.... Principal (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLBN.CD.MA.AR.IQ.US\",\"1148_T3.2_.... Principal (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLBN.CD.OT.AR.03.US\",\"1265_T3.2_.... Principal (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLBN.CD.OT.AR.0912.US\",\"1520_T3.2_.... Principal (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLBN.CD.OT.AR.1218.US\",\"1605_T3.2_.... Principal (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLBN.CD.OT.AR.1824.US\",\"1690_T3.2_.... Principal (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLBN.CD.OT.AR.24P.US\",\"1775_T3.2_.... Principal (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLBN.CD.OT.AR.36.US\",\"1350_T3.2_.... Principal (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLBN.CD.OT.AR.69.US\",\"1435_T3.2_.... Principal (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLBN.CD.OT.AR.IQ.US\",\"1180_T3.2_.... Principal (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLCD.CD.CB.AR.03.US\",\"1246_T3.2_.... Principal (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLCD.CD.CB.AR.0912.US\",\"1501_T3.2_.... Principal (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLCD.CD.CB.AR.1218.US\",\"1586_T3.2_.... Principal (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLCD.CD.CB.AR.1824.US\",\"1671_T3.2_.... Principal (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLCD.CD.CB.AR.24P.US\",\"1756_T3.2_.... Principal (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLCD.CD.CB.AR.36.US\",\"1331_T3.2_.... Principal (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLCD.CD.CB.AR.69.US\",\"1416_T3.2_.... Principal (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLCD.CD.CB.AR.IQ.US\",\"1161_T3.2_.... Principal (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLCD.CD.GG.AR.03.US\",\"1211_T3.2_.... Principal (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLCD.CD.GG.AR.0912.US\",\"1466_T3.2_.... Principal (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLCD.CD.GG.AR.1218.US\",\"1551_T3.2_.... Principal (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLCD.CD.GG.AR.1824.US\",\"1636_T3.2_.... Principal (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLCD.CD.GG.AR.24P.US\",\"1721_T3.2_.... Principal (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLCD.CD.GG.AR.36.US\",\"1296_T3.2_.... Principal (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLCD.CD.GG.AR.69.US\",\"1381_T3.2_.... Principal (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLCD.CD.GG.AR.IQ.US\",\"1126_T3.2_.... Principal (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLCD.CD.MA.AR.03.US\",\"1230_T3.2_.... Principal (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLCD.CD.MA.AR.0912.US\",\"1485_T3.2_.... Principal (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLCD.CD.MA.AR.1218.US\",\"1570_T3.2_.... Principal (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLCD.CD.MA.AR.1824.US\",\"1655_T3.2_.... Principal (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLCD.CD.MA.AR.24P.US\",\"1740_T3.2_.... Principal (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLCD.CD.MA.AR.36.US\",\"1315_T3.2_.... Principal (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLCD.CD.MA.AR.69.US\",\"1400_T3.2_.... Principal (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLCD.CD.MA.AR.IQ.US\",\"1145_T3.2_.... Principal (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLCD.CD.OT.AR.03.US\",\"1262_T3.2_.... Principal (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLCD.CD.OT.AR.0912.US\",\"1517_T3.2_.... Principal (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLCD.CD.OT.AR.1218.US\",\"1602_T3.2_.... Principal (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLCD.CD.OT.AR.1824.US\",\"1687_T3.2_.... Principal (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLCD.CD.OT.AR.24P.US\",\"1772_T3.2_.... Principal (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLCD.CD.OT.AR.36.US\",\"1347_T3.2_.... Principal (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLCD.CD.OT.AR.69.US\",\"1432_T3.2_.... Principal (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLCD.CD.OT.AR.IQ.US\",\"1177_T3.2_.... Principal (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTF.CD\",\"Principal repayments on external debt, long-term + IMF (AMT, current US$)\",\"Principal repayments are actual amounts of principal (amortization) paid by the borrower in currency, goods, or services in the year specified. This item includes principal repayments on long-term debt and IMF repurchases. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents by residents of an economy and repayable in currency, goods, or services. IMF repurchases are total repayments of outstanding drawings from the General Resources Account during the year specified, excluding repayments due in the reserve tranche. To maintain comparability between data on transactions with the IMF and data on long-term debt, use of IMF credit outstanding at the end of year (stock) is converted to dollars at the SDR exchange rate in effect at the end of year. Repurchases (flows) are converted at the average SDR exchange rate for the year in which transactions take place. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.AMT.DLTL.CD.CB.AR.03.US\",\"1252_T3.2_.... Principal (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTL.CD.CB.AR.0912.US\",\"1507_T3.2_.... Principal (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTL.CD.CB.AR.1218.US\",\"1592_T3.2_.... Principal (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTL.CD.CB.AR.1824.US\",\"1677_T3.2_.... Principal (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTL.CD.CB.AR.24P.US\",\"1762_T3.2_.... Principal (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTL.CD.CB.AR.36.US\",\"1337_T3.2_.... Principal (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTL.CD.CB.AR.69.US\",\"1422_T3.2_.... Principal (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTL.CD.CB.AR.IQ.US\",\"1167_T3.2_.... Principal (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTL.CD.GG.AR.03.US\",\"1217_T3.2_.... Principal (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTL.CD.GG.AR.0912.US\",\"1472_T3.2_.... Principal (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTL.CD.GG.AR.1218.US\",\"1557_T3.2_.... Principal (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTL.CD.GG.AR.1824.US\",\"1642_T3.2_.... Principal (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTL.CD.GG.AR.24P.US\",\"1727_T3.2_.... Principal (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTL.CD.GG.AR.36.US\",\"1302_T3.2_.... Principal (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTL.CD.GG.AR.69.US\",\"1387_T3.2_.... Principal (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTL.CD.GG.AR.IQ.US\",\"1132_T3.2_.... Principal (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTL.CD.MA.AR.03.US\",\"1236_T3.2_.... Principal (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTL.CD.MA.AR.0912.US\",\"1491_T3.2_.... Principal (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTL.CD.MA.AR.1218.US\",\"1576_T3.2_.... Principal (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTL.CD.MA.AR.1824.US\",\"1661_T3.2_.... Principal (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTL.CD.MA.AR.24P.US\",\"1746_T3.2_.... Principal (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTL.CD.MA.AR.36.US\",\"1321_T3.2_.... Principal (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTL.CD.MA.AR.69.US\",\"1406_T3.2_.... Principal (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTL.CD.MA.AR.IQ.US\",\"1151_T3.2_.... Principal (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTL.CD.OT.AR.03.US\",\"1268_T3.2_.... Principal (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTL.CD.OT.AR.0912.US\",\"1523_T3.2_.... Principal (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTL.CD.OT.AR.1218.US\",\"1608_T3.2_.... Principal (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTL.CD.OT.AR.1824.US\",\"1693_T3.2_.... Principal (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTL.CD.OT.AR.24P.US\",\"1778_T3.2_.... Principal (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTL.CD.OT.AR.36.US\",\"1353_T3.2_.... Principal (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTL.CD.OT.AR.69.US\",\"1438_T3.2_.... Principal (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTL.CD.OT.AR.IQ.US\",\"1183_T3.2_.... Principal (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTO.CD.CB.AR.03.US\",\"1258_T3.2_.... Principal (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTO.CD.CB.AR.0912.US\",\"1513_T3.2_.... Principal (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTO.CD.CB.AR.1218.US\",\"1598_T3.2_.... Principal (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTO.CD.CB.AR.1824.US\",\"1683_T3.2_.... Principal (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTO.CD.CB.AR.24P.US\",\"1768_T3.2_.... Principal (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTO.CD.CB.AR.36.US\",\"1343_T3.2_.... Principal (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTO.CD.CB.AR.69.US\",\"1428_T3.2_.... Principal (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTO.CD.CB.AR.IQ.US\",\"1173_T3.2_.... Principal (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTO.CD.GG.AR.03.US\",\"1223_T3.2_.... Principal (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTO.CD.GG.AR.0912.US\",\"1478_T3.2_.... Principal (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTO.CD.GG.AR.1218.US\",\"1563_T3.2_.... Principal (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTO.CD.GG.AR.1824.US\",\"1648_T3.2_.... Principal (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTO.CD.GG.AR.24P.US\",\"1733_T3.2_.... Principal (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTO.CD.GG.AR.36.US\",\"1308_T3.2_.... Principal (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTO.CD.GG.AR.69.US\",\"1393_T3.2_.... Principal (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTO.CD.GG.AR.IQ.US\",\"1138_T3.2_.... Principal (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTO.CD.MA.AR.03.US\",\"1242_T3.2_.... Principal (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTO.CD.MA.AR.0912.US\",\"1497_T3.2_.... Principal (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTO.CD.MA.AR.1218.US\",\"1582_T3.2_.... Principal (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTO.CD.MA.AR.1824.US\",\"1667_T3.2_.... Principal (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTO.CD.MA.AR.24P.US\",\"1752_T3.2_.... Principal (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTO.CD.MA.AR.36.US\",\"1327_T3.2_.... Principal (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTO.CD.MA.AR.69.US\",\"1412_T3.2_.... Principal (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTO.CD.MA.AR.IQ.US\",\"1157_T3.2_.... Principal (immediate) v\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTO.CD.OT.AR.03.US\",\"1274_T3.2_.... Principal (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTO.CD.OT.AR.0912.US\",\"1529_T3.2_.... Principal (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTO.CD.OT.AR.1218.US\",\"1614_T3.2_.... Principal (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTO.CD.OT.AR.1824.US\",\"1699_T3.2_.... Principal (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTO.CD.OT.AR.24P.US\",\"1784_T3.2_.... Principal (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTO.CD.OT.AR.36.US\",\"1359_T3.2_.... Principal (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTO.CD.OT.AR.69.US\",\"1444_T3.2_.... Principal (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTO.CD.OT.AR.IQ.US\",\"1189_T3.2_.... Principal (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTS.CD.GG.03.US\",\"1208_T3.2_.... Principal (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTS.CD.GG.0912.US\",\"1463_T3.2_.... Principal (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTS.CD.GG.1218.US\",\"1548_T3.2_.... Principal (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTS.CD.GG.1824.US\",\"1633_T3.2_.... Principal (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTS.CD.GG.24P.US\",\"1718_T3.2_.... Principal (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTS.CD.GG.36.US\",\"1293_T3.2_.... Principal (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTS.CD.GG.69.US\",\"1378_T3.2_.... Principal (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTS.CD.GG.IQ.US\",\"1123_T3.2_.... Principal (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTS.CD.MA.AR.03.US\",\"1227_T3.2_.... Principal (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTS.CD.MA.AR.0912.US\",\"1482_T3.2_.... Principal (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTS.CD.MA.AR.1218.US\",\"1567_T3.2_.... Principal (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTS.CD.MA.AR.1824.US\",\"1652_T3.2_.... Principal (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTS.CD.MA.AR.24P.US\",\"1737_T3.2_.... Principal (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTS.CD.MA.AR.36.US\",\"1312_T3.2_.... Principal (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTS.CD.MA.AR.69.US\",\"1397_T3.2_.... Principal (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTS.CD.MA.AR.IQ.US\",\"1142_T3.2_.... Principal (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTT.CD.CB.AR.03.US\",\"1255_T3.2_.... Principal (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTT.CD.CB.AR.0912.US\",\"1510_T3.2_.... Principal (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTT.CD.CB.AR.1218.US\",\"1595_T3.2_.... Principal (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTT.CD.CB.AR.1824.US\",\"1680_T3.2_.... Principal (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTT.CD.CB.AR.24P.US\",\"1765_T3.2_.... Principal (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTT.CD.CB.AR.36.US\",\"1340_T3.2_.... Principal (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTT.CD.CB.AR.69.US\",\"1425_T3.2_.... Principal (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTT.CD.CB.AR.IQ.US\",\"1170_T3.2_.... Principal (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTT.CD.GG.AR.03.US\",\"1220_T3.2_.... Principal (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTT.CD.GG.AR.0912.US\",\"1475_T3.2_.... Principal (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTT.CD.GG.AR.1218.US\",\"1560_T3.2_.... Principal (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTT.CD.GG.AR.1824.US\",\"1645_T3.2_.... Principal (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTT.CD.GG.AR.24P.US\",\"1730_T3.2_.... Principal (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTT.CD.GG.AR.36.US\",\"1305_T3.2_.... Principal (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTT.CD.GG.AR.69.US\",\"1390_T3.2_.... Principal (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTT.CD.GG.AR.IQ.US\",\"1135_T3.2_.... Principal (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTT.CD.MA.AR.03.US\",\"1239_T3.2_.... Principal (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTT.CD.MA.AR.0912.US\",\"1494_T3.2_.... Principal (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTT.CD.MA.AR.1218.US\",\"1579_T3.2_.... Principal (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTT.CD.MA.AR.1824.US\",\"1664_T3.2_.... Principal (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTT.CD.MA.AR.24P.US\",\"1749_T3.2_.... Principal (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTT.CD.MA.AR.36.US\",\"1324_T3.2_.... Principal (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTT.CD.MA.AR.69.US\",\"1409_T3.2_.... Principal (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTT.CD.MA.AR.IQ.US\",\"1154_T3.2_.... Principal (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTT.CD.OT.AR.03.US\",\"1271_T3.2_.... Principal (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTT.CD.OT.AR.0912.US\",\"1526_T3.2_.... Principal (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTT.CD.OT.AR.1218.US\",\"1611_T3.2_.... Principal (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTT.CD.OT.AR.1824.US\",\"1696_T3.2_.... Principal (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTT.CD.OT.AR.24P.US\",\"1781_T3.2_.... Principal (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTT.CD.OT.AR.36.US\",\"1356_T3.2_.... Principal (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTT.CD.OT.AR.69.US\",\"1441_T3.2_.... Principal (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLTT.CD.OT.AR.IQ.US\",\"1186_T3.2_.... Principal (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AMT.DLXF.CD\",\"Principal repayments on external debt, long-term (AMT, current US$)\",\"Principal repayments on long-term debt are actual amounts of principal (amortization) paid by the borrower in currency, goods, or services in the year specified. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents by residents of an economy and repayable in currency, goods, or services. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.AMT.DPNG.CD\",\"Principal repayments on external debt, private nonguaranteed (PNG) (AMT, current US$)\",\"Private nonguaranteed external debt is an external obligation of a private debtor that is not guaranteed for repayment by a public entity. Principal repayments are actual amounts of principal (amortization) paid by the borrower in currency, goods, or services in the year specified. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents by residents of an economy and repayable in currency, goods, or services. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.AMT.DPPG.CD\",\"Principal repayments on external debt, public and publicly guaranteed (PPG) (AMT, current US$)\",\"Public and publicly guaranteed long-term debt are aggregated. Public debt is an external obligation of a public debtor, including the national government, a political subdivision (or an agency of either), and autonomous public bodies. Publicly guaranteed debt is an external obligation of a private debtor that is guaranteed for repayment by a public entity. Principal repayments are actual amounts of principal (amortization) paid by the borrower in currency, goods, or services in the year specified. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents by residents of an economy and repayable in currency, goods, or services. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.AMT.MIBR.CD\",\"PPG, IBRD (AMT, current US$)\",\"Public and publicly guaranteed debt outstanding from the International Bank for Reconstruction and Development (IBRD) is nonconcessional. Nonconcessional debt excludes loans with an original grant element of 25 percent or more. Principal repayments are actual amounts of principal (amortization) paid by the borrower in currency, goods, or services in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.AMT.MIDA.CD\",\"PPG, IDA (AMT, current US$)\",\"Public and publicly guaranteed debt outstanding from the International Development Association (IDA) is concessional. Concessional debt is defined as loans with an original grant element of 25 percent or more. The grant element of a loan is the grant equivalent expressed as a percentage of the amount committed. It is used as a measure of the overall cost of borrowing. The grant equivalent of a loan is its commitment (present) value, less the discounted present value of its contractual debt service; conventionally, future service payments are discounted at 10 percent. Principal repayments are actual amounts of principal (amortization) paid by the borrower in currency, goods, or services in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.AMT.MLAT.CD\",\"PPG, multilateral (AMT, current US$)\",\"Public and publicly guaranteed multilateral loans include loans and credits from the World Bank, regional development banks, and other multilateral and intergovernmental agencies. Excluded are loans from funds administered by an international organization on behalf of a single donor government; these are classified as loans from governments. Principal repayments are actual amounts of principal (amortization) paid by the borrower in currency, goods, or services in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.AMT.MLTC.CD\",\"PPG, multilateral concessional (AMT, current US$)\",\"Public and publicly guaranteed multilateral loans include loans and credits from the World Bank, regional development banks, and other multilateral and intergovernmental agencies. Excluded are loans from funds administered by an international organization on behalf of a single donor government; these are classified as loans from governments. Concessional debt is defined as loans with an original grant element of 25 percent or more. The grant element of a loan is the grant equivalent expressed as a percentage of the amount committed. It is used as a measure of the overall cost of borrowing. The grant equivalent of a loan is its commitment (present) value, less the discounted present value of its contractual debt service; conventionally, future service payments are discounted at 10 percent. Principal repayments are actual amounts of principal (amortization) paid by the borrower in currency, goods, or services in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.AMT.OFFT.CD\",\"PPG, official creditors (AMT, current US$)\",\"Public and publicly guaranteed debt from official creditors includes loans from international organizations (multilateral loans) and loans from governments (bilateral loans). Loans from international organization include loans and credits from the World Bank, regional development banks, and other multilateral and intergovernmental agencies. Excluded are loans from funds administered by an international organization on behalf of a single donor government; these are classified as loans from governments. Government loans include loans from governments and their agencies (including central banks), loans from autonomous bodies, and direct loans from official export credit agencies. Principal repayments are actual amounts of principal (amortization) paid by the borrower in currency, goods, or services in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.AMT.PBND.CD\",\"PPG, bonds (AMT, current US$)\",\"Public and publicly guaranteed debt from bonds that are either publicly issued or privately placed. Principal repayments are actual amounts of principal (amortization) paid by the borrower in currency, goods, or services in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.AMT.PCBK.CD\",\"PPG, commercial banks (AMT, current US$)\",\"Public and publicly guaranteed commercial bank loans from private banks and other private financial institutions. Principal repayments are actual amounts of principal (amortization) paid by the borrower in currency, goods, or services in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.AMT.PGNG.CD\",\"Principal repayments, PPG and PNG private creditors (AMT, current US$)\",\"Private nonguaranteed external debt is an external obligation of a private debtor that is not guaranteed for repayment by a public entity. Principal repayments are actual amounts of principal (amortization) paid in currency, goods, or services in the year specified. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents and repayable in currency, goods, or services.  Data are in current U.S. dollars.  \",\"Africa Development Indicators\",\"World Bank, Global Development Finance.\"\n\"DT.AMT.PNGB.CD\",\"PNG, bonds (AMT, current US$)\",\"Nonguaranteed long-term debt from bonds that are privately placed. Principal repayments are actual amounts of principal (amortization) paid by the borrower in currency, goods, or services in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.AMT.PNGC.CD\",\"PNG, commercial banks and other creditors (AMT, current US$)\",\"Nonguaranteed long-term commercial bank loans from private banks and other private financial institutions. Principal repayments are actual amounts of principal (amortization) paid by the borrower in currency, goods, or services in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.AMT.PROP.CD\",\"PPG, other private creditors (AMT, current US$)\",\"Public and publicly guaranteed other private credits from manufacturers, exporters, and other suppliers of goods, and bank credits covered by a guarantee of an export credit agency. Principal repayments are actual amounts of principal (amortization) paid by the borrower in currency, goods, or services in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.AMT.PRVS.CD.00.03.MO.US\",\"032_T2_.. Principal (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.PRVS.CD.03.YR.US\",\"098_T2_.. Principal (3yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.PRVS.CD.04.06.MO.US\",\"043_T2_.. Principal (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.PRVS.CD.04.YR.US\",\"109_T2_.. Principal (4yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.PRVS.CD.05.10.YR.US\",\"131_T2_.. Principal (More than 5 to 10 yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.PRVS.CD.05.YR.US\",\"120_T2_.. Principal (5yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.PRVS.CD.07.09.MO.US\",\"054_T2_.. Principal (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.PRVS.CD.10.12.MO.US\",\"065_T2_.. Principal (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.PRVS.CD.10.15.YR.US\",\"142_T2_.. Principal (More than 10 to 15 yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.PRVS.CD.13.18.MO.US\",\"076_T2_.. Principal (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.PRVS.CD.15.UP.YR.US\",\"153_T2_.. Principal (More than 15 yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.PRVS.CD.19.24.MO.US\",\"087_T2_.. Principal (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.PRVS.CD.IQ.00.US\",\"021_T2_.. Principal (immediately) 3/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.PRVT.CD\",\"PPG, private creditors (AMT, current US$)\",\"Public and publicly guaranteed debt from private creditors include bonds that are either publicly issued or privately placed; commercial bank loans from private banks and other private financial institutions; and other private credits from manufacturers, exporters, and other suppliers of goods, and bank credits covered by a guarantee of an export credit agency. Principal repayments are actual amounts of principal (amortization) paid by the borrower in currency, goods, or services in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.AMT.PUBS.CD.00.03.MO.US\",\"029_T2_.. Principal (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.PUBS.CD.03.YR.US\",\"095_T2_.. Principal (3yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.PUBS.CD.04.06.MO.US\",\"040_T2_.. Principal (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.PUBS.CD.04.YR.US\",\"106_T2_.. Principal (4yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.PUBS.CD.05.10.YR.US\",\"128_T2_.. Principal (More than 5 to 10 yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.PUBS.CD.05.YR.US\",\"117_T2_.. Principal (5yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.PUBS.CD.07.09.MO.US\",\"051_T2_.. Principal (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.PUBS.CD.10.12.MO.US\",\"062_T2_.. Principal (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.PUBS.CD.10.15.YR.US\",\"139_T2_.. Principal (More than 10 to 15 yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.PUBS.CD.13.18.MO.US\",\"073_T2_.. Principal (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.PUBS.CD.15.UP.YR.US\",\"150_T2_.. Principal (More than 15 yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.PUBS.CD.19.24.MO.US\",\"084_T2_.. Principal (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AMT.PUBS.CD.IQ.00.US\",\"018_T2_.. Principal (immediately) 3/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.AXA.DECT.CD.CB.US\",\"0398_T1.4_.. Principal\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AXA.DECT.CD.GG.US\",\"0392_T1.4_.. Principal\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AXA.DECT.CD.MA.US\",\"0395_T1.4_.. Principal\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AXA.DECT.CD.OT.HH.US\",\"0410_T1.4_.... Principal\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AXA.DECT.CD.OT.NB.US\",\"0404_T1.4_.. Principal\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AXA.DECT.CD.OT.NF.US\",\"0407_T1.4_.... Principal\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AXA.DECT.CD.OT.US\",\"0401_T1.4_.. Principal\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AXA.DIDI.CD.IL.US\",\"0416_T1.4_.. Principal\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AXA.DIFE.CD.IL.US\",\"0422_T1.4_.... Principal\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AXA.DIIE.CD.IL.US\",\"0419_T1.4_.... Principal\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.AXA.DPPG.CD\",\"Principal arrears, long-term DOD (US$)\",\"Principal in arrears on long-term debt is defined as principal repayment due but not paid, on a cumulative basis. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents by residents of an economy and repayable in currency, goods, or services. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.AXA.OFFT.CD\",\"Principal arrears, official creditors (current US$)\",\"Principal in arrears on long-term debt is defined as principal repayment due but not paid, on a cumulative basis. Debt from official creditors includes loans from international organizations (multilateral loans) and loans from governments (bilateral loans). Loans from international organization include loans and credits from the World Bank, regional development banks, and other multilateral and intergovernmental agencies. Excluded are loans from funds administered by an international organization on behalf of a single donor government; these are classified as loans from governments. Government loans include loans from governments and their agencies (including central banks), loans from autonomous bodies, and direct loans from official export credit agencies. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents by residents of an economy and repayable in currency, goods, or services. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.AXA.PRVT.CD\",\"Principal arrears, private creditors (current US$)\",\"Principal in arrears on long-term debt is defined as principal repayment due but not paid, on a cumulative basis. Debt from private creditors include bonds that are either publicly issued or privately placed; commercial bank loans from private banks and other private financial institutions; and other private credits from manufacturers, exporters, and other suppliers of goods, and bank credits covered by a guarantee of an export credit agency. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents by residents of an economy and repayable in currency, goods, or services. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.AXF.DPPG.CD\",\"Principal forgiven (current US$)\",\"Principal forgiven is the amount of principal due or in arrears that was written off or forgiven in any given year. It includes debt forgiven within and outside Paris Club agreements, principal forgiven and principal arrears forgiven. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.AXR.DPPG.CD\",\"Principal rescheduled (current US$)\",\"Principal rescheduled is the amount of principal due or in arrears that was rescheduled in any given year. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.AXR.OFFT.CD\",\"Principal rescheduled, official (current US$)\",\"Principal rescheduled is the amount of principal due or in arrears that was rescheduled in any given year. Debt from official creditors includes loans from international organizations (multilateral loans) and loans from governments (bilateral loans). Loans from international organization include loans and credits from the World Bank, regional development banks, and other multilateral and intergovernmental agencies. Excluded are loans from funds administered by an international organization on behalf of a single donor government; these are classified as loans from governments. Government loans include loans from governments and their agencies (including central banks), loans from autonomous bodies, and direct loans from official export credit agencies. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.AXR.PRVT.CD\",\"Principal rescheduled, private (current US$)\",\"Principal rescheduled is the amount of principal due or in arrears that was rescheduled in any given year. Debt from private creditors include bonds that are either publicly issued or privately placed; commercial bank loans from private banks and other private financial institutions; and other private credits from manufacturers, exporters, and other suppliers of goods, and bank credits covered by a guarantee of an export credit agency. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.COM.DPPG.CD\",\"Commitments, public and publicly guaranteed (COM, current US$)\",\"Commitments are the total amount of long-term loans for which contracts were signed in the year specified; data for private nonguaranteed debt are not available. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents by residents of an economy and repayable in currency, goods, or services. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.COM.MIBR.CD\",\"Commitments, IBRD (COM, current US$)\",\"Commitments (IBRD) are the sum of new commitments on public and publicly guaranteed loans from the International Bank for Reconstruction and Development (IBRD). Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.COM.MIDA.CD\",\"Commitments, IDA (COM, current US$)\",\"Commitments (IDA) are the sum of new commitments on public and publicly guaranteed loans from the International Development Association (IDA). Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.COM.OFFT.CD\",\"Commitments, official creditors (COM, current US$)\",\"Commitments are the amount of long-term loans for which contracts were signed in the year specified. Debt from official creditors includes loans from international organizations (multilateral loans) and loans from governments (bilateral loans). Loans from international organization include loans and credits from the World Bank, regional development banks, and other multilateral and intergovernmental agencies. Excluded are loans from funds administered by an international organization on behalf of a single donor government; these are classified as loans from governments. Government loans include loans from governments and their agencies (including central banks), loans from autonomous bodies, and direct loans from official export credit agencies. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents by residents of an economy and repayable in currency, goods, or services. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.COM.PRVT.CD\",\"Commitments, private creditors (COM, current US$)\",\"Commitments are the amount of long-term loans for which contracts were signed in the year specified; data for private nonguaranteed debt are not available. Debt from private creditors include bonds that are either publicly issued or privately placed; commercial bank loans from private banks and other private financial institutions; and other private credits from manufacturers, exporters, and other suppliers of goods, and bank credits covered by a guarantee of an export credit agency. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents by residents of an economy and repayable in currency, goods, or services. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.CUR.DMAK.ZS\",\"Currency composition of PPG debt, Deutsche mark (%)\",\"The percentage of external long-term public and publicly-guaranteed debt contracted in Deutsche marks for the low- and middle-income countries.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.CUR.EURO.ZS\",\"Currency composition of PPG debt, Euro (%)\",\"The percentage of external long-term public and publicly-guaranteed debt contracted in Euros for the low- and middle-income countries.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.CUR.FFRC.ZS\",\"Currency composition of PPG debt, French franc (%)\",\"The percentage of external long-term public and publicly-guaranteed debt contracted in French francs for the low- and middle-income countries.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.CUR.JYEN.ZS\",\"Currency composition of PPG debt, Japanese yen (%)\",\"The percentage of external long-term public and publicly-guaranteed debt contracted in Japanese yen for the low- and middle-income countries.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.CUR.MULC.ZS\",\"Currency composition of PPG debt, Multiple currencies (%)\",\"The percentage of external long-term public and publicly-guaranteed debt contracted in multiple currencies for the low- and middle-income countries.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.CUR.OTHC.ZS\",\"Currency composition of PPG debt, all other currencies (%)\",\"The percentage of external long-term public and publicly-guaranteed debt contracted in all other currencies not specified for the low- and middle-income countries.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.CUR.SDRW.ZS\",\"Currency composition of PPG debt, SDR (%)\",\"The percentage of external long-term public and publicly-guaranteed debt contracted in special drawing rights for the low- and middle-income countries.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.CUR.SWFR.ZS\",\"Currency composition of PPG debt, Swiss franc (%)\",\"The percentage of external long-term public and publicly-guaranteed debt contracted in Swiss francs for the low- and middle-income countries.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.CUR.UKPS.ZS\",\"Currency composition of PPG debt, Pound sterling (%)\",\"The percentage of external long-term public and publicly-guaranteed debt contracted in U.K. pound sterling for the low- and middle-income countries.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.CUR.USDL.ZS\",\"Currency composition of PPG debt, U.S. dollars (%)\",\"The percentage of external long-term public and publicly-guaranteed debt contracted in U.S. dollars for the low- and middle-income countries.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DFR.DPPG.CD\",\"Debt forgiveness or reduction (current US$)\",\"Debt forgiveness or reduction shows the change in debt stock due to debt forgiveness or reduction. It is derived by subtracting debt forgiven and debt stock reduction from debt buyback. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DIS.BLAT.CD\",\"PPG, bilateral (DIS, current US$)\",\"Bilateral debt includes loans from governments and their agencies (including central banks), loans from autonomous bodies, and direct loans from official export credit agencies. Disbursements are drawings by the borrower on loan commitments during the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DIS.BLCT.CD\",\"Disbursements, Bilateral on nonconcessional terms (DIS, current US$)\",\"Bilateral debt includes loans from governments and their agencies (including central banks), loans from autonomous bodies, and direct loans from official export credit agencies. Concessional debt is defined as loans with an original grant element of 25 percent or more. The grant equivalent of a loan is its commitment (present) value, less the discounted present value of its contractual debt service; conventionally, future service payments are discounted at 10 percent. The grant element of a loan is the grant equivalent expressed as a percentage of the amount committed. It is used as a measure of the overall cost of borrowing. Disbursements are drawings on loan commitments during the year specified.  \",\"Africa Development Indicators\",\"World Bank, Global Development Finance.\"\n\"DT.DIS.BLTC.CD\",\"PPG, bilateral concessional (DIS, current US$)\",\"Bilateral debt includes loans from governments and their agencies (including central banks), loans from autonomous bodies, and direct loans from official export credit agencies. Concessional debt is defined as loans with an original grant element of 25 percent or more. The grant element of a loan is the grant equivalent expressed as a percentage of the amount committed. It is used as a measure of the overall cost of borrowing. The grant equivalent of a loan is its commitment (present) value, less the discounted present value of its contractual debt service; conventionally, future service payments are discounted at 10 percent. Disbursements are drawings by the borrower on loan commitments during the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DIS.DECT.CD\",\"Disbursements, Total (current US$)\",\"Disbursements are drawings on loan commitments during the year specified. This item includes disbursements on long-term and short-term debt and IMF repurchases. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents and repayable in currency, goods, or services. IMF purchases are total drawings on the General Resources Account of the IMF during the year specified, excluding drawings in the reserve tranche. To maintain comparability between data on transactions with the IMF and data on long-term debt, use of IMF credit outstanding at the end of year (stock) is converted to dollars at the SDR exchange rate in effect at the end of year. Purchases are converted at the average SDR exchange rate for the year in which transactions take place.  \",\"Africa Development Indicators\",\"World Bank, Global Development Finance.\"\n\"DT.DIS.DIMF.CD\",\"IMF purchases (DIS, current US$)\",\"IMF purchases are total drawings on the General Resources Account of the IMF during the year specified, excluding drawings in the reserve tranche. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DIS.DLTF.CD\",\"Disbursements on external debt, long-term + IMF (DIS, current US$)\",\"Disbursements are drawings by the borrower on loan commitments during the year specified. This item includes disbursements on long-term debt and IMF purchases. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents by residents of an economy and repayable in currency, goods, or services. IMF purchases are total drawings on the General Resources Account of the IMF during the year specified, excluding drawings in the reserve tranche. To maintain comparability between data on transactions with the IMF and data on long-term debt, use of IMF credit outstanding at the end of year (stock) is converted to dollars at the SDR exchange rate in effect at the end of year. Purchases are converted at the average SDR exchange rate for the year in which transactions take place. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DIS.DLXF.CD\",\"Disbursements on external debt, long-term (DIS, current US$)\",\"Disbursements on long-term debt are drawings by the borrower on loan commitments during the year specified. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents by residents of an economy and repayable in currency, goods, or services. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DIS.DPNG.CD\",\"Disbursements on external debt, private nonguaranteed (PNG) (DIS, current US$)\",\"Private nonguaranteed external debt is an external obligation of a private debtor that is not guaranteed for repayment by a public entity. Disbursements are drawings by the borrower on loan commitments during the year specified. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents by residents of an economy and repayable in currency, goods, or services. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DIS.DPPG.CD\",\"Disbursements on external debt, public and publicly guaranteed (PPG) (DIS, current US$)\",\"Public and publicly guaranteed long-term debt are aggregated. Public debt is an external obligation of a public debtor, including the national government, a political subdivision (or an agency of either), and autonomous public bodies. Publicly guaranteed debt is an external obligation of a private debtor that is guaranteed for repayment by a public entity. Disbursements are drawings by the borrower on loan commitments during the year specified. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents by residents of an economy and repayable in currency, goods, or services. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DIS.DSTC.CD\",\"Disbursements, Short-term (DIS, current US$)\",\"Short-term external debt is defined as debt that has an original maturity of one year or less. Available data permit no distinction between public and private nonguaranteed short-term debt.  Data are in current U.S. dollars.  \",\"Africa Development Indicators\",\"World Bank, Global Development Finance.\"\n\"DT.DIS.IDAG.CD\",\"IDA grants (current US$)\",\"IDA grants are net disbursements of grants from the International Development Association (IDA). Data are in current U.S. dollars. Regional allocations are included in aggregate data.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DIS.MIBR.CD\",\"PPG, IBRD (DIS, current US$)\",\"Public and publicly guaranteed debt outstanding from the International Bank for Reconstruction and Development (IBRD) is nonconcessional. Nonconcessional debt excludes loans with an original grant element of 25 percent or more. Disbursements are drawings by the borrower on loan commitments during the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DIS.MIDA.CD\",\"PPG, IDA (DIS, current US$)\",\"Public and publicly guaranteed debt outstanding from the International Development Association (IDA) is concessional. Concessional debt is defined as loans with an original grant element of 25 percent or more. The grant element of a loan is the grant equivalent expressed as a percentage of the amount committed. It is used as a measure of the overall cost of borrowing. The grant equivalent of a loan is its commitment (present) value, less the discounted present value of its contractual debt service; conventionally, future service payments are discounted at 10 percent. Disbursements are drawings by the borrower on loan commitments during the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DIS.MLAT.CD\",\"PPG, multilateral (DIS, current US$)\",\"Public and publicly guaranteed multilateral loans include loans and credits from the World Bank, regional development banks, and other multilateral and intergovernmental agencies. Excluded are loans from funds administered by an international organization on behalf of a single donor government; these are classified as loans from governments. Disbursements are drawings by the borrower on loan commitments during the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DIS.MLCT.CD\",\"Disbursements, PPG Multilateral creditors nonconcessional (DIS, current US$)\",\"Public and publicly guaranteed multilateral loans include loans and credits from the World Bank, regional development banks, and other multilateral and intergovernmental agencies. Excluded are loans from funds administered by an international organization on behalf of a single donor government. Disbursements are drawings on loan commitments during the year specified.  Data are in current U.S. dollars.  \",\"Africa Development Indicators\",\"World Bank, Global Development Finance.\"\n\"DT.DIS.MLTC.CD\",\"PPG, multilateral concessional (DIS, current US$)\",\"Public and publicly guaranteed multilateral loans include loans and credits from the World Bank, regional development banks, and other multilateral and intergovernmental agencies. Excluded are loans from funds administered by an international organization on behalf of a single donor government; these are classified as loans from governments. Concessional debt is defined as loans with an original grant element of 25 percent or more. The grant element of a loan is the grant equivalent expressed as a percentage of the amount committed. It is used as a measure of the overall cost of borrowing. The grant equivalent of a loan is its commitment (present) value, less the discounted present value of its contractual debt service; conventionally, future service payments are discounted at 10 percent. Disbursements are drawings by the borrower on loan commitments during the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DIS.OFFT.CD\",\"PPG, official creditors (DIS, current US$)\",\"Public and publicly guaranteed debt from official creditors includes loans from international organizations (multilateral loans) and loans from governments (bilateral loans). Loans from international organization include loans and credits from the World Bank, regional development banks, and other multilateral and intergovernmental agencies. Excluded are loans from funds administered by an international organization on behalf of a single donor government; these are classified as loans from governments. Government loans include loans from governments and their agencies (including central banks), loans from autonomous bodies, and direct loans from official export credit agencies. Disbursements are drawings by the borrower on loan commitments during the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DIS.PBND.CD\",\"PPG, bonds (DIS, current US$)\",\"Public and publicly guaranteed debt from bonds that are either publicly issued or privately placed. Disbursements are drawings by the borrower on loan commitments during the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DIS.PCBK.CD\",\"PPG, commercial banks (DIS, current US$)\",\"Public and publicly guaranteed commercial bank loans from private banks and other private financial institutions. Disbursements are drawings by the borrower on loan commitments during the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DIS.PGNG.CD\",\"Disbursements, PPG and PNG private creditors (current US$)\",\"Private nonguaranteed external debt is an external obligation of a private debtor that is not guaranteed for repayment by a public entity. Disbursements are drawings on loan commitments during the year specified. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents and repayable in currency, goods, or services.  Public and publicly guaranteed debt from private creditors include bonds that are either publicly issued or privately placed; commercial bank loans from private banks and other private financial institutions; and private credits from manufacturers, exporters, and other suppliers of goods, and bank credits covered by a guarantee of an export credit agency.   Disbursements are drawings on loan commitments during the year specified.  \",\"Africa Development Indicators\",\"World Bank, Global Development Finance.\"\n\"DT.DIS.PNGB.CD\",\"PNG, bonds (DIS, current US$)\",\"Nonguaranteed long-term debt from bonds that are privately placed. Disbursements are drawings by the borrower on loan commitments during the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DIS.PNGC.CD\",\"PNG, commercial banks and other creditors (DIS, current US$)\",\"Nonguaranteed long-term commercial bank loans from private banks and other private financial institutions. Disbursements are drawings by the borrower on loan commitments during the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DIS.PROP.CD\",\"PPG, other private creditors (DIS, current US$)\",\"Public and publicly guaranteed other private credits from manufacturers, exporters, and other suppliers of goods, and bank credits covered by a guarantee of an export credit agency. Disbursements are drawings by the borrower on loan commitments during the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DIS.PRVT.CD\",\"PPG, private creditors (DIS, current US$)\",\"Public and publicly guaranteed debt from private creditors include bonds that are either publicly issued or privately placed; commercial bank loans from private banks and other private financial institutions; and other private credits from manufacturers, exporters, and other suppliers of goods, and bank credits covered by a guarantee of an export credit agency. Disbursements are drawings by the borrower on loan commitments during the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DOD.ALLC.CD\",\"External debt stocks, concessional (DOD, current US$)\",\"Concessional external debt conveys information about the borrower's receipt of aid from official lenders at concessional terms as defined by the Development Assistance Committee (DAC) of the OECD. Concessional debt is defined as loans with an original grant element of 25 percent or more. The grant element of a loan is the grant equivalent expressed as a percentage of the amount committed. It is used as a measure of the overall cost of borrowing. The grant equivalent of a loan is its commitment (present) value, less the discounted present value of its contractual debt service; conventionally, future service payments are discounted at 10 percent. Loans from major regional development banks--African Development Bank, Asian Development Bank, and the Inter-American Development Bank--and from the World Bank are classified as concessional according to each institution's classification and not according to the DAC definition, as was the practice in earlier reports. Long-term debt outstanding and disbursed is the total outstanding long-term debt at year end. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents and repayable in currency, goods, or services. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DOD.ALLC.ZS\",\"Concessional debt (% of total external debt)\",\"Concessional debt to total external debt stocks. Concessional debt is defined as loans with an original grant element of 25 percent or more.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DOD.ALLC.ZSG\",\"Debt on Concessional terms to GDP (% of GDP)\",\"Concessional Long-term Debt Outstanding and Disbursed (LDOD) conveys information about the borrower's receipt of aid from official lenders at concessional terms as defined by the Development Assistance Committee (DAC) of the OECD. Concessional debt is defined as loans with an original grant element of 25 percent or more. The grant equivalent of a loan is its commitment (present) value, less the discounted present value of its contractual debt service; conventionally, future service payments are discounted at 10 percent. The grant element of a loan is the grant equivalent expressed as a percentage of the amount committed. It is used as a measure of the overall cost of borrowing. Loans from major regional development banks--African Development Bank, Asian Development Bank, and the Inter-American Development Bank--and from the World Bank are classified as concessional according to each institution's classification and not according to the DAC definition, as was the practice in earlier reports. LDOD is the total outstanding long-term debt at year end. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents and repayable in currency, goods, or services.  \",\"Africa Development Indicators\",\"World Bank, Global Development Finance.\"\n\"DT.DOD.ALLC.ZSX\",\"Debt on Concessional terms to export ratio (% of exports)\",\"Concessional Long-term Debt Outstanding and Disbursed (LDOD) conveys information about the borrower's receipt of aid from official lenders at concessional terms as defined by the Development Assistance Committee (DAC) of the OECD. Concessional debt is defined as loans with an original grant element of 25 percent or more. The grant equivalent of a loan is its commitment (present) value, less the discounted present value of its contractual debt service; conventionally, future service payments are discounted at 10 percent. The grant element of a loan is the grant equivalent expressed as a percentage of the amount committed. It is used as a measure of the overall cost of borrowing. Loans from major regional development banks--African Development Bank, Asian Development Bank, and the Inter-American Development Bank--and from the World Bank are classified as concessional according to each institution's classification and not according to the DAC definition, as was the practice in earlier reports. LDOD is the total outstanding long-term debt at year end. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents and repayable in currency, goods, or services.  The denominator is the sum of total goods and service exports (per the balance of payments account) and workers' remittances (per the balance of payments account).  \",\"Africa Development Indicators\",\"World Bank, Global Development Finance.\"\n\"DT.DOD.ALLN.CD\",\"Debt on Non-concessional terms (current US$)\",\"Non-concessional Long-term Debt Outstanding and Disbursed (LDOD) conveys information about the borrower's receipt of aid from official lenders on non-concessional terms as defined by the Development Assistance Committee (DAC) of the OECD. This is the difference between the total debt outstanding and disbursed less debt on concessional terms.  Concessional debt is defined as loans with an original grant element of 25 percent or more. The grant equivalent of a loan is its commitment (present) value, less the discounted present value of its contractual debt service; conventionally, future service payments are discounted at 10 percent. The grant element of a loan is the grant equivalent expressed as a percentage of the amount committed. It is used as a measure of the overall cost of borrowing. Loans from major regional development banks--African Development Bank, Asian Development Bank, and the Inter-American Development Bank--and from the World Bank are classified as concessional according to each institution's classification and not according to the DAC definition, as was the practice in earlier reports. LDOD is the total outstanding long-term debt at year end. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents and repayable in currency, goods, or services.  Data are in current U.S. dollars.  \",\"Africa Development Indicators\",\"World Bank, Global Development Finance.\"\n\"DT.DOD.ALLN.ZSG\",\"Debt on Non-concessional terms to GDP (% of GDP)\",\"Non-concessional LDOD conveys information about the borrower's receipt of aid from official lenders on non-concessional terms as defined by the Development Assistance Committee (DAC) of the OECD. Concessional debt is defined as loans with an original grant element of 25 percent or more. The grant equivalent of a loan is its commitment (present) value, less the discounted present value of its contractual debt service; conventionally, future service payments are discounted at 10 percent. The grant element of a loan is the grant equivalent expressed as a percentage of the amount committed. It is used as a measure of the overall cost of borrowing. Loans from major regional development banks--African Development Bank, Asian Development Bank, and the Inter-American Development Bank--and from the World Bank are classified as concessional according to each institution's classification and not according to the DAC definition, as was the practice in earlier reports. Long-term debt outstanding and disbursed (LDOD) is the total outstanding long-term debt at year end. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents and repayable in currency, goods, or services.  Data are in current U.S. dollars.  \",\"Africa Development Indicators\",\"World Bank, Global Development Finance.\"\n\"DT.DOD.ALLN.ZSX\",\"Debt on Non-concessional terms to export ratio (% of exports)\",\"Non-concessional LDOD conveys information about the borrower's receipt of aid from official lenders on non-concessional terms as defined by the Development Assistance Committee (DAC) of the OECD. Concessional debt is defined as loans with an original grant element of 25 percent or more. The grant equivalent of a loan is its commitment (present) value, less the discounted present value of its contractual debt service; conventionally, future service payments are discounted at 10 percent. The grant element of a loan is the grant equivalent expressed as a percentage of the amount committed. It is used as a measure of the overall cost of borrowing. Loans from major regional development banks--African Development Bank, Asian Development Bank, and the Inter-American Development Bank--and from the World Bank are classified as concessional according to each institution's classification and not according to the DAC definition, as was the practice in earlier reports. Long-term debt outstanding and disbursed (LDOD) is the total outstanding long-term debt at year end. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents and repayable in currency, goods, or services.  Data are divided by GDP at market prices in current U.S. dollars to facilitate comparison across economies.  \",\"Africa Development Indicators\",\"World Bank, Global Development Finance.\"\n\"DT.DOD.BLAT.CD\",\"PPG, bilateral (DOD, current US$)\",\"Public and publicly guaranteed bilateral debt includes loans from governments and their agencies (including central banks), loans from autonomous bodies, and direct loans from official export credit agencies. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DOD.BLTC.CD\",\"PPG, bilateral concessional (DOD, current US$)\",\"Public and publicly guaranteed bilateral debt includes loans from governments and their agencies (including central banks), loans from autonomous bodies, and direct loans from official export credit agencies. Concessional debt is defined as loans with an original grant element of 25 percent or more. The grant element of a loan is the grant equivalent expressed as a percentage of the amount committed. It is used as a measure of the overall cost of borrowing. The grant equivalent of a loan is its commitment (present) value, less the discounted present value of its contractual debt service; conventionally, future service payments are discounted at 10 percent. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DOD.BLTN.CD\",\"Debt outstanding and disbursed, PPG Bilateral on nonconcessional terms (DOD, current US$)\",\"Bilateral debt includes loans from governments and their agencies (including central banks), loans from autonomous bodies, and direct loans from official export credit agencies. These are non-concessional figures, however the explanation for concessional is provided here as reference.  Concessional debt is defined as loans with an original grant element of 25 percent or more. The grant equivalent of a loan is its commitment (present) value, less the discounted present value of its contractual debt service; conventionally, future service payments are discounted at 10 percent. The grant element of a loan is the grant equivalent expressed as a percentage of the amount committed. It is used as a measure of the overall cost of borrowing. Principal repayments are actual amounts of principal (amortization) paid in currency, goods, or services in the year specified.  \",\"Africa Development Indicators\",\"World Bank, Global Development Finance.\"\n\"DT.DOD.BNLT.CD.PR.AR.US\",\"0368_T1.3_.... Debt securities \",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.BNLT.CD.PU.AR.US\",\"0351_T1.3_.... Debt securities \",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.CDLT.CD.PR.AR.US\",\"0367_T1.3_.... Currency and deposits 5/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.CDLT.CD.PU.AR.US\",\"0350_T1.3_.... Currency and deposits 5/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.CDST.CD.PR.AR.US\",\"0361_T1.3_.... Currency and deposits 5/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.CDST.CD.PU.AR.US\",\"0343_T1.3_.... Currency and deposits 5/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.AR.T4.US\",\"235_T4_Arrears \",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.DECT.AR.US\",\"0060_T1_Arrears: By Sector\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CB.AR.US\",\"0063_T1_.. Deposit-Taking Corporations, except the Central Bank\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CB.DS.US\",\"0069_T1_.. Deposit-Taking Corporations, except the Central Bank\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD\",\"External debt stocks, total (DOD, current US$)\",\"Total external debt is debt owed to nonresidents repayable in currency, goods, or services. Total external debt is the sum of public, publicly guaranteed, and private nonguaranteed long-term debt, use of IMF credit, and short-term debt. Short-term debt includes all debt having an original maturity of one year or less and interest in arrears on long-term debt. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DOD.DECT.CD.AR.BE.US\",\"0666_T1.6_Gross External Debt (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.AR.EA.US\",\"0546_T1.5_Total (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.AR.EN.US\",\"0961_T1.6_Gross External Debt (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.AR.EX.US\",\"0784_T1.6_Gross External Debt (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.AR.GE.US\",\"0485_T1.5_Total (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.AR.NE.US\",\"0607_T1.5_Total (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.AR.OC.US\",\"0902_T1.6_Gross External Debt (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.AR.PX.US\",\"0843_T1.6_Gross External Debt (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.AR.TL.US\",\"013_T1_Arrears\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.AR.TR.US\",\"0725_T1.6_Gross External Debt (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.CB.AR.BE.US\",\"0636_T1.6_Deposit-taking Corporations, except the Central Bank (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.CB.AR.EA.US\",\"0516_T1.5_Deposit-Taking Corporations, except the Central Bank (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.CB.AR.EN.US\",\"0931_T1.6_Deposit-taking Corporations, except the Central Bank (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.CB.AR.EX.US\",\"0754_T1.6_Deposit-taking Corporations, except the Central Bank (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.CB.AR.GE.US\",\"0455_T1.5_Deposit-Taking Corporations, except the Central Bank (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.CB.AR.NE.US\",\"0577_T1.5_Deposit-Taking Corporations, except the Central Bank (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.CB.AR.OC.US\",\"0872_T1.6_Deposit-taking Corporations, except the Central Bank (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.CB.AR.PX.US\",\"0813_T1.6_Deposit-taking Corporations, except the Central Bank (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.CB.AR.TR.US\",\"0695_T1.6_Deposit-taking Corporations, except the Central Bank (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.CB.AR.US\",\"0029_T1_Deposit-Taking Corporations, except the Central Bank\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.CB.TD.MP.US\",\"0277_T1.1_Deposit-Taking Corporations, except the Central Bank (Difference Market Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.CB.TD.MV.US\",\"0292_T1.1_Deposit-Taking Corporations, except the Central Bank (Market Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.CB.TD.NV.US\",\"0262_T1.1_Deposit-Taking Corporations, except the Central Bank (Nominal Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.CG\",\"Total change in external debt stocks (current US$)\",\"Total change in debt stocks shows the variation in debt stock between two consecutive years. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DOD.DECT.CD.DC.T5.US\",\"252_T5_Domestic currency 6/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.DT.US\",\"0078_T2_Gross External Debt Position \",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.FC.CB.EU.US\",\"1002_T2.1_Deposit-Taking Corporations, except the Central Bank (Euro)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.FC.CB.JY.US\",\"1019_T2.1_Deposit-Taking Corporations, except the Central Bank (Yen)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.FC.CB.OT.US\",\"1036_T2.1_Deposit-Taking Corporations, except the Central Bank (Other)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.FC.CB.TO.US\",\"0968_T2.1_Deposit-Taking Corporations, except the Central Bank (Total)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.FC.CB.US.US\",\"0985_T2.1_Deposit-Taking Corporations, except the Central Bank (U.S. dollar)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.FC.GG.EU.US\",\"0996_T2.1_General Government (Euro)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.FC.GG.JY.US\",\"1013_T2.1_General Government (Yen)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.FC.GG.OT.US\",\"1030_T2.1_General Government (Other)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.FC.GG.TO.US\",\"0962_T2.1_General Government (Total)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.FC.GG.US.US\",\"0979_T2.1_General Government (U.S. dollar)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.FC.IL.EU.US\",\"1008_T2.1_Direct Investment: Intercompany Lending  (Euro)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.FC.IL.JY.US\",\"1025_T2.1_Direct Investment: Intercompany Lending  (Yen)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.FC.IL.OT.US\",\"1042_T2.1_Direct Investment: Intercompany Lending  (Other)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.FC.IL.TO.US\",\"0974_T2.1_Direct Investment: Intercompany Lending  (Total)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.FC.IL.US.US\",\"0991_T2.1_Direct Investment: Intercompany Lending  (U.S. dollar)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.FC.MA.EU.US\",\"0999_T2.1_Central Bank (Euro)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.FC.MA.JY.US\",\"1016_T2.1_Central Bank (Yen)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.FC.MA.OT.US\",\"1033_T2.1_Central Bank (Other)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.FC.MA.TO.US\",\"0965_T2.1_Central Bank (Total)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.FC.MA.US.US\",\"0982_T2.1_Central Bank (U.S. dollar)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.FC.OT.EU.US\",\"1005_T2.1_Other Sectors (Euro)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.FC.OT.JY.US\",\"1022_T2.1_Other Sectors (Yen)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.FC.OT.OT.US\",\"1039_T2.1_Other Sectors (Other)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.FC.OT.TO.US\",\"0971_T2.1_Other Sectors (Total)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.FC.OT.US.US\",\"0988_T2.1_Other Sectors (U.S. dollar)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.FC.T5.US\",\"249_T5_Foreign currency 4/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.FF.ER.US\",\"1012_T2.1_Gross External Foreign Currency and Foreign-Currency-Linked Debt Position  (Euro)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.FF.OD.US\",\"1046_T2.1_Gross External Foreign Currency and Foreign-Currency-Linked Debt Position  (Other)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.FF.TT.US\",\"0978_T2.1_Gross External Foreign Currency and Foreign-Currency-Linked Debt Position  (Total)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.FF.UD.US\",\"0995_T2.1_Gross External Foreign Currency and Foreign-Currency-Linked Debt Position  (U.S. dollar)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.FF.YE.US\",\"1029_T2.1_Gross External Foreign Currency and Foreign-Currency-Linked Debt Position  (Yen)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.GG.AR.BE.US\",\"0608_T1.6_General Government (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.GG.AR.EA.US\",\"0486_T1.5_General Government (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.GG.AR.EN.US\",\"0903_T1.6_General Government (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.GG.AR.EX.US\",\"0726_T1.6_General Government (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.GG.AR.GE.US\",\"0425_T1.5_General Government (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.GG.AR.NE.US\",\"0547_T1.5_General Government (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.GG.AR.OC.US\",\"0844_T1.6_General Government (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.GG.AR.PX.US\",\"0785_T1.6_General Government (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.GG.AR.TR.US\",\"0667_T1.6_General Government (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.GG.AR.US\",\"0001_T1_General Government\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.GG.TD.MP.US\",\"0271_T1.1_General Government (Difference Market Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.GG.TD.MV.US\",\"0286_T1.1_General Government (Market Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.GG.TD.NV.US\",\"0256_T1.1_General Government (Nominal Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.HN.US\",\"0327_T1.2_Households and nonprofit institutions serving households (NPISHs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.IL.AR.BE.US\",\"0662_T1.6_Direct Investment: Intercompany Lending (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.IL.AR.EA.US\",\"0542_T1.5_Direct Investment: Intercompany Lending (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.IL.AR.EN.US\",\"0957_T1.6_Direct Investment: Intercompany Lending (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.IL.AR.EX.US\",\"0780_T1.6_Direct Investment: Intercompany Lending (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.IL.AR.GE.US\",\"0481_T1.5_Direct Investment: Intercompany Lending (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.IL.AR.NE.US\",\"0603_T1.5_Direct Investment: Intercompany Lending (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.IL.AR.OC.US\",\"0898_T1.6_Direct Investment: Intercompany Lending (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.IL.AR.PX.US\",\"0839_T1.6_Direct Investment: Intercompany Lending (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.IL.AR.TR.US\",\"0721_T1.6_Direct Investment: Intercompany Lending (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.IL.US\",\"0055_T1_Direct Investment: Intercompany Lending\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.LT.TD.MP.US\",\"0285_T1.1_.. Long-term (Difference Market Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.LT.TD.MV.US\",\"0300_T1.1_.. Long-term (Market Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.LT.TD.NV.US\",\"0270_T1.1_.. Long-term (Nominal Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.LT.US\",\"012_T1_.. Long-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.MA.AR.BE.US\",\"0622_T1.6_Central Bank (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.MA.AR.EA.US\",\"0501_T1.5_Central Bank (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.MA.AR.EN.US\",\"0917_T1.6_Central Bank (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.MA.AR.EX.US\",\"0740_T1.6_Central Bank (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.MA.AR.GE.US\",\"0440_T1.5_Central Bank (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.MA.AR.NE.US\",\"0562_T1.5_Central Bank (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.MA.AR.OC.US\",\"0858_T1.6_Central Bank (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.MA.AR.PX.US\",\"0799_T1.6_Central Bank (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.MA.AR.TR.US\",\"0681_T1.6_Central Bank (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.MA.AR.US\",\"0015_T1_Central Bank\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.MA.TD.MP.US\",\"0274_T1.1_Central Bank (Difference Market Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.MA.TD.MV.US\",\"0289_T1.1_Central Bank (Market Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.MA.TD.NV.US\",\"0259_T1.1_Central Bank (Nominal Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.NC.US\",\"0314_T1.2_Nonfinancial corporations\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.OF.US\",\"0301_T1.2_Other financial corporations\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.OT.AR.BE.US\",\"0649_T1.6_Other Sectors (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.OT.AR.EA.US\",\"0529_T1.5_Other Sectors (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.OT.AR.EN.US\",\"0944_T1.6_Other Sectors (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.OT.AR.EX.US\",\"0767_T1.6_Other Sectors (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.OT.AR.GE.US\",\"0468_T1.5_Other Sectors (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.OT.AR.NE.US\",\"0590_T1.5_Other Sectors (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.OT.AR.OC.US\",\"0885_T1.6_Other Sectors (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.OT.AR.PX.US\",\"0826_T1.6_Other Sectors (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.OT.AR.TR.US\",\"0708_T1.6_Other Sectors (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.OT.AR.US\",\"0042_T1_Other Sectors\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.OT.TD.MP.US\",\"0280_T1.1_Other Sectors (Difference Market Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.OT.TD.MV.US\",\"0295_T1.1_Other Sectors (Market Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.OT.TD.NV.US\",\"0265_T1.1_Other.Sectors (Nominal Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.PC\",\"Debt outstanding and disbursed, Total per capita (DOD, current US$)\",\"Total external debt is debt owed to nonresidents repayable in currency, goods, or services. Total external debt is the sum of public, publicly guaranteed, and private nonguaranteed long-term debt, use of IMF credit, and short-term debt. Short-term debt includes all debt having an original maturity of one year or less and interest in arrears on long-term debt.  Data are in current U.S. dollars per inhabitant of the country.  \",\"Africa Development Indicators\",\"World Bank, Global Development Finance.\"\n\"DT.DOD.DECT.CD.ST.TD.MP.US\",\"0284_T1.1_.. Short-term (Difference Market Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.ST.TD.MV.US\",\"0299_T1.1_.. Short-term (Market Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.ST.TD.NV.US\",\"0269_T1.1_.. Short-term (Nominal Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.ST.US\",\"011_T1_.. Short-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.TD.MP.US\",\"0283_T1.1_Total (Difference Market Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.TD.MV.US\",\"0298_T1.1_Total (Market Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.TD.NV.US\",\"0268_T1.1_Total (Nominal Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.TL.US\",\"010_T1_Gross External Debt Position\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.UC.T5.US\",\"255_T5_Unallocated\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.DECT.CD.ZSG\",\"Debt outstanding and disbursed, Total to GDP (% of GDP)\",\"Total external debt is debt owed to nonresidents repayable in currency, goods, or services. Total external debt is the sum of public, publicly guaranteed, and private nonguaranteed long-term debt, use of IMF credit, and short-term debt. Short-term debt includes all debt having an original maturity of one year or less and interest in arrears on long-term debt. Data expressed as a percentage of GDP at market prices.  \",\"Africa Development Indicators\",\"World Bank, Global Development Finance.\"\n\"DT.DOD.DECT.DS.T4.US\",\"242_T4_Debt Securities 12/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.DECT.DS.US\",\"0066_T1_Debt Securities: By Sector 2/ \",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.EX.ZS\",\"External debt stocks (% of exports of goods, services and primary income)\",\"Total external debt stocks to exports of goods, services and income.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DOD.DECT.GG.AR.US\",\"0061_T1_.. General Government\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.GG.DS.US\",\"0067_T1_.. General Government\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.GN.ZS\",\"External debt stocks (% of GNI)\",\"Total external debt stocks to gross national income. Total external debt is debt owed to nonresidents repayable in currency, goods, or services. Total external debt is the sum of public, publicly guaranteed, and private nonguaranteed long-term debt, use of IMF credit, and short-term debt. Short-term debt includes all debt having an original maturity of one year or less and interest in arrears on long-term debt. GNI (formerly GNP) is the sum of value added by all resident producers plus any product taxes (less subsidies) not included in the valuation of output plus net receipts of primary income (compensation of employees and property income) from abroad.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DOD.DECT.IL.AR.US\",\"0065_T1_.. Direct investment: Intercompany Lending\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.MA.AR.US\",\"0062_T1_.. Central Bank\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.MA.DS.US\",\"0068_T1_.. Central Bank\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.OT.AR.US\",\"0064_T1_.. Other Sectors\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.OT.DS.US\",\"0070_T1_.. Other Sectors\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DECT.T4.AR.US\",\"234_T4_Total\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.DIDI.CD.FC.IL.EU.US\",\"1009_T2.1_.. Debt liabilities of direct investment enterprises to direct investors (Euro)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIDI.CD.FC.IL.JY.US\",\"1026_T2.1_.. Debt liabilities of direct investment enterprises to direct investors (Yen)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIDI.CD.FC.IL.OT.US\",\"1043_T2.1_.. Debt liabilities of direct investment enterprises to direct investors (Other)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIDI.CD.FC.IL.TO.US\",\"0975_T2.1_.. Debt liabilities of direct investment enterprises to direct investors (Total)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIDI.CD.FC.IL.US.US\",\"0992_T2.1_.. Debt liabilities of direct investment enterprises to direct investors (U.S. dollar)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIDI.CD.IL.BE.US\",\"0663_T1.6_.. Debt liabilities of direct investment enterprises to direct investors (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIDI.CD.IL.EA.US\",\"0543_T1.5_.. Debt of direct investment enterprises to direct investors  (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIDI.CD.IL.EN.US\",\"0958_T1.6_.. Debt liabilities of direct investment enterprises to direct investors (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIDI.CD.IL.EX.US\",\"0781_T1.6_.. Debt liabilities of direct investment enterprises to direct investors (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIDI.CD.IL.GE.US\",\"0482_T1.5_.. Debt of direct investment enterprises to direct investors  (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIDI.CD.IL.NE.US\",\"0604_T1.5_.. Debt of direct investment enterprises to direct investors  (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIDI.CD.IL.OC.US\",\"0899_T1.6_.. Debt liabilities of direct investment enterprises to direct investors (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIDI.CD.IL.PX.US\",\"0840_T1.6_.. Debt liabilities of direct investment enterprises to direct investors (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIDI.CD.IL.TR.US\",\"0722_T1.6_.. Debt liabilities of direct investment enterprises to direct investors (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIDI.CD.IL.US\",\"0056_T1_.. Debt liabilities of direct investment enterprises to direct investors\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIDI.CD.PR.US\",\"0373_T1.3_.... Debt liabilities of direct investment enterprises to direct investors\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIDI.CD.PU.US\",\"0356_T1.3_.... Debt liabilities of direct investment enterprises to direct investors\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIFE.CD.FC.IL.EU.US\",\"1011_T2.1_.. Debt liabilities between fellow enterprises (Euro)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIFE.CD.FC.IL.JY.US\",\"1028_T2.1_.. Debt liabilities between fellow enterprises (Yen)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIFE.CD.FC.IL.OT.US\",\"1045_T2.1_.. Debt liabilities between fellow enterprises (Other)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIFE.CD.FC.IL.TO.US\",\"0977_T2.1_.. Debt liabilities between fellow enterprises (Total)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIFE.CD.FC.IL.US.US\",\"0994_T2.1_.. Debt liabilities between fellow enterprises (U.S. dollar)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIFE.CD.IL.BE.US\",\"0665_T1.6_.. Debt liabilities between fellow enterprises (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIFE.CD.IL.EA.US\",\"0545_T1.5_.. Debt between fellow enterprises (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIFE.CD.IL.EN.US\",\"0960_T1.6_.. Debt liabilities between fellow enterprises (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIFE.CD.IL.EX.US\",\"0783_T1.6_.. Debt liabilities between fellow enterprises (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIFE.CD.IL.GE.US\",\"0484_T1.5_.. Debt between fellow enterprises (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIFE.CD.IL.NE.US\",\"0606_T1.5_.. Debt between fellow enterprises (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIFE.CD.IL.OC.US\",\"0901_T1.6_.. Debt liabilities between fellow enterprises (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIFE.CD.IL.PX.US\",\"0842_T1.6_.. Debt liabilities between fellow enterprises (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIFE.CD.IL.TR.US\",\"0724_T1.6_.. Debt liabilities between fellow enterprises (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIFE.CD.IL.US\",\"0058_T1_.. Debt liabilities to fellow enterprises\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIFE.CD.PR.US\",\"0375_T1.3_.... Debt liabilities between fellow enterprises\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIFE.CD.PU.US\",\"0358_T1.3_.... Debt liabilities between fellow enterprises\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIIE.CD.FC.IL.EU.US\",\"1010_T2.1_.. Debt liabilities of direct investors to direct investment enterprises  (Euro)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIIE.CD.FC.IL.JY.US\",\"1027_T2.1_.. Debt liabilities of direct investors to direct investment enterprises  (Yen)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIIE.CD.FC.IL.OT.US\",\"1044_T2.1_.. Debt liabilities of direct investors to direct investment enterprises  (Other)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIIE.CD.FC.IL.TO.US\",\"0976_T2.1_.. Debt liabilities of direct investors to direct investment enterprises  (Total)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIIE.CD.FC.IL.US.US\",\"0993_T2.1_.. Debt liabilities of direct investors to direct investment enterprises  (U.S. dollar)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIIE.CD.IL.BE.US\",\"0664_T1.6_.. Debt liabilities of direct investors to direct investment enterprises (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIIE.CD.IL.EA.US\",\"0544_T1.5_.. Debt of direct investors to direct investment enterprises  (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIIE.CD.IL.EN.US\",\"0959_T1.6_.. Debt liabilities of direct investors to direct investment enterprises (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIIE.CD.IL.EX.US\",\"0782_T1.6_.. Debt liabilities of direct investors to direct investment enterprises (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIIE.CD.IL.GE.US\",\"0483_T1.5_.. Debt of direct investors to direct investment enterprises  (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIIE.CD.IL.NE.US\",\"0605_T1.5_.. Debt of direct investors to direct investment enterprises  (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIIE.CD.IL.OC.US\",\"0900_T1.6_.. Debt liabilities of direct investors to direct investment enterprises (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIIE.CD.IL.PX.US\",\"0841_T1.6_.. Debt liabilities of direct investors to direct investment enterprises (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIIE.CD.IL.TR.US\",\"0723_T1.6_.. Debt liabilities of direct investors to direct investment enterprises (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIIE.CD.IL.US\",\"0057_T1_.. Debt liabilities of direct investors to direct investment enterprises\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIIE.CD.PR.US\",\"0374_T1.3_.... Debt liabilities of direct investors to direct investment enterprises\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIIE.CD.PU.US\",\"0357_T1.3_.... Debt liabilities of direct investors to direct investment enterprises\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIIL.CD.PR.US\",\"0372_T1.3_.. Direct investment: Intercompany Lending 9/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIIL.CD.PU.US\",\"0355_T1.3_.. Direct investment: Intercompany Lending \",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DIMF.CD\",\"Use of IMF credit (DOD, current US$)\",\"Use of IMF credit denotes members' drawings on the IMF other than amounts drawn against the country's reserve tranche position. Use of IMF credit includes purchases and drawings under Stand-By, Extended, Structural Adjustment, Enhanced Structural Adjustment, and Systemic Transformation Facility Arrangements as well as Trust Fund loans. SDR allocations are also included in this category. Note: Data related to the operations of the IMF are provided by the IMF Treasurer’s Department. They are converted from special drawing rights into dollars using end-of-period exchange rates for stocks and average-over-the-period exchange rates for flows. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DOD.DLBN.CD.CB.AR.BE.US\",\"0645_T1.6_.... Debt securities (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.CB.AR.EA.US\",\"0525_T1.5_.... Debt securities (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.CB.AR.EN.US\",\"0940_T1.6_.... Debt securities (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.CB.AR.EX.US\",\"0763_T1.6_.... Debt securities (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.CB.AR.GE.US\",\"0464_T1.5_.... Debt securities (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.CB.AR.NE.US\",\"0586_T1.5_.... Debt securities (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.CB.AR.OC.US\",\"0881_T1.6_.... Debt securities (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.CB.AR.PX.US\",\"0822_T1.6_.... Debt securities (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.CB.AR.TR.US\",\"0704_T1.6_.... Debt securities (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.CB.AR.US\",\"0038_T1_.... Debt securities\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.GG.AR.BE.US\",\"0618_T1.6_.... Debt securities (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.GG.AR.EA.US\",\"0497_T1.5_.... Debt securities (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.GG.AR.EN.US\",\"0913_T1.6_.... Debt securities (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.GG.AR.EX.US\",\"0736_T1.6_.... Debt securities (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.GG.AR.GE.US\",\"0436_T1.5_.... Debt securities (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.GG.AR.NE.US\",\"0558_T1.5_.... Debt securities (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.GG.AR.OC.US\",\"0854_T1.6_.... Debt securities (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.GG.AR.PX.US\",\"0795_T1.6_.... Debt securities (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.GG.AR.TR.US\",\"0677_T1.6_.... Debt securities (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.GG.AR.US\",\"0011_T1_.... Debt securities\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.HN.US\",\"0336_T1.2_.... Debt securities\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.MA.AR.BE.US\",\"0632_T1.6_.... Debt securities (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.MA.AR.EA.US\",\"0512_T1.5_.... Debt securities (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.MA.AR.EN.US\",\"0927_T1.6_.... Debt securities (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.MA.AR.EX.US\",\"0750_T1.6_.... Debt securities (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.MA.AR.GE.US\",\"0451_T1.5_.... Debt securities (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.MA.AR.NE.US\",\"0573_T1.5_.... Debt securities (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.MA.AR.OC.US\",\"0868_T1.6_.... Debt securities (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.MA.AR.PX.US\",\"0809_T1.6_.... Debt securities (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.MA.AR.TR.US\",\"0691_T1.6_.... Debt securities (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.MA.AR.US\",\"0025_T1_.... Debt securities\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.NC.US\",\"0323_T1.2_.... Debt securities\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.OF.US\",\"0310_T1.2_.... Debt securities\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.OT.AR.BE.US\",\"0658_T1.6_.... Debt securities (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.OT.AR.EA.US\",\"0538_T1.5_.... Debt securities (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.OT.AR.EN.US\",\"0953_T1.6_.... Debt securities (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.OT.AR.EX.US\",\"0776_T1.6_.... Debt securities (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.OT.AR.GE.US\",\"0477_T1.5_.... Debt securities (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.OT.AR.NE.US\",\"0599_T1.5_.... Debt securities (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.OT.AR.OC.US\",\"0894_T1.6_.... Debt securities (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.OT.AR.PX.US\",\"0835_T1.6_.... Debt securities (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.OT.AR.TR.US\",\"0717_T1.6_.... Debt securities (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLBN.CD.OT.AR.US\",\"0051_T1_.... Debt securities\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.CB.AR.BE.US\",\"0644_T1.6_.... Currency and deposits 2/ (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.CB.AR.EA.US\",\"0524_T1.5_.... Currency and deposits 2/ (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.CB.AR.EN.US\",\"0939_T1.6_.... Currency and deposits 2/ (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.CB.AR.EX.US\",\"0762_T1.6_.... Currency and deposits 2/ (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.CB.AR.GE.US\",\"0463_T1.5_.... Currency and deposits 2/ (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.CB.AR.NE.US\",\"0585_T1.5_.... Currency and deposits 2/ (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.CB.AR.OC.US\",\"0880_T1.6_.... Currency and deposits 2/ (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.CB.AR.PX.US\",\"0821_T1.6_.... Currency and deposits 2/ (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.CB.AR.TR.US\",\"0703_T1.6_.... Currency and deposits 2/ (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.CB.AR.US\",\"0037_T1_.... Currency and deposits 3/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.GG.AR.BE.US\",\"0617_T1.6_.... Currency and deposits 2/ (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.GG.AR.EA.US\",\"0496_T1.5_.... Currency and deposits 2/ (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.GG.AR.EN.US\",\"0912_T1.6_.... Currency and deposits 2/ (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.GG.AR.EX.US\",\"0735_T1.6_.... Currency and deposits 2/ (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.GG.AR.GE.US\",\"0435_T1.5_.... Currency and deposits 2/ (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.GG.AR.NE.US\",\"0557_T1.5_.... Currency and deposits 2/ (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.GG.AR.OC.US\",\"0853_T1.6_.... Currency and deposits 2/ (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.GG.AR.PX.US\",\"0794_T1.6_.... Currency and deposits 2/ (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.GG.AR.TR.US\",\"0676_T1.6_.... Currency and deposits 2/ (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.GG.AR.US\",\"0010_T1_.... Currency and deposits 3/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.HN.US\",\"0335_T1.2_.... Currency and deposits 3/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.MA.AR.BE.US\",\"0631_T1.6_.... Currency and deposits 2/ (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.MA.AR.EA.US\",\"0511_T1.5_.... Currency and deposits 2/ (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.MA.AR.EN.US\",\"0926_T1.6_.... Currency and deposits 2/ (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.MA.AR.EX.US\",\"0749_T1.6_.... Currency and deposits 2/ (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.MA.AR.GE.US\",\"0450_T1.5_.... Currency and deposits 2/ (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.MA.AR.NE.US\",\"0572_T1.5_.... Currency and deposits 2/ (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.MA.AR.OC.US\",\"0867_T1.6_.... Currency and deposits 2/ (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.MA.AR.PX.US\",\"0808_T1.6_.... Currency and deposits 2/ (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.MA.AR.TR.US\",\"0690_T1.6_.... Currency and deposits 2/ (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.MA.AR.US\",\"0024_T1_.... Currency and deposits 3/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.NC.US\",\"0322_T1.2_.... Currency and deposits 3/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.OF.US\",\"0309_T1.2_.... Currency and deposits 3/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.OT.AR.BE.US\",\"0657_T1.6_.... Currency and deposits 2/ (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.OT.AR.EA.US\",\"0537_T1.5_.... Currency and deposits 2/ (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.OT.AR.EN.US\",\"0952_T1.6_.... Currency and deposits 2/ (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.OT.AR.EX.US\",\"0775_T1.6_.... Currency and deposits 2/ (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.OT.AR.GE.US\",\"0476_T1.5_.... Currency and deposits 2/ (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.OT.AR.NE.US\",\"0598_T1.5_.... Currency and deposits 2/ (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.OT.AR.OC.US\",\"0893_T1.6_.... Currency and deposits 2/ (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.OT.AR.PX.US\",\"0834_T1.6_.... Currency and deposits 2/ (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.OT.AR.TR.US\",\"0716_T1.6_.... Currency and deposits 2/ (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLCD.CD.OT.AR.US\",\"0050_T1_.... Currency and deposits 3/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTF.CD\",\"Debt outstanding and disbursed, Long-term debt including IMF credit (DOD, current US$)\",\"Long-term debt is debt that has an original or extended maturity of more than one year. It has three components: public, publicly guaranteed, and private nonguaranteed debt. Data are in current U.S. dollars.  Use of IMF credit denotes repurchase obligations to the IMF for all uses of IMF resources (excluding those resulting from drawings on the reserve tranche). These obligations, shown for the end of the year specified, comprise purchases outstanding under the credit tranches, including enlarged access resources, and all special facilities (the buffer stock, compensatory financing, extended fund, and oil facilities), trust fund loans, and operations under the structural adjustment and enhanced structural adjustment facilities. Data are in current U.S. dollars.  \",\"Africa Development Indicators\",\"World Bank, Global Development Finance.\"\n\"DT.DOD.DLTL.CD.CB.AR.BE.US\",\"0646_T1.6_.... Loans (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.CB.AR.EA.US\",\"0526_T1.5_.... Loans (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.CB.AR.EN.US\",\"0941_T1.6_.... Loans (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.CB.AR.EX.US\",\"0764_T1.6_.... Loans (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.CB.AR.GE.US\",\"0465_T1.5_.... Loans (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.CB.AR.NE.US\",\"0587_T1.5_.... Loans (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.CB.AR.OC.US\",\"0882_T1.6_.... Loans (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.CB.AR.PX.US\",\"0823_T1.6_.... Loans (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.CB.AR.TR.US\",\"0705_T1.6_.... Loans (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.CB.AR.US\",\"0039_T1_.... Loans\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.GG.AR.BE.US\",\"0619_T1.6_.... Loans (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.GG.AR.EA.US\",\"0498_T1.5_.... Loans (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.GG.AR.EN.US\",\"0914_T1.6_.... Loans (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.GG.AR.EX.US\",\"0737_T1.6_.... Loans (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.GG.AR.GE.US\",\"0437_T1.5_.... Loans (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.GG.AR.NE.US\",\"0559_T1.5_.... Loans (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.GG.AR.OC.US\",\"0855_T1.6_.... Loans (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.GG.AR.PX.US\",\"0796_T1.6_.... Loans (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.GG.AR.TR.US\",\"0678_T1.6_.... Loans (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.GG.AR.US\",\"0012_T1_.... Loans\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.HN.US\",\"0337_T1.2_.... Loans\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.MA.AR.BE.US\",\"0633_T1.6_.... Loans (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.MA.AR.EA.US\",\"0513_T1.5_.... Loans (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.MA.AR.EN.US\",\"0928_T1.6_.... Loans (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.MA.AR.EX.US\",\"0751_T1.6_.... Loans (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.MA.AR.GE.US\",\"0452_T1.5_.... Loans (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.MA.AR.NE.US\",\"0574_T1.5_.... Loans (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.MA.AR.OC.US\",\"0869_T1.6_.... Loans (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.MA.AR.PX.US\",\"0810_T1.6_.... Loans (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.MA.AR.TR.US\",\"0692_T1.6_.... Loans (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.MA.AR.US\",\"0026_T1_.... Loans\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.NC.US\",\"0324_T1.2_.... Loans\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.OF.US\",\"0311_T1.2_.... Loans\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.OT.AR.BE.US\",\"0659_T1.6_.... Loans (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.OT.AR.EA.US\",\"0539_T1.5_.... Loans (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.OT.AR.EN.US\",\"0954_T1.6_.... Loans (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.OT.AR.EX.US\",\"0777_T1.6_.... Loans (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.OT.AR.GE.US\",\"0478_T1.5_.... Loans (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.OT.AR.NE.US\",\"0600_T1.5_.... Loans (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.OT.AR.OC.US\",\"0895_T1.6_.... Loans (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.OT.AR.PX.US\",\"0836_T1.6_.... Loans (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.OT.AR.TR.US\",\"0718_T1.6_.... Loans (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTL.CD.OT.AR.US\",\"0052_T1_.... Loans\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.CB.AR.BE.US\",\"0648_T1.6_.... Other debt liabilities 3/ (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.CB.AR.EA.US\",\"0528_T1.5_.... Other debt instruments 4/ (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.CB.AR.EN.US\",\"0943_T1.6_.... Other debt liabilities 3/ (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.CB.AR.EX.US\",\"0766_T1.6_.... Other debt liabilities 3/ (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.CB.AR.GE.US\",\"0467_T1.5_.... Other debt instruments 4/ (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.CB.AR.NE.US\",\"0589_T1.5_.... Other debt instruments 4/ (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.CB.AR.OC.US\",\"0884_T1.6_.... Other debt liabilities 3/ (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.CB.AR.PX.US\",\"0825_T1.6_.... Other debt liabilities 3/ (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.CB.AR.TR.US\",\"0707_T1.6_.... Other debt liabilities 3/ (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.CB.AR.US\",\"0041_T1_.... Other debt liabilities 4/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.GG.AR.BE.US\",\"0621_T1.6_.... Other debt liabilities 3/ (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.GG.AR.EA.US\",\"0500_T1.5_.... Other debt instruments 4/ (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.GG.AR.EN.US\",\"0916_T1.6_.... Other debt liabilities 3/ (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.GG.AR.EX.US\",\"0739_T1.6_.... Other debt liabilities 3/ (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.GG.AR.GE.US\",\"0439_T1.5_.... Other debt instruments 4/ (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.GG.AR.NE.US\",\"0561_T1.5_.... Other debt instruments 4/ (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.GG.AR.OC.US\",\"0857_T1.6_.... Other debt liabilities 3/ (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.GG.AR.PX.US\",\"0798_T1.6_.... Other debt liabilities 3/ (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.GG.AR.TR.US\",\"0680_T1.6_.... Other debt liabilities 3/ (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.GG.AR.US\",\"0014_T1_.... Other debt liabilities 4/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.HN.US\",\"0339_T1.2_.... Other debt liabilities 4/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.MA.AR.BE.US\",\"0635_T1.6_.... Other debt liabilities 3/ (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.MA.AR.EA.US\",\"0515_T1.5_.... Other debt instruments 4/ (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.MA.AR.EN.US\",\"0930_T1.6_.... Other debt liabilities 3/ (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.MA.AR.EX.US\",\"0753_T1.6_.... Other debt liabilities 3/ (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.MA.AR.GE.US\",\"0454_T1.5_.... Other debt instruments 4/ (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.MA.AR.NE.US\",\"0576_T1.5_.... Other debt instruments 4/ (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.MA.AR.OC.US\",\"0871_T1.6_.... Other debt liabilities 3/ (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.MA.AR.PX.US\",\"0812_T1.6_.... Other debt liabilities 3/ (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.MA.AR.TR.US\",\"0694_T1.6_.... Other debt liabilities 3/ (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.MA.AR.US\",\"0028_T1_.... Other debt liabilities 4/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.NC.US\",\"0326_T1.2_.... Other debt liabilities 4/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.OF.US\",\"0313_T1.2_.... Other debt liabilities 4/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.OT.AR.BE.US\",\"0661_T1.6_.... Other debt liabilities 3/ (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.OT.AR.EA.US\",\"0541_T1.5_.... Other debt instruments 4/ (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.OT.AR.EN.US\",\"0956_T1.6_.... Other debt liabilities 3/ (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.OT.AR.EX.US\",\"0779_T1.6_.... Other debt liabilities 3/ (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.OT.AR.GE.US\",\"0480_T1.5_.... Other debt instruments 4/ (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.OT.AR.NE.US\",\"0602_T1.5_.... Other debt instruments 4/ (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.OT.AR.OC.US\",\"0897_T1.6_.... Other debt liabilities 3/ (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.OT.AR.PX.US\",\"0838_T1.6_.... Other debt liabilities 3/ (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.OT.AR.TR.US\",\"0720_T1.6_.... Other debt liabilities 3/ (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTO.CD.OT.AR.US\",\"0054_T1_.... Other debt liabilities 4/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTS.CD.GG.BE.US\",\"0616_T1.6_.... Special drawing rights (allocations)  (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTS.CD.GG.EA.US\",\"0495_T1.5_.... Special drawing rights (SDRs) (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTS.CD.GG.EN.US\",\"0911_T1.6_.... Special drawing rights (allocations)  (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTS.CD.GG.EX.US\",\"0734_T1.6_.... Special drawing rights (allocations)  (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTS.CD.GG.GE.US\",\"0434_T1.5_.... Special drawing rights (SDRs) (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTS.CD.GG.NE.US\",\"0556_T1.5_.... Special drawing rights (SDRs) (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTS.CD.GG.OC.US\",\"0852_T1.6_.... Special drawing rights (allocations)  (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTS.CD.GG.PX.US\",\"0793_T1.6_.... Special drawing rights (allocations)  (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTS.CD.GG.TR.US\",\"0675_T1.6_.... Special drawing rights (allocations)  (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTS.CD.GG.US\",\"0009_T1_.... Special drawing rights (allocations) 6/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTS.CD.MA.AR.BE.US\",\"0630_T1.6_.... Special drawing rights (allocations)  (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTS.CD.MA.AR.EA.US\",\"0510_T1.5_.... Special drawing rights (SDRs) (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTS.CD.MA.AR.EN.US\",\"0925_T1.6_.... Special drawing rights (allocations)  (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTS.CD.MA.AR.EX.US\",\"0748_T1.6_.... Special drawing rights (allocations)  (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTS.CD.MA.AR.GE.US\",\"0449_T1.5_.... Special drawing rights (SDRs) (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTS.CD.MA.AR.NE.US\",\"0571_T1.5_.... Special drawing rights (SDRs) (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTS.CD.MA.AR.OC.US\",\"0866_T1.6_.... Special drawing rights (allocations)  (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTS.CD.MA.AR.PX.US\",\"0807_T1.6_.... Special drawing rights (allocations)  (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTS.CD.MA.AR.TR.US\",\"0689_T1.6_.... Special drawing rights (allocations)  (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTS.CD.MA.AR.US\",\"0023_T1_.... Special drawing rights (allocations) 6/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.CB.AR.BE.US\",\"0647_T1.6_.... Trade credit and advances (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.CB.AR.EA.US\",\"0527_T1.5_.... Trade credit and advances (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.CB.AR.EN.US\",\"0942_T1.6_.... Trade credit and advances (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.CB.AR.EX.US\",\"0765_T1.6_.... Trade credit and advances (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.CB.AR.GE.US\",\"0466_T1.5_.... Trade credit and advances (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.CB.AR.NE.US\",\"0588_T1.5_.... Trade credit and advances (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.CB.AR.OC.US\",\"0883_T1.6_.... Trade credit and advances (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.CB.AR.PX.US\",\"0824_T1.6_.... Trade credit and advances (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.CB.AR.TR.US\",\"0706_T1.6_.... Trade credit and advances (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.CB.AR.US\",\"0040_T1_.... Trade credit and advances\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.GG.AR.BE.US\",\"0620_T1.6_.... Trade credit and advances (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.GG.AR.EA.US\",\"0499_T1.5_.... Trade credit and advances (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.GG.AR.EN.US\",\"0915_T1.6_.... Trade credit and advances (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.GG.AR.EX.US\",\"0738_T1.6_.... Trade credit and advances (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.GG.AR.GE.US\",\"0438_T1.5_.... Trade credit and advances (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.GG.AR.NE.US\",\"0560_T1.5_.... Trade credit and advances (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.GG.AR.OC.US\",\"0856_T1.6_.... Trade credit and advances (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.GG.AR.PX.US\",\"0797_T1.6_.... Trade credit and advances (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.GG.AR.TR.US\",\"0679_T1.6_.... Trade credit and advances (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.GG.AR.US\",\"0013_T1_.... Trade credit and advances\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.HN.US\",\"0338_T1.2_.... Trade credit and advances\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.MA.AR.BE.US\",\"0634_T1.6_.... Trade credit and advances (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.MA.AR.EA.US\",\"0514_T1.5_.... Trade credit and advances (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.MA.AR.EN.US\",\"0929_T1.6_.... Trade credit and advances (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.MA.AR.EX.US\",\"0752_T1.6_.... Trade credit and advances (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.MA.AR.GE.US\",\"0453_T1.5_.... Trade credit and advances (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.MA.AR.NE.US\",\"0575_T1.5_.... Trade credit and advances (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.MA.AR.OC.US\",\"0870_T1.6_.... Trade credit and advances (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.MA.AR.PX.US\",\"0811_T1.6_.... Trade credit and advances (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.MA.AR.TR.US\",\"0693_T1.6_.... Trade credit and advances (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.MA.AR.US\",\"0027_T1_.... Trade credit and advances\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.NC.US\",\"0325_T1.2_.... Trade credit and advances\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.OF.US\",\"0312_T1.2_.... Trade credit and advances\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.OT.AR.BE.US\",\"0660_T1.6_.... Trade credit and advances (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.OT.AR.EA.US\",\"0540_T1.5_.... Trade credit and advances (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.OT.AR.EN.US\",\"0955_T1.6_.... Trade credit and advances (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.OT.AR.EX.US\",\"0778_T1.6_.... Trade credit and advances (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.OT.AR.GE.US\",\"0479_T1.5_.... Trade credit and advances (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.OT.AR.NE.US\",\"0601_T1.5_.... Trade credit and advances (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.OT.AR.OC.US\",\"0896_T1.6_.... Trade credit and advances (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.OT.AR.PX.US\",\"0837_T1.6_.... Trade credit and advances (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.OT.AR.TR.US\",\"0719_T1.6_.... Trade credit and advances (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLTT.CD.OT.AR.US\",\"0053_T1_.... Trade credit and advances\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD\",\"External debt stocks, long-term (DOD, current US$)\",\"Long-term debt is debt that has an original or extended maturity of more than one year. It has three components: public, publicly guaranteed, and private nonguaranteed debt. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DOD.DLXF.CD.CB.AR.BE.US\",\"0643_T1.6_.. Long-term (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.CB.AR.EA.US\",\"0523_T1.5_.. Long-term (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.CB.AR.EN.US\",\"0938_T1.6_.. Long-term (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.CB.AR.EX.US\",\"0761_T1.6_.. Long-term (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.CB.AR.GE.US\",\"0462_T1.5_.. Long-term (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.CB.AR.NE.US\",\"0584_T1.5_.. Long-term (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.CB.AR.OC.US\",\"0879_T1.6_.. Long-term (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.CB.AR.PX.US\",\"0820_T1.6_.. Long-term (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.CB.AR.TR.US\",\"0702_T1.6_.. Long-term (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.CB.AR.US\",\"0036_T1_.. Long-term\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.CB.TD.MP.US\",\"0279_T1.1_.. Long-term (Difference Market Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.CB.TD.MV.US\",\"0294_T1.1_.. Long-term (Market Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.CB.TD.NV.US\",\"0264_T1.1_.. Long-term (Nominal Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.DC.T5.US\",\"254_T5_.. Long-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.FC.CB.EU.US\",\"1004_T2.1_.. Long-term (Euro)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.FC.CB.JY.US\",\"1021_T2.1_.. Long-term (Yen)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.FC.CB.OT.US\",\"1038_T2.1_.. Long-term (Other)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.FC.CB.TO.US\",\"0970_T2.1_.. Long-term (Total)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.FC.CB.US.US\",\"0987_T2.1_.. Long-term (U.S. dollar)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.FC.GG.EU.US\",\"0998_T2.1_.. Long-term 5/ (Euro)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.FC.GG.JY.US\",\"1015_T2.1_.. Long-term 5/ (Yen)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.FC.GG.OT.US\",\"1032_T2.1_.. Long-term 5/ (Other)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.FC.GG.TO.US\",\"0964_T2.1_.. Long-term 5/ (Total)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.FC.GG.US.US\",\"0981_T2.1_.. Long-term 5/ (U.S. dollar)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.FC.MA.EU.US\",\"1001_T2.1_.. Long-term 5/ (Euro)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.FC.MA.JY.US\",\"1018_T2.1_.. Long-term 5/ (Yen)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.FC.MA.OT.US\",\"1035_T2.1_.. Long-term 5/ (Other)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.FC.MA.TO.US\",\"0967_T2.1_.. Long-term 5/ (Total)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.FC.MA.US.US\",\"0984_T2.1_.. Long-term 5/ (U.S. dollar)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.FC.OT.EU.US\",\"1007_T2.1_.. Long-term (Euro)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.FC.OT.JY.US\",\"1024_T2.1_.. Long-term (Yen)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.FC.OT.OT.US\",\"1041_T2.1_.. Long-term (Other)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.FC.OT.TO.US\",\"0973_T2.1_.. Long-term (Total)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.FC.OT.US.US\",\"0990_T2.1_.. Long-term (U.S. dollar)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.FC.T5.US\",\"251_T5_.. Long-term 5/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.GG.AR.BE.US\",\"0615_T1.6_Long-term (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.GG.AR.EA.US\",\"0494_T1.5_.. Long-term (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.GG.AR.EN.US\",\"0910_T1.6_.. Long-term (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.GG.AR.EX.US\",\"0733_T1.6_.. Long-term (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.GG.AR.GE.US\",\"0433_T1.5_.. Long-term (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.GG.AR.NE.US\",\"0555_T1.5_.. Long-term (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.GG.AR.OC.US\",\"0851_T1.6_.. Long-term (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.GG.AR.PX.US\",\"0792_T1.6_.. Long-term (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.GG.AR.TR.US\",\"0674_T1.6_.. Long-term (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.GG.AR.US\",\"0008_T1_.. Long-term\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.GG.TD.MP.US\",\"0273_T1.1_.. Long-term (Difference Market Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.GG.TD.MV.US\",\"0288_T1.1_.. Long-term (Market Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.GG.TD.NV.US\",\"0258_T1.1_.. Long-term (Nominal Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.HN.US\",\"0334_T1.2_.. Long-term\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.MA.AR.BE.US\",\"0629_T1.6_.. Long-term (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.MA.AR.EA.US\",\"0509_T1.5_.. Long-term (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.MA.AR.EN.US\",\"0924_T1.6_.. Long-term (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.MA.AR.EX.US\",\"0747_T1.6_.. Long-term (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.MA.AR.GE.US\",\"0448_T1.5_.. Long-term (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.MA.AR.NE.US\",\"0570_T1.5_.. Long-term (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.MA.AR.OC.US\",\"0865_T1.6_.. Long-term (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.MA.AR.PX.US\",\"0806_T1.6_.. Long-term (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.MA.AR.TR.US\",\"0688_T1.6_.. Long-term (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.MA.AR.US\",\"0022_T1_.. Long-term\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.MA.TD.MP.US\",\"0276_T1.1_.. Long-term (Difference Market Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.MA.TD.MV.US\",\"0291_T1.1_.. Long-term (Market Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.MA.TD.NV.US\",\"0261_T1.1_.. Long-term (Nominal Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.NC.US\",\"0321_T1.2_.. Long-term\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.OF.US\",\"0308_T1.2_.. Long-term\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.OT.AR.BE.US\",\"0656_T1.6_.. Long-term (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.OT.AR.EA.US\",\"0536_T1.5_.. Long-term (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.OT.AR.EN.US\",\"0951_T1.6_.. Long-term (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.OT.AR.EX.US\",\"0774_T1.6_.. Long-term (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.OT.AR.GE.US\",\"0475_T1.5_.. Long-term (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.OT.AR.NE.US\",\"0597_T1.5_.. Long-term (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.OT.AR.OC.US\",\"0892_T1.6_.. Long-term (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.OT.AR.PX.US\",\"0833_T1.6_.. Long-term (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.OT.AR.TR.US\",\"0715_T1.6_.. Long-term (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.OT.AR.US\",\"0049_T1_.. Long-term\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.OT.TD.MP.US\",\"0282_T1.1_.. Long-term (Difference Market Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.OT.TD.MV.US\",\"0297_T1.1_.. Long-term (Market Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.OT.TD.NV.US\",\"0267_T1.1_.. Long-term (Nominal Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.CD.US\",\"Long-term, Total\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.PR.DS.US\",\"0390_T1.3_.... Long-term\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DLXF.PU.DS.US\",\"0387_T1.3_.... Long-term\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DPNG.CD\",\"External debt stocks, private nonguaranteed (PNG) (DOD, current US$)\",\"Private nonguaranteed external debt comprises long-term external obligations of private debtors that are not guaranteed for repayment by a public entity. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DOD.DPNG.CD.AR.US\",\"016_T1_.. Private Sector External Debt Not Publicly Guaranteed \",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.DPNG.CD.LT.US\",\"009_T1_.. Long-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.DPNG.CD.ST.US\",\"008_T1_.. Short-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.DPNG.CD.US\",\"007_T1_Private Sector External Debt Not Publicly Guaranteed 5/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.DPPC.CD.DT.T5.US\",\"256_T5_Public and Publicly-Guaranteed Private Sector External Debt Position \",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.DPPC.CD.TO.US\",\"191_T3_Total\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.DPPG.AR.US\",\"0377_T1.3_Arrears\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DPPG.CD\",\"External debt stocks, public and publicly guaranteed (PPG) (DOD, current US$)\",\"Public and publicly guaranteed debt comprises long-term external obligations of public debtors, including the national government, political subdivisions (or an agency of either), and autonomous public bodies, and external obligations of private debtors that are guaranteed for repayment by a public entity. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DOD.DPPG.CD.AR.US\",\"0376_T1.3_TOTAL\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DPPG.DS.US\",\"0384_T1.3_Debt securities 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.CB.AR.BE.US\",\"0638_T1.6_.... Currency and deposits 2/ (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.CB.AR.EA.US\",\"0518_T1.5_.... Currency and deposits 2/ (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.CB.AR.EN.US\",\"0933_T1.6_.... Currency and deposits 2/ (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.CB.AR.EX.US\",\"0756_T1.6_.... Currency and deposits 2/ (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.CB.AR.GE.US\",\"0457_T1.5_.... Currency and deposits 2/ (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.CB.AR.NE.US\",\"0579_T1.5_.... Currency and deposits 2/ (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.CB.AR.OC.US\",\"0874_T1.6_.... Currency and deposits 2/ (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.CB.AR.PX.US\",\"0815_T1.6_.... Currency and deposits 2/ (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.CB.AR.TR.US\",\"0697_T1.6_.... Currency and deposits 2/ (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.CB.AR.US\",\"0031_T1_.... Currency and deposits 3/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.GG.AR.BE.US\",\"0610_T1.6_.... Currency and deposits 2/ (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.GG.AR.EA.US\",\"0488_T1.5_.... Currency and deposits 2/ (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.GG.AR.EN.US\",\"0905_T1.6_.... Currency and deposits 2/ (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.GG.AR.EX.US\",\"0728_T1.6_.... Currency and deposits 2/ (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.GG.AR.GE.US\",\"0427_T1.5_.... Currency and deposits 2/ (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.GG.AR.NE.US\",\"0549_T1.5_.... Currency and deposits 2/ (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.GG.AR.OC.US\",\"0846_T1.6_.... Currency and deposits 2/ (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.GG.AR.PX.US\",\"0787_T1.6_.... Currency and deposits 2/ (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.GG.AR.TR.US\",\"0669_T1.6_.... Currency and deposits 2/ (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.GG.AR.US\",\"0003_T1_.... Currency and deposits 3/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.HN.US\",\"0329_T1.2_.... Currency and deposits 3/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.MA.AR.BE.US\",\"0624_T1.6_.... Currency and deposits 2/ (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.MA.AR.EA.US\",\"0503_T1.5_.... Currency and deposits 2/ (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.MA.AR.EN.US\",\"0919_T1.6_.... Currency and deposits 2/ (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.MA.AR.EX.US\",\"0742_T1.6_.... Currency and deposits 2/ (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.MA.AR.GE.US\",\"0442_T1.5_.... Currency and deposits 2/ (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.MA.AR.NE.US\",\"0564_T1.5_.... Currency and deposits 2/ (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.MA.AR.OC.US\",\"0860_T1.6_.... Currency and deposits 2/ (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.MA.AR.PX.US\",\"0801_T1.6_.... Currency and deposits 2/ (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.MA.AR.TR.US\",\"0683_T1.6_.... Currency and deposits 2/ (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.MA.AR.US\",\"0017_T1_.... Currency and deposits 3/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.NC.US\",\"0316_T1.2_.... Currency and deposits 3/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.OF.US\",\"0303_T1.2_.... Currency and deposits 3/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.OT.AR.BE.US\",\"0651_T1.6_.... Currency and deposits 2/ (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.OT.AR.EA.US\",\"0531_T1.5_.... Currency and deposits 2/ (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.OT.AR.EN.US\",\"0946_T1.6_.... Currency and deposits 2/ (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.OT.AR.EX.US\",\"0769_T1.6_.... Currency and deposits 2/ (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.OT.AR.GE.US\",\"0470_T1.5_.... Currency and deposits 2/ (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.OT.AR.NE.US\",\"0592_T1.5_.... Currency and deposits 2/ (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.OT.AR.OC.US\",\"0887_T1.6_.... Currency and deposits 2/ (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.OT.AR.PX.US\",\"0828_T1.6_.... Currency and deposits 2/ (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.OT.AR.TR.US\",\"0710_T1.6_.... Currency and deposits 2/ (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSCD.CD.OT.AR.US\",\"0044_T1_.... Currency and deposits 3/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.CB.AR.BE.US\",\"0642_T1.6_.... Other debt liabilities 3/ 4/ (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.CB.AR.EA.US\",\"0522_T1.5_.... Other debt instruments 4/ 5/ (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.CB.AR.EN.US\",\"0937_T1.6_.... Other debt liabilities 3/ 4/ (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.CB.AR.EX.US\",\"0760_T1.6_.... Other debt liabilities 3/ 4/ (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.CB.AR.GE.US\",\"0461_T1.5_.... Other debt instruments 4/ 5/ (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.CB.AR.NE.US\",\"0583_T1.5_.... Other debt instruments 4/ 5/ (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.CB.AR.OC.US\",\"0878_T1.6_.... Other debt liabilities 3/ 4/ (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.CB.AR.PX.US\",\"0819_T1.6_.... Other debt liabilities 3/ 4/ (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.CB.AR.TR.US\",\"0701_T1.6_.... Other debt liabilities 3/ 4/ (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.CB.AR.US\",\"0035_T1_.... Other debt liabilities 4/ 5/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.GG.AR.BE.US\",\"0614_T1.6_.... Other debt liabilities 3/ 4/ (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.GG.AR.EA.US\",\"0493_T1.5_.... Other debt instruments 4/ 5/ (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.GG.AR.EN.US\",\"0909_T1.6_.... Other debt liabilities 3/ 4/ (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.GG.AR.EX.US\",\"0732_T1.6_.... Other debt liabilities 3/ 4/ (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.GG.AR.GE.US\",\"0432_T1.5_.... Other debt instruments 4/ 5/ (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.GG.AR.NE.US\",\"0554_T1.5_.... Other debt instruments 4/ 5/ (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.GG.AR.OC.US\",\"0850_T1.6_.... Other debt liabilities 3/ 4/ (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.GG.AR.PX.US\",\"0791_T1.6_.... Other debt liabilities 3/ 4/ (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.GG.AR.TR.US\",\"0673_T1.6_.... Other debt liabilities 3/ 4/ (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.GG.AR.US\",\"0007_T1_.... Other debt liabilities 4/ 5/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.MA.AR.BE.US\",\"0628_T1.6_.... Other debt liabilities 3/ 4/ (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.MA.AR.EA.US\",\"0508_T1.5_.... Other debt instruments 4/ 5/ (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.MA.AR.EN.US\",\"0923_T1.6_.... Other debt liabilities 3/ 4/ (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.MA.AR.EX.US\",\"0746_T1.6_.... Other debt liabilities 3/ 4/ (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.MA.AR.GE.US\",\"0447_T1.5_.... Other debt instruments 4/ 5/ (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.MA.AR.NE.US\",\"0569_T1.5_.... Other debt instruments 4/ 5/ (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.MA.AR.OC.US\",\"0864_T1.6_.... Other debt liabilities 3/ 4/ (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.MA.AR.PX.US\",\"0805_T1.6_.... Other debt liabilities 3/ 4/ (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.MA.AR.TR.US\",\"0687_T1.6_.... Other debt liabilities 3/ 4/ (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.MA.AR.US\",\"0021_T1_.... Other debt liabilities 4/ 5/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.OT.AR.BE.US\",\"0655_T1.6_.... Other debt liabilities 3/ 4/ (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.OT.AR.EA.US\",\"0535_T1.5_.... Other debt instruments 4/ 5/ (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.OT.AR.EN.US\",\"0950_T1.6_.... Other debt liabilities 3/ 4/ (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.OT.AR.EX.US\",\"0773_T1.6_.... Other debt liabilities 3/ 4/ (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.OT.AR.GE.US\",\"0474_T1.5_.... Other debt instruments 4/ 5/ (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.OT.AR.NE.US\",\"0596_T1.5_.... Other debt instruments 4/ 5/ (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.OT.AR.OC.US\",\"0891_T1.6_.... Other debt liabilities 3/ 4/ (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.OT.AR.PX.US\",\"0832_T1.6_.... Other debt liabilities 3/ 4/ (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.OT.AR.TR.US\",\"0714_T1.6_.... Other debt liabilities 3/ 4/ (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSOO.CD.OT.AR.US\",\"0048_T1_.... Other debt liabilities 4/ 5/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD\",\"External debt stocks, short-term (DOD, current US$)\",\"Short-term external debt is defined as debt that has an original maturity of one year or less. Available data permit no distinction between public and private nonguaranteed short-term debt. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DOD.DSTC.CD.CB.AR.BE.US\",\"0637_T1.6_.. Short-term (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.CB.AR.EA.US\",\"0517_T1.5_.. Short-term (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.CB.AR.EN.US\",\"0932_T1.6_.. Short-term (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.CB.AR.EX.US\",\"0755_T1.6_.. Short-term (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.CB.AR.GE.US\",\"0456_T1.5_.. Short-term (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.CB.AR.NE.US\",\"0578_T1.5_.. Short-term (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.CB.AR.OC.US\",\"0873_T1.6_.. Short-term (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.CB.AR.PX.US\",\"0814_T1.6_.. Short-term (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.CB.AR.TR.US\",\"0696_T1.6_.. Short-term (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.CB.AR.US\",\"0030_T1_.. Short-term\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.CB.TD.MP.US\",\"0278_T1.1_.. Short-term (Difference Market Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.CB.TD.MV.US\",\"0293_T1.1_.. Short-term (Market Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.CB.TD.NV.US\",\"0263_T1.1_.. Short-term (Nominal Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.DC.T5.US\",\"253_T5_.. Short-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.FC.CB.EU.US\",\"1003_T2.1_.. Short-term 4/ (Euro)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.FC.CB.JY.US\",\"1020_T2.1_.. Short-term 4/ (Yen)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.FC.CB.OT.US\",\"1037_T2.1_.. Short-term 4/ (Other)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.FC.CB.TO.US\",\"0969_T2.1_.. Short-term 4/ (Total)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.FC.CB.US.US\",\"0986_T2.1_.. Short-term 4/ (U.S. dollar)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.FC.GG.EU.US\",\"0997_T2.1_.. Short-term 4/ (Euro)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.FC.GG.JY.US\",\"1014_T2.1_.. Short-term 4/ (Yen)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.FC.GG.OT.US\",\"1031_T2.1_.. Short-term 4/ (Other)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.FC.GG.TO.US\",\"0963_T2.1_.. Short-term 4/ (Total)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.FC.GG.US.US\",\"0980_T2.1_.. Short-term 4/ (U.S. dollar)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.FC.MA.EU.US\",\"1000_T2.1_.. Short-term (Euro)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.FC.MA.JY.US\",\"1017_T2.1_.. Short-term (Yen)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.FC.MA.OT.US\",\"1034_T2.1_.. Short-term (Other)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.FC.MA.TO.US\",\"0966_T2.1_.. Short-term (Total)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.FC.MA.US.US\",\"0983_T2.1_.. Short-term (U.S. dollar)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.FC.OT.EU.US\",\"1006_T2.1_.. Short-term 4/ (Euro)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.FC.OT.JY.US\",\"1023_T2.1_.. Short-term 4/ (Yen)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.FC.OT.OT.US\",\"1040_T2.1_.. Short-term 4/ (Other)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.FC.OT.TO.US\",\"0972_T2.1_.. Short-term 4/ (Total)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.FC.OT.US.US\",\"0989_T2.1_.. Short-term 4/ (U.S. dollar)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.FC.T5.US\",\"250_T5_.. Short-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.GG.AR.BE.US\",\"0609_T1.6_.. Short-term (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.GG.AR.EA.US\",\"0487_T1.5_.. Short-term (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.GG.AR.EN.US\",\"0904_T1.6_.. Short-term (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.GG.AR.EX.US\",\"0727_T1.6_.. Short-term (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.GG.AR.GE.US\",\"0426_T1.5_.. Short-term (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.GG.AR.NE.US\",\"0548_T1.5_.. Short-term (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.GG.AR.OC.US\",\"0845_T1.6_.. Short-term (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.GG.AR.PX.US\",\"0786_T1.6_.. Short-term (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.GG.AR.TR.US\",\"0668_T1.6_.. Short-term (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.GG.AR.US\",\"0002_T1_.. Short-term\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.GG.TD.MP.US\",\"0272_T1.1_.. Short-term (Difference Market Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.GG.TD.MV.US\",\"0287_T1.1_.. Short-term (Market Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.GG.TD.NV.US\",\"0257_T1.1_.. Short-term (Nominal Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.HN.US\",\"0328_T1.2_.. Short-term\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.MA.AR.BE.US\",\"0623_T1.6_.. Short-term (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.MA.AR.EA.US\",\"0502_T1.5_.. Short-term (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.MA.AR.EN.US\",\"0918_T1.6_.. Short-term (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.MA.AR.EX.US\",\"0741_T1.6_.. Short-term (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.MA.AR.GE.US\",\"0441_T1.5_.. Short-term (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.MA.AR.NE.US\",\"0563_T1.5_.. Short-term (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.MA.AR.OC.US\",\"0859_T1.6_.. Short-term (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.MA.AR.PX.US\",\"0800_T1.6_.. Short-term (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.MA.AR.TR.US\",\"0682_T1.6_.. Short-term (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.MA.AR.US\",\"0016_T1_.. Short-term\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.MA.TD.MP.US\",\"0275_T1.1_.. Short-term (Difference Market Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.MA.TD.MV.US\",\"0290_T1.1_.. Short-term (Market Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.MA.TD.NV.US\",\"0260_T1.1_.. Short-term (Nominal Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.NC.US\",\"0315_T1.2_.. Short-term\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.OF.US\",\"0302_T1.2_.. Short-term\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.OT.AR.BE.US\",\"0650_T1.6_.. Short-term (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.OT.AR.EA.US\",\"0530_T1.5_.. Short-term (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.OT.AR.EN.US\",\"0945_T1.6_.. Short-term (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.OT.AR.EX.US\",\"0768_T1.6_.. Short-term (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.OT.AR.GE.US\",\"0469_T1.5_.. Short-term (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.OT.AR.NE.US\",\"0591_T1.5_.. Short-term (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.OT.AR.OC.US\",\"0886_T1.6_.. Short-term (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.OT.AR.PX.US\",\"0827_T1.6_.. Short-term (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.OT.AR.TR.US\",\"0709_T1.6_.. Short-term (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.OT.AR.US\",\"0043_T1_.. Short-term\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.CD.US\",\"Short-term, Total\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.IR.ZS\",\"Short-term debt (% of total reserves)\",\"Short-term debt includes all debt having an original maturity of one year or less and interest in arrears on long-term debt. Total reserves includes gold.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DOD.DSTC.PR.DS.US\",\"0389_T1.3_.... Short-term\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.PU.DS.US\",\"0386_T1.3_.... Short-term\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTC.XP.ZS\",\"Short-term debt (% of exports of goods, services and primary income)\",\"Short-term external debt is defined as debt that has an original maturity of one year or less. Available data permit no distinction between public and private nonguaranteed short-term debt.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DOD.DSTC.ZS\",\"Short-term debt (% of total external debt)\",\"Short-term debt includes all debt having an original maturity of one year or less and interest in arrears on long-term debt. Total external debt is debt owed to nonresidents repayable in currency, goods, or services. Total external debt is the sum of public, publicly guaranteed, and private nonguaranteed long-term debt, use of IMF credit, and short-term debt.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DOD.DSTL.CD.CB.AR.BE.US\",\"0640_T1.6_.... Loans (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.CB.AR.EA.US\",\"0520_T1.5_.... Loans (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.CB.AR.EN.US\",\"0935_T1.6_.... Loans (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.CB.AR.EX.US\",\"0758_T1.6_.... Loans (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.CB.AR.GE.US\",\"0459_T1.5_.... Loans (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.CB.AR.NE.US\",\"0581_T1.5_.... Loans (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.CB.AR.OC.US\",\"0876_T1.6_.... Loans (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.CB.AR.PX.US\",\"0817_T1.6_.... Loans (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.CB.AR.TR.US\",\"0699_T1.6_.... Loans (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.CB.AR.US\",\"0033_T1_.... Loans\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.GG.AR.BE.US\",\"0612_T1.6_.... Loans (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.GG.AR.EA.US\",\"0490_T1.5_.... Loans (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.GG.AR.EN.US\",\"0907_T1.6_.... Loans (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.GG.AR.EX.US\",\"0730_T1.6_.... Loans (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.GG.AR.GE.US\",\"0429_T1.5_.... Loans (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.GG.AR.NE.US\",\"0551_T1.5_.... Loans (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.GG.AR.OC.US\",\"0848_T1.6_.... Loans (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.GG.AR.PX.US\",\"0789_T1.6_.... Loans (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.GG.AR.TR.US\",\"0671_T1.6_.... Loans (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.GG.AR.US\",\"0005_T1_.... Loans\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.HN.US\",\"0331_T1.2_.... Loans\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.MA.AR.BE.US\",\"0626_T1.6_.... Loans (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.MA.AR.EA.US\",\"0505_T1.5_.... Loans (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.MA.AR.EN.US\",\"0921_T1.6_.... Loans (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.MA.AR.EX.US\",\"0744_T1.6_.... Loans (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.MA.AR.GE.US\",\"0444_T1.5_.... Loans (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.MA.AR.NE.US\",\"0566_T1.5_.... Loans (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.MA.AR.OC.US\",\"0862_T1.6_.... Loans (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.MA.AR.PX.US\",\"0803_T1.6_.... Loans (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.MA.AR.TR.US\",\"0685_T1.6_.... Loans (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.MA.AR.US\",\"0019_T1_.... Loans\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.NC.US\",\"0318_T1.2_.... Loans\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.OF.US\",\"0305_T1.2_.... Loans\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.OT.AR.BE.US\",\"0653_T1.6_.... Loans (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.OT.AR.EA.US\",\"0533_T1.5_.... Loans (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.OT.AR.EN.US\",\"0948_T1.6_.... Loans (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.OT.AR.EX.US\",\"0771_T1.6_.... Loans (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.OT.AR.GE.US\",\"0472_T1.5_.... Loans (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.OT.AR.NE.US\",\"0594_T1.5_.... Loans (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.OT.AR.OC.US\",\"0889_T1.6_.... Loans (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.OT.AR.PX.US\",\"0830_T1.6_.... Loans (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.OT.AR.TR.US\",\"0712_T1.6_.... Loans (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTL.CD.OT.AR.US\",\"0046_T1_.... Loans\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.CB.AR.BE.US\",\"0639_T1.6_.... Debt securities (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.CB.AR.EA.US\",\"0519_T1.5_.... Debt securities (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.CB.AR.EN.US\",\"0934_T1.6_.... Debt securities (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.CB.AR.EX.US\",\"0757_T1.6_.... Debt securities (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.CB.AR.GE.US\",\"0458_T1.5_.... Debt securities (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.CB.AR.NE.US\",\"0580_T1.5_.... Debt securities (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.CB.AR.OC.US\",\"0875_T1.6_.... Debt securities (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.CB.AR.PX.US\",\"0816_T1.6_.... Debt securities (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.CB.AR.TR.US\",\"0698_T1.6_.... Debt securities (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.CB.AR.US\",\"0032_T1_.... Debt securities\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.GG.AR.BE.US\",\"0611_T1.6_.... Debt securities (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.GG.AR.EA.US\",\"0489_T1.5_.... Debt securities (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.GG.AR.EN.US\",\"0906_T1.6_.... Debt securities (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.GG.AR.EX.US\",\"0729_T1.6_.... Debt securities (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.GG.AR.GE.US\",\"0428_T1.5_.... Debt securities (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.GG.AR.NE.US\",\"0550_T1.5_.... Debt securities (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.GG.AR.OC.US\",\"0847_T1.6_.... Debt securities (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.GG.AR.PX.US\",\"0788_T1.6_.... Debt securities (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.GG.AR.TR.US\",\"0670_T1.6_.... Debt securities (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.GG.AR.US\",\"0004_T1_.... Debt securities\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.HN.US\",\"0330_T1.2_.... Debt securities\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.MA.AR.BE.US\",\"0625_T1.6_.... Debt securities (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.MA.AR.EA.US\",\"0504_T1.5_.... Debt securities (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.MA.AR.EN.US\",\"0920_T1.6_.... Debt securities (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.MA.AR.EX.US\",\"0743_T1.6_.... Debt securities (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.MA.AR.GE.US\",\"0443_T1.5_.... Debt securities (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.MA.AR.NE.US\",\"0565_T1.5_.... Debt securities (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.MA.AR.OC.US\",\"0861_T1.6_.... Debt securities (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.MA.AR.PX.US\",\"0802_T1.6_.... Debt securities (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.MA.AR.TR.US\",\"0684_T1.6_.... Debt securities (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.MA.AR.US\",\"0018_T1_.... Debt securities\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.NC.US\",\"0317_T1.2_.... Debt securities\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.OF.US\",\"0304_T1.2_.... Debt securities\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.OT.AR.BE.US\",\"0652_T1.6_.... Debt securities (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.OT.AR.EA.US\",\"0532_T1.5_.... Debt securities (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.OT.AR.EN.US\",\"0947_T1.6_.... Debt securities (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.OT.AR.EX.US\",\"0770_T1.6_.... Debt securities (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.OT.AR.GE.US\",\"0471_T1.5_.... Debt securities (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.OT.AR.NE.US\",\"0593_T1.5_.... Debt securities (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.OT.AR.OC.US\",\"0888_T1.6_.... Debt securities (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.OT.AR.PX.US\",\"0829_T1.6_.... Debt securities (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.OT.AR.TR.US\",\"0711_T1.6_.... Debt securities (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTM.CD.OT.AR.US\",\"0045_T1_.... Debt securities\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTO.CD.HN.US\",\"0333_T1.2_.... Other debt liabilities 4/ 5/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTO.CD.NC.US\",\"0320_T1.2_.... Other debt liabilities 4/ 5/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTO.CD.OF.US\",\"0307_T1.2_.... Other debt liabilities 4/ 5/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.CB.AR.BE.US\",\"0641_T1.6_.... Trade credit and advances (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.CB.AR.EA.US\",\"0521_T1.5_.... Trade credit and advances (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.CB.AR.EN.US\",\"0936_T1.6_.... Trade credit and advances (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.CB.AR.EX.US\",\"0759_T1.6_.... Trade credit and advances (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.CB.AR.GE.US\",\"0460_T1.5_.... Trade credit and advances (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.CB.AR.NE.US\",\"0582_T1.5_.... Trade credit and advances (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.CB.AR.OC.US\",\"0877_T1.6_.... Trade credit and advances (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.CB.AR.PX.US\",\"0818_T1.6_.... Trade credit and advances (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.CB.AR.TR.US\",\"0700_T1.6_.... Trade credit and advances (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.CB.AR.US\",\"0034_T1_.... Trade credit and advances\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.GG.AR.BE.US\",\"0613_T1.6_.... Trade credit and advances (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.GG.AR.EA.US\",\"0491_T1.5_.... Trade credit and advances (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.GG.AR.EN.US\",\"0908_T1.6_.... Trade credit and advances (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.GG.AR.EX.US\",\"0731_T1.6_.... Trade credit and advances (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.GG.AR.GE.US\",\"0430_T1.5_.... Trade credit and advances (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.GG.AR.NE.US\",\"0552_T1.5_.... Trade credit and advances (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.GG.AR.OC.US\",\"0849_T1.6_.... Trade credit and advances (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.GG.AR.PX.US\",\"0790_T1.6_.... Trade credit and advances (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.GG.AR.TR.US\",\"0672_T1.6_.... Trade credit and advances (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.GG.AR.US\",\"0006_T1_.... Trade credit and advances\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.HN.US\",\"0332_T1.2_.... Trade credit and advances\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.MA.AR.BE.US\",\"0627_T1.6_.... Trade credit and advances (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.MA.AR.EA.US\",\"0506_T1.5_.... Trade credit and advances (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.MA.AR.EN.US\",\"0922_T1.6_.... Trade credit and advances (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.MA.AR.EX.US\",\"0745_T1.6_.... Trade credit and advances (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.MA.AR.GE.US\",\"0445_T1.5_.... Trade credit and advances (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.MA.AR.NE.US\",\"0567_T1.5_.... Trade credit and advances (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.MA.AR.OC.US\",\"0863_T1.6_.... Trade credit and advances (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.MA.AR.PX.US\",\"0804_T1.6_.... Trade credit and advances (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.MA.AR.TR.US\",\"0686_T1.6_.... Trade credit and advances (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.MA.AR.US\",\"0020_T1_.... Trade credit and advances\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.NC.US\",\"0319_T1.2_.... Trade credit and advances\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.OF.US\",\"0306_T1.2_.... Trade credit and advances\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.OT.AR.BE.US\",\"0654_T1.6_.... Trade credit and advances (Positon at beginning of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.OT.AR.EA.US\",\"0534_T1.5_.... Trade credit and advances (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.OT.AR.EN.US\",\"0949_T1.6_.... Trade credit and advances (Positon at end of period)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.OT.AR.EX.US\",\"0772_T1.6_.... Trade credit and advances (Exchange rate changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.OT.AR.GE.US\",\"0473_T1.5_.... Trade credit and advances (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.OT.AR.NE.US\",\"0595_T1.5_.... Trade credit and advances (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.OT.AR.OC.US\",\"0890_T1.6_.... Trade credit and advances (Other changes in volume)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.OT.AR.PX.US\",\"0831_T1.6_.... Trade credit and advances (Other price changes)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.OT.AR.TR.US\",\"0713_T1.6_.... Trade credit and advances (Transactions)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.OT.AR.US\",\"0047_T1_.... Trade credit and advances\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.OT.TD.MP.US\",\"0281_T1.1_.. Short-term (Difference Market Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.OT.TD.MV.US\",\"0296_T1.1_.. Short-term (Market Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSTT.CD.OT.TD.NV.US\",\"0266_T1.1_.. Short-term (Nominal Value)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSUN.CD.GG.AR.EA.US\",\"0492_T1.5_.... Unallocated gold accounts included in monetary gold 3/ (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSUN.CD.GG.AR.GE.US\",\"0431_T1.5_.... Unallocated gold accounts included in monetary gold 3/ (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSUN.CD.GG.AR.NE.US\",\"0553_T1.5_.... Unallocated gold accounts included in monetary gold 3/ (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSUN.CD.MA.AR.EA.US\",\"0507_T1.5_.... Unallocated gold accounts included in monetary gold 3/ (External Assets in Debt Instruments )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSUN.CD.MA.AR.GE.US\",\"0446_T1.5_.... Unallocated gold accounts included in monetary gold 3/ (Gross External Debt Position)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.DSUN.CD.MA.AR.NE.US\",\"0568_T1.5_.... Unallocated gold accounts included in monetary gold 3/ (Net External Debt )\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.LOLT.CD.PR.AR.US\",\"0369_T1.3_.... Loans\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.LOLT.CD.PU.AR.US\",\"0352_T1.3_.... Loans\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.LOST.CD.PR.AR.US\",\"0363_T1.3_.... Loans\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.LOST.CD.PU.AR.US\",\"0345_T1.3_.... Loans\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.MDRI.CD\",\"Debt forgiveness grants (current US$)\",\"Debt forgiveness grants data cover both debt cancelled by agreement between debtor and creditor and a reduction in the net present value of non-ODA debt achieved by concessional rescheduling or refinancing. The  data are on a disbursement basis and cover flows from all bilateral and multilateral donors. Data are in current U.S. dollars. Regional and unspecified allocations are excluded from aggregate data. \",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development.\"\n\"DT.DOD.MIBR.CD\",\"PPG, IBRD (DOD, current US$)\",\"Public and publicly guaranteed debt outstanding from the International Bank for Reconstruction and Development (IBRD) is nonconcessional. Nonconcessional debt excludes loans with an original grant element of 25 percent or more. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DOD.MIDA.CD\",\"PPG, IDA (DOD, current US$)\",\"Public and publicly guaranteed debt outstanding from the International Development Association (IDA) is concessional. Concessional debt is defined as loans with an original grant element of 25 percent or more. The grant element of a loan is the grant equivalent expressed as a percentage of the amount committed. It is used as a measure of the overall cost of borrowing. The grant equivalent of a loan is its commitment (present) value, less the discounted present value of its contractual debt service; conventionally, future service payments are discounted at 10 percent. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DOD.MLAT.CD\",\"PPG, multilateral (DOD, current US$)\",\"Public and publicly guaranteed multilateral loans include loans and credits from the World Bank, regional development banks, and other multilateral and intergovernmental agencies. Excluded are loans from funds administered by an international organization on behalf of a single donor government; these are classified as loans from governments. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DOD.MLAT.ZS\",\"Multilateral debt (% of total external debt)\",\"Multilateral debt to total external debt stocks.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DOD.MLTC.CD\",\"PPG, multilateral concessional (DOD, current US$)\",\"Public and publicly guaranteed multilateral loans include loans and credits from the World Bank, regional development banks, and other multilateral and intergovernmental agencies. Excluded are loans from funds administered by an international organization on behalf of a single donor government; these are classified as loans from governments. Concessional debt is defined as loans with an original grant element of 25 percent or more. The grant element of a loan is the grant equivalent expressed as a percentage of the amount committed. It is used as a measure of the overall cost of borrowing. The grant equivalent of a loan is its commitment (present) value, less the discounted present value of its contractual debt service; conventionally, future service payments are discounted at 10 percent. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DOD.MLTN.CD\",\"Debt outstanding and disbursed, PPG Multilateral on nonconcessional terms (DOD, current US$)\",\"Public and publicly guaranteed multilateral loans include loans and credits from the World Bank, regional development banks, and other multilateral and intergovernmental agencies. Excluded are loans from funds administered by an international organization.  \",\"Africa Development Indicators\",\"World Bank, Global Development Finance.\"\n\"DT.DOD.MMST.CD.PR.AR.US\",\"0362_T1.3_.... Debt securities\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.MMST.CD.PU.AR.US\",\"0344_T1.3_.... Debt securities\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.MWBG.CD\",\"IBRD loans and IDA credits (DOD, current US$)\",\"IBRD loans and IDA credits are public and publicly guaranteed debt extended by the World Bank Group. The International Bank for Reconstruction and Development (IBRD) lends at market rates. Credits from the International Development Association (IDA) are at concessional rates. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DOD.OFFT.CD\",\"PPG, official creditors (DOD, current US$)\",\"Public and publicly guaranteed debt from official creditors includes loans from international organizations (multilateral loans) and loans from governments (bilateral loans). Loans from international organization include loans and credits from the World Bank, regional development banks, and other multilateral and intergovernmental agencies. Excluded are loans from funds administered by an international organization on behalf of a single donor government; these are classified as loans from governments. Government loans include loans from governments and their agencies (including central banks), loans from autonomous bodies, and direct loans from official export credit agencies. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DOD.OFFT.CD.PR.AR.US\",\"0359_T1.3_Publicly Guaranteed Private Sector External Debt 4/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.OFFT.CD.PU.AR.US\",\"0341_T1.3_Public Sector External Debt 3/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.OFFT.PR.AR.US\",\"0381_T1.3_.. Publicly-Guaranteed Private Sector External Debt 10/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.OFFT.PR.DS.US\",\"0388_T1.3_.. Publicly-Guaranteed Private Sector External Debt\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.OFFT.PR.IN.AR.US\",\"0383_T1.3_.... Interest\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.OFFT.PR.PR.AR.US\",\"0382_T1.3_.... Principal\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.OFFT.PU.AR.US\",\"0378_T1.3_.. Public Sector External Debt 10/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.OFFT.PU.DS.US\",\"0385_T1.3_.. Public Sector External Debt\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.OFFT.PU.IN.AR.US\",\"0380_T1.3_.... Interest\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.OFFT.PU.PR.AR.US\",\"0379_T1.3_.... Principal\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.OLLT.CD.PR.AR.US\",\"0371_T1.3_.... Other debt liabilities 6/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.OLLT.CD.PU.AR.US\",\"0354_T1.3_.... Other debt liabilities 6/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.OOST.CD.PR.AR.US\",\"0365_T1.3_.... Other debt liabilities 6/ 7/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.OOST.CD.PU.AR.US\",\"0347_T1.3_.... Other debt liabilities 6/ 7/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.PBND.CD\",\"PPG, bonds (DOD, current US$)\",\"Public and publicly guaranteed debt from bonds that are either publicly issued or privately placed. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DOD.PCBK.CD\",\"PPG, commercial banks (DOD, current US$)\",\"Public and publicly guaranteed commercial bank loans from private banks and other private financial institutions. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DOD.PCCR.US\",\"192_T3_Paris Club member creditors 6/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PCPR.LT.US\",\"198_T3_.... Long-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PCPR.ST.US\",\"197_T3_.... Short-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PCPR.US\",\"196_T3_.. Publicly-Guaranteed Private Sector External Debt\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PCPU.LT.US\",\"195_T3_.... Long-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PCPU.ST.US\",\"194_T3_.... Short-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PCPU.US\",\"193_T3_.. Public Sector External Debt\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PGNG.CD\",\"Debt outstanding and disbursed, PPG and PNG private creditors (DOD, current US$)\",\"Public and publicly guaranteed debt from private creditors include bonds that are either publicly issued or privately placed; commercial bank loans from private banks and other private financial institutions; and other private credits from manufacturers, exporters, and other suppliers of goods, and bank credits covered by a guarantee of an export credit agency. Long-term debt outstanding and disbursed (LDOD) is the total outstanding long-term debt at year end.  Private nonguaranteed long-term debt outstanding and disbursed (LDOD) is an external obligation of a private debtor that is not guaranteed for repayment by a public entity. Long-term debt outstanding and disbursed (LDOD) is the total outstanding long-term debt at year end. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents and repayable in currency, goods, or services.  \",\"Africa Development Indicators\",\"World Bank, Global Development Finance.\"\n\"DT.DOD.PNGB.CD\",\"PNG, bonds (DOD, current US$)\",\"Nonguaranteed long-term debt from bonds that are privately placed. Private nonguaranteed long-term debt outstanding and disbursed is an external obligation of a private debtor that is not guaranteed for repayment by a public entity. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DOD.PNGC.CD\",\"PNG, commercial banks and other creditors (DOD, current US$)\",\"Nonguaranteed long-term commercial bank loans from private banks and other private financial institutions. Private nonguaranteed long-term debt outstanding and disbursed is an external obligation of a private debtor that is not guaranteed for repayment by a public entity. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DOD.PRAE.IL.US\",\"232_T4_.... Debt liabilities of direct investors to direct investment enterprises \",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRBA.CD.LT.US\",\"184_T3_.... Long-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRBA.CD.ST.US\",\"183_T3_.... Short-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRBA.CD.US\",\"182_T3_.. Deposit-taking Corporations, except the Central Bank, creditors\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRBL.CD.LT.US\",\"181_T3_.... Long-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRBL.CD.ST.US\",\"180_T3_.... Short-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRBL.CD.US\",\"179_T3_.. Official bilateral creditors 4/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRBN.LT.AR.US\",\"226_T4_.... Debt securities\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRCD.LT.AR.US\",\"225_T4_.... Currency and deposits 6/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRCD.ST.AR.US\",\"219_T4_.... Currency and deposits 6/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRDI.IL.US\",\"231_T4_.... Debt liabilities of direct investment enterprises to direct investors              \",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRFE.IL.US\",\"233_T4_.... Debt liabilities between fellow enterprises\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRLO.LT.AR.US\",\"227_T4_.... Loans\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRLO.ST.AR.US\",\"221_T4_.... Loans\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRLT.CD.PR.AR.US\",\"0366_T1.3_.. Long-term\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.PRMM.ST.AR.US\",\"220_T4_.... Debt securities\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRMU.CD.LT.US\",\"178_T3_.... Long-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRMU.CD.ST.US\",\"177_T3_.... Short-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRMU.CD.US\",\"176_T3_.. Multilateral creditors\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PROD.LT.AR.US\",\"229_T4_.... Other debt liabilities 7/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PROD.ST.AR.US\",\"223_T4_.... Other debt liabilities 7/ 8/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PROP.CD\",\"PPG, other private creditors (DOD, current US$)\",\"Public and publicly guaranteed other private credits from manufacturers, exporters, and other suppliers of goods, and bank credits covered by a guarantee of an export credit agency. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DOD.PROT.CD.LT.US\",\"187_T3_.... Long-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PROT.CD.ST.US\",\"186_T3_.... Short-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PROT.CD.US\",\"185_T3_.. Other creditors\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRST.CD.PR.AR.US\",\"0360_T1.3_.. Short-term\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.PRTC.LT.AR.US\",\"228_T4_.... Trade credit and advances\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRTC.ST.AR.US\",\"222_T4_.... Trade credit and advances\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRTD.CD.LT.US\",\"190_T3_.... Long-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRTD.CD.ST.US\",\"189_T3_.... Short-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRTD.CD.US\",\"188_T3_.. Debt securities' holders 5/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRVS.AR.T4.US\",\"239_T4_.. Publicly-Guaranteed Private Sector External Debt 11/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRVS.CD\",\"External debt stocks, long-term private sector (DOD, current US$)\",\"Long-term private sector external debt conveys information about the distribution of long-term debt for DRS countries by type of debtor (private banks and private entities). Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents by residents of an economy and repayable in currency, goods, or services. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DOD.PRVS.CD.AR.US\",\"015_T1_.. Publicly-Guaranteed Private Sector External Debt \",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRVS.CD.LT.US\",\"006_T1_.. Long-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRVS.CD.ST.US\",\"005_T1_.. Short-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRVS.CD.T3.US\",\"175_T3_Publicly-Guaranteed Private Sector External Debt\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRVS.CD.US\",\"004_T1_Publicly-Guaranteed Private Sector External Debt 4/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRVS.DI.US\",\"230_T4_.. Direct Investment: Intercompany Lending 10/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRVS.DS.LT.T4.US\",\"248_T4_.... Long-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRVS.DS.ST.T4.US\",\"247_T4_.... Short-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRVS.DS.T4.US\",\"246_T4_.. Publicly-Guaranteed Private Sector External Debt \",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRVS.IR.T4.US\",\"241_T4_.... Interest\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRVS.LT.TO.US\",\"224_T4_.. Long-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRVS.PR.T4.US\",\"240_T4_.... Principal\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRVS.ST.AR.US\",\"218_T4_.. Short-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRVS.TO.T4.US\",\"217_T4_Publicly Guaranteed Private Sector External Debt 5/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PRVT.CD\",\"PPG, private creditors (DOD, current US$)\",\"Public and publicly guaranteed debt from private creditors include bonds that are either publicly issued or privately placed; commercial bank loans from private banks and other private financial institutions; and other private credits from manufacturers, exporters, and other suppliers of goods, and bank credits covered by a guarantee of an export credit agency. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DOD.PSDR.LT.AR.US\",\"207_T4_.... Special drawing rights (allocations) 9/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUAE.IL.US\",\"215_T4_.... Debt liabilities of direct investors to direct investment enterprises \",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUBA.CD.LT.US\",\"168_T3_.... Long-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUBA.CD.ST.US\",\"167_T3_.... Short-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUBA.CD.US\",\"166_T3_.. Deposit-taking Corporations, except the Central Bank, creditors\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUBL.CD.LT.US\",\"165_T3_.... Long-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUBL.CD.ST.US\",\"164_T3_.... Short-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUBL.CD.US\",\"163_T3_.. Official bilateral creditors 4/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUBN.LT.AR.US\",\"209_T4_.... Debt securities\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUBS.AR.T4.US\",\"236_T4_.. Public Sector External Debt 11/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUBS.CD\",\"External debt stocks, long-term public sector (DOD, current US$)\",\"Long-term public sector external debt conveys information about the distribution of long-term debt for DRS countries by type of debtor (central government, state and local government, central bank, public and mixed enterprises, and official development banks). Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents by residents of an economy and repayable in currency, goods, or services. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DOD.PUBS.CD.AR.US\",\"014_T1_.. Public Sector External Debt \",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUBS.CD.LT.US\",\"003_T1_.. Long-term *\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUBS.CD.ST.US\",\"002_T1_.. Short-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUBS.CD.T3.US\",\"159_T3_Public Sector External Debt\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUBS.CD.US\",\"001_T1_Public Sector External Debt 3/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUBS.DI.US\",\"213_T4_.. Direct investment: Intercompany lending 10/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUBS.DS.LT.T4.US\",\"245_T4_.... Long-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUBS.DS.ST.T4.US\",\"244_T4_.... Short-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUBS.DS.T4.US\",\"243_T4_.. Public Sector External Debt \",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUBS.IR.T4.US\",\"238_T4_.... Interest\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUBS.LT.TO.US\",\"206_T4_.. Long-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUBS.PR.T4.US\",\"237_T4_.... Principal\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUBS.ST.AR.US\",\"200_T4_.. Short-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUBS.TO.T4.US\",\"199_T4_Public Sector External Debt 4/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUCD.LT.AR.US\",\"208_T4_.... Currency and deposits 6/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUCD.ST.AR.US\",\"201_T4_.... Currency and deposits 6/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUDI.IL.US\",\"214_T4_.... Debt liabilities of direct investment enterprises to direct investors              \",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUFE.IL.US\",\"216_T4_.... Debt liabilities between fellow enterprises\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PULO.LT.AR.US\",\"210_T4_.... Loans\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PULO.ST.AR.US\",\"203_T4_.... Loans\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PULT.CD.PU.AR.US\",\"0348_T1.3_.. Long-term\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.PUMM.ST.AR.US\",\"202_T4_.... Debt securities\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUMU.CD.LT.US\",\"162_T3_.... Long-term*\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUMU.CD.ST.US\",\"161_T3_....  Short-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUMU.CD.US\",\"160_T3_.. Multilateral creditors\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUOD.LT.AR.US\",\"212_T4_.... Other debt liabilities 7/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUOO.ST.AR.US\",\"205_T4_.... Other debt liabilities 7/ 8/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUOT.CD.LT.US\",\"171_T3_.... Long-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUOT.CD.ST.US\",\"170_T3_.... Short-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUOT.CD.US\",\"169_T3_.. Other creditors\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUST.CD.PU.AR.US\",\"0342_T1.3_.. Short-term\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.PUTC.LT.AR.US\",\"211_T4_.... Trade credit and advances\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUTC.ST.AR.US\",\"204_T4_.... Trade credit and advances\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUTD.CD.LT.US\",\"174_T3_.... Long-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUTD.CD.ST.US\",\"173_T3_.... Short-term\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PUTD.CD.US\",\"172_T3_.. Debt securities' holders 5/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.DOD.PVLX.CD\",\"Present value of external debt (current US$)\",\"Present value of debt is the sum of short-term external debt plus the discounted sum of total debt service payments due on public, publicly guaranteed, and private nonguaranteed long-term external debt over the life of existing loans. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DOD.PVLX.EX.ZS\",\"Present value of external debt (% of exports of goods, services and primary income)\",\"Present value of debt is the sum of short-term external debt plus the discounted sum of total debt service payments due on public, publicly guaranteed, and private nonguaranteed long-term external debt over the life of existing loans. The exports denominator is a three-year average.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DOD.PVLX.GN.ZS\",\"Present value of external debt (% of GNI)\",\"Present value of debt is the sum of short-term external debt plus the discounted sum of total debt service payments due on public, publicly guaranteed, and private nonguaranteed long-term external debt over the life of existing loans. The GNI denominator is a three-year average.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DOD.PVLX.ND.ZS\",\"Present value to nominal value of debt (%)\",\"Present value of debt is the sum of short-term external debt plus the discounted sum of total debt service payments due on public, publicly guaranteed, and private nonguaranteed long-term external debt over the life of existing loans.  Total external debt is debt owed to nonresidents repayable in currency, goods, or services. Total external debt is the sum of public, publicly guaranteed, and private nonguaranteed long-term debt, use of IMF credit, and short-term debt. Short-term debt includes all debt having an original maturity of one year or less and interest in arrears on long-term debt. Data are in current U.S. dollars.  \",\"Africa Development Indicators\",\"World Bank, Global Development Finance.\"\n\"DT.DOD.RSDL.CD\",\"Residual, debt stock-flow reconciliation (current US$)\",\"The residual difference, i.e. the change in stock not explained by any of the factors identified under debt stock-flow reconciliation, is calculated as the sum of identified accounts minus the change in stock. Where the latter is large it can, in some cases, serve as an illustration of the inconsistencies in the reported data. More often however, it can be explained by specific borrowing phenomenon in individual countries. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DOD.SDLT.CD.PU.US\",\"0349_T1.3_.... Special drawing rights (allocations)  8/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.TCLT.CD.PR.AR.US\",\"0370_T1.3_.... Trade credit and advances\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.TCLT.CD.PU.AR.US\",\"0353_T1.3_.... Trade credit and advances\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.TCST.CD.PR.AR.US\",\"0364_T1.3_.... Trade credit and advances\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.TCST.CD.PU.AR.US\",\"0346_T1.3_.... Trade credit and advances\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOD.VTOT.CD\",\"External debt stocks, variable rate (DOD, current US$)\",\"Variable interest rate is long-term external debt with interest rates that float with movements in a key market rate; for example, the London interbank offered rate (LIBOR) or the U.S. prime rate. This item conveys information about the borrower's exposure to changes in international interest rates. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents by residents of an economy and repayable in currency, goods, or services. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DOR.DECT.AR.US\",\"1109_T3.1_Arrears: By Sector\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DECT.CB.AR.US\",\"1112_T3.1_.. Deposit-Taking Corporations, except the Central Bank\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DECT.CB.DS.US\",\"1118_T3.1_.. Deposit-Taking Corporations, except the Central Bank\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DECT.CD.CB.AR.US\",\"1073_T3.1_Deposit-taking Corporations, except the Central Bank\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DECT.CD.GG.AR.US\",\"1047_T3.1_General Government\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DECT.CD.IL.US\",\"1099_T3.1_Direct Investment: Intercompany Lending 7/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DECT.CD.MA.AR.US\",\"1060_T3.1_Central Bank\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DECT.CD.OT.AR.US\",\"1086_T3.1_Other Sectors\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DECT.DS.US\",\"1115_T3.1_Debt securities by Sector: Short-term on a remaining maturity basis 3/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DECT.GG.AR.US\",\"1110_T3.1_.. General Government\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DECT.GG.DS.US\",\"1116_T3.1_.. General Government\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DECT.IL.AR.US\",\"1114_T3.1_.. Direct Investment: Intercompany Lending\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DECT.MA.AR.US\",\"1111_T3.1_.. Central Bank\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DECT.MA.DS.US\",\"1117_T3.1_.. Central Bank\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DECT.OT.AR.US\",\"1113_T3.1_.. Other Sectors\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DECT.OT.DS.US\",\"1119_T3.1_.. Other Sectors\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DECT.RL.US\",\"1120_T3.1_Reserve related liabilities 8/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DIDI.CD.IL.US\",\"1101_T3.1_.... Debt liabilities of direct investment enterprises to direct investors\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DIFE.CD.IL.US\",\"1103_T3.1_.... Debt liabilities between fellow enterprises\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DIIE.CD.IL.US\",\"1102_T3.1_.... Debt liabilities of direct investors to direct investment enterprises\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DLBN.CD.CB.AR.US\",\"1082_T3.1_.... Debt securities\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DLBN.CD.GG.AR.US\",\"1056_T3.1_.... Debt securities\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DLBN.CD.MA.AR.US\",\"1069_T3.1_.... Debt securities\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DLBN.CD.OT.AR.US\",\"1095_T3.1_.... Debt securities\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DLCD.CD.CB.AR.US\",\"1081_T3.1_.... Currency and deposits 4/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DLCD.CD.MA.AR.US\",\"1068_T3.1_.... Currency and deposits 4/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DLCD.CD.OT.AR.US\",\"1094_T3.1_.... Currency and deposits 4/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DLTC.CD.GG.AR.US\",\"1055_T3.1_.... Currency and deposits 4/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DLTL.CD.CB.AR.US\",\"1083_T3.1_.... Loans\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DLTL.CD.GG.AR.US\",\"1057_T3.1_.... Loans\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DLTL.CD.MA.AR.US\",\"1070_T3.1_.... Loans\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DLTL.CD.OT.AR.US\",\"1096_T3.1_.... Loans\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DLTO.CD.CB.AR.US\",\"1085_T3.1_.... Other debt liabilities 5/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DLTO.CD.GG.AR.US\",\"1059_T3.1_.... Other debt liabilities 5/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DLTO.CD.MA.AR.US\",\"1072_T3.1_.... Other debt liabilities 5/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DLTO.CD.OT.AR.US\",\"1098_T3.1_.... Other debt liabilities 5/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DLTT.CD.CB.US\",\"1084_T3.1_.... Trade credit and advances\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DLTT.CD.GG.AR.US\",\"1058_T3.1_.... Trade credit and advances\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DLTT.CD.MA.AR.US\",\"1071_T3.1_.... Trade credit and advances\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DLTT.CD.OT.AR.US\",\"1097_T3.1_.... Trade credit and advances\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DLXF.CD.CB.AR.US\",\"1080_T3.1_.. Long-term debt obligations due for payment within one year or less\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DLXF.CD.GG.AR.US\",\"1054_T3.1_.. Long-term debt obligations due for payment within one year or less\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DLXF.CD.MA.AR.US\",\"1067_T3.1_.. Long-term debt obligations due for payment within one year or less\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DLXF.CD.OT.AR.US\",\"1093_T3.1_.. Long-term debt obligations due for payment within one year or less\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DSCD.CD.CB.AR.US\",\"1075_T3.1_.... Currency and deposits 4/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DSCD.CD.GG.AR.US\",\"1049_T3.1_.... Currency and deposits 4/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DSCD.CD.MA.AR.US\",\"1062_T3.1_.... Currency and deposits 4/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DSCD.CD.OT.AR.US\",\"1088_T3.1_.... Currency and deposits 4/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DSOO.CD.CB.AR.US\",\"1079_T3.1_.... Other debt liabilities 5/ 6/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DSOO.CD.GG.AR.US\",\"1053_T3.1_.... Other debt liabilities 5/ 6/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DSOO.CD.MA.AR.US\",\"1066_T3.1_.... Other debt liabilities 5/ 6/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DSOO.CD.OT.AR.US\",\"1092_T3.1_.... Other debt liabilities 5/ 6/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DSTC.CD.CB.AR.US\",\"1074_T3.1_.. Short-term debt on an original maturity basis\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DSTC.CD.GG.AR.US\",\"1048_T3.1_.. Short-term debt on an original maturity basis\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DSTC.CD.IL.AR.US\",\"1100_T3.1_.. Short-term on an original maturity basis\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DSTC.CD.MA.AR.US\",\"1061_T3.1_.. Short-term debt on an original maturity basis\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DSTC.CD.OT.AR.US\",\"1087_T3.1_.. Short-term debt on an original maturity basis\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DSTC.CD.RM.AR.US\",\"1108_T3.1_Total Short-Term External Debt (remaining maturity basis)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DSTL.CD.CB.AR.US\",\"1077_T3.1_.... Loans\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DSTL.CD.GG.AR.US\",\"1051_T3.1_.... Loans\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DSTL.CD.MA.AR.US\",\"1064_T3.1_.... Loans\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DSTL.CD.OT.AR.US\",\"1090_T3.1_.... Loans\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DSTM.CD.CB.AR.US\",\"1076_T3.1_.... Debt securities\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DSTM.CD.GG.AR.US\",\"1050_T3.1_.... Debt securities\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DSTM.CD.MA.AR.US\",\"1063_T3.1_.... Debt securities\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DSTM.CD.OT.AR.US\",\"1089_T3.1_.... Debt securities\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DSTT.CD.CB.AR.US\",\"1078_T3.1_.... Trade credit and advances\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DSTT.CD.GG.AR.US\",\"1052_T3.1_.... Trade credit and advances\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DSTT.CD.MA.AR.US\",\"1065_T3.1_.... Trade credit and advances\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.DSTT.CD.OT.AR.US\",\"1091_T3.1_.... Trade credit and advances\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.LTDI.CD.IL.RM.AR.US\",\"1105_T3.1_.... Debt liabilities of direct investment enterprises to direct investors\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.LTFE.CD.IL.RM.US\",\"1107_T3.1_.... Debt liabilities between fellow enterprises\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.LTIE.CD.IL.RM.AR.US\",\"1106_T3.1_.... Debt liabilities of direct investors to direct investment enterprises\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DOR.LTOT.CD.IL.RM.AR.US\",\"1104_T3.1_.. Long-term debt obligations due for payment within one year or less\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.DSB.DPPG.CD\",\"Debt buyback (current US$)\",\"Debt buyback is the repurchase by a debtor of its own debt, discounted or at par. In the event of a buyback of long-term debt, the face value of the debt bought back will be recorded as a decline in the long-term debt stock, and the cash amount received by creditors will be recorded as a principal repayment. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DSF.DPPG.CD\",\"Debt stock reduction (current US$)\",\"Debt stock reductions show the amount that has been netted out of the stock of debt using debt conversion schemes such as buybacks and equity swaps or the discounted value of long-term bonds that were issued in exchange for outstanding debt. It includes the effect of any financial operation that will reduce the debt stock other than debt stock restructuring, repayment of principal and debt forgiven. In particular, debt stock reduction will include the face value of debt bought back, the face value of debt swapped for equity (or \\\"nature\\\" or \\\"development\\\"), any face value reduction that might result as the consequence of a bond exchange, and any face value reduction resulting from an exchange of debt for discount bonds. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.DTA.DLXF.CD\",\"Total stock of arrears (principal and interest payments) (current US$)\",\"Principal and interest payments due but not paid.  \",\"Africa Development Indicators\",\"World Bank, Global Development Finance.\"\n\"DT.DTA.OADJ.CD\",\"Adjustment to Arrears\",\"Adjustment to Arrears. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"DT.DXR.DPPG.CD\",\"Debt stock rescheduled (current US$)\",\"Debt stocks rescheduled is the amount of debt outstanding rescheduled in any given year. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.GPA.DPPG\",\"Average grace period on new external debt commitments (years)\",\"Grace period is the period from the date of signature of the loan or the issue of the financial instrument to the first repayment of principal. To obtain the average, the grace periods for all public and publicly guaranteed loans have been weighted by the amounts of the loans. Public debt is an external obligation of a public debtor, including the national government, a political subdivision (or an agency of either), and autonomous public bodies. Publicly guaranteed debt is an external obligation of a private debtor that is guaranteed for repayment by a public entity.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.GPA.OFFT\",\"Average grace period on new external debt commitments, official (years)\",\"Grace period is the period from the date of signature of the loan or the issue of the financial instrument to the first repayment of principal. To obtain the average, the grace periods for all public and publicly guaranteed loans have been weighted by the amounts of the loans. Debt from official creditors includes loans from international organizations (multilateral loans) and loans from governments (bilateral loans). Loans from international organization include loans and credits from the World Bank, regional development banks, and other multilateral and intergovernmental agencies. Excluded are loans from funds administered by an international organization on behalf of a single donor government; these are classified as loans from governments. Government loans include loans from governments and their agencies (including central banks), loans from autonomous bodies, and direct loans from official export credit agencies.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.GPA.PRVT\",\"Average grace period on new external debt commitments, private (years)\",\"Grace period is the period from the date of signature of the loan or the issue of the financial instrument to the first repayment of principal. To obtain the average, the grace periods for all public and publicly guaranteed loans have been weighted by the amounts of the loans. Debt from private creditors include bonds that are either publicly issued or privately placed; commercial bank loans from private banks and other private financial institutions; and other private credits from manufacturers, exporters, and other suppliers of goods, and bank credits covered by a guarantee of an export credit agency.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.GRE.DPPG\",\"Average grant element on new external debt commitments (%)\",\"The grant element of a loan is the grant equivalent expressed as a percentage of the amount committed. It is used as a measure of the overall cost of borrowing. To obtain the average, the grant elements for all public and publicly guaranteed loans have been weighted by the amounts of the loans. The grant equivalent of a loan is its commitment (present) value, less the discounted present value of its contractual debt service; conventionally, future service payments are discounted at 10 percent. Commitments cover the total amount of loans for which contracts were signed in the year specified. Public debt is an external obligation of a public debtor, including the national government, a political subdivision (or an agency of either), and autonomous public bodies. Publicly guaranteed debt is an external obligation of a private debtor that is guaranteed for repayment by a public entity. Data for private nonguaranteed debt are not available.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.GRE.OFFT\",\"Average grant element on new external debt commitments, official (%)\",\"The grant element of a loan is the grant equivalent expressed as a percentage of the amount committed. It is used as a measure of the overall cost of borrowing. To obtain the average, the grant elements for all public and publicly guaranteed loans have been weighted by the amounts of the loans. The grant equivalent of a loan is its commitment (present) value, less the discounted present value of its contractual debt service; conventionally, future service payments are discounted at 10 percent. Commitments cover the total amount of loans for which contracts were signed in the year specified. Debt from official creditors includes loans from international organizations (multilateral loans) and loans from governments (bilateral loans). Loans from international organization include loans and credits from the World Bank, regional development banks, and other multilateral and intergovernmental agencies. Excluded are loans from funds administered by an international organization on behalf of a single donor government; these are classified as loans from governments. Government loans include loans from governments and their agencies (including central banks), loans from autonomous bodies, and direct loans from official export credit agencies.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.GRE.PRVT\",\"Average grant element on new external debt commitments, private (%)\",\"The grant element of a loan is the grant equivalent expressed as a percentage of the amount committed. It is used as a measure of the overall cost of borrowing. To obtain the average, the grant elements for all public and publicly guaranteed loans have been weighted by the amounts of the loans. The grant equivalent of a loan is its commitment (present) value, less the discounted present value of its contractual debt service; conventionally, future service payments are discounted at 10 percent. Commitments cover the total amount of loans for which contracts were signed in the year specified. Debt from private creditors include bonds that are either publicly issued or privately placed; commercial bank loans from private banks and other private financial institutions; and other private credits from manufacturers, exporters, and other suppliers of goods, and bank credits covered by a guarantee of an export credit agency.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.HPC.COMR.PV\",\"Debt relief committed under HIPC initiative, cumulative US$ in end-2013 NPV terms\",\"Debt relief is committed as of the decision point (assuming full participation of creditors) under the enhanced HIPC Initiative. It is calculated as the amount needed to bring the net present value (NPV) of the country's debt level to the thresholds established by the HIPC Initiative (150 percent of exports or in certain cases 250 percent of fiscal revenues). Topping-up assistance and assistance provided under the original HIPC Initiative were committed in net present value terms as of the decision point and are converted to end-20109 terms.\",\"Millennium Development Goals\",\"World Bank, Economic Policy and Debt Department.\"\n\"DT.HPC.MDRI.PV\",\"Debt relief delivered in full under MDRI initiative, cumulative US$ in end-2013 NPV terms\",\"Debt relief delivered in full under MDRI initiative is the net present value of debt relief from International Development Association, International Monetary Fund, African Development Fund, and Inter-American Development Bank and delivered to countries having reached the HIPC completion point converted to end-2010 terms.\",\"Millennium Development Goals\",\"World Bank, Economic Policy and Debt Department.\"\n\"DT.HPC.STTS\",\"Status under enhanced HIPC initiative\",\"Indicator shows the status of heavily indebted poor countries country under the enhanced HIPC initiative. Heavily indebted poor countries reach HIPC decision point if they have a track record of macroeconomic stability, have prepared an Interim Poverty Reduction Strategy through a participatory process, and have cleared or reached an agreement on a process to clear, the outstanding arrears to multilateral creditors. The amount of debt relief necessary to bring countries’ debt indicators to HIPC thresholds is calculated, and countries begin receiving debt relief. Heavily indebted poor countries reach HIPC completion point if they maintain macroeconomic stability under a Poverty Reduction and Growth Facility (PRGF) supported program, carry out key structural and social reforms agreed on at the decision point, and implement satisfactorily Poverty Reduction Strategy for one year. Debt relief is then provided irrevocably by the country’s creditors.\",\"Millennium Development Goals\",\"World Bank, Economic Policy and Debt Department.\"\n\"DT.INA.DECT.CD\",\"Adjustments to scheduled interest (current US$)\",\"Interest due is actual amounts of interest due in currency, goods, or services in the year specified.  Interest payments are actual amounts of interest paid in currency, goods, or services in the year specified. This item includes interest paid on long-term debt, IMF charges, and interest paid on short-term debt. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents and repayable in currency, goods, or services. Short-term external debt is defined as debt that has an original maturity of one year or less. Available data permit no distinction between public and private nonguaranteed short-term debt.  Data are in current U.S. dollars.  \",\"Africa Development Indicators\",\"World Bank, Global Development Finance.\"\n\"DT.IND.DEXF.CD\",\"Interest due, total long-term and short term, including IMF per BOP (current US$)\",\"Interest due is actual amounts of interest due in currency, goods, or services in the year specified.  \",\"Africa Development Indicators\",\"World Bank, Global Development Finance.\"\n\"DT.INP.DECT.00.03.MO.SA.US\",\"038_T2_Interest payments on SDR allocations (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INP.DECT.03.YR.SA.US\",\"104_T2_Interest payments on SDR allocations (3yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INP.DECT.04.06.MO.SA.US\",\"049_T2_Interest payments on SDR allocations (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INP.DECT.04.YR.SA.US\",\"115_T2_Interest payments on SDR allocations (4yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INP.DECT.05.10.YR.SA.US\",\"137_T2_Interest payments on SDR allocations (More than 5 to 10 yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INP.DECT.05.YR.SA.US\",\"126_T2_Interest payments on SDR allocations (5yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INP.DECT.07.09.MO.SA.US\",\"060_T2_Interest payments on SDR allocations (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INP.DECT.10.12.MO.SA.US\",\"071_T2_Interest payments on SDR allocations (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INP.DECT.10.15.YR.SA.US\",\"148_T2_Interest payments on SDR allocations (More than 10 to 15 yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INP.DECT.13.18.MO.SA.US\",\"082_T2_Interest payments on SDR allocations (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INP.DECT.19.24.MO.SA.US\",\"093_T2_Interest payments on SDR allocations (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INP.DECT.CD.SA.03.US\",\"0118_T3_Interest payments on SDR allocations (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INP.DECT.CD.SA.0912.US\",\"0178_T3_Interest payments on SDR allocations (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INP.DECT.CD.SA.1218.US\",\"0198_T3_Interest payments on SDR allocations (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INP.DECT.CD.SA.1824.US\",\"0218_T3_Interest payments on SDR allocations (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INP.DECT.CD.SA.36.US\",\"0138_T3_Interest payments on SDR allocations (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INP.DECT.CD.SA.69.US\",\"0158_T3_Interest payments on SDR allocations (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INP.DECT.CD.SA.AR.03.US\",\"1290_T3.2_Interest payments on SDR allocations (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INP.DECT.CD.SA.AR.0912.US\",\"1545_T3.2_Interest payments on SDR allocations (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INP.DECT.CD.SA.AR.1218.US\",\"1630_T3.2_Interest payments on SDR allocations (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INP.DECT.CD.SA.AR.1824.US\",\"1715_T3.2_Interest payments on SDR allocations (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INP.DECT.CD.SA.AR.36.US\",\"1375_T3.2_Interest payments on SDR allocations (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INP.DECT.CD.SA.AR.69.US\",\"1460_T3.2_Interest payments on SDR allocations (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INP.DECT.CD.SA.AR.IQ.US\",\"1205_T3.2_Interest payments on SDR allocations (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INP.DECT.CD.SA.IQ.US\",\"0098_T3_Interest payments on SDR allocations (immediate) 3/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INP.DECT.IQ.SA.00.US\",\"027_T2_Interest payments on SDR allocations (immediately) 3/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INR.DECT.00.03.MO.SA.US\",\"037_T2_Interest receipts on SDR holdings (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INR.DECT.03.YR.SA.US\",\"103_T2_Interest receipts on SDR holdings (3yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INR.DECT.04.06.MO.SA.US\",\"048_T2_Interest receipts on SDR holdings (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INR.DECT.04.YR.SA.US\",\"114_T2_Interest receipts on SDR holdings (4yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INR.DECT.05.10.YR.SA.US\",\"136_T2_Interest receipts on SDR holdings (More than 5 to 10 yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INR.DECT.05.YR.SA.US\",\"125_T2_Interest receipts on SDR holdings (5yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INR.DECT.07.09.MO.SA.US\",\"059_T2_Interest receipts on SDR holdings (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INR.DECT.10.12.MO.SA.US\",\"070_T2_Interest receipts on SDR holdings (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INR.DECT.10.15.YR.SA.US\",\"147_T2_Interest receipts on SDR holdings (More than 10 to 15 yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INR.DECT.13.18.MO.SA.US\",\"081_T2_Interest receipts on SDR holdings (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INR.DECT.19.24.MO.SA.US\",\"092_T2_Interest receipts on SDR holdings (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INR.DECT.CD.SA.03.US\",\"0117_T3_Interest receipts on SDR holdings (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INR.DECT.CD.SA.0912.US\",\"0177_T3_Interest receipts on SDR holdings (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INR.DECT.CD.SA.1218.US\",\"0197_T3_Interest receipts on SDR holdings (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INR.DECT.CD.SA.1824.US\",\"0217_T3_Interest receipts on SDR holdings (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INR.DECT.CD.SA.36.US\",\"0137_T3_Interest receipts on SDR holdings (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INR.DECT.CD.SA.69.US\",\"0157_T3_Interest receipts on SDR holdings (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INR.DECT.CD.SA.AR.03.US\",\"1289_T3.2_Interest receipts on SDR holdings (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INR.DECT.CD.SA.AR.0912.US\",\"1544_T3.2_Interest receipts on SDR holdings (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INR.DECT.CD.SA.AR.1218.US\",\"1629_T3.2_Interest receipts on SDR holdings (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INR.DECT.CD.SA.AR.1824.US\",\"1714_T3.2_Interest receipts on SDR holdings (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INR.DECT.CD.SA.AR.36.US\",\"1374_T3.2_Interest receipts on SDR holdings (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INR.DECT.CD.SA.AR.69.US\",\"1459_T3.2_Interest receipts on SDR holdings (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INR.DECT.CD.SA.AR.IQ.US\",\"1204_T3.2_Interest receipts on SDR holdings (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INR.DECT.CD.SA.IQ.US\",\"0097_T3_Interest receipts on SDR holdings (immediate) 3/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INR.DECT.IQ.SA.00.US\",\"026_T2_Interest receipts on SDR holdings (immediately) 3/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INR.DPPG\",\"Average interest on new external debt commitments (%)\",\"Interest represents the average interest rate on all new public and publicly guaranteed loans contracted during the year. To obtain the average, the interest rates for all public and publicly guaranteed loans have been weighted by the amounts of the loans. Public debt is an external obligation of a public debtor, including the national government, a political subdivision (or an agency of either), and autonomous public bodies. Publicly guaranteed debt is an external obligation of a private debtor that is guaranteed for repayment by a public entity.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.INR.OFFT\",\"Average interest on new external debt commitments, official (%)\",\"Interest represents the average interest rate on all new public and publicly guaranteed loans contracted during the year. To obtain the average, the interest rates for all public and publicly guaranteed loans have been weighted by the amounts of the loans. Debt from official creditors includes loans from international organizations (multilateral loans) and loans from governments (bilateral loans). Loans from international organization include loans and credits from the World Bank, regional development banks, and other multilateral and intergovernmental agencies. Excluded are loans from funds administered by an international organization on behalf of a single donor government; these are classified as loans from governments. Government loans include loans from governments and their agencies (including central banks), loans from autonomous bodies, and direct loans from official export credit agencies.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.INR.PRVT\",\"Average interest on new external debt commitments, private (%)\",\"Interest represents the average interest rate on all new public and publicly guaranteed loans contracted during the year. To obtain the average, the interest rates for all public and publicly guaranteed loans have been weighted by the amounts of the loans. Debt from private creditors include bonds that are either publicly issued or privately placed; commercial bank loans from private banks and other private financial institutions; and other private credits from manufacturers, exporters, and other suppliers of goods, and bank credits covered by a guarantee of an export credit agency.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.INT.BLAT.CD\",\"PPG, bilateral (INT, current US$)\",\"Bilateral debt includes loans from governments and their agencies (including central banks), loans from autonomous bodies, and direct loans from official export credit agencies. Interest payments are actual amounts of interest paid by the borrower in currency, goods, or services in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.INT.BLTC.CD\",\"PPG, bilateral concessional (INT, current US$)\",\"Bilateral debt includes loans from governments and their agencies (including central banks), loans from autonomous bodies, and direct loans from official export credit agencies. Concessional debt is defined as loans with an original grant element of 25 percent or more. The grant element of a loan is the grant equivalent expressed as a percentage of the amount committed. It is used as a measure of the overall cost of borrowing. The grant equivalent of a loan is its commitment (present) value, less the discounted present value of its contractual debt service; conventionally, future service payments are discounted at 10 percent. Interest payments are actual amounts of interest paid by the borrower in currency, goods, or services in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.INT.DEAE.CD.IL.03.US\",\"1282_T3.2_.... Interest (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DEAE.CD.IL.0912.US\",\"1537_T3.2_.... Interest (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DEAE.CD.IL.1218.US\",\"1622_T3.2_.... Interest (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DEAE.CD.IL.1824.US\",\"1707_T3.2_.... Interest (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DEAE.CD.IL.24P.US\",\"1792_T3.2_.... Interest (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DEAE.CD.IL.36.US\",\"1367_T3.2_.... Interest (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DEAE.CD.IL.69.US\",\"1452_T3.2_.... Interest (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DEAE.CD.IL.IQ.US\",\"1197_T3.2_.... Interest (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD\",\"Interest payments on external debt, total (INT, current US$)\",\"Interest payments are actual amounts of interest paid by the borrower in currency, goods, or services in the year specified. This item includes interest paid on long-term debt, IMF charges, and interest paid on short-term debt. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents by residents of an economy and repayable in currency, goods, or services. Short-term external debt is defined as debt that has an original maturity of one year or less. Available data permit no distinction between public and private nonguaranteed short-term debt. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.INT.DECT.CD.00.03.MO.US\",\"036_T2_.. Interest (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.DECT.CD.03.US\",\"0116_T3_.. Interest (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.03.YR.US\",\"102_T2_.. Interest (3yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.DECT.CD.04.06.MO.US\",\"047_T2_.. Interest (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.DECT.CD.04.YR.US\",\"113_T2_.. Interest (4yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.DECT.CD.05.10.YR.US\",\"135_T2_.. Interest (More than 5 to 10 yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.DECT.CD.05.YR.US\",\"124_T2_.. Interest (5yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.DECT.CD.07.09.MO.US\",\"058_T2_.. Interest (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.DECT.CD.0912.US\",\"0176_T3_.. Interest (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.10.12.MO.US\",\"069_T2_.. Interest (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.DECT.CD.10.15.YR.US\",\"146_T2_.. Interest (More than 10 to 15 yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.DECT.CD.1218.US\",\"0196_T3_.. Interest (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.13.18.MO.US\",\"080_T2_.. Interest (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.DECT.CD.15.UP.YR.US\",\"157_T2_.. Interest (More than 15 yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.DECT.CD.1824.US\",\"0216_T3_.. Interest (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.19.24.MO.US\",\"091_T2_.. Interest (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.DECT.CD.24P.US\",\"0236_T3_.. Interest (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.36.US\",\"0136_T3_.. Interest (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.69.US\",\"0156_T3_.. Interest (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.AR.03.US\",\"1288_T3.2_.... Interest (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.AR.0912.US\",\"1543_T3.2_.... Interest (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.AR.1218.US\",\"1628_T3.2_.... Interest (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.AR.1824.US\",\"1713_T3.2_.... Interest (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.AR.24P.US\",\"1798_T3.2_.... Interest (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.AR.36.US\",\"1373_T3.2_.... Interest (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.AR.69.US\",\"1458_T3.2_.... Interest (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.AR.IQ.US\",\"1203_T3.2_.... Interest (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.CB.03.US\",\"0107_T3_.. Interest  (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.CB.0912.US\",\"0167_T3_.. Interest  (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.CB.1218.US\",\"0187_T3_.. Interest  (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.CB.1824.US\",\"0207_T3_.. Interest  (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.CB.24P.US\",\"0227_T3_.. Interest  (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.CB.36.US\",\"0127_T3_.. Interest  (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.CB.69.US\",\"0147_T3_.. Interest  (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.CB.IQ.US\",\"0087_T3_.. Interest  (immediate) 3/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.CB.RM.US\",\"0246_T4_.. Interest (One year or less)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.GG.03.US\",\"0101_T3_.. Interest (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.GG.0912.US\",\"0161_T3_.. Interest (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.GG.1218.US\",\"0181_T3_.. Interest (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.GG.1824.US\",\"0201_T3_.. Interest (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.GG.24P.US\",\"0221_T3_.. Interest (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.GG.36.US\",\"0121_T3_.. Interest (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.GG.69.US\",\"0141_T3_.. Interest (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.GG.IQ.US\",\"0081_T3_.. Interest (immediate) 3/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.GG.RM.US\",\"0240_T4_.. Interest (One year or less)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.IL.03.US\",\"0113_T3_.. Interest (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.IL.0912.US\",\"0173_T3_.. Interest (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.IL.1218.US\",\"0193_T3_.. Interest (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.IL.1824.US\",\"0213_T3_.. Interest (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.IL.24P.US\",\"0233_T3_.. Interest (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.IL.36.US\",\"0133_T3_.. Interest (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.IL.69.US\",\"0153_T3_.. Interest (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.IL.IQ.US\",\"0093_T3_.. Interest (immediate) 3/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.IL.RM.US\",\"0252_T4_.. Interest (One year or less)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.IQ.00.US\",\"025_T2_.. Interest (immediately) 3/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.DECT.CD.MA.03.US\",\"0104_T3_.. Interest  (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.MA.0912.US\",\"0164_T3_.. Interest  (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.MA.1218.US\",\"0184_T3_.. Interest  (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.MA.1824.US\",\"0204_T3_.. Interest  (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.MA.24P.US\",\"0224_T3_.. Interest  (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.MA.36.US\",\"0124_T3_.. Interest  (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.MA.69.US\",\"0144_T3_.. Interest  (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.MA.IQ.US\",\"0084_T3_.. Interest  (immediate) 3\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.MA.RM.US\",\"0243_T4_.. Interest (One year or less)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.OS.03.US\",\"0110_T3_.. Interest  (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.OS.0912.US\",\"0170_T3_.. Interest  (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.OS.1218.US\",\"0190_T3_.. Interest  (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.OS.1824.US\",\"0210_T3_.. Interest  (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.OS.24P.US\",\"0230_T3_.. Interest  (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.OS.36.US\",\"0130_T3_.. Interest  (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.OS.69.US\",\"0150_T3_.. Interest  (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.OS.IQ.US\",\"0090_T3_.. Interest  (immediate) 3/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.OS.RM.US\",\"0249_T4_.. Interest (One year or less)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.CD.RM.US\",\"0255_T4_.. Interest (One year or less)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DECT.EX.ZS\",\"Interest payments on external debt (% of exports of goods, services and primary income)\",\"Total interest payments to exports of goods and services.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.INT.DECT.GN.ZS\",\"Interest payments on external debt (% of GNI)\",\"Total interest payments to gross national income.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.INT.DEFE.CD.IL.03.US\",\"1285_T3.2_.... Interest (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DEFE.CD.IL.0912.US\",\"1540_T3.2_.... Interest (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DEFE.CD.IL.1218.US\",\"1625_T3.2_.... Interest (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DEFE.CD.IL.1824.US\",\"1710_T3.2_.... Interest (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DEFE.CD.IL.24P.US\",\"1795_T3.2_.... Interest (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DEFE.CD.IL.36.US\",\"1370_T3.2_.... Interest (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DEFE.CD.IL.69.US\",\"1455_T3.2_.... Interest (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DEFE.CD.IL.IQ.US\",\"1200_T3.2_.... Interest (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DILD.CD.IL.03.US\",\"1279_T3.2_.... Interest (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DILD.CD.IL.0912.US\",\"1534_T3.2_.... Interest (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DILD.CD.IL.1218.US\",\"1619_T3.2_.... Interest (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DILD.CD.IL.1824.US\",\"1704_T3.2_.... Interest (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DILD.CD.IL.24P.US\",\"1789_T3.2_.... Interest (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DILD.CD.IL.36.US\",\"1364_T3.2_.... Interest (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DILD.CD.IL.69.US\",\"1449_T3.2_.... Interest (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DILD.CD.IL.IQ.US\",\"1194_T3.2_.... Interest (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DIMF.CD\",\"IMF charges (INT, current US$)\",\"IMF charges cover interest payments with respect to all uses of IMF resources, excluding those resulting from drawings in the reserve tranche. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.INT.DLBN.CD.CB.AR.03.US\",\"1250_T3.2_.... Interest (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLBN.CD.CB.AR.0912.US\",\"1505_T3.2_.... Interest (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLBN.CD.CB.AR.1218.US\",\"1590_T3.2_.... Interest (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLBN.CD.CB.AR.1824.US\",\"1675_T3.2_.... Interest (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLBN.CD.CB.AR.24P.US\",\"1760_T3.2_.... Interest (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLBN.CD.CB.AR.36.US\",\"1335_T3.2_.... Interest (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLBN.CD.CB.AR.69.US\",\"1420_T3.2_.... Interest (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLBN.CD.CB.AR.IQ.US\",\"1165_T3.2_.... Interest (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLBN.CD.GG.AR.03.US\",\"1215_T3.2_.... Interest (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLBN.CD.GG.AR.0912.US\",\"1470_T3.2_.... Interest (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLBN.CD.GG.AR.1218.US\",\"1555_T3.2_.... Interest (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLBN.CD.GG.AR.1824.US\",\"1640_T3.2_.... Interest (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLBN.CD.GG.AR.24P.US\",\"1725_T3.2_.... Interest (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLBN.CD.GG.AR.36.US\",\"1300_T3.2_.... Interest (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLBN.CD.GG.AR.69.US\",\"1385_T3.2_.... Interest (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLBN.CD.GG.AR.IQ.US\",\"1130_T3.2_.... Interest (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLBN.CD.MA.AR.03.US\",\"1234_T3.2_.... Interest (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLBN.CD.MA.AR.0912.US\",\"1489_T3.2_.... Interest (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLBN.CD.MA.AR.1218.US\",\"1574_T3.2_.... Interest (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLBN.CD.MA.AR.1824.US\",\"1659_T3.2_.... Interest (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLBN.CD.MA.AR.24P.US\",\"1744_T3.2_.... Interest (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLBN.CD.MA.AR.36.US\",\"1319_T3.2_.... Interest (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLBN.CD.MA.AR.69.US\",\"1404_T3.2_.... Interest (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLBN.CD.MA.AR.IQ.US\",\"1149_T3.2_.... Interest (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLBN.CD.OT.AR.03.US\",\"1266_T3.2_.... Interest (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLBN.CD.OT.AR.0912.US\",\"1521_T3.2_.... Interest (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLBN.CD.OT.AR.1218.US\",\"1606_T3.2_.... Interest (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLBN.CD.OT.AR.1824.US\",\"1691_T3.2_.... Interest (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLBN.CD.OT.AR.24P.US\",\"1776_T3.2_.... Interest (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLBN.CD.OT.AR.36.US\",\"1351_T3.2_.... Interest (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLBN.CD.OT.AR.69.US\",\"1436_T3.2_.... Interest (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLBN.CD.OT.AR.IQ.US\",\"1181_T3.2_.... Interest (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLCD.CD.CB.AR.03.US\",\"1247_T3.2_.... Interest (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLCD.CD.CB.AR.0912.US\",\"1502_T3.2_.... Interest (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLCD.CD.CB.AR.1218.US\",\"1587_T3.2_.... Interest (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLCD.CD.CB.AR.1824.US\",\"1672_T3.2_.... Interest (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLCD.CD.CB.AR.24P.US\",\"1757_T3.2_.... Interest (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLCD.CD.CB.AR.36.US\",\"1332_T3.2_.... Interest (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLCD.CD.CB.AR.69.US\",\"1417_T3.2_.... Interest (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLCD.CD.CB.AR.IQ.US\",\"1162_T3.2_.... Interest (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLCD.CD.GG.AR.03.US\",\"1212_T3.2_.... Interest (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLCD.CD.GG.AR.0912.US\",\"1467_T3.2_.... Interest (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLCD.CD.GG.AR.1218.US\",\"1552_T3.2_.... Interest (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLCD.CD.GG.AR.1824.US\",\"1637_T3.2_.... Interest (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLCD.CD.GG.AR.24P.US\",\"1722_T3.2_.... Interest (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLCD.CD.GG.AR.36.US\",\"1297_T3.2_.... Interest (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLCD.CD.GG.AR.69.US\",\"1382_T3.2_.... Interest (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLCD.CD.GG.AR.IQ.US\",\"1127_T3.2_.... Interest (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLCD.CD.MA.AR.03.US\",\"1231_T3.2_.... Interest (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLCD.CD.MA.AR.0912.US\",\"1486_T3.2_.... Interest (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLCD.CD.MA.AR.1218.US\",\"1571_T3.2_.... Interest (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLCD.CD.MA.AR.1824.US\",\"1656_T3.2_.... Interest (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLCD.CD.MA.AR.24P.US\",\"1741_T3.2_.... Interest (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLCD.CD.MA.AR.36.US\",\"1316_T3.2_.... Interest (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLCD.CD.MA.AR.69.US\",\"1401_T3.2_.... Interest (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLCD.CD.MA.AR.IQ.US\",\"1146_T3.2_.... Interest (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLCD.CD.OT.AR.03.US\",\"1263_T3.2_.... Interest (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLCD.CD.OT.AR.0912.US\",\"1518_T3.2_.... Interest (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLCD.CD.OT.AR.1218.US\",\"1603_T3.2_.... Interest (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLCD.CD.OT.AR.1824.US\",\"1688_T3.2_.... Interest (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLCD.CD.OT.AR.24P.US\",\"1773_T3.2_.... Interest (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLCD.CD.OT.AR.36.US\",\"1348_T3.2_.... Interest (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLCD.CD.OT.AR.69.US\",\"1433_T3.2_.... Interest (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLCD.CD.OT.AR.IQ.US\",\"1178_T3.2_.... Interest (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTF.CD\",\"Interest payments, Long-term debt including IMF credit (current US$)\",\"Interest payments on long-term debt are actual amounts of interest paid in currency, goods, or services in the year specified. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents and repayable in currency, goods, or services.  IMF charges cover interest payments with respect to all uses of IMF resources, excluding those resulting from drawings in the reserve tranche.  \",\"Africa Development Indicators\",\"World Bank, Global Development Finance.\"\n\"DT.INT.DLTL.CD.CB.AR.03.US\",\"1253_T3.2_.... Interest (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTL.CD.CB.AR.0912.US\",\"1508_T3.2_.... Interest (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTL.CD.CB.AR.1218.US\",\"1593_T3.2_.... Interest (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTL.CD.CB.AR.1824.US\",\"1678_T3.2_.... Interest (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTL.CD.CB.AR.24P.US\",\"1763_T3.2_.... Interest (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTL.CD.CB.AR.36.US\",\"1338_T3.2_.... Interest (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTL.CD.CB.AR.69.US\",\"1423_T3.2_.... Interest (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTL.CD.CB.AR.IQ.US\",\"1168_T3.2_.... Interest (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTL.CD.MA.AR.03.US\",\"1237_T3.2_.... Interest (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTL.CD.MA.AR.0912.US\",\"1492_T3.2_.... Interest (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTL.CD.MA.AR.1218.US\",\"1577_T3.2_.... Interest (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTL.CD.MA.AR.1824.US\",\"1662_T3.2_.... Interest (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTL.CD.MA.AR.24P.US\",\"1747_T3.2_.... Interest (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTL.CD.MA.AR.36.US\",\"1322_T3.2_.... Interest (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTL.CD.MA.AR.69.US\",\"1407_T3.2_.... Interest (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTL.CD.MA.AR.IQ.US\",\"1152_T3.2_.... Interest (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTL.CD.OT.AR.03.US\",\"1269_T3.2_.... Interest (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTL.CD.OT.AR.0912.US\",\"1524_T3.2_.... Interest (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTL.CD.OT.AR.1218.US\",\"1609_T3.2_.... Interest (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTL.CD.OT.AR.1824.US\",\"1694_T3.2_.... Interest (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTL.CD.OT.AR.24P.US\",\"1779_T3.2_.... Interest (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTL.CD.OT.AR.36.US\",\"1354_T3.2_.... Interest (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTL.CD.OT.AR.69.US\",\"1439_T3.2_.... Interest (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTL.CD.OT.AR.IQ.US\",\"1184_T3.2_.... Interest (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTO.CD.CB.AR.03.US\",\"1259_T3.2_.... Interest (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTO.CD.CB.AR.0912.US\",\"1514_T3.2_.... Interest (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTO.CD.CB.AR.1218.US\",\"1599_T3.2_.... Interest (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTO.CD.CB.AR.1824.US\",\"1684_T3.2_.... Interest (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTO.CD.CB.AR.24P.US\",\"1769_T3.2_.... Interest (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTO.CD.CB.AR.36.US\",\"1344_T3.2_.... Interest (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTO.CD.CB.AR.69.US\",\"1429_T3.2_.... Interest (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTO.CD.CB.AR.IQ.US\",\"1174_T3.2_.... Interest (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTO.CD.GG.AR.03.US\",\"1224_T3.2_.... Interest (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTO.CD.GG.AR.0912.US\",\"1479_T3.2_.... Interest (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTO.CD.GG.AR.1218.US\",\"1564_T3.2_.... Interest (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTO.CD.GG.AR.1824.US\",\"1649_T3.2_.... Interest (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTO.CD.GG.AR.24P.US\",\"1734_T3.2_.... Interest (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTO.CD.GG.AR.36.US\",\"1309_T3.2_.... Interest (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTO.CD.GG.AR.69.US\",\"1394_T3.2_.... Interest (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTO.CD.GG.AR.IQ.US\",\"1139_T3.2_.... Interest (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTO.CD.MA.AR.03.US\",\"1243_T3.2_.... Interest (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTO.CD.MA.AR.0912.US\",\"1498_T3.2_.... Interest (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTO.CD.MA.AR.1218.US\",\"1583_T3.2_.... Interest (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTO.CD.MA.AR.1824.US\",\"1668_T3.2_.... Interest (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTO.CD.MA.AR.24P.US\",\"1753_T3.2_.... Interest (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTO.CD.MA.AR.36.US\",\"1328_T3.2_.... Interest (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTO.CD.MA.AR.69.US\",\"1413_T3.2_.... Interest (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTO.CD.MA.AR.IQ.US\",\"1158_T3.2_.... Interest (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTO.CD.OT.AR.03.US\",\"1275_T3.2_.... Interest (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTO.CD.OT.AR.0912.US\",\"1530_T3.2_.... Interest (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTO.CD.OT.AR.1218.US\",\"1615_T3.2_.... Interest (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTO.CD.OT.AR.1824.US\",\"1700_T3.2_.... Interest (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTO.CD.OT.AR.24P.US\",\"1785_T3.2_.... Interest (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTO.CD.OT.AR.36.US\",\"1360_T3.2_.... Interest (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTO.CD.OT.AR.69.US\",\"1445_T3.2_.... Interest (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTO.CD.OT.AR.IQ.US\",\"1190_T3.2_.... Interest (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTS.CD.GG.03.US\",\"1209_T3.2_.... Interest (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTS.CD.GG.0912.US\",\"1464_T3.2_.... Interest (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTS.CD.GG.1218.US\",\"1549_T3.2_.... Interest (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTS.CD.GG.1824.US\",\"1634_T3.2_.... Interest (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTS.CD.GG.24P.US\",\"1719_T3.2_.... Interest (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTS.CD.GG.36.US\",\"1294_T3.2_.... Interest (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTS.CD.GG.69.US\",\"1379_T3.2_.... Interest (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTS.CD.GG.IQ.US\",\"1124_T3.2_.... Interest (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTS.CD.MA.AR.03.US\",\"1228_T3.2_.... Interest (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTS.CD.MA.AR.0912.US\",\"1483_T3.2_.... Interest (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTS.CD.MA.AR.1218.US\",\"1568_T3.2_.... Interest (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTS.CD.MA.AR.1824.US\",\"1653_T3.2_.... Interest (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTS.CD.MA.AR.24P.US\",\"1738_T3.2_.... Interest (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTS.CD.MA.AR.36.US\",\"1313_T3.2_.... Interest (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTS.CD.MA.AR.69.US\",\"1398_T3.2_.... Interest (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTS.CD.MA.AR.IQ.US\",\"1143_T3.2_.... Interest (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTT.CD.CB.AR.03.US\",\"1256_T3.2_.... Interest (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTT.CD.CB.AR.0912.US\",\"1511_T3.2_.... Interest (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTT.CD.CB.AR.1218.US\",\"1596_T3.2_.... Interest (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTT.CD.CB.AR.1824.US\",\"1681_T3.2_.... Interest (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTT.CD.CB.AR.24P.US\",\"1766_T3.2_.... Interest (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTT.CD.CB.AR.36.US\",\"1341_T3.2_.... Interest (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTT.CD.CB.AR.69.US\",\"1426_T3.2_.... Interest (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTT.CD.CB.AR.IQ.US\",\"1171_T3.2_.... Interest (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTT.CD.GG.AR.03.US\",\"1221_T3.2_.... Interest (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTT.CD.GG.AR.0912.US\",\"1476_T3.2_.... Interest (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTT.CD.GG.AR.1218.US\",\"1561_T3.2_.... Interest (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTT.CD.GG.AR.1824.US\",\"1646_T3.2_.... Interest (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTT.CD.GG.AR.24P.US\",\"1731_T3.2_.... Interest (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTT.CD.GG.AR.36.US\",\"1306_T3.2_.... Interest (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTT.CD.GG.AR.69.US\",\"1391_T3.2_.... Interest (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTT.CD.GG.AR.IQ.US\",\"1136_T3.2_.... Interest (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTT.CD.MA.AR.03.US\",\"1240_T3.2_.... Interest (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTT.CD.MA.AR.0912.US\",\"1495_T3.2_.... Interest (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTT.CD.MA.AR.1218.US\",\"1580_T3.2_.... Interest (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTT.CD.MA.AR.1824.US\",\"1665_T3.2_.... Interest (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTT.CD.MA.AR.24P.US\",\"1750_T3.2_.... Interest (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTT.CD.MA.AR.36.US\",\"1325_T3.2_.... Interest (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTT.CD.MA.AR.69.US\",\"1410_T3.2_.... Interest (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLTT.CD.MA.AR.IQ.US\",\"1155_T3.2_.... Interest (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INT.DLXF.CD\",\"Interest payments on external debt, long-term (INT, current US$)\",\"Interest payments on long-term debt are actual amounts of interest paid by the borrower in currency, goods, or services in the year specified. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents by residents of an economy and repayable in currency, goods, or services. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.INT.DPNG.CD\",\"Interest payments on external debt, private nonguaranteed (PNG) (INT, current US$)\",\"Private nonguaranteed external debt is an external obligation of a private debtor that is not guaranteed for repayment by a public entity. Interest payments are actual amounts of interest paid by the borrower in currency, goods, or services in the year specified. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents and repayable in currency, goods, or services. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.INT.DPPG.CD\",\"Interest payments on external debt, public and publicly guaranteed (PPG) (INT, current US$)\",\"Public and publicly guaranteed long-term debt are aggregated. Public debt is an external obligation of a public debtor, including the national government, a political subdivision (or an agency of either), and autonomous public bodies. Publicly guaranteed debt is an external obligation of a private debtor that is guaranteed for repayment by a public entity. Interest payments are actual amounts of interest paid by the borrower in currency, goods, or services in the year specified. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents by residents of an economy and repayable in currency, goods, or services. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.INT.DSTC.CD\",\"Interest payments on external debt, short-term (INT, current US$)\",\"Interest payments on short-term debt are actual amounts of interest paid by the borrower in currency, goods, or services in the year specified. This item includes interest paid on long-term debt, IMF charges, and interest paid on short-term debt. Short-term external debt is defined as debt that has an original maturity of one year or less. Available data permit no distinction between public and private nonguaranteed short-term debt. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.INT.MIBR.CD\",\"PPG, IBRD (INT, current US$)\",\"Public and publicly guaranteed debt outstanding from the International Bank for Reconstruction and Development (IBRD) is nonconcessional. Nonconcessional debt excludes loans with an original grant element of 25 percent or more. Interest payments are actual amounts of interest paid by the borrower in currency, goods, or services in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.INT.MIDA.CD\",\"PPG, IDA (INT, current US$)\",\"Public and publicly guaranteed debt outstanding from the International Development Association (IDA) is concessional. Concessional debt is defined as loans with an original grant element of 25 percent or more. The grant element of a loan is the grant equivalent expressed as a percentage of the amount committed. It is used as a measure of the overall cost of borrowing. The grant equivalent of a loan is its commitment (present) value, less the discounted present value of its contractual debt service; conventionally, future service payments are discounted at 10 percent. Interest payments are actual amounts of interest paid by the borrower in currency, goods, or services in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.INT.MLAT.CD\",\"PPG, multilateral (INT, current US$)\",\"Public and publicly guaranteed multilateral loans include loans and credits from the World Bank, regional development banks, and other multilateral and intergovernmental agencies. Excluded are loans from funds administered by an international organization on behalf of a single donor government; these are classified as loans from governments. Interest payments are actual amounts of interest paid by the borrower in currency, goods, or services in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.INT.MLTC.CD\",\"PPG, multilateral concessional (INT, current US$)\",\"Public and publicly guaranteed multilateral loans include loans and credits from the World Bank, regional development banks, and other multilateral and intergovernmental agencies. Excluded are loans from funds administered by an international organization on behalf of a single donor government; these are classified as loans from governments. Concessional debt is defined as loans with an original grant element of 25 percent or more. The grant element of a loan is the grant equivalent expressed as a percentage of the amount committed. It is used as a measure of the overall cost of borrowing. The grant equivalent of a loan is its commitment (present) value, less the discounted present value of its contractual debt service; conventionally, future service payments are discounted at 10 percent. Interest payments are actual amounts of interest paid by the borrower in currency, goods, or services in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.INT.OFFT.CD\",\"PPG, official creditors (INT, current US$)\",\"Public and publicly guaranteed debt from official creditors includes loans from international organizations (multilateral loans) and loans from governments (bilateral loans). Loans from international organization include loans and credits from the World Bank, regional development banks, and other multilateral and intergovernmental agencies. Excluded are loans from funds administered by an international organization on behalf of a single donor government; these are classified as loans from governments. Government loans include loans from governments and their agencies (including central banks), loans from autonomous bodies, and direct loans from official export credit agencies. Interest payments are actual amounts of interest paid by the borrower in currency, goods, or services in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.INT.PBND.CD\",\"PPG, bonds (INT, current US$)\",\"Public and publicly guaranteed debt from bonds that are either publicly issued or privately placed. Interest payments are actual amounts of interest paid by the borrower in currency, goods, or services in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.INT.PCBK.CD\",\"PPG, commercial banks (INT, current US$)\",\"Public and publicly guaranteed commercial bank loans from private banks and other private financial institutions. Interest payments are actual amounts of interest paid by the borrower in currency, goods, or services in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.INT.PGNG.CD\",\"Interest payments, PPG and PNG Private creditors (current US$)\",\"Public and publicly guaranteed debt from private creditors include bonds that are either publicly issued or privately placed; commercial bank loans from private banks and other private financial institutions; and other private credits from manufacturers, exporters, and other suppliers of goods, and bank credits covered by a guarantee of an export credit agency. Interest payments (LINT) are actual amounts of interest paid in currency, goods, or services in the year specified.  Private nonguaranteed external debt is an external obligation of a private debtor that is not guaranteed for repayment by a public entity. Interest payments (LINT) are actual amounts of interest paid in currency, goods, or services in the year specified. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents and repayable in currency, goods, or services.\",\"Africa Development Indicators\",\"World Bank, Global Development Finance.\"\n\"DT.INT.PNGB.CD\",\"PNG, bonds (INT, current US$)\",\"Nonguaranteed long-term debt from bonds that are privately placed. Interest payments are actual amounts of interest paid by the borrower in currency, goods, or services in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.INT.PNGC.CD\",\"PNG, commercial banks and other creditors (INT, current US$)\",\"Nonguaranteed long-term commercial bank loans from private banks and other private financial institutions. Interest payments are actual amounts of interest paid by the borrower in currency, goods, or services in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.INT.PROP.CD\",\"PPG, other private creditors (INT, current US$)\",\"Public and publicly guaranteed other private credits from manufacturers, exporters, and other suppliers of goods, and bank credits covered by a guarantee of an export credit agency. Interest payments are actual amounts of interest paid by the borrower in currency, goods, or services in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.INT.PRVS.CD.00.03.MO.US\",\"033_T2_.. Interest (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.PRVS.CD.03.YR.US\",\"099_T2_.. Interest (3yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.PRVS.CD.04.06.MO.US\",\"044_T2_.. Interest (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.PRVS.CD.04.YR.US\",\"110_T2_.. Interest (4yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.PRVS.CD.05.10.YR.US\",\"132_T2_.. Interest (More than 5 to 10 yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.PRVS.CD.05.YR.US\",\"121_T2_.. Interest (5yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.PRVS.CD.07.09.MO.US\",\"055_T2_.. Interest (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.PRVS.CD.10.12.MO.US\",\"066_T2_.. Interest (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.PRVS.CD.10.15.YR.US\",\"143_T2_.. Interest (More than 10 to 15 yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.PRVS.CD.13.18.MO.US\",\"077_T2_.. Interest (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.PRVS.CD.15.UP.YR.US\",\"154_T2_.. Interest (More than 15 yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.PRVS.CD.19.24.MO.US\",\"088_T2_.. Interest (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.PRVS.CD.IQ.00.US\",\"022_T2_.. Interest (immediately) 3/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.PRVT.CD\",\"PPG, private creditors (INT, current US$)\",\"Public and publicly guaranteed debt from private creditors include bonds that are either publicly issued or privately placed; commercial bank loans from private banks and other private financial institutions; and other private credits from manufacturers, exporters, and other suppliers of goods, and bank credits covered by a guarantee of an export credit agency. Interest payments are actual amounts of interest paid by the borrower in currency, goods, or services in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.INT.PUBS.CD.00.03.MO.US\",\"030_T2_.. Interest (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.PUBS.CD.03.YR.US\",\"096_T2_.. Interest (3yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.PUBS.CD.04.06.MO.US\",\"041_T2_.. Interest (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.PUBS.CD.04.YR.US\",\"107_T2_.. Interest (4yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.PUBS.CD.05.10.YR.US\",\"129_T2_.. Interest (More than 5 to 10 yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.PUBS.CD.05.YR.US\",\"118_T2_.. Interest (5yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.PUBS.CD.07.09.MO.US\",\"052_T2_.. Interest (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.PUBS.CD.10.12.MO.US\",\"063_T2_.. Interest (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.PUBS.CD.10.15.YR.US\",\"140_T2_.. Interest (More than 10 to 15 yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.PUBS.CD.13.18.MO.US\",\"074_T2_.. Interest (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.PUBS.CD.15.UP.YR.US\",\"151_T2_.. Interest (More than 15 yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.PUBS.CD.19.24.MO.US\",\"085_T2_.. Interest (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INT.PUBS.CD.IQ.00.US\",\"019_T2_.. Interest (immediately) 3/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.INTS.DLTL.CD.GG.AR.03.US\",\"1218_T3.2_.... Interest (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INTS.DLTL.CD.GG.AR.0912.US\",\"1473_T3.2_.... Interest (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INTS.DLTL.CD.GG.AR.1218.US\",\"1558_T3.2_.... Interest (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INTS.DLTL.CD.GG.AR.1824.US\",\"1643_T3.2_.... Interest (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INTS.DLTL.CD.GG.AR.24P.US\",\"1728_T3.2_.... Interest (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INTS.DLTL.CD.GG.AR.36.US\",\"1303_T3.2_.... Interest (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INTS.DLTL.CD.GG.AR.69.US\",\"1388_T3.2_.... Interest (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INTS.DLTL.CD.GG.AR.IQ.US\",\"1133_T3.2_.... Interest (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INTS.DLTT.CD.OT.AR.03.US\",\"1272_T3.2_.... Interest (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INTS.DLTT.CD.OT.AR.0912.US\",\"1527_T3.2_.... Interest (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INTS.DLTT.CD.OT.AR.1218.US\",\"1612_T3.2_.... Interest (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INTS.DLTT.CD.OT.AR.1824.US\",\"1697_T3.2_.... Interest (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INTS.DLTT.CD.OT.AR.24P.US\",\"1782_T3.2_.... Interest (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INTS.DLTT.CD.OT.AR.36.US\",\"1357_T3.2_.... Interest (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INTS.DLTT.CD.OT.AR.69.US\",\"1442_T3.2_.... Interest (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.INTS.DLTT.CD.OT.AR.IQ.US\",\"1187_T3.2_.... Interest (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.IWA.DECT.CD.OT.HH.AR.US\",\"0411_T1.4_.... Interest\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.IWA.DECT.CD.OT.NB.AR.US\",\"0405_T1.4_.. Interest\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.IWA.DECT.CD.OT.NF.AR.US\",\"0408_T1.4_.... Interest\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.IXA.DECT.CD.CB.AR.US\",\"0399_T1.4_.. Interest\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.IXA.DECT.CD.GG.AR.US\",\"0393_T1.4_.. Interest\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.IXA.DECT.CD.MA.AR.US\",\"0396_T1.4_.. Interest\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.IXA.DECT.CD.OT.AR.US\",\"0402_T1.4_.. Interest\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.IXA.DIDI.CD.IL.US\",\"0417_T1.4_.. Interest\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.IXA.DIFE.CD.IL.US\",\"0423_T1.4_.... Interest\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.IXA.DIIE.CD.IL.US\",\"0420_T1.4_.... Interest\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.IXA.DPPG.CD\",\"Interest arrears, long-term DOD (US$)\",\"Interest in arrears on long-term debt is defined as interest payment due but not paid, on a cumulative basis. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents by residents of an economy and repayable in currency, goods, or services. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.IXA.DPPG.CD.CG\",\"Net change in interest arrears (current US$)\",\"Net change in interest arrears is the variation in the total amount of interest in arrears between two consecutive years. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.IXA.OFFT.CD\",\"Interest arrears, official creditors (current US$)\",\"Interest in arrears on long-term debt is defined as interest payment due but not paid, on a cumulative basis. Debt from official creditors includes loans from international organizations (multilateral loans) and loans from governments (bilateral loans). Loans from international organization include loans and credits from the World Bank, regional development banks, and other multilateral and intergovernmental agencies. Excluded are loans from funds administered by an international organization on behalf of a single donor government; these are classified as loans from governments. Government loans include loans from governments and their agencies (including central banks), loans from autonomous bodies, and direct loans from official export credit agencies. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents by residents of an economy and repayable in currency, goods, or services. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.IXA.PRVT.CD\",\"Interest arrears, private creditors (current US$)\",\"Interest in arrears on long-term debt is defined as interest payment due but not paid, on a cumulative basis. Debt from private creditors include bonds that are either publicly issued or privately placed; commercial bank loans from private banks and other private financial institutions; and other private credits from manufacturers, exporters, and other suppliers of goods, and bank credits covered by a guarantee of an export credit agency. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents by residents of an economy and repayable in currency, goods, or services. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.IXF.DPPG.CD\",\"Interest forgiven (current US$)\",\"Interest forgiven is the amount of interest due or in arrears that was written off or forgiven in any given year. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.IXR.DPPG.CD\",\"Interest rescheduled (capitalized) (current US$)\",\"Interest rescheduled is the amount of interest due or in arrears that was rescheduled in any given year. (Interest capitalized is the interest that became part of the stock of debt due to a rescheduling operation.) Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.IXR.OFFT.CD\",\"Interest rescheduled, official (current US$)\",\"Interest rescheduled is the amount of interest due or in arrears that was rescheduled in any given year. Debt from official creditors includes loans from international organizations (multilateral loans) and loans from governments (bilateral loans). Loans from international organizations include loans and credits from the World Bank, regional development banks, and other multilateral and intergovernmental agencies. Excluded are loans from funds administered by an international organization on behalf of a single donor government; these are classified as loans from governments. Government loans include loans from governments and their agencies (including central banks), loans from autonomous bodies, and direct loans from official export credit agencies. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.IXR.PRVT.CD\",\"Interest rescheduled, private (current US$)\",\"Interest rescheduled is the amount of interest due or in arrears that was rescheduled in any given year. Debt from private creditors include bonds that are either publicly issued or privately placed; commercial bank loans from private banks and other private financial institutions; and other private credits from manufacturers, exporters, and other suppliers of goods, and bank credits covered by a guarantee of an export credit agency. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.MAT.DPPG\",\"Average maturity on new external debt commitments (years)\",\"Maturity is the number of years to original maturity date, which is the sum of grace and repayment periods. Grace period for principal is the period from the date of signature of the loan or the issue of the financial instrument to the first repayment of principal. The repayment period is the period from the first to last repayment of principal. To obtain the average, the maturity for all public and publicly guaranteed loans have been weighted by the amounts of the loans. Public debt is an external obligation of a public debtor, including the national government, a political subdivision (or an agency of either), and autonomous public bodies. Publicly guaranteed debt is an external obligation of a private debtor that is guaranteed for repayment by a public entity.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.MAT.OFFT\",\"Average maturity on new external debt commitments, official (years)\",\"Maturity is the number of years to original maturity date, which is the sum of grace and repayment periods. Grace period for principal is the period from the date of signature of the loan or the issue of the financial instrument to the first repayment of principal. The repayment period is the period from the first to last repayment of principal. To obtain the average, the maturity for all public and publicly guaranteed loans have been weighted by the amounts of the loans. Debt from official creditors includes loans from international organizations (multilateral loans) and loans from governments (bilateral loans). Loans from international organization include loans and credits from the World Bank, regional development banks, and other multilateral and intergovernmental agencies. Excluded are loans from funds administered by an international organization on behalf of a single donor government; these are classified as loans from governments. Government loans include loans from governments and their agencies (including central banks), loans from autonomous bodies, and direct loans from official export credit agencies.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.MAT.PRVT\",\"Average maturity on new external debt commitments, private (years)\",\"Maturity is the number of years to original maturity date, which is the sum of grace and repayment periods. Grace period for principal is the period from the date of signature of the loan or the issue of the financial instrument to the first repayment of principal. The repayment period is the period from the first to last repayment of principal. To obtain the average, the maturity for all public and publicly guaranteed loans have been weighted by the amounts of the loans. Debt from private creditors include bonds that are either publicly issued or privately placed; commercial bank loans from private banks and other private financial institutions; and other private credits from manufacturers, exporters, and other suppliers of goods, and bank credits covered by a guarantee of an export credit agency.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NFL.BLAT.CD\",\"Net financial flows, bilateral (NFL, current US$)\",\"Bilateral debt includes loans from governments and their agencies (including central banks), loans from autonomous bodies, and direct loans from official export credit agencies. Net flows (or net lending or net disbursements) received by the borrower during the year are disbursements minus principal repayments. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NFL.BLTC.CD\",\"PPG, bilateral concessional (NFL, current US$)\",\"Bilateral debt includes loans from governments and their agencies (including central banks), loans from autonomous bodies, and direct loans from official export credit agencies. Concessional debt is defined as loans with an original grant element of 25 percent or more. The grant element of a loan is the grant equivalent expressed as a percentage of the amount committed. It is used as a measure of the overall cost of borrowing. The grant equivalent of a loan is its commitment (present) value, less the discounted present value of its contractual debt service; conventionally, future service payments are discounted at 10 percent. Net flows (or net lending or net disbursements) received by the borrower during the year are disbursements minus principal repayments. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NFL.BOND.CD\",\"Portfolio investment, bonds (PPG + PNG) (NFL, current US$)\",\"Bonds are securities issued with a fixed rate of interest for a period of more than one year. They include net flows through cross-border public and publicly guaranteed and private nonguaranteed bond issues. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NFL.DECT.CD\",\"Net flows on external debt, total (NFL, current US$)\",\"Net flows on external debt are disbursements on long-term external debt and IMF purchases minus principal repayments on long-term external debt and IMF repurchases up to 1984. Beginning in 1985 this line includes the change in stock of short-term debt (including interest arrears for long-term debt). Thus, if the change in stock is positive, a disbursement is assumed to have taken place; if negative, a repayment is assumed to have taken place. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents by residents of an economy and repayable in currency, goods, or services. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NFL.DLXF.CD\",\"Net flows on external debt, long-term (NFL, current US$)\",\"Net flows (or net lending or net disbursements) received by the borrower during the year are disbursements minus principal repayments. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents by residents of an economy and repayable in currency, goods, or services. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NFL.DPNG.CD\",\"Net flows on external debt, private nonguaranteed (PNG) (NFL, current US$)\",\"Private nonguaranteed external debt is an external obligation of a private debtor that is not guaranteed for repayment by a public entity. Net flows (or net lending or net disbursements) received by the borrower during the year are disbursements minus principal repayments. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents by residents of an economy and repayable in currency, goods, or services. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NFL.DPPG.CD\",\"Net flows on external debt, public and publicly guaranteed (PPG) (NFL, current US$)\",\"Public and publicly guaranteed long-term debt are aggregated. Public debt is an external obligation of a public debtor, including the national government, a political subdivision (or an agency of either), and autonomous public bodies. Publicly guaranteed debt is an external obligation of a private debtor that is guaranteed for repayment by a public entity. Net flows (or net lending or net disbursements) received by the borrower during the year are disbursements minus principal repayments. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents by residents of an economy and repayable in currency, goods, or services. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NFL.DSTC.CD\",\"Net flows on external debt, short-term (NFL, current US$)\",\"Net flows (or net lending or net disbursements) received by the borrower during the year are disbursements minus principal repayments. Short-term external debt is defined as debt that has an original maturity of one year or less. Available data permit no distinction between public and private nonguaranteed short-term debt. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NFL.IAEA.CD\",\"Net official flows from UN agencies, IAEA (current US$)\",\"Net official flows from UN agencies are the net disbursements of total official flows from the UN agencies. Total official flows are the sum of Official Development Assistance (ODA) or official aid and Other Official Flows (OOF) and represent the total disbursements by the official sector at large to the recipient country. Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. OOF are transactions by the official sector whose main objective is other than development-motivated, or, if development-motivated, whose grant element is below the 25 per cent threshold which would make them eligible to be recorded as ODA. The main classes of transactions included here are official export credits, official sector equity and portfolio investment, and debt reorganization undertaken by the official sector at non-concessional terms (irrespective of the nature or the identity of the original creditor). UN agencies are United Nations includes the United Nations Children's Fund (UNICEF), United Nations Relief and Works Agency for Palestine Refugees in the Near East (UNRWA), World Food Programme (WFP), International Fund for Agricultural Development (IFAD), United Nations Development Programme (UNDP), United Nations Population Fund (UNPF), United Nations Refugee Agency (UNHCR), Joint United Nations Programme on HIV/AIDS (UNAIDS), and United Nations Regular Programme for Technical Assistance (UNTA). Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.NFL.IFAD.CD\",\"Net official flows from UN agencies, IFAD (current US$)\",\"Net official flows from UN agencies are the net disbursements of total official flows from the UN agencies. Total official flows are the sum of Official Development Assistance (ODA) or official aid and Other Official Flows (OOF) and represent the total disbursements by the official sector at large to the recipient country. Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. OOF are transactions by the official sector whose main objective is other than development-motivated, or, if development-motivated, whose grant element is below the 25 per cent threshold which would make them eligible to be recorded as ODA. The main classes of transactions included here are official export credits, official sector equity and portfolio investment, and debt reorganization undertaken by the official sector at nonconcessional terms (irrespective of the nature or the identity of the original creditor). UN agencies are United Nations and include the United Nations Children’s Fund (UNICEF), United Nations Relief and Works Agency for Palestine Refugees in the Near East (UNRWA), United Nations Regular Programme for Technical Assistance (UNTA), International Atomic Energy Agency (IAEA), International Fund for Agricul\\uadtural Development (IFAD), Joint United Nations Programme on HIV/AIDS (UNAIDS), United Nations Development Programme (UNDP), United Nations Economic Commission for Europe (UNECE), United Nations Population Fund (UNPD), United Nations Refugee Agency (UNHCR), World Food Programme (WFP), and World Health Organization (WHO). Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.NFL.IMFC.CD\",\"Net financial flows, IMF concessional (NFL, current US$)\",\"Net financial flows received by the borrower during the year are disbursements of loans and credits less repayments of principal. IMF is the International Monetary Fund, which provides concessional lending through its Extended Credit Facility, Standby Credit Facility, and Rapid Credit Facility. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NFL.IMFN.CD\",\"Net financial flows, IMF nonconcessional (NFL, current US$)\",\"Net financial flows received by the borrower during the year are disbursements of loans and credits less repayments of principal. IMF is the International Monetary Fund, which provides nonconcessional lending through the credit it provides to its members, mainly to meet balance of payments needs. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NFL.MIBR.CD\",\"Net financial flows, IBRD (NFL, current US$)\",\"Net financial flows received by the borrower during the year are disbursements of loans and credits less repayments of principal. IBRD is the International Bank for Reconstruction and Development, the founding and largest member of the World Bank Group. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NFL.MIDA.CD\",\"Net financial flows, IDA (NFL, current US$)\",\"Net financial flows received by the borrower during the year are disbursements of loans and credits less repayments of principal. IDA is the International Development Association, the concessional loan window of the World Bank Group. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NFL.MLAT.CD\",\"Net financial flows, multilateral (NFL, current US$)\",\"Public and publicly guaranteed multilateral loans include loans and credits from the World Bank, regional development banks, and other multilateral and intergovernmental agencies. Excluded are loans from funds administered by an international organization on behalf of a single donor government; these are classified as loans from governments. Net flows (or net lending or net disbursements) received by the borrower during the year are disbursements minus principal repayments. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NFL.MLTC.CD\",\"PPG, multilateral concessional (NFL, current US$)\",\"Public and publicly guaranteed multilateral loans include loans and credits from the World Bank, regional development banks, and other multilateral and intergovernmental agencies. Excluded are loans from funds administered by an international organization on behalf of a single donor government; these are classified as loans from governments. Concessional debt is defined as loans with an original grant element of 25 percent or more. The grant element of a loan is the grant equivalent expressed as a percentage of the amount committed. It is used as a measure of the overall cost of borrowing. The grant equivalent of a loan is its commitment (present) value, less the discounted present value of its contractual debt service; conventionally, future service payments are discounted at 10 percent. Net flows (or net lending or net disbursements) received by the borrower during the year are disbursements minus principal repayments. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NFL.MOTH.CD\",\"Net financial flows, others (NFL, current US$)\",\"Net financial flows received by the borrower during the year are disbursements of loans and credits less repayments of principal. Others is a residual category in the World Bank's Debtor Reporting System. It includes such institutions as the Caribbean Development Fund, Council of Europe, European Development Fund, Islamic Development Bank, Nordic Development Fund, and the like. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NFL.NEBR.CD\",\"EBRD, private nonguaranteed (NFL, current US$)\",\"Nonguaranteed long-term debt privately placed from the European Bank for Reconstruction and Development (EBRD). Net flows (or net lending or net disbursements) received by the borrower during the year are disbursements minus principal repayments. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NFL.NIFC.CD\",\"IFC, private nonguaranteed (NFL, current US$)\",\"Nonguaranteed long-term debt privately placed from the International Finance Corporation (IFC). Net flows (or net lending or net disbursements) received by the borrower during the year are disbursements minus principal repayments. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NFL.OFFT.CD\",\"PPG, official creditors (NFL, current US$)\",\"Public and publicly guaranteed debt from official creditors includes loans from international organizations (multilateral loans) and loans from governments (bilateral loans). Loans from international organization include loans and credits from the World Bank, regional development banks, and other multilateral and intergovernmental agencies. Excluded are loans from funds administered by an international organization on behalf of a single donor government; these are classified as loans from governments. Government loans include loans from governments and their agencies (including central banks), loans from autonomous bodies, and direct loans from official export credit agencies. Net flows (or net lending or net disbursements) received by the borrower during the year are disbursements minus principal repayments. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NFL.PBND.CD\",\"PPG, bonds (NFL, current US$)\",\"Public and publicly guaranteed debt from bonds that are either publicly issued or privately placed. Net flows (or net lending or net disbursements) received by the borrower during the year are disbursements minus principal repayments. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NFL.PCBK.CD\",\"PPG, commercial banks (NFL, current US$)\",\"Public and publicly guaranteed commercial bank loans from private banks and other private financial institutions. Net flows (or net lending or net disbursements) received by the borrower during the year are disbursements minus principal repayments. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NFL.PCBO.CD\",\"Commercial banks and other lending (PPG + PNG) (NFL, current US$)\",\"Commercial bank and other lending includes net commercial bank lending (public and publicly guaranteed and private nonguaranteed) and other private credits. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NFL.PNGB.CD\",\"PNG, bonds (NFL, current US$)\",\"Nonguaranteed long-term debt from bonds that are privately placed. Net flows (or net lending or net disbursements) received by the borrower during the year are disbursements minus principal repayments. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NFL.PNGC.CD\",\"PNG, commercial banks and other creditors (NFL, current US$)\",\"Nonguaranteed long-term commercial bank loans from private banks and other private financial institutions. Net flows (or net lending or net disbursements) received by the borrower during the year are disbursements minus principal repayments. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NFL.PROP.CD\",\"PPG, other private creditors (NFL, current US$)\",\"Public and publicly guaranteed other private credits from manufacturers, exporters, and other suppliers of goods, and bank credits covered by a guarantee of an export credit agency. Net flows (or net lending or net disbursements) received by the borrower during the year are disbursements minus principal repayments. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NFL.PRVT.CD\",\"PPG, private creditors (NFL, current US$)\",\"Public and publicly guaranteed debt from private creditors include bonds that are either publicly issued or privately placed; commercial bank loans from private banks and other private financial institutions; and other private credits from manufacturers, exporters, and other suppliers of goods, and bank credits covered by a guarantee of an export credit agency. Net flows (or net lending or net disbursements) received by the borrower during the year are disbursements minus principal repayments. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NFL.RDBC.CD\",\"Net financial flows, RDB concessional (NFL, current US$)\",\"Net financial flows received by the borrower during the year are disbursements of loans and credits less repayments of principal. Concessional financial flows cover disbursements made through concessional lending facilities. Regional development banks are the African Development Bank, in Tunis, Tunisia, which serves all of Africa, including North Africa; the Asian Development Bank, in Manila, Philippines, which serves South and Central Asia and East Asia and Pacific; the European Bank for Reconstruction and Development, in London, United Kingdom, which serves Europe and Central Asia; and the Inter-American Development Bank, in Washington, D.C., which serves the Americas. Aggregates include amounts for economies not specified elsewhere. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NFL.RDBN.CD\",\"Net financial flows, RDB nonconcessional (NFL, current US$)\",\"Net financial flows received by the borrower during the year are disbursements of loans and credits less repayments of principal. Nonconcessional financial flows cover all disbursements except those made through concessional lending facilities. Regional development banks are the African Development Bank, in Tunis, Tunisia, which serves all of Africa, including North Africa; the Asian Development Bank, in Manila, Philippines, which serves South and Central Asia and East Asia and Pacific; the European Bank for Reconstruction and Development, in London, United Kingdom, which serves Europe and Central Asia; and the Inter-American Development Bank, in Washington, D.C., which serves the Americas. Aggregates include amounts for economies not specified elsewhere. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NFL.UNAI.CD\",\"Net official flows from UN agencies, UNAIDS (current US$)\",\"Net official flows from UN agencies are the net disbursements of total official flows from the UN agencies. Total official flows are the sum of Official Development Assistance (ODA) or official aid and Other Official Flows (OOF) and represent the total disbursements by the official sector at large to the recipient country. Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. OOF are transactions by the official sector whose main objective is other than development-motivated, or, if development-motivated, whose grant element is below the 25 per cent threshold which would make them eligible to be recorded as ODA. The main classes of transactions included here are official export credits, official sector equity and portfolio investment, and debt reorganization undertaken by the official sector at nonconcessional terms (irrespective of the nature or the identity of the original creditor). UN agencies are United Nations and include the United Nations Children’s Fund (UNICEF), United Nations Relief and Works Agency for Palestine Refugees in the Near East (UNRWA), United Nations Regular Programme for Technical Assistance (UNTA), International Atomic Energy Agency (IAEA), International Fund for Agricul\\uadtural Development (IFAD), Joint United Nations Programme on HIV/AIDS (UNAIDS), United Nations Development Programme (UNDP), United Nations Economic Commission for Europe (UNECE), United Nations Population Fund (UNPD), United Nations Refugee Agency (UNHCR), World Food Programme (WFP), and World Health Organization (WHO). Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.NFL.UNCF.CD\",\"Net official flows from UN agencies, UNICEF (current US$)\",\"Net official flows from UN agencies are the net disbursements of total official flows from the UN agencies. Total official flows are the sum of Official Development Assistance (ODA) or official aid and Other Official Flows (OOF) and represent the total disbursements by the official sector at large to the recipient country. Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. OOF are transactions by the official sector whose main objective is other than development-motivated, or, if development-motivated, whose grant element is below the 25 per cent threshold which would make them eligible to be recorded as ODA. The main classes of transactions included here are official export credits, official sector equity and portfolio investment, and debt reorganization undertaken by the official sector at nonconcessional terms (irrespective of the nature or the identity of the original creditor). UN agencies are United Nations and include the United Nations Children’s Fund (UNICEF), United Nations Relief and Works Agency for Palestine Refugees in the Near East (UNRWA), United Nations Regular Programme for Technical Assistance (UNTA), International Atomic Energy Agency (IAEA), International Fund for Agricul\\uadtural Development (IFAD), Joint United Nations Programme on HIV/AIDS (UNAIDS), United Nations Development Programme (UNDP), United Nations Economic Commission for Europe (UNECE), United Nations Population Fund (UNPD), United Nations Refugee Agency (UNHCR), World Food Programme (WFP), and World Health Organization (WHO). Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.NFL.UNCR.CD\",\"Net official flows from UN agencies, UNHCR (current US$)\",\"Net official flows from UN agencies are the net disbursements of total official flows from the UN agencies. Total official flows are the sum of Official Development Assistance (ODA) or official aid and Other Official Flows (OOF) and represent the total disbursements by the official sector at large to the recipient country. Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. OOF are transactions by the official sector whose main objective is other than development-motivated, or, if development-motivated, whose grant element is below the 25 per cent threshold which would make them eligible to be recorded as ODA. The main classes of transactions included here are official export credits, official sector equity and portfolio investment, and debt reorganization undertaken by the official sector at nonconcessional terms (irrespective of the nature or the identity of the original creditor). UN agencies are United Nations and include the United Nations Children’s Fund (UNICEF), United Nations Relief and Works Agency for Palestine Refugees in the Near East (UNRWA), United Nations Regular Programme for Technical Assistance (UNTA), International Atomic Energy Agency (IAEA), International Fund for Agricul\\uadtural Development (IFAD), Joint United Nations Programme on HIV/AIDS (UNAIDS), United Nations Development Programme (UNDP), United Nations Economic Commission for Europe (UNECE), United Nations Population Fund (UNPD), United Nations Refugee Agency (UNHCR), World Food Programme (WFP), and World Health Organization (WHO). Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.NFL.UNDP.CD\",\"Net official flows from UN agencies, UNDP (current US$)\",\"Net official flows from UN agencies are the net disbursements of total official flows from the UN agencies. Total official flows are the sum of Official Development Assistance (ODA) or official aid and Other Official Flows (OOF) and represent the total disbursements by the official sector at large to the recipient country. Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. OOF are transactions by the official sector whose main objective is other than development-motivated, or, if development-motivated, whose grant element is below the 25 per cent threshold which would make them eligible to be recorded as ODA. The main classes of transactions included here are official export credits, official sector equity and portfolio investment, and debt reorganization undertaken by the official sector at nonconcessional terms (irrespective of the nature or the identity of the original creditor). UN agencies are United Nations and include the United Nations Children’s Fund (UNICEF), United Nations Relief and Works Agency for Palestine Refugees in the Near East (UNRWA), United Nations Regular Programme for Technical Assistance (UNTA), International Atomic Energy Agency (IAEA), International Fund for Agricul\\uadtural Development (IFAD), Joint United Nations Programme on HIV/AIDS (UNAIDS), United Nations Development Programme (UNDP), United Nations Economic Commission for Europe (UNECE), United Nations Population Fund (UNPD), United Nations Refugee Agency (UNHCR), World Food Programme (WFP), and World Health Organization (WHO). Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.NFL.UNEC.CD\",\"Net official flows from UN agencies, UNECE (current US$)\",\"Net official flows from UN agencies are the net disbursements of total official flows from the UN agencies. Total official flows are the sum of Official Development Assistance (ODA) or official aid and Other Official Flows (OOF) and represent the total disbursements by the official sector at large to the recipient country. Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. OOF are transactions by the official sector whose main objective is other than development-motivated, or, if development-motivated, whose grant element is below the 25 per cent threshold which would make them eligible to be recorded as ODA. The main classes of transactions included here are official export credits, official sector equity and portfolio investment, and debt reorganization undertaken by the official sector at non-concessional terms (irrespective of the nature or the identity of the original creditor). UN agencies are United Nations includes the United Nations Children's Fund (UNICEF), United Nations Relief and Works Agency for Palestine Refugees in the Near East (UNRWA), World Food Programme (WFP), International Fund for Agricultural Development (IFAD), United Nations Development Programme (UNDP), United Nations Population Fund (UNPF), United Nations Refugee Agency (UNHCR), Joint United Nations Programme on HIV/AIDS (UNAIDS), and United Nations Regular Programme for Technical Assistance (UNTA). Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.NFL.UNFP.CD\",\"Net official flows from UN agencies, UNFPA (current US$)\",\"Net official flows from UN agencies are the net disbursements of total official flows from the UN agencies. Total official flows are the sum of Official Development Assistance (ODA) or official aid and Other Official Flows (OOF) and represent the total disbursements by the official sector at large to the recipient country. Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. OOF are transactions by the official sector whose main objective is other than development-motivated, or, if development-motivated, whose grant element is below the 25 per cent threshold which would make them eligible to be recorded as ODA. The main classes of transactions included here are official export credits, official sector equity and portfolio investment, and debt reorganization undertaken by the official sector at nonconcessional terms (irrespective of the nature or the identity of the original creditor). UN agencies are United Nations and include the United Nations Children’s Fund (UNICEF), United Nations Relief and Works Agency for Palestine Refugees in the Near East (UNRWA), United Nations Regular Programme for Technical Assistance (UNTA), International Atomic Energy Agency (IAEA), International Fund for Agricul\\uadtural Development (IFAD), Joint United Nations Programme on HIV/AIDS (UNAIDS), United Nations Development Programme (UNDP), United Nations Economic Commission for Europe (UNECE), United Nations Population Fund (UNPD), United Nations Refugee Agency (UNHCR), World Food Programme (WFP), and World Health Organization (WHO). Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.NFL.UNPB.CD\",\"Net official flows from UN agencies, UNPBF (current US$)\",\"Net official flows from UN agencies are the net disbursements of total official flows from the UN agencies. Total official flows are the sum of Official Development Assistance (ODA) or official aid and Other Official Flows (OOF) and represent the total disbursements by the official sector at large to the recipient country. Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. OOF are transactions by the official sector whose main objective is other than development-motivated, or, if development-motivated, whose grant element is below the 25 per cent threshold which would make them eligible to be recorded as ODA. The main classes of transactions included here are official export credits, official sector equity and portfolio investment, and debt reorganization undertaken by the official sector at nonconcessional terms (irrespective of the nature or the identity of the original creditor). UN agencies are United Nations and include the United Nations Children’s Fund (UNICEF), United Nations Relief and Works Agency for Palestine Refugees in the Near East (UNRWA), United Nations Regular Programme for Technical Assistance (UNTA), International Atomic Energy Agency (IAEA), International Fund for Agricul\\uadtural Development (IFAD), Joint United Nations Programme on HIV/AIDS (UNAIDS), United Nations Development Programme (UNDP), United Nations Economic Commission for Europe (UNECE), United Nations Population Fund (UNPD), United Nations Refugee Agency (UNHCR), World Food Programme (WFP), and World Health Organization (WHO). Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.NFL.UNRW.CD\",\"Net official flows from UN agencies, UNRWA (current US$)\",\"Net official flows from UN agencies are the net disbursements of total official flows from the UN agencies. Total official flows are the sum of Official Development Assistance (ODA) or official aid and Other Official Flows (OOF) and represent the total disbursements by the official sector at large to the recipient country. Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. OOF are transactions by the official sector whose main objective is other than development-motivated, or, if development-motivated, whose grant element is below the 25 per cent threshold which would make them eligible to be recorded as ODA. The main classes of transactions included here are official export credits, official sector equity and portfolio investment, and debt reorganization undertaken by the official sector at nonconcessional terms (irrespective of the nature or the identity of the original creditor). UN agencies are United Nations and include the United Nations Children’s Fund (UNICEF), United Nations Relief and Works Agency for Palestine Refugees in the Near East (UNRWA), United Nations Regular Programme for Technical Assistance (UNTA), International Atomic Energy Agency (IAEA), International Fund for Agricul\\uadtural Development (IFAD), Joint United Nations Programme on HIV/AIDS (UNAIDS), United Nations Development Programme (UNDP), United Nations Economic Commission for Europe (UNECE), United Nations Population Fund (UNPD), United Nations Refugee Agency (UNHCR), World Food Programme (WFP), and World Health Organization (WHO). Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.NFL.UNTA.CD\",\"Net official flows from UN agencies, UNTA (current US$)\",\"Net official flows from UN agencies are the net disbursements of total official flows from the UN agencies. Total official flows are the sum of Official Development Assistance (ODA) or official aid and Other Official Flows (OOF) and represent the total disbursements by the official sector at large to the recipient country. Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. OOF are transactions by the official sector whose main objective is other than development-motivated, or, if development-motivated, whose grant element is below the 25 per cent threshold which would make them eligible to be recorded as ODA. The main classes of transactions included here are official export credits, official sector equity and portfolio investment, and debt reorganization undertaken by the official sector at nonconcessional terms (irrespective of the nature or the identity of the original creditor). UN agencies are United Nations and include the United Nations Children’s Fund (UNICEF), United Nations Relief and Works Agency for Palestine Refugees in the Near East (UNRWA), United Nations Regular Programme for Technical Assistance (UNTA), International Atomic Energy Agency (IAEA), International Fund for Agricul\\uadtural Development (IFAD), Joint United Nations Programme on HIV/AIDS (UNAIDS), United Nations Development Programme (UNDP), United Nations Economic Commission for Europe (UNECE), United Nations Population Fund (UNPD), United Nations Refugee Agency (UNHCR), World Food Programme (WFP), and World Health Organization (WHO). Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.NFL.WFPG.CD\",\"Net official flows from UN agencies, WFP (current US$)\",\"Net official flows from UN agencies are the net disbursements of total official flows from the UN agencies. Total official flows are the sum of Official Development Assistance (ODA) or official aid and Other Official Flows (OOF) and represent the total disbursements by the official sector at large to the recipient country. Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. OOF are transactions by the official sector whose main objective is other than development-motivated, or, if development-motivated, whose grant element is below the 25 per cent threshold which would make them eligible to be recorded as ODA. The main classes of transactions included here are official export credits, official sector equity and portfolio investment, and debt reorganization undertaken by the official sector at nonconcessional terms (irrespective of the nature or the identity of the original creditor). UN agencies are United Nations and include the United Nations Children’s Fund (UNICEF), United Nations Relief and Works Agency for Palestine Refugees in the Near East (UNRWA), United Nations Regular Programme for Technical Assistance (UNTA), International Atomic Energy Agency (IAEA), International Fund for Agricul\\uadtural Development (IFAD), Joint United Nations Programme on HIV/AIDS (UNAIDS), United Nations Development Programme (UNDP), United Nations Economic Commission for Europe (UNECE), United Nations Population Fund (UNPD), United Nations Refugee Agency (UNHCR), World Food Programme (WFP), and World Health Organization (WHO). Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.NFL.WHOL.CD\",\"Net official flows from UN agencies, WHO (current US$)\",\"Net official flows from UN agencies are the net disbursements of total official flows from the UN agencies. Total official flows are the sum of Official Development Assistance (ODA) or official aid and Other Official Flows (OOF) and represent the total disbursements by the official sector at large to the recipient country. Net disbursements are gross disbursements of grants and loans minus repayments of principal on earlier loans. ODA consists of loans made on concessional terms (with a grant element of at least 25 percent, calculated at a rate of discount of 10 percent) and grants made to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. Official aid refers to aid flows from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. OOF are transactions by the official sector whose main objective is other than development-motivated, or, if development-motivated, whose grant element is below the 25 per cent threshold which would make them eligible to be recorded as ODA. The main classes of transactions included here are official export credits, official sector equity and portfolio investment, and debt reorganization undertaken by the official sector at non-concessional terms (irrespective of the nature or the identity of the original creditor). UN agencies are United Nations includes the United Nations Children's Fund (UNICEF), United Nations Relief and Works Agency for Palestine Refugees in the Near East (UNRWA), World Food Programme (WFP), International Fund for Agricultural Development (IFAD), United Nations Development Programme (UNDP), United Nations Population Fund (UNPF), United Nations Refugee Agency (UNHCR), Joint United Nations Programme on HIV/AIDS (UNAIDS), and United Nations Regular Programme for Technical Assistance (UNTA). Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.NTR.BLAT.CD\",\"PPG, bilateral (NTR, current US$)\",\"Bilateral debt includes loans from governments and their agencies (including central banks), loans from autonomous bodies, and direct loans from official export credit agencies. Net transfers are net flows minus interest payments during the year; negative transfers show net transfers made by the borrower to the creditor during the year. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NTR.BLTC.CD\",\"PPG, bilateral concessional (NTR, current US$)\",\"Bilateral debt includes loans from governments and their agencies (including central banks), loans from autonomous bodies, and direct loans from official export credit agencies. Concessional debt is defined as loans with an original grant element of 25 percent or more. The grant element of a loan is the grant equivalent expressed as a percentage of the amount committed. It is used as a measure of the overall cost of borrowing. The grant equivalent of a loan is its commitment (present) value, less the discounted present value of its contractual debt service; conventionally, future service payments are discounted at 10 percent. Net transfers are net flows minus interest payments during the year; negative transfers show net transfers made by the borrower to the creditor during the year. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NTR.DECT.CD\",\"Net transfers on external debt, total (NTR, current US$)\",\"Net transfers on external debt are net flows minus interest payments during the year; negative transfers show net transfers made by the borrower to the creditor during the year. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NTR.DLXF.CD\",\"Net transfers on external debt, long-term (NTR, current US$)\",\"Net transfers are net flows minus interest payments during the year; negative transfers show net transfers made by the borrower to the creditor during the year. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents by residents of an economy and repayable in currency, goods, or services. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NTR.DPNG.CD\",\"Net transfers on external debt, private nonguaranteed (PNG) (NTR, current US$)\",\"Private nonguaranteed external debt is an external obligation of a private debtor that is not guaranteed for repayment by a public entity. Net transfers are net flows minus interest payments during the year; negative transfers show net transfers made by the borrower to the creditor during the year. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents by residents of an economy and repayable in currency, goods, or services. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NTR.DPPG.CD\",\"Net transfers on external debt, public and publicly guaranteed (PPG) (NTR, current US$)\",\"Public debt is an external obligation of a public debtor, including the national government, a political subdivision (or an agency of either), and autonomous public bodies. Publicly guaranteed debt is an external obligation of a private debtor that is guaranteed for repayment by a public entity. Net transfers are net flows minus interest payments during the year; negative transfers show net transfers made by the borrower to the creditor during the year. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents by residents of an economy and repayable in currency, goods, or services. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NTR.MIBR.CD\",\"PPG, IBRD (NTR, current US$)\",\"Public and publicly guaranteed debt outstanding from the International Bank for Reconstruction and Development (IBRD) is nonconcessional. Nonconcessional debt excludes loans with an original grant element of 25 percent or more. Net transfers are net flows minus interest payments during the year; negative transfers show net transfers made by the borrower to the creditor during the year. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NTR.MIDA.CD\",\"PPG, IDA (NTR, current US$)\",\"Public and publicly guaranteed debt outstanding from the International Development Association (IDA) is concessional. Concessional debt is defined as loans with an original grant element of 25 percent or more. The grant element of a loan is the grant equivalent expressed as a percentage of the amount committed. It is used as a measure of the overall cost of borrowing. The grant equivalent of a loan is its commitment (present) value, less the discounted present value of its contractual debt service; conventionally, future service payments are discounted at 10 percent. Net transfers are net flows minus interest payments during the year; negative transfers show net transfers made by the borrower to the creditor during the year. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NTR.MLAT.CD\",\"PPG, multilateral (NTR, current US$)\",\"Public and publicly guaranteed multilateral loans include loans and credits from the World Bank, regional development banks, and other multilateral and intergovernmental agencies. Excluded are loans from funds administered by an international organization on behalf of a single donor government; these are classified as loans from governments. Net transfers are net flows minus interest payments during the year; negative transfers show net transfers made by the borrower to the creditor during the year. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NTR.MLTC.CD\",\"PPG, multilateral concessional (NTR, current US$)\",\"Public and publicly guaranteed multilateral loans include loans and credits from the World Bank, regional development banks, and other multilateral and intergovernmental agencies. Excluded are loans from funds administered by an international organization on behalf of a single donor government; these are classified as loans from governments. Concessional debt is defined as loans with an original grant element of 25 percent or more. The grant element of a loan is the grant equivalent expressed as a percentage of the amount committed. It is used as a measure of the overall cost of borrowing. The grant equivalent of a loan is its commitment (present) value, less the discounted present value of its contractual debt service; conventionally, future service payments are discounted at 10 percent. Net transfers are net flows minus interest payments during the year; negative transfers show net transfers made by the borrower to the creditor during the year. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NTR.OFFT.CD\",\"PPG, official creditors (NTR, current US$)\",\"Public and publicly guaranteed debt from official creditors includes loans from international organizations (multilateral loans) and loans from governments (bilateral loans). Loans from international organization include loans and credits from the World Bank, regional development banks, and other multilateral and intergovernmental agencies. Excluded are loans from funds administered by an international organization on behalf of a single donor government; these are classified as loans from governments. Government loans include loans from governments and their agencies (including central banks), loans from autonomous bodies, and direct loans from official export credit agencies. Net transfers are net flows minus interest payments during the year; negative transfers show net transfers made by the borrower to the creditor during the year. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NTR.PBND.CD\",\"PPG, bonds (NTR, current US$)\",\"Public and publicly guaranteed debt from bonds that are either publicly issued or privately placed. Net transfers are net flows minus interest payments during the year; negative transfers show net transfers made by the borrower to the creditor during the year. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NTR.PCBK.CD\",\"PPG, commercial banks (NTR, current US$)\",\"Public and publicly guaranteed commercial bank loans from private banks and other private financial institutions. Net transfers are net flows minus interest payments during the year; negative transfers show net transfers made by the borrower to the creditor during the year. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NTR.PNGB.CD\",\"PNG, bonds (NTR, current US$)\",\"Nonguaranteed long-term debt from bonds that are privately placed. Net transfers are net flows minus interest payments during the year; negative transfers show net transfers made by the borrower to the creditor during the year. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NTR.PNGC.CD\",\"PNG, commercial banks and other creditors (NTR, current US$)\",\"Nonguaranteed long-term commercial bank loans from private banks and other private financial institutions. Net transfers are net flows minus interest payments during the year; negative transfers show net transfers made by the borrower to the creditor during the year. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NTR.PROP.CD\",\"PPG, other private creditors (NTR, current US$)\",\"Public and publicly guaranteed other private credits from manufacturers, exporters, and other suppliers of goods, and bank credits covered by a guarantee of an export credit agency. Net transfers are net flows minus interest payments during the year; negative transfers show net transfers made by the borrower to the creditor during the year. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.NTR.PRVT.CD\",\"PPG, private creditors (NTR, current US$)\",\"Public and publicly guaranteed debt from private creditors include bonds that are either publicly issued or privately placed; commercial bank loans from private banks and other private financial institutions; and other private credits from manufacturers, exporters, and other suppliers of goods, and bank credits covered by a guarantee of an export credit agency. Net transfers are net flows minus interest payments during the year; negative transfers show net transfers made by the borrower to the creditor during the year. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.ODA.ALLD.CD\",\"Net official development assistance and official aid received (current US$)\",\"Net official development assistance (ODA) consists of disbursements of loans made on concessional terms (net of repayments of principal) and grants by official agencies of the members of the Development Assistance Committee (DAC), by multilateral institutions, and by non-DAC countries to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. It includes loans with a grant element of at least 25 percent (calculated at a rate of discount of 10 percent). Net official aid refers to aid flows (net of repayments) from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.ODA.ALLD.GD.ZS\",\"Net ODA received (% of GDP)\",\"Official development assistance and net official aid record the actual international transfer by the donor of financial resources or of goods or services valued at the cost to the donor, less any repayments of loan principal during the same period. \",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. World Bank GDP estimates are used for the denominator.\"\n\"DT.ODA.ALLD.GI.ZS\",\"Net official development assistance received (% of gross capital formation)\",\"Aid includes both official development assistance (ODA) and official aid. Ratios are computed using values in U.S. dollars converted at official exchange rates.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, and World Bank GCF estimates.\"\n\"DT.ODA.ALLD.GN.ZS\",\"Net ODA received (% of GNP)\",\"Aid includes both official development assistance (ODA) and official aid. Ratios are computed using values in U.S. dollars converted at official exchange rates.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, and World Bank GNI estimates.\"\n\"DT.ODA.ALLD.HIV.CNTRL.CD\",\"ODA aid disbursements for STD control including HIV/AIDS, all donors (current US$)\",\"All activities related to sexually transmitted diseases and HIV/AIDS control e.g. information, education and communication; testing; prevention; treatment, care.  Note: data for Sub-Saharan Africa include \\\"South of Sahara regional\\\".  Detailed descriptions are available www.oecd.org/dac/stats/crs/directives.  \",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. \"\n\"DT.ODA.ALLD.HIV.MITI.CD\",\"ODA aid disbursements for Social mitigation of HIV/AIDS, all donors (current US$)\",\"Special programmes to address the consequences of HIV/AIDS, e.g. social, legal and economic assistance to people living with HIV/AIDS including food security and employment; support to vulnerable groups and children orphaned by HIV/AIDS; human rights of HIV/AIDS affected people. Note: data for Sub-Saharan Africa include \\\"South of Sahara regional\\\".  Detailed descriptions are available www.oecd.org/dac/stats/crs/directives.  \",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. \"\n\"DT.ODA.ALLD.KD\",\"Net official development assistance and official aid received (constant 2013 US$)\",\"Net official development assistance (ODA) consists of disbursements of loans made on concessional terms (net of repayments of principal) and grants by official agencies of the members of the Development Assistance Committee (DAC), by multilateral institutions, and by non-DAC countries to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. It includes loans with a grant element of at least 25 percent (calculated at a rate of discount of 10 percent). Net official aid refers to aid flows (net of repayments) from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. Data are in constant 2012 U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.ODA.ALLD.MLR.CNTRL.CD\",\"ODA aid disbursements for Malaria control, all donors (current US$)\",\"Official development assistance (ODA) disbursements for malaria control are spending on prevention and control of malaria.  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. \"\n\"DT.ODA.ALLD.MP.ZS\",\"Net ODA received (% exports and imports)\",\"Aid includes both official development assistance (ODA) and official aid. Ratios are computed using values in U.S. dollars converted at official exchange rates.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, and World Bank imports of goods and services estimates.\"\n\"DT.ODA.ALLD.PC.ZS\",\"Net official development assistance received per capita (current US$)\",\"Aid per capita includes both official development assistance (ODA) and official aid, and is calculated by dividing total aid by the midyear population estimate.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, and World Bank population estimates.\"\n\"DT.ODA.ALLD.PRVT.CD\",\"Total ODA Private Net, all donors (current US$)\",\"Net private aid is private transactions broken down into direct investment, portfolio investment and export credits (net). Private transactions are those undertaken by firms and individuals resident in the reporting country. Portfolio investment corresponds to bonds and equities. Inflows into emerging countries’ stocks markets, are, however, heavily understated. Accordingly, the coverage of portfolio investment differs in these regards from the coverage of bank claims, which include indistinguishably export credit lending by banks. The bank claims data represent the net change in banks’ claims after adjustment to eliminate the effect of changes in exchange rates. They are therefore a proxy for net flow data, but are not themselves a net flow figure. They differ in two further regards from other OECD data. First, they relate to loans by banks resident in countries which report quarterly to the Bank for International Settlements (BIS). Secondly, no adjustment has been made to exclude short-term claims.  \",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. \"\n\"DT.ODA.ALLD.XP.ZS\",\"Net ODA received (% of central government expenditure)\",\"Aid includes both official development assistance (ODA) and official aid. Ratios are computed using values in U.S. dollars converted at official exchange rates.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, and IMF central government expense estimates.\"\n\"DT.ODA.DACD.ADMN.CD\",\"Gross ODA aid disbursement for administrative costs of donors, DAC donors total (current US$)\",\"These are described as administrative costs. Data are expressed in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. \"\n\"DT.ODA.DACD.AGPA.BDGT.CD\",\"Gross ODA aid disbursement for general budget support, DAC donors total (current US$)\",\"This is described as general budget support.  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. \"\n\"DT.ODA.DACD.AGPA.CD\",\"Gross ODA aid disbursement for commodity and general program assistance, DAC donors total (current US$)\",\"This is the aggregate total for general budget support (DT.ODA.DACD.AGPA.BDGT.CD); development food aid/food security (DT.ODA.DACD.AGPA.FOOD.CD) and other commodity assistance (DT.ODA.DACD.AGPA.OCOM.CD).  Official Bilateral Commitments (or Gross Disburse\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. \"\n\"DT.ODA.DACD.AGPA.FOOD.CD\",\"Gross ODA aid disbursement for developmental food aid/food security assistance, DAC donors total (current US$)\",\"This is described as food aid and food security programmes.  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. \"\n\"DT.ODA.DACD.AGPA.OCOM.CD\",\"Gross ODA aid disbursement for other commodity assistance, DAC donors total (current US$)\",\"This is described as import support (capital goods and services; line of credit) and import support for commodities, general goods and services, oil imports.  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. \"\n\"DT.ODA.DACD.ALLS.CD\",\"Gross ODA aid disbursement for all sectors and functions, DAC donors total (current US$)\",\"This is the aggregate total of all gross aid disbursements.  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. \"\n\"DT.ODA.DACD.CD\",\"Net ODA received from DAC donors (current US$)\",\"Official development assistance and net official aid record the actual international transfer by the donor of financial resources or of goods or services valued at the cost to the donor, less any repayments of loan principal during the same period. Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. \"\n\"DT.ODA.DACD.CD.PC\",\"Net ODA received per capita from DAC donors(current US$)\",\"Official development assistance and net official aid record the actual international transfer by the donor of financial resources or of goods or services valued at the cost to the donor, less any repayments of loan principal during the same period. Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database.  World Bank population estimates are used for the denominator.\"\n\"DT.ODA.DACD.DEBT.CD\",\"Gross ODA aid disbursement for action related to debt, DAC donors total (current US$)\",\"This is described as action relating to debt; debt forgiveness; relief of multilateral debt; rescheduling and refinancing; debt for development swap; other debt swap and debt buy-back.  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. \"\n\"DT.ODA.DACD.ECON.BKFN.CD\",\"Gross ODA aid disbursement for banking & financial services, DAC donors total (current US$)\",\"This is described as financial policy and administrative management; monetary institutions; formal sector financial intermediaries; informal/semi-formal financial intermediaries and education/training in banking and financial services.  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. \"\n\"DT.ODA.DACD.ECON.BUSN.CD\",\"Gross ODA aid disbursement for business & other services, DAC donors total (current US$)\",\"This is described as business support services and institutions and privatisation.  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. \"\n\"DT.ODA.DACD.ECON.CD\",\"Gross ODA aid disbursement for economic infrastructure, DAC donors total (current US$)\",\"This is the aggregate total for transport and storage (DT.ODA.DACD.ECON.TRSP.CD); communications (DT.ODA.DACD.ECON.COMM.CD); energy (DT.ODA.DACD.ECON.NRGY.CD); banking and financial services (DT.ODA.DACD.ECON.BKFN.CD); business and other services (DT.ODA.DACD.ECON.BUSN.CD).\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. \"\n\"DT.ODA.DACD.ECON.COMM.CD\",\"Gross ODA aid disbursement for communications, DAC donors total (current US$)\",\"This is described as communications policy and administrative; telecommunications; radio/television/print media and information and communication technology (ICT).  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. \"\n\"DT.ODA.DACD.ECON.NRGY.CD\",\"Gross ODA aid disbursement for energy,  DAC donors total (current US$)\",\"This is described as energy policy and administrative management; power generation/non-renewable. Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. \"\n\"DT.ODA.DACD.ECON.TRSP.CD\",\"Gross ODA aid disbursement for transport and storage, DAC donors total (current US$)\",\"This is described as transport policy and administrative management; road transport; rail transport; water transport; air transport; storage and education and training in transport and storage.  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. \"\n\"DT.ODA.DACD.EDU.BAS.CD\",\"Gross ODA aid disbursement for basic education, DAC donors total (current US$)\",\"This is described as primary education; basic life skills for youth and adults and early childhood education.  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. \"\n\"DT.ODA.DACD.EDU.CD\",\"Gross ODA aid disbursement for education, DAC donors total (current US$)\",\"This is the aggregate total for education level unspecified (DT.ODA.DACD.EDU.UNKN.CD); basic education (DT.ODA.DACD.EDU.BAS.CD); secondary education (DT.ODA.DACD.EDU.SEC.CD) and post-secondary education (DT.ODA.DACD.EDU.PSEC.CD).  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. \"\n\"DT.ODA.DACD.EDU.PSEC.CD\",\"Gross ODA aid disbursement for post-secondary education, DAC donors total (current US$)\",\"This is described as higher education and advanced technical and managerial training.  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. \"\n\"DT.ODA.DACD.EDU.SEC.CD\",\"Gross ODA aid disbursement for secondary education, DAC donors total (current US$)\",\"This is described as secondary education and vocational training.  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. \"\n\"DT.ODA.DACD.EDU.UNKN.CD\",\"Gross ODA aid disbursement for education (level unspecified), DAC donors total (current US$)\",\"This is described as education policy and administrative management; education facilities and training; teacher training and educational research.  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. \"\n\"DT.ODA.DACD.EMRC.CD\",\"Gross ODA aid disbursement for humanitarian aid, DAC donors total (current US$)\",\"This is the aggregate total for other emergency and distress relief (DT.ODA.DACDEMRC.OTHR.CD); reconstruction relief (DT.ODA.DACD.EMRC.RCST.CD) and disaster prevention & preparedness (DT.ODA.DACD.EMRC.DISA.CD).  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. \"\n\"DT.ODA.DACD.EMRC.DISA.CD\",\"Gross ODA aid disbursement for disaster prevention & preparedness, DAC donors total (current US$)\",\"This is disaster prevention and preparedness.  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. \"\n\"DT.ODA.DACD.EMRC.OTHR.CD\",\"Gross ODA aid disbursement for emergency response, DAC donors total (current US$)\",\"This is described as material relief assistance and services; emergency food aid and relief co-ordination; protection and support services.  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. \"\n\"DT.ODA.DACD.EMRC.RCST.CD\",\"Gross ODA aid disbursement for reconstruction relief and rehabilitation, DAC donors total (current US$)\",\"This is described as reconstruction relief and rehabilitation.  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. \"\n\"DT.ODA.DACD.GVCS.CD\",\"Gross ODA aid disbursement for government & civil society, DAC donors total (current US$)\",\"This is the aggregate total for general government and civil society (DT.ODA.DACD.GVCS.GEN.CD) and conflict, peace and security (DT.ODA.DACD.GVCS.CPS.CD).  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. \"\n\"DT.ODA.DACD.GVCS.CPS.CD\",\"Gross ODA aid disbursement for conflict, peace and security, DAC donors total (current US$)\",\"This is described as security system management and reform; civilian peace-building, conflict prevention and resolution; post-conflict peace-building (UN); reintegration and Small Arms and Light Weapons (SALW) control; land mine clearance and child soldiers (prevention and demobilisation).  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. \"\n\"DT.ODA.DACD.GVCS.GEN.CD\",\"Gross ODA aid disbursement for general government and civil society, DAC donors total (current US$)\",\"This is described as economic and development policy/planning; public sector financial management; legal and judicial development; general administration; strengthening civil society; elections; human rights; free flow of information and women's equality organisations and institutions.  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. \"\n\"DT.ODA.DACD.HIV.CNTRL.CD\",\"ODA aid disbursements for STD control including HIV/AIDS, DAC donors (current US$)\",\"All activities related to sexually transmitted diseases and HIV/AIDS control e.g. information, education and communication; testing; prevention; treatment, care.  Note: data for Sub-Saharan Africa include \\\"South of Sahara regional\\\".  Detailed descriptions are available www.oecd.org/dac/stats/crs/directives.  \",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development.\"\n\"DT.ODA.DACD.HIV.MITI.CD\",\"ODA aid disbursements for Social mitigation of HIV/AIDS, DAC donors (current US$)\",\"Special programmes to address the consequences of HIV/AIDS, e.g. social, legal and economic assistance to people living with HIV/AIDS including food security and employment; support to vulnerable groups and children orphaned by HIV/AIDS; human rights of HIV/AIDS affected people. Note: data for Sub-Saharan Africa include \\\"South of Sahara regional\\\".  Detailed descriptions are available www.oecd.org/dac/stats/crs/directives.  \",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development.\"\n\"DT.ODA.DACD.HLTH.BAS.CD\",\"Gross ODA aid disbursement for basic health, DAC donors total (current US$)\",\"This is described as basic health care; basic health infrastructure; basic nutrition; infectious disease control; health education; malaria control; tuberculosis control and health personnel development.  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. \"\n\"DT.ODA.DACD.HLTH.CD\",\"Gross ODA aid disbursement for health, DAC donors total (current US$)\",\"This is the aggregate total for general health (DT.ODA.DACD.HLTH.GEN.CD) and basic health (DT.ODA.DACD.HLTH.BAS.CD).  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. \"\n\"DT.ODA.DACD.HLTH.GEN.CD\",\"Gross ODA aid disbursement for general health, DAC donors total (current US$)\",\"This is described as health policy and administrative management; medical education/training; medical research ad medical services.  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. \"\n\"DT.ODA.DACD.KD\",\"Net ODA received from DAC donors (constant 2010 US$)\",\"Official development assistance and net official aid record the actual international transfer by the donor of financial resources or of goods or services valued at the cost to the donor, less any repayments of loan principal during the same period. Data are in constant 2008 dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Aid Recipients, Development Cooperation Report, and International Development Statistics database.\"\n\"DT.ODA.DACD.MLR.CNTRL.CD\",\"ODA aid disbursements for Malaria control, DAC donors total (current US$)\",\"Special programme to address the control of malaria. Note: data for Sub-Saharan Africa include \\\"South of Sahara regional\\\".  Detailed descriptions are available www.oecd.org/dac/stats/crs/directives.  \",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development.\"\n\"DT.ODA.DACD.MSEC.CD\",\"Gross ODA aid disbursement for multisector,  DAC donors total (current US$)\",\"This is the aggregate total for general environment protection (DT.ODA.DACD.MSEC.GENV.CD); other multisector initiatives (DT.ODA.DACD.MSEC.OMSEC.CD).  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.ODA.DACD.MSEC.GENV.CD\",\"Gross ODA aid disbursement for general environment protection, DAC donors total (current US$)\",\"This is described environmental policy and administrative management; biosphere protection; bio-diversity; site preservation; flood prevention/control; environmental education/training and environmental research.  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.ODA.DACD.MSEC.OMSEC.CD\",\"Gross ODA aid disbursement for other multisector initiatives, DAC donors total (current US$)\",\"This is described as multisector aid; urban development and management; rural development; non-agricultural alternative development; multisector education/training and research/scientific institutions.  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.ODA.DACD.POP.CD\",\"Gross ODA aid disbursement for population programmes and reproductive health, DAC donors total (current US$)\",\"This is described as population policy and administrative management; reproductive health care; family planning; STD control including HIV/AIDS and personnel development for population and reproductive health.  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.ODA.DACD.PROD.AGRI.AGR.CD\",\"Gross ODA aid disbursement for agriculture, DAC donors total (current US$)\",\"This is described as agricultural policy and administrative management; agriculture development; agricultural water land resources; agricultural water resources; agricultural inputs; food crop production; industrial crops/export crops; livestock; agrarian reform; agricultural alternative development; agricultural extension; agricultural education/training;  agricultural research; agricultural services; plant and post-harvest protection and pest control; agricultural financial services, agricultural co-operatives and livestock services. Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.ODA.DACD.PROD.AGRI.CD\",\"Gross ODA aid disbursement for agriculture, forestry and fishing sector, DAC donors total (current US$)\",\"This is the aggregate total for agriculture (DT.ODA.DACD.PROD.AGRI.AGR.CD); forestry (DT.ODA.DACD.PROD.AGRI.FORS.CD) and fishing (DT.ODA.DACD.PROD.AGRI.FISH.CD).  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.ODA.DACD.PROD.AGRI.FISH.CD\",\"Gross ODA aid disbursement for fishing, DAC donors total (current US$)\",\"This is described as fishing policy and administrative management; fishery development; fishery education/training; fishery research and fishery services. Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.ODA.DACD.PROD.AGRI.FORS.CD\",\"Gross ODA aid disbursement for forestry, DAC donors total (current US$)\",\"This is described as forestry policy and administrative management; forestry development; fuelwood/charcoal; forestry education/training; forestry research and forestry services.  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.ODA.DACD.PROD.CD\",\"Gross ODA aid disbursement for production sectors,  DAC donors total (current US$)\",\"This is the aggregate total for agriculture, forestry and fishing (DT.ODA.DACD.PROD.AGRI.CD); industry, mining and construction (DT.ODA.DACD.PROD.INDS.CD); trade policy and regulations (DT.ODA.DACD.PROD.TRDP.CD) and tourism (DT.ODA.DACD.PROD.TRSM.CD).  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.ODA.DACD.PROD.INDS.CD\",\"Gross ODA aid disbursement for industry, mining and construction, DAC donors total (current US$)\",\"This is the aggregate total for industry (DT.ODA.DACD.PROD.INDS.IND.CD); mining (DT.ODA.DACD.PROD.INDS.MIN.CD) and construction (DT.ODA.DACD.PROD.INDS.CON.CD).  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.ODA.DACD.PROD.INDS.CON.CD\",\"Gross ODA aid disbursement for construction,  DAC donors total (current US$)\",\"This is described as construction policy and administrative management.  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.ODA.DACD.PROD.INDS.IND.CD\",\"Gross ODA aid disbursement for industry,  DAC donors total (current US$)\",\"This is industrial policy and administrative management; industrial development; small and medium-sized enterprises (SME) development; cottage industries and handicraft; agri-industries; food industries; textiles, leather and substitutes; chemicals; fertilizer plants; cement/lime/plaster; energy manufacturing; pharmaceutical production; basic metal industries; non-ferous metal industries; engineering; transport equipment industry and technological research and development. Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.ODA.DACD.PROD.INDS.MIN.CD\",\"Gross ODA aid disbursement for mineral resources and mining,  DAC donors total (current US$)\",\"This is described as mineral/mining policy and administrative management; mineral prospection and exploration; coal; oil and gas; ferrous metals; non-ferrous metals; precious metals/materials; industrial minerals; fertilizer minerals and offshore minerals. Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.ODA.DACD.PROD.TRDP.CD\",\"Gross ODA aid disbursement for trade policy and regulations, DAC donors total (current US$)\",\"This is described as trade policy and administrative management; trade facilitation; regional trade agreements (RTAs); multilateral trade negotiations; trade-related adjustment and trade education/training.  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.ODA.DACD.PROD.TRSM.CD\",\"Gross ODA aid disbursement for tourism sector, DAC donors total (current US$)\",\"This described as tourism policy and administrative management.  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.ODA.DACD.PRVT.CD\",\"Total ODA Private Net, DAC donors (current US$)\",\"Net private aid is private transactions broken down into direct investment, portfolio investment and export credits (net). Private transactions are those undertaken by firms and individuals resident in the reporting country. Portfolio investment corresponds to bonds and equities. Inflows into emerging countries’ stocks markets, are, however, heavily understated. Accordingly, the coverage of portfolio investment differs in these regards from the coverage of bank claims, which include indistinguishably export credit lending by banks. The bank claims data represent the net change in banks’ claims after adjustment to eliminate the effect of changes in exchange rates. They are therefore a proxy for net flow data, but are not themselves a net flow figure. They differ in two further regards from other OECD data. First, they relate to loans by banks resident in countries which report quarterly to the Bank for International Settlements (BIS). Secondly, no adjustment has been made to exclude short-term claims.  Data are expressed in current U.S. dollars. \",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.ODA.DACD.RFGE.CD\",\"Gross ODA aid disbursement for refugees in donor countries,  DAC donors total (current US$)\",\"This is described as support to refugees in donor countries.  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.ODA.DACD.SOCI.CD\",\"Gross ODA aid disbursement for social infrastructure & services,  DAC donors total (current US$)\",\"This is the aggregate total for education (DT.ODA.DACD.EDU.CD); health (DT.ODA.DACD.HLTH.CD); population programmes (DT.ODA.DACD.POP.CD); water supply and sanitation (DT.ODA.DACD.WSS.CD) and government and civil society (DT.ODA.DACD.GVCS.CD).  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.ODA.DACD.TSEC.CD\",\"Gross ODA aid disbursement for total sector allocable, DAC donors total (current US$)\",\"This is the aggregate total of allocable sectors as follows: I.1 Education, Total; I.2 Health, Total; I.3 Population Programmes; I.4 Water Supply & Sanitation; I.5 Government & Civil Society; I.6 Other Social Infrastructure & Services; II.1Transport & Storage; II.2Communications; II.3 Energy; II.4 Banking & Financial Services; II.5 Business & Other Services; III.1 Agriculture - Forestry - Fishing, Total; III.2 Industry - Mining - Construction, Total; III.3 Trade Policy and Regulations; III.4 Tourism; IV.1 General Environment Protection; IV.2 Women In Development; IV.3 Other Multisector. Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.ODA.DACD.UNAL.CD\",\"Gross ODA aid disbursement for unallocated/unspecified support, DAC donors total (current US$)\",\"This is described as sectors not specified and promotion of development awareness.  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.ODA.DACD.WSS.CD\",\"Gross ODA aid disbursement for water supply and sanitation, DAC donors total (current US$)\",\"This is described as water resources policy and administrative management; water resources protection; water supply and sanitation - large systems; basic drinking water supply and basic sanitation; river development; waste management/disposal and education and training in water supply and sanitation.  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.ODA.DACD.ZSG\",\"Net ODA received from DAC donors (% of recipient's GDP)\",\"Official development assistance and net official aid record the actual international transfer by the donor of financial resources or of goods or services valued at the cost to the donor, less any repayments of loan principal during the same period. \",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. World Bank gross domestic product estimates are used for the denominator.\"\n\"DT.ODA.DACD.ZSI\",\"Net ODA received from DAC donors (% of recipient's GDI)\",\"Official development assistance and net official aid record the actual international transfer by the donor of financial resources or of goods or services valued at the cost to the donor, less any repayments of loan principal during the same period.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. World Bank gross domestic investment estimates are used for the denominator.\"\n\"DT.ODA.MULT.CD\",\"Net ODA received from multilateral donors (current US$)\",\"Official development assistance and net official aid record the actual international transfer by the donor of financial resources or of goods or services valued at the cost to the donor, less any repayments of loan principal during the same period. Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.ODA.MULT.CD.PC\",\"Net ODA received per capita from multilateral donors (current US$)\",\"Official development assistance and net official aid record the actual international transfer by the donor of financial resources or of goods or services valued at the cost to the donor, less any repayments of loan principal during the same period. Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. World Bank population estimates are used for the denominator.\"\n\"DT.ODA.MULT.KD\",\"Net ODA received from multilateral donors (constant 2010 US$)\",\"Official development assistance and net official aid record the actual international transfer by the donor of financial resources or of goods or services valued at the cost to the donor, less any repayments of loan principal during the same period. Data are in constant 2008 dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. World Bank population estimates are used for the denominator.\"\n\"DT.ODA.MULT.ZSG\",\"Net ODA received from multilateral donors (% of GDP)\",\"Official development assistance and net official aid record the actual international transfer by the donor of financial resources or of goods or services valued at the cost to the donor, less any repayments of loan principal during the same period.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. World Bank gross domestic product estimates are used for the denominator.\"\n\"DT.ODA.MULT.ZSI\",\"Net ODA received from multilateral donors (% of gross capital formation)\",\"Official development assistance and net official aid record the actual international transfer by the donor of financial resources or of goods or services valued at the cost to the donor, less any repayments of loan principal during the same period.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. World Bank gross capital formation estimates are used for the denominator.\"\n\"DT.ODA.MULTI.HIV.CNTRL.CD\",\"ODA aid disbursements for STD control including HIV/AIDS, Multilateral donors (current US$)\",\"All activities related to sexually transmitted diseases and HIV/AIDS control e.g. information, education and communication; testing; prevention; treatment, care.  Note: data for Sub-Saharan Africa include \\\"South of Sahara regional\\\".  Detailed descriptions are available www.oecd.org/dac/stats/crs/directives.  \",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development.\"\n\"DT.ODA.MULTI.HIV.MITI.CD\",\"ODA aid disbursements for Social mitigation of HIV/AIDS, Multilateral donors (current US$)\",\"Special programmes to address the consequences of HIV/AIDS, e.g. social, legal and economic assistance to people living with HIV/AIDS including food security and employment; support to vulnerable groups and children orphaned by HIV/AIDS; human rights of HIV/AIDS affected people. Note: data for Sub-Saharan Africa include \\\"South of Sahara regional\\\".  Detailed descriptions are available www.oecd.org/dac/stats/crs/directives.  \",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development.\"\n\"DT.ODA.MULTI.MLR.CNTRL.CD\",\"ODA aid disbursements for Malaria control, multilateral donors total (current US$)\",\"Special programme to address the control of malaria. Note: data for Sub-Saharan Africa include \\\"South of Sahara regional\\\".  Detailed descriptions are available www.oecd.org/dac/stats/crs/directives.  \",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development.\"\n\"DT.ODA.NDAC.CD\",\"Net ODA received from non-DAC donors (current US$)\",\"Official development assistance and net official aid record the actual international transfer by the donor of financial resources or of goods or services valued at the cost to the donor, less any repayments of loan principal during the same period. Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.ODA.NDAC.KD\",\"Net ODA received from non-DAC donors (constant 2010 US$)\",\"Official development assistance and net official aid record the actual international transfer by the donor of financial resources or of goods or services valued at the cost to the donor, less any repayments of loan principal during the same period. Data are in constant 2008 dollars.\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.ODA.NDAC.PRVT.CD\",\"Total ODA Private Net, non-DAC donors (current US$)\",\"The transactions covered are those undertaken by residents of non-DAC Member countries.  Net private aid is private transactions broken down into direct investment, portfolio investment and export credits (net). Private transactions are those undertaken by firms and individuals resident in the reporting country. Portfolio investment corresponds to bonds and equities. Inflows into emerging countries’ stocks markets, are, however, heavily understated. Accordingly, the coverage of portfolio investment differs in these regards from the coverage of bank claims, which include indistinguishably export credit lending by banks. The bank claims data represent the net change in banks’ claims after adjustment to eliminate the effect of changes in exchange rates. They are therefore a proxy for net flow data, but are not themselves a net flow figure. They differ in two further regards from other OECD data. First, they relate to loans by banks resident in countries which report quarterly to the Bank for International Settlements (BIS). Secondly, no adjustment has been made to exclude short-term claims.. Data are in current U.S. dollars.  \",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.ODA.NDAC.ZSG\",\"Net ODA received from non-DAC bilateral donors (% of GDP)\",\"Official development assistance and net official aid record the actual international transfer by the donor of financial resources or of goods or services valued at the cost to the donor, less any repayments of loan principal during the same period. \",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. World Bank gross domestic product estimates are used for the denominator.\"\n\"DT.ODA.NDAC.ZSI\",\"Net ODA received from non-DAC bilateral donors (% of gross capital formation)\",\"Official development assistance and net official aid record the actual international transfer by the donor of financial resources or of goods or services valued at the cost to the donor, less any repayments of loan principal during the same period. \",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. World Bank gross capital formation estimates are used for the denominator.\"\n\"DT.ODA.OATL.CD\",\"Net official aid received (current US$)\",\"Net official aid refers to aid flows (net of repayments) from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.ODA.OATL.KD\",\"Net official aid received (constant 2013 US$)\",\"Net official aid refers to aid flows (net of repayments) from official donors to countries and territories in part II of the DAC list of recipients: more advanced countries of Central and Eastern Europe, the countries of the former Soviet Union, and certain advanced developing countries and territories. Official aid is provided under terms and conditions similar to those for ODA. Part II of the DAC List was abolished in 2005. The collection of data on official aid and other resource flows to Part II countries ended with 2004 data. Data are in constant 2012 U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.ODA.ODAT.CD\",\"Net official development assistance received (current US$)\",\"Net official development assistance (ODA) consists of disbursements of loans made on concessional terms (net of repayments of principal) and grants by official agencies of the members of the Development Assistance Committee (DAC), by multilateral institutions, and by non-DAC countries to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. It includes loans with a grant element of at least 25 percent (calculated at a rate of discount of 10 percent). Data are in current U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.ODA.ODAT.CD1\",\"Net official development assistance received (current US$)\",\"Net official development assistance (ODA) consists of disbursements of loans made on concessional terms (net of repayments of principal) and grants by official agencies of the members of the Development Assistance Committee (DAC), by multilateral institutions, and by non-DAC countries to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. It includes loans with a grant element of at least 25 percent (calculated at a rate of discount of 10 percent). Data are in current U.S. dollars.\",\"Sustainable Development Goals \",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.ODA.ODAT.GD.ZS\",\"Net ODA received (% of GDP)\",\"Net official development assistance (ODA) consists of disbursements of loans made on concessional terms (net of repayments of principal) and grants by official agencies of the members of the Development Assistance Committee (DAC), by multilateral institutions, and by non-DAC countries to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. It includes loans with a grant element of at least 25 percent (calculated at a rate of discount of 10 percent).\",\"Africa Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. World Bank GDP estimates are used for the denominator.\"\n\"DT.ODA.ODAT.GI.ZS\",\"Net ODA received (% of gross capital formation)\",\"Net official development assistance (ODA) consists of disbursements of loans made on concessional terms (net of repayments of principal) and grants by official agencies of the members of the Development Assistance Committee (DAC), by multilateral institutions, and by non-DAC countries to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. It includes loans with a grant element of at least 25 percent (calculated at a rate of discount of 10 percent).\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. World Bank gross capital formation estimates are used for the denominator.\"\n\"DT.ODA.ODAT.GN.ZS\",\"Net ODA received (% of GNI)\",\"Net official development assistance (ODA) consists of disbursements of loans made on concessional terms (net of repayments of principal) and grants by official agencies of the members of the Development Assistance Committee (DAC), by multilateral institutions, and by non-DAC countries to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. It includes loans with a grant element of at least 25 percent (calculated at a rate of discount of 10 percent).\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. World Bank GNI estimates are used for the denominator.\"\n\"DT.ODA.ODAT.KD\",\"Net official development assistance received (constant 2013 US$)\",\"Net official development assistance (ODA) consists of disbursements of loans made on concessional terms (net of repayments of principal) and grants by official agencies of the members of the Development Assistance Committee (DAC), by multilateral institutions, and by non-DAC countries to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. It includes loans with a grant element of at least 25 percent (calculated at a rate of discount of 10 percent). Data are in constant 2012 U.S. dollars.\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline.\"\n\"DT.ODA.ODAT.MP.ZS\",\"Net ODA received (% of imports of goods, services and primary income)\",\"Net official development assistance (ODA) consists of disbursements of loans made on concessional terms (net of repayments of principal) and grants by official agencies of the members of the Development Assistance Committee (DAC), by multilateral institutions, and by non-DAC countries to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. It includes loans with a grant element of at least 25 percent (calculated at a rate of discount of 10 percent).\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. World Bank imports of good and services estimates are used for the denominator.\"\n\"DT.ODA.ODAT.PC.ZS\",\"Net ODA received per capita (current US$)\",\"Net official development assistance (ODA) per capita consists of disbursements of loans made on concessional terms (net of repayments of principal) and grants by official agencies of the members of the Development Assistance Committee (DAC), by multilateral institutions, and by non-DAC countries to promote economic development and welfare in countries and territories in the DAC list of ODA recipients; and is calculated by dividing net ODA received by the midyear population estimate. It includes loans with a grant element of at least 25 percent (calculated at a rate of discount of 10 percent).\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. World Bank population estimates are used for the denominator.\"\n\"DT.ODA.ODAT.XP.ZS\",\"Net ODA received (% of central government expense)\",\"Net official development assistance (ODA) consists of disbursements of loans made on concessional terms (net of repayments of principal) and grants by official agencies of the members of the Development Assistance Committee (DAC), by multilateral institutions, and by non-DAC countries to promote economic development and welfare in countries and territories in the DAC list of ODA recipients. It includes loans with a grant element of at least 25 percent (calculated at a rate of discount of 10 percent).\",\"World Development Indicators\",\"Development Assistance Committee of the Organisation for Economic Co-operation and Development, Geographical Distribution of Financial Flows to Developing Countries, Development Co-operation Report, and International Development Statistics database. Data are available online at: www.oecd.org/dac/stats/idsonline. IMF central government expense estimates are used for the denominator.\"\n\"DT.SRV.POST.ZS\",\"Debt service to export ratio, ex-post (%)\",\"The debt service to export ratio is defined as the total debt service divided by the sum of exports of goods, services, and income plus workers' remittances.  Definitions for each indicator follow.  Total debt service (TDS) shows the debt service payments on total long-term debt (public and publicly guaranteed and private nonguaranteed), use of IMF credit, and interest on short-term debt only. Debt service payments are the sum of principal repayments and interest payments in the year specified.  Exports of goods, services and income is the sum of goods (merchandise) exports, exports of (nonfactor) services and income (factor) receipts.  Data are in current U.S. dollars.  Workers' remittances are current transfers by migrants who are employed or intend to remain employed for more than a year in another economy in which they are considered residents. Some developing countries classify workers' remittances as a factor income receipt (and thus as a component of GNI). The World Bank adheres to international guidelines in defining GNI, and its classification of workers' remittances may therefore differ from national practices. This item shows receipts by the reporting country. \",\"Africa Development Indicators\",\"World Bank, Global Development Finance and International Monetary Fund, International Financial Statistics.\"\n\"DT.TDA.DECT.CD\",\"Adjustments to scheduled debt service (current US$)\",\"Adjustment to scheduled debt service equals debt service not paid plus debt service arrears reductions and prepayments. Data are denominated in U.S. dollars.  \",\"Africa Development Indicators\",\"World Bank, Global Development Finance.\"\n\"DT.TDS.BLAT.CD\",\"PPG, bilateral (TDS, current US$)\",\"Bilateral debt includes loans from governments and their agencies (including central banks), loans from autonomous bodies, and direct loans from official export credit agencies. Debt service payments are the sum of principal repayments and interest payments actually made in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.TDS.BLTC.CD\",\"PPG, bilateral concessional (TDS, current US$)\",\"Bilateral debt includes loans from governments and their agencies (including central banks), loans from autonomous bodies, and direct loans from official export credit agencies. Concessional debt is defined as loans with an original grant element of 25 percent or more. The grant element of a loan is the grant equivalent expressed as a percentage of the amount committed. It is used as a measure of the overall cost of borrowing. The grant equivalent of a loan is its commitment (present) value, less the discounted present value of its contractual debt service; conventionally, future service payments are discounted at 10 percent. Debt service payments are the sum of principal repayments and interest payments actually made in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.TDS.DEAE.CD.IL.03.US\",\"1280_T3.2_.. Debt liabilities of direct investors to direct investment enterprises (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DEAE.CD.IL.0912.US\",\"1535_T3.2_.. Debt liabilities of direct investors to direct investment enterprises (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DEAE.CD.IL.1218.US\",\"1620_T3.2_.. Debt liabilities of direct investors to direct investment enterprises (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DEAE.CD.IL.1824.US\",\"1705_T3.2_.. Debt liabilities of direct investors to direct investment enterprises (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DEAE.CD.IL.24P.US\",\"1790_T3.2_.. Debt liabilities of direct investors to direct investment enterprises (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DEAE.CD.IL.36.US\",\"1365_T3.2_.. Debt liabilities of direct investors to direct investment enterprises (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DEAE.CD.IL.69.US\",\"1450_T3.2_.. Debt liabilities of direct investors to direct investment enterprises (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DEAE.CD.IL.IQ.US\",\"1195_T3.2_.. Debt liabilities of direct investors to direct investment enterprises (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.15.UP.YR.SA.US\",\"158_T2_SDR allocations (principal) (More than 15 yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.DECT.CD\",\"Debt service on external debt, total (TDS, current US$)\",\"Total debt service is the sum of principal repayments and interest actually paid in currency, goods, or services on long-term debt, interest paid on short-term debt, and repayments (repurchases and charges) to the IMF. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.TDS.DECT.CD.00.03.MO.US\",\"034_T2_Total (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.03.US\",\"0114_T3_Total Debt Service Payments (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.03.YR.US\",\"100_T2_Total (3yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.04.06.MO.US\",\"045_T2_Total (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.04.YR.US\",\"111_T2_Total (4yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.05.10.YR.US\",\"133_T2_Total (More than 5 to 10 yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.05.YR.US\",\"122_T2_Total (5yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.07.09.MO.US\",\"056_T2_Total (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.0912.US\",\"0174_T3_Total Debt Service Payments (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.10.12.MO.US\",\"067_T2_Total (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.10.15.YR.US\",\"144_T2_Total (More than 10 to 15 yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.1218.US\",\"0194_T3_Total Debt Service Payments (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.13.18.MO.US\",\"078_T2_Total (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.15.UP.YR.US\",\"155_T2_Total (More than 15 yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.1824.US\",\"0214_T3_Total Debt Service Payments (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.19.24.MO.US\",\"089_T2_Total (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.24P.US\",\"0234_T3_Total Debt Service Payments (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.36.US\",\"0134_T3_Total Debt Service Payments (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.69.US\",\"0154_T3_Total Debt Service Payments (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.AR.03.US\",\"1286_T3.2_Gross External Debt Payments (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.AR.0912.US\",\"1541_T3.2_Gross External Debt Payments (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.AR.1218.US\",\"1626_T3.2_Gross External Debt Payments (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.AR.1824.US\",\"1711_T3.2_Gross External Debt Payments (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.AR.24P.US\",\"1796_T3.2_Gross External Debt Payments (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.AR.36.US\",\"1371_T3.2_Gross External Debt Payments (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.AR.69.US\",\"1456_T3.2_Gross External Debt Payments (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.AR.IQ.US\",\"1201_T3.2_Gross External Debt Payments (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.CB.03.US\",\"0105_T3_Deposit-Taking Corporations, except the Central Bank (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.CB.0912.US\",\"0165_T3_Deposit-Taking Corporations, except the Central Bank (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.CB.1218.US\",\"0185_T3_Deposit-Taking Corporations, except the Central Bank (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.CB.1824.US\",\"0205_T3_Deposit-Taking Corporations, except the Central Bank (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.CB.24P.US\",\"0225_T3_Deposit-Taking Corporations, except the Central Bank (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.CB.36.US\",\"0125_T3_Deposit-Taking Corporations, except the Central Bank (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.CB.69.US\",\"0145_T3_Deposit-Taking Corporations, except the Central Bank (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.CB.AR.03.US\",\"1244_T3.2_Deposit-Taking Corporations, except the Central Bank (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.CB.AR.0912.US\",\"1499_T3.2_Deposit-Taking Corporations, except the Central Bank (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.CB.AR.1218.US\",\"1584_T3.2_Deposit-Taking Corporations, except the Central Bank (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.CB.AR.1824.US\",\"1669_T3.2_Deposit-Taking Corporations, except the Central Bank (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.CB.AR.24P.US\",\"1754_T3.2_Deposit-Taking Corporations, except the Central Bank (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.CB.AR.36.US\",\"1329_T3.2_Deposit-Taking Corporations, except the Central Bank (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.CB.AR.69.US\",\"1414_T3.2_Deposit-Taking Corporations, except the Central Bank (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.CB.AR.IQ.US\",\"1159_T3.2_Deposit-Taking Corporations, except the Central Bank (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.CB.IQ.US\",\"0085_T3_Deposit-Taking Corporations, except the Central Bank (immediate) 3/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.CB.RM.US\",\"0244_T4_Deposit-Taking Corporations, except the Central Bank (One year or less)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.GG.03.US\",\"0099_T3_General Government * (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.GG.0912.US\",\"0159_T3_General Government * (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.GG.1218.US\",\"0179_T3_General Government * (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.GG.1824.US\",\"0199_T3_General Government * (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.GG.24P.US\",\"0219_T3_General Government * (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.GG.36.US\",\"0119_T3_General Government * (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.GG.69.US\",\"0139_T3_General Government * (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.GG.AR.03.US\",\"1206_T3.2_General Government (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.GG.AR.0912.US\",\"1461_T3.2_General Government (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.GG.AR.1218.US\",\"1546_T3.2_General Government (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.GG.AR.1824.US\",\"1631_T3.2_General Government (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.GG.AR.24P.US\",\"1716_T3.2_General Government (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.GG.AR.36.US\",\"1291_T3.2_General Government (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.GG.AR.69.US\",\"1376_T3.2_General Government (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.GG.AR.IQ.US\",\"1121_T3.2_General Government (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.GG.IQ.US\",\"0079_T3_General Government * (immediate) 3/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.GG.RM.US\",\"0238_T4_General Government (One year or less)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.IL.03.US\",\"0111_T3_Direct Investment: Intercompany Lending 4/ (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.IL.0912.US\",\"0171_T3_Direct Investment: Intercompany Lending 4/ (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.IL.1218.US\",\"0191_T3_Direct Investment: Intercompany Lending 4/ (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.IL.1824.US\",\"0211_T3_Direct Investment: Intercompany Lending 4/ (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.IL.24P.US\",\"0231_T3_Direct Investment: Intercompany Lending 4/ (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.IL.36.US\",\"0131_T3_Direct Investment: Intercompany Lending 4/ (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.IL.69.US\",\"0151_T3_Direct Investment: Intercompany Lending 4/ (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.IL.AR.03.US\",\"1276_T3.2_Direct Investment: Intercompany Lending 5/ (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.IL.AR.0912.US\",\"1531_T3.2_Direct Investment: Intercompany Lending 5/ (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.IL.AR.1218.US\",\"1616_T3.2_Direct Investment: Intercompany Lending 5/ (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.IL.AR.1824.US\",\"1701_T3.2_Direct Investment: Intercompany Lending 5/ (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.IL.AR.24P.US\",\"1786_T3.2_Direct Investment: Intercompany Lending 5/ (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.IL.AR.36.US\",\"1361_T3.2_Direct Investment: Intercompany Lending 5/ (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.IL.AR.69.US\",\"1446_T3.2_Direct Investment: Intercompany Lending 5/ (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.IL.AR.IQ.US\",\"1191_T3.2_Direct Investment: Intercompany Lending 5/ (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.IL.IQ.US\",\"0091_T3_Direct Investment: Intercompany Lending 4/ (immediate) 3/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.IL.RM.US\",\"0250_T4_Direct Investment: Intercompany Lending (One year or less)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.IQ.00.US\",\"023_T2_Total (immediately) 3/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.MA.03.US\",\"0102_T3_Central Bank * (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.MA.0912.US\",\"0162_T3_Central Bank * (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.MA.1218.US\",\"0182_T3_Central Bank * (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.MA.1824.US\",\"0202_T3_Central Bank * (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.MA.24P.US\",\"0222_T3_Central Bank * (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.MA.36.US\",\"0122_T3_Central Bank * (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.MA.69.US\",\"0142_T3_Central Bank * (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.MA.AR.03.US\",\"1225_T3.2_Central Bank (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.MA.AR.0912.US\",\"1480_T3.2_Central Bank (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.MA.AR.1218.US\",\"1565_T3.2_Central Bank (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.MA.AR.1824.US\",\"1650_T3.2_Central Bank (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.MA.AR.24P.US\",\"1735_T3.2_Central Bank (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.MA.AR.36.US\",\"1310_T3.2_Central Bank (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.MA.AR.69.US\",\"1395_T3.2_Central Bank (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.MA.AR.IQ.US\",\"1140_T3.2_Central Bank (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.MA.IQ.US\",\"0082_T3_Central Bank * (immediate) 3/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.MA.RM.US\",\"0241_T4_Central Bank (One year or less)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.OS.03.US\",\"0108_T3_Other Sectors (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.OS.0912.US\",\"0168_T3_Other Sectors (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.OS.1218.US\",\"0188_T3_Other Sectors (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.OS.1824.US\",\"0208_T3_Other Sectors (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.OS.24P.US\",\"0228_T3_Other Sectors (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.OS.36.US\",\"0128_T3_Other Sectors (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.OS.69.US\",\"0148_T3_Other Sectors (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.OS.IQ.US\",\"0088_T3_Other Sectors (immediate) 3/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.OS.RM.US\",\"0247_T4_Other Sectors (One year or less)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.OT.AR.03.US\",\"1260_T3.2_Other Sectors (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.OT.AR.0912.US\",\"1515_T3.2_Other Sectors (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.OT.AR.1218.US\",\"1600_T3.2_Other Sectors (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.OT.AR.1824.US\",\"1685_T3.2_Other Sectors (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.OT.AR.24P.US\",\"1770_T3.2_Other Sectors (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.OT.AR.36.US\",\"1345_T3.2_Other Sectors (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.OT.AR.69.US\",\"1430_T3.2_Other Sectors (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.OT.AR.IQ.US\",\"1175_T3.2_Other Sectors (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.RM.US\",\"0253_T4_Total (One year or less)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.CD.SA.24P.US\",\"0237_T3_.. SDR allocations (principal)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DECT.EX.ZS\",\"Total debt service (% of exports of goods, services and primary income)\",\"Total debt service is the sum of principal repayments and interest actually paid in currency, goods, or services on long-term debt, interest paid on short-term debt, and repayments (repurchases and charges) to the IMF.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.TDS.DECT.GD.ZS\",\"Total debt service (% of GDP)\",\"Total debt service is the sum of principal repayments and interest actually paid in currency, goods, or services on long-term debt, interest paid on short-term debt, and repayments (repurchases and charges) to the IMF.\",\"Africa Development Indicators\",\"World Bank, Global Development Finance.\"\n\"DT.TDS.DECT.GN.ZS\",\"Total debt service (% of GNI)\",\"Total debt service is the sum of principal repayments and interest actually paid in currency, goods, or services on long-term debt, interest paid on short-term debt, and repayments (repurchases and charges) to the IMF.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.TDS.DEFE.CD.IL.03.US\",\"1283_T3.2_.. Debt liabilities between fellow enterprises (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DEFE.CD.IL.0912.US\",\"1538_T3.2_.. Debt liabilities between fellow enterprises (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DEFE.CD.IL.1218.US\",\"1623_T3.2_.. Debt liabilities between fellow enterprises (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DEFE.CD.IL.1824.US\",\"1708_T3.2_.. Debt liabilities between fellow enterprises (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DEFE.CD.IL.24P.US\",\"1793_T3.2_.. Debt liabilities between fellow enterprises (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DEFE.CD.IL.36.US\",\"1368_T3.2_.. Debt liabilities between fellow enterprises (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DEFE.CD.IL.69.US\",\"1453_T3.2_.. Debt liabilities between fellow enterprises (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DEFE.CD.IL.IQ.US\",\"1198_T3.2_.. Debt liabilities between fellow enterprises (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DILD.CD.IL.03.US\",\"1277_T3.2_.. Debt liabilities of direct investment enterprises to direct investors (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DILD.CD.IL.0912.US\",\"1532_T3.2_.. Debt liabilities of direct investment enterprises to direct investors (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DILD.CD.IL.1218.US\",\"1617_T3.2_.. Debt liabilities of direct investment enterprises to direct investors (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DILD.CD.IL.1824.US\",\"1702_T3.2_.. Debt liabilities of direct investment enterprises to direct investors (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DILD.CD.IL.24P.US\",\"1787_T3.2_.. Debt liabilities of direct investment enterprises to direct investors (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DILD.CD.IL.36.US\",\"1362_T3.2_.. Debt liabilities of direct investment enterprises to direct investors (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DILD.CD.IL.69.US\",\"1447_T3.2_.. Debt liabilities of direct investment enterprises to direct investors (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DILD.CD.IL.IQ.US\",\"1192_T3.2_.. Debt liabilities of direct investment enterprises to direct investors (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DIMF.CD\",\"IMF repurchases and charges (TDS, current US$)\",\"IMF repurchases are total repayments of outstanding drawings from the General Resources Account during the year specified, excluding repayments due in the reserve tranche. IMF charges cover interest payments with respect to all uses of IMF resources, excluding those resulting from drawings in the reserve tranche. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.TDS.DLBN.CD.CB.AR.03.US\",\"1248_T3.2_.. Debt securities (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLBN.CD.CB.AR.0912.US\",\"1503_T3.2_.. Debt securities (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLBN.CD.CB.AR.1218.US\",\"1588_T3.2_.. Debt securities (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLBN.CD.CB.AR.1824.US\",\"1673_T3.2_.. Debt securities (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLBN.CD.CB.AR.24P.US\",\"1758_T3.2_.. Debt securities (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLBN.CD.CB.AR.36.US\",\"1333_T3.2_.. Debt securities (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLBN.CD.CB.AR.69.US\",\"1418_T3.2_.. Debt securities (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLBN.CD.CB.AR.IQ.US\",\"1163_T3.2_.. Debt securities (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLBN.CD.GG.AR.03.US\",\"1213_T3.2_.. Debt securities (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLBN.CD.GG.AR.0912.US\",\"1468_T3.2_.. Debt securities (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLBN.CD.GG.AR.1218.US\",\"1553_T3.2_.. Debt securities (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLBN.CD.GG.AR.1824.US\",\"1638_T3.2_.. Debt securities (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLBN.CD.GG.AR.24P.US\",\"1723_T3.2_.. Debt securities (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLBN.CD.GG.AR.36.US\",\"1298_T3.2_.. Debt securities (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLBN.CD.GG.AR.69.US\",\"1383_T3.2_.. Debt securities (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLBN.CD.GG.AR.IQ.US\",\"1128_T3.2_.. Debt securities (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLBN.CD.MA.AR.03.US\",\"1232_T3.2_.. Debt securities (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLBN.CD.MA.AR.0912.US\",\"1487_T3.2_.. Debt securities (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLBN.CD.MA.AR.1218.US\",\"1572_T3.2_.. Debt securities (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLBN.CD.MA.AR.1824.US\",\"1657_T3.2_.. Debt securities (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLBN.CD.MA.AR.24P.US\",\"1742_T3.2_.. Debt securities (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLBN.CD.MA.AR.36.US\",\"1317_T3.2_.. Debt securities (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLBN.CD.MA.AR.69.US\",\"1402_T3.2_.. Debt securities (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLBN.CD.MA.AR.IQ.US\",\"1147_T3.2_.. Debt securities (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLBN.CD.OT.AR.03.US\",\"1264_T3.2_.. Debt securities (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLBN.CD.OT.AR.0912.US\",\"1519_T3.2_.. Debt securities (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLBN.CD.OT.AR.1218.US\",\"1604_T3.2_.. Debt securities (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLBN.CD.OT.AR.1824.US\",\"1689_T3.2_.. Debt securities (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLBN.CD.OT.AR.24P.US\",\"1774_T3.2_.. Debt securities (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLBN.CD.OT.AR.36.US\",\"1349_T3.2_.. Debt securities (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLBN.CD.OT.AR.69.US\",\"1434_T3.2_.. Debt securities (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLBN.CD.OT.AR.IQ.US\",\"1179_T3.2_.. Debt securities (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLCD.CD.CB.AR.03.US\",\"1245_T3.2_.. Currency and deposits (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLCD.CD.CB.AR.0912.US\",\"1500_T3.2_.. Currency and deposits (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLCD.CD.CB.AR.1218.US\",\"1585_T3.2_.. Currency and deposits (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLCD.CD.CB.AR.1824.US\",\"1670_T3.2_.. Currency and deposits (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLCD.CD.CB.AR.24P.US\",\"1755_T3.2_.. Currency and deposits (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLCD.CD.CB.AR.36.US\",\"1330_T3.2_.. Currency and deposits (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLCD.CD.CB.AR.69.US\",\"1415_T3.2_.. Currency and deposits (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLCD.CD.CB.AR.IQ.US\",\"1160_T3.2_.. Currency and deposits (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLCD.CD.GG.AR.03.US\",\"1210_T3.2_.. Currency and deposits (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLCD.CD.GG.AR.0912.US\",\"1465_T3.2_.. Currency and deposits (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLCD.CD.GG.AR.1218.US\",\"1550_T3.2_.. Currency and deposits (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLCD.CD.GG.AR.1824.US\",\"1635_T3.2_.. Currency and deposits (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLCD.CD.GG.AR.24P.US\",\"1720_T3.2_.. Currency and deposits (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLCD.CD.GG.AR.36.US\",\"1295_T3.2_.. Currency and deposits (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLCD.CD.GG.AR.69.US\",\"1380_T3.2_.. Currency and deposits (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLCD.CD.GG.AR.IQ.US\",\"1125_T3.2_.. Currency and deposits (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLCD.CD.MA.AR.03.US\",\"1229_T3.2_.. Currency and deposits (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLCD.CD.MA.AR.0912.US\",\"1484_T3.2_.. Currency and deposits (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLCD.CD.MA.AR.1218.US\",\"1569_T3.2_.. Currency and deposits (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLCD.CD.MA.AR.1824.US\",\"1654_T3.2_.. Currency and deposits (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLCD.CD.MA.AR.24P.US\",\"1739_T3.2_.. Currency and deposits (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLCD.CD.MA.AR.36.US\",\"1314_T3.2_.. Currency and deposits (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLCD.CD.MA.AR.69.US\",\"1399_T3.2_.. Currency and deposits (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLCD.CD.MA.AR.IQ.US\",\"1144_T3.2_.. Currency and deposits (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLCD.CD.OT.AR.03.US\",\"1261_T3.2_.. Currency and deposits (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLCD.CD.OT.AR.0912.US\",\"1516_T3.2_.. Currency and deposits (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLCD.CD.OT.AR.1218.US\",\"1601_T3.2_.. Currency and deposits (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLCD.CD.OT.AR.1824.US\",\"1686_T3.2_.. Currency and deposits (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLCD.CD.OT.AR.24P.US\",\"1771_T3.2_.. Currency and deposits (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLCD.CD.OT.AR.36.US\",\"1346_T3.2_.. Currency and deposits (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLCD.CD.OT.AR.69.US\",\"1431_T3.2_.. Currency and deposits (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLCD.CD.OT.AR.IQ.US\",\"1176_T3.2_.. Currency and deposits (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTL.CD.CB.AR.03.US\",\"1251_T3.2_.. Loans (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTL.CD.CB.AR.0912.US\",\"1506_T3.2_.. Loans (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTL.CD.CB.AR.1218.US\",\"1591_T3.2_.. Loans (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTL.CD.CB.AR.1824.US\",\"1676_T3.2_.. Loans (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTL.CD.CB.AR.24P.US\",\"1761_T3.2_.. Loans (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTL.CD.CB.AR.36.US\",\"1336_T3.2_.. Loans (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTL.CD.CB.AR.69.US\",\"1421_T3.2_.. Loans (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTL.CD.CB.AR.IQ.US\",\"1166_T3.2_.. Loans (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTL.CD.GG.AR.03.US\",\"1216_T3.2_.. Loans (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTL.CD.GG.AR.0912.US\",\"1471_T3.2_.. Loans (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTL.CD.GG.AR.1218.US\",\"1556_T3.2_.. Loans (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTL.CD.GG.AR.1824.US\",\"1641_T3.2_.. Loans (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTL.CD.GG.AR.24P.US\",\"1726_T3.2_.. Loans (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTL.CD.GG.AR.36.US\",\"1301_T3.2_.. Loans (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTL.CD.GG.AR.69.US\",\"1386_T3.2_.. Loans (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTL.CD.GG.AR.IQ.US\",\"1131_T3.2_.. Loans (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTL.CD.MA.AR.03.US\",\"1235_T3.2_.. Loans (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTL.CD.MA.AR.0912.US\",\"1490_T3.2_.. Loans (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTL.CD.MA.AR.1218.US\",\"1575_T3.2_.. Loans (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTL.CD.MA.AR.1824.US\",\"1660_T3.2_.. Loans (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTL.CD.MA.AR.24P.US\",\"1745_T3.2_.. Loans (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTL.CD.MA.AR.36.US\",\"1320_T3.2_.. Loans (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTL.CD.MA.AR.69.US\",\"1405_T3.2_.. Loans (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTL.CD.MA.AR.IQ.US\",\"1150_T3.2_.. Loans (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTL.CD.OT.AR.03.US\",\"1267_T3.2_.. Loans (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTL.CD.OT.AR.0912.US\",\"1522_T3.2_.. Loans (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTL.CD.OT.AR.1218.US\",\"1607_T3.2_.. Loans (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTL.CD.OT.AR.1824.US\",\"1692_T3.2_.. Loans (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTL.CD.OT.AR.24P.US\",\"1777_T3.2_.. Loans (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTL.CD.OT.AR.36.US\",\"1352_T3.2_.. Loans (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTL.CD.OT.AR.69.US\",\"1437_T3.2_.. Loans (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTL.CD.OT.AR.IQ.US\",\"1182_T3.2_.. Loans (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTO.CD.CB.AR.03.US\",\"1257_T3.2_.. Other debt liabilities 3/ 4/ (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTO.CD.CB.AR.0912.US\",\"1512_T3.2_.. Other debt liabilities 3/ 4/ (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTO.CD.CB.AR.1218.US\",\"1597_T3.2_.. Other debt liabilities 3/ 4/ (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTO.CD.CB.AR.1824.US\",\"1682_T3.2_.. Other debt liabilities 3/ 4/ (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTO.CD.CB.AR.24P.US\",\"1767_T3.2_.. Other debt liabilities 3/ 4/ (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTO.CD.CB.AR.36.US\",\"1342_T3.2_.. Other debt liabilities 3/ 4/ (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTO.CD.CB.AR.69.US\",\"1427_T3.2_.. Other debt liabilities 3/ 4/ (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTO.CD.CB.AR.IQ.US\",\"1172_T3.2_.. Other debt liabilities 3/ 4/ (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTO.CD.GG.AR.03.US\",\"1222_T3.2_.. Other debt liabilities 3/ 4/ (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTO.CD.GG.AR.0912.US\",\"1477_T3.2_.. Other debt liabilities 3/ 4/ (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTO.CD.GG.AR.1218.US\",\"1562_T3.2_.. Other debt liabilities 3/ 4/ (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTO.CD.GG.AR.1824.US\",\"1647_T3.2_.. Other debt liabilities 3/ 4/ (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTO.CD.GG.AR.24P.US\",\"1732_T3.2_.. Other debt liabilities 3/ 4/ (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTO.CD.GG.AR.36.US\",\"1307_T3.2_.. Other debt liabilities 3/ 4/ (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTO.CD.GG.AR.69.US\",\"1392_T3.2_.. Other debt liabilities 3/ 4/ (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTO.CD.GG.AR.IQ.US\",\"1137_T3.2_.. Other debt liabilities 3/ 4/ (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTO.CD.MA.AR.03.US\",\"1241_T3.2_.. Other debt liabilities 3/ 4/ (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTO.CD.MA.AR.0912.US\",\"1496_T3.2_.. Other debt liabilities 3/ 4/ (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTO.CD.MA.AR.1218.US\",\"1581_T3.2_.. Other debt liabilities 3/ 4/ (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTO.CD.MA.AR.1824.US\",\"1666_T3.2_.. Other debt liabilities 3/ 4/ (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTO.CD.MA.AR.24P.US\",\"1751_T3.2_.. Other debt liabilities 3/ 4/ (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTO.CD.MA.AR.36.US\",\"1326_T3.2_.. Other debt liabilities 3/ 4/ (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTO.CD.MA.AR.69.US\",\"1411_T3.2_.. Other debt liabilities 3/ 4/ (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTO.CD.MA.AR.IQ.US\",\"1156_T3.2_.. Other debt liabilities 3/ 4/ (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTO.CD.OT.AR.03.US\",\"1273_T3.2_.. Other debt liabilities 3/ 4/ (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTO.CD.OT.AR.0912.US\",\"1528_T3.2_.. Other debt liabilities 3/ 4/ (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTO.CD.OT.AR.1218.US\",\"1613_T3.2_.. Other debt liabilities 3/ 4/ (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTO.CD.OT.AR.1824.US\",\"1698_T3.2_.. Other debt liabilities 3/ 4/ (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTO.CD.OT.AR.24P.US\",\"1783_T3.2_.. Other debt liabilities 3/ 4/ (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTO.CD.OT.AR.36.US\",\"1358_T3.2_.. Other debt liabilities 3/ 4/ (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTO.CD.OT.AR.69.US\",\"1443_T3.2_.. Other debt liabilities 3/ 4/ (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTO.CD.OT.AR.IQ.US\",\"1188_T3.2_.. Other debt liabilities 3/ 4/ (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTS.CD.GG.03.US\",\"1207_T3.2_.. Special drawing rights (allocations) * (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTS.CD.GG.0912.US\",\"1462_T3.2_.. Special drawing rights (allocations) * (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTS.CD.GG.1218.US\",\"1547_T3.2_.. Special drawing rights (allocations) * (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTS.CD.GG.1824.US\",\"1632_T3.2_.. Special drawing rights (allocations) * (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTS.CD.GG.24P.US\",\"1717_T3.2_.. Special drawing rights (allocations) * (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTS.CD.GG.36.US\",\"1292_T3.2_.. Special drawing rights (allocations) * (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTS.CD.GG.69.US\",\"1377_T3.2_.. Special drawing rights (allocations) * (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTS.CD.GG.IQ.US\",\"1122_T3.2_.. Special drawing rights (allocations) * (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTS.CD.MA.AR.03.US\",\"1226_T3.2_.. Special drawing rights (allocations) * (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTS.CD.MA.AR.0912.US\",\"1481_T3.2_.. Special drawing rights (allocations) * (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTS.CD.MA.AR.1218.US\",\"1566_T3.2_.. Special drawing rights (allocations) * (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTS.CD.MA.AR.1824.US\",\"1651_T3.2_.. Special drawing rights (allocations) * (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTS.CD.MA.AR.24P.US\",\"1736_T3.2_.. Special drawing rights (allocations) * (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTS.CD.MA.AR.36.US\",\"1311_T3.2_.. Special drawing rights (allocations) * (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTS.CD.MA.AR.69.US\",\"1396_T3.2_.. Special drawing rights (allocations) * (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTS.CD.MA.AR.IQ.US\",\"1141_T3.2_.. Special drawing rights (allocations) * (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTT.CD.CB.AR.03.US\",\"1254_T3.2_.. Trade credit and advances (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTT.CD.CB.AR.0912.US\",\"1509_T3.2_.. Trade credit and advances (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTT.CD.CB.AR.1218.US\",\"1594_T3.2_.. Trade credit and advances (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTT.CD.CB.AR.1824.US\",\"1679_T3.2_.. Trade credit and advances (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTT.CD.CB.AR.24P.US\",\"1764_T3.2_.. Trade credit and advances (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTT.CD.CB.AR.36.US\",\"1339_T3.2_.. Trade credit and advances (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTT.CD.CB.AR.69.US\",\"1424_T3.2_.. Trade credit and advances (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTT.CD.CB.AR.IQ.US\",\"1169_T3.2_.. Trade credit and advances (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTT.CD.GG.AR.03.US\",\"1219_T3.2_.. Trade credit and advances (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTT.CD.GG.AR.0912.US\",\"1474_T3.2_.. Trade credit and advances (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTT.CD.GG.AR.1218.US\",\"1559_T3.2_.. Trade credit and advances (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTT.CD.GG.AR.1824.US\",\"1644_T3.2_.. Trade credit and advances (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTT.CD.GG.AR.24P.US\",\"1729_T3.2_.. Trade credit and advances (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTT.CD.GG.AR.36.US\",\"1304_T3.2_.. Trade credit and advances (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTT.CD.GG.AR.69.US\",\"1389_T3.2_.. Trade credit and advances (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTT.CD.GG.AR.IQ.US\",\"1134_T3.2_.. Trade credit and advances (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTT.CD.MA.AR.03.US\",\"1238_T3.2_.. Trade credit and advances (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTT.CD.MA.AR.0912.US\",\"1493_T3.2_.. Trade credit and advances (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTT.CD.MA.AR.1218.US\",\"1578_T3.2_.. Trade credit and advances (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTT.CD.MA.AR.1824.US\",\"1663_T3.2_.. Trade credit and advances (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTT.CD.MA.AR.24P.US\",\"1748_T3.2_.. Trade credit and advances (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTT.CD.MA.AR.36.US\",\"1323_T3.2_.. Trade credit and advances (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTT.CD.MA.AR.69.US\",\"1408_T3.2_.. Trade credit and advances (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTT.CD.MA.AR.IQ.US\",\"1153_T3.2_.. Trade credit and advances (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTT.CD.OT.AR.03.US\",\"1270_T3.2_.. Trade credit and advances (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTT.CD.OT.AR.0912.US\",\"1525_T3.2_.. Trade credit and advances (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTT.CD.OT.AR.1218.US\",\"1610_T3.2_.. Trade credit and advances (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTT.CD.OT.AR.1824.US\",\"1695_T3.2_.. Trade credit and advances (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTT.CD.OT.AR.24P.US\",\"1780_T3.2_.. Trade credit and advances (More than 2yrs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTT.CD.OT.AR.36.US\",\"1355_T3.2_.. Trade credit and advances (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTT.CD.OT.AR.69.US\",\"1440_T3.2_.. Trade credit and advances (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLTT.CD.OT.AR.IQ.US\",\"1185_T3.2_.. Trade credit and advances (immediate) 2/\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TDS.DLXF.CD\",\"Debt service on external debt, long-term (TDS, current US$)\",\"Debt service payments are the sum of principal repayments and interest payments actually made in the year specified. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents by residents of an economy and repayable in currency, goods, or services. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.TDS.DPNG.CD\",\"Debt service on external debt, private nonguaranteed (PNG) (TDS, current US$)\",\"Private nonguaranteed debt service is an external obligation of a private debtor that is not guaranteed for repayment by a public entity. Debt service payments are the sum of principal repayments and interest payments actually made in the year specified. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents by residents of an economy and repayable in currency, goods, or services. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.TDS.DPPF.XP.ZS\",\"Debt service (PPG and IMF only, % of exports of goods, services and primary income)\",\"Debt service is the sum of principle repayments and interest actually paid in currency, goods, or services. This series differs from the standard debt to exports series. It covers only long-term public and publicly guaranteed debt and repayments (repurchases and charges) to the IMF. Data for Heavily Indebted Poor Countries (HIPC) are from HIPC Initiative's Status of Implementation Report.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.TDS.DPPG.CD\",\"Debt service on external debt, public and publicly guaranteed (PPG) (TDS, current US$)\",\"Public and publicly guaranteed debt service is the sum of principal repayments and interest actually paid in currency, goods, or services on long-term obligations of public debtors and long-term private obligations guaranteed by a public entity. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.TDS.DPPG.GN.ZS\",\"Public and publicly guaranteed debt service (% of GNI)\",\"Public and publicly guaranteed debt service is the sum of principal repayments and interest actually paid in currency, goods, or services on long-term obligations of public debtors and long-term private obligations guaranteed by a public entity.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.TDS.DPPG.XP.ZS\",\"Public and publicly guaranteed debt service (% of exports of goods, services and primary income)\",\"Public and publicly guaranteed debt service is the sum of principal repayments and interest actually paid in currency, goods, or services on long-term obligations of public debtors and long-term private obligations guaranteed by a public entity. Exports refer to exports of goods, services, and income.\",\"World Development Indicators\",\"World Bank.\"\n\"DT.TDS.MIBR.CD\",\"PPG, IBRD (TDS, current US$)\",\"Public and publicly guaranteed debt outstanding from the International Bank for Reconstruction and Development (IBRD) is nonconcessional. Nonconcessional debt excludes loans with an original grant element of 25 percent or more. Debt service payments are the sum of principal repayments and interest payments actually made in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.TDS.MIDA.CD\",\"PPG, IDA (TDS, current US$)\",\"Public and publicly guaranteed debt outstanding from the International Development Association (IDA) is concessional. Concessional debt is defined as loans with an original grant element of 25 percent or more. The grant element of a loan is the grant equivalent expressed as a percentage of the amount committed. It is used as a measure of the overall cost of borrowing. The grant equivalent of a loan is its commitment (present) value, less the discounted present value of its contractual debt service; conventionally, future service payments are discounted at 10 percent. Debt service payments are the sum of principal repayments and interest payments actually made in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.TDS.MLAT.CD\",\"Multilateral debt service (TDS, current US$)\",\"Public and publicly guaranteed multilateral loans include loans and credits from the World Bank, regional development banks, and other multilateral and intergovernmental agencies. Excluded are loans from funds administered by an international organization on behalf of a single donor government; these are classified as loans from governments. Debt service payments are the sum of principal repayments and interest payments actually made in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.TDS.MLAT.PG.ZS\",\"Multilateral debt service (% of public and publicly guaranteed debt service)\",\"Multilateral debt service is the repayment of principal and interest to the World Bank, regional development banks, and other multilateral agencies. public and publicly guaranteed debt service is the sum of principal repayments and interest actually paid in currency, goods, or services on long-term obligations of public debtors and long-term private obligations guaranteed by a public entity.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.TDS.MLTC.CD\",\"PPG, multilateral concessional (TDS, current US$)\",\"Public and publicly guaranteed multilateral loans include loans and credits from the World Bank, regional development banks, and other multilateral and intergovernmental agencies. Excluded are loans from funds administered by an international organization on behalf of a single donor government; these are classified as loans from governments. Concessional debt is defined as loans with an original grant element of 25 percent or more. The grant element of a loan is the grant equivalent expressed as a percentage of the amount committed. It is used as a measure of the overall cost of borrowing. The grant equivalent of a loan is its commitment (present) value, less the discounted present value of its contractual debt service; conventionally, future service payments are discounted at 10 percent. Debt service payments are the sum of principal repayments and interest payments actually made in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.TDS.OFFT.CD\",\"PPG, official creditors (TDS, current US$)\",\"Public and publicly guaranteed debt from official creditors includes loans from international organizations (multilateral loans) and loans from governments (bilateral loans). Loans from international organization include loans and credits from the World Bank, regional development banks, and other multilateral and intergovernmental agencies. Excluded are loans from funds administered by an international organization on behalf of a single donor government; these are classified as loans from governments. Government loans include loans from governments and their agencies (including central banks), loans from autonomous bodies, and direct loans from official export credit agencies. Debt service payments are the sum of principal repayments and interest payments actually made in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.TDS.PBND.CD\",\"PPG, bonds (TDS, current US$)\",\"Public and publicly guaranteed debt from bonds that are either publicly issued or privately placed. Debt service payments are the sum of principal repayments and interest payments actually made in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.TDS.PCBK.CD\",\"PPG, commercial banks (TDS, current US$)\",\"Public and publicly guaranteed commercial bank loans from private banks and other private financial institutions. Debt service payments are the sum of principal repayments and interest payments actually made in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.TDS.PGNG.CD\",\"Debt service, PPG and PNG private creditors (TDS, current US$)\",\"Debt service for private and public non-guaranteed debt is the sum of the two.\",\"Africa Development Indicators\",\"World Bank, Global Development Finance.\"\n\"DT.TDS.PNGB.CD\",\"PNG, bonds (TDS, current US$)\",\"Nonguaranteed long-term debt from bonds that are privately placed. Debt service payments are the sum of principal repayments and interest payments actually made in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.TDS.PNGC.CD\",\"PNG, commercial banks and other creditors (TDS, current US$)\",\"Nonguaranteed long-term commercial bank loans from private banks and other private financial institutions. Debt service payments are the sum of principal repayments and interest payments actually made in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.TDS.PROP.CD\",\"PPG, other private creditors (TDS, current US$)\",\"Public and publicly guaranteed other private credits from manufacturers, exporters, and other suppliers of goods, and bank credits covered by a guarantee of an export credit agency. Debt service payments are the sum of principal repayments and interest payments actually made in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.TDS.PRVS.CD.00.03.MO.US\",\"031_T2_Publicly-Guaranteed Private Sector External Debt 5/ (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.PRVS.CD.03.YR.US\",\"097_T2_Publicly-Guaranteed Private Sector External Debt 5/ (3yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.PRVS.CD.04.06.MO.US\",\"042_T2_Publicly-Guaranteed Private Sector External Debt 5/ (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.PRVS.CD.04.YR.US\",\"108_T2_Publicly-Guaranteed Private Sector External Debt 5/ (4yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.PRVS.CD.05.10.YR.US\",\"130_T2_Publicly-Guaranteed Private Sector External Debt 5/ (More than 5 to 10 yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.PRVS.CD.05.YR.US\",\"119_T2_Publicly-Guaranteed Private Sector External Debt 5/ (5yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.PRVS.CD.07.09.MO.US\",\"053_T2_Publicly-Guaranteed Private Sector External Debt 5/ (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.PRVS.CD.10.12.MO.US\",\"064_T2_Publicly-Guaranteed Private Sector External Debt 5/ (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.PRVS.CD.10.15.YR.US\",\"141_T2_Publicly-Guaranteed Private Sector External Debt 5/ (More than 10 to 15 yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.PRVS.CD.13.18.MO.US\",\"075_T2_Publicly-Guaranteed Private Sector External Debt 5/ (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.PRVS.CD.15.UP.YR.US\",\"152_T2_Publicly-Guaranteed Private Sector External Debt 5/ (More than 15 yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.PRVS.CD.19.24.MO.US\",\"086_T2_Publicly-Guaranteed Private Sector External Debt 5/ (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.PRVS.CD.IQ.00.US\",\"020_T2_Publicly-Guaranteed Private Sector External Debt 5/ (immediately) 3/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.PRVT.CD\",\"PPG, private creditors (TDS, current US$)\",\"Public and publicly guaranteed debt from private creditors include bonds that are either publicly issued or privately placed; commercial bank loans from private banks and other private financial institutions; and other private credits from manufacturers, exporters, and other suppliers of goods, and bank credits covered by a guarantee of an export credit agency. Debt service payments are the sum of principal repayments and interest payments actually made in the year specified. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.TDS.PUBS.CD.00.03.MO.US\",\"028_T2_Public Sector External Debt 4 / * (More than 0 to 3)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.PUBS.CD.03.YR.US\",\"094_T2_Public Sector External Debt 4 / * (3yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.PUBS.CD.04.06.MO.US\",\"039_T2_Public Sector External Debt 4 / * (More than 3 to 6)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.PUBS.CD.04.YR.US\",\"105_T2_Public Sector External Debt 4 / * (4yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.PUBS.CD.05.10.YR.US\",\"127_T2_Public Sector External Debt 4 / * (More than 5 to 10 yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.PUBS.CD.05.YR.US\",\"116_T2_Public Sector External Debt 4 / * (5yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.PUBS.CD.07.09.MO.US\",\"050_T2_Public Sector External Debt 4 / * (More than 6 to 9)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.PUBS.CD.10.12.MO.US\",\"061_T2_Public Sector External Debt 4 / * (More than 9 to 12)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.PUBS.CD.10.15.YR.US\",\"138_T2_Public Sector External Debt 4 / * (More than 10 to 15 yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.PUBS.CD.13.18.MO.US\",\"072_T2_Public Sector External Debt 4 / * (More than 12 to 18)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.PUBS.CD.15.UP.YR.US\",\"149_T2_Public Sector External Debt 4 / * (More than 15 yrs)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.PUBS.CD.19.24.MO.US\",\"083_T2_Public Sector External Debt 4 / * (More than 18 to 24)\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TDS.PUBS.CD.IQ.00.US\",\"017_T2_Public Sector External Debt 4 / * (immediately) 3/\",\"\",\"Quarterly External Debt Statistics/GDDS (New)\",\"\"\n\"DT.TRA.DECT.CD\",\"Debt service, reduction in arrears/prepayments (current US$)\",\"Adjustment - debt service arrears reductions/prepayments (-), equals principal arrears reductions/prepayments plus interest arrears reductions. Data are denominated in U.S. dollars.  \",\"Africa Development Indicators\",\"World Bank, Global Development Finance.\"\n\"DT.TXA.DECT.CD.CB.US\",\"0397_T1.4_Deposit-Taking Corporations, except the Central Bank\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TXA.DECT.CD.GG.US\",\"0391_T1.4_General Government\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TXA.DECT.CD.IL.IN.US\",\"0414_T1.4_.... Interest\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TXA.DECT.CD.IL.PR.US\",\"0413_T1.4_.... Principal\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TXA.DECT.CD.IL.US\",\"0412_T1.4_.. Direct Investment: Intercompany Lending\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TXA.DECT.CD.MA.US\",\"0394_T1.4_Central Bank\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TXA.DECT.CD.OT.HH.US\",\"0409_T1.4_.. Households and nonprofit institutions serving households (NPISHs)\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TXA.DECT.CD.OT.NB.US\",\"0403_T1.4_Other financial corporations\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TXA.DECT.CD.OT.NF.US\",\"0406_T1.4_.. Nonfinancial corporations\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TXA.DECT.CD.OT.US\",\"0400_T1.4_Other Sectors\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TXA.DECT.CD.TO.US\",\"0424_T1.4_Total\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TXA.DIDI.CD.IL.US\",\"0415_T1.4_Debt liabilities of direct investment enterprises to direct investors\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TXA.DIFE.CD.IL.US\",\"0421_T1.4_.. Debt liabilities between fellow enterprises\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TXA.DIIE.CD.IL.US\",\"0418_T1.4_.. Debt liabilities of direct investors to direct investment enterprises\",\"\",\"Quarterly External Debt Statistics/SDDS (New)\",\"\"\n\"DT.TXR.DPPG.CD\",\"Total amount of debt rescheduled (current US$)\",\"Total amount of debt rescheduled includes the debt stock, principal, interest, charges and penalties rescheduled. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.UND.DPPG.CD\",\"Undisbursed external debt, total (UND, current US$)\",\"Undisbursed debt is the total public and publicly guaranteed debt undrawn at year end; data for private nonguaranteed debt are not available. Public and publicly guaranteed long-term debt are aggregated. Public debt is an external obligation of a public debtor, including the national government, a political subdivision (or an agency of either), and autonomous public bodies. Publicly guaranteed debt is an external obligation of a private debtor that is guaranteed for repayment by a public entity. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.UND.OFFT.CD\",\"Undisbursed external debt, official creditors (UND, current US$)\",\"Undisbursed debt is the total public and publicly guaranteed debt undrawn at year end; data for private nonguaranteed debt are not available. Debt from official creditors includes loans from international organizations (multilateral loans) and loans from governments (bilateral loans). Loans from international organization include loans and credits from the World Bank, regional development banks, and other multilateral and intergovernmental agencies. Excluded are loans from funds administered by an international organization on behalf of a single donor government; these are classified as loans from governments. Government loans include loans from governments and their agencies (including central banks), loans from autonomous bodies, and direct loans from official export credit agencies. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DT.UND.PRVT.CD\",\"Undisbursed external debt, private creditors (UND, current US$)\",\"Undisbursed debt is the total public and publicly guaranteed debt undrawn at year end; data for private nonguaranteed debt are not available. Debt from private creditors include bonds that are either publicly issued or privately placed; commercial bank loans from private banks and other private financial institutions; and other private credits from manufacturers, exporters, and other suppliers of goods, and bank credits covered by a guarantee of an export credit agency. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"DXGSRMRCHNSCD\",\"Exports Merchandise, Customs, current US$, millions\",\"Merchandise (goods) exports,  free on board (f.o.b.), in current US$ millions, not seasonally adjusted.\",\"Global Economic Monitor\",\"World Bank staff calculations based on Datastream and IMF International Finance Statistics data.\"\n\"DXGSRMRCHNSKD\",\"Exports Merchandise, Customs, constant US$, millions\",\"Merchandise (goods) exports,  free on board (f.o.b.), in constant US$ millions not seasonally adjusted. The base year is 2005.\",\"Global Economic Monitor\",\"World Bank staff calculations based on Datastream and IMF International Finance Statistics data.\"\n\"DXGSRMRCHNSXD\",\"Exports Merchandise, Customs, Price, US$\",\"The price index of Merchandise (goods) exports,  free on board (f.o.b.), in currrent US$ millions. Not seasonally adjusted.\",\"Global Economic Monitor\",\"World Bank staff calculations based on Datastream and IMF International Finance Statistics data.\"\n\"DXGSRMRCHSACD\",\"Exports Merchandise, Customs, current US$, millions, seas. adj.\",\"Merchandise (goods) exports,  free on board (f.o.b.), in current US$ millions, seasonally adjusted.\",\"Global Economic Monitor\",\"World Bank staff calculations based on Datastream and IMF International Finance Statistics data.\"\n\"DXGSRMRCHSAKD\",\"Exports Merchandise, Customs, constant US$, millions, seas. adj.\",\"Merchandise (goods) exports,  free on board (f.o.b.), in constant US$ millions, seasonally adjusted. The base year is 2005.\",\"Global Economic Monitor\",\"World Bank staff calculations based on Datastream and IMF International Finance Statistics data.\"\n\"DXGSRMRCHSAXD\",\"Exports Merchandise, Customs, Price, US$, seas. adj.\",\"The price index of Merchandise (goods) exports,  free on board (f.o.b.), in US$ seasonally adjusted.\",\"Global Economic Monitor\",\"World Bank staff calculations based on Datastream and IMF International Finance Statistics data.\"\n\"E1i\",\"81.Destination Entry Rate of Incumbents: Mean\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"E1ii\",\"82.Destination Entry Rate of Incumbents: Median\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"E1iii\",\"83.Destination Entry Rate of Incumbents: StDev\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"E2i\",\"84.Destination Entry Rate of Survivors: Mean\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"E2ii\",\"85.Destination Entry Rate of Survivors: Median\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"E2iii\",\"86.Destination Entry Rate of Survivors: StDev\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"E3i\",\"87.Share of New Destinations in TEV of Incumbents: Mean\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"E3ii\",\"88.Share of New Destinations in TEV of Incumbents: Median\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"E3iii\",\"89.Share of New Destinations in TEV of Incumbents: StDev\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"E4i\",\"90.Share of New Destinations in TEV of Survivors: Mean\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"E4ii\",\"91.Share of New Destinations in TEV of Survivors: Median\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"E4iii\",\"92.Share of New Destinations in TEV of Survivors: StDev\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"E5i\",\"93.Destination Exit Rate of Incumbents: Mean\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"E5ii\",\"94.Destination Exit Rate of Incumbents: Median\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"E5iii\",\"95.Destination Exit Rate of Incumbents: StDev\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"E6i\",\"96.Destination Survival Rate of 2-year Incumbents: Mean\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"E6ii\",\"97.Destination Survival Rate of 2-year Incumbents: Median\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"E6iii\",\"98.Destination Survival Rate of 2-year Incumbents: StDev\",\"Exporter-level information on export transactions - Customs\",\"Exporter Dynamics Database: Country-Year\",\"\"\n\"EA.PRD.AGRI.KD\",\"Agriculture value added per worker (constant 2010 US$)\",\"Agriculture value added per worker is a measure of agricultural productivity. Value added in agriculture measures the output of the agricultural sector (ISIC divisions 1-5) less the value of intermediate inputs. Agriculture comprises value added from forestry, hunting, and fishing as well as cultivation of crops and livestock production. Data are in constant 2010 U.S. dollars.\",\"World Development Indicators\",\"Derived from World Bank national accounts files and Food and Agriculture Organization, Production Yearbook and data files.\"\n\"EC.XPD. CAP.CR\",\"Capital expenditure (in IDR)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, SIKD (Information System for Sub-National Budget)\"\n\"EC.XPD.GSR.CR\",\"Goods and services expenditure (in IDR)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, SIKD (Information System for Sub-National Budget)\"\n\"EC.XPD.OTHR.CR\",\"Others expenditure (in IDR)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, SIKD (Information System for Sub-National Budget)\"\n\"EC.XPD.STAF.CR\",\"Personnel expenditure (in IDR)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, SIKD (Information System for Sub-National Budget)\"\n\"EC.XPD.TOTL.CR\",\"Total Expenditure (in IDR)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, SIKD (Information System for Sub-National Budget)\"\n\"EE.BOD.TOTL.KG\",\"Organic water pollutant (BOD) emissions (kg per day)\",\"Emissions of organic water pollutants are measured by biochemical oxygen demand, which refers to the amount of oxygen that bacteria in water will consume in breaking down waste. This is a standard water-treatment test for the presence of organic pollutants.\",\"Africa Development Indicators\",\"1998 study by Hemamala Hettige, Muthukumara Mani, and David Wheeler, \\\"Industrial Pollution in Economic Development: Kuznets Revisited\\\" (available at www.worldbank.org/nipr). The data were updated by the World Bank's Development Research Group using the same methodology as the initial study.\"\n\"EG.EGY.PRIM.PP.KD\",\"Energy intensity level of primary energy (MJ/$2011 PPP GDP)\\r\\n\",\"Energy intensity level of primary energy is the ratio between energy supply and gross domestic product measured at purchasing power parity. Energy intensity is an indication of how much energy is used to produce one unit of economic output. Lower ratio indicates that less energy is used to produce one unit of output.\\r\\n\",\"World Development Indicators\",\"© OECD/IEA and World Bank, based on IEA data in IEA World Energy Balances © OECD/IEA 2013 edition, subject to https://www.iea.org/t&c/termsandconditions/\\r\\n\"\n\"EG.ELC.ACCS.RU.ZS\",\"Access to electricity, rural (% of rural population)\",\"Access to electricity, rural is the percentage of rural population with access to electricity.\",\"World Development Indicators\",\"World Bank, Sustainable Energy for all (SE4ALL) database from World Bank, Global Electrification database.\"\n\"EG.ELC.ACCS.UR.ZS\",\"Access to electricity, urban (% of urban population)\",\"Access to electricity, urban is the percentage of urban population with access to electricity.\",\"World Development Indicators\",\"World Bank, Sustainable Energy for All (SE4ALL) database from World Bank, Global Electrification database.\"\n\"EG.ELC.ACCS.ZS\",\"Access to electricity (% of population)\",\"Access to electricity is the percentage of population with access to electricity. Electrification data are collected from industry, national surveys and international sources.\",\"World Development Indicators\",\"World Bank, Sustainable Energy for All (SE4ALL) database from World Bank, Global Electrification database.\"\n\"EG.ELC.COAL.ZS\",\"Electricity production from coal sources (% of total)\",\"Sources of electricity refer to the inputs used to generate electricity. Coal refers to all coal and brown coal, both primary (including hard coal and lignite-brown coal) and derived fuels (including patent fuel, coke oven coke, gas coke, coke oven gas, and blast furnace gas). Peat is also included in this category.\",\"World Development Indicators\",\"IEA Statistics © OECD/IEA 2014 (http://www.iea.org/stats/index.asp), subject to https://www.iea.org/t&c/termsandconditions/\"\n\"EG.ELC.FOSL.ZS\",\"Electricity production from oil, gas and coal sources (% of total)\",\"Sources of electricity refer to the inputs used to generate electricity. Oil refers to crude oil and petroleum products. Gas refers to natural gas but excludes natural gas liquids. Coal refers to all coal and brown coal, both primary (including hard coal and lignite-brown coal) and derived fuels (including patent fuel, coke oven coke, gas coke, coke oven gas, and blast furnace gas). Peat is also included in this category.\",\"World Development Indicators\",\"IEA Statistics © OECD/IEA 2014 (http://www.iea.org/stats/index.asp), subject to https://www.iea.org/t&c/termsandconditions/\"\n\"EG.ELC.HYRO.ZS\",\"Electricity production from hydroelectric sources (% of total)\",\"Sources of electricity refer to the inputs used to generate electricity. Hydropower refers to electricity produced by hydroelectric power plants.\",\"World Development Indicators\",\"IEA Statistics © OECD/IEA 2014 (http://www.iea.org/stats/index.asp), subject to https://www.iea.org/t&c/termsandconditions/\"\n\"EG.ELC.LOSS.ZS\",\"Electric power transmission and distribution losses (% of output)\",\"Electric power transmission and distribution losses include losses in transmission between sources of supply and points of distribution and in the distribution to consumers, including pilferage.\",\"World Development Indicators\",\"IEA Statistics © OECD/IEA 2014 (http://www.iea.org/stats/index.asp), subject to https://www.iea.org/t&c/termsandconditions/\"\n\"EG.ELC.NGAS.ZS\",\"Electricity production from natural gas sources (% of total)\",\"Sources of electricity refer to the inputs used to generate electricity. Gas refers to natural gas but excludes natural gas liquids.\",\"World Development Indicators\",\"IEA Statistics © OECD/IEA 2014 (http://www.iea.org/stats/index.asp), subject to https://www.iea.org/t&c/termsandconditions/\"\n\"EG.ELC.NUCL.ZS\",\"Electricity production from nuclear sources (% of total)\",\"Sources of electricity refer to the inputs used to generate electricity. Nuclear power refers to electricity produced by nuclear power plants.\",\"World Development Indicators\",\"IEA Statistics © OECD/IEA 2014 (http://www.iea.org/stats/index.asp), subject to https://www.iea.org/t&c/termsandconditions/\"\n\"EG.ELC.PETR.ZS\",\"Electricity production from oil sources (% of total)\",\"Sources of electricity refer to the inputs used to generate electricity. Oil refers to crude oil and petroleum products.\",\"World Development Indicators\",\"IEA Statistics © OECD/IEA 2014 (http://www.iea.org/stats/index.asp), subject to https://www.iea.org/t&c/termsandconditions/\"\n\"EG.ELC.RNEW.ZS\",\"Renewable electricity output (% of total electricity output)\\r\\n\",\"Renewable electricity  is the share of electrity generated by renewable power plants in total electricity generated by all types of plants.\\r\\n\",\"World Development Indicators\",\"© OECD/IEA and World Bank, based on IEA data in IEA World Energy Balances © OECD/IEA 2013 edition, subject to https://www.iea.org/t&c/termsandconditions/\\r\\n\"\n\"EG.ELC.RNWX.KH\",\"Electricity production from renewable sources, excluding hydroelectric (kWh)\",\"Electricity production from renewable sources, excluding hydroelectric, includes geothermal, solar, tides, wind, biomass, and biofuels.\\n\",\"World Development Indicators\",\"IEA Statistics © OECD/IEA 2014 (http://www.iea.org/stats/index.asp), subject to https://www.iea.org/t&c/termsandconditions/\"\n\"EG.ELC.RNWX.ZS\",\"Electricity production from renewable sources, excluding hydroelectric (% of total)\",\"Electricity production from renewable sources, excluding hydroelectric, includes geothermal, solar, tides, wind, biomass, and biofuels.\\n\",\"World Development Indicators\",\"IEA Statistics © OECD/IEA 2014 (http://www.iea.org/stats/index.asp), subject to https://www.iea.org/t&c/termsandconditions/\"\n\"EG.FEC.RNEW.ZS\",\"Renewable energy consumption (% of total final energy consumption)\\r\\n\",\"Renewable energy consumption is the share of renewables energy in total final energy consumption.\\r\\n\",\"World Development Indicators\",\"© OECD/IEA and World Bank, based on IEA data in IEA World Energy Balances © OECD/IEA 2013 edition, subject to https://www.iea.org/t&c/termsandconditions/\\r\\n\"\n\"EG.GDP.PUSE.KO.PP\",\"GDP per unit of energy use (PPP $ per kg of oil equivalent)\",\"GDP per unit of energy use is the PPP GDP per kilogram of oil equivalent of energy use. PPP GDP is gross domestic product converted to current international dollars using purchasing power parity rates based on the 2011 ICP round. An international dollar has the same purchasing power over GDP as a U.S. dollar has in the United States.\",\"World Development Indicators\",\"IEA Statistics © OECD/IEA 2014 (http://www.iea.org/stats/index.asp), subject to https://www.iea.org/t&c/termsandconditions/\"\n\"EG.GDP.PUSE.KO.PP.KD\",\"GDP per unit of energy use (constant 2011 PPP $ per kg of oil equivalent)\",\"GDP per unit of energy use is the PPP GDP per kilogram of oil equivalent of energy use. PPP GDP is gross domestic product converted to 2011 constant international dollars using purchasing power parity rates. An international dollar has the same purchasing power over GDP as a U.S. dollar has in the United States.\",\"World Development Indicators\",\"IEA Statistics © OECD/IEA 2014 (http://www.iea.org/stats/index.asp), subject to https://www.iea.org/t&c/termsandconditions/\"\n\"EG.IMP.CONS.ZS\",\"Energy imports, net (% of energy use)\",\"Net energy imports are estimated as energy use less production, both measured in oil equivalents. A negative value indicates that the country is a net exporter. Energy use refers to use of primary energy before transformation to other end-use fuels, which is equal to indigenous production plus imports and stock changes, minus exports and fuels supplied to ships and aircraft engaged in international transport.\",\"World Development Indicators\",\"IEA Statistics © OECD/IEA 2014 (http://www.iea.org/stats/index.asp), subject to https://www.iea.org/t&c/termsandconditions/\"\n\"EG.IMP.TOTL.KT.OE\",\"Energy imports (kt of oil equivalent)\",\"Net energy imports are estimated as energy use less production, both measured in oil equivalents. A negative value indicates that the country is a net exporter. Energy use refers to use of primary energy before transformation to other end-use fuels, which is equal to indigenous production plus imports and stock changes, minus exports and fuels supplied to ships and aircraft engaged in international transport.\",\"Africa Development Indicators\",\"International Energy Agency and United Nations, Energy Statistics Yearbook.\"\n\"EG.NSF.ACCS.RU.ZS\",\"Access to non-solid fuel, rural (% of rural population)\",\"Access to non-solid fuel, rural is the percentage of rural population with access to non-solid fuel.\",\"World Development Indicators\",\"World Bank, Sustainable Energy for all (SE4ALL) database from WHO Global Household Energy database.\"\n\"EG.NSF.ACCS.UR.ZS\",\"Access to non-solid fuel, urban (% of urban population)\",\"Access to non-solid fuel, urban is the percentage of urban population with access to non-solid fuel.\",\"World Development Indicators\",\"World Bank, Sustainable Energy for all (SE4ALL) database from WHO Global Household Energy database.\"\n\"EG.NSF.ACCS.ZS\",\"Access to non-solid fuel (% of population)\",\"Access to non-solid fuel is the percentage of population with access to non-solid fuel.\",\"World Development Indicators\",\"World Bank, Sustainable Energy for all (SE4ALL) database from WHO Global Household Energy database.\"\n\"EG.USE.COMM.CL.ZS\",\"Alternative and nuclear energy (% of total energy use)\",\"Clean energy is noncarbohydrate energy that does not produce carbon dioxide when generated. It includes hydropower and nuclear, geothermal, and solar power, among others.\",\"World Development Indicators\",\"IEA Statistics © OECD/IEA 2014 (http://www.iea.org/stats/index.asp), subject to https://www.iea.org/t&c/termsandconditions/\"\n\"EG.USE.COMM.FO.ZS\",\"Fossil fuel energy consumption (% of total)\",\"Fossil fuel comprises coal, oil, petroleum, and natural gas products.\",\"World Development Indicators\",\"IEA Statistics © OECD/IEA 2014 (http://www.iea.org/stats/index.asp), subject to https://www.iea.org/t&c/termsandconditions/\"\n\"EG.USE.COMM.GD.PP.KD\",\"Energy use (kg of oil equivalent) per $1,000 GDP (constant 2011 PPP)\",\"Energy use per PPP GDP is the kilogram of oil equivalent of energy use per constant PPP GDP. Energy use refers to use of primary energy before transformation to other end-use fuels, which is equal to indigenous production plus imports and stock changes, minus exports and fuels supplied to ships and aircraft engaged in international transport. PPP GDP is gross domestic product converted to 2011 constant international dollars using purchasing power parity rates. An international dollar has the same purchasing power over GDP as a U.S. dollar has in the United States.\",\"World Development Indicators\",\"IEA Statistics © OECD/IEA 2014 (http://www.iea.org/stats/index.asp), subject to https://www.iea.org/t&c/termsandconditions/\"\n\"EG.USE.CRNW.ZS\",\"Combustible renewables and waste (% of total energy)\",\"Combustible renewables and waste comprise solid biomass, liquid biomass, biogas, industrial waste, and municipal waste, measured as a percentage of total energy use.\",\"World Development Indicators\",\"IEA Statistics © OECD/IEA 2014 (http://www.iea.org/stats/index.asp), subject to https://www.iea.org/t&c/termsandconditions/\"\n\"EG.USE.ELEC.KH.PC\",\"Electric power consumption (kWh per capita)\",\"Electric power consumption measures the production of power plants and combined heat and power plants less transmission, distribution, and transformation losses and own use by heat and power plants.\",\"World Development Indicators\",\"IEA Statistics © OECD/IEA 2014 (http://www.iea.org/stats/index.asp), subject to https://www.iea.org/t&c/termsandconditions/\"\n\"EG.USE.PCAP.KG.OE\",\"Energy use (kg of oil equivalent per capita)\",\"Energy use refers to use of primary energy before transformation to other end-use fuels, which is equal to indigenous production plus imports and stock changes, minus exports and fuels supplied to ships and aircraft engaged in international transport.\",\"World Development Indicators\",\"IEA Statistics © OECD/IEA 2014 (http://www.iea.org/stats/index.asp), subject to https://www.iea.org/t&c/termsandconditions/\"\n\"EMBI\",\"J.P. Morgan Emerging Markets Bond Index (EMBI+)\",\"J.P. Morgan Emerging Markets Bond Index Plus is a market capitalization-weighted index based on bonds in emerging markets. the EMBI series which covers all of the external currency denomination debt of the emerging markets, as opposed to simply Brady Bond investment.  It is constructed with well-defined liquidity criteria to ensure that the index provides a fair and replicable benchmark. There are currently 31 instruments from 21 countries.\",\"Global Economic Monitor\",\"World Bank staff calculations based on Datastream data.\"\n\"EN.AGR.EMPL\",\"Economically active population in agriculture (number)\",\"Agricultural employment shows the number of workers in the agricultural sector.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, Production Yearbook and data files.\"\n\"EN.AGR.EMPL.FE\",\"Economically active population in agriculture, female (FAO, number)\",\"Economically active female population in agriculture is that part of the economically active female population engaged in or seeking work in agriculture, hunting, fishing or forestry.  \",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"EN.AGR.EMPL.IN\",\"Agricultural population (FAO, number)\",\"The Agricultural Population is defined as all persons depending for their livelihood on agriculture, hunting, fishing or forestry. This estimate comprises all persons actively engaged in agriculture and their non-working dependants. The Agricultural Population series are estimated by FAO based on the total population series obtained from UN Population Division (\\\"World population prospects: The 2008 Revision\\\") and the ratios of labour force in total population and agricultural labour force in total labour force from ILO: (\\\"Economically active population, 1950-2010: The 4th Revision\\\", ILO, Geneva, 1996). Direct information on agricultural population derived from national population censuses or surveys is scarce.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"EN.AGR.EMPL.MA\",\"Economically active population in agriculture, male (FAO, number)\",\"Economically active male population in agriculture is that part of the economically active male population engaged in or seeking work in agriculture, hunting, fishing or forestry.  \",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"EN.ANM.THRD.NO\",\"Animal species, threatened\",\"Animal species are mammals (excluding whales and porpoises) and birds (included within a country's breeding or wintering ranges). Threatened species are the number of species classified by the IUCN as endangered, vulnerable, rare, indeterminate, out of danger, or insufficiently known.\",\"Africa Development Indicators\",\"United Nations Environmental Program and the World Conservation Monitoring Centre, and International Union for Conservation of Nature, Red List of Threatened Species.\"\n\"EN.ATM.CO2E.CP.KT\",\"CO2 emissions from cement production (thousand metric tons)\",\"Carbon dioxide emissions from cement production refer mainly to emissions during cement production. Cement production is a multi-step process and CO2 is actually released from klinker production during the cement production process. The U.S. Department of Energy’s carbon Dioxide Information Analysis Center (CDIAC) calculates annual anthropogenic emissions from data on fossil fuel consumption (from the United Nations Statistics Division’s World Energy Data Set) and world cement manufacturing (from the U.S. Bureau of Mine’s Cement Manufacturing Data Set).  Carbon dioxide emissions, often calculated and reported as elemental carbon, were converted to actual carbon dioxide mass by multiplying them by 3.664 (the ratio of the mass of carbon to that of carbon dioxide).  Although estimates of global carbon dioxide emissions are probably accurate within 10 percent (as calculated from global average file chemistry and use), country estimates may have larger error bounds.  Trends estimated from a consistent time series tend to be more accurate than individual values.  Each year the CDIAC recalculates the entire time series since 1949, incorporating recent findings and corrections.  Estimates exclude fuels supplied to ships and aircraft in international transport because of the difficulty of apportioning he fuels among benefitting countries.  The ratio of carbon dioxide per unit of energy shows carbon intensity, which is the amount of carbon dioxide emitted as a result of using one unit of energy in the process of production.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"EN.ATM.CO2E.EG.ZS\",\"CO2 intensity (kg per kg of oil equivalent energy use)\",\"Carbon dioxide emissions from solid fuel consumption refer mainly to emissions from use of coal as an energy source.\",\"World Development Indicators\",\"Carbon Dioxide Information Analysis Center, Environmental Sciences Division, Oak Ridge National Laboratory, Tennessee, United States.\"\n\"EN.ATM.CO2E.FF.KT\",\"CO2 emissions from fossil-fuels, total (thousand metric tons)\",\"Fossil fuel is any hydrocarbon deposit that can be burned for heat or power, such as petroleum, coal, and natural gas. This is the sum total of all fossil fuel emissions (solid fuel consumption, liquid fuel consumption, gas fuel consumption, cement production and gas flaring). The U.S. Department of Energy’s carbon Dioxide Information Analysis Center (CDIAC) calculates annual anthropogenic emissions from data on fossil fuel consumption (from the United Nations Statistics Division’s World Energy Data Set) and world cement manufacturing (from the U.S. Bureau of Mine’s Cement Manufacturing Data Set).  Carbon dioxide emissions, often calculated and reported as elemental carbon, were converted to actual carbon dioxide mass by multiplying them by 3.664 (the ratio of the mass of carbon to that of carbon dioxide).  Although estimates of global carbon dioxide emissions are probably accurate within 10 percent (as calculated from global average file chemistry and use), country estimates may have larger error bounds.  Trends estimated from a consistent time series tend to be more accurate than individual values.  Each year the CDIAC recalculates the entire time series since 1949, incorporating recent findings and corrections.  Estimates exclude fuels supplied to ships and aircraft in international transport because of the difficulty of apportioning he fuels among benefitting countries.  The ratio of carbon dioxide per unit of energy shows carbon intensity, which is the amount of carbon dioxide emitted as a result of using one unit of energy in the process of production.   \",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"EN.ATM.CO2E.FF.ZS\",\"CO2 emissions from fossil-fuels (% of total)\",\"Fossil fuel is any hydrocarbon deposit that can be burned for heat or power, such as petroleum, coal, and natural gas. This is the sum total of all fossil fuel emissions (solid fuel consumption, liquid fuel consumption, gas fuel consumption, cement production and gas flaring).  \",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"EN.ATM.CO2E.GF.KT\",\"CO2 emissions from gaseous fuel consumption (kt) \",\"Carbon dioxide emissions from liquid fuel consumption refer mainly to emissions from use of natural gas as an energy source.\",\"World Development Indicators\",\"Carbon Dioxide Information Analysis Center, Environmental Sciences Division, Oak Ridge National Laboratory, Tennessee, United States.\"\n\"EN.ATM.CO2E.GF.ZS\",\"CO2 emissions from gaseous fuel consumption (% of total) \",\"Carbon dioxide emissions from liquid fuel consumption refer mainly to emissions from use of natural gas as an energy source.\",\"World Development Indicators\",\"Carbon Dioxide Information Analysis Center, Environmental Sciences Division, Oak Ridge National Laboratory, Tennessee, United States.\"\n\"EN.ATM.CO2E.GL.KT\",\"CO2 emissions from gas flaring (thousand metric tons)\",\"Carbon dioxide emissions from gas flaring fuel consumption refer mainly to emissions from gas flaring activities.     \",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"EN.ATM.CO2E.KD.GD\",\"CO2 emissions (kg per 2010 US$ of GDP)\",\"Carbon dioxide emissions are those stemming from the burning of fossil fuels and the manufacture of cement. They include carbon dioxide produced during consumption of solid, liquid, and gas fuels and gas flaring.\",\"World Development Indicators\",\"Carbon Dioxide Information Analysis Center, Environmental Sciences Division, Oak Ridge National Laboratory, Tennessee, United States.\"\n\"EN.ATM.CO2E.KT\",\"CO2 emissions (kt)\",\"Carbon dioxide emissions are those stemming from the burning of fossil fuels and the manufacture of cement. They include carbon dioxide produced during consumption of solid, liquid, and gas fuels and gas flaring.\",\"World Development Indicators\",\"Carbon Dioxide Information Analysis Center, Environmental Sciences Division, Oak Ridge National Laboratory, Tennessee, United States.\"\n\"EN.ATM.CO2E.LF.KT\",\"CO2 emissions from liquid fuel consumption (kt) \",\"Carbon dioxide emissions from liquid fuel consumption refer mainly to emissions from use of petroleum-derived fuels as an energy source.\",\"World Development Indicators\",\"Carbon Dioxide Information Analysis Center, Environmental Sciences Division, Oak Ridge National Laboratory, Tennessee, United States.\"\n\"EN.ATM.CO2E.LF.ZS\",\"CO2 emissions from liquid fuel consumption (% of total) \",\"Carbon dioxide emissions from liquid fuel consumption refer mainly to emissions from use of petroleum-derived fuels as an energy source.\",\"World Development Indicators\",\"Carbon Dioxide Information Analysis Center, Environmental Sciences Division, Oak Ridge National Laboratory, Tennessee, United States.\"\n\"EN.ATM.CO2E.PC\",\"CO2 emissions (metric tons per capita)\",\"Carbon dioxide emissions are those stemming from the burning of fossil fuels and the manufacture of cement. They include carbon dioxide produced during consumption of solid, liquid, and gas fuels and gas flaring.\",\"World Development Indicators\",\"Carbon Dioxide Information Analysis Center, Environmental Sciences Division, Oak Ridge National Laboratory, Tennessee, United States.\"\n\"EN.ATM.CO2E.PP.GD\",\"CO2 emissions (kg per PPP $ of GDP)\",\"Carbon dioxide emissions are those stemming from the burning of fossil fuels and the manufacture of cement. They include carbon dioxide produced during consumption of solid, liquid, and gas fuels and gas flaring.\",\"World Development Indicators\",\"Carbon Dioxide Information Analysis Center, Environmental Sciences Division, Oak Ridge National Laboratory, Tennessee, United States.\"\n\"EN.ATM.CO2E.PP.GD.KD\",\"CO2 emissions (kg per 2011 PPP $ of GDP)\",\"Carbon dioxide emissions are those stemming from the burning of fossil fuels and the manufacture of cement. They include carbon dioxide produced during consumption of solid, liquid, and gas fuels and gas flaring.\",\"World Development Indicators\",\"Carbon Dioxide Information Analysis Center, Environmental Sciences Division, Oak Ridge National Laboratory, Tennessee, United States.\"\n\"EN.ATM.CO2E.SF.KT\",\"CO2 emissions from solid fuel consumption (kt) \",\"Carbon dioxide emissions from solid fuel consumption refer mainly to emissions from use of coal as an energy source.\",\"World Development Indicators\",\"Carbon Dioxide Information Analysis Center, Environmental Sciences Division, Oak Ridge National Laboratory, Tennessee, United States.\"\n\"EN.ATM.CO2E.SF.ZS\",\"CO2 emissions from solid fuel consumption (% of total)\",\"Carbon dioxide emissions from solid fuel consumption refer mainly to emissions from use of coal as an energy source.\",\"World Development Indicators\",\"Carbon Dioxide Information Analysis Center, Environmental Sciences Division, Oak Ridge National Laboratory, Tennessee, United States.\"\n\"EN.ATM.GHGO.KT.CE\",\"Other greenhouse gas emissions, HFC, PFC and SF6 (thousand metric tons of CO2 equivalent)\",\"Other greenhouse gas emissions are by-product emissions of hydrofluorocarbons, perfluorocarbons, and sulfur hexafluoride.\",\"World Development Indicators\",\"World Bank staff estimates from original source: European Commission, Joint Research Centre (JRC)/Netherlands Environmental Assessment Agency (PBL). Emission Database for Global Atmospheric Research (EDGAR): http://edgar.jrc.ec.europa.eu/.\"\n\"EN.ATM.GHGO.ZG\",\"Other greenhouse gas emissions (% change from 1990)\",\"Other greenhouse gas emissions are by-product emissions of hydrofluorocarbons, perfluorocarbons, and sulfur hexafluoride. Each year of data shows the percentage change to that year from 1990.\",\"World Development Indicators\",\"World Bank staff estimates from original source: European Commission, Joint Research Centre (JRC)/Netherlands Environmental Assessment Agency (PBL). Emission Database for Global Atmospheric Research (EDGAR): http://edgar.jrc.ec.europa.eu/.\"\n\"EN.ATM.GHGT.KT.CE\",\"Total greenhouse gas emissions (kt of CO2 equivalent)\",\"Total greenhouse gas emissions in kt of CO2 equivalent are composed of CO2 totals excluding short-cycle biomass burning (such as agricultural waste burning and Savannah burning) but including other biomass burning (such as forest fires, post-burn decay, peat fires and decay of drained peatlands), all anthropogenic CH4 sources, N2O sources and F-gases (HFCs, PFCs and SF6).\",\"World Development Indicators\",\"European Commission, Joint Research Centre (JRC)/Netherlands Environmental Assessment Agency (PBL). Emission Database for Global Atmospheric Research (EDGAR), EDGARv4.2 FT2012: http://edgar.jrc.ec.europa.eu/\"\n\"EN.ATM.GHGT.ZG\",\"Total greenhouse gas emissions (% change from 1990)\",\"Total greenhouse gas emissions are composed of CO2 totals excluding short-cycle biomass burning (such as agricultural waste burning and Savannah burning) but including other biomass burning (such as forest fires, post-burn decay, peat fires and decay of drained peatlands), all anthropogenic CH4 sources, N2O sources and F-gases (HFCs, PFCs and SF6). Each year of data shows the percentage change to that year from 1990.\",\"World Development Indicators\",\"World Bank staff estimates from original source: European Commission, Joint Research Centre (JRC)/Netherlands Environmental Assessment Agency (PBL). Emission Database for Global Atmospheric Research (EDGAR): http://edgar.jrc.ec.europa.eu/.\"\n\"EN.ATM.HFCG.KT.CE\",\"HFC gas emissions (thousand metric tons of CO2 equivalent)\",\"Hydrofluorocarbons, used as a replacement for chlorofluorocarbons, are used mainly in refrigeration and semiconductor manufacturing.\",\"World Development Indicators\",\"European Commission, Joint Research Centre (JRC)/Netherlands Environmental Assessment Agency (PBL). Emission Database for Global Atmospheric Research (EDGAR): http://edgar.jrc.ec.europa.eu/\"\n\"EN.ATM.METH.AG.KT.CE\",\"Agricultural methane emissions (thousand metric tons of CO2 equivalent)\",\"Agricultural methane emissions are emissions from animals, animal waste, rice production, agricultural waste burning (nonenergy, on-site), and savannah burning.\",\"World Development Indicators\",\"European Commission, Joint Research Centre (JRC)/Netherlands Environmental Assessment Agency (PBL). Emission Database for Global Atmospheric Research (EDGAR): http://edgar.jrc.ec.europa.eu/\"\n\"EN.ATM.METH.AG.ZS\",\"Agricultural methane emissions (% of total)\",\"Agricultural methane emissions are emissions from animals, animal waste, rice production, agricultural waste burning (nonenergy, on-site), and savannah burning.\",\"World Development Indicators\",\"World Bank staff estimates from original source: European Commission, Joint Research Centre (JRC)/Netherlands Environmental Assessment Agency (PBL). Emission Database for Global Atmospheric Research (EDGAR): http://edgar.jrc.ec.europa.eu/.\"\n\"EN.ATM.METH.EG.KT.CE\",\"Methane emissions in energy sector (thousand metric tons of CO2 equivalent)\",\"Methane emissions from energy processes are emissions from the production, handling, transmission, and combustion of fossil fuels and biofuels.\",\"World Development Indicators\",\"European Commission, Joint Research Centre (JRC)/Netherlands Environmental Assessment Agency (PBL). Emission Database for Global Atmospheric Research (EDGAR): http://edgar.jrc.ec.europa.eu/\"\n\"EN.ATM.METH.EG.ZS\",\"Energy related methane emissions (% of total)\",\"Methane emissions from energy processes are emissions from the production, handling, transmission, and combustion of fossil fuels and biofuels.\",\"World Development Indicators\",\"World Bank staff estimates from original source: European Commission, Joint Research Centre (JRC)/Netherlands Environmental Assessment Agency (PBL). Emission Database for Global Atmospheric Research (EDGAR): http://edgar.jrc.ec.europa.eu/.\"\n\"EN.ATM.METH.IN.ZS\",\"Energy related methane emissions (% of total)\",\"Industrial methane emissions are emissions from the handling, transmission, and combustion of fossil fuels and biofuels.\",\"Africa Development Indicators\",\"International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).\"\n\"EN.ATM.METH.KT.CE\",\"Methane emissions (kt of CO2 equivalent)\",\"Methane emissions are those stemming from human activities such as agriculture and from industrial methane production.\",\"World Development Indicators\",\"European Commission, Joint Research Centre (JRC)/Netherlands Environmental Assessment Agency (PBL). Emission Database for Global Atmospheric Research (EDGAR): http://edgar.jrc.ec.europa.eu/\"\n\"EN.ATM.METH.ZG\",\"Methane emissions (% change from 1990)\",\"Methane emissions are those stemming from human activities such as agriculture and from industrial methane production. Each year of data shows the percentage change to that year from 1990.\",\"World Development Indicators\",\"World Bank staff estimates from original source: European Commission, Joint Research Centre (JRC)/Netherlands Environmental Assessment Agency (PBL). Emission Database for Global Atmospheric Research (EDGAR): http://edgar.jrc.ec.europa.eu/.\"\n\"EN.ATM.NOXE.AG.KT.CE\",\"Agricultural nitrous oxide emissions (thousand metric tons of CO2 equivalent)\",\"Agricultural nitrous oxide emissions are emissions produced through fertilizer use (synthetic and animal manure), animal waste management, agricultural waste burning (nonenergy, on-site), and savannah burning.\",\"World Development Indicators\",\"European Commission, Joint Research Centre (JRC)/Netherlands Environmental Assessment Agency (PBL). Emission Database for Global Atmospheric Research (EDGAR): http://edgar.jrc.ec.europa.eu/\"\n\"EN.ATM.NOXE.AG.ZS\",\"Agricultural nitrous oxide emissions (% of total)\",\"Agricultural nitrous oxide emissions are emissions produced through fertilizer use (synthetic and animal manure), animal waste management, agricultural waste burning (nonenergy, on-site), and savannah burning.\",\"World Development Indicators\",\"World Bank staff estimates from original source: European Commission, Joint Research Centre (JRC)/Netherlands Environmental Assessment Agency (PBL). Emission Database for Global Atmospheric Research (EDGAR): http://edgar.jrc.ec.europa.eu/.\"\n\"EN.ATM.NOXE.EG.KT.CE\",\"Nitrous oxide emissions in energy sector (thousand metric tons of CO2 equivalent)\",\"Nitrous oxide emissions from energy processes are emissions produced by the combustion of fossil fuels and biofuels.\",\"World Development Indicators\",\"European Commission, Joint Research Centre (JRC)/Netherlands Environmental Assessment Agency (PBL). Emission Database for Global Atmospheric Research (EDGAR): http://edgar.jrc.ec.europa.eu/\"\n\"EN.ATM.NOXE.EG.ZS\",\"Nitrous oxide emissions in energy sector (% of total)\",\"Nitrous oxide emissions from energy processes are emissions produced by the combustion of fossil fuels and biofuels.\",\"World Development Indicators\",\"World Bank staff estimates from original source: European Commission, Joint Research Centre (JRC)/Netherlands Environmental Assessment Agency (PBL). Emission Database for Global Atmospheric Research (EDGAR): http://edgar.jrc.ec.europa.eu/.\"\n\"EN.ATM.NOXE.IN.ZS\",\"Nitrous oxide emissions in industrial and energy processes (% of total nitrous oxide emissions)\",\"Industrial nitrous oxide emissions are emissions produced during the manufacturing of adipic acid and nitric acid.\",\"Africa Development Indicators\",\"International Energy Agency (IEA Statistics © OECD/IEA, http://www.iea.org/stats/index.asp).\"\n\"EN.ATM.NOXE.KT.CE\",\"Nitrous oxide emissions (thousand metric tons of CO2 equivalent)\",\"Nitrous oxide emissions are emissions from agricultural biomass burning, industrial activities, and livestock management.\",\"World Development Indicators\",\"European Commission, Joint Research Centre (JRC)/Netherlands Environmental Assessment Agency (PBL). Emission Database for Global Atmospheric Research (EDGAR): http://edgar.jrc.ec.europa.eu/\"\n\"EN.ATM.NOXE.ZG\",\"Nitrous oxide emissions (% change from 1990)\",\"Nitrous oxide emissions are emissions from agricultural biomass burning, industrial activities, and livestock management. Each year of data shows the percentage change to that year from 1990.\",\"World Development Indicators\",\"World Bank staff estimates from original source: European Commission, Joint Research Centre (JRC)/Netherlands Environmental Assessment Agency (PBL). Emission Database for Global Atmospheric Research (EDGAR): http://edgar.jrc.ec.europa.eu/.\"\n\"EN.ATM.PFCG.KT.CE\",\"PFC gas emissions (thousand metric tons of CO2 equivalent)\",\"Perfluorocarbons, used as a replacement for chlorofluorocarbons in manufacturing semiconductors, are a byproduct of aluminum smelting and uranium enrichment.\",\"World Development Indicators\",\"European Commission, Joint Research Centre (JRC)/Netherlands Environmental Assessment Agency (PBL). Emission Database for Global Atmospheric Research (EDGAR): http://edgar.jrc.ec.europa.eu/\"\n\"EN.ATM.PM25.MC.M3\",\"PM2.5 air pollution, mean annual exposure (micrograms per cubic meter)\",\"Population-weighted exposure to ambient PM2.5 pollution is defined as the average level of exposure of a nation's population to concentrations of suspended particles measuring less than 2.5 microns in aerodynamic diameter, which are capable of penetrating deep into the respiratory tract and causing severe health damage. Exposure is calculated by weighting mean annual concentrations of PM2.5 by population in both urban and rural areas.\",\"World Development Indicators\",\"Brauer, M. et al. 2016. “Ambient Air Pollution Exposure Estimation for the Global Burden of Disease 2013.” Environmental Science & Technology 50, no. 1: 79–88.\"\n\"EN.ATM.PM25.MC.ZS\",\"PM2.5 air pollution, population exposed to levels exceeding WHO guideline value (% of total)\",\"Percent of population exposed to ambient concentrations of PM2.5 that exceed the WHO guideline value is defined as the portion of a country’s population living in places where mean annual concentrations of PM2.5 are greater than 10 micrograms per cubic meter, the guideline value recommended by the World Health Organization as the lower end of the range of concentrations over which adverse health effects due to PM2.5 exposure have been observed.\",\"World Development Indicators\",\"Brauer, M. et al. 2016. “Ambient Air Pollution Exposure Estimation for the Global Burden of Disease 2013.” Environmental Science & Technology 50, no. 1: 79–88.\"\n\"EN.ATM.SF6G.KT.CE\",\"SF6 gas emissions (thousand metric tons of CO2 equivalent)\",\"Sulfur hexafluoride is used largely to insulate high-voltage electric power equipment.\",\"World Development Indicators\",\"European Commission, Joint Research Centre (JRC)/Netherlands Environmental Assessment Agency (PBL). Emission Database for Global Atmospheric Research (EDGAR): http://edgar.jrc.ec.europa.eu/\"\n\"EN.BIR.THRD.NO\",\"Bird species, threatened\",\"Birds are listed for countries included within their breeding or wintering ranges. Threatened species are the number of species classified by the IUCN as endangered, vulnerable, rare, indeterminate, out of danger, or insufficiently known.\",\"World Development Indicators\",\"United Nations Environmental Program and the World Conservation Monitoring Centre, and International Union for Conservation of Nature, Red List of Threatened Species.\"\n\"EN.CLC.DRSK.XQ\",\"Disaster risk reduction progress score (1-5 scale; 5=best)\",\"Disaster risk reduction progress score is an average of self-assessment scores, ranging from 1 to 5, submitted by countries under Priority 1 of the Hyogo Framework National Progress Reports.  The Hyogo Framework is a global blueprint for disaster risk reduction efforts that was adopted by 168 countries in 2005.  Assessments of \\\"Priority 1\\\" include four indicators that reflect the degree to which countries have prioritized disaster risk reduction and the strengthening of relevant institutions.\",\"World Development Indicators\",\"(UNISDR, 2009-2011 Progress Reports, http://www.preventionweb.net/english/hyogo).\"\n\"EN.CLC.GHGR.MT.CE\",\"GHG net emissions/removals by LUCF (Mt of CO2 equivalent)\",\"GHG net emissions/removals by LUCF refers to changes in atmospheric levels of all greenhouse gases attributable to forest and land-use change activities, including but not limited to (1) emissions and removals of CO2 from decreases or increases in biomass stocks due to forest management, logging, fuelwood collection, etc.; (2) conversion of existing forests and natural grasslands to other land uses; (3) removal of CO2 from the abandonment of formerly managed lands (e.g. croplands and pastures); and (4) emissions and removals of CO2 in soil associated with land-use change and management. For Annex-I countries under the UNFCCC, these data are drawn from the annual GHG inventories submitted to the UNFCCC by each country; for non-Annex-I countries, data are drawn from the most recently submitted National Communication where available.  Because of differences in reporting years and methodologies, these data are not generally considered comparable across countries. Data are in million metric tons.\",\"World Development Indicators\",\"United Nations Framework Convention on Climate Change.\"\n\"EN.CLC.MDAT.ZS\",\"Droughts, floods, extreme temperatures (% of population, average 1990-2009)\",\"Droughts, floods and extreme temperatures is the annual average percentage of the population that is affected by natural disasters classified as either droughts, floods, or extreme temperature events.  A drought is an extended period of time characterized by a deficiency in a region's water supply that is the result of constantly below average precipitation. A drought can lead to losses to agriculture, affect inland navigation and hydropower plants, and cause a lack of drinking water and famine. A flood is a significant rise of water level in a stream, lake, reservoir or coastal region. Extreme temperature events are either cold waves or heat waves. A cold wave can be both a prolonged period of excessively cold weather and the sudden invasion of very cold air over a large area. Along with frost it can cause damage to agriculture, infrastructure, and property.  A heat wave is a prolonged period of excessively hot and sometimes also humid weather relative to normal climate patterns of a certain region. Population affected is the number of people injured, left homeless or requiring immediate assistance during a period of emergency resulting from a natural disaster; it can also include displaced or evacuated people. Average percentage of population affected is calculated by dividing the sum of total affected for the period stated by the sum of the annual population figures for the period stated.\",\"World Development Indicators\",\"EM-DAT: The OFDA/CRED International Disaster Database: www.emdat.be, Université Catholique de Louvain, Brussels (Belgium), World Bank.\"\n\"EN.CO2.BLDG.ZS\",\"CO2 emissions from residential buildings and commercial and public services (% of total fuel combustion)\",\"CO2 emissions from residential buildings and commercial and public services contains all emissions from fuel combustion in households. This corresponds to IPCC Source/Sink Category 1 A 4 b. Commercial and public services includes emissions from all activities of ISIC Divisions 41, 50-52, 55, 63-67, 70-75, 80, 85, 90-93 and 99.\",\"World Development Indicators\",\"IEA Statistics © OECD/IEA 2014 (http://www.iea.org/stats/index.asp), subject to https://www.iea.org/t&c/termsandconditions/\"\n\"EN.CO2.ETOT.ZS\",\"CO2 emissions from electricity and heat production, total (% of total fuel combustion)\",\"CO2 emissions from electricity and heat production is the sum of three IEA categories of CO2 emissions: (1) Main Activity Producer Electricity and Heat which contains the sum of emissions from main activity producer electricity generation, combined heat and power generation and heat plants. Main activity producers  (formerly known as public utilities) are defined as those undertakings whose primary activity is to supply the public. They may be publicly or privately owned. This corresponds to IPCC Source/Sink Category 1 A 1 a. For the CO2 emissions from fuel combustion (summary) file, emissions from own on-site use of fuel in power plants (EPOWERPLT) are also included. (2) Unallocated Autoproducers which contains the emissions from the generation of electricity and/or heat by autoproducers. Autoproducers are defined as undertakings that generate electricity and/or heat, wholly or partly for their own use as an activity which supports their primary activity. They may be privately or publicly owned. In the 1996 IPCC Guidelines, these emissions would normally be distributed between industry, transport and \\\"other\\\" sectors. (3) Other Energy Industries contains emissions from fuel combusted in petroleum refineries, for the manufacture of solid fuels, coal mining, oil and gas extraction and other energy-producing industries. This corresponds to the IPCC Source/Sink Categories 1 A 1 b and 1 A 1 c. According to the 1996 IPCC Guidelines, emissions from coke inputs to blast furnaces can either be counted here or in the Industrial Processes source/sink category. Within detailed sectoral calculations, certain non-energy processes can be distinguished. In the reduction of iron in a blast furnace through the combustion of coke, the primary purpose of the coke oxidation is to produce pig iron and the emissions can be considered as an industrial process. Care must be taken not to double count these emissions in both Energy and Industrial Processes. In the IEA estimations, these emissions have been included in this category.\",\"World Development Indicators\",\"IEA Statistics © OECD/IEA 2014 (http://www.iea.org/stats/index.asp), subject to https://www.iea.org/t&c/termsandconditions/\"\n\"EN.CO2.MANF.ZS\",\"CO2 emissions from manufacturing industries and construction (% of total fuel combustion)\",\"CO2 emissions from manufacturing industries and construction contains the emissions from combustion of fuels in industry. The IPCC Source/Sink Category 1 A 2 includes these emissions. However, in the 1996 IPCC Guidelines, the IPCC category also includes emissions from industry autoproducers that generate electricity and/or heat. The IEA data are not collected in a way that allows the energy consumption to be split by specific end-use and therefore, autoproducers are shown as a separate item (Unallocated Autoproducers). Manufacturing industries and construction also includes emissions from coke inputs into blast furnaces, which may be reported either in the transformation sector, the industry sector or the separate IPCC Source/Sink Category 2, Industrial Processes.\",\"World Development Indicators\",\"IEA Statistics © OECD/IEA 2014 (http://www.iea.org/stats/index.asp), subject to https://www.iea.org/t&c/termsandconditions/\"\n\"EN.CO2.OTHX.ZS\",\"CO2 emissions from other sectors, excluding residential buildings and commercial and public services (% of total fuel combustion)\",\"CO2 emissions from other sectors, less residential buildings and commercial and public services, contains the emissions from commercial/institutional activities, residential, agriculture/forestry, fishing and other emissions not specified elsewhere that are included in the IPCC Source/Sink Categories 1 A 4 and 1 A 5. In the 1996 IPCC Guidelines, the category also includes emissions from autoproducers in the commercial/residential/agricultural sectors that generate electricity and/or heat. The IEA data are not collected in a way that allows the energy consumption to be split by specific end-use and therefore, autoproducers are shown as a separate item (Unallocated Autoproducers).\",\"World Development Indicators\",\"IEA Statistics © OECD/IEA 2014 (http://www.iea.org/stats/index.asp), subject to https://www.iea.org/t&c/termsandconditions/\"\n\"EN.CO2.TRAN.ZS\",\"CO2 emissions from transport (% of total fuel combustion)\",\"CO2 emissions from transport contains emissions from the combustion of fuel for all transport activity, regardless of the sector, except for international marine bunkers and international aviation. This includes domestic aviation, domestic navigation, road, rail and pipeline transport, and corresponds to IPCC Source/Sink Category 1 A 3. In addition, the IEA data are not collected in a way that allows the autoproducer consumption to be split by specific end-use and therefore, autoproducers are shown as a separate item (Unallocated Autoproducers).\",\"World Development Indicators\",\"IEA Statistics © OECD/IEA 2014 (http://www.iea.org/stats/index.asp), subject to https://www.iea.org/t&c/termsandconditions/\"\n\"EN.FSH.THRD.NO\",\"Fish species, threatened\",\"Fish species are based on Froese, R. and Pauly, D. (eds). 2008. Threatened species are the number of species classified by the IUCN as endangered, vulnerable, rare, indeterminate, out of danger, or insufficiently known.\",\"World Development Indicators\",\"Froese, R. and Pauly, D. (eds). 2008. FishBase database, www.fishbase.org.\"\n\"EN.HPT.THRD.NO\",\"Plant species (higher), threatened\",\"Higher plants are native vascular plant species. Threatened species are the number of species classified by the IUCN as endangered, vulnerable, rare, indeterminate, out of danger, or insufficiently known.\",\"World Development Indicators\",\"United Nations Environmental Program and the World Conservation Monitoring Centre, and International Union for Conservation of Nature, Red List of Threatened Species.\"\n\"EN.MAM.THRD.NO\",\"Mammal species, threatened\",\"Mammal species are mammals excluding whales and porpoises. Threatened species are the number of species classified by the IUCN as endangered, vulnerable, rare, indeterminate, out of danger, or insufficiently known.\",\"World Development Indicators\",\"United Nations Environmental Program and the World Conservation Monitoring Centre, and International Union for Conservation of Nature, Red List of Threatened Species.\"\n\"EN.NAGR.EMPL.IN\",\"Non-agricultural population (FAO, number)\",\"The non-agricultural population is obtained as a residual of agricultural population from the total population.  \",\"Africa Development Indicators\",\"Food and Agriculture Organization, electronic files and web site.\"\n\"EN.POP.DNST\",\"Population density (people per sq. km of land area)\",\"Population density is midyear population divided by land area in square kilometers. Population is based on the de facto definition of population, which counts all residents regardless of legal status or citizenship--except for refugees not permanently settled in the country of asylum, who are generally considered part of the population of their country of origin. Land area is a country's total area, excluding area under inland water bodies, national claims to continental shelf, and exclusive economic zones. In most cases the definition of inland water bodies includes major rivers and lakes.\",\"World Development Indicators\",\"Food and Agriculture Organization and World Bank population estimates.\"\n\"EN.POP.EL5M.RU.ZS\",\"Rural population living in areas where elevation is below 5 meters (% of total population)\",\"Rural population below 5m is the percentage of the total population, living in areas where the elevation is 5 meters or less.\",\"World Development Indicators\",\"Center for International Earth Science Information Network (CIESIN)/Columbia University. 2013. Urban-Rural Population and Land Area Estimates Version 2. Palisades, NY: NASA Socioeconomic Data and Applications Center (SEDAC). http://sedac.ciesin.columbia.edu/data/set/lecz-urban-rural-population-land-area-estimates-v2.\"\n\"EN.POP.EL5M.UR.ZS\",\"Urban population living in areas where elevation is below 5 meters (% of total population)\",\"Urban population below 5m is the percentage of the total population, living in areas where the elevation is 5 meters or less.\",\"World Development Indicators\",\"Center for International Earth Science Information Network (CIESIN)/Columbia University. 2013. Urban-Rural Population and Land Area Estimates Version 2. Palisades, NY: NASA Socioeconomic Data and Applications Center (SEDAC). http://sedac.ciesin.columbia.edu/data/set/lecz-urban-rural-population-land-area-estimates-v2.\"\n\"EN.POP.EL5M.ZS\",\"Population living in areas where elevation is below 5 meters (% of total population)\",\"Population below 5m is the percentage of the total population living in areas where the elevation is 5 meters or less.\",\"World Development Indicators\",\"Center for International Earth Science Information Network (CIESIN)/Columbia University. 2013. Urban-Rural Population and Land Area Estimates Version 2. Palisades, NY: NASA Socioeconomic Data and Applications Center (SEDAC). http://sedac.ciesin.columbia.edu/data/set/lecz-urban-rural-population-land-area-estimates-v2.\"\n\"EN.POP.SLUM.UR.ZS\",\"Population living in slums, (% of urban population)\",\"Population living in slums is the proportion of the urban population living in slum households. A slum household is defined as a group of individuals living under the same roof lacking one or more of the following conditions: access to improved water, access to improved sanitation, sufficient living area, and durability of housing.\",\"World Development Indicators\",\"UN HABITAT, retrieved from the United Nation's Millennium Development Goals database. Data are available at: Http://mdgs.un.org\"\n\"EN.RUR.DNST\",\"Rural population density (rural population per sq. km of arable land)\",\"Rural population density is the rural population divided by the arable land area. Rural population is calculated as the difference between the total population and the urban population. Arable land includes land defined by the FAO as land under temporary crops (double-cropped areas are counted once), temporary meadows for mowing or for pasture, land under market or kitchen gardens, and land temporarily fallow. Land abandoned as a result of shifting cultivation is excluded.\",\"Africa Development Indicators\",\"Food and Agriculture Organization and World Bank population estimates.\"\n\"EN.URB.LCTY\",\"Population in largest city\",\"Population in largest city is the urban population living in the country's largest metropolitan area.\",\"World Development Indicators\",\"United Nations, World Urbanization Prospects.\"\n\"EN.URB.LCTY.UR.ZS\",\"Population in the largest city (% of urban population)\",\"Population in largest city is the percentage of a country's urban population living in that country's largest metropolitan area.\",\"World Development Indicators\",\"United Nations, World Urbanization Prospects.\"\n\"EN.URB.MCTY\",\"Population in urban agglomerations of more than 1 million\",\"Population in urban agglomerations of more than one million is the country's population living in metropolitan areas that in 2000 had a population of more than one million people.\",\"World Development Indicators\",\"United Nations, World Urbanization Prospects.\"\n\"EN.URB.MCTY.TL.ZS\",\"Population in urban agglomerations of more than 1 million (% of total population)\",\"Population in urban agglomerations of more than one million is the percentage of a country's population living in metropolitan areas that in 2000 had a population of more than one million people.\",\"World Development Indicators\",\"United Nations, World Urbanization Prospects.\"\n\"EP.CPI.1996\",\"Consumer Price Index in 42 cities base 1996\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"EP.CPI.2002\",\"Consumer Price Index in 45 cities base 2002\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"EP.CPI.2007\",\"Consumer Price Index in 66 cities base 2007\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"EP.PMP.DESL.CD\",\"Pump price for diesel fuel (US$ per liter)\",\"Fuel prices refer to the pump prices of the most widely sold grade of diesel fuel. Prices have been converted from the local currency to U.S. dollars.\",\"World Development Indicators\",\"German Agency for International Cooperation (GIZ).\"\n\"EP.PMP.SGAS.CD\",\"Pump price for gasoline (US$ per liter)\",\"Fuel prices refer to the pump prices of the most widely sold grade of gasoline. Prices have been converted from the local currency to U.S. dollars.\",\"World Development Indicators\",\"German Agency for International Cooperation (GIZ).\"\n\"eq_pay_eq_wk\",\"Do legal provisions mandate equal pay for equal work (1=Yes, 0=No)?\",\"Are there laws or constitutional provisions mandating equal pay between men and women for work of equal value? (1=Yes,0=No)\",\"Jobs for Knowledge Platform\",\"World Bank, Doing Business project (http://www.doingbusiness.org).\"\n\"ER.BDV.TOTL.XQ\",\"GEF benefits index for biodiversity (0 = no biodiversity potential to 100 = maximum)\",\"GEF benefits index for biodiversity is a composite index of relative biodiversity potential for each country based on the species represented in each country, their threat status, and the diversity of habitat types in each country. The index has been normalized so that values run from 0 (no biodiversity potential) to 100 (maximum biodiversity potential).\",\"World Development Indicators\",\"Kiran Dev Pandey, Piet Buys, Ken Chomitz, and David Wheeler's, \\\"Biodiversity Conservation Indicators: New Tools for Priority Setting at the Global Environment Facility\\\" (2006).\"\n\"ER.FSH.AQUA.MT\",\"Aquaculture production (metric tons)\",\"Aquaculture is understood to mean the farming of aquatic organisms including fish, molluscs, crustaceans and aquatic plants. Aquaculture production specifically refers to output from aquaculture activities, which are designated for final harvest for consumption.\",\"World Development Indicators\",\"Food and Agriculture Organization.\"\n\"ER.FSH.CAPT.MT\",\"Capture fisheries production (metric tons)\",\"Capture fisheries production measures the volume of fish catches landed by a country for all commercial, industrial, recreational and subsistence purposes.\",\"World Development Indicators\",\"Food and Agriculture Organization.\"\n\"ER.FSH.PROD.MT\",\"Total fisheries production (metric tons)\",\"Total fisheries production measures the volume of aquatic species caught by a country for all commercial, industrial, recreational and subsistence purposes. The harvest from mariculture, aquaculture and other kinds of fish farming is also included.\",\"World Development Indicators\",\"Food and Agriculture Organization.\"\n\"ER.FST.DFST.ZG\",\"Annual deforestation (% of change)\",\"Average annual deforestation refers to the permanent conversion of natural forest area to other uses, including shifting cultivation, permanent agriculture, ranching, settlements, and infrastructure development. Deforested areas do not include areas logged but intended for regeneration or areas degraded by fuelwood gathering, acid precipitation, or forest fires. Negative numbers indicate an increase in forest area.\",\"Corporate Scorecard\",\"Food and Agriculture Organization, Global Forest Resources Assessment.\"\n\"ER.GDP.FWTL.M3.KD\",\"Water productivity, total (constant 2010 US$ GDP per cubic meter of total freshwater withdrawal)\",\"Water productivity is calculated as GDP in constant prices divided by annual total water withdrawal.\",\"World Development Indicators\",\"Food and Agriculture Organization, AQUASTAT data, and World Bank and OECD GDP estimates.\"\n\"ER.H2O.FWAG.ZS\",\"Annual freshwater withdrawals, agriculture (% of total freshwater withdrawal)\",\"Annual freshwater withdrawals refer to total water withdrawals, not counting evaporation losses from storage basins. Withdrawals also include water from desalination plants in countries where they are a significant source. Withdrawals can exceed 100 percent of total renewable resources where extraction from nonrenewable aquifers or desalination plants is considerable or where there is significant water reuse. Withdrawals for agriculture are total withdrawals for irrigation and livestock production. Data are for the most recent year available for 1987-2002.\",\"World Development Indicators\",\"Food and Agriculture Organization, AQUASTAT data.\"\n\"ER.H2O.FWDM.ZS\",\"Annual freshwater withdrawals, domestic (% of total freshwater withdrawal)\",\"Annual freshwater withdrawals refer to total water withdrawals, not counting evaporation losses from storage basins. Withdrawals also include water from desalination plants in countries where they are a significant source. Withdrawals can exceed 100 percent of total renewable resources where extraction from nonrenewable aquifers or desalination plants is considerable or where there is significant water reuse. Withdrawals for domestic uses include drinking water, municipal use or supply, and use for public services, commercial establishments, and homes. Data are for the most recent year available for 1987-2002.\",\"World Development Indicators\",\"Food and Agriculture Organization, AQUASTAT data.\"\n\"ER.H2O.FWIN.ZS\",\"Annual freshwater withdrawals, industry (% of total freshwater withdrawal)\",\"Annual freshwater withdrawals refer to total water withdrawals, not counting evaporation losses from storage basins. Withdrawals also include water from desalination plants in countries where they are a significant source. Withdrawals can exceed 100 percent of total renewable resources where extraction from nonrenewable aquifers or desalination plants is considerable or where there is significant water reuse. Withdrawals for industry are total withdrawals for direct industrial use (including withdrawals for cooling thermoelectric plants). Data are for the most recent year available for 1987-2002.\",\"World Development Indicators\",\"Food and Agriculture Organization, AQUASTAT data.\"\n\"ER.H2O.FWTL.K3\",\"Annual freshwater withdrawals, total (billion cubic meters)\",\"Annual freshwater withdrawals refer to total water withdrawals, not counting evaporation losses from storage basins. Withdrawals also include water from desalination plants in countries where they are a significant source. Withdrawals can exceed 100 percent of total renewable resources where extraction from nonrenewable aquifers or desalination plants is considerable or where there is significant water reuse. Withdrawals for agriculture and industry are total withdrawals for irrigation and livestock production and for direct industrial use (including withdrawals for cooling thermoelectric plants). Withdrawals for domestic uses include drinking water, municipal use or supply, and use for public services, commercial establishments, and homes. Data are for the most recent year available for 1987-2002.\",\"World Development Indicators\",\"Food and Agriculture Organization, AQUASTAT data.\"\n\"ER.H2O.FWTL.ZS\",\"Annual freshwater withdrawals, total (% of internal resources)\",\"Annual freshwater withdrawals refer to total water withdrawals, not counting evaporation losses from storage basins. Withdrawals also include water from desalination plants in countries where they are a significant source. Withdrawals can exceed 100 percent of total renewable resources where extraction from nonrenewable aquifers or desalination plants is considerable or where there is significant water reuse. Withdrawals for agriculture and industry are total withdrawals for irrigation and livestock production and for direct industrial use (including withdrawals for cooling thermoelectric plants). Withdrawals for domestic uses include drinking water, municipal use or supply, and use for public services, commercial establishments, and homes. Data are for the most recent year available for 1987-2002.\",\"World Development Indicators\",\"Food and Agriculture Organization, AQUASTAT data.\"\n\"ER.H2O.INTR.K3\",\"Renewable internal freshwater resources, total (billion cubic meters)\",\"Renewable internal freshwater resources flows refer to internal renewable resources (internal river flows and groundwater from rainfall) in the country.\",\"World Development Indicators\",\"Food and Agriculture Organization, AQUASTAT data.\"\n\"ER.H2O.INTR.PC\",\"Renewable internal freshwater resources per capita (cubic meters)\",\"Renewable internal freshwater resources flows refer to internal renewable resources (internal river flows and groundwater from rainfall) in the country. Renewable internal freshwater resources per capita are calculated using the World Bank's population estimates.\",\"World Development Indicators\",\"Food and Agriculture Organization, AQUASTAT data.\"\n\"ER.LND.PTLD.K2\",\"Terrestrial protected areas  (sq. km)\",\"Nationally protected areas are totally or partially protected areas of at least 1,000 hectares that are designated as scientific reserves with limited public access, national parks, natural monuments, nature reserves or wildlife sanctuaries, protected landscapes, and areas managed mainly for sustainable use. Marine areas, unclassified areas, and litoral (intertidal) areas are not included. The data also do not include sites protected under local or provincial law.\",\"Africa Development Indicators\",\"United Nations Environmental Program and the World Conservation Monitoring Centre, as compiled by the World Resources Institute, based on data from national authorities, national legislation and international agreements.\"\n\"ER.LND.PTLD.ZS\",\"Terrestrial protected areas (% of total land area)\",\"Terrestrial protected areas are totally or partially protected areas of at least 1,000 hectares that are designated by national authorities as scientific reserves with limited public access, national parks, natural monuments, nature reserves or wildlife sanctuaries, protected landscapes, and areas managed mainly for sustainable use. Marine areas, unclassified areas, littoral (intertidal) areas, and sites protected under local or provincial law are excluded.\",\"World Development Indicators\",\"United Nations Environmental Program and the World Conservation Monitoring Centre, as compiled by the World Resources Institute, based on data from national authorities, national legislation and international agreements.\"\n\"ER.MRN.PTMR.K2\",\"Marine protected areas (sq. km)\",\"Marine protected areas are areas of intertidal or subtidal terrain--and overlying water and associated flora and fauna and historical and cultural features--that have been reserved by law or other effective means to protect part or all of the enclosed environment.\",\"Africa Development Indicators\",\"United Nations Environmental Program and the World Conservation Monitoring Centre, as compiled by the World Resources Institute, based on data from national authorities, national legislation and international agreements.\"\n\"ER.MRN.PTMR.ZS\",\"Marine protected areas (% of territorial waters)\",\"Marine protected areas are areas of intertidal or subtidal terrain--and overlying water and associated flora and fauna and historical and cultural features--that have been reserved by law or other effective means to protect part or all of the enclosed environment.\",\"World Development Indicators\",\"United Nations Environmental Program and the World Conservation Monitoring Centre, as compiled by the World Resources Institute, based on data from national authorities, national legislation and international agreements.\"\n\"ER.PTD.TOTL.ZS\",\"Terrestrial and marine protected areas (% of total territorial area)\",\"Terrestrial protected areas are totally or partially protected areas of at least 1,000 hectares that are designated by national authorities as scientific reserves with limited public access, national parks, natural monuments, nature reserves or wildlife sanctuaries, protected landscapes, and areas managed mainly for sustainable use. Marine protected areas are areas of intertidal or subtidal terrain--and overlying water and associated flora and fauna and historical and cultural features--that have been reserved by law or other effective means to protect part or all of the enclosed environment. Sites protected under local or provincial law are excluded.\",\"World Development Indicators\",\"United Nations Environmental Program and the World Conservation Monitoring Centre, as compiled by the World Resources Institute, based on data from national authorities, national legislation and international agreements.\"\n\"exp_sa_allsa_spe_tot\",\"Total spending as percent of GDP - All Social Assistance\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"exp_sa_cc_spe_tot\",\"Total spending as percent of GDP - Conditional Cash Transfers\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"exp_sa_ct_spe_tot\",\"Total spending as percent of GDP - Cash Transfers\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"exp_sa_fw_spe_tot\",\"Total spending as percent of GDP - Fee Waivers\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"exp_sa_ik_spe_tot\",\"Total spending as percent of GDP - In-Kind\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"exp_sa_os_spe_tot\",\"Total spending as percent of GDP - Other Social Assistance\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"exp_sa_pw_spe_tot\",\"Total spending as percent of GDP - Public Works\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"exp_sa_sf_spe_tot\",\"Total spending as percent of GDP - School Feeding\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"exp_sa_sp_spe_tot\",\"Total spending as percent of GDP - Social Pension\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"FB.AST.LOAN.CB.P3\",\"Loan accounts, commercial banks (per 1,000 adults)\",\"Loan accounts at commercial banks include loans from banks to individuals, businesses, and others, including home mortgages, consumer loans, business loans, trade loans, student loans, emergency loans, agricultural loans, and the like. Commercial banks are banks with a full banking license. In some countries, the term \\\"universal banks\\\" or other terms may be used. Majority government- and state-owned banks are included in this category to the extent that they perform a broad set of retail banking functions and are regulated and supervised in the same manner as privately owned banks.\",\"Jobs for Knowledge Platform\",\"Consultative Group to Assist the Poor and the World Bank Group’s \\\"Financial Access 2010.\\\"\"\n\"FB.AST.LOAN.MF.P3\",\"Loan accounts, microfinance institutions (per 1,000 adults)\",\"Microfinance institutions are institutions whose primary business model is to lend to (and possibly take deposits from) the poor, often using specialized methodologies such as group lending. The data collected using this institutional classification necessarily understate the scale of microfinance because many banks, cooperatives, and specialized state-owned institutions provide microfinance services as part of their activities.\",\"Jobs for Knowledge Platform\",\"Consultative Group to Assist the Poor and the World Bank Group’s \\\"Financial Access 2010.\\\"\"\n\"FB.AST.NPER.ZS\",\"Bank nonperforming loans to total gross loans (%)\",\"Bank nonperforming loans to total gross loans are the value of nonperforming loans divided by the total value of the loan portfolio (including nonperforming loans before the deduction of specific loan-loss provisions). The loan amount recorded as nonperforming should be the gross value of the loan as recorded on the balance sheet, not just the amount that is overdue.\",\"World Development Indicators\",\"International Monetary Fund, Global Financial Stability Report.\"\n\"FB.ATM.TOTL.P5\",\"Automated teller machines (ATMs) (per 100,000 adults)\",\"Automated teller machines are computerized telecommunications devices that provide clients of a financial institution with access to financial transactions in a public place.\",\"World Development Indicators\",\"International Monetary Fund, Financial Access Survey.\"\n\"FB.BNK.CAPA.ZS\",\"Bank capital to assets ratio (%)\",\"Bank capital to assets is the ratio of bank capital and reserves to total assets. Capital and reserves include funds contributed by owners, retained earnings, general and special reserves, provisions, and valuation adjustments. Capital includes tier 1 capital (paid-up shares and common stock), which is a common feature in all countries' banking systems, and total regulatory capital, which includes several specified types of subordinated debt instruments that need not be repaid if the funds are required to maintain minimum capital levels (these comprise tier 2 and tier 3 capital). Total assets include all nonfinancial and financial assets.\",\"World Development Indicators\",\"International Monetary Fund, Global Financial Stability Report.\"\n\"FB.CBK.BRCH.P5\",\"Commercial bank branches (per 100,000 adults)\",\"Commercial bank branches are retail locations of resident commercial banks and other resident banks that function as commercial banks that provide financial services to customers and are physically separated from the main office but not organized as legally separated subsidiaries.\",\"World Development Indicators\",\"International Monetary Fund, Financial Access Survey.\"\n\"FB.CBK.BRWR.P3\",\"Borrowers from commercial banks (per 1,000 adults)\",\"Borrowers from commercial banks are the reported number of resident customers that are nonfinancial corporations (public and private) and households who obtained loans from commercial banks and other banks functioning as commercial banks. For many countries data cover the total number of loan accounts due to lack of information on loan account holders.\",\"World Development Indicators\",\"International Monetary Fund, Financial Access Survey.\"\n\"FB.CBK.DPTR.P3\",\"Depositors with commercial banks (per 1,000 adults)\",\"Depositors with commercial banks are the reported number of deposit account holders at commercial banks and other resident banks functioning as commercial banks  that are resident nonfinancial corporations (public and private) and households. For many countries data cover the total number of deposit accounts due to lack of information on account holders. The major types of deposits are checking accounts, savings accounts, and time deposits.\",\"World Development Indicators\",\"International Monetary Fund, Financial Access Survey.\"\n\"FB.POS.TOTL.P5\",\"Point-of-sale terminals (per 100,000 adults)\",\"Point-of-sale terminals are the equipment used to manage the selling process by a salesperson-accessible interface in the location where a transaction takes place.\",\"World Development Indicators\",\"Consultative Group to Assist the Poor and the World Bank Group’s \\\"Financial Access 2010.\\\"\"\n\"FC.XPD.ADMN.CR\",\"General administration function expenditure (in IDR)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, SIKD (Information System for Sub-National Budget)\"\n\"FC.XPD.AGR.CR\",\"Agriculture function expenditure (in IDR)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, SIKD (Information System for Sub-National Budget)\"\n\"FC.XPD.ECON.CR\",\"Economy function expenditure (in IDR)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, SIKD (Information System for Sub-National Budget)\"\n\"FC.XPD.EDU.CR\",\"Education function expenditure (in IDR)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, SIKD (Information System for Sub-National Budget)\"\n\"FC.XPD.ENVR.CR\",\"Environment function expenditure (in IDR)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, SIKD (Information System for Sub-National Budget)\"\n\"FC.XPD.HE.CR\",\"Health function expenditure (in IDR)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, SIKD (Information System for Sub-National Budget)\"\n\"FC.XPD.HOUS.CR\",\"Housing and public facilities function expenditure (in IDR)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, SIKD (Information System for Sub-National Budget)\"\n\"FC.XPD.INFR.CR\",\"Infrastructure function expenditure (in IDR)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, SIKD (Information System for Sub-National Budget)\"\n\"FC.XPD.PROT.CR\",\"Social protection function expenditure (in IDR)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, SIKD (Information System for Sub-National Budget)\"\n\"FC.XPD.PUBL.CR\",\"Public, law and order function expenditure (in IDR)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, SIKD (Information System for Sub-National Budget)\"\n\"FC.XPD.RELG.CR\",\"Religious function expenditure (in IDR)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, SIKD (Information System for Sub-National Budget)\"\n\"FC.XPD.TOUR.CR\",\"Tourism and culture function expenditure (in IDR)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, SIKD (Information System for Sub-National Budget)\"\n\"FD.AST.PRVT.GD.ZS\",\"Domestic credit to private sector by banks (% of GDP)\",\"Domestic credit to private sector by banks refers to financial resources provided to the private sector by other depository corporations (deposit taking corporations except central banks), such as through loans, purchases of nonequity securities, and trade credits and other accounts receivable, that establish a claim for repayment. For some countries these claims include credit to public enterprises.\",\"World Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files, and World Bank and OECD GDP estimates.\"\n\"FD.RES.LIQU.AS.ZS\",\"Bank liquid reserves to bank assets ratio (%)\",\"Ratio of bank liquid reserves to bank assets is the ratio of domestic currency holdings and deposits with the monetary authorities to claims on other governments, nonfinancial public enterprises, the private sector, and other banking institutions.\",\"World Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FI.RES.GOLD.CD.WB\",\"Gold, valued at year-end London prices (current US$)\",\"The gold component of reserves is valued at year-end (December 31) London prices.  \",\"Africa Development Indicators\",\"International Monetary Fund.\"\n\"FI.RES.TOTL.CD\",\"Total reserves (includes gold, current US$)\",\"Total reserves comprise holdings of monetary gold, special drawing rights, reserves of IMF members held by the IMF, and holdings of foreign exchange under the control of monetary authorities. The gold component of these reserves is valued at year-end (December 31) London prices. Data are in current U.S. dollars.\",\"World Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FI.RES.TOTL.CD.WB\",\"Total reserves including gold valued at London gold price (current US$)\",\"Gross international reserves comprise holdings of monetary gold, special drawing rights, the reserve position of members in the International Monetary Fund (IMF), and holdings of foreign exchange under the control of monetary authorities. The gold component is valued at end-of-year London prices. \",\"Africa Development Indicators\",\"International Monetary Fund.\"\n\"FI.RES.TOTL.CD.ZS\",\"Total reserves includes gold (% of GDP)\",\"Total reserves comprise holdings of monetary gold, special drawing rights, reserves of IMF members held by the IMF, and holdings of foreign exchange under the control of monetary authorities. The gold component of these reserves is valued at year-end (December 31) London prices. \",\"Africa Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FI.RES.TOTL.DT.ZS\",\"Total reserves (% of total external debt)\",\"International reserves to total external debt stocks.\",\"World Development Indicators\",\"World Bank, International Debt Statistics.\"\n\"FI.RES.TOTL.MO\",\"Total reserves in months of imports\",\"Total reserves comprise holdings of monetary gold, special drawing rights, reserves of IMF members held by the IMF, and holdings of foreign exchange under the control of monetary authorities. The gold component of these reserves is valued at year-end (December 31) London prices. This item shows reserves expressed in terms of the number of months of imports of goods and services they could pay for [Reserves/(Imports/12)].\",\"World Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FI.RES.TOTL.MO.WB\",\"Total reserves in months of imports of goods and services\",\"The number of months for which a country's reserves can sustain its imports. Gross international reserves comprise holdings of monetary gold, special drawing rights, the reserve position of members in the International Monetary Fund (IMF), and holdings of foreign exchange under the control of monetary authorities. The gold component is valued at end-of-year London prices. Imports of goods, services and income is the sum of goods (merchandise) imports, imports of (nonfactor) services and income (factor) payments.  Data are in current US dollars. \",\"Africa Development Indicators\",\"International Monetary Fund, World Bank country economists.\"\n\"FI.RES.XGLD.CD\",\"Total reserves minus gold (current US$)\",\"Total reserves minus gold comprise special drawing rights, reserves of IMF members held by the IMF, and holdings of foreign exchange under the control of monetary authorities. Gold holdings are excluded. Data are in current U.S. dollars.\",\"World Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"fin11.1\",\"SMEs with at least one female owner with a proportion of loans requiring collateral (%)\",\"Denotes the percentage of SMEs (5-99 employees) with at least one female owner required to provide collateral on their last bank loan (reflects the tightness of credit conditions)\",\"G20 Basic Set of Financial Inclusion Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"fin11.2\",\"SMEs with a proportion of loans requiring collateral (%)\",\"Denotes the percentage of SMEs (5-99 employees) required to provide collateral on their last bank loan (reflects the tightness of credit conditions)\",\"G20 Basic Set of Financial Inclusion Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/) and Financing SMEs and Entrepreneurs 2016: An OECD Scoreboard\"\n\"fin14.1\",\"SMEs with at least one female owner with an outstanding loan or line of credit (%)\",\"Denotes the percentage of SMEs (5-99 employees) with at least one female owner with an outstanding loan or line of credit from a bank or other formal financial institution\",\"G20 Basic Set of Financial Inclusion Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"fin14.2\",\"SMEs with an outstanding loan or line of credit (%)\",\"Denotes the percentage of SMEs (5-99 employees) with an outstanding loan or line of credit  from a bank or other formal financial institution\",\"G20 Basic Set of Financial Inclusion Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"fin15.1\",\"SMEs with at least one female owner with an account at a formal financial institution (%)\",\"Denotes the percentage of SMEs (5-99 employees) with at least one female owner with a checking or savings account at a bank or other financial institution\",\"G20 Basic Set of Financial Inclusion Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"fin15.2\",\"SMEs with an account at a formal financial institution (%)\",\"Denotes the percentage of SMEs (5-99 employees) with a checking or savings account at a bank or other financial institution\",\"G20 Basic Set of Financial Inclusion Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"Finx1.1\",\"SMEs with at least one female owner  that send or receive digital payments from an account (%)\",\"Denotes the percentage of SMEs (5-99 employees) with at least one female owner that send or receive digital payments from an account\",\"G20 Basic Set of Financial Inclusion Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"Finx1.2\",\"SMEs that send or receive digital payments from an account (%)\",\"Denotes the percentage of SMEs (5-99 employees) that send or receive digital payments from an account\",\"G20 Basic Set of Financial Inclusion Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"Finx2.1\",\"SMEs with at least one female owner that have a POS terminal (%)\",\"Denotes the percentage of SMEs (5-99 employees) that have a POS terminal\",\"G20 Basic Set of Financial Inclusion Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"Finx2.2\",\"SMEs that have a POS terminal (%)\",\"Denotes the percentage of SMEs (5-99 employees) with at least one female owner that have a POS terminal\",\"G20 Basic Set of Financial Inclusion Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"FISH_MEAL\",\"Fishmeal, $/mt, current$\",\"Fishmeal (any origin), 64-65%,  c&f Bremen, estimates based on wholesale price, beginning 2004; previously c&f Hamburg\",\"Global Economic Monitor (GEM) Commodities\",\"ISTA Mielke GmbH, Oil World; US Department of Agriculture; World Bank.\"\n\"FM.ASC.DOMO.CN\",\"Claims on private sector, flow (current LCU)\",\"Change in domestic credit to the private sector covers changes in claims on private non-financial corporations, households, and non-profit institutions. Data; Annual flow, local currencies.  \",\"Africa Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FM.ASC.DOMS.CN\",\"Net domestic credit, flow (current LCU)\",\"Net domestic credit is the sum of net credit to the non financial public sector, credit to the private sector, and other accounts. Data are in current local currency. \",\"Africa Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FM.ASC.GOVT.CN\",\"Net domestic credit to government, flow (current LCU)\",\"Change in domestic credit  to government includes changes in net claims on central government, and changes in claims on  state and local government as well as on non-financial public corporations. Data; Annual flow, local currencies.  \",\"Africa Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FM.ASC.NCGV.CN\",\"Claims on central government, flow (current LCU)\",\"Net domestic credit to government budget. Data are in current local currencies. AF stands for annual flow.  \",\"Africa Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FM.ASC.NFGD.CN\",\"Total assets, flow (current LCU)\",\"Change in liabilities consists of changes in money, quasi-money and other liabilities, net. Data; Annual flow, local currencies.  \",\"Africa Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FM.ASC.NFRG.CN\",\"Net foreign assets, flow (current LCU)\",\"Net foreign assets are the sum of foreign assets held by monetary authorities and deposit money banks, less their foreign liabilities. Data are in current local currency.  \",\"Africa Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FM.ASC.OFFO.CN\",\"Claims on other official entities, flow (current LCU)\",\"Net domestic credit to other official entities of government. Data are in current local currencies.  \",\"Africa Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FM.ASC.OFIN.CN\",\"Claims on nonmonetary financial institutions, flow (current LCU)\",\"Net domestic credit  to other financial institutions (non-governmental). Data are in current local currencies. \",\"Africa Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FM.ASC.TOTP.CN\",\"Claims on private sector and other financial institutions, flow (current LCU)\",\"Net domestic credit to Rest of the economy (excludes government). Data are in current local currencies.  \",\"Africa Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FM.AST.CGOV.ZG.M3\",\"Claims on central government (annual growth as % of broad money)\",\"Claims on central government (IFS line 32AN..ZK) include loans to central government institutions net of deposits.\",\"World Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FM.AST.DOMO.CN\",\"Net domestic credit to private sector, stock (current LCU)\",\"Claims on other sectors of the domestic economy (IFS line 32S..ZK) include gross credit from the financial system to households, nonprofit institutions serving households, nonfinancial corporations, state and local governments, and social security funds.\",\"Africa Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FM.AST.DOMO.ZG.M3\",\"Claims on other sectors of the domestic economy (annual growth as % of broad money)\",\"Claims on other sectors of the domestic economy (IFS line 32S..ZK) include gross credit from the financial system to households, nonprofit institutions serving households, nonfinancial corporations, state and local governments, and social security funds.\",\"World Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FM.AST.DOMS.CN\",\"Net domestic credit (current LCU)\",\"Net domestic credit is the sum of net claims on the central government and claims on other sectors of the domestic economy (IFS line 32).  Data are in current local currency.\",\"World Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FM.AST.GOVT.CN\",\"Claims on governments and other public entities (current LCU)\",\"Claims on governments and other public entities (IFS line 32an + 32b + 32bx + 32c) usually comprise direct credit for specific purposes such as financing of the government budget deficit or loans to state enterprises, advances against future credit authorizations, and purchases of treasury bills and bonds, net of deposits by the public sector. Public sector deposits with the banking system also include sinking funds for the service of debt and temporary deposits of government revenues. Data are in current local currency.\",\"Africa Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FM.AST.GOVT.CN.ZS\",\"Claims on governments and other public entities (% of GDP)\",\"Claims on governments and other public entities (IFS line 32an + 32b + 32bx + 32c) usually comprise direct credit for specific purposes such as financing of the government budget deficit or loans to state enterprises, advances against future credit authorizations, and purchases of treasury bills and bonds, net of deposits by the public sector. Public sector deposits with the banking system also include sinking funds for the service of debt and temporary deposits of government revenues. Data are in current local currency.\",\"Africa Development Indicators\",\"\\\"International Monetary Fund.\\r\\\"\"\n\"FM.AST.GOVT.ZG.M2\",\"Claims on governments, etc. (annual growth as % of M2)\",\"Claims on governments and other public entities (IFS line 32an + 32b + 32bx + 32c) usually comprise direct credit for specific purposes such as financing of the government budget deficit or loans to state enterprises, advances against future credit authorizations, and purchases of treasury bills and bonds, net of deposits by the public sector. Public sector deposits with the banking system also include sinking funds for the service of debt and temporary deposits of government revenues. Money and quasi money (M2) comprise the sum of currency outside banks, demand deposits other than those of the central government, and the time, savings, and foreign currency deposits of resident sectors other than the central government.\",\"Africa Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FM.AST.NCGV.CN\",\"Claims on central government (current LCU)\",\"Claims on the central government, net is defined as the central  governments direct financial obligations to the country’s financial institutions less any claims the central government has on those  institutions.  \",\"Africa Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FM.AST.NFGD.CN\",\"Total assets (current LCU)\",\"Liabilities consists of money, quasi-money and other liabilities, net, end of year stocks.  \",\"Africa Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FM.AST.NFRG.CD\",\"Net foreign assets (current US$)\",\"Net foreign assets are the sum of foreign assets held by monetary authorities and deposit money banks, less their foreign liabilities. Data are in current U.S. dollars. \",\"Africa Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FM.AST.NFRG.CN\",\"Net foreign assets (current LCU)\",\"Net foreign assets are the sum of foreign assets held by monetary authorities and deposit money banks, less their foreign liabilities. Data are in current local currency.\",\"World Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FM.AST.OFFO.CN\",\"Net domestic credit to other official entities, stock (current LCU)\",\"Net domestic credit to other official entities of government. Data are in current local currencies. \",\"Africa Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FM.AST.OFIN.CN\",\"Net domestic credit to other private financial institutions, stock (current LCU)\",\"Net domestic credit to other financial institutions of the Rest of the economy (excludes government). Data are in current local currencies. \",\"Africa Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FM.AST.PRVT.ZG.M2\",\"Claims on private sector (annual growth as % of M2)\",\"Claims on private sector (IFS line 32d) include gross credit from the financial system to individuals, enterprises, nonfinancial public entities not included under net domestic credit, and financial institutions not included elsewhere. Money and quasi money (M2) comprise the sum of currency outside banks, demand deposits other than those of the central government, and the time, savings, and foreign currency deposits of resident sectors other than the central government.\",\"Africa Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FM.AST.PRVT.ZG.M3\",\"Claims on private sector (annual growth as % of broad money)\",\"Claims on private sector (IFS line 32D..ZK or 32D..ZF) include gross credit from the financial system to individuals, enterprises, nonfinancial public entities not included under net domestic credit, and financial institutions not included elsewhere.\",\"World Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FM.AST.TOTP.CN\",\"Net domestic credit to rest of economy, stock (current LCU)\",\"Net domestic credit to Rest of the economy (excludes government). Data are in current local currencies. \",\"Africa Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FM.LBC.MQMY.CN\",\"Money and quasi money (M2), flow (current LCU)\",\"Money and quasi money (M2), flow (current LCU) is the sum of currency outside banks, demand deposits other than those of the central government, and the time, savings, and foreign currency deposits of resident sectors other than the central government.  \",\"Africa Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FM.LBC.XMQM.CN\",\"Other liabilities excluding M2, flow (current LCU)\",\"Other liabilities excluding M2 (current LCU).  \",\"Africa Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FM.LBL.BMNY.CN\",\"Broad money (current LCU)\",\"Broad money (IFS line 35L..ZK) is the sum of currency outside banks; demand deposits other than those of the central government; the time, savings, and foreign currency deposits of resident sectors other than the central government; bank and traveler’s checks; and other securities such as certificates of deposit and commercial paper.\",\"World Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FM.LBL.BMNY.GD.ZS\",\"Broad money (% of GDP)\",\"Broad money (IFS line 35L..ZK) is the sum of currency outside banks; demand deposits other than those of the central government; the time, savings, and foreign currency deposits of resident sectors other than the central government; bank and traveler’s checks; and other securities such as certificates of deposit and commercial paper.\",\"World Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files, and World Bank and OECD GDP estimates.\"\n\"FM.LBL.BMNY.IR.ZS\",\"Broad money to total reserves ratio\",\"Broad money (IFS line 35L..ZK) is the sum of currency outside banks; demand deposits other than those of the central government; the time, savings, and foreign currency deposits of resident sectors other than the central government; bank and traveler’s checks; and other securities such as certificates of deposit and commercial paper.\",\"World Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FM.LBL.BMNY.ZG\",\"Broad money growth (annual %)\",\"Broad money (IFS line 35L..ZK) is the sum of currency outside banks; demand deposits other than those of the central government; the time, savings, and foreign currency deposits of resident sectors other than the central government; bank and traveler’s checks; and other securities such as certificates of deposit and commercial paper.\",\"World Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FM.LBL.XMQM.CN\",\"Other liabilities excluding M2 (current LCU)\",\"Other liabilities excluding M2, flow (current LCU).  \",\"Africa Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FN.CRED.AGR.TOTL\",\"Total Credit by Sector: Agriculture (province level, in IDR Million)\",\"\",\"INDO-DAPOER\",\"Bank Indonesia, Commercial Bank Monthly Report\"\n\"FN.CRED.BUS.TOTL\",\"Total Credit by Sector: Business (province level, in IDR Million)\",\"\",\"INDO-DAPOER\",\"Bank Indonesia, Commercial Bank Monthly Report\"\n\"FN.CRED.CNSP.TOTL\",\"Total Credit by Utilization: Consumption (province level, in IDR Million)\",\"\",\"INDO-DAPOER\",\"Bank Indonesia, Commercial Bank Monthly Report\"\n\"FN.CRED.CNST.TOTL\",\"Total Credit by Sector: Construction (province level, in IDR Million)\",\"\",\"INDO-DAPOER\",\"Bank Indonesia, Commercial Bank Monthly Report\"\n\"FN.CRED.INVS.TOTL\",\"Total credit by Utilization: Investment (province level, in IDR Million)\",\"\",\"INDO-DAPOER\",\"Bank Indonesia, Commercial Bank Monthly Report\"\n\"FN.CRED.MINQ.TOTL\",\"Total Credit by Sector: Mining and Quarrying (province level, in IDR Million)\",\"\",\"INDO-DAPOER\",\"Bank Indonesia, Commercial Bank Monthly Report\"\n\"FN.CRED.MNF.TOTL\",\"Total Credit by Sector: Manufacture (province level, in IDR Million)\",\"\",\"INDO-DAPOER\",\"Bank Indonesia, Commercial Bank Monthly Report\"\n\"FN.CRED.SRV.OTHR.TOTL\",\"Total Credit by Sector: Other Services (province level, in IDR Million)\",\"\",\"INDO-DAPOER\",\"Bank Indonesia, Commercial Bank Monthly Report\"\n\"FN.CRED.SRV.SOCL.TOTL\",\"Total Credit by Sector: Social Services (province level, in IDR Million)\",\"\",\"INDO-DAPOER\",\"Bank Indonesia, Commercial Bank Monthly Report\"\n\"FN.CRED.TRAD.TOTL\",\"Total Credit by Sector: Trade (province level, in IDR Million)\",\"\",\"INDO-DAPOER\",\"Bank Indonesia, Commercial Bank Monthly Report\"\n\"FN.CRED.TRAN.TOTL\",\"Total Credit by Sector: Transportation (province level, in IDR Million)\",\"\",\"INDO-DAPOER\",\"Bank Indonesia, Commercial Bank Monthly Report\"\n\"FN.CRED.UTL.TOTL\",\"Total Credit by Sector: Utilities (province level, in IDR Million)\",\"\",\"INDO-DAPOER\",\"Bank Indonesia, Commercial Bank Monthly Report\"\n\"FN.CRED.WCAP.TOTL\",\"Total Credit by Utilization: Working Capital (province level, in IDR Million)\",\"\",\"INDO-DAPOER\",\"Bank Indonesia, Commercial Bank Monthly Report\"\n\"FN.DPST.TOTL\",\"Total Deposits (province level, in IDR Million)\",\"\",\"INDO-DAPOER\",\"Bank Indonesia, Commercial Bank Monthly Report\"\n\"FN.INR.CBIR\",\"Central bank intervention rate (%)\",\"Central bank intervention rate.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"FN.LOAN.CBK.TOTL\",\"Total Commercial and Rural Banks Loans Rupiah and Foreign Currency (province level, in IDR Million)\",\"\",\"INDO-DAPOER\",\"Bank Indonesia, Commercial Bank Monthly Report\"\n\"FP.CPI.TOTL\",\"Consumer price index (2010 = 100)\",\"Consumer price index reflects changes in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used. Data are period averages.\",\"World Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FP.CPI.TOTL.ZG\",\"Inflation, consumer prices (annual %)\",\"Inflation as measured by the consumer price index reflects the annual percentage change in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\",\"World Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FP.WPI.TOTL\",\"Wholesale price index (2010 = 100)\",\"Wholesale price index refers to a mix of agricultural and industrial goods at various stages of production and distribution, including import duties. The Laspeyres formula is generally used.\",\"World Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FR.INR.DPST\",\"Deposit interest rate (%)\",\"Deposit interest rate is the rate paid by commercial or similar banks for demand, time, or savings deposits. The terms and conditions attached to these rates differ by country, however, limiting their comparability.\",\"World Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FR.INR.DPST.DP\",\"Real deposit interest rate (%)\",\"Real interest rate is the lending interest rate adjusted for inflation as measured by the GDP deflator.  \",\"Africa Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files using World Bank data on the GDP deflator.\"\n\"FR.INR.GBND\",\"Bond interest rate (%)\",\"Bond interest rate (%).  \",\"Africa Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FR.INR.IMPL\",\"International interest rate, implicit (%)\",\"International interest rate (implicit, %).  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"FR.INR.LEND\",\"Lending interest rate (%)\",\"Lending rate is the bank rate that usually meets the short- and medium-term financing needs of the private sector. This rate is normally differentiated according to creditworthiness of borrowers and objectives of financing. The terms and conditions attached to these rates differ by country, however, limiting their comparability.\",\"World Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FR.INR.LNDP\",\"Interest rate spread (lending rate minus deposit rate, %)\",\"Interest rate spread is the interest rate charged by banks on loans to private sector customers minus the interest rate paid by commercial or similar banks for demand, time, or savings deposits. The terms and conditions attached to these rates differ by country, however, limiting their comparability.\",\"World Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FR.INR.MMKT\",\"Money market rate (%)\",\"Money market interest rate, IFS line 60b (%).  \",\"Africa Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FR.INR.RINR\",\"Real interest rate (%)\",\"Real interest rate is the lending interest rate adjusted for inflation as measured by the GDP deflator. The terms and conditions attached to lending rates differ by country, however, limiting their comparability.\",\"World Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files using World Bank data on the GDP deflator.\"\n\"FR.INR.RISK\",\"Risk premium on lending (lending rate minus treasury bill rate, %)\",\"Risk premium on lending is the interest rate charged by banks on loans to private sector customers minus the \\\"risk free\\\" treasury bill interest rate at which short-term government securities are issued or traded in the market. In some countries this spread may be negative, indicating that the market considers its best corporate clients to be lower risk than the government. The terms and conditions attached to lending rates differ by country, however, limiting their comparability.\",\"World Development Indicators\",\"International Monetary Fund, International Financial Statistics database.\"\n\"FR.INR.TDPT\",\"Time deposits interest rate (%)\",\"Interest, deposit rate, shows the average rate offered by banks to resident customers for demand, time, and savings deposits. This item is equal to line 60l..zf in the IMFs International Financial Statistics publication.  \",\"Africa Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FR.INR.TDPT.RL\",\"Real interest on time deposit (%)\",\"IFS, line 60 lc deflated by CPI. \",\"Africa Development Indicators\",\"International Monetary Fund, International Financial Statistics.\"\n\"FS.AST.CGOV.GD.ZS\",\"Claims on central government, etc. (% GDP)\",\"Claims on central government (IFS line 52AN or 32AN) include loans to central government institutions net of deposits.\",\"World Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files, and World Bank and OECD GDP estimates.\"\n\"FS.AST.DOMO.GD.ZS\",\"Claims on other sectors of the domestic economy (% of GDP)\",\"Claims on other sectors of the domestic economy (IFS line 52S or 32S) include gross credit from the financial system to households, nonprofit institutions serving households, nonfinancial corporations, state and local governments, and social security funds.\",\"World Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files, and World Bank and OECD GDP estimates.\"\n\"FS.AST.DOMS.GD.ZS\",\"Domestic credit provided by financial sector (% of GDP)\",\"Domestic credit provided by the financial sector includes all credit to various sectors on a gross basis, with the exception of credit to the central government, which is net. The financial sector includes monetary authorities and deposit money banks, as well as other financial corporations where data are available (including corporations that do not accept transferable deposits but do incur such liabilities as time and savings deposits). Examples of other financial corporations are finance and leasing companies, money lenders, insurance corporations, pension funds, and foreign exchange companies.\",\"World Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files, and World Bank and OECD GDP estimates.\"\n\"FS.AST.PRVT.CN\",\"Banking survey: claims on private sector (current LCU)\",\"Domestic credit to private sector refers to financial resources provided to the private sector, such as through loans, purchases of nonequity securities, and trade credits and other accounts receivable, that establish a claim for repayment. For some countries these claims include credit to public enterprises.\",\"Africa Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"FS.AST.PRVT.GD.ZS\",\"Domestic credit to private sector (% of GDP)\",\"Domestic credit to private sector refers to financial resources provided to the private sector by financial corporations, such as through loans, purchases of nonequity securities, and trade credits and other accounts receivable, that establish a claim for repayment. For some countries these claims include credit to public enterprises. The financial corporations include monetary authorities and deposit money banks, as well as other financial corporations where data are available (including corporations that do not accept transferable deposits but do incur such liabilities as time and savings deposits). Examples of other financial corporations are finance and leasing companies, money lenders, insurance corporations, pension funds, and foreign exchange companies.\",\"World Development Indicators\",\"International Monetary Fund, International Financial Statistics and data files, and World Bank and OECD GDP estimates.\"\n\"FS.XPC.DDPT.CN\",\"Demand deposits (current LCU)\",\"Demand deposits.  \",\"Africa Development Indicators\",\"International Monetary Fund.\"\n\"FS.XPC.TDPT.CN\",\"Time deposits (current LCU)\",\"Time deposits.  \",\"Africa Development Indicators\",\"International Monetary Fund.\"\n\"GB.AMA.ABRD.CN\",\"Adjustments to foreign scheduled principal repayments (current LCU)\",\"Principal repayments are actual amounts of principal (amortization) paid in currency, goods, or services in the year specified.  \",\"Africa Development Indicators\",\"World Bank country economists\"\n\"GB.BAL.CIGR.CN\",\"Current budget balance, including grants (current LCU)\",\"The excess of current revenue over current expenditure. data are in current local currencies.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"GB.BAL.OVRL.CN\",\"Overall budget balance, including grants (current LCU)\",\"Overall budget deficit is current and capital revenue and official grants received, less total expenditure and lending minus repayments. Data are shown for central government only, and are in current local currency.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"GB.BAL.OVRX.CN\",\"Overall surplus/deficit, excluding current grants (current LCU)\",\"Overall budget surplus/deficit (excluding current grants) is current and capital revenue excluding current grants, less total expenditure and lending minus repayments. Data are shown for central government only, and are in current local currency.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"GB.BAL.OVXG.CN\",\"Overall surplus/deficit, excluding all grants (current LCU)\",\"Overall budget deficit is current and capital revenue excluding current grants less total expenditure and lending minus repayments. Values are in current local currencies.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"GB.BAL.XINT.CN\",\"Primary balance, excluding interest (current LCU)\",\"Primary deficit, excluding interest (current LCU).  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"GB.DOD.DMSY.CN\",\"Central government debt, monetary system credit (current LCU)\",\"Domestic debt consists of the outstanding stock or recognized, direct liabilities to the monetary system. Data are in current local currencies.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"GB.DOD.DNMS.CN\",\"Central government debt, other domestic (current LCU)\",\"Domestic debt to other in current local currencies. \",\"Africa Development Indicators\",\"World Bank and Global Development Finance.\"\n\"GB.DOD.FRGN.CD\",\"External debt, end year (current US$)\",\"Foreign debt consists of the outstanding stock or recognized, direct liabilities of the government to the rest of the world, generated in the  past and scheduled to be extinguished by government operations in the future or to continue as perpetual debt. Data are in current U.S. dollars.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"GB.DOD.FRGN.CN\",\"External debt, end year (current LCU)\",\"Foreign debt consists of the outstanding stock or recognized, direct liabilities of the government to the rest of the world, generated in the  past and scheduled to be extinguished by government operations in the future or to continue as perpetual debt. Data are in current local currency.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"GB.DOD.TOTL.CN\",\"Total government debt (current LCU)\",\"Debt is the entire stock of direct government fixed-term contractual obligations to others outstanding on a particular date. It includes domestic and foreign liabilities such as currency and money deposits, securities other than shares, and loans. It is the gross amount of government liabilities reduced by the amount of equity and financial derivatives held by the government. Because debt is a stock rather than a flow, it is measured as of a given date, usually the last day of the fiscal year.  Data are in current local currency.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"GB.DTA.DOMS.CN\",\"Central government arrears on domestic debt (current LCU)\",\"Central government arrears on domestic debt.  Data are in current local currency.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"GB.DTA.FRGN.CN\",\"Central government arrears on external debt (current LCU)\",\"Central government arrears on external debt.  Data are in current local currency.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"GB.FIN.ABRD.CN\",\"External borrowing, net (current LCU)\",\"Financing from abroad (obtained from nonresidents) refer to the means by which a government provides financial resources to cover a budget deficit or allocates financial resources arising from a budget surplus. It includes all government liabilities--other.  Data are in current local currency.\",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"GB.FIN.DMSY.CN\",\"Domestic financing, monetary system credit (current LCU)\",\"Domestic financing, monetary system credit. Data are in current local currency.\",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"GB.FIN.DNMS.CN\",\"Other domestic borrowing (current LCU)\",\"Domestic financing (obtained from residents) refer to the means by which a government provides financial resources to cover a budget deficit or allocates financial resources arising from a budget surplus. It includes all government liabilities--other than those for currency issues or demand, time, or savings deposits with government--or claims on others held by government and changes in government holdings of cash and deposits. Government guarantees of the debt of others are excluded. Data are shown for central government only, and are in current local currency. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"GB.FIN.IKFR.CN\",\"Financing, including external capital grants (current LCU)\",\"Financing, including external capital grants. Data are in current local currency.\",\"Africa Development Indicators\",\"World Bank country economists\"\n\"GB.GRT.CTOT.CN\",\"Total current grants (current LCU)\",\"Grants include grants from other foreign governments, international organizations, and other government units.  Data are in current local currency.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"GB.GRT.KFRN.CN\",\"External capital grants (current LCU)\",\"Grants are unrequited, nonrepayable, noncompulsory receipts of government from other governments or international institutions. In determination of the deficit/surplus, grants are grouped with revenue and expenditure rather than with financing. Values are\",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"GB.NTX.CIGR.CN\",\"Nontax receipts (current LCU)\",\"Receipts from sources other than the tax system like property income, fees, fines, and contributions to government employee pension funds within government.  Data ate in current local currency.\",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"GB.REV.IGRT.CN\",\"Total revenue including current grants (current LCU)\",\"Total revenue and grants equals the sum of government revenue and grants. Revenue includes all nonrepayable and nonrepaying government  receipts other than grants. Grants are defined as unrequited, nonrepayable, noncompulsory receipts. Data are in current local currency.\",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"GB.REV.XAGT.CN\",\"Central government revenue excluding all grants  (current LCU)\",\"Central government revenue excluding all grants.  Data are in current local currency.\",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"GB.REV.XAGT.CN.ZS\",\"Central government revenues, excluding all grants (% of GDP)\",\"Central government revenues, excluding all grants.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"GB.RVC.IGRT.CN\",\"Total currrent revenues  including current grants (current LCU)\",\"Current revenue (including grants) includes all revenue from taxes and current nontax revenues such as fines, fees, recoveries, and income from property or sales, and grants. Data are shown for central government only, and are in current local currency.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"GB.RVC.TOTL.CN\",\"Current revenue, excluding grants (current LCU)\",\"Revenue is cash receipts from taxes, social contributions, and other revenues such as fines, fees, rent, and income from property or sales.  Data are in current local currency.\",\"Africa Development Indicators\",\"World Bank country economists\"\n\"GB.RVK.TOTL.CN\",\"Capital revenue (current LCU)\",\"Capital revenue comprises proceeds from the sale of nonfinancial capital assets, including land, intangible assets, stocks, and fixed capital assets of buildings, construction and equipment of more than a minimum value and usable for more than one year in the process of production, and receipts of unrequited transfers for capital purposes from nongovernmental sources. Data are in current local currency.\",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"GB.TAX.CMAR.ZS\",\"Highest marginal tax rate, corporate rate (%)\",\"Highest marginal tax rate (corporate rate) is the highest rate shown on the schedule of tax rates applied to the taxable income of corporations.\",\"Africa Development Indicators\",\"KPMG's Corporate and Indirect Tax Rate Survey 2009 (www.kpmg.com), and PricewaterhouseCoopers's Worldwide Tax Summaries Online (www.pwc.com).\"\n\"GB.TAX.DRCT.CN\",\"Direct taxes (current LCU)\",\"Direct taxes on goods and services include all taxes and duties levied  on production, extraction, sale, transfer, leasing, or delivery of goods and rendering of services, or in respect of the use of goods, or permission to use goods or to perform activities, are covered.  Examples include all general sales taxes, value added taxes and excises.  Data are in current local currency.\",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"GB.TAX.GSRV.CN\",\"Taxes on goods and services, GB (current LCU)\",\"Taxes on goods and services include all taxes and duties levied by central governments on the production, extraction, sale, transfer, leasing, or delivery of goods and rendering of services, or on the use of goods or permission to use goods or perform activities. These include general sales taxes, turnover or value added taxes, excise taxes, and motor vehicle taxes. Data are shown for central government only and are in current local currency.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"GB.TAX.IDRT.CN\",\"Indirect taxes less subsidies (current LCU)\",\"Indirect taxes are the sum of indirect taxes less subsidies. Indirect taxes are those taxes payable by producers that relate to the production, sale, purchase or use of the goods and services. Subsidies are grants on the current account made by general government to private enterprises and unincorporated public enterprises.  Data are in current local currency.\",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"GB.TAX.INTT.CN\",\"Taxes on international trade, GB (current LCU)\",\"Taxes on international trade include import duties, export duties, profits of export or import monopolies, exchange profits, and exchange taxes.  Current revenue includes all revenue from taxes and nonrepayable receipts (other than grants) from the sale of land, intangible assets, government stocks, or fixed capital assets, or from capital transfers from nongovernmental sources.  It also includes fines, fees, recoveries, inheritance taxes, and nonrecurrent levies on capital.  Data are shown for central government only.  Data are in current local currency.\",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"GB.TDS.ABRD.CN\",\"Adjustments to foreign scheduled debt service (current LCU)\",\"Debt is the entire stock of direct government fixed-term contractual obligations to others outstanding on a particular date such as money deposits, securities, shares and loans.  Data are in current local currency.  \",\"Africa Development Indicators\",\"World Bank country economists\"\n\"GB.TDS.FRGN.CN\",\"Central government debt service, external (current LCU)\",\"Debt is the entire stock of direct government fixed-term contractual obligations to others outstanding on a particular date such as money deposits, securities, shares and loans. Data are in current local currency.  \",\"Africa Development Indicators\",\"World Bank country economists\"\n\"GB.XPC.GSRV.CN\",\"Government consumption (current LCU)\",\"Current expenditure on goods and services comprises payments of wages and salaries in cash to employees (including the armed forces) before deduction of withholding taxes and employees' contributions to social security and pension funds, as well as employers' contributions to superannuation schemes outside government, and other purchases of goods and services (wages and salaries in kind, office supplies and maintenance charges etc.). Data are in current local currency.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"GB.XPC.INTD.CN\",\"Interest on domestic debt (current LCU)\",\"Interest on domestic debt.  Data are in current local currency.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"GB.XPC.INTE.CN\",\"Interest on external debt (current LCU)\",\"Interest on external debt (current LCU). Data are in current local currency.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"GB.XPC.SUBS.CN\",\"Subsidies (GFS, current LCU)\",\"Subsidies are current unrequited payments that government units make to enterprises, resident producers and importers. Subsidies may be designed to influence enterprises level or type of production, or the prices at which the products are sold. (Capital grants are in the national accounts classified as capital transfers.) Subsidies consists of ‘subsidies on products’, subsidies payable per unit of a good or a service, and ‘other subsidies on production’, which cover all other subsidies enterprises receives as a consequence of engaging in production. Data are in current local currency.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"GB.XPC.TOTL.CN\",\"Current expenditure, total (current LCU)\",\"Total current expenditure includes requited payments other than for capital assets or for goods or services to be used in the production of capital assets, and unrequited payments for purposes other than permitting the recipients to acquire capital assets, compensating the recipients for damage or destruction of capital assets, or increasing the financial capital of the recipients.  Data are shown for central government only.  Data are in current local currency.\",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"GB.XPC.TRFO.CN\",\"Other current transfers (current LCU)\",\"Other current transfers include all unrequited, nonrepayable transfers on current account to private and public enterprises. Data are in current local currency.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"GB.XPC.WAGE.CN\",\"Wages and salaries (current LCU)\",\"Wages and salaries consist of all payments in cash, but not in kind, to employees in return for services rendered, before deduction of withholding taxes and employees  contributions to social security and pension funds. Data are shown for central government only.  Data are in current local currency.\",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"GB.XPD.DEFN.CN\",\"Defense expenditure (current LCU)\",\"Defense expenditures for NATO countries are based on the NATO definition, which covers military-related expenditures of the defense ministry (including recruiting, training, construction, and the purchase of military supplies and equipment) and other ministries. Civilian-type expenditures of the defense ministry are excluded. Military assistance is included in the expenditures of the donor country, and purchases of military equipment on credit are included at the time the debt is incurred, not at the time of payment. Data for other countries generally cover expenditures of the ministry of defense (excluded are expenditures on public order and safety, which are classified separately). Data are in current local currency.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"GB.XPD.INLD.CN\",\"Total expenditure and net lending (current LCU)\",\"Total expenditure and net lending includes both current and capital (development) expenditures and includes lending minus repayments. Data are shown for central government only.  Data are in current local currency.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"GB.XPD.RSDV.GD.ZS\",\"Research and development expenditure (% of GDP)\",\"Expenditures for research and development are current and capital expenditures (both public and private) on creative work undertaken systematically to increase knowledge, including knowledge of humanity, culture, and society, and the use of knowledge for new applications. R&D covers basic research, applied research, and experimental development.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"GB.XPK.INLD.CN\",\"Total capital expenditure and net lending (current LCU)\",\"Expenditure for acquisition of land, intangible assets, government   stocks, and nonmilitary and nonfinancial assets; also for capital  grants and lending minus repayments. Data are in current local currency.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"GB.XPK.RINV.CN\",\"Budgetary investment (current LCU)\",\"Budgetary investment.  Data are in current local currency.  \",\"Africa Development Indicators\",\"World Bank country economists\"\n\"GB.XPL.TRNL.CN\",\"Capital transfers (current LCU)\",\"Capital transfers. Data are in current local currency.    \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"GC.BAL.CASH.CD\",\"Fiscal balance, cash surplus/deficit (current US$)\\r\",\"Cash surplus or deficit is revenue (including grants) minus expense, minus net acquisition of nonfinancial assets. In the 1986 GFS manual nonfinancial assets were included under revenue and expenditure in gross terms. This cash surplus or deficit is closest to the earlier overall budget balance (still missing is lending minus repayments, which are now a financing item under net acquisition of financial assets).\",\"Africa Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.BAL.CASH.CN\",\"Cash surplus/deficit (current LCU)\",\"Cash surplus or deficit is revenue (including grants) minus expense, minus net acquisition of nonfinancial assets. In the 1986 GFS manual nonfinancial assets were included under revenue and expenditure in gross terms. This cash surplus or deficit is closest to the earlier overall budget balance (still missing is lending minus repayments, which are now a financing item under net acquisition of financial assets).\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.BAL.CASH.GD.ZS\",\"Cash surplus/deficit (% of GDP)\",\"Cash surplus or deficit is revenue (including grants) minus expense, minus net acquisition of nonfinancial assets. In the 1986 GFS manual nonfinancial assets were included under revenue and expenditure in gross terms. This cash surplus or deficit is closest to the earlier overall budget balance (still missing is lending minus repayments, which are now a financing item under net acquisition of financial assets).\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files, and World Bank and OECD GDP estimates.\"\n\"GC.DOD.TOTL.CN\",\"Central government debt, total (current LCU)\",\"Debt is the entire stock of direct government fixed-term contractual obligations to others outstanding on a particular date. It includes domestic and foreign liabilities such as currency and money deposits, securities other than shares, and loans. It is the gross amount of government liabilities reduced by the amount of equity and financial derivatives held by the government. Because debt is a stock rather than a flow, it is measured as of a given date, usually the last day of the fiscal year.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.DOD.TOTL.GD.ZS\",\"Central government debt, total (% of GDP)\",\"Debt is the entire stock of direct government fixed-term contractual obligations to others outstanding on a particular date. It includes domestic and foreign liabilities such as currency and money deposits, securities other than shares, and loans. It is the gross amount of government liabilities reduced by the amount of equity and financial derivatives held by the government. Because debt is a stock rather than a flow, it is measured as of a given date, usually the last day of the fiscal year.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files, and World Bank and OECD GDP estimates.\"\n\"GC.FIN.DOMS.CN\",\"Net incurrence of liabilities, domestic (current LCU)\",\"Net incurrence of government liabilities includes foreign financing (obtained from nonresidents) and domestic financing (obtained from residents), or the means by which a government provides financial resources to cover a budget deficit or allocates financial resources arising from a budget surplus. The net incurrence of liabilities should be offset by the net acquisition of financial assets (a third financing item). The difference between the cash surplus or deficit and the three financing items is the net change in the stock of cash.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.FIN.DOMS.GD.ZS\",\"Net incurrence of liabilities, domestic (% of GDP)\",\"Net incurrence of government liabilities includes foreign financing (obtained from nonresidents) and domestic financing (obtained from residents), or the means by which a government provides financial resources to cover a budget deficit or allocates financial resources arising from a budget surplus. The net incurrence of liabilities should be offset by the net acquisition of financial assets (a third financing item). The difference between the cash surplus or deficit and the three financing items is the net change in the stock of cash.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files, and World Bank and OECD GDP estimates.\"\n\"GC.FIN.FRGN.CN\",\"Net incurrence of liabilities, foreign (current LCU)\",\"Net incurrence of government liabilities includes foreign financing (obtained from nonresidents) and domestic financing (obtained from residents), or the means by which a government provides financial resources to cover a budget deficit or allocates financial resources arising from a budget surplus. The net incurrence of liabilities should be offset by the net acquisition of financial assets (a third financing item). The difference between the cash surplus or deficit and the three financing items is the net change in the stock of cash.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.FIN.FRGN.GD.ZS\",\"Net incurrence of liabilities, foreign (% of GDP)\",\"Net incurrence of government liabilities includes foreign financing (obtained from nonresidents) and domestic financing (obtained from residents), or the means by which a government provides financial resources to cover a budget deficit or allocates financial resources arising from a budget surplus. The net incurrence of liabilities should be offset by the net acquisition of financial assets (a third financing item). The difference between the cash surplus or deficit and the three financing items is the net change in the stock of cash.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files, and World Bank and OECD GDP estimates.\"\n\"GC.REV.GOTR.CN\",\"Grants and other revenue (current LCU)\",\"Grants and other revenue include grants from other foreign governments, international organizations, and other government units; interest; dividends; rent; requited, nonrepayable receipts for public purposes (such as fines, administrative fees, and entrepreneurial income from government owner\\uadship of property); and voluntary, unrequited, nonrepayable receipts other than grants.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.REV.GOTR.ZS\",\"Grants and other revenue (% of revenue)\",\"Grants and other revenue include grants from other foreign governments, international organizations, and other government units; interest; dividends; rent; requited, nonrepayable receipts for public purposes (such as fines, administrative fees, and entrepreneurial income from government owner\\uadship of property); and voluntary, unrequited, nonrepayable receipts other than grants.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.REV.SOCL.CN\",\"Social contributions (current LCU)\",\"Social contributions include social security contributions by employees, employers, and self-employed individuals, and other contributions whose source cannot be determined. They also include actual or imputed contributions to social insurance schemes operated by governments.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.REV.SOCL.ZS\",\"Social contributions (% of revenue)\",\"Social contributions include social security contributions by employees, employers, and self-employed individuals, and other contributions whose source cannot be determined. They also include actual or imputed contributions to social insurance schemes operated by governments.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.REV.TOTL.CD\",\"Total revenue (current US$)\",\"Current revenue includes all revenue from taxes and nonrepayable receipts (other than grants) from the sale of land, intangible assets, government stocks or fixed capital assets, or from capital transfers from nongovernmental sources. It also includes inheritance taxes and nonrecurrent levies on capital. Data are in current US dollar.\",\"Africa Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.REV.TOTL.CN\",\"Total revenue (current LCU)\",\"Revenue is cash receipts from taxes, social contributions, and other revenues such as fines, fees, rent, and income from property or sales. Grants are also considered as revenue.\",\"Africa Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.REV.XGRT.CD\",\"Revenue, excluding grants (current US$)\",\"Revenue is cash receipts from taxes, social contributions, and other revenues such as fines, fees, rent, and income from property or sales. Grants are also considered as revenue but are excluded here.  Data are in current US dollar.  \",\"Africa Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.REV.XGRT.CN\",\"Revenue, excluding grants (current LCU)\",\"Revenue is cash receipts from taxes, social contributions, and other revenues such as fines, fees, rent, and income from property or sales. Grants are also considered as revenue but are excluded here.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.REV.XGRT.GD.ZS\",\"Revenue, excluding grants (% of GDP)\",\"Revenue is cash receipts from taxes, social contributions, and other revenues such as fines, fees, rent, and income from property or sales. Grants are also considered as revenue but are excluded here.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files, and World Bank and OECD GDP estimates.\"\n\"GC.TAX.EXPT.CN\",\"Taxes on exports (current LCU)\",\"Taxes on exports are all levies on goods being transported out of the country or services being delivered to nonresidents by residents. Rebates on exported goods that are repayments of previously paid general consumption taxes, excise taxes, or import duties are deducted from the gross amounts receivable from these taxes, not from amounts receivable from export taxes.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.TAX.EXPT.ZS\",\"Taxes on exports (% of tax revenue)\",\"Taxes on exports are all levies on goods being transported out of the country or services being delivered to nonresidents by residents. Rebates on exported goods that are repayments of previously paid general consumption taxes, excise taxes, or import duties are deducted from the gross amounts receivable from these taxes, not from amounts receivable from export taxes.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.TAX.GSRV.CN\",\"Taxes on goods and services (current LCU)\",\"Taxes on goods and services include general sales and turnover or value added taxes, selective excises on goods, selective taxes on services, taxes on the use of goods or property, taxes on extraction and production of minerals, and profits of fiscal monopolies.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.TAX.GSRV.RV.ZS\",\"Taxes on goods and services (% of revenue)\",\"Taxes on goods and services include general sales and turnover or value added taxes, selective excises on goods, selective taxes on services, taxes on the use of goods or property, taxes on extraction and production of minerals, and profits of fiscal monopolies.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.TAX.GSRV.VA.ZS\",\"Taxes on goods and services (% value added of industry and services)\",\"Taxes on goods and services include general sales and turnover or value added taxes, selective excises on goods, selective taxes on services, taxes on the use of goods or property, taxes on extraction and production of minerals, and profits of fiscal monopolies.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files, and World Bank and OECD value added estimates.\"\n\"GC.TAX.IMPT.CN\",\"Customs and other import duties (current LCU)\",\"Customs and other import duties are all levies collected on goods that are entering the country or services delivered by nonresidents to residents. They include levies imposed for revenue or protection purposes and determined on a specific or ad valorem basis as long as they are restricted to imported goods or services.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.TAX.IMPT.ZS\",\"Customs and other import duties (% of tax revenue)\",\"Customs and other import duties are all levies collected on goods that are entering the country or services delivered by nonresidents to residents. They include levies imposed for revenue or protection purposes and determined on a specific or ad valorem basis as long as they are restricted to imported goods or services.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.TAX.INTT.CN\",\"Taxes on international trade (current LCU)\",\"Taxes on international trade include import duties, export duties, profits of export or import monopolies, exchange profits, and exchange taxes.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.TAX.INTT.RV.ZS\",\"Taxes on international trade (% of revenue)\",\"Taxes on international trade include import duties, export duties, profits of export or import monopolies, exchange profits, and exchange taxes.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.TAX.OTHR.CN\",\"Other taxes (current LCU)\",\"Other taxes include employer payroll or labor taxes, taxes on property, and taxes not allocable to other categories, such as penalties for late payment or nonpayment of taxes.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.TAX.OTHR.RV.ZS\",\"Other taxes (% of revenue)\",\"Other taxes include employer payroll or labor taxes, taxes on property, and taxes not allocable to other categories, such as penalties for late payment or nonpayment of taxes.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.TAX.TOTL.CN\",\"Tax revenue (current LCU)\",\"Tax revenue refers to compulsory transfers to the central government for public purposes. Certain compulsory transfers such as fines, penalties, and most social security contributions are excluded. Refunds and corrections of erroneously collected tax revenue are treated as negative revenue.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.TAX.TOTL.GD.ZS\",\"Tax revenue (% of GDP)\",\"Tax revenue refers to compulsory transfers to the central government for public purposes. Certain compulsory transfers such as fines, penalties, and most social security contributions are excluded. Refunds and corrections of erroneously collected tax revenue are treated as negative revenue.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files, and World Bank and OECD GDP estimates.\"\n\"GC.TAX.YPKG.CN\",\"Taxes on income, profits and capital gains (current LCU)\",\"Taxes on income, profits, and capital gains are levied on the actual or presumptive net income of individuals, on the profits of corporations and enterprises, and on capital gains, whether realized or not, on land, securities, and other assets. Intragovernmental payments are eliminated in consolidation.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.TAX.YPKG.RV.ZS\",\"Taxes on income, profits and capital gains (% of revenue)\",\"Taxes on income, profits, and capital gains are levied on the actual or presumptive net income of individuals, on the profits of corporations and enterprises, and on capital gains, whether realized or not, on land, securities, and other assets. Intragovernmental payments are eliminated in consolidation.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.TAX.YPKG.ZS\",\"Taxes on income, profits and capital gains (% of total taxes)\",\"Taxes on income, profits, and capital gains are levied on the actual or presumptive net income of individuals, on the profits of corporations and enterprises, and on capital gains, whether realized or not, on land, securities, and other assets. Intragovernmental payments are eliminated in consolidation.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.XPN.COMP.CN\",\"Compensation of employees (current LCU)\",\"Compensation of employees consists of all payments in cash, as well as in kind (such as food and housing), to employees in return for services rendered, and government contributions to social insurance schemes such as social security and pensions that provide benefits to employees.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.XPN.COMP.ZS\",\"Compensation of employees (% of expense)\",\"Compensation of employees consists of all payments in cash, as well as in kind (such as food and housing), to employees in return for services rendered, and government contributions to social insurance schemes such as social security and pensions that provide benefits to employees.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.XPN.GSRV.CN\",\"Goods and services expense (current LCU)\",\"Goods and services include all government payments in exchange for goods and services used for the production of market and nonmarket goods and services. Own-account capital formation is excluded.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.XPN.GSRV.ZS\",\"Goods and services expense (% of expense)\",\"Goods and services include all government payments in exchange for goods and services used for the production of market and nonmarket goods and services. Own-account capital formation is excluded.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.XPN.INTP.CN\",\"Interest payments (current LCU)\",\"Interest payments include interest payments on government debt--including long-term bonds, long-term loans, and other debt instruments--to domestic and foreign residents.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.XPN.INTP.RV.ZS\",\"Interest payments (% of revenue)\",\"Interest payments include interest payments on government debt--including long-term bonds, long-term loans, and other debt instruments--to domestic and foreign residents.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.XPN.INTP.ZS\",\"Interest payments (% of expense)\",\"Interest payments include interest payments on government debt--including long-term bonds, long-term loans, and other debt instruments--to domestic and foreign residents.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.XPN.OTHR.CN\",\"Other expense (current LCU)\",\"Other expense is spending on dividends, rent, and other miscellaneous expenses, including provision for consumption of fixed capital.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.XPN.OTHR.ZS\",\"Other expense (% of expense)\",\"Other expense is spending on dividends, rent, and other miscellaneous expenses, including provision for consumption of fixed capital.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.XPN.TOTL.CD\",\"Expense (current US$)\",\"Expense is cash payments for operating activities of the government in providing goods and services. It includes compensation of employees (such as wages and salaries), interest and subsidies, grants, social benefits, and other expenses such as rent and dividends. Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.XPN.TOTL.CN\",\"Expense (current LCU)\",\"Expense is cash payments for operating activities of the government in providing goods and services. It includes compensation of employees (such as wages and salaries), interest and subsidies, grants, social benefits, and other expenses such as rent and dividends.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.XPN.TOTL.GD.ZS\",\"Expense (% of GDP)\",\"Expense is cash payments for operating activities of the government in providing goods and services. It includes compensation of employees (such as wages and salaries), interest and subsidies, grants, social benefits, and other expenses such as rent and dividends.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files, and World Bank and OECD GDP estimates.\"\n\"GC.XPN.TRFT.CN\",\"Subsidies and other transfers (current LCU)\",\"Subsidies, grants, and other social benefits include all unrequited, nonrepayable transfers on current account to private and public enterprises; grants to foreign governments, international organizations, and other government units; and social security, social assistance benefits, and employer social benefits in cash and in kind.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GC.XPN.TRFT.ZS\",\"Subsidies and other transfers (% of expense)\",\"Subsidies, grants, and other social benefits include all unrequited, nonrepayable transfers on current account to private and public enterprises; grants to foreign governments, international organizations, and other government units; and social security, social assistance benefits, and employer social benefits in cash and in kind.\",\"World Development Indicators\",\"International Monetary Fund, Government Finance Statistics Yearbook and data files.\"\n\"GCI.10THPILLAR.XQ\",\"10th pillar: Market size\",\"This indicator is a derived from the following indicators: (a) Domestic market size index  (b) Foreign market size index.   \",\"Africa Development Indicators\",\"The Global Competitiveness Report: various issues (http://gcr.weforum.org/).\"\n\"GCI.11THPILLAR.XQ\",\"11th pillar: Business sophistication\",\"This indicator is a derived from the following indicators:  (a) Local supplier quantity (b) Local supplier quality (c) State of cluster development (d) Nature of competitive advantage (e) Value chain breadth (f)  Control of international distribution (g) Production process sophistication (h) Extent of marketing and (i) Willingness to delegate authority.\",\"Africa Development Indicators\",\"The Global Competitiveness Report: various issues (http://gcr.weforum.org/).\"\n\"GCI.12THPILLAR.XQ\",\"12th pillar: Innovation\",\"This indicator is a derived from the following indicators:  (a) Capacity for innovation (b) Quality of scientific research institutions (c) Company spending on R&D (d) University-industry collaboration in R&D (e) Gov’t procurement of advanced tech product (f) Availability of scientist and engineers and (g) Utility patents per million population.\",\"Africa Development Indicators\",\"The Global Competitiveness Report: various issues (http://gcr.weforum.org/).\"\n\"GCI.1STPILLAR.XQ\",\"1st pillar: Institutions\",\"This indicator is a derived from the following indicators:  (a) Property rights (b) Intellectual property protection (c) Diversion of public funds (d) Public trust of politicians (e) Irregular payments and bribes (f) Judicial independence (g) Favoritism in decisions of government officials (h) Wastefulness of government officials (i) Burden of government regulation (j) Efficiency of legal framework in settling disputes (k) Efficiency of legal framework in challenging regulations (l) Transparency of government policymaking (m) Business costs of terrorism (n) Business costs of crime and violence (o) Organized crime (p) Reliability of police services (q) Ethical behavior of firms (r) Strength of auditing and reporting standards (s) Efficacy of corporate boards (t) Protection of minority shareholders interests and (u) Strength of investor protection.\",\"Africa Development Indicators\",\"The Global Competitiveness Report: various issues (http://gcr.weforum.org/).\"\n\"GCI.2NDPILLAR.XQ\",\"2nd pillar: Infrastructure\",\"This indicator is a derived from the following indicators: - (a) Quality of overall infrastructure (b) Quality of roads (c) Quality of railroad infrastructure (d) Quality of port infrastructure (e) Quality of air transport infrastructure (f) Available airline seat kilometers (g) Quality of electricity supply (h) Fixed telephone lines and (i) Mobile telephone subscriptions.\",\"Africa Development Indicators\",\"The Global Competitiveness Report: various issues (http://gcr.weforum.org/).\"\n\"GCI.3RDPILLAR.XQ\",\"3rd pillar: Macroeconomic stability\",\"This indicator is a derived from the following indicators: - (a) Government budget balance (b) National savings rate (c) Inflation (d) Interest rate spread (e) Government debt and (f) Country credit rating. \",\"Africa Development Indicators\",\"The Global Competitiveness Report: various issues (http://gcr.weforum.org/).\"\n\"GCI.4THPILLAR.XQ\",\"4th pllar: Health and primary education\",\"This indicator is a derived from the following indicators: - (a) Business impact of malaria (b) Malaria incidence (c) Business impact of tuberculosis (d) Tuberculosis incidence (e) Business impact of HIV/AIDS (f) HIV prevalence (g) Infant mortality (h) Life expectancy (i) Quality of primary education and (j) Primary education enrollment rate.\",\"Africa Development Indicators\",\"The Global Competitiveness Report: various issues (http://gcr.weforum.org/).\"\n\"GCI.5THPILLAR.XQ\",\"5th pillar: Higher education and training\",\"This indicator is a derived from the following indicators: - (a) Secondary enrollment (b) Tertiary enrollment (c) Quality of the educational system  (d) Quality of math and science education (e) Quality of management schools (f) Internet access in schools (g) Local availibity of research and training services and (h) Extent of staff training.\",\"Africa Development Indicators\",\"The Global Competitiveness Report: various issues (http://gcr.weforum.org/).\"\n\"GCI.6THPILLAR.XQ\",\"6th pillar: Goods market efficiency\",\"This indicator is a derived from the following indicators: - (a) Intensity of local competition (b) Extent of market dominance (c) Effectiveness of anti-monopoly policy (d) Extent and effect of taxation (e) Total tax rate  (f) Number of procedures required to start a business (g) Time required to start a business (h) Agricultural policy costs (i) Prevalence of trade barriers (j) Trade tariffs (k) Prevalence of foreign ownership (l) Business impact of rules on FDI (m) Burden of customs procedures (n) Degree of customer orientation and (o) Buyer sophistication.\",\"Africa Development Indicators\",\"The Global Competitiveness Report: various issues (http://gcr.weforum.org/).\"\n\"GCI.7THPILLAR.XQ\",\"7th pillar: Labor market efficiency\",\"This indicator is a derived from the following indicators: - (a) Cooperation in labor-employer relations (b) Flexibility of wage determination (c) Rigidity of employment (d) Hiring and firing practices (e) Firing costs  (f) Pay and productivity (g) Reliance on professional management (g) Brain drain and (h) Female participation in labor force.\",\"Africa Development Indicators\",\"The Global Competitiveness Report: various issues (http://gcr.weforum.org/).\"\n\"GCI.8THPILLAR.XQ\",\"8th pillar: Financial market sophistication\",\"This indicator is a derived from the following indicators: - (a) Availability of financial services (b) Affordability of financial services  (c) Financing through local equity market (d) Ease of access to loans (e) Venture capital availability  (f) Restriction on capital flows (g) Soundness of banks (h) Regulation of securities exchanges and (i) Legal rights index.\",\"Africa Development Indicators\",\"The Global Competitiveness Report: various issues (http://gcr.weforum.org/).\"\n\"GCI.9THPILLAR.XQ\",\"9th pillar: Techonological readiness\",\"This indicator is a derived from the following indicators: - (a) Availability of latest technologies (b) Firm-level technology absorption (c) FDI and technology transfer (d) Internet users  (f)Broadband Internet subscriptions and  (g) Internet bandwidth.\",\"Africa Development Indicators\",\"The Global Competitiveness Report: various issues (http://gcr.weforum.org/).\"\n\"GCI.INDEX.XQ\",\"Global Competitiveness Index (GCI)\",\"The Global Competitiveness Index (GCI), a highly comprehensive index, which captures the microeconomic and macroeconomic foundations of national competitiveness.  Competitiveness as the set of institutions, policies, and factors that determine the level of productivity of a country.\",\"Africa Development Indicators\",\"The Global Competitiveness Report: various issues (http://gcr.weforum.org/).\"\n\"GCI.PILLAR11TO12.XQ\",\"Innovation and sophistication factors (weighted index 11th pillar to 12 th pillar)\",\"The innovation and sophistication factors subindex includes the pillars (pillar 11 and 12) critical to countries in the innovation-driven stage.  \",\"Africa Development Indicators\",\"The Global Competitiveness Report: various issues (http://gcr.weforum.org/).\"\n\"GCI.PILLAR1TO4.XQ\",\"Basic requirements (weighted index 1st pillar to 4th pillar)\",\"The basic requirements subindex groups those pillars (pillar 1 to 4) most critical for countries in the factor-driven stage.  \",\"Africa Development Indicators\",\"The Global Competitiveness Report: various issues (http://gcr.weforum.org/).\"\n\"GCI.PILLAR5TO10.XQ\",\"Efficiency enhancers (weighted index 5th to 10th pillar)\",\"The efficiency enhancers subindex includes those pillars critical for countries in the efficiency-driven stage (pillar 5 to 10).  \",\"Africa Development Indicators\",\"The Global Competitiveness Report: various issues (http://gcr.weforum.org/).\"\n\"GCI.RANK.XQ\",\"Global Competitive Index (GCI) rank\",\"\\\"This ranks each country for The Global Competitiveness Index (GCI).  The 2006–2007 rank is out of 125 countries. \\r  The 2007–2008 rank is out of 131 countries.  The 2008–2009 rank is out of 134 countries.  The 2009–2010 rank is out of 133 countries.\\\"\",\"Africa Development Indicators\",\"The Global Competitiveness Report: various issues (http://gcr.weforum.org/).\"\n\"GE.EST\",\"Government Effectiveness: Estimate\",\"Government Effectiveness captures perceptions of the quality of public services, the quality of the civil service and the degree of its independence from political pressures, the quality of policy formulation and implementation, and the credibility of the government's commitment to such policies.\",\"Worldwide Governance Indicators\",\"Worldwide Governance Indicators, The World Bank\"\n\"GE.NO.SRC\",\"Government Effectiveness: Number of Sources\",\"Government Effectiveness captures perceptions of the quality of public services, the quality of the civil service and the degree of its independence from political pressures, the quality of policy formulation and implementation, and the credibility of the government's commitment to such policies.\",\"Worldwide Governance Indicators\",\"Worldwide Governance Indicators, The World Bank\"\n\"GE.PER.RNK\",\"Government Effectiveness: Percentile Rank\",\"Government Effectiveness captures perceptions of the quality of public services, the quality of the civil service and the degree of its independence from political pressures, the quality of policy formulation and implementation, and the credibility of the government's commitment to such policies.\",\"Worldwide Governance Indicators\",\"Worldwide Governance Indicators, The World Bank\"\n\"GE.PER.RNK.LOWER\",\"Government Effectiveness: Percentile Rank, Lower Bound of 90% Confidence Interval\",\"Government Effectiveness captures perceptions of the quality of public services, the quality of the civil service and the degree of its independence from political pressures, the quality of policy formulation and implementation, and the credibility of the government's commitment to such policies. Percentile rank indicates the country's rank among all countries covered by the aggregate indicator, with 0 corresponding to lowest rank, and 100 to highest rank.  Percentile ranks have been adjusted to correct for changes over time in the composition of the countries covered by the WGI.  Percentile Rank Lower refers to lower bound of 90 percent confidence interval for governance, expressed in percentile rank terms.\",\"Worldwide Governance Indicators\",\"Worldwide Governance Indicators, The World Bank\"\n\"GE.PER.RNK.UPPER\",\"Government Effectiveness: Percentile Rank, Upper Bound of 90% Confidence Interval\",\"Government Effectiveness captures perceptions of the quality of public services, the quality of the civil service and the degree of its independence from political pressures, the quality of policy formulation and implementation, and the credibility of the government's commitment to such policies. Percentile rank indicates the country's rank among all countries covered by the aggregate indicator, with 0 corresponding to lowest rank, and 100 to highest rank.  Percentile ranks have been adjusted to correct for changes over time in the composition of the countries covered by the WGI.  Percentile Rank Upper refers to upper bound of 90 percent confidence interval for governance, expressed in percentile rank terms.\",\"Worldwide Governance Indicators\",\"Worldwide Governance Indicators, The World Bank\"\n\"GE.STD.ERR\",\"Government Effectiveness: Standard Error\",\"Government Effectiveness captures perceptions of the quality of public services, the quality of the civil service and the degree of its independence from political pressures, the quality of policy formulation and implementation, and the credibility of the government's commitment to such policies.\",\"Worldwide Governance Indicators\",\"Worldwide Governance Indicators, The World Bank\"\n\"gf1\",\"Account (% age 15+)\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else). For 2011, this can be an account at a bank or another type of financial institution, and for 2014 this can be a mobile account as well (see y\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf1.1\",\"Account, female (% age 15+)\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else). For 2011, this can be an account at a bank or another type of financial institution, and for 2014 this can be a mobile account as well (see y\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf1.2\",\"Account, male (% age 15+)\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else). For 2011, this can be an account at a bank or another type of financial institution, and for 2014 this can be a mobile account as well (see y\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf1.3\",\"Account, income, poorest 40% (% age 15+)\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else). For 2011, this can be an account at a bank or another type of financial institution, and for 2014 this can be a mobile account as well (see y\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf1.4\",\"Account, income, richest 60% (% age 15+)\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else). For 2011, this can be an account at a bank or another type of financial institution, and for 2014 this can be a mobile account as well (see y\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf1.5\",\"Account, young adults (% ages 15-34)\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else). For 2011, this can be an account at a bank or another type of financial institution, and for 2014 this can be a mobile account as well (see y\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf1.6\",\"Account, older adults (% age 35+)\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else). For 2011, this can be an account at a bank or another type of financial institution, and for 2014 this can be a mobile account as well (see y\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf10\",\"Received wages or government transfers into an account (% age 15+)\",\"Denotes the percentage of respondents who receive wages or government transfers to an account (% age 15+).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf10.1\",\"Received wages or government transfers into an account, female (% age 15+)\",\"Denotes the percentage of respondents who receive wages or government transfers to an account (female, % age 15+).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf10.2\",\"Received wages or government transfers into an account, male (% age 15+)\",\"Denotes the percentage of respondents who receive wages or government transfers to an account (male, % age 15+).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf10.3\",\"Received wages or government transfers into an account, income, poorest 40% (% age 15+)\",\"Denotes the percentage of respondents who receive wages or government transfers to an account (income, poorest 40%, % age 15+).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf10.4\",\"Received wages or government transfers into an account, income, richest 60% (% age 15+)\",\"Denotes the percentage of respondents who receive wages or government transfers to an account (income, richest 60%, % age 15+).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf10.5\",\"Received wages or government transfers into an account, young adults (% ages 15-34)\",\"Denotes the percentage of respondents who receive wages or government transfers to an account (% ages 15-34).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf10.6\",\"Received wages or government transfers into an account, older adults (% age 35+)\",\"Denotes the percentage of respondents who receive wages or government transfers to an account (% age 35+).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf2\",\"Borrowed from a financial institution in the past year (% age 15+)\",\"Denotes the percentage of respondents who report borrowing any money from a bank or another type of financial institution in the past 12 months (see year-specific definitions for details)(% age 15+).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf2.1\",\"Borrowed from a financial institution in the past year, female (% age 15+)\",\"Denotes the percentage of respondents who report borrowing any money from a bank or another type of financial institution in the past 12 months (see year-specific definitions for details) (female, % age 15+).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf2.2\",\"Borrowed from a financial institution in the past year, male (% age 15+)\",\"Denotes the percentage of respondents who report borrowing any money from a bank or another type of financial institution in the past 12 months (see year-specific definitions for details) (male, % age 15+).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf2.3\",\"Borrowed from a financial institution in the past year, income, poorest 40% (% age 15+)\",\"Denotes the percentage of respondents who report borrowing any money from a bank or another type of financial institution in the past 12 months (see year-specific definitions for details) (income, poorest 40%, % age 15+).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf2.4\",\"Borrowed from a financial institution in the past year, income, richest 60% (% age 15+)\",\"Denotes the percentage of respondents who report borrowing any money from a bank or another type of financial institution in the past 12 months (see year-specific definitions for details) (income, richest 60%, % age 15+).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf2.5\",\"Borrowed from a financial institution in the past year, young adults (% ages 15-34)\",\"Denotes the percentage of respondents who report borrowing any money from a bank or another type of financial institution in the past 12 months (see year-specific definitions for details) (% ages 15-34).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf2.6\",\"Borrowed from a financial institution in the past year, older adults (% age 35+)\",\"Denotes the percentage of respondents who report borrowing any money from a bank or another type of financial institution in the past 12 months (see year-specific definitions for details) (% age 35+).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf3\",\"Made or received digital payments (% age 15+)\",\"Denotes the percentage of adults using a transaction account (with a bank or other formal financial institution or mobile money provider) to make or receive a digital financial payment (% age 15+). Includes using the internet to make payments; using a pho\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf3.1\",\"Made or received digital payments, female (% age 15+)\",\"Denotes the percentage of adults using a transaction account (with a bank or other formal financial institution or mobile money provider) to make or receive a digital financial payment  (female, % age 15+). Includes using the internet to make payments; us\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf3.2\",\"Made or received digital payments, male (% age 15+)\",\"Denotes the percentage of adults using a transaction account (with a bank or other formal financial institution or mobile money provider) to make or receive a digital financial payment  (male, % age 15+). Includes using the internet to make payments; usin\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf3.3\",\"Made or received digital payments, income, poorest 40% (% age 15+)\",\"Denotes the percentage of adults using a transaction account (with a bank or other formal financial institution or mobile money provider) to make or receive a digital financial payment  (income, poorest 40%, % age 15+). Includes using the internet to make\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf3.4\",\"Made or received digital payments, income, richest 60% (% age 15+)\",\"Denotes the percentage of adults using a transaction account (with a bank or other formal financial institution or mobile money provider) to make or receive a digital financial payment  (income, richest 60%, % age 15+). Includes using the internet to make\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf3.5\",\"Made or received digital payments, young adults (% ages 15-34)\",\"Denotes the percentage of adults using a transaction account (with a bank or other formal financial institution or mobile money provider) to make or receive a digital financial payment  (% ages 15-34). Includes using the internet to make payments; using a\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf3.6\",\"Made or received digital payments, older adults (% age 35+)\",\"Denotes the percentage of adults using a transaction account (with a bank or other formal financial institution or mobile money provider) to make or receive a digital financial payment  (% age 35+). Includes using the internet to make payments; using a ph\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf4\",\"Made payment using a mobile phone (% age 15+)\",\"Denotes the percentage of adults using a mobile phone to pay bills, make purchases, or send or receive money from an account (with a bank or other formal financial institution or mobile money provider) (% age 15+).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf4.1\",\"Made payment using a mobile phone, female  (% age 15+)\",\"Denotes the percentage of adults using a mobile phone to pay bills, make purchases, or send or receive money from an account (with a bank or other formal financial institution or mobile money provider) (female, % age 15+).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf4.2\",\"Made payment using a mobile a phone, male (% age 15+)\",\"Denotes the percentage of adults using a mobile phone to pay bills, make purchases, or send or receive money from an account (with a bank or other formal financial institution or mobile money provider) (male, % age 15+).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf4.3\",\"Made payment using a mobile phone, income, poorest 40% (% age 15+)\",\"Denotes the percentage of adults using a mobile phone to pay bills, make purchases, or send or receive money from an account (with a bank or other formal financial institution or mobile money provider) (income, poorest 40%, % age 15+).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf4.4\",\"Made payment using a mobile phone, income, richest 60% (% age 15+)\",\"Denotes the percentage of adults using a mobile phone to pay bills, make purchases, or send or receive money from an account (with a bank or other formal financial institution or mobile money provider) (income, richest 60%, % age 15+).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf4.5\",\"Made payment using a mobile phone, young adults (% ages 15-34)\",\"Denotes the percentage of adults using a mobile phone to pay bills, make purchases, or send or receive money from an account (with a bank or other formal financial institution or mobile money provider) (% ages 15-34).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf4.6\",\"Made payment using a mobile phone, older adults (% age 35+)\",\"Denotes the percentage of adults using a mobile phone to pay bills, make purchases, or send or receive money from an account (with a bank or other formal financial institution or mobile money provider) (% age 35+).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf5\",\"Made payment using the internet (% age 15+)\",\"Denotes the percentage of adults using the internet to pay bills, make purchases, or send money online (% age 15+).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf5.1\",\"Made payment using the internet, female  (% age 15+)\",\"Denotes the percentage of adults using the internet to pay bills, make purchases, or send money online (female, % age 15+).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf5.2\",\"Made payment using the internet, male (% age 15+)\",\"Denotes the percentage of adults using the internet to pay bills, make purchases, or send money online (male, % age 15+).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf5.3\",\"Made payment using the internet, income, poorest 40% (% age 15+)\",\"Denotes the percentage of adults using the internet to pay bills, make purchases, or send money online (income, poorest 40%, % age 15+).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf5.4\",\"Made payment using the internet, income, richest 60% (% age 15+)\",\"Denotes the percentage of adults using the internet to pay bills, make purchases, or send money online (income, richest 60%, % age 15+).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf5.5\",\"Made payment using the internet, young adults (% ages 15-34)\",\"Denotes the percentage of adults using the internet to pay bills, make purchases, or send money online (% ages 15-34).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf5.6\",\"Made payment using the internet, older adults (% age 35+)\",\"Denotes the percentage of adults using the internet to pay bills, make purchases, or send money online (% age 35+).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf6\",\"Made payment using a debit card (% age 15+)\",\"Denotes the percentage of respondents who report using their own debit card directly to make a purchase in the past 12 months  (% age 15+).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf6.1\",\"Made payment using a debit card, female  (% age 15+)\",\"Denotes the percentage of respondents who report using their own debit card directly to make a purchase in the past 12 months (female, % age 15+).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf6.2\",\"Made payment using a debit card, male (% age 15+)\",\"Denotes the percentage of respondents who report using their own debit card directly to make a purchase in the past 12 months (male, % age 15+).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf6.3\",\"Made payment using a debit card, income, poorest 40% (% age 15+)\",\"Denotes the percentage of respondents who report using their own debit card directly to make a purchase in the past 12 months (income, poorest 40%, % age 15+).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf6.4\",\"Made payment using a debit card, income, richest 60% (% age 15+)\",\"Denotes the percentage of respondents who report using their own debit card directly to make a purchase in the past 12 months (income, richest 60%, % age 15+).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf6.5\",\"Made payment using a debit card, young adults (% ages 15-34)\",\"Denotes the percentage of respondents who report using their own debit card directly to make a purchase in the past 12 months (% ages 15-34).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf6.6\",\"Made payment using a debit card, older adults (% age 35+)\",\"Denotes the percentage of respondents who report using their own debit card directly to make a purchase in the past 12 months (% age 35+).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf7\",\"High frequency of account use (% age 15+)\",\"Denotes the percentage of adults with high frequency use of account where high frequency is defined as having taken money out of a personal account(s) at a bank or other formal financial institution 3 or more times in a typical month, including cash withd\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf7.1\",\"High frequency of account use, female  (% age 15+)\",\"Denotes the percentage of adults with high frequency use of account where high frequency is defined as having taken money out of a personal account(s) at a bank or other formal financial institution 3 or more times in a typical month, including cash withd\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf7.2\",\"High frequency of account use, male (% age 15+)\",\"Denotes the percentage of adults with high frequency use of account where high frequency is defined as having taken money out of a personal account(s) at a bank or other formal financial institution 3 or more times in a typical month, including cash withd\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf7.3\",\"High frequency of account use, income, poorest 40% (% age 15+)\",\"Denotes the percentage of adults with high frequency use of account where high frequency is defined as having taken money out of a personal account(s) at a bank or other formal financial institution 3 or more times in a typical month, including cash withd\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf7.4\",\"High frequency of account use, income, richest 60% (% age 15+)\",\"Denotes the percentage of adults with high frequency use of account where high frequency is defined as having taken money out of a personal account(s) at a bank or other formal financial institution 3 or more times in a typical month, including cash withd\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf7.5\",\"High frequency of account use, young adults (% ages 15-34)\",\"Denotes the percentage of adults with high frequency use of account where high frequency is defined as having taken money out of a personal account(s) at a bank or other formal financial institution 3 or more times in a typical month, including cash withd\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf7.6\",\"High frequency of account use, older adults (% age 35+)\",\"Denotes the percentage of adults with high frequency use of account where high frequency is defined as having taken money out of a personal account(s) at a bank or other formal financial institution 3 or more times in a typical month, including cash withd\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf8\",\"Saved at a financial institution (% age 15+)\",\"Denotes the percentage of respondents who report saving or setting aside any money at a bank or another type of financial institution in the past 12 months (see year-specific definitions for details) (% age 15+).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf8.1\",\"Saved at a financial institution, female  (% age 15+)\",\"Denotes the percentage of respondents who report saving or setting aside any money at a bank or another type of financial institution in the past 12 months (see year-specific definitions for details) (female, % age 15+).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf8.2\",\"Saved at a financial institution, male (% age 15+)\\\"\",\"Denotes the percentage of respondents who report saving or setting aside any money at a bank or another type of financial institution in the past 12 months (see year-specific definitions for details)  (with a bank or financial institution) (male, % age 15\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf8.3\",\"Saved at a financial institution, income, poorest 40% (% age 15+)\",\"Denotes the percentage of respondents who report saving or setting aside any money at a bank or another type of financial institution in the past 12 months (see year-specific definitions for details) (income, poorest 40%, % age 15+).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf8.4\",\"Saved at a financial institution, income, richest 60% (% age 15+)\",\"Denotes the percentage of respondents who report saving or setting aside any money at a bank or another type of financial institution in the past 12 months (see year-specific definitions for details) (income, richest 60%, % age 15+).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf8.5\",\"Saved at a financial institution, young adults (% ages 15-34)\",\"Denotes the percentage of respondents who report saving or setting aside any money at a bank or another type of financial institution in the past 12 months (see year-specific definitions for details) (% ages 15-34).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf8.6\",\"Saved at a financial institution, older adults (% age 35+)\",\"Denotes the percentage of respondents who report saving or setting aside any money at a bank or another type of financial institution in the past 12 months (see year-specific definitions for details) (% age 35+).\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf9\",\"Main source of emergency funds: savings (% age 15+)\",\"Denotes, among respondents reporting that in case of an emergency it is very possible, somewhat possible, or not very possible for them to come up with 1/20 of GNI per capita in local currency, the percentage who choose savings as their main source of thi\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf9.1\",\"Main source of emergency funds: savings, female  (% age 15+)\",\"Denotes, among respondents reporting that in case of an emergency it is very possible, somewhat possible, or not very possible for them to come up with 1/20 of GNI per capita in local currency, the percentage who choose savings as their main source of thi\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf9.2\",\"Main source of emergency funds: savings, male (% age 15+)\",\"Denotes, among respondents reporting that in case of an emergency it is very possible, somewhat possible, or not very possible for them to come up with 1/20 of GNI per capita in local currency, the percentage who choose savings as their main source of thi\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf9.3\",\"Main source of emergency funds: savings, income, poorest 40% (% age 15+)\",\"Denotes, among respondents reporting that in case of an emergency it is very possible, somewhat possible, or not very possible for them to come up with 1/20 of GNI per capita in local currency, the percentage who choose savings as their main source of thi\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf9.4\",\"Main source of emergency funds: savings, income, richest 60% (% age 15+)\",\"Denotes, among respondents reporting that in case of an emergency it is very possible, somewhat possible, or not very possible for them to come up with 1/20 of GNI per capita in local currency, the percentage who choose savings as their main source of thi\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf9.5\",\"Main source of emergency funds: savings, young adults (% ages 15-34)\",\"Denotes, among respondents reporting that in case of an emergency it is very possible, somewhat possible, or not very possible for them to come up with 1/20 of GNI per capita in local currency, the percentage who choose savings as their main source of thi\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"gf9.6\",\"Main source of emergency funds: savings, older adults (% age 35+)\",\"Denotes, among respondents reporting that in case of an emergency it is very possible, somewhat possible, or not very possible for them to come up with 1/20 of GNI per capita in local currency, the percentage who choose savings as their main source of thi\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Global Findex database (http://datatopics.worldbank.org/financialinclusion/)\"\n\"GFDD.AI.01\",\"Bank accounts per 1000 adults\",\"For each country calculated as: 1,000*reported number of depositors/adult population in the reporting country.\",\"Global Financial Development\",\"Financial Access Survey (FAS), International Monetary Fund (IMF)\"\n\"GFDD.AI.02\",\"Bank branches per 100,000 adults \",\"For each country calculated as: 100,000*reported number of depositors/adult population in the reporting country.\",\"Global Financial Development\",\"Financial Access Survey (FAS), International Monetary Fund (IMF)\"\n\"GFDD.AI.03\",\"Firms with a bank loan or line of credit (%)\",\"Percentage of firms in the formal sector with a line of credit or a loan from a formal financial institution, such as a bank, credit union, microfinance institution, or cooperative.\",\"Global Financial Development\",\"Enterprise Surveys, World Bank\"\n\"GFDD.AI.04\",\"Small firms with a bank loan or line of credit (%)\",\"Percentage of small firms (5-19 workers) in the formal sector with a line of credit or a loan from a (formal) financial institution, such as a bank, credit union, microfinance institution, or cooperative.\",\"Global Financial Development\",\"Enterprise Surveys, World Bank\"\n\"GFDD.AI.05\",\"Account at a formal financial institution (% age 15+)\",\"The percentage of respondents with an account (self or together with someone else) at a bank, credit union, another financial institution (e.g., cooperative, microfinance institution), or the post office (if applicable) including respondents who reported having a debit card (% age 15+).\",\"Global Financial Development\",\"Global Financial Inclusion (Global Findex) Database, World Bank\"\n\"GFDD.AI.06\",\"Saved at a financial institution in the past year (% age 15+)\",\"The percentage of respondents who report saving or setting aside any money by using an account at a formal financial institution such as a bank, credit union, microfinance institution, or cooperative in the past 12 months (% age 15+).\",\"Global Financial Development\",\"Global Financial Inclusion (Global Findex) Database, World Bank\"\n\"GFDD.AI.07\",\"Loan from a financial institution in the past year (% age 15+)\",\"The percentage of respondents who report borrowing any money from a bank, credit union, microfinance institution, or another financial institution such as a cooperative in the past 12 months (% age 15+).\",\"Global Financial Development\",\"Global Financial Inclusion (Global Findex) Database, World Bank\"\n\"GFDD.AI.08\",\"Account used for business purposes (% age 15+)\",\" The percentage of respondents who report using their accounts at a formal financial institution for business purposes only or for both business purposes and personal transactions (% age 15+).\",\"Global Financial Development\",\"Global Financial Inclusion (Global Findex) Database, World Bank\"\n\"GFDD.AI.09\",\"Account used to receive government payments (% age 15+)\",\" The percentage of respondents who report using their accounts at a formal financial institution to receive money or payments from the government in the past 12 months (% age 15+).\",\"Global Financial Development\",\"Global Financial Inclusion (Global Findex) Database, World Bank\"\n\"GFDD.AI.10\",\"Account used to receive remittances (% age 15+)\",\" The percentage of respondents who report using their accounts at a formal financial institution to receive money from family members living elsewhere in the past 12 months (% age 15+).\",\"Global Financial Development\",\"Global Financial Inclusion (Global Findex) Database, World Bank\"\n\"GFDD.AI.11\",\"Account used to receive wages (% age 15+)\",\" The percentage of respondents who report using their accounts at a formal financial institution to receive money or payments for work or from selling goods in the past 12 months (% age 15+).\",\"Global Financial Development\",\"Global Financial Inclusion (Global Findex) Database, World Bank\"\n\"GFDD.AI.12\",\"Saved any money in the past year (% age 15+)\",\" The percentage of respondents who report saving or setting aside any money in the past 12 months (% age 15+).\",\"Global Financial Development\",\"Global Financial Inclusion (Global Findex) Database, World Bank\"\n\"GFDD.AI.13\",\"Saved using a savings club in the past year (% age 15+)\",\" The percentage of respondents who report saving or setting aside any money by using an informal savings club or a person outside the family in the past 12 months (% age 15+).\",\"Global Financial Development\",\"Global Financial Inclusion (Global Findex) Database, World Bank\"\n\"GFDD.AI.14\",\"Loan in the past year (% age 15+)\",\" The percentage of respondents who borrowed any money in the past 12 months from any of the following sources: a formal financial institution, a store by using installment credit, family or friends, employer, or another private lender (% age 15+). (Note that getting a loan does not necessarily require having an account.)\",\"Global Financial Development\",\"Global Financial Inclusion (Global Findex) Database, World Bank\"\n\"GFDD.AI.15\",\"Loan from a private lender in the past year (% age 15+)\",\" The percentage of respondents who report borrowing any money from a private lender in the past 12 months (% age 15+).\",\"Global Financial Development\",\"Global Financial Inclusion (Global Findex) Database, World Bank\"\n\"GFDD.AI.16\",\"Loan from an employer in the past year (% age 15+)\",\" The percentage of respondents who report borrowing any money from an employer in the past 12 months (% age 15+).\",\"Global Financial Development\",\"Global Financial Inclusion (Global Findex) Database, World Bank\"\n\"GFDD.AI.17\",\"Loan through store credit in the past year (% age 15+)\",\" The percentage of respondents who borrowed any money in the past 12 months from a store by using installment credit or buying on credit (% age 15+).\",\"Global Financial Development\",\"Global Financial Inclusion (Global Findex) Database, World Bank\"\n\"GFDD.AI.18\",\"Loan from family or friends in the past year (% age 15+)\",\" The percentage of respondents who report borrowing any money from family or friends in the past 12 months (% age 15+).\",\"Global Financial Development\",\"Global Financial Inclusion (Global Findex) Database, World Bank\"\n\"GFDD.AI.19\",\"Checks used to make payments (% age 15+)\",\"The percentage of respondents who used checks in the past 12 months to make payments on bills or to buy things using money from their accounts (% age 15+).\",\"Global Financial Development\",\"Global Financial Inclusion (Global Findex) Database, World Bank\"\n\"GFDD.AI.20\",\"Credit card (% age 15+)\",\"The percentage of respondents with a credit card (% age 15+).\",\"Global Financial Development\",\"Global Financial Inclusion (Global Findex) Database, World Bank\"\n\"GFDD.AI.21\",\"Debit card (% age 15+)\",\"The percentage of respondents with a debit card (% age 15+).\",\"Global Financial Development\",\"Global Financial Inclusion (Global Findex) Database, World Bank\"\n\"GFDD.AI.22\",\"Electronic payments used to make payments (% age 15+)\",\"The percentage of respondents who used electronic payments (payments that one makes or that are made automatically including wire transfers or payments made online) in the past 12 months to make payments on bills or to buy things using money from their accounts (% age 15+).\",\"Global Financial Development\",\"Global Financial Inclusion (Global Findex) Database, World Bank\"\n\"GFDD.AI.23\",\"Mobile phone used to pay bills (% age 15+)\",\"The percentage of respondents who report using a mobile phone to pay bills in the past 12 months (% age 15+). \",\"Global Financial Development\",\"Global Financial Inclusion (Global Findex) Database, World Bank\"\n\"GFDD.AI.24\",\"Mobile phone used to send money (% age 15+)\",\"The percentage of respondents who report using a mobile phone to send money in the past 12 months (% age 15+).\",\"Global Financial Development\",\"Global Financial Inclusion (Global Findex) Database, World Bank\"\n\"GFDD.AI.25\",\"ATMs per 100,000 adults\",\"For each country calculated as: 100,000*Number of ATMs/adult population in the reporting country.\",\"Global Financial Development\",\"Financial Access Survey (FAS), International Monetary Fund (IMF)\"\n\"GFDD.AI.26\",\"Depositing/withdrawing at least once in a typical month (% age 15+)\",\"Adults depositing/withdrawing at least once in a typical month (% age 15+). It is calculated as follows: (100 - \\\"0 deposits/withdrawals in typical month (% with an account,  age 15+)\\\" ) * (\\\"Account at a formal financial institution (% age 15+)\\\") / 100.  \\\"0 deposits/withdrawals in typical month (% with an account,  age 15+)\\\" denotes the percentage of respondents with an account at a formal financial institution who report making zero deposits into or zero withdrawals from their personal account(s) in a typical month (also called “inactive account”). This includes cash or electronic deposits, or any time money is put into or removed from account(s) by self or others (% age 15+, with an account). \\\"Account at a formal financial institution (% age 15+)\\\" denotes the percentage of respondents with an account (self or together with someone else) at a bank, credit union, another financial institution (e.g., cooperative, microfinance institution), or the post office (if applicable) including respondents who reported having a debit card (% age 15+).\",\"Global Financial Development\",\"Global Financial Inclusion (Global Findex) Database, World Bank\"\n\"GFDD.AI.27\",\"Firms with a checking or savings account (%)\",\"Percentage of firms with a checking or savings account.\",\"Global Financial Development\",\"Enterprise Surveys, World Bank\"\n\"GFDD.AI.28\",\"Firms using banks to finance investments (%)\",\"Percentage of firms using banks to finance purchases of fixed assets.\",\"Global Financial Development\",\"Enterprise Surveys, World Bank\"\n\"GFDD.AI.29\",\"Firms using banks to finance working capital (%)\",\"Percentage of firms using bank loans to finance working capital.\",\"Global Financial Development\",\"Enterprise Surveys, World Bank\"\n\"GFDD.AI.30\",\"Loans requiring collateral (%)\",\"Percentage of loans where a formal financial institution requires collateral in order to provide the financing.\",\"Global Financial Development\",\"Enterprise Surveys, World Bank\"\n\"GFDD.AI.31\",\"Value of collateral needed for a loan (% of the loan amount)\",\"Value of collateral needed by a formal financial institution for a loan or line of credit as a percentage of the loan value or the value of the line of credit.\",\"Global Financial Development\",\"Enterprise Surveys, World Bank\"\n\"GFDD.AI.32\",\"Firms not needing a loan (%)\",\"Percent of firms that did not apply for a loan in the last fiscal year because they did not need a loan. The denominator is the sum of all firms who applied and did not apply for a loan. The numerator is the number of firms who did not apply for a loan and also stated that they did not need a loan.\",\"Global Financial Development\",\"Enterprise Surveys, World Bank\"\n\"GFDD.AI.33\",\"Firms whose recent loan application was rejected (%)\",\"Percent of firms whose most recent loan application was rejected by a formal financial institution.\",\"Global Financial Development\",\"Enterprise Surveys, World Bank\"\n\"GFDD.AI.34\",\"Investments financed by banks (%)\",\"Estimated proportion of purchases of fixed assets that was financed from bank loans.\",\"Global Financial Development\",\"Enterprise Surveys, World Bank\"\n\"GFDD.AI.35\",\"Working capital financed by banks (%)\",\"Proportion of the working capital that was financed by bank loans.\",\"Global Financial Development\",\"Enterprise Surveys, World Bank\"\n\"GFDD.AI.36\",\"Firms identifying access to finance as a major constraint (%)\",\"Percentage of firms identifying access/cost of finance as a \\\"major\\\" or \\\"very severe\\\" obstacle.\",\"Global Financial Development\",\"Enterprise Surveys, World Bank\"\n\"GFDD.AM.01\",\"Value traded excluding top 10 traded companies to total value traded (%)\",\"Value of all traded shares outside of the top ten largest traded companies as a share of total value of all traded shares in a stock market exchange. WFE provides data on the exchange level. This variable is aggregated up to the country level by taking a simple average over exchanges.\",\"Global Financial Development\",\"World Federation of Exchanges\"\n\"GFDD.AM.02\",\"Market capitalization excluding top 10 companies to total market capitalization (%)\",\"Value of listed shares outside of the top ten largest companies to total value of all listed shares. \",\"Global Financial Development\",\"World Federation of Exchanges\"\n\"GFDD.AM.03\",\"Nonfinancial corporate bonds to total bonds and notes outstanding (%)\",\"Total amount of domestic nonfinancial corporate bonds and notes outstanding (BIS Table 16B) to total amount of domestic bonds and notes outstanding, both corporate and noncorporate (BIS Table 16A).\",\"Global Financial Development\",\"Bank for International Settlements (BIS)\"\n\"GFDD.AM.04\",\"Investments financed by equity or stock sales (%)\",\"Estimated proportion of purchases of fixed assets that was financed by owners’ contribution or issue of new equity shares.\",\"Global Financial Development\",\"Enterprise Surveys, World Bank\"\n\"GFDD.DI.01\",\"Private credit by deposit money banks to GDP (%)\",\"Private credit by deposit money banks and other financial institutions to GDP, calculated using the following deflation method:  {(0.5)*[Ft/P_et + Ft-1/P_et-1]}/[GDPt/P_at] where F is credit to the private sector, P_e is end-of period CPI, and P_a is average annual CPI. Raw data are from the electronic version of the IMF’s International Financial Statistics. Private credit by deposit money banks (IFS line 22d); GDP in local currency (IFS line 99B..ZF or, if not available, line 99B.CZF); end-of period CPI (IFS line 64M..ZF or, if not available, 64Q..ZF); and average annual CPI is calculated using the monthly CPI values (IFS line 64M..ZF).\",\"Global Financial Development\",\"International Financial Statistics (IFS), International Monetary Fund (IMF)\"\n\"GFDD.DI.02\",\"Deposit money banks' assets to GDP (%)\",\"Claims on domestic real nonfinancial sector by deposit money banks as a share of GDP, calculated using the following deflation method:  {(0.5)*[Ft/P_et + Ft-1/P_et-1]}/[GDPt/P_at] where F is deposit money bank claims, P_e is end-of period CPI, and P_a is average annual CPI. Raw data are from the electronic version of the IMF’s International Financial Statistics. Deposit money bank assets (IFS lines 22, a-d); GDP in local currency (IFS line 99B..ZF or, if not available, line 99B.CZF); end-of period CPI (IFS line 64M..ZF or, if not available, 64Q..ZF); and average annual CPI is calculated using the monthly CPI values (IFS line 64M..ZF).\",\"Global Financial Development\",\"International Financial Statistics (IFS), International Monetary Fund (IMF)\"\n\"GFDD.DI.03\",\"Nonbank financial institutions’ assets to GDP (%)\",\"Claims on domestic real nonfinancial sector by other financial institutions as a share of GDP, calculated using the following deflation method: {(0.5)*[Ft/P_et + Ft-1/P_et-1]}/[GDPt/P_at]  where F is other financial institutions' claims, P_e is end-of period CPI, and P_a is average annual CPI. Raw data are from the electronic version of the IMF’s International Financial Statistics. Nonbank financial institutions assets (IFS lines 42, a-d, h, and s); GDP in local currency (IFS line 99B..ZF or, if not available, line 99B.CZF); end-of period CPI (IFS line 64M..ZF or, if not available, 64Q..ZF); and average annual CPI is calculated using the monthly CPI values (IFS line 64M..ZF).\",\"Global Financial Development\",\"International Financial Statistics (IFS), International Monetary Fund (IMF)\"\n\"GFDD.DI.04\",\"Deposit money bank assets to deposit money bank assets and central bank assets (%)\",\"Raw data are from the electronic version of the IMF's International Financial Statistics (IFS lines 12 and 22, a-d).\",\"Global Financial Development\",\"International Financial Statistics (IFS), International Monetary Fund (IMF)\"\n\"GFDD.DI.05\",\"Liquid liabilities to GDP (%)\",\"Ratio of liquid liabilities to GDP, calculated using the following deflation method: {(0.5)*[Ft/P_et + Ft-1/P_et-1]}/[GDPt/P_at] where F is liquid liabilities, P_e is end-of period CPI, and P_a is average annual CPI. Raw data are from the electronic version of the IMF's International Financial Statistics. Liquid liabilities (IFS lines 55L or, if not available, line 35L); GDP in local currency (IFS line 99B..ZF or, if not available, line 99B.CZF); end-of period CPI (IFS line 64M..ZF or, if not available, 64Q..ZF); and average annual CPI is calculated using the monthly CPI values (IFS line 64M..ZF) For Eurocurrency  area countries liquid liabilities are estimated by summing IFS items 34A, 34B and 35.\",\"Global Financial Development\",\"International Financial Statistics (IFS), International Monetary Fund (IMF)\"\n\"GFDD.DI.06\",\"Central bank assets to GDP (%)\",\"Claims on domestic real nonfinancial sector by the Central Bank as a share of GDP, calculated using the following deflation method:  {(0.5)*[Ft/P_et + Ft-1/P_et-1]}/[GDPt/P_at] where F is Central Bank claims, P_e is end-of period CPI, and P_a is average annual CPI. Raw data are from the electronic version of the IMF's International Financial Statistics. Central Bank claims (IFS lines 12, a-d); GDP in local currency (IFS line 99B..ZF or, if not available, line 99B.CZF); end-of period CPI (IFS line 64M..ZF or, if not available, 64Q..ZF); and average annual CPI is calculated using the monthly CPI values (IFS line 64M..ZF).\",\"Global Financial Development\",\"International Financial Statistics (IFS), International Monetary Fund (IMF)\"\n\"GFDD.DI.07\",\"Mutual fund assets to GDP (%)\",\"Data taken from a variety of sources such as Investment Company Institute and national sources.\",\"Global Financial Development\",\"World Bank - Non banking financial database\"\n\"GFDD.DI.08\",\"Financial system deposits to GDP (%)\",\"Demand, time and saving deposits in deposit money banks and other financial institutions as a share of GDP, calculated using the following deflation method:  {(0.5)*[Ft/P_et + Ft-1/P_et-1]}/[GDPt/P_at] where F is demand and time and saving deposits, P_e is end-of period CPI, and P_a is average annual CPI. Raw data are from the electronic version of the IMF’s International Financial Statistics. Financial system deposits (IFS lines 24, 25, 44, and 45); GDP in local currency (IFS line 99B..ZF or, if not available, line 99B.CZF); end-of period CPI (IFS line 64M..ZF or, if not available, 64Q..ZF); and average annual CPI is calculated using the monthly CPI values (IFS line 64M..ZF).\",\"Global Financial Development\",\"International Financial Statistics (IFS), International Monetary Fund (IMF)\"\n\"GFDD.DI.09\",\"Life insurance premium volume to GDP (%)\",\"Premium data is taken from various issues of Sigma reports (Swiss Re). Data on GDP in US dollars is from the electronic version of the World Development Indicators.\",\"Global Financial Development\",\"Sigma Reports, Swiss Re\"\n\"GFDD.DI.10\",\"Nonlife insurance premium volume to GDP (%)\",\"Premium data is taken from various issues of Sigma reports (Swiss Re). Data on GDP in US dollars is from the electronic version of the World Development Indicators.\",\"Global Financial Development\",\"Sigma Reports, Swiss Re\"\n\"GFDD.DI.11\",\"Insurance company assets to GDP (%)\",\"Data taken from a variety of sources such as AXCO and national sources.\",\"Global Financial Development\",\"Nonbanking financial database, World Bank\"\n\"GFDD.DI.12\",\"Private credit by deposit money banks and other financial institutions to GDP (%)\",\"Private credit by deposit money banks and other financial institutions to GDP, calculated using the following deflation method:  {(0.5)*[Ft/P_et + Ft-1/P_et-1]}/[GDPt/P_at] where F is credit to the private sector, P_e is end-of period CPI, and P_a is average annual CPI. Raw data are from the electronic version of the IMF’s International Financial Statistics. Private credit by deposit money banks and other financial institutions (IFS lines 22d and 42d); GDP in local currency (IFS line 99B..ZF or, if not available, line 99B.CZF); end-of period CPI (IFS line 64M..ZF or, if not available, 64Q..ZF); and average annual CPI is calculated using the monthly CPI values (IFS line 64M..ZF)\",\"Global Financial Development\",\"International Financial Statistics (IFS), International Monetary Fund (IMF)\"\n\"GFDD.DI.13\",\"Pension fund assets to GDP (%)\",\"Ratio of assets of pension funds to GDP. A pension fund is any plan, fund, or scheme that provides retirement income. Data taken from a variety of sources such as OECD, AIOS, FIAP and national sources.\",\"Global Financial Development\",\"Nonbanking financial database, World Bank\"\n\"GFDD.DI.14\",\"Domestic credit to private sector (% of GDP)\",\"Domestic credit to private sector refers to financial resources provided to the private sector, such as through loans, purchases of nonequity securities, and trade credits and other accounts receivable, that establish a claim for repayment. For some countries these claims include credit to public enterprises.\",\"Global Financial Development\",\"World Development Indicators (WDI), World Bank\"\n\"GFDD.DM.01\",\"Stock market capitalization to GDP (%)\",\"Value of listed shares to GDP, calculated using the following deflation  method:  {(0.5)*[Ft/P_et + Ft-1/P_et-1]}/[GDPt/P_at] where F is stock market capitalization, P_e is end-of period CPI, and P_a  is average annual CPI. End-of period CPI (IFS line 64M..ZF or, if not available, 64Q..ZF) and average annual CPI is calculated using the monthly CPI values (IFS line 64M..ZF).\",\"Global Financial Development\",\"Global Stock Markets Factbook and supplemental S&P data, Standard & Poor's\"\n\"GFDD.DM.02\",\"Stock market total value traded to GDP (%)\",\"Total value of all traded shares in a stock market exchange as a percentage of GDP.  Following deflation method is use:  {(0.5)*[Ft/P_et + Ft-1/P_et-1]}/[GDPt/P_at] where F is stock market capitalization, P_e is end-of period CPI, and P_a  is average annual CPI. End-of period CPI (IFS line 64M..ZF or, if not available, 64Q..ZF) and average annual CPI is calculated using the monthly CPI values (IFS line 64M..ZF).\",\"Global Financial Development\",\"Global Stock Markets Factbook and supplemental S&P data, Standard & Poor's\"\n\"GFDD.DM.03\",\"Outstanding domestic private debt securities to GDP (%)\",\"Total amount of domestic private debt securities (amounts outstanding) issued in domestic markets as a share of GDP. It covers data on long-term bonds and notes, commercial paper and other short-term notes. Table 16A (domestic debt amount): all issuers minus governments / GDP. End of year data (i.e. December data) are considered for debt securities.  The figures are deflated using the following methodology: {(0.5)*[Ft/P_et + Ft-1/P_et-1]}/[GDPt/P_at] where F is the level domestic private debt, P_e is end-of period CPI, and P_a is average annual CPI. GDP is from World Development Indicators. End-of period CPI is taken from IFS line 64M..ZF month of December (or if not available Q4). Average annual CPI is constructed from the monthly CPI figure taken from IFS line 64..ZF.\",\"Global Financial Development\",\"Bank for International Settlements (BIS)\"\n\"GFDD.DM.04\",\"Outstanding domestic public debt securities to GDP (%)\",\"Total amount of domestic public debt securities (amounts outstanding) issued in domestic markets as a share of GDP. It covers long-term bonds and notes, treasury bills, commercial paper and other short-term notes. Table 16A (domestic debt amount): governments / GDP. End of year data (i.e. December data) are considered for debt securities. The figures are deflated using the following methodology: {(0.5)*[Ft/P_et + Ft-1/P_et-1]}/[GDPt/P_at] where F is the level domestic public debt, P_e is end-of period CPI, and P_a is average annual CPI. GDP is from World Development Indicators. End-of period CPI is taken from IFS line 64M..ZF month of December (or if not available Q4). Average annual CPI is constructed from the monthly CPI figure taken from IFS line 64..ZF.\",\"Global Financial Development\",\"Bank for International Settlements (BIS)\"\n\"GFDD.DM.05\",\"Outstanding international private debt securities to GDP (%)\",\"Amount of private international debt securities (amounts outstanding), as a share of GDP. It covers long-term bonds and notes and money market instruments placed on international markets. (Table 12A  (international debt amount: all issuers) - Table 12D (international debt amount: governments)) / GDP. End of year data (i.e. December data) are considered for debt securities. The figures are deflated using the following methodology: {(0.5)*[Ft/P_et + Ft-1/P_et-1]}/[GDPt/P_at] where F is the level intenational private debt, P_e is end-of period CPI, and P_a is average annual CPI. GDP is from World Development Indicators.End-of period CPI is taken from IFS line 64M..ZF month of December (or if not available Q4). Average annual CPI is constructed from the monthly CPI figure taken from IFS line 64..ZF.\",\"Global Financial Development\",\"Bank for International Settlements (BIS)\"\n\"GFDD.DM.06\",\"Outstanding international public debt securities to GDP (%)\",\"Amount of public international debt securities (amounts outstanding), as a share of GDP. It covers long-term bonds and notes and money market instruments placed on international markets. Table 12D (international debt amount): governments / GDP. End of year data (i.e. December data) are considered for debt securities. The figures are deflated using the following methodology: {(0.5)*[Ft/P_et + Ft-1/P_et-1]}/[GDPt/P_at] where F is the level international public debt, P_e is end-of period CPI, and P_a is average annual CPI. GDP is from World Development Indicators. End-of period CPI is taken from IFS line 64M..ZF month of December (or if not available Q4). Average annual CPI is constructed from the monthly CPI figure taken from IFS line 64..ZF.\",\"Global Financial Development\",\"Bank for International Settlements (BIS)\"\n\"GFDD.DM.07\",\"International debt issues to GDP (%)\",\"Total value of outstanding international debt issues both public and private, as a share of GDP. Offshore bank loan data from BIS Statistical Appendix Table 12A (Amount Outstanding): International debt securities - all issuers.\",\"Global Financial Development\",\"Bank for International Settlements (BIS)\"\n\"GFDD.DM.08\",\"Gross portfolio equity liabilities to GDP (%)\",\"Ratio of gross portfolio equity liabilities to GDP. Equity liabilities include shares, stocks, participation, and similar documents (such as American depository receipts) that usually denote ownership of equity. Raw data are from the electronic version of the IMF's International Financial Statistics. IFS line 79LDDZF/ GDP. Local currency GDP is from IFS (line 99B..ZF or, if not available, line 99B.CZF). \",\"Global Financial Development\",\"International Financial Statistics (IFS), International Monetary Fund (IMF)\"\n\"GFDD.DM.09\",\"Gross portfolio equity assets to GDP (%)\",\"Ratio of gross portfolio equity assets to GDP. Equity assets include shares, stocks, participation, and similar documents (such as American depository receipts) that usually denote ownership of equity. Raw data are from the electronic version of the IMF's International Financial Statistics. IFS line 79ADDZF / GDP. Local currency GDP is from IFS (line 99B..ZF or, if not available, line 99B.CZF). \",\"Global Financial Development\",\"International Financial Statistics (IFS), International Monetary Fund (IMF)\"\n\"GFDD.DM.10\",\"Gross portfolio debt liabilities to GDP (%)\",\"Ratio of gross portfolio debt liabilities to GDP. Debt liabilities cover (1) bonds, debentures, notes, etc., and (2) money market or negotiable debt instruments. Raw data are from the electronic version of the IMF's International Financial Statistics. IFS line 79LEDZF / GDP. Local currency GDP is from IFS (line 99B..ZF or, if not available, line 99B.CZF). \",\"Global Financial Development\",\"International Financial Statistics (IFS), International Monetary Fund (IMF)\"\n\"GFDD.EI.01\",\"Bank net interest margin (%)\",\"Raw data are from Bankscope. Data2080[t] / ((data2010[t] + data2010[t-1])/2). Numerator and denominator are aggregated on the country level before division. Note that banks used in the calculation might differ between indicators. Calculated from underlying bank-by-bank unconsolidated data from Bankscope.\",\"Global Financial Development\",\"Bankscope, Bureau van Dijk (BvD)\"\n\"GFDD.EI.02\",\"Bank lending-deposit spread\",\"Raw data are from the electronic version of the IMF’s International Financial Statistics. Difference between lending rate and deposit rate. Lending rate is the rate charged by banks on loans to the private sector and deposit interest rate is the rate offered by commercial banks on three-month deposits. IFS line 60P - line 60L. \",\"Global Financial Development\",\"International Financial Statistics (IFS), International Monetary Fund (IMF)\"\n\"GFDD.EI.03\",\"Bank noninterest income to total income (%)\",\"Raw data are from Bankscope. Data2085 / (data2080 + data2085). Number is only calculated when net-interest income is not negative. Note that banks used in the calculation might differ between indicators. Calculated from underlying bank-by-bank unconsolidated data from Bankscope.\",\"Global Financial Development\",\"Bankscope, Bureau van Dijk (BvD)\"\n\"GFDD.EI.04\",\"Bank overhead costs to total assets (%)\",\"Raw data are from Bankscope. Data2090[t] / ((data2025[t] + data2025[t-1])/2). Numerator and denominator are first aggregated on the country level before division. Note that banks used in the calculation might differ between indicators. Calculated from underlying bank-by-bank unconsolidated data from Bankscope.\",\"Global Financial Development\",\"Bankscope, Bureau van Dijk (BvD)\"\n\"GFDD.EI.05\",\"Bank return on assets (%, after tax)\",\"Raw data are from Bankscope. Data2115[t] / ((data2025[t] + data2025[t-1])/2). Numerator and denominator are first aggregated on the country level before division. Note that banks used in the calculation might differ between indicators. Calculated from underlying bank-by-bank unconsolidated data from Bankscope.\",\"Global Financial Development\",\"Bankscope, Bureau van Dijk (BvD)\"\n\"GFDD.EI.06\",\"Bank return on equity (%, after tax)\",\"Raw data are from Bankscope.  Data2115[t] / ((data2055[t] + data2055[t-1])/2). Numerator and denominator are first aggregated on the country level before division. Note that banks used in the calculation might differ between indicators. Calculated from underlying bank-by-bank unconsolidated data from Bankscope.\",\"Global Financial Development\",\"Bankscope, Bureau van Dijk (BvD)\"\n\"GFDD.EI.07\",\"Bank cost to income ratio (%)\",\"Raw data are from Bankscope.  Data2090 / (data2080 + data2085). All Numerator and denominator are first aggregated on the country level before division. Note that banks used in the calculation might differ between indicators. Calculated from underlying bank-by-bank unconsolidated data from Bankscope.\",\"Global Financial Development\",\"Bankscope, Bureau van Dijk (BvD)\"\n\"GFDD.EI.08\",\"Credit to government and state owned enterprises to GDP (%)\",\"Raw data are from the electronic version of the IMF’s International Financial Statistics. (IFS line 22A + line 22B + line 22C) / GDP. Local currency GDP is from IFS (line 99B..ZF or, if not available, line 99B.CZF). \",\"Global Financial Development\",\"International Financial Statistics (IFS), International Monetary Fund (IMF)\"\n\"GFDD.EI.09\",\"Bank return on assets (%, before tax)\",\"Raw data are from Bankscope. Data10270[t] / ((data2025[t] + data2025[t-1])/2). Numerator and denominator are first aggregated on the country level before division. Note that banks used in the calculation might differ between indicators. Calculated from underlying bank-by-bank unconsolidated data from Bankscope.\",\"Global Financial Development\",\"Bankscope, Bureau van Dijk (BvD)\"\n\"GFDD.EI.10\",\"Bank return on equity (%, before tax)\",\"Raw data are from Bankscope.  Data10270[t] / ((data2055[t] + data2055[t-1])/2). Numerator and denominator are first aggregated on the country level before division. Note that banks used in the calculation might differ between indicators. Calculated from underlying bank-by-bank unconsolidated data from Bankscope.\",\"Global Financial Development\",\"Bankscope, Bureau van Dijk (BvD)\"\n\"GFDD.EM.01\",\"Stock market turnover ratio (%)\",\"Ratio of the value of total shares traded to average real market capitalization, the denominator is deflated using the following method:  Tt/P_at/{(0.5)*[Mt/P_et + Mt-1/P_et-1] where T is total value traded, M is stock market capitalization, P_e is end-of period CPI. (IFS line 64M..ZF or, if not available, 64Q..ZF) and annual CPI (IFS line 64..ZF) are from the IMF’s International Financial Statistics.\",\"Global Financial Development\",\"Global Stock Markets Factbook and supplemental S&P data, Standard & Poor's\"\n\"GFDD.OE.01\",\"Consumer price index (2010=100, December)\",\"Consumer price index reflects changes in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\",\"Global Financial Development\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"GFDD.OE.02\",\"Average Consumer Price Index (2010=100)\",\"Consumer price index reflects changes in the cost to the average consumer of acquiring a basket of goods and services that may be fixed or changed at specified intervals, such as yearly. The Laspeyres formula is generally used.\",\"Global Financial Development\",\"International Monetary Fund, International Financial Statistics and data files.\"\n\"GFDD.OI.01\",\"Bank concentration (%)\",\"Raw data are from Bankscope. (Sum(data2025) for three largest banks in Bankscope) / (Sum(data2025) for all banks in Bankscope). Only reported if number of banks in Bankscope is 3 or more. Calculated from underlying bank-by-bank unconsolidated data from Bankscope.\",\"Global Financial Development\",\"Bankscope, Bureau van Dijk (BvD)\"\n\"GFDD.OI.02\",\"Bank deposits to GDP (%)\",\"Demand, time and saving deposits in deposit money banks as a share of GDP, calculated using the following deflation method: {(0.5)*[Ft/P_et + Ft-1/P_et-1]}/[GDPt/P_at] where F is demand and time and saving deposits, P_e is end-of period CPI, and P_a is average annual CPI. Raw data are from the electronic version of the IMF’s International Financial Statistics. Bank deposits (IFS lines 24 and 25); GDP in local currency (IFS line 99B..ZF or, if not available, line 99B.CZF); end-of period CPI (IFS line 64M..ZF or, if not available, 64Q..ZF); and average annual CPI is calculated using the monthly CPI values (IFS line 64M..ZF).\",\"Global Financial Development\",\"International Financial Statistics (IFS), International Monetary Fund (IMF)\"\n\"GFDD.OI.03\",\"H-statistic\",\"A measure of the degree of competition in the banking market. It measures the elasticity of banks revenues relative to input prices. Under perfect competition, an increase in input prices raises both marginal costs and total revenues by the same amount, and hence the H-statistic equals 1. Under a monopoly, an increase in input prices results in a rise in marginal costs, a fall in output, and a decline in revenues, leading to an H-statistic less than or equal to 0. When H is between 0 and 1, the system operates under monopolistic competition.  it is possible for H-stat to be greater than 1 in some oligopolistic markets. (For more information, see Panzar and Rosse 1982, 1987). Calculated from underlying bank-by-bank data from Bankscope.\",\"Global Financial Development\",\"Bankscope, Bureau van Dijk (BvD)\"\n\"GFDD.OI.04\",\"Lerner index\",\"A measure of market power in the banking market. It is defined as the difference between output prices and marginal costs (relative to prices). Prices are calculated as total bank revenue over assets, whereas marginal costs are obtained from an estimated translog cost function with respect to output. Higher values of the Lerner index indicate less bank competition. Lerner Index estimations follow the methodology described in Demirgüç-Kunt and Martínez Pería (2010). Calculated from underlying bank-by-bank data from Bankscope.\",\"Global Financial Development\",\"Bankscope, Bureau van Dijk (BvD)\"\n\"GFDD.OI.05\",\"Boone indicator\",\"A measure of degree of competition, calculated as the elasticity of profits to marginal costs. To obtain the elasticity, the log of profits (measured by return on assets) is regressed on the log of marginal costs. The estimated coefficient (computed from the first derivative of a trans-log cost function) is the elasticity. The rationale behind the indicator is that higher profits are achieved by more-efficient banks. Hence, the more negative the Boone indicator, the higher the degree of competition is because the effect of reallocation is stronger. Estimations of the Boone indicator in this database follow the methodology used by Schaeck and Čihák (2010) with a modification to use marginal costs instead of average costs. Regional estimates of the Boone indicator pool the bank data by regions (for more information, see Hay and Liu 1997; Boone 2001; Boone, Griffith, and Harrison 2005). Calculated from underlying bank-by-bank data from Bankscope.\",\"Global Financial Development\",\"Bankscope, Bureau van Dijk (BvD)\"\n\"GFDD.OI.06\",\"5-bank asset concentration\",\"Raw data are from Bankscope. (Sum(data2025) for five largest banks in Bankscope) / (Sum(data2025) for all banks in Bankscope). Only reported if number of banks in Bankscope is 5 or more. Calculated from underlying bank-by-bank unconsolidated data from Bankscope.\",\"Global Financial Development\",\"Bankscope, Bureau van Dijk (BvD)\"\n\"GFDD.OI.07\",\"Liquid liabilities in millions USD (2000 constant)\",\"Raw data are from the electronic version of the IMF's International Financial Statistics. Liquid liabilities (IFS lines 55L..ZF or, if not available, line 35L..ZF); for Eurocurrency area countries (BEF, DEM, ESP, FRF, GRD, IEP, ITL, LUF, NLG, ATS, PTE, FIM), liquid liabilities are estimated by summing IFS items 34A, 34B and 35.\",\"Global Financial Development\",\"International Financial Statistics (IFS), International Monetary Fund (IMF)\"\n\"GFDD.OI.08\",\"Loans from nonresident banks (net) to GDP (%)\",\"Ratio of net offshore bank loans to GDP. An offshore bank is a bank located outside the country of residence of the depositor, typically in a low tax jurisdiction (or tax haven) that provides financial and legal advantages. Offshore bank loan data from BIS Statistical Appendix Table 12A (Net Issues): International debt securities - all issuers.\",\"Global Financial Development\",\"Bank for International Settlements (BIS)\"\n\"GFDD.OI.09\",\"Loans from nonresident banks (amounts outstanding) to GDP (%)\",\"Ratio of outstanding offshore bank loans to GDP. An offshore bank is a bank located outside the country of residence of the depositor, typically in a low tax jurisdiction (or tax haven) that provides financial and legal advantages. Offshore bank loan data from BIS Statistical Appendix Table 7A: External loans and deposits of reporting banks vis-à-vis all sectors.\",\"Global Financial Development\",\"Bank for International Settlements (BIS)\"\n\"GFDD.OI.10\",\"External loans and deposits of reporting banks vis-à-vis the banking sector (% of domestic bank deposits)\",\"Data is from BIS Statistical Appendix Table 7A minus 7B: External loans and deposits of reporting banks vis-à-vis all sectors minus external loans and deposits of reporting banks vis-à-vis nonbanking sectors; bank deposits from IFS (IFS lines 24 and 25). End of year data (i.e. December data) are used.\",\"Global Financial Development\",\"Bank for International Settlements (BIS)\"\n\"GFDD.OI.11\",\"External loans and deposits of reporting banks vis-à-vis the nonbanking sectors (% of domestic bank deposits)\",\"Data is from BIS Statistical Appendix Table 7B: External loans and deposits of reporting banks vis-à-vis nonbanking sectors; bank deposits from IFS (IFS lines 24 and 25). End of year data (i.e. December data) are used.\",\"Global Financial Development\",\"Bank for International Settlements (BIS)\"\n\"GFDD.OI.12\",\"External loans and deposits of reporting banks vis-à-vis all sectors (% of domestic bank deposits)\",\"Data is from BIS Statistical Appendix Table 7A: External loans and deposits of reporting banks vis-à-vis all sectors; bank deposits from IFS (IFS lines 24 and 25). End of year data (i.e. December data) are used.\",\"Global Financial Development\",\"Bank for International Settlements (BIS)\"\n\"GFDD.OI.13\",\"Remittance inflows to GDP (%)\",\"Workers' remittances and compensation of employees comprise current transfers by migrant workers and wages and salaries earned by nonresident workers. Data are the sum of three items defined in the fifth edition of the IMF's Balance of Payments Manual: workers' remittances, compensation of employees, and migrants' transfers. Remittances are classified as current private transfers from migrant workers resident in the host country for more than a year, irrespective of their immigration status, to recipients in their country of origin. Migrants' transfers are defined as the net worth of migrants who are expected to remain in the host country for more than one year that is transferred from one country to another at the time of migration. Compensation of employees is the income of migrants who have lived in the host country for less than a year.\",\"Global Financial Development\",\"World Development Indicators (WDI), World Bank\"\n\"GFDD.OI.14\",\"Consolidated foreign claims of BIS reporting banks to GDP (%)\",\"The ratio of consolidated foreign claims to GDP of the banks that are reporting to BIS. Foreign claims are defined as the sum of cross-border claims plus foreign offices’ local claims in all currencies. In the consolidated banking statistics claims that are granted or extended to nonresidents are referred to as either cross-border claims.  In the context of the consolidated banking statistics, local claims refer to claims of domestic banks’ foreign affiliates (branches/subsidiaries) on the residents of the host country (i.e. country of residence of affiliates). Items (A+L from BIS Table 9A). End-of-year data (i.e. December data) are considered for banks claims. GDP is from World Development Indicators.\",\"Global Financial Development\",\"Consolidated banking statistics, Bank for International Settlements (BIS)\"\n\"GFDD.OI.15\",\"Foreign banks among total banks (%)\",\"Percentage of the number of foreign owned banks to the number of the total banks in an Economy. A foreign bank is a bank where 50 percent or more of its shares are owned by foreigners.\",\"Global Financial Development\",\"Stijn Claessens and Neeltje van Horen, 2012. \\\"Foreign Banks: Trends, Impact and Financial Stability\\\" IMF Working Paper, WP/12/10\"\n\"GFDD.OI.16\",\"Foreign bank assets among total bank assets (%)\",\"Percentage of the total banking assets that are held by foreign banks. A foreign bank is a bank where 50 percent or more of its shares are owned by foreigners.\",\"Global Financial Development\",\"Stijn Claessens and Neeltje van Horen, 2012. \\\"Foreign Banks: Trends, Impact and Financial Stability\\\" IMF Working Paper, WP/12/10\"\n\"GFDD.OI.17\",\"Global leasing volume to GDP (%)\",\"Ratios calculated by source.\",\"Global Financial Development\",\"White Clarke Global Leasing Report\"\n\"GFDD.OI.18\",\"Total factoring volume to GDP (%)\",\"GDP data provided by IFS and converted into USD using IFS exchange rates.\",\"Global Financial Development\",\"Factors Chain International\"\n\"GFDD.OI.19\",\"Banking crisis dummy (1=banking crisis, 0=none)\",\"A banking crisis is defined as systemic if two conditions are met: a. Significant signs of financial distress in the banking system (as indicated bysignificant bank runs, losses in the banking system, and/or bank liquidations), b. Significant banking policy intervention measures in response to significant losses in the banking system. The first year that both criteria are met is considered as the year when the crisis start becoming systemic.  The end of a crisis is defined the year before both real GDP growth and real credit growth are positive for at least two consecutive years.\",\"Global Financial Development\",\"Luc Laeven and Fabián Valencia, 2012. “Systemic Banking Crises Database: An Update”, IMF Working Paper WP/12/163\"\n\"GFDD.OM.01\",\"Number of listed companies per 1,000,000 people \",\"Number of publicly listed companies per 1,000,000 people. Number of listed domestic companies is the domestically incorporated companies listed on the country's stock exchanges at the end of the year. This indicator does not include investment companies, mutual funds, or other collective investment vehicles.\",\"Global Financial Development\",\"Global Stock Markets Factbook and supplemental S&P data, Standard & Poor's\"\n\"GFDD.OM.02\",\"Stock market return (%, year-on-year)\",\"Stock market return is the growth rate of annual average stock market index. Annual average stock market index is constructed by taking the average of the daily stock market indexes available at Bloomberg.  \",\"Global Financial Development\",\"Bloomberg\"\n\"GFDD.SI.01\",\"Bank Z-score\",\"It captures the probability of default of a country's banking system. Z-score compares the buffer of a country's banking system (capitalization and returns) with the volatility of those returns. It is estimated as (ROA+(equity/assets))/sd(ROA); sd(ROA) is the standard deviation of ROA. ROA, equity, and assets are country-level aggregate figures Calculated from underlying bank-by-bank unconsolidated data from Bankscope.\",\"Global Financial Development\",\"Bankscope, Bureau van Dijk (BvD)\"\n\"GFDD.SI.02\",\"Bank nonperforming loans to gross loans (%)\",\"Reported by IMF staff. Note that due to differences in national accounting, taxation, and supervisory regimes, these data are not strictly comparable across countries. \",\"Global Financial Development\",\"Financial Soundness Indicators Database (fsi.imf.org), International Monetary Fund (IMF)\"\n\"GFDD.SI.03\",\"Bank capital to total assets (%)\",\"Ratio of bank capital and reserves to total assets. Capital and reserves include funds contributed by owners, retained earnings, general and special reserves, provisions, and valuation adjustments. Capital includes tier 1 capital (paid-up shares and common stock), which is a common feature in all countries' banking systems, and total regulatory capital, which includes several specified types of subordinated debt instruments that need not be repaid if the funds are required to maintain minimum capital levels (these comprise tier 2 and tier 3 capital). Total assets include all nonfinancial and financial assets. Reported by IMF staff. Note that due to differences in national accounting, taxation, and supervisory regimes, these data are not strictly comparable across countries.\",\"Global Financial Development\",\"Financial Soundness Indicators Database (fsi.imf.org), International Monetary Fund (IMF)\"\n\"GFDD.SI.04\",\"Bank credit to bank deposits (%)\",\"Raw data are from the electronic version of the IMF’s International Financial Statistics. Private credit by deposit money banks (IFS line 22d); bank deposits (IFS lines 24 and 25).\",\"Global Financial Development\",\"International Financial Statistics (IFS), International Monetary Fund (IMF)\"\n\"GFDD.SI.05\",\"Bank regulatory capital to risk-weighted assets (%) \",\"Reported by IMF staff. Note that due to differences in national accounting, taxation, and supervisory regimes, these data are not strictly comparable across countries.\",\"Global Financial Development\",\"Financial Soundness Indicators Database (fsi.imf.org), International Monetary Fund (IMF)\"\n\"GFDD.SI.06\",\"Liquid assets to deposits and short term funding (%)\",\"Raw data are from Bankscope.  Data2075 / data2030. Numerator and denominator are first aggregated on the country level before division. Calculated from underlying bank-by-bank unconsolidated data from Bankscope.\",\"Global Financial Development\",\"Bankscope, Bureau van Dijk (BvD)\"\n\"GFDD.SI.07\",\"Provisions to nonperforming loans (%)\",\"Provisions to nonperforming loans. Nonperforming Loans are loans for which the contractual payments are delinquent, usually defined as and NPL ratio  being overdue for more than a certain number of days (e.g., usually more than 90 days). Reported by IMF staff. Note that due to differences in national accounting, taxation, and supervisory regimes, these data are not strictly comparable across countries.\",\"Global Financial Development\",\"Financial Soundness Indicators Database (fsi.imf.org), International Monetary Fund (IMF)\"\n\"GFDD.SM.01\",\"Stock price volatility\",\"Stock price volatility is the average of the 360-day volatility of the national stock market index.\",\"Global Financial Development\",\"Bloomberg\"\n\"GOLD\",\"Gold, $/toz, current$\",\"Gold (UK), 99.5% fine, London afternoon fixing, average of daily rates\",\"Global Economic Monitor (GEM) Commodities\",\"Platts Metals Week; International Monetary Fund, International Financial Statistics; Shearson Lehman Brothers, Metal Market Weekly Review; Thomson Reuters Datastream; World Bank.\"\n\"GPFI1.TOTL\",\"Financial knowledge score (0-3)\",\"Denotes the average amount of financial knowledge related questions respondents in the reported country answered correctly. There are three questions related to simple division, inflation, and interest, respectively. Calculated as the sum of the percentag\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Organisation for Economic Co-operation and Development (OECD), Measuring Financial Literacy and World Bank, Financial Capability Surveys\"\n\"GPFI2\",\"Disclosure index combining existence of a variety of disclosure requirements.\",\"Disclosure index denotes the sum of a variety of existing disclosure requirements. These are (i) Law specifies disclosure requirements in plain language, (ii) Law specifies disclosure requirements in local language, (iii) Law specifies requirement for prescribed standardized disclosure format, (iv) Law specifies requirement for recourse rights and processes, and (v) Law specifies disclosure requirement of annual percentage rate using standard formula for credit products.\",\"G20 Basic Set of Financial Inclusion Indicators\",\"\"\n\"GPFI3\",\"Index reflecting the existence of formal internal and external dispute resolution mechanisms.\",\"Index reflecting the existence of formal internal and external dispute resolution mechanisms takes the value 1 if both resolution mechanisms are available, the value 0.5 if one of the mechanisms is available, and 0 if neither of the mechanisms is available.\",\"G20 Basic Set of Financial Inclusion Indicators\",\"\"\n\"GPFI4\",\"Getting credit: Distance to frontier\",\"Getting credit: Distance to the frontier denotes the distance of each economy to the “frontier,” which represents the highest performance observed on the  getting credit indicator across all economies included in Doing Business. An economy’s distance to frontier is indicated on a scale from 0 to 100, where 0 represents the lowest performance and 100 the frontier.\",\"G20 Basic Set of Financial Inclusion Indicators\",\"\"\n\"GPSS.1\",\"E-money accounts per 1,000 adults\",\"Denotes the number of e-money accounts per 1,000 adults\",\"G20 Basic Set of Financial Inclusion Indicators\",\"World Bank, Global Payments Systems Survey\"\n\"GPSS.2\",\"Retail cashless transactions per 1,000 adults\",\"Denotes the number of retail cashless transactions per 1,000 adults which includes the number of cheques, credit transfers, direct debits, payment card transactions (debit cards, credit cards), and payment by e-money instruments (card based e-money instru\",\"G20 Basic Set of Financial Inclusion Indicators\",\"World Bank, Global Payments Systems Survey\"\n\"GPSS.3\",\"Agents of payment service providers per 100,000 adults\",\"Denotes the number of agents of payment service providers per 100,000 adults. Includes: agents of banks and other deposit taking institutions, as well as specialized entities such as money transfer operators and e-money issuers\",\"G20 Basic Set of Financial Inclusion Indicators\",\"World Bank, Global Payments Systems Survey\"\n\"GPSS.4\",\"POS terminals per 100,000 adults\",\"Denotes the number of Point Of Sale (POS) terminals per 100,000 adults.\",\"G20 Basic Set of Financial Inclusion Indicators\",\"World Bank, Global Payments Systems Survey\"\n\"GPSS.5\",\"Debit cards per 1,000 adults\",\"Denotes the number of debit cards per 1,000 adults\",\"G20 Basic Set of Financial Inclusion Indicators\",\"World Bank, Global Payments Systems Survey\"\n\"GPSS.6\",\"Interoperability of ATM networks and interoperability of POS terminals (0-1)\",\"Denotes the extent of interoperability of ATM networks and interoperability of POS terminals. Takes the value 1 if most or all ATM networks (/POS terminals) are interconnected and 0 if they are not interconnected.\",\"G20 Basic Set of Financial Inclusion Indicators\",\"World Bank, Global Payments Systems Survey\"\n\"GRNUT_OIL\",\"Groundnut oil, $/mt, current$\",\"Groundnut oil (any origin), c.i.f. Rotterdam\",\"Global Economic Monitor (GEM) Commodities\",\"ISTA Mielke GmbH, Oil World; US Department of Agriculture; World Bank.\"\n\"GV.CONT.CO.ES\",\"Control of Corruption (estimate)\",\"Control of corruption measures the extent to which public power is exercised for private gain, including petty and grand forms of corruption, as well as “capture” of the state by elites and private interests.  Further documentation and research using the World Governance Indicators (WGI) is available at www.worldbank.org/wbi/governance.  \",\"Africa Development Indicators\",\"\\\"World Bank Institute.\\r\\\"\"\n\"GV.CONT.CO.NO\",\"Control of Corruption (number of surveys/polls)\",\"See definition GV.CONT.CO.ES.  This is the number of surveys/polls used to derive the GV.CONT.CO.ES.  \",\"Africa Development Indicators\",\"World Bank Institute.\"\n\"GV.CONT.CO.SE\",\"Control of Corruption (standard error)\",\"See definition GV.CONT.CO.ES.  Inherent to all Governance Indicators is a margin of error, which might vary from country to country, normally attributable to two factors: (i) cross-country differences in the number of sources in which a country appears, and (ii) differences in the precision of the sources in which each country appears.  \",\"Africa Development Indicators\",\"World Bank Institute.\"\n\"GV.GOVT.EF.ES\",\"Government Effectiveness (estimate)\",\"Government effectiveness measures the quality of public services, the quality and degree of independence from political pressures of the civil service, the quality of policy formulation and implementation, and the credibility of the government’s commitment to such policies. Further documentation and research using the World Governance Indicators (WGI) is available at www.worldbank.org/wbi/governance.  \",\"Africa Development Indicators\",\"World Bank Institute.\"\n\"GV.GOVT.EF.NO\",\"Government Effectiveness (number of surveys/polls)\",\"See definition GV.GOVT.EF.ES.  This is the number of surveys/polls used to derive the GV.GOVT.EF.ES.  \",\"Africa Development Indicators\",\"World Bank Institute.\"\n\"GV.GOVT.EF.SE\",\"Government Effectiveness (standard error)\",\"See definition GV.GOVT.EF.ES. Inherent to all Governance Indicators is a margin of error, which might vary from country to country, normally attributable to two factors: (i) cross-country differences in the number of sources in which a country appears, and (ii) differences in the precision of the sources in which each country appears.  \",\"Africa Development Indicators\",\"World Bank Institute.\"\n\"GV.POLI.ST.ES\",\"Political Stability/No Violence (estimate)\",\"Political stability and absence of violence measures the perceptions of the likelihood that the government will be destabilized or overthrown by unconstitutional or violent means, including domestic violence or terrorism.  Further documentation and research using the World Governance Indicators (WGI) is available at www.worldbank.org/wbi/governance.  \",\"Africa Development Indicators\",\"World Bank Institute.\"\n\"GV.POLI.ST.NO\",\"Political Stability/No Violence (number of surveys/polls)\",\"See definition GV.POL.ST.ES.  This is the number of surveys/polls used to derive the GV.POL.ST.ES.  \",\"Africa Development Indicators\",\"World Bank Institute.\"\n\"GV.POLI.ST.SE\",\"Political Stability/No Violence (standard error)\",\"See definition GV.POLI.ST.SD.  Inherent to all Governance Indicators is a margin of error, which might vary from country to country, normally attributable to two factors: (i) cross-country differences in the number of sources in which a country appears, and (ii) differences in the precision of the sources in which each country appears.  \",\"Africa Development Indicators\",\"World Bank Institute.\"\n\"GV.REGL.LA.ES\",\"Regulatory Quality (estimate)\",\"Regulatory quality measures the ability of the government to formulate and implement sound policies and regulations that permit and promote private sector development.  Further documentation and research using the World Governance Indicators (WGI) is available at www.worldbank.org/wbi/governance.  \",\"Africa Development Indicators\",\"World Bank Institute.\"\n\"GV.REGL.LA.NO\",\"Regulatory Quality (number of surveys/polls)\",\"See definition GV.REGL.LA.ES.  This is the number of surveys/polls used to derive the GV.REGL.LA.ES.  \",\"Africa Development Indicators\",\"World Bank Institute.\"\n\"GV.REGL.LA.SE\",\"Regulatory Quality (standard error)\",\"See definition GV.REGL.LA.ES.  Inherent to all Governance Indicators is a margin of error, which might vary from country to country, normally attributable to two factors: (i) cross-country differences in the number of sources in which a country appears, and (ii) differences in the precision of the sources in which each country appears.  \",\"Africa Development Indicators\",\"World Bank Institute.\"\n\"GV.RULE.LW.ES\",\"Rule of Law (estimate)\",\"Rule of law measures the extent to which agents have confidence in and abide by the rules of society, in particular the quality of contract enforcement, the police, and the courts, as well as the likelihood of crime and violence.  Further documentation and research using the World Governance Indicators (WGI) is available at www.worldbank.org/wbi/governance.  \",\"Africa Development Indicators\",\"World Bank Institute.\"\n\"GV.RULE.LW.NO\",\"Rule of Law (number off surveys/polls)\",\"See definition GV.RULE.LW.ES.  This is the number of surveys/polls used to derive the GV.RULE.LW.ES.  \",\"Africa Development Indicators\",\"World Bank Institute.\"\n\"GV.RULE.LW.SE\",\"Rule of Law (standard error)\",\"See definition GV.RULE.LW.ES.   Inherent to all Governance Indicators is a margin of error, which might vary from country to country, normally attributable to two factors: (i) cross-country differences in the number of sources in which a country appears, and (ii) differences in the precision of the sources in which each country appears.  \",\"Africa Development Indicators\",\"World Bank Institute.\"\n\"GV.TI.RANK.IDX\",\"Corruption Perceptions Index (rank)\",\"This is the ranking from the annual Transparency International corruption perceptions index, which ranks more than 150 countries in terms of perceived levels of corruption, as determined by expert assessments and opinion surveys.  For more information on this indicator, please visit http://www.transparency.org/policy_research/surveys_indices/cpi the Transparency International page on the topic.  \",\"Africa Development Indicators\",\"World Bank Institute.\"\n\"GV.TI.SCOR.IDX\",\"Corruption Perceptions Index (score)\",\"This information is from the http://www.transparency.org Transparency International web site.  More information may be available there.  CPI Score relates to perceptions of the degree of corruption as seen by business people and country analysts, and ranges between 0 (highly corrupt) and 10 (highly clean).  Data for 2012 Corruption Perceptions Index scores countries on a scale from 0 (highly corrupt) to 100 (very clean).  Confidence range provides a range of possible values of the CPI score. This reflects how a country's score may vary, depending on measurement precision. Nominally, with 5 percent probability the score is above this range and with another 5 percent it is below.\",\"Africa Development Indicators\",\"Transparency International\"\n\"GV.VOIC.AC.ES\",\"Voice and Accountability (estimate)\",\"Voice and accountability measures the extent to which a country’s citizens are able to participate in selecting their government and to enjoy freedom of expression, freedom of association, and a free media.  Further documentation and research using the World Governance Indicators (WGI) is available at www.worldbank.org/wbi/governance.  \",\"Africa Development Indicators\",\"World Bank Institute.\"\n\"GV.VOIC.AC.NO\",\"Voice and Accountability (number of surveys/polls)\",\"See definition GV.VOIC.AC.ES.  This is the number of surveys/polls used to derive the GV.VOIC.AC.ES.  \",\"Africa Development Indicators\",\"World Bank Institute.\"\n\"GV.VOIC.AC.SE\",\"Voice and Accountability (standard error)\",\"See definition GV.VOIC.AC.ES.  Inherent to all Governance Indicators is a margin of error, which might vary from country to country, normally attributable to two factors: (i) cross-country differences in the number of sources in which a country appears, and (ii) differences in the precision of the sources in which each country appears.  \",\"Africa Development Indicators\",\"World Bank Institute.\"\n\"gwp1\",\"Access to a mobile phone or internet at home (% age 15+)\",\"Denotes the percentage of adults with access to a mobile phone or internet at home\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Gallup World Poll\"\n\"gwp1.1\",\"Access to a mobile phone or internet at home, female (% age 15+)\",\"Denotes the percentage of adults with access to a mobile phone or internet at home\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Gallup World Poll\"\n\"gwp1.2\",\"Access to a mobile phone or internet at home, male (% age 15+)\",\"Denotes the percentage of adults with access to a mobile phone or internet at home\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Gallup World Poll\"\n\"gwp1.3\",\"Access to a mobile phone or internet at home, income, poorest 40% (% age 15+)\",\"Denotes the percentage of adults with access to a mobile phone or internet at home\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Gallup World Poll\"\n\"gwp1.4\",\"Access to a mobile phone or internet at home, income, richest 60% (% age 15+)\",\"Denotes the percentage of adults with access to a mobile phone or internet at home\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Gallup World Poll\"\n\"gwp1.5\",\"Access to a mobile phone or internet at home, young adults (% ages 15-34)\",\"Denotes the percentage of adults with access to a mobile phone or internet at home\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Gallup World Poll\"\n\"gwp1.6\",\"Access to a mobile phone or internet at home, older adults (% age 35+)\",\"Denotes the percentage of adults with access to a mobile phone or internet at home\",\"G20 Basic Set of Financial Inclusion Indicators\",\"Gallup World Poll\"\n\"HH.DHS.GAR.456\",\"DHS: Gross attendance rate. Post Secondary\",\"Gross attendance rate. Post Secondary is the number of post-secondary school pupils of any age, expressed as a percentage of youth of post-secondary school age. Post-secondary school age is defined as the age range from graduation from secondary school till the maximum age set as a parameter of the educational system.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.GAR.456.F\",\"DHS: Gross attendance rate. Post Secondary. Female\",\"Gross attendance rate. Post Secondary. Female is the number of female post-secondary school pupils of any age, expressed as a percentage of the population of females of post-secondary school age. Post-secondary school age is defined as the age range from graduation from secondary school till the maximum age set as a parameter of the educational system.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.GAR.456.M\",\"DHS: Gross attendance rate. Post Secondary. Male\",\"Gross attendance rate. Post Secondary. Male is the number of male post-secondary school pupils of any age, expressed as a percentage of the population of males of post-secondary school age. Post-secondary school age is defined as the age range from graduation from secondary school till the maximum age set as a parameter of the educational system.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.GAR.456.Q1\",\"DHS: Gross attendance rate. Post Secondary. Quintile 1\",\"Gross attendance rate. Post Secondary. Quintile 1 is the number of quintile 1 post-secondary school pupils of any age, expressed as a percentage of the quintile 1 population of post-secondary school age. Post-secondary school age is defined as the age range from graduation from secondary school till the maximum age set as a parameter of the educational system.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.GAR.456.Q2\",\"DHS: Gross attendance rate. Post Secondary. Quintile 2\",\"Gross attendance rate. Post Secondary. Quintile 2 is the number of quintile 2 post-secondary school pupils of any age, expressed as a percentage of the quintile 2 population of post-secondary school age. Post-secondary school age is defined as the age range from graduation from secondary school till the maximum age set as a parameter of the educational system.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.GAR.456.Q3\",\"DHS: Gross attendance rate. Post Secondary. Quintile 3\",\"Gross attendance rate. Post Secondary. Quintile 3 is the number of quintile 3 post-secondary school pupils of any age, expressed as a percentage of the quintile 3 population of post-secondary school age. Post-secondary school age is defined as the age range from graduation from secondary school till the maximum age set as a parameter of the educational system.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.GAR.456.Q4\",\"DHS: Gross attendance rate. Post Secondary. Quintile 4\",\"Gross attendance rate. Post Secondary. Quintile 4 is the number of quintile 4 post-secondary school pupils of any age, expressed as a percentage of the quintile 4 population of post-secondary school age. Post-secondary school age is defined as the age range from graduation from secondary school till the maximum age set as a parameter of the educational system.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.GAR.456.Q5\",\"DHS: Gross attendance rate. Post Secondary. Quintile 5\",\"Gross attendance rate. Post Secondary. Quintile 5 is the number of quintile 5 post-secondary school pupils of any age, expressed as a percentage of the quintile 5 population of post-secondary school age. Post-secondary school age is defined as the age range from graduation from secondary school till the maximum age set as a parameter of the educational system.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.GAR.456.R\",\"DHS: Gross attendance rate. Post Secondary. Rural\",\"Gross attendance rate. Post Secondary. Rural is the number of rural post-secondary school pupils of any age, expressed as a percentage of the rural population of post-secondary school age. Post-secondary school age is defined as the age range from graduation from secondary school till the maximum age set as a parameter of the educational system.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.GAR.456.U\",\"DHS: Gross attendance rate. Post Secondary. Urban\",\"Gross attendance rate. Post Secondary. Urban is the number of urban post-secondary school pupils of any age, expressed as a percentage of the urban population of post-secondary school age. Post-secondary school age is defined as the age range from graduation from secondary school till the maximum age set as a parameter of the educational system.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.NAR.1\",\"DHS: Net attendance rate. Primary\",\"Net attendance rate. Primary. Total is the proportion of children of the official primary school age who are attending primary school. The primary school age is based on the parameters of the educational system: starting age and duration of primary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.NAR.1.F\",\"DHS: Net attendance rate. Primary. Female\",\"Net attendance rate. Primary. Female is the proportion of female children of the official primary school age who are attending primary school. The primary school age is based on the parameters of the educational system: starting age and duration of primary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.NAR.1.M\",\"DHS: Net attendance rate. Primary. Male\",\"Net attendance rate. Primary. Male is the proportion of male children of the official primary school age who are attending primary school. The primary school age is based on the parameters of the educational system: starting age and duration of primary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.NAR.1.Q1\",\"DHS: Net attendance rate. Primary. Quintile 1\",\"Net attendance rate. Primary. Quintile 1 is the proportion of quintile 1 children of the official primary school age who are attending primary school. The primary school age is based on the parameters of the educational system: starting age and duration of primary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.NAR.1.Q2\",\"DHS: Net attendance rate. Primary. Quintile 2\",\"Net attendance rate. Primary. Quintile 2 is the proportion of quintile 2 children of the official primary school age who are attending primary school. The primary school age is based on the parameters of the educational system: starting age and duration of primary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.NAR.1.Q3\",\"DHS: Net attendance rate. Primary. Quintile 3\",\"Net attendance rate. Primary. Quintile 3 is the proportion of quintile 3 children of the official primary school age who are attending primary school. The primary school age is based on the parameters of the educational system: starting age and duration of primary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.NAR.1.Q4\",\"DHS: Net attendance rate. Primary. Quintile 4\",\"Net attendance rate. Primary. Quintile 4 is the proportion of quintile 4 children of the official primary school age who are attending primary school. The primary school age is based on the parameters of the educational system: starting age and duration of primary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.NAR.1.Q5\",\"DHS: Net attendance rate. Primary. Quintile 5\",\"Net attendance rate. Primary. Quintile 5 is the proportion of quintile 5 children of the official primary school age who are attending primary school. The primary school age is based on the parameters of the educational system: starting age and duration of primary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.NAR.1.R\",\"DHS: Net attendance rate. Primary. Rural\",\"Net attendance rate. Primary. Rural is the proportion of rural children of the official primary school age who are attending primary school. The primary school age is based on the parameters of the educational system: starting age and duration of primary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.NAR.1.U\",\"DHS: Net attendance rate. Primary. Urban\",\"Net attendance rate. Primary. Urban is the proportion of urban children of the official primary school age who are attending primary school. The primary school age is based on the parameters of the educational system: starting age and duration of primary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.NAR.23\",\"DHS: Net attendance rate. Secondary\",\"Net attendance rate. Secondary is the proportion of children of official secondary school age who are attending secondary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.NAR.23.F\",\"DHS: Net attendance rate. Secondary. Female\",\"Net attendance rate. Secondary. Female is the proportion of female children of official secondary school age who are attending secondary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.NAR.23.M\",\"DHS: Net attendance rate. Secondary. Male\",\"Net attendance rate. Secondary. Male is the proportion of male children of official secondary school age who are attending secondary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.NAR.23.Q1\",\"DHS: Net attendance rate. Secondary. Quintile 1\",\"Net attendance rate. Secondary. Quintile 1 is the proportion of quintile 1 children of official secondary school age who are attending secondary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.NAR.23.Q2\",\"DHS: Net attendance rate. Secondary. Quintile 2\",\"Net attendance rate. Secondary. Quintile 2 is the proportion of quintile 2 children of official secondary school age who are attending secondary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.NAR.23.Q3\",\"DHS: Net attendance rate. Secondary. Quintile 3\",\"Net attendance rate. Secondary. Quintile 3 is the proportion of quintile 3 children of official secondary school age who are attending secondary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.NAR.23.Q4\",\"DHS: Net attendance rate. Secondary. Quintile 4\",\"Net attendance rate. Secondary. Quintile 4 is the proportion of quintile 4 children of official secondary school age who are attending secondary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.NAR.23.Q5\",\"DHS: Net attendance rate. Secondary. Quintile 5\",\"Net attendance rate. Secondary. Quintile 5 is the proportion of quintile 5 children of official secondary school age who are attending secondary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.NAR.23.R\",\"DHS: Net attendance rate. Secondary. Rural\",\"Net attendance rate. Secondary. Rural is the proportion of rural children of official secondary school age who are attending secondary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.NAR.23.U\",\"DHS: Net attendance rate. Secondary. Urban\",\"Net attendance rate. Secondary. Urban is the proportion of urban children of official secondary school age who are attending secondary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.NIR.1\",\"DHS: Net intake rate for the first grade of primary education\",\"Net intake rate for the first grade of primary education is the number of new pupils attending the first grade of primary education who are of the official primary school entrance age, expressed as a percentage of the children of official entrance age to primary education.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.NIR.1.F\",\"DHS: Net intake rate for the first grade of primary education. Female\",\"Net intake rate for the first grade of primary education. Female is the number of new female pupils attending the first grade of primary education who are of the official primary school entrance age, expressed as a percentage of the females of official entrance age to primary education.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.NIR.1.M\",\"DHS: Net intake rate for the first grade of primary education. Male\",\"Net intake rate for the first grade of primary education. Male is the number of new male pupils attending the first grade of primary education who are of the official primary school entrance age, expressed as a percentage of the males of official entrance age to primary education.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.NIR.1.Q1\",\"DHS: Net intake rate for the first grade of primary education. Quintile 1\",\"Net intake rate for the first grade of primary education. Quintile 1 is the number of new quintile 1 pupils attending the first grade of primary education who are of the official primary school entrance age, expressed as a percentage of the quintile 1 population of official entrance age to primary education.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.NIR.1.Q2\",\"DHS: Net intake rate for the first grade of primary education. Quintile 2\",\"Net intake rate for the first grade of primary education. Quintile 2 is the number of new quintile 2 pupils attending the first grade of primary education who are of the official primary school entrance age, expressed as a percentage of the quintile 2 population of official entrance age to primary education.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.NIR.1.Q3\",\"DHS: Net intake rate for the first grade of primary education. Quintile 3\",\"Net intake rate for the first grade of primary education. Quintile 3 is the number of new quintile 3 pupils attending the first grade of primary education who are of the official primary school entrance age, expressed as a percentage of the quintile 3 population of official entrance age to primary education.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.NIR.1.Q4\",\"DHS: Net intake rate for the first grade of primary education. Quintile 4\",\"Net intake rate for the first grade of primary education. Quintile 4 is the number of new quintile 4 pupils attending the first grade of primary education who are of the official primary school entrance age, expressed as a percentage of the quintile 4 population of official entrance age to primary education.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.NIR.1.Q5\",\"DHS: Net intake rate for the first grade of primary education. Quintile 5\",\"Net intake rate for the first grade of primary education. Quintile 5 is the number of new quintile 5 pupils attending the first grade of primary education who are of the official primary school entrance age, expressed as a percentage of the quintile 5 population of official entrance age to primary education.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.NIR.1.R\",\"DHS: Net intake rate for the first grade of primary education. Rural\",\"Net intake rate for the first grade of primary education. Rural is the number of new rural pupils attending the first grade of primary education who are of the official primary school entrance age, expressed as a percentage of the rural population of official entrance age to primary education.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.NIR.1.U\",\"DHS: Net intake rate for the first grade of primary education. Urban\",\"Net intake rate for the first grade of primary education. Urban is the number of new urban pupils attending the first grade of primary education who are of the official primary school entrance age, expressed as a percentage of the urban population of official entrance age to primary education.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOS.1\",\"DHS: Proportion of out-of-school. Primary\",\"Proportion of out-of-school. Primary is the number of children in the official primary school age range who are not attending primary or secondary education, expressed as a percentage of children of the official primary school age range. By definition, children in the official primary-age range, who are attending pre-primary education, are considered out-of-school. The sum of the net primary attendance rate and the proportion out of school do not add to 100 percent because the net primary attendance rate does not count students who are in secondary.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOS.1.F\",\"DHS: Proportion of out-of-school. Primary. Female\",\"Proportion of out-of-school. Primary. Female is the number of female children in the official primary school age range who are not attending primary or secondary education, expressed as a percentage of female children of the official primary school age range. By definition, children in the official primary-age range, who are attending pre-primary education, are considered out-of-school. The sum of the net primary attendance rate and the proportion out of school do not add to 100 percent because the net primary attendance rate does not count students who are in secondary.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOS.1.M\",\"DHS: Proportion of out-of-school. Primary. Male\",\"Proportion of out-of-school. Primary. Male is the number of male children in the official primary school age range who are not attending primary or secondary education, expressed as a percentage of male children of the official primary school age range. By definition, children in the official primary-age range, who are attending pre-primary education, are considered out-of-school. The sum of the net primary attendance rate and the proportion out of school do not add to 100 percent because the net primary attendance rate does not count students who are in secondary.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOS.1.Q1\",\"DHS: Proportion of out-of-school. Primary. Quintile 1\",\"Proportion of out-of-school. Primary. Quintile 1 is the number of quintile 1 children in the official primary school age range who are not attending primary or secondary education, expressed as a percentage of quintile 1 children of the official primary school age range. By definition, children in the official primary-age range, who are attending pre-primary education, are considered out-of-school. The sum of the net primary attendance rate and the proportion out of school do not add to 100 percent because the net primary attendance rate does not count students who are in secondary.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOS.1.Q2\",\"DHS: Proportion of out-of-school. Primary. Quintile 2\",\"Proportion of out-of-school. Primary. Quintile 2 is the number of quintile 2 children in the official primary school age range who are not attending primary or secondary education, expressed as a percentage of quintile 2 children of the official primary school age range. By definition, children in the official primary-age range, who are attending pre-primary education, are considered out-of-school. The sum of the net primary attendance rate and the proportion out of school do not add to 100 percent because the net primary attendance rate does not count students who are in secondary.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOS.1.Q3\",\"DHS: Proportion of out-of-school. Primary. Quintile 3\",\"Proportion of out-of-school. Primary. Quintile 3 is the number of quintile 3 children in the official primary school age range who are not attending primary or secondary education, expressed as a percentage of quintile 3 children of the official primary school age range. By definition, children in the official primary-age range, who are attending pre-primary education, are considered out-of-school. The sum of the net primary attendance rate and the proportion out of school do not add to 100 percent because the net primary attendance rate does not count students who are in secondary.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOS.1.Q4\",\"DHS: Proportion of out-of-school. Primary. Quintile 4\",\"Proportion of out-of-school. Primary. Quintile 4 is the number of quintile 4 children in the official primary school age range who are not attending primary or secondary education, expressed as a percentage of quintile 4 children of the official primary school age range. By definition, children in the official primary-age range, who are attending pre-primary education, are considered out-of-school. The sum of the net primary attendance rate and the proportion out of school do not add to 100 percent because the net primary attendance rate does not count students who are in secondary.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOS.1.Q5\",\"DHS: Proportion of out-of-school. Primary. Quintile 5\",\"Proportion of out-of-school. Primary. Quintile 5 is the number of quintile 5 children in the official primary school age range who are not attending primary or secondary education, expressed as a percentage of quintile 5 children of the official primary school age range. By definition, children in the official primary-age range, who are attending pre-primary education, are considered out-of-school. The sum of the net primary attendance rate and the proportion out of school do not add to 100 percent because the net primary attendance rate does not count students who are in secondary.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOS.1.R\",\"DHS: Proportion of out-of-school. Primary. Rural\",\"Proportion of out-of-school. Primary. Rural is the number of rural children in the official primary school age range who are not attending primary or secondary education, expressed as a percentage of rural children of the official primary school age range. By definition, children in the official primary-age range, who are attending pre-primary education, are considered out-of-school. The sum of the net primary attendance rate and the proportion out of school do not add to 100 percent because the net primary attendance rate does not count students who are in secondary.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOS.1.U\",\"DHS: Proportion of out-of-school. Primary. Urban\",\"Proportion of out-of-school. Primary. Urban is the number of urban children in the official primary school age range who are not attending primary or secondary education, expressed as a percentage of urban children of the official primary school age range. By definition, children in the official primary-age range, who are attending pre-primary education, are considered out-of-school. The sum of the net primary attendance rate and the proportion out of school do not add to 100 percent because the net primary attendance rate does not count students who are in secondary.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOST.DO\",\"DHS: Typology of out-of-school children. Primary. Dropped out\",\"Typology of out-of-school children. Primary. Dropped out is the proportion of out-of-school children who were enrolled in school and dropped out. It is calculated as the proportion of children not classified as never-in-school expressed as a percent of the proportion of out-of-school children older than the age with the highest attendance rate.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOST.DO.F\",\"DHS: Typology of out-of-school children. Primary. Dropped out. Female\",\"Typology of out-of-school children. Primary. Dropped out. Female is the proportion of female out-of-school children who were enrolled in school and dropped out. It is calculated as the proportion of children not classified as never-in-school expressed as a percent of the proportion of out-of-school children older than the age with the highest attendance rate.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOST.DO.M\",\"DHS: Typology of out-of-school children. Primary. Dropped out. Male\",\"Typology of out-of-school children. Primary. Dropped out. Male is the proportion of male out-of-school children who were enrolled in school and dropped out. It is calculated as the proportion of children not classified as never-in-school expressed as a percent of the proportion of out-of-school children older than the age with the highest attendance rate.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOST.DO.Q1\",\"DHS: Typology of out-of-school children. Primary. Dropped out. Quintile 1\",\"Typology of out-of-school children. Primary. Dropped out. Quintile 1 is the proportion of quintile 1 out-of-school children who were enrolled in school and dropped out. It is calculated as the proportion of children not classified as never-in-school expressed as a percent of the proportion of out-of-school children older than the age with the highest attendance rate.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOST.DO.Q2\",\"DHS: Typology of out-of-school children. Primary. Dropped out. Quintile 2\",\"Typology of out-of-school children. Primary. Dropped out. Quintile 2 is the proportion of quintile 2 out-of-school children who were enrolled in school and dropped out. It is calculated as the proportion of children not classified as never-in-school expressed as a percent of the proportion of out-of-school children older than the age with the highest attendance rate.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOST.DO.Q3\",\"DHS: Typology of out-of-school children. Primary. Dropped out. Quintile 3\",\"Typology of out-of-school children. Primary. Dropped out. Quintile 3 is the proportion of quintile 3 out-of-school children who were enrolled in school and dropped out. It is calculated as the proportion of children not classified as never-in-school expressed as a percent of the proportion of out-of-school children older than the age with the highest attendance rate.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOST.DO.Q4\",\"DHS: Typology of out-of-school children. Primary. Dropped out. Quintile 4\",\"Typology of out-of-school children. Primary. Dropped out. Quintile 4 is the proportion of quintile 4 out-of-school children who were enrolled in school and dropped out. It is calculated as the proportion of children not classified as never-in-school expressed as a percent of the proportion of out-of-school children older than the age with the highest attendance rate.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOST.DO.Q5\",\"DHS: Typology of out-of-school children. Primary. Dropped out. Quintile 5\",\"Typology of out-of-school children. Primary. Dropped out. Quintile 5 is the proportion of quintile 5 out-of-school children who were enrolled in school and dropped out. It is calculated as the proportion of children not classified as never-in-school expressed as a percent of the proportion of out-of-school children older than the age with the highest attendance rate.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOST.DO.R\",\"DHS: Typology of out-of-school children. Primary. Dropped out. Rural\",\"Typology of out-of-school children. Primary. Dropped out. Rural is the proportion of rural out-of-school children who were enrolled in school and dropped out. It is calculated as the proportion of children not classified as never-in-school expressed as a percent of the proportion of out-of-school children older than the age with the highest attendance rate.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOST.DO.U\",\"DHS: Typology of out-of-school children. Primary. Dropped out. Urban\",\"Typology of out-of-school children. Primary. Dropped out. Urban is the proportion of urban out-of-school children who were enrolled in school and dropped out. It is calculated as the proportion of children not classified as never-in-school expressed as a percent of the proportion of out-of-school children older than the age with the highest attendance rate.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOST.L\",\"DHS: Typology of out-of-school children. Primary. Late entry\",\"Typology of out-of-school children. Primary. Late entry is defined as the proportion of out-of-school children who are currently out of school but are expected to enter the education system later than they should. It is calculated based on UNESCO's methodology as the proportion leftover from those estimated as never in school, expressed as a percent of the proportion out-of-school for children younger than the age with the highest attendance rate.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOST.L.F\",\"DHS: Typology of out-of-school children. Primary. Late entry. Female\",\"Typology of out-of-school children. Primary. Late entry. Female is defined as the proportion of female out-of-school children who are currently out of school but are expected to enter the education system later than they should. It is calculated based on UNESCO's methodology as the proportion leftover from those estimated as never in school, expressed as a percent of the proportion out-of-school for children younger than the age with the highest attendance rate.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOST.L.M\",\"DHS: Typology of out-of-school children. Primary. Late entry. Male\",\"Typology of out-of-school children. Primary. Late entry. Male is defined as the proportion of male out-of-school children who are currently out of school but are expected to enter the education system later than they should. It is calculated based on UNESCO's methodology as the proportion leftover from those estimated as never in school, expressed as a percent of the proportion out-of-school for children younger than the age with the highest attendance rate.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOST.L.Q1\",\"DHS: Typology of out-of-school children. Primary. Late entry. Quintile 1\",\"Typology of out-of-school children. Primary. Late entry. Quintile 1 is defined as the proportion of quintile 1 out-of-school children who are currently out of school but are expected to enter the education system later than they should. It is calculated based on UNESCO's methodology as the proportion leftover from those estimated as never in school, expressed as a percent of the proportion out-of-school for children younger than the age with the highest attendance rate.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOST.L.Q2\",\"DHS: Typology of out-of-school children. Primary. Late entry. Quintile 2\",\"Typology of out-of-school children. Primary. Late entry. Quintile 2 is defined as the proportion of quintile 2 out-of-school children who are currently out of school but are expected to enter the education system later than they should. It is calculated based on UNESCO's methodology as the proportion leftover from those estimated as never in school, expressed as a percent of the proportion out-of-school for children younger than the age with the highest attendance rate.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOST.L.Q3\",\"DHS: Typology of out-of-school children. Primary. Late entry. Quintile 3\",\"Typology of out-of-school children. Primary. Late entry. Quintile 3 is defined as the proportion of quintile 3 out-of-school children who are currently out of school but are expected to enter the education system later than they should. It is calculated based on UNESCO's methodology as the proportion leftover from those estimated as never in school, expressed as a percent of the proportion out-of-school for children younger than the age with the highest attendance rate.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOST.L.Q4\",\"DHS: Typology of out-of-school children. Primary. Late entry. Quintile 4\",\"Typology of out-of-school children. Primary. Late entry. Quintile 4 is defined as the proportion of quintile 4 out-of-school children who are currently out of school but are expected to enter the education system later than they should. It is calculated based on UNESCO's methodology as the proportion leftover from those estimated as never in school, expressed as a percent of the proportion out-of-school for children younger than the age with the highest attendance rate.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOST.L.Q5\",\"DHS: Typology of out-of-school children. Primary. Late entry. Quintile 5\",\"Typology of out-of-school children. Primary. Late entry. Quintile 5 is defined as the proportion of quintile 5 out-of-school children who are currently out of school but are expected to enter the education system later than they should. It is calculated based on UNESCO's methodology as the proportion leftover from those estimated as never in school, expressed as a percent of the proportion out-of-school for children younger than the age with the highest attendance rate.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOST.L.R\",\"DHS: Typology of out-of-school children. Primary. Late entry. Rural\",\"Typology of out-of-school children. Primary. Late entry. Rural is defined as the proportion of rural out-of-school children who are currently out of school but are expected to enter the education system later than they should. It is calculated based on UNESCO's methodology as the proportion leftover from those estimated as never in school, expressed as a percent of the proportion out-of-school for children younger than the age with the highest attendance rate.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOST.L.U\",\"DHS: Typology of out-of-school children. Primary. Late entry. Urban\",\"Typology of out-of-school children. Primary. Late entry. Urban is defined as the proportion of urban out-of-school children who are currently out of school but are expected to enter the education system later than they should. It is calculated based on UNESCO's methodology as the proportion leftover from those estimated as never in school, expressed as a percent of the proportion out-of-school for children younger than the age with the highest attendance rate.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOST.X\",\"DHS: Typology of out-of-school children. Primary. Never in school\",\"Typology of out-of-school children. Primary. Never in school is the percentage of out-of-school primary-school-age children who have never attended school and are not likely to enter school in the future. Since no survey can say definitively that a school-age person will never attend school, this is a probabilistic indicator. The indicator is based on UNESCO’s methodology, which estimates the proportion of children who will never attend school as the proportion of out of school for the age group with the lowest proportion of out-of-school children. This methodology assumes no dropout before the age at which enrolment rates peak, and no late entry after the age with peak enrolment.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOST.X.F\",\"DHS: Typology of out-of-school children. Primary. Never in school. Female\",\"Typology of out-of-school children. Primary. Never in school. Female is the percentage of female out-of-school primary-school-age children who have never attended school and are not likely to enter school in the future. Since no survey can say definitively that a school-age person will never attend school, this is a probabilistic indicator. The indicator is based on UNESCO’s methodology, which estimates the proportion of children who will never attend school as the proportion of out of school for the age group with the lowest proportion of out-of-school children. This methodology assumes no dropout before the age at which enrolment rates peak, and no late entry after the age with peak enrolment.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOST.X.M\",\"DHS: Typology of out-of-school children. Primary. Never in school. Male\",\"Typology of out-of-school children. Primary. Never in school. Male is the percentage of male out-of-school primary-school-age children who have never attended school and are not likely to enter school in the future. Since no survey can say definitively that a school-age person will never attend school, this is a probabilistic indicator. The indicator is based on UNESCO’s methodology, which estimates the proportion of children who will never attend school as the proportion of out of school for the age group with the lowest proportion of out-of-school children. This methodology assumes no dropout before the age at which enrolment rates peak, and no late entry after the age with peak enrolment.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOST.X.Q1\",\"DHS: Typology of out-of-school children. Primary. Never in school. Quintile 1\",\"Typology of out-of-school children. Primary. Never in school. Quintile 1 is the percentage of quintile 1 out-of-school primary-school-age children who have never attended school and are not likely to enter school in the future. Since no survey can say definitively that a school-age person will never attend school, this is a probabilistic indicator. The indicator is based on UNESCO’s methodology, which estimates the proportion of children who will never attend school as the proportion of out of school for the age group with the lowest proportion of out-of-school children. This methodology assumes no dropout before the age at which enrolment rates peak, and no late entry after the age with peak enrolment.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOST.X.Q2\",\"DHS: Typology of out-of-school children. Primary. Never in school. Quintile 2\",\"Typology of out-of-school children. Primary. Never in school. Quintile 2 is the percentage of quintile 2 out-of-school primary-school-age children who have never attended school and are not likely to enter school in the future. Since no survey can say definitively that a school-age person will never attend school, this is a probabilistic indicator. The indicator is based on UNESCO’s methodology, which estimates the proportion of children who will never attend school as the proportion of out of school for the age group with the lowest proportion of out-of-school children. This methodology assumes no dropout before the age at which enrolment rates peak, and no late entry after the age with peak enrolment.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOST.X.Q3\",\"DHS: Typology of out-of-school children. Primary. Never in school. Quintile 3\",\"Typology of out-of-school children. Primary. Never in school. Quintile 3 is the percentage of quintile 3 out-of-school primary-school-age children who have never attended school and are not likely to enter school in the future. Since no survey can say definitively that a school-age person will never attend school, this is a probabilistic indicator. The indicator is based on UNESCO’s methodology, which estimates the proportion of children who will never attend school as the proportion of out of school for the age group with the lowest proportion of out-of-school children. This methodology assumes no dropout before the age at which enrolment rates peak, and no late entry after the age with peak enrolment.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOST.X.Q4\",\"DHS: Typology of out-of-school children. Primary. Never in school. Quintile 4\",\"Typology of out-of-school children. Primary. Never in school. Quintile 4 is the percentage of quintile 4 out-of-school primary-school-age children who have never attended school and are not likely to enter school in the future. Since no survey can say definitively that a school-age person will never attend school, this is a probabilistic indicator. The indicator is based on UNESCO’s methodology, which estimates the proportion of children who will never attend school as the proportion of out of school for the age group with the lowest proportion of out-of-school children. This methodology assumes no dropout before the age at which enrolment rates peak, and no late entry after the age with peak enrolment.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOST.X.Q5\",\"DHS: Typology of out-of-school children. Primary. Never in school. Quintile 5\",\"Typology of out-of-school children. Primary. Never in school. Quintile 5 is the percentage of quintile 5 out-of-school primary-school-age children who have never attended school and are not likely to enter school in the future. Since no survey can say definitively that a school-age person will never attend school, this is a probabilistic indicator. The indicator is based on UNESCO’s methodology, which estimates the proportion of children who will never attend school as the proportion of out of school for the age group with the lowest proportion of out-of-school children. This methodology assumes no dropout before the age at which enrolment rates peak, and no late entry after the age with peak enrolment.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOST.X.R\",\"DHS: Typology of out-of-school children. Primary. Never in school. Rural\",\"Typology of out-of-school children. Primary. Never in school. Rural is the percentage of rural out-of-school primary-school-age children who have never attended school and are not likely to enter school in the future. Since no survey can say definitively that a school-age person will never attend school, this is a probabilistic indicator. The indicator is based on UNESCO’s methodology, which estimates the proportion of children who will never attend school as the proportion of out of school for the age group with the lowest proportion of out-of-school children. This methodology assumes no dropout before the age at which enrolment rates peak, and no late entry after the age with peak enrolment.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.OOST.X.U\",\"DHS: Typology of out-of-school children. Primary. Never in school. Urban\",\"Typology of out-of-school children. Primary. Never in school. Urban is the percentage of urban out-of-school primary-school-age children who have never attended school and are not likely to enter school in the future. Since no survey can say definitively that a school-age person will never attend school, this is a probabilistic indicator. The indicator is based on UNESCO’s methodology, which estimates the proportion of children who will never attend school as the proportion of out of school for the age group with the lowest proportion of out-of-school children. This methodology assumes no dropout before the age at which enrolment rates peak, and no late entry after the age with peak enrolment.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.PCR\",\"DHS: Primary completion rate\",\"Primary completion rate is the total number of students of any age in the last grade of primary school, minus the number of repeaters in that grade, divided by the number of children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of primary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.PCR.F\",\"DHS: Primary completion rate. Female\",\"Primary completion rate. Female is the total number of female students of any age in the last grade of primary school, minus the number of female repeaters in that grade, divided by the number of female children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of primary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.PCR.M\",\"DHS: Primary completion rate. Male\",\"Primary completion rate. Male is the total number of male students of any age in the last grade of primary school, minus the number of male repeaters in that grade, divided by the number of male children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of primary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.PCR.Q1\",\"DHS: Primary completion rate. Quintile 1\",\"Primary completion rate. Quintile 1 is the total number of quintile 1 students of any age in the last grade of primary school, minus the number of quintile 1 repeaters in that grade, divided by the number of quintile 1 children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of primary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.PCR.Q2\",\"DHS: Primary completion rate. Quintile 2\",\"Primary completion rate. Quintile 2 is the total number of quintile 2 students of any age in the last grade of primary school, minus the number of quintile 2 repeaters in that grade, divided by the number of quintile 2 children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of primary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.PCR.Q3\",\"DHS: Primary completion rate. Quintile 3\",\"Primary completion rate. Quintile 3 is the total number of quintile 3 students of any age in the last grade of primary school, minus the number of quintile 3 repeaters in that grade, divided by the number of quintile 3 children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of primary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.PCR.Q4\",\"DHS: Primary completion rate. Quintile 4\",\"Primary completion rate. Quintile 4 is the total number of quintile 4 students of any age in the last grade of primary school, minus the number of quintile 4 repeaters in that grade, divided by the number of quintile 4 children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of primary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.PCR.Q5\",\"DHS: Primary completion rate. Quintile 5\",\"Primary completion rate. Quintile 5 is the total number of quintile 5 students of any age in the last grade of primary school, minus the number of quintile 5 repeaters in that grade, divided by the number of quintile 5 children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of primary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.PCR.R\",\"DHS: Primary completion rate. Rural\",\"Primary completion rate. Rural is the total number of rural students of any age in the last grade of primary school, minus the number of rural repeaters in that grade, divided by the number of rural children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of primary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.PCR.U\",\"DHS: Primary completion rate. Urban\",\"Primary completion rate. Urban is the total number of urban students of any age in the last grade of primary school, minus the number of urban repeaters in that grade, divided by the number of urban children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of primary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.SCR\",\"DHS: Secondary completion rate\",\"Secondary completion rate is the total number of students of any age in last grade of secondary school, minus the number of repeaters in that grade, divided by the number of children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of secondary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.SCR.F\",\"DHS: Secondary completion rate. Female\",\"Secondary completion rate. Female is the total number of female students of any age in last grade of secondary school, minus the number of female repeaters in that grade, divided by the number of female children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of secondary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.SCR.M\",\"DHS: Secondary completion rate. Male\",\"Secondary completion rate. Male is the total number of male students of any age in last grade of secondary school, minus the number of male repeaters in that grade, divided by the number of male children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of secondary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.SCR.Q1\",\"DHS: Secondary completion rate. Quintile 1\",\"Secondary completion rate. Quintile 1 is the total number of quintile 1 students of any age in last grade of secondary school, minus the number of quintile 1 repeaters in that grade, divided by the number of quintile 1 children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of secondary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.SCR.Q2\",\"DHS: Secondary completion rate. Quintile 2\",\"Secondary completion rate. Quintile 2 is the total number of quintile 2 students of any age in last grade of secondary school, minus the number of quintile 2 repeaters in that grade, divided by the number of quintile 2 children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of secondary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.SCR.Q3\",\"DHS: Secondary completion rate. Quintile 3\",\"Secondary completion rate. Quintile 3 is the total number of quintile 3 students of any age in last grade of secondary school, minus the number of quintile 3 repeaters in that grade, divided by the number of quintile 3 children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of secondary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.SCR.Q4\",\"DHS: Secondary completion rate. Quintile 4\",\"Secondary completion rate. Quintile 4 is the total number of quintile 4 students of any age in last grade of secondary school, minus the number of quintile 4 repeaters in that grade, divided by the number of quintile 4 children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of secondary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.SCR.Q5\",\"DHS: Secondary completion rate. Quintile 5\",\"Secondary completion rate. Quintile 5 is the total number of quintile 5 students of any age in last grade of secondary school, minus the number of quintile 5 repeaters in that grade, divided by the number of quintile 5 children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of secondary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.SCR.R\",\"DHS: Secondary completion rate. Rural\",\"Secondary completion rate. Rural is the total number of rural students of any age in last grade of secondary school, minus the number of rural repeaters in that grade, divided by the number of rural children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of secondary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.SCR.U\",\"DHS: Secondary completion rate. Urban\",\"Secondary completion rate. Urban is the total number of urban students of any age in last grade of secondary school, minus the number of urban repeaters in that grade, divided by the number of urban children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of secondary school.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.TR.12\",\"DHS: Transition rate. Primary to Secondary\",\"Transition rate. Primary to Secondary is the proportion of pupils in the last grade of primary who transition to the first grade of secondary the following school year.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.TR.12.F\",\"DHS: Transition rate. Primary to Secondary. Female\",\"Transition rate. Primary to Secondary. Female is the proportion of female pupils in the last grade of primary who transition to the first grade of secondary the following school year.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.TR.12.M\",\"DHS: Transition rate. Primary to Secondary. Male\",\"Transition rate. Primary to Secondary. Male is the proportion of male pupils in the last grade of primary who transition to the first grade of secondary the following school year.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.TR.12.Q1\",\"DHS: Transition rate. Primary to Secondary. Quintile 1\",\"Transition rate. Primary to Secondary. Quintile 1 is the proportion of quintile 1 pupils in the last grade of primary who transition to the first grade of secondary the following school year.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.TR.12.Q2\",\"DHS: Transition rate. Primary to Secondary. Quintile 2\",\"Transition rate. Primary to Secondary. Quintile 2 is the proportion of quintile 2 pupils in the last grade of primary who transition to the first grade of secondary the following school year.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.TR.12.Q3\",\"DHS: Transition rate. Primary to Secondary. Quintile 3\",\"Transition rate. Primary to Secondary. Quintile 3 is the proportion of quintile 3 pupils in the last grade of primary who transition to the first grade of secondary the following school year.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.TR.12.Q4\",\"DHS: Transition rate. Primary to Secondary. Quintile 4\",\"Transition rate. Primary to Secondary. Quintile 4 is the proportion of quintile 4 pupils in the last grade of primary who transition to the first grade of secondary the following school year.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.TR.12.Q5\",\"DHS: Transition rate. Primary to Secondary. Quintile 5\",\"Transition rate. Primary to Secondary. Quintile 5 is the proportion of quintile 5 pupils in the last grade of primary who transition to the first grade of secondary the following school year.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.TR.12.R\",\"DHS: Transition rate. Primary to Secondary. Rural\",\"Transition rate. Primary to Secondary. Rural is the proportion of rural pupils in the last grade of primary who transition to the first grade of secondary the following school year.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.TR.12.U\",\"DHS: Transition rate. Primary to Secondary. Urban\",\"Transition rate. Primary to Secondary. Urban is the proportion of urban pupils in the last grade of primary who transition to the first grade of secondary the following school year.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.YRS.1519\",\"DHS: Average years of schooling by age group. Age 15-19\",\"Average years of schooling by age group. Age 15-19 is the number of years of formal schooling received, on average, by the population of the given age group.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.YRS.1519.F\",\"DHS: Average years of schooling by age group. Age 15-19. Female\",\"Average years of schooling by age group. Age 15-19. Female is the number of years of formal schooling received, on average, by the female population of the given age group.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.YRS.1519.M\",\"DHS: Average years of schooling by age group. Age 15-19. Male\",\"Average years of schooling by age group. Age 15-19. Male is the number of years of formal schooling received, on average, by the male population of the given age group.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.YRS.1519.Q1\",\"DHS: Average years of schooling by age group. Age 15-19. Quintile 1\",\"Average years of schooling by age group. Age 15-19. Quintile 1 is the number of years of formal schooling received, on average, by the quintile 1 population of the given age group.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.YRS.1519.Q2\",\"DHS: Average years of schooling by age group. Age 15-19. Quintile 2\",\"Average years of schooling by age group. Age 15-19. Quintile 2 is the number of years of formal schooling received, on average, by the quintile 2 population of the given age group.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.YRS.1519.Q3\",\"DHS: Average years of schooling by age group. Age 15-19. Quintile 3\",\"Average years of schooling by age group. Age 15-19. Quintile 3 is the number of years of formal schooling received, on average, by the quintile 3 population of the given age group.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.YRS.1519.Q4\",\"DHS: Average years of schooling by age group. Age 15-19. Quintile 4\",\"Average years of schooling by age group. Age 15-19. Quintile 4 is the number of years of formal schooling received, on average, by the quintile 4 population of the given age group.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.YRS.1519.Q5\",\"DHS: Average years of schooling by age group. Age 15-19. Quintile 5\",\"Average years of schooling by age group. Age 15-19. Quintile 5 is the number of years of formal schooling received, on average, by the quintile 5 population of the given age group.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.YRS.1519.R\",\"DHS: Average years of schooling by age group. Age 15-19. Rural\",\"Average years of schooling by age group. Age 15-19. Rural is the number of years of formal schooling received, on average, by the rural population of the given age group.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.YRS.1519.U\",\"DHS: Average years of schooling by age group. Age 15-19. Urban\",\"Average years of schooling by age group. Age 15-19. Urban is the number of years of formal schooling received, on average, by the urban population of the given age group.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.YRS.15UP.GIN\",\"DHS: Gini coefficient of average years of schooling. Age 15+\",\"Gini coefficient of average years of schooling. Age 15+ measures the degree of inequality in years of schooling in a society. It is calculated similarly to the Gini coefficient of income or wealth. Results range from 0 to 100 with 0 indicating perfect equality and 100 indicating perfect inequality.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.YRS.15UP.GIN.F\",\"DHS: Gini coefficient of average years of schooling. Age 15+. Female\",\"Gini coefficient of average years of schooling. Age 15+. Female measures the degree of inequality in years of schooling in a society. It is calculated similarly to the Gini coefficient of income or wealth. Results range from 0 to 100 with 0 indicating perfect equality and 100 indicating perfect inequality.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.YRS.15UP.GIN.M\",\"DHS: Gini coefficient of average years of schooling. Age 15+. Male\",\"Gini coefficient of average years of schooling. Age 15+. Male measures the degree of inequality in years of schooling in a society. It is calculated similarly to the Gini coefficient of income or wealth. Results range from 0 to 100 with 0 indicating perfect equality and 100 indicating perfect inequality.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.YRS.15UP.GIN.Q1\",\"DHS: Gini coefficient of average years of schooling. Age 15+. Quintile 1\",\"Gini coefficient of average years of schooling. Age 15+. Quintile 1 measures the degree of inequality in years of schooling in a society. It is calculated similarly to the Gini coefficient of income or wealth. Results range from 0 to 100 with 0 indicating perfect equality and 100 indicating perfect inequality.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.YRS.15UP.GIN.Q2\",\"DHS: Gini coefficient of average years of schooling. Age 15+. Quintile 2\",\"Gini coefficient of average years of schooling. Age 15+. Quintile 2 measures the degree of inequality in years of schooling in a society. It is calculated similarly to the Gini coefficient of income or wealth. Results range from 0 to 100 with 0 indicating perfect equality and 100 indicating perfect inequality.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.YRS.15UP.GIN.Q3\",\"DHS: Gini coefficient of average years of schooling. Age 15+. Quintile 3\",\"Gini coefficient of average years of schooling. Age 15+. Quintile 3 measures the degree of inequality in years of schooling in a society. It is calculated similarly to the Gini coefficient of income or wealth. Results range from 0 to 100 with 0 indicating perfect equality and 100 indicating perfect inequality.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.YRS.15UP.GIN.Q4\",\"DHS: Gini coefficient of average years of schooling. Age 15+. Quintile 4\",\"Gini coefficient of average years of schooling. Age 15+. Quintile 4 measures the degree of inequality in years of schooling in a society. It is calculated similarly to the Gini coefficient of income or wealth. Results range from 0 to 100 with 0 indicating perfect equality and 100 indicating perfect inequality.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.YRS.15UP.GIN.Q5\",\"DHS: Gini coefficient of average years of schooling. Age 15+. Quintile 5\",\"Gini coefficient of average years of schooling. Age 15+. Quintile 5 measures the degree of inequality in years of schooling in a society. It is calculated similarly to the Gini coefficient of income or wealth. Results range from 0 to 100 with 0 indicating perfect equality and 100 indicating perfect inequality.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.YRS.15UP.GIN.R\",\"DHS: Gini coefficient of average years of schooling. Age 15+. Rural\",\"Gini coefficient of average years of schooling. Age 15+. Rural measures the degree of inequality in years of schooling in a society. It is calculated similarly to the Gini coefficient of income or wealth. Results range from 0 to 100 with 0 indicating perfect equality and 100 indicating perfect inequality.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.DHS.YRS.15UP.GIN.U\",\"DHS: Gini coefficient of average years of schooling. Age 15+. Urban\",\"Gini coefficient of average years of schooling. Age 15+. Urban measures the degree of inequality in years of schooling in a society. It is calculated similarly to the Gini coefficient of income or wealth. Results range from 0 to 100 with 0 indicating perfect equality and 100 indicating perfect inequality.\",\"Education Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"HH.MICS.GAR.456\",\"MICS: Gross attendance rate. Post Secondary\",\"Gross attendance rate. Post Secondary is the number of post-secondary school pupils of any age, expressed as a percentage of youth of post-secondary school age. Post-secondary school age is defined as the age range from graduation from secondary school till the maximum age set as a parameter of the educational system.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.GAR.456.F\",\"MICS: Gross attendance rate. Post Secondary. Female\",\"Gross attendance rate. Post Secondary. Female is the number of female post-secondary school pupils of any age, expressed as a percentage of the population of females of post-secondary school age. Post-secondary school age is defined as the age range from graduation from secondary school till the maximum age set as a parameter of the educational system.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.GAR.456.M\",\"MICS: Gross attendance rate. Post Secondary. Male\",\"Gross attendance rate. Post Secondary. Male is the number of male post-secondary school pupils of any age, expressed as a percentage of the population of males of post-secondary school age. Post-secondary school age is defined as the age range from graduation from secondary school till the maximum age set as a parameter of the educational system.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.GAR.456.Q1\",\"MICS: Gross attendance rate. Post Secondary. Quintile 1\",\"Gross attendance rate. Post Secondary. Quintile 1 is the number of quintile 1 post-secondary school pupils of any age, expressed as a percentage of the quintile 1 population of post-secondary school age. Post-secondary school age is defined as the age range from graduation from secondary school till the maximum age set as a parameter of the educational system.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.GAR.456.Q2\",\"MICS: Gross attendance rate. Post Secondary. Quintile 2\",\"Gross attendance rate. Post Secondary. Quintile 2 is the number of quintile 2 post-secondary school pupils of any age, expressed as a percentage of the quintile 2 population of post-secondary school age. Post-secondary school age is defined as the age range from graduation from secondary school till the maximum age set as a parameter of the educational system.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.GAR.456.Q3\",\"MICS: Gross attendance rate. Post Secondary. Quintile 3\",\"Gross attendance rate. Post Secondary. Quintile 3 is the number of quintile 3 post-secondary school pupils of any age, expressed as a percentage of the quintile 3 population of post-secondary school age. Post-secondary school age is defined as the age range from graduation from secondary school till the maximum age set as a parameter of the educational system.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.GAR.456.Q4\",\"MICS: Gross attendance rate. Post Secondary. Quintile 4\",\"Gross attendance rate. Post Secondary. Quintile 4 is the number of quintile 4 post-secondary school pupils of any age, expressed as a percentage of the quintile 4 population of post-secondary school age. Post-secondary school age is defined as the age range from graduation from secondary school till the maximum age set as a parameter of the educational system.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.GAR.456.Q5\",\"MICS: Gross attendance rate. Post Secondary. Quintile 5\",\"Gross attendance rate. Post Secondary. Quintile 5 is the number of quintile 5 post-secondary school pupils of any age, expressed as a percentage of the quintile 5 population of post-secondary school age. Post-secondary school age is defined as the age range from graduation from secondary school till the maximum age set as a parameter of the educational system.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.GAR.456.R\",\"MICS: Gross attendance rate. Post Secondary. Rural\",\"Gross attendance rate. Post Secondary. Rural is the number of rural post-secondary school pupils of any age, expressed as a percentage of the rural population of post-secondary school age. Post-secondary school age is defined as the age range from graduation from secondary school till the maximum age set as a parameter of the educational system.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.GAR.456.U\",\"MICS: Gross attendance rate. Post Secondary. Urban\",\"Gross attendance rate. Post Secondary. Urban is the number of urban post-secondary school pupils of any age, expressed as a percentage of the urban population of post-secondary school age. Post-secondary school age is defined as the age range from graduation from secondary school till the maximum age set as a parameter of the educational system.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.NAR.1\",\"MICS: Net attendance rate. Primary\",\"Net attendance rate. Primary. Total is the proportion of children of the official primary school age who are attending primary school. The primary school age is based on the parameters of the educational system: starting age and duration of primary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.NAR.1.F\",\"MICS: Net attendance rate. Primary. Female\",\"Net attendance rate. Primary. Female is the proportion of female children of the official primary school age who are attending primary school. The primary school age is based on the parameters of the educational system: starting age and duration of primary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.NAR.1.M\",\"MICS: Net attendance rate. Primary. Male\",\"Net attendance rate. Primary. Male is the proportion of male children of the official primary school age who are attending primary school. The primary school age is based on the parameters of the educational system: starting age and duration of primary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.NAR.1.Q1\",\"MICS: Net attendance rate. Primary. Quintile 1\",\"Net attendance rate. Primary. Quintile 1 is the proportion of quintile 1 children of the official primary school age who are attending primary school. The primary school age is based on the parameters of the educational system: starting age and duration of primary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.NAR.1.Q2\",\"MICS: Net attendance rate. Primary. Quintile 2\",\"Net attendance rate. Primary. Quintile 2 is the proportion of quintile 2 children of the official primary school age who are attending primary school. The primary school age is based on the parameters of the educational system: starting age and duration of primary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.NAR.1.Q3\",\"MICS: Net attendance rate. Primary. Quintile 3\",\"Net attendance rate. Primary. Quintile 3 is the proportion of quintile 3 children of the official primary school age who are attending primary school. The primary school age is based on the parameters of the educational system: starting age and duration of primary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.NAR.1.Q4\",\"MICS: Net attendance rate. Primary. Quintile 4\",\"Net attendance rate. Primary. Quintile 4 is the proportion of quintile 4 children of the official primary school age who are attending primary school. The primary school age is based on the parameters of the educational system: starting age and duration of primary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.NAR.1.Q5\",\"MICS: Net attendance rate. Primary. Quintile 5\",\"Net attendance rate. Primary. Quintile 5 is the proportion of quintile 5 children of the official primary school age who are attending primary school. The primary school age is based on the parameters of the educational system: starting age and duration of primary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.NAR.1.R\",\"MICS: Net attendance rate. Primary. Rural\",\"Net attendance rate. Primary. Rural is the proportion of rural children of the official primary school age who are attending primary school. The primary school age is based on the parameters of the educational system: starting age and duration of primary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.NAR.1.U\",\"MICS: Net attendance rate. Primary. Urban\",\"Net attendance rate. Primary. Urban is the proportion of urban children of the official primary school age who are attending primary school. The primary school age is based on the parameters of the educational system: starting age and duration of primary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.NAR.23\",\"MICS: Net attendance rate. Secondary\",\"Net attendance rate. Secondary is the proportion of children of official secondary school age who are attending secondary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.NAR.23.F\",\"MICS: Net attendance rate. Secondary. Female\",\"Net attendance rate. Secondary. Female is the proportion of female children of official secondary school age who are attending secondary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.NAR.23.M\",\"MICS: Net attendance rate. Secondary. Male\",\"Net attendance rate. Secondary. Male is the proportion of male children of official secondary school age who are attending secondary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.NAR.23.Q1\",\"MICS: Net attendance rate. Secondary. Quintile 1\",\"Net attendance rate. Secondary. Quintile 1 is the proportion of quintile 1 children of official secondary school age who are attending secondary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.NAR.23.Q2\",\"MICS: Net attendance rate. Secondary. Quintile 2\",\"Net attendance rate. Secondary. Quintile 2 is the proportion of quintile 2 children of official secondary school age who are attending secondary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.NAR.23.Q3\",\"MICS: Net attendance rate. Secondary. Quintile 3\",\"Net attendance rate. Secondary. Quintile 3 is the proportion of quintile 3 children of official secondary school age who are attending secondary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.NAR.23.Q4\",\"MICS: Net attendance rate. Secondary. Quintile 4\",\"Net attendance rate. Secondary. Quintile 4 is the proportion of quintile 4 children of official secondary school age who are attending secondary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.NAR.23.Q5\",\"MICS: Net attendance rate. Secondary. Quintile 5\",\"Net attendance rate. Secondary. Quintile 5 is the proportion of quintile 5 children of official secondary school age who are attending secondary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.NAR.23.R\",\"MICS: Net attendance rate. Secondary. Rural\",\"Net attendance rate. Secondary. Rural is the proportion of rural children of official secondary school age who are attending secondary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.NAR.23.U\",\"MICS: Net attendance rate. Secondary. Urban\",\"Net attendance rate. Secondary. Urban is the proportion of urban children of official secondary school age who are attending secondary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOS.1\",\"MICS: Proportion of out-of-school. Primary\",\"Proportion of out-of-school. Primary is the number of children in the official primary school age range who are not attending primary or secondary education, expressed as a percentage of children of the official primary school age range. By definition, children in the official primary-age range, who are attending pre-primary education, are considered out-of-school. The sum of the net primary attendance rate and the proportion out of school do not add to 100 percent because the net primary attendance rate does not count students who are in secondary.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOS.1.F\",\"MICS: Proportion of out-of-school. Primary. Female\",\"Proportion of out-of-school. Primary. Female is the number of female children in the official primary school age range who are not attending primary or secondary education, expressed as a percentage of female children of the official primary school age range. By definition, children in the official primary-age range, who are attending pre-primary education, are considered out-of-school. The sum of the net primary attendance rate and the proportion out of school do not add to 100 percent because the net primary attendance rate does not count students who are in secondary.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOS.1.M\",\"MICS: Proportion of out-of-school. Primary. Male\",\"Proportion of out-of-school. Primary. Male is the number of male children in the official primary school age range who are not attending primary or secondary education, expressed as a percentage of male children of the official primary school age range. By definition, children in the official primary-age range, who are attending pre-primary education, are considered out-of-school. The sum of the net primary attendance rate and the proportion out of school do not add to 100 percent because the net primary attendance rate does not count students who are in secondary.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOS.1.Q1\",\"MICS: Proportion of out-of-school. Primary. Quintile 1\",\"Proportion of out-of-school. Primary. Quintile 1 is the number of quintile 1 children in the official primary school age range who are not attending primary or secondary education, expressed as a percentage of quintile 1 children of the official primary school age range. By definition, children in the official primary-age range, who are attending pre-primary education, are considered out-of-school. The sum of the net primary attendance rate and the proportion out of school do not add to 100 percent because the net primary attendance rate does not count students who are in secondary.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOS.1.Q2\",\"MICS: Proportion of out-of-school. Primary. Quintile 2\",\"Proportion of out-of-school. Primary. Quintile 2 is the number of quintile 2 children in the official primary school age range who are not attending primary or secondary education, expressed as a percentage of quintile 2 children of the official primary school age range. By definition, children in the official primary-age range, who are attending pre-primary education, are considered out-of-school. The sum of the net primary attendance rate and the proportion out of school do not add to 100 percent because the net primary attendance rate does not count students who are in secondary.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOS.1.Q3\",\"MICS: Proportion of out-of-school. Primary. Quintile 3\",\"Proportion of out-of-school. Primary. Quintile 3 is the number of quintile 3 children in the official primary school age range who are not attending primary or secondary education, expressed as a percentage of quintile 3 children of the official primary school age range. By definition, children in the official primary-age range, who are attending pre-primary education, are considered out-of-school. The sum of the net primary attendance rate and the proportion out of school do not add to 100 percent because the net primary attendance rate does not count students who are in secondary.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOS.1.Q4\",\"MICS: Proportion of out-of-school. Primary. Quintile 4\",\"Proportion of out-of-school. Primary. Quintile 4 is the number of quintile 4 children in the official primary school age range who are not attending primary or secondary education, expressed as a percentage of quintile 4 children of the official primary school age range. By definition, children in the official primary-age range, who are attending pre-primary education, are considered out-of-school. The sum of the net primary attendance rate and the proportion out of school do not add to 100 percent because the net primary attendance rate does not count students who are in secondary.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOS.1.Q5\",\"MICS: Proportion of out-of-school. Primary. Quintile 5\",\"Proportion of out-of-school. Primary. Quintile 5 is the number of quintile 5 children in the official primary school age range who are not attending primary or secondary education, expressed as a percentage of quintile 5 children of the official primary school age range. By definition, children in the official primary-age range, who are attending pre-primary education, are considered out-of-school. The sum of the net primary attendance rate and the proportion out of school do not add to 100 percent because the net primary attendance rate does not count students who are in secondary.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOS.1.R\",\"MICS: Proportion of out-of-school. Primary. Rural\",\"Proportion of out-of-school. Primary. Rural is the number of rural children in the official primary school age range who are not attending primary or secondary education, expressed as a percentage of rural children of the official primary school age range. By definition, children in the official primary-age range, who are attending pre-primary education, are considered out-of-school. The sum of the net primary attendance rate and the proportion out of school do not add to 100 percent because the net primary attendance rate does not count students who are in secondary.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOS.1.U\",\"MICS: Proportion of out-of-school. Primary. Urban\",\"Proportion of out-of-school. Primary. Urban is the number of urban children in the official primary school age range who are not attending primary or secondary education, expressed as a percentage of urban children of the official primary school age range. By definition, children in the official primary-age range, who are attending pre-primary education, are considered out-of-school. The sum of the net primary attendance rate and the proportion out of school do not add to 100 percent because the net primary attendance rate does not count students who are in secondary.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOST.DO\",\"MICS: Typology of out-of-school children. Primary. Dropped out\",\"Typology of out-of-school children. Primary. Dropped out is the proportion of out-of-school children who were enrolled in school and dropped out. It is calculated as the proportion of children not classified as never-in-school expressed as a percent of the proportion of out-of-school children older than the age with the highest attendance rate.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOST.DO.F\",\"MICS: Typology of out-of-school children. Primary. Dropped out. Female\",\"Typology of out-of-school children. Primary. Dropped out. Female is the proportion of female out-of-school children who were enrolled in school and dropped out. It is calculated as the proportion of children not classified as never-in-school expressed as a percent of the proportion of out-of-school children older than the age with the highest attendance rate.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOST.DO.M\",\"MICS: Typology of out-of-school children. Primary. Dropped out. Male\",\"Typology of out-of-school children. Primary. Dropped out. Male is the proportion of male out-of-school children who were enrolled in school and dropped out. It is calculated as the proportion of children not classified as never-in-school expressed as a percent of the proportion of out-of-school children older than the age with the highest attendance rate.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOST.DO.Q1\",\"MICS: Typology of out-of-school children. Primary. Dropped out. Quintile 1\",\"Typology of out-of-school children. Primary. Dropped out. Quintile 1 is the proportion of quintile 1 out-of-school children who were enrolled in school and dropped out. It is calculated as the proportion of children not classified as never-in-school expressed as a percent of the proportion of out-of-school children older than the age with the highest attendance rate.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOST.DO.Q2\",\"MICS: Typology of out-of-school children. Primary. Dropped out. Quintile 2\",\"Typology of out-of-school children. Primary. Dropped out. Quintile 2 is the proportion of quintile 2 out-of-school children who were enrolled in school and dropped out. It is calculated as the proportion of children not classified as never-in-school expressed as a percent of the proportion of out-of-school children older than the age with the highest attendance rate.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOST.DO.Q3\",\"MICS: Typology of out-of-school children. Primary. Dropped out. Quintile 3\",\"Typology of out-of-school children. Primary. Dropped out. Quintile 3 is the proportion of quintile 3 out-of-school children who were enrolled in school and dropped out. It is calculated as the proportion of children not classified as never-in-school expressed as a percent of the proportion of out-of-school children older than the age with the highest attendance rate.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOST.DO.Q4\",\"MICS: Typology of out-of-school children. Primary. Dropped out. Quintile 4\",\"Typology of out-of-school children. Primary. Dropped out. Quintile 4 is the proportion of quintile 4 out-of-school children who were enrolled in school and dropped out. It is calculated as the proportion of children not classified as never-in-school expressed as a percent of the proportion of out-of-school children older than the age with the highest attendance rate.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOST.DO.Q5\",\"MICS: Typology of out-of-school children. Primary. Dropped out. Quintile 5\",\"Typology of out-of-school children. Primary. Dropped out. Quintile 5 is the proportion of quintile 5 out-of-school children who were enrolled in school and dropped out. It is calculated as the proportion of children not classified as never-in-school expressed as a percent of the proportion of out-of-school children older than the age with the highest attendance rate.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOST.DO.R\",\"MICS: Typology of out-of-school children. Primary. Dropped out. Rural\",\"Typology of out-of-school children. Primary. Dropped out. Rural is the proportion of rural out-of-school children who were enrolled in school and dropped out. It is calculated as the proportion of children not classified as never-in-school expressed as a percent of the proportion of out-of-school children older than the age with the highest attendance rate.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOST.DO.U\",\"MICS: Typology of out-of-school children. Primary. Dropped out. Urban\",\"Typology of out-of-school children. Primary. Dropped out. Urban is the proportion of urban out-of-school children who were enrolled in school and dropped out. It is calculated as the proportion of children not classified as never-in-school expressed as a percent of the proportion of out-of-school children older than the age with the highest attendance rate.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOST.L\",\"MICS: Typology of out-of-school children. Primary. Late entry\",\"Typology of out-of-school children. Primary. Late entry is defined as the proportion of out-of-school children who are currently out of school but are expected to enter the education system later than they should. It is calculated based on UNESCO's methodology as the proportion leftover from those estimated as never in school, expressed as a percent of the proportion out-of-school for children younger than the age with the highest attendance rate.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOST.L.F\",\"MICS: Typology of out-of-school children. Primary. Late entry. Female\",\"Typology of out-of-school children. Primary. Late entry. Female is defined as the proportion of female out-of-school children who are currently out of school but are expected to enter the education system later than they should. It is calculated based on UNESCO's methodology as the proportion leftover from those estimated as never in school, expressed as a percent of the proportion out-of-school for children younger than the age with the highest attendance rate.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOST.L.M\",\"MICS: Typology of out-of-school children. Primary. Late entry. Male\",\"Typology of out-of-school children. Primary. Late entry. Male is defined as the proportion of male out-of-school children who are currently out of school but are expected to enter the education system later than they should. It is calculated based on UNESCO's methodology as the proportion leftover from those estimated as never in school, expressed as a percent of the proportion out-of-school for children younger than the age with the highest attendance rate.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOST.L.Q1\",\"MICS: Typology of out-of-school children. Primary. Late entry. Quintile 1\",\"Typology of out-of-school children. Primary. Late entry. Quintile 1 is defined as the proportion of quintile 1 out-of-school children who are currently out of school but are expected to enter the education system later than they should. It is calculated based on UNESCO's methodology as the proportion leftover from those estimated as never in school, expressed as a percent of the proportion out-of-school for children younger than the age with the highest attendance rate.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOST.L.Q2\",\"MICS: Typology of out-of-school children. Primary. Late entry. Quintile 2\",\"Typology of out-of-school children. Primary. Late entry. Quintile 2 is defined as the proportion of quintile 2 out-of-school children who are currently out of school but are expected to enter the education system later than they should. It is calculated based on UNESCO's methodology as the proportion leftover from those estimated as never in school, expressed as a percent of the proportion out-of-school for children younger than the age with the highest attendance rate.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOST.L.Q3\",\"MICS: Typology of out-of-school children. Primary. Late entry. Quintile 3\",\"Typology of out-of-school children. Primary. Late entry. Quintile 3 is defined as the proportion of quintile 3 out-of-school children who are currently out of school but are expected to enter the education system later than they should. It is calculated based on UNESCO's methodology as the proportion leftover from those estimated as never in school, expressed as a percent of the proportion out-of-school for children younger than the age with the highest attendance rate.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOST.L.Q4\",\"MICS: Typology of out-of-school children. Primary. Late entry. Quintile 4\",\"Typology of out-of-school children. Primary. Late entry. Quintile 4 is defined as the proportion of quintile 4 out-of-school children who are currently out of school but are expected to enter the education system later than they should. It is calculated based on UNESCO's methodology as the proportion leftover from those estimated as never in school, expressed as a percent of the proportion out-of-school for children younger than the age with the highest attendance rate.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOST.L.Q5\",\"MICS: Typology of out-of-school children. Primary. Late entry. Quintile 5\",\"Typology of out-of-school children. Primary. Late entry. Quintile 5 is defined as the proportion of quintile 5 out-of-school children who are currently out of school but are expected to enter the education system later than they should. It is calculated based on UNESCO's methodology as the proportion leftover from those estimated as never in school, expressed as a percent of the proportion out-of-school for children younger than the age with the highest attendance rate.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOST.L.R\",\"MICS: Typology of out-of-school children. Primary. Late entry. Rural\",\"Typology of out-of-school children. Primary. Late entry. Rural is defined as the proportion of rural out-of-school children who are currently out of school but are expected to enter the education system later than they should. It is calculated based on UNESCO's methodology as the proportion leftover from those estimated as never in school, expressed as a percent of the proportion out-of-school for children younger than the age with the highest attendance rate.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOST.L.U\",\"MICS: Typology of out-of-school children. Primary. Late entry. Urban\",\"Typology of out-of-school children. Primary. Late entry. Urban is defined as the proportion of urban out-of-school children who are currently out of school but are expected to enter the education system later than they should. It is calculated based on UNESCO's methodology as the proportion leftover from those estimated as never in school, expressed as a percent of the proportion out-of-school for children younger than the age with the highest attendance rate.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOST.X\",\"MICS: Typology of out-of-school children. Primary. Never in school\",\"Typology of out-of-school children. Primary. Never in school is the percentage of out-of-school primary-school-age children who have never attended school and are not likely to enter school in the future. Since no survey can say definitively that a school-age person will never attend school, this is a probabilistic indicator. The indicator is based on UNESCO’s methodology, which estimates the proportion of children who will never attend school as the proportion of out of school for the age group with the lowest proportion of out-of-school children. This methodology assumes no dropout before the age at which enrolment rates peak, and no late entry after the age with peak enrolment.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOST.X.F\",\"MICS: Typology of out-of-school children. Primary. Never in school. Female\",\"Typology of out-of-school children. Primary. Never in school. Female is the percentage of female out-of-school primary-school-age children who have never attended school and are not likely to enter school in the future. Since no survey can say definitively that a school-age person will never attend school, this is a probabilistic indicator. The indicator is based on UNESCO’s methodology, which estimates the proportion of children who will never attend school as the proportion of out of school for the age group with the lowest proportion of out-of-school children. This methodology assumes no dropout before the age at which enrolment rates peak, and no late entry after the age with peak enrolment.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOST.X.M\",\"MICS: Typology of out-of-school children. Primary. Never in school. Male\",\"Typology of out-of-school children. Primary. Never in school. Male is the percentage of male out-of-school primary-school-age children who have never attended school and are not likely to enter school in the future. Since no survey can say definitively that a school-age person will never attend school, this is a probabilistic indicator. The indicator is based on UNESCO’s methodology, which estimates the proportion of children who will never attend school as the proportion of out of school for the age group with the lowest proportion of out-of-school children. This methodology assumes no dropout before the age at which enrolment rates peak, and no late entry after the age with peak enrolment.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOST.X.Q1\",\"MICS: Typology of out-of-school children. Primary. Never in school. Quintile 1\",\"Typology of out-of-school children. Primary. Never in school. Quintile 1 is the percentage of quintile 1 out-of-school primary-school-age children who have never attended school and are not likely to enter school in the future. Since no survey can say definitively that a school-age person will never attend school, this is a probabilistic indicator. The indicator is based on UNESCO’s methodology, which estimates the proportion of children who will never attend school as the proportion of out of school for the age group with the lowest proportion of out-of-school children. This methodology assumes no dropout before the age at which enrolment rates peak, and no late entry after the age with peak enrolment.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOST.X.Q2\",\"MICS: Typology of out-of-school children. Primary. Never in school. Quintile 2\",\"Typology of out-of-school children. Primary. Never in school. Quintile 2 is the percentage of quintile 2 out-of-school primary-school-age children who have never attended school and are not likely to enter school in the future. Since no survey can say definitively that a school-age person will never attend school, this is a probabilistic indicator. The indicator is based on UNESCO’s methodology, which estimates the proportion of children who will never attend school as the proportion of out of school for the age group with the lowest proportion of out-of-school children. This methodology assumes no dropout before the age at which enrolment rates peak, and no late entry after the age with peak enrolment.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOST.X.Q3\",\"MICS: Typology of out-of-school children. Primary. Never in school. Quintile 3\",\"Typology of out-of-school children. Primary. Never in school. Quintile 3 is the percentage of quintile 3 out-of-school primary-school-age children who have never attended school and are not likely to enter school in the future. Since no survey can say definitively that a school-age person will never attend school, this is a probabilistic indicator. The indicator is based on UNESCO’s methodology, which estimates the proportion of children who will never attend school as the proportion of out of school for the age group with the lowest proportion of out-of-school children. This methodology assumes no dropout before the age at which enrolment rates peak, and no late entry after the age with peak enrolment.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOST.X.Q4\",\"MICS: Typology of out-of-school children. Primary. Never in school. Quintile 4\",\"Typology of out-of-school children. Primary. Never in school. Quintile 4 is the percentage of quintile 4 out-of-school primary-school-age children who have never attended school and are not likely to enter school in the future. Since no survey can say definitively that a school-age person will never attend school, this is a probabilistic indicator. The indicator is based on UNESCO’s methodology, which estimates the proportion of children who will never attend school as the proportion of out of school for the age group with the lowest proportion of out-of-school children. This methodology assumes no dropout before the age at which enrolment rates peak, and no late entry after the age with peak enrolment.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOST.X.Q5\",\"MICS: Typology of out-of-school children. Primary. Never in school. Quintile 5\",\"Typology of out-of-school children. Primary. Never in school. Quintile 5 is the percentage of quintile 5 out-of-school primary-school-age children who have never attended school and are not likely to enter school in the future. Since no survey can say definitively that a school-age person will never attend school, this is a probabilistic indicator. The indicator is based on UNESCO’s methodology, which estimates the proportion of children who will never attend school as the proportion of out of school for the age group with the lowest proportion of out-of-school children. This methodology assumes no dropout before the age at which enrolment rates peak, and no late entry after the age with peak enrolment.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOST.X.R\",\"MICS: Typology of out-of-school children. Primary. Never in school. Rural\",\"Typology of out-of-school children. Primary. Never in school. Rural is the percentage of rural out-of-school primary-school-age children who have never attended school and are not likely to enter school in the future. Since no survey can say definitively that a school-age person will never attend school, this is a probabilistic indicator. The indicator is based on UNESCO’s methodology, which estimates the proportion of children who will never attend school as the proportion of out of school for the age group with the lowest proportion of out-of-school children. This methodology assumes no dropout before the age at which enrolment rates peak, and no late entry after the age with peak enrolment.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.OOST.X.U\",\"MICS: Typology of out-of-school children. Primary. Never in school. Urban\",\"Typology of out-of-school children. Primary. Never in school. Urban is the percentage of urban out-of-school primary-school-age children who have never attended school and are not likely to enter school in the future. Since no survey can say definitively that a school-age person will never attend school, this is a probabilistic indicator. The indicator is based on UNESCO’s methodology, which estimates the proportion of children who will never attend school as the proportion of out of school for the age group with the lowest proportion of out-of-school children. This methodology assumes no dropout before the age at which enrolment rates peak, and no late entry after the age with peak enrolment.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.PCR\",\"MICS: Primary completion rate\",\"Primary completion rate is the total number of students of any age in the last grade of primary school, minus the number of repeaters in that grade, divided by the number of children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of primary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.PCR.F\",\"MICS: Primary completion rate. Female\",\"Primary completion rate. Female is the total number of female students of any age in the last grade of primary school, minus the number of female repeaters in that grade, divided by the number of female children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of primary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.PCR.M\",\"MICS: Primary completion rate. Male\",\"Primary completion rate. Male is the total number of male students of any age in the last grade of primary school, minus the number of male repeaters in that grade, divided by the number of male children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of primary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.PCR.Q1\",\"MICS: Primary completion rate. Quintile 1\",\"Primary completion rate. Quintile 1 is the total number of quintile 1 students of any age in the last grade of primary school, minus the number of quintile 1 repeaters in that grade, divided by the number of quintile 1 children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of primary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.PCR.Q2\",\"MICS: Primary completion rate. Quintile 2\",\"Primary completion rate. Quintile 2 is the total number of quintile 2 students of any age in the last grade of primary school, minus the number of quintile 2 repeaters in that grade, divided by the number of quintile 2 children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of primary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.PCR.Q3\",\"MICS: Primary completion rate. Quintile 3\",\"Primary completion rate. Quintile 3 is the total number of quintile 3 students of any age in the last grade of primary school, minus the number of quintile 3 repeaters in that grade, divided by the number of quintile 3 children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of primary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.PCR.Q4\",\"MICS: Primary completion rate. Quintile 4\",\"Primary completion rate. Quintile 4 is the total number of quintile 4 students of any age in the last grade of primary school, minus the number of quintile 4 repeaters in that grade, divided by the number of quintile 4 children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of primary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.PCR.Q5\",\"MICS: Primary completion rate. Quintile 5\",\"Primary completion rate. Quintile 5 is the total number of quintile 5 students of any age in the last grade of primary school, minus the number of quintile 5 repeaters in that grade, divided by the number of quintile 5 children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of primary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.PCR.R\",\"MICS: Primary completion rate. Rural\",\"Primary completion rate. Rural is the total number of rural students of any age in the last grade of primary school, minus the number of rural repeaters in that grade, divided by the number of rural children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of primary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.PCR.U\",\"MICS: Primary completion rate. Urban\",\"Primary completion rate. Urban is the total number of urban students of any age in the last grade of primary school, minus the number of urban repeaters in that grade, divided by the number of urban children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of primary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.SCR\",\"MICS: Secondary completion rate\",\"Secondary completion rate is the total number of students of any age in last grade of secondary school, minus the number of repeaters in that grade, divided by the number of children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of secondary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.SCR.F\",\"MICS: Secondary completion rate. Female\",\"Secondary completion rate. Female is the total number of female students of any age in last grade of secondary school, minus the number of female repeaters in that grade, divided by the number of female children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of secondary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.SCR.M\",\"MICS: Secondary completion rate. Male\",\"Secondary completion rate. Male is the total number of male students of any age in last grade of secondary school, minus the number of male repeaters in that grade, divided by the number of male children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of secondary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.SCR.Q1\",\"MICS: Secondary completion rate. Quintile 1\",\"Secondary completion rate. Quintile 1 is the total number of quintile 1 students of any age in last grade of secondary school, minus the number of quintile 1 repeaters in that grade, divided by the number of quintile 1 children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of secondary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.SCR.Q2\",\"MICS: Secondary completion rate. Quintile 2\",\"Secondary completion rate. Quintile 2 is the total number of quintile 2 students of any age in last grade of secondary school, minus the number of quintile 2 repeaters in that grade, divided by the number of quintile 2 children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of secondary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.SCR.Q3\",\"MICS: Secondary completion rate. Quintile 3\",\"Secondary completion rate. Quintile 3 is the total number of quintile 3 students of any age in last grade of secondary school, minus the number of quintile 3 repeaters in that grade, divided by the number of quintile 3 children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of secondary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.SCR.Q4\",\"MICS: Secondary completion rate. Quintile 4\",\"Secondary completion rate. Quintile 4 is the total number of quintile 4 students of any age in last grade of secondary school, minus the number of quintile 4 repeaters in that grade, divided by the number of quintile 4 children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of secondary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.SCR.Q5\",\"MICS: Secondary completion rate. Quintile 5\",\"Secondary completion rate. Quintile 5 is the total number of quintile 5 students of any age in last grade of secondary school, minus the number of quintile 5 repeaters in that grade, divided by the number of quintile 5 children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of secondary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.SCR.R\",\"MICS: Secondary completion rate. Rural\",\"Secondary completion rate. Rural is the total number of rural students of any age in last grade of secondary school, minus the number of rural repeaters in that grade, divided by the number of rural children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of secondary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.SCR.U\",\"MICS: Secondary completion rate. Urban\",\"Secondary completion rate. Urban is the total number of urban students of any age in last grade of secondary school, minus the number of urban repeaters in that grade, divided by the number of urban children of official graduation age. The completion rate can exceed 100 percent if there are many overage students in the last grade of secondary school.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.TR.12\",\"MICS: Transition rate. Primary to Secondary\",\"Transition rate. Primary to Secondary is the proportion of pupils in the last grade of primary who transition to the first grade of secondary the following school year.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.TR.12.F\",\"MICS: Transition rate. Primary to Secondary. Female\",\"Transition rate. Primary to Secondary. Female is the proportion of female pupils in the last grade of primary who transition to the first grade of secondary the following school year.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.TR.12.M\",\"MICS: Transition rate. Primary to Secondary. Male\",\"Transition rate. Primary to Secondary. Male is the proportion of male pupils in the last grade of primary who transition to the first grade of secondary the following school year.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.TR.12.Q1\",\"MICS: Transition rate. Primary to Secondary. Quintile 1\",\"Transition rate. Primary to Secondary. Quintile 1 is the proportion of quintile 1 pupils in the last grade of primary who transition to the first grade of secondary the following school year.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.TR.12.Q2\",\"MICS: Transition rate. Primary to Secondary. Quintile 2\",\"Transition rate. Primary to Secondary. Quintile 2 is the proportion of quintile 2 pupils in the last grade of primary who transition to the first grade of secondary the following school year.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.TR.12.Q3\",\"MICS: Transition rate. Primary to Secondary. Quintile 3\",\"Transition rate. Primary to Secondary. Quintile 3 is the proportion of quintile 3 pupils in the last grade of primary who transition to the first grade of secondary the following school year.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.TR.12.Q4\",\"MICS: Transition rate. Primary to Secondary. Quintile 4\",\"Transition rate. Primary to Secondary. Quintile 4 is the proportion of quintile 4 pupils in the last grade of primary who transition to the first grade of secondary the following school year.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.TR.12.Q5\",\"MICS: Transition rate. Primary to Secondary. Quintile 5\",\"Transition rate. Primary to Secondary. Quintile 5 is the proportion of quintile 5 pupils in the last grade of primary who transition to the first grade of secondary the following school year.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.TR.12.R\",\"MICS: Transition rate. Primary to Secondary. Rural\",\"Transition rate. Primary to Secondary. Rural is the proportion of rural pupils in the last grade of primary who transition to the first grade of secondary the following school year.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.TR.12.U\",\"MICS: Transition rate. Primary to Secondary. Urban\",\"Transition rate. Primary to Secondary. Urban is the proportion of urban pupils in the last grade of primary who transition to the first grade of secondary the following school year.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.YRS.1519\",\"MICS: Average years of schooling by age group. Age 15-19\",\"Average years of schooling by age group. Age 15-19 is the number of years of formal schooling received, on average, by the population of the given age group.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.YRS.1519.F\",\"MICS: Average years of schooling by age group. Age 15-19. Female\",\"Average years of schooling by age group. Age 15-19. Female is the number of years of formal schooling received, on average, by the female population of the given age group.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.YRS.1519.M\",\"MICS: Average years of schooling by age group. Age 15-19. Male\",\"Average years of schooling by age group. Age 15-19. Male is the number of years of formal schooling received, on average, by the male population of the given age group.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.YRS.1519.Q1\",\"MICS: Average years of schooling by age group. Age 15-19. Quintile 1\",\"Average years of schooling by age group. Age 15-19. Quintile 1 is the number of years of formal schooling received, on average, by the quintile 1 population of the given age group.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.YRS.1519.Q2\",\"MICS: Average years of schooling by age group. Age 15-19. Quintile 2\",\"Average years of schooling by age group. Age 15-19. Quintile 2 is the number of years of formal schooling received, on average, by the quintile 2 population of the given age group.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.YRS.1519.Q3\",\"MICS: Average years of schooling by age group. Age 15-19. Quintile 3\",\"Average years of schooling by age group. Age 15-19. Quintile 3 is the number of years of formal schooling received, on average, by the quintile 3 population of the given age group.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.YRS.1519.Q4\",\"MICS: Average years of schooling by age group. Age 15-19. Quintile 4\",\"Average years of schooling by age group. Age 15-19. Quintile 4 is the number of years of formal schooling received, on average, by the quintile 4 population of the given age group.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.YRS.1519.Q5\",\"MICS: Average years of schooling by age group. Age 15-19. Quintile 5\",\"Average years of schooling by age group. Age 15-19. Quintile 5 is the number of years of formal schooling received, on average, by the quintile 5 population of the given age group.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.YRS.1519.R\",\"MICS: Average years of schooling by age group. Age 15-19. Rural\",\"Average years of schooling by age group. Age 15-19. Rural is the number of years of formal schooling received, on average, by the rural population of the given age group.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.YRS.1519.U\",\"MICS: Average years of schooling by age group. Age 15-19. Urban\",\"Average years of schooling by age group. Age 15-19. Urban is the number of years of formal schooling received, on average, by the urban population of the given age group.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.YRS.15UP.GIN\",\"MICS: Gini coefficient of average years of schooling. Age 15+\",\"Gini coefficient of average years of schooling. Age 15+ measures the degree of inequality in years of schooling in a society. It is calculated similarly to the Gini coefficient of income or wealth. Results range from 0 to 100 with 0 indicating perfect equality and 100 indicating perfect inequality.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.YRS.15UP.GIN.F\",\"MICS: Gini coefficient of average years of schooling. Age 15+. Female\",\"Gini coefficient of average years of schooling. Age 15+. Female measures the degree of inequality in years of schooling in a society. It is calculated similarly to the Gini coefficient of income or wealth. Results range from 0 to 100 with 0 indicating perfect equality and 100 indicating perfect inequality.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.YRS.15UP.GIN.M\",\"MICS: Gini coefficient of average years of schooling. Age 15+. Male\",\"Gini coefficient of average years of schooling. Age 15+. Male measures the degree of inequality in years of schooling in a society. It is calculated similarly to the Gini coefficient of income or wealth. Results range from 0 to 100 with 0 indicating perfect equality and 100 indicating perfect inequality.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.YRS.15UP.GIN.Q1\",\"MICS: Gini coefficient of average years of schooling. Age 15+. Quintile 1\",\"Gini coefficient of average years of schooling. Age 15+. Quintile 1 measures the degree of inequality in years of schooling in a society. It is calculated similarly to the Gini coefficient of income or wealth. Results range from 0 to 100 with 0 indicating perfect equality and 100 indicating perfect inequality.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.YRS.15UP.GIN.Q2\",\"MICS: Gini coefficient of average years of schooling. Age 15+. Quintile 2\",\"Gini coefficient of average years of schooling. Age 15+. Quintile 2 measures the degree of inequality in years of schooling in a society. It is calculated similarly to the Gini coefficient of income or wealth. Results range from 0 to 100 with 0 indicating perfect equality and 100 indicating perfect inequality.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.YRS.15UP.GIN.Q3\",\"MICS: Gini coefficient of average years of schooling. Age 15+. Quintile 3\",\"Gini coefficient of average years of schooling. Age 15+. Quintile 3 measures the degree of inequality in years of schooling in a society. It is calculated similarly to the Gini coefficient of income or wealth. Results range from 0 to 100 with 0 indicating perfect equality and 100 indicating perfect inequality.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.YRS.15UP.GIN.Q4\",\"MICS: Gini coefficient of average years of schooling. Age 15+. Quintile 4\",\"Gini coefficient of average years of schooling. Age 15+. Quintile 4 measures the degree of inequality in years of schooling in a society. It is calculated similarly to the Gini coefficient of income or wealth. Results range from 0 to 100 with 0 indicating perfect equality and 100 indicating perfect inequality.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.YRS.15UP.GIN.Q5\",\"MICS: Gini coefficient of average years of schooling. Age 15+. Quintile 5\",\"Gini coefficient of average years of schooling. Age 15+. Quintile 5 measures the degree of inequality in years of schooling in a society. It is calculated similarly to the Gini coefficient of income or wealth. Results range from 0 to 100 with 0 indicating perfect equality and 100 indicating perfect inequality.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.YRS.15UP.GIN.R\",\"MICS: Gini coefficient of average years of schooling. Age 15+. Rural\",\"Gini coefficient of average years of schooling. Age 15+. Rural measures the degree of inequality in years of schooling in a society. It is calculated similarly to the Gini coefficient of income or wealth. Results range from 0 to 100 with 0 indicating perfect equality and 100 indicating perfect inequality.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HH.MICS.YRS.15UP.GIN.U\",\"MICS: Gini coefficient of average years of schooling. Age 15+. Urban\",\"Gini coefficient of average years of schooling. Age 15+. Urban measures the degree of inequality in years of schooling in a society. It is calculated similarly to the Gini coefficient of income or wealth. Results range from 0 to 100 with 0 indicating perfect equality and 100 indicating perfect inequality.\",\"Education Statistics\",\"World Bank staff calculations based on Multiple Indicator Cluster Survey (MICS) data\"\n\"HMUV\",\"MUV 2010=100\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"\"\n\"HOU.ELC.ACSN.ZS\",\"Household Access to Electricity: Total (in % of total household)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, National Social Economic Survey (SUSENAS)\"\n\"HOU.H2O.ACSN.ZS\",\"Household Access to Safe Water (in % of total household)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, National Social Economic Survey (SUSENAS)\"\n\"HOU.MLT.MAIN.ZS\",\"Household Access to Fixed Line Phone Connection (in % of total Household)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Village Census (PODES)\"\n\"HOU.STA.ACSN.ZS\",\"Household Access to safe Sanitation (in % of total Household)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, National Social Economic Survey (SUSENAS)\"\n\"HOU.XPD.EDU.PC.CR\",\"Monthly Per Capita Household Education Expenditure (in IDR)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, National Social Economic Survey (SUSENAS)\"\n\"HOU.XPD.HE.PC.CR\",\"Monthly Per Capita Household Health Expenditure (in IDR)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, National Social Economic Survey (SUSENAS)\"\n\"HOU.XPD.PC.CR\",\"Household per capita expenditure (in IDR)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, National Social Economic Survey (SUSENAS)\"\n\"HOU.XPD.TOTL.20POOR.CR\",\"Monthly Per Capita TOTAL Household Expenditure for The Poorest 20 percent (in IDR)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, National Social Economic Survey (SUSENAS)\"\n\"i_acc_deposit_A1\",\"Deposit accounts per 1,000 adults\",\"Denotes the total number of deposit accounts that are held by resident nonfinancial corporations (public and private) and households in commercial banks for every 1,000 adults in the reporting country. For several countries, however, data cover the total \",\"G20 Basic Set of Financial Inclusion Indicators\",\"International Monetary Fund, Financial Access Survey.\"\n\"i_acc_deposit_A1_sme\",\"SME deposit accounts (as a % of non-financial corporation borrowers)\",\"Denotes the total number of deposit accounts in commercial banks held by SMEs as a fraction of the total number of deposit accounts in commercial banks held by non-financial corporations. Calculated as: (number of deposit accounts by SMEs with commercial \",\"G20 Basic Set of Financial Inclusion Indicators\",\"International Monetary Fund, Financial Access Survey.\"\n\"i_acc_loan_A1\",\"Outstanding loans per 1,000 adults\",\"Denotes the total number of loan accounts that are obtained by resident nonfinancial corporations (public and private) and households from commercial banks for every 1,000 adults in the reporting country. For several countries, however, data cover the tot\",\"G20 Basic Set of Financial Inclusion Indicators\",\"International Monetary Fund, Financial Access Survey.\"\n\"i_acc_loan_A1_sme\",\"SME loan accounts (as a % of non-financial corporation borrowers)\",\"Denotes the total number of loans obtained by SMEs from a commercial bank as a fraction of the total loans obtained by non-financial corporations from commercial banks. Calculated as: (number of loan accounts by SMEs with commercial banks)/(number of loan\",\"G20 Basic Set of Financial Inclusion Indicators\",\"International Monetary Fund, Financial Access Survey.\"\n\"i_ATMs_pop\",\"ATMs per 100,000 adults\",\"Denotes the total number of ATMs for every 100,000 adults in the reporting country. Calculated as (number of ATMs)*100,000/adult population in the reporting country. Automated teller machines are computerized telecommunications devices that provide client\",\"G20 Basic Set of Financial Inclusion Indicators\",\"International Monetary Fund, Financial Access Survey.\"\n\"i_branches_pop_A1\",\"Branches per 100,000 adults\",\"Denotes the number of branches of commercial banks for every 1,000 squared kilometers in the reporting country.  Calculated as (number of institutions + number of branches)*1,000/land area of the reporting country in square kilometers.\",\"G20 Basic Set of Financial Inclusion Indicators\",\"International Monetary Fund, Financial Access Survey.\"\n\"i_mob_agent_pop_registered\",\"Mobile agent outlets per 100,000 adults\",\"Denotes the number of registered mobile agent outlets per 100,000 adults\",\"G20 Basic Set of Financial Inclusion Indicators\",\"International Monetary Fund, Financial Access Survey.\"\n\"i_mob_transactions_number\",\"Mobile money transactions per 100,000 adults\",\"Denotes the number of mobile money transactions per 100,000 adults.\",\"G20 Basic Set of Financial Inclusion Indicators\",\"International Monetary Fund, Financial Access Survey.\"\n\"IAGRICULTURE\",\"Agriculture, 2000=100, current$\",\"Agriculture index includes beverages, food and agricultural raw materials.\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"IBEVERAGES\",\"Agr: Beverages, 2000=100, current$\",\"Beverages index includes cocoa, coffee and tea.\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"IBP.OBI.XQ\",\"Open Budget Index Overall Country Score\",\"Open Budget Index scores countries from zero to 100, based on a subset of 91 questions from the questionnaire. These questions focus on the public availability of eight key budget documents (with a particular emphasis on the Executive’s Budget Proposal), and on the information they contain. A score of 81-100 indicates that a given country provides extensive information in its budget documents, a score of 61-80 indicates significant information, 41-60 indicates some  information, 21-40 indicates minimal information, and zero-20 indicates scant or no information.\",\"Africa Development Indicators\",\"http://www.openbudgetindex.org\"\n\"IC.BUS.DFRN.XQ\",\"Distance to frontier score (0=lowest performance to 100=frontier)\",\"Distance to frontier score illustrates the distance of an economy to the \\\"frontier,\\\" which represents the best performance observed on each Doing Business topic across all economies and years included since 2005. An economy's distance to frontier is indicated on a scale from 0 to 100, where 0 represents the lowest performance and 100 the frontier. For example, a score of 75 in 2012 means an economy was 25 percentage points away from the frontier constructed from the best performances across all economies and across time. A score of 80 in 2013 would indicate the economy is improving.\",\"World Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.BUS.DIR.XQ\",\"Protecting investors, director liability index\",\"Director liability index measures a plaintiff’s ability to hold directors of firms liable for damages to the company, that is, measures the strength of minority shareholder protections against directors’ misuse of corporate assets for personal gain.  The indicators distinguish 3 dimensions of investor protection: transparency of transactions (extent of disclosure index), liability for self-dealing (extent of director liability index) and shareholders’ ability to sue officers and directors for misconduct (ease of shareholder suits index). The data come from a survey of corporate lawyers and are based on company laws, court rules of evidence and securities regulations.  For more information, visit http://www.doingbusiness.org/MethodologySurveys/.  \",\"Africa Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.BUS.DISC.XQ\",\"Business extent of disclosure index (0=less disclosure to 10=more disclosure)\",\"Disclosure index measures the extent to which investors are protected through disclosure of ownership and financial information. The index ranges from 0 to 10, with higher values indicating more disclosure.\",\"World Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.BUS.EASE.XQ\",\"Ease of doing business index (1=most business-friendly regulations)\",\"Ease of doing business ranks economies from 1 to 189, with first place being the best. A high ranking (a low numerical rank) means that the regulatory environment is conducive to business operation. The index averages the country's percentile rankings on 10 topics covered in the World Bank's Doing Business. The ranking on each topic is the simple average of the percentile rankings on its component indicators.\",\"World Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.BUS.INVS.XQ\",\"Protecting investors, investor protection index\",\"Protecting investors disclosure index measures the degree to which investors are protected through disclosure of ownership and financial information. For more information, visit http://www.doingbusiness.org/MethodologySurveys/.  \",\"Africa Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.BUS.NDNS.ZS\",\"New business density (new registrations per 1,000 people ages 15-64)\",\"New businesses registered are the number of new limited liability corporations registered in the calendar year.\",\"World Development Indicators\",\"World Bank's Entrepreneurship Survey and database (http://econ.worldbank.org/research/entrepreneurship).\"\n\"IC.BUS.NREG\",\"New businesses registered (number)\",\"New businesses registered are the number of new limited liability corporations registered in the calendar year.\",\"World Development Indicators\",\"World Bank's Entrepreneurship Survey and database (http://econ.worldbank.org/research/entrepreneurship).\"\n\"IC.BUS.SHR.XQ\",\"Protecting investors, shareholder suits index\",\"Doing Business measures the strength of minority shareholder protections against directors’ misuse of corporate assets for personal gain. The indicators distinguish 3 dimensions of investor protection: transparency of transactions (extent of disclosure index), liability for self-dealing (extent of director liability index) and shareholders’ ability to sue officers and directors for misconduct (ease of shareholder suits index). The data come from a survey of corporate lawyers and are based on company laws, court rules of evidence and securities regulations.  For more information, visit http://www.doingbusiness.org/MethodologySurveys/.  \",\"Africa Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.BUS.XQ\",\"Protecting investors (rank)\",\"This index averages the country's percentile rankings on: disclosure Index\",\"Africa Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.CLS.COST.EST.ZS\",\"Closing a business, cost (% of estate)\",\"The cost of the proceedings is recorded as a percentage of the estate’s value. The cost is calculated on the basis of survey responses by insolvency practitioners and includes court fees as well as fees of insolvency practitioners, independent assessors, lawyers and accountants. Respondents provide cost estimates from among the following options: less than 2%, 2–5%, 5–8%, 8–11%, 11–18%, 18–25%, 25–33%, 33–50%, 50–75% and more than 75% of the value of the business estate.  This is the cost of the bankruptcy proceedings.  For more information, visit http://www.doingbusiness.org/MethodologySurveys/.  \",\"Africa Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.CLS.DURS\",\"Closing a business, time (years)\",\"Time is recorded in calendar years. Information is collected on the sequence of procedures and on whether any procedures can be carried out simultaneously. Potential delay tactics by the parties, such as the filing of dilatory appeals or requests for extension, are taken into consideration.  For more information, visit http://www.doingbusiness.org/MethodologySurveys/.  \",\"Africa Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.CLS.REC.CD\",\"Closing a business, recovery rate (cents on the dollar)\",\"The recovery rate is recorded as cents on the dollar recouped by creditors through the bankruptcy or insolvency proceedings. The calculation takes into account whether the business emerges from the proceedings as a going concern as well as costs and the loss in value due to the time spent closing down. If the business keeps operating, no value is lost on the initial claim, set at 100 cents on the dollar. If it does not, the initial 100 cents on the dollar are reduced to 70 cents on the dollar. Then the official costs of the insolvency procedure are deducted (1 cent for each percentage of the initial value). Finally, the value lost as a result of the time the money remains tied up in insolvency proceedings is taken into account, including the loss of value due to depreciation of the hotel furniture. Consistent with international accounting practice, the depreciation rate for furniture is taken to be 20%. The furniture is assumed to account for a quarter of the total value of assets. The recovery rate is the present value of the remaining proceeds, based on end-2006 lending rates from the International Monetary Fund’s International Financial Statistics, supplemented with data from central banks.  For more information, visit http://www.doingbusiness.org/MethodologySurveys/.  \",\"Africa Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.CLS.XQ\",\"Closing a business (rank)\",\"This index averages the country's percentile rankings on: time, cost (% of estate) and recovery rate (cents on the dollar), giving equal weight to each topic.  For more information, visit http://www.doingbusiness.org/MethodologySurveys/.  \",\"Africa Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.CNS.CORR.ZS\",\"Corruption (% of managers surveyed ranking this as a major constraint)\",\"Is the share of senior managers who ranked corruption as a major or very severe constraint.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.CNS.CRIM.ZS\",\"Crime (% of managers surveyed ranking this as a major constraint)\",\"Is the share of senior managers who ranked crime, theft, and disorder as a major or very severe constraint. \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.CNS.ELEC.ZS\",\"Electricity (% of managers surveyed ranking this as a major constraint)\",\"Is the share of senior managers who ranked electricity as a major or severe constraint.\",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.CNS.FINA.ZS\",\"Finance (% of managers surveyed ranking this as a major constraint)\",\"Is the share of senior managers who ranked access to finance or cost of finance as a major or very severe constraint.\",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.CNS.GEN.ZS\",\"Firms that share or own their own generator (% of firms)\",\"Firms that share or own their own generator is the percentage of firms that responded “Yes” to the following question: “Does your establishment own or share a generator?” .  For survey data collected in 2006 and 2007, this indicator is computed for the ma\",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.CNS.IMP.DURS\",\"Days to Obtain Import License\",\"The average wait, in days, experienced to obtain operating license from the day the establishment applied for it to the day it was granted.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.CNS.INFM.ZS\",\"Practices Informal Sector (% of managers surveyed ranking this as a major constraint)\",\"Is the share of senior managers who ranked chose practices informal sector  as a major or very severe constraint.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.CNS.LAND.ZS\",\"Access to Land (% of managers surveyed ranking this as a major constraint)\",\"Is the share of senior managers who ranked access to land as a major or very severe constraint.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.CNS.LBRG.ZS\",\"Labor regulations (% of managers surveyed ranking this as a major constraint)\",\"Is the share of senior managers who ranked labor regulations as a major or severe constraint. \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.CNS.LBSK.ZS\",\"Labor skills (% of managers surveyed ranking this as a major constraint)\",\"Is the share of senior managers who ranked skills of available workers as a major or severe constraint.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.CNS.LEGL.ZS\",\"Courts (% of managers surveyed ranking this as a major constraint)\",\"Is the share of senior managers who ranked courts and dispute resolution systems as a major or very severe constraint.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.CNS.LIC.ZS\",\"Licenses & Permits (% of managers surveyed ranking this as a major constraint)\",\"Is the share of senior managers who ranked licenses and permits as a major or severe constraint.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.CNS.LOSS.ZS\",\"Losses Due to Theft, Robbery, Vandalism, and Arson Against the Firm (% of Sales)\",\"Estimated losses as a result of theft, robbery, vandalism or arson that occurred on establishment’s premises calculated as a percentage of annual sales.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.CNS.PER.DURS\",\"Days to Obtain Construction-related Permit\",\"Average wait, in days, experienced to obtain construction-related permit from the day the establishment applied for it to the day it was granted.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.CNS.POLC.ZS\",\"Policy uncertainty (% of managers surveyed ranking this as a major constraint)\",\"Is the share of senior managers who ranked economic and regulatory policy uncertainty as a major or very severe constraint. \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.CNS.TAXAD.ZS\",\"Tax administration (% of managers surveyed ranking this as a major constraint)\",\"Is the share of senior managers who ranked tax administration as a major or very severe constraint.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.CNS.TAXR.ZS\",\"Tax rates (% of managers surveyed ranking this as a major constraint)\",\"Is the share of senior managers who ranked tax rates as a major or very severe constraint.\",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.CNS.TRAD.ZS\",\"Customs & trade regulations (% of managers surveyed ranking this as a major constraint)\",\"Is the share of senior managers who ranked customs and trade regulations as a major or very severe constraint.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.CNS.TRSP.ZS\",\"Transportation (% of managers surveyed ranking this as a major constraint)\",\"Is the share of senior managers who ranked transport as a major or very severe constraint.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/). \"\n\"IC.CON.GIFT.ZS\",\"Expected to give gifts to get a Construction Permit (% of firms)\",\" Percentage of firms expected to give gifts or an informal payment to get a construction permit.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.CRD.INFO.XQ\",\"Depth of credit information index (0=low to 8=high)\",\"Depth of credit information index measures rules affecting the scope, accessibility, and quality of credit information available through public or private credit registries. The index ranges from 0 to 8, with higher values indicating the availability of more credit information, from either a public registry or a private bureau, to facilitate lending decisions.\",\"World Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.CRD.LGL.XQ\",\"Getting credit, legal rights index\",\"The strength of legal rights index measures the degree to which collateral and bankruptcy laws protect the rights of borrowers and lenders and thus facilitate lending.  For more information, visit http://www.doingbusiness.org/MethodologySurveys/.  \",\"Africa Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.CRD.PRVT.ZS\",\"Private credit bureau coverage (% of adults)\",\"Private credit bureau coverage reports the number of individuals or firms listed by a private credit bureau with current information on repayment history, unpaid debts, or credit outstanding. The number is expressed as a percentage of the adult population.\",\"World Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.CRD.PUBL.ZS\",\"Public credit registry coverage (% of adults)\",\"Public credit registry coverage reports the number of individuals and firms listed in a public credit registry with current information on repayment history, unpaid debts, or credit outstanding. The number is expressed as a percentage of the adult population.\",\"World Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.CRD.XQ\",\"Getting credit (rank)\",\"This index ranks economies from 1 to N (number of economies varies by year), with first place being the best.  This index averages (a) Legal Rights Index, which measures the degree to which collateral and bankruptcy laws facilitate lending, (b) a Credit Information Index, which measures rules affecting the scope, access, and quality of credit information, (c) public credit registry coverage, and  (d) private credit bureau coverage, giving equal weight to each topic.  For more information, visit http://www.doingbusiness.org/MethodologySurveys/.  \",\"Africa Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.CUS.DURS.EX\",\"Average time to clear exports through customs (days)\",\"Average time to clear exports through customs is the average number of days to clear direct exports through customs.\",\"World Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.CUS.DURS.IM\",\"Average time to clear imports from customs (days)\",\"\\\"Average time to clear imports through customs is the average number of days to clear imports through customs.\\n  For survey data collected in 2006 and 2007, this indicator is computed for the Manufacturing module only. \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.DCP.COST\",\"Cost to build a warehouse (% of income per capita)\",\"The cost for a business in the construction industry to build a standardized warehouse is recorded by this indicator and expressed as a percentage of the gross national income (GNI) per capita. Only official costs are recorded. The building code, information from local experts, and specific regulations and fee schedules are used as sources for costs.\\nSource: World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/DealingLicenses).\",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/DealingLicenses/).\"\n\"IC.DCP.PROC\",\"Procedures required to build a warehouse (number)\",\"The number of procedures required for a business in the construction industry to build a standardized warehouse is recorded by this indicator. Steps may include: (1) submitting relevant documents and obtaining necessary clearances, licenses, permits, and certificates; (2) completing required notifications and receiving necessary inspections; (3) obtaining utility connections for electricity, water, sewerage, and phone services; and (4) registering the warehouse after its completion. Interactions between company employees are not counted as procedures. \\nSource: World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/DealingLicenses).\",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/DealingLicenses/).\"\n\"IC.DCP.TIME\",\"Time required to build a warehouse (days)\",\"The time (in calendar days) required to build a warehouse—including obtaining necessary licenses and permits, completing required notifications and inspections, and obtaining utility connections—is measured by this indicator. Information is collected from experts in construction licensing. If a procedure can be accelerated legally for an additional cost, the fastest procedure is chosen. \\nSource: World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/DealingLicenses).\",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/DealingLicenses/).\"\n\"IC.DMKT.BRK.ZS\",\"Products shipped to supply domestic markets lost due to breakage or spoilage (%)\",\"Percentage of products shipped to supply domestic markets lost due to breakage or spoilage.\",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.DMKT.LOSS.ZS\",\"Products shipped to supply domestic markets lost due to theft (%)\",\"Losses of the products shipped to supply domestic markets while in transit because of theft (computed as percentage of the consignment values).  For survey data collected in 2006 and 2007, this indicator is computed for the Manufacturing module only.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/). \"\n\"IC.EC.COST\",\"Cost to enforce a contract (% of claim) \",\"This indicator records the cost to resolve a sale of goods dispute in local courts. It is expressed as a percentage of the claim, which is assumed to be equivalent to 200% of income per capita. No bribes are recorded. Three types of costs are recorded: court costs (including expert fees), enforcement costs, and average attorney fees. The data are collected through studying the codes of civil procedure and other court regulations as well as surveying local litigation lawyers (and, in a quarter of the countries, judges as well). Source: World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/EnforcingContracts).\",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/EnforcingContracts/).\"\n\"IC.EC.PROC\",\"Procedures required to enforce a contract (number)\",\"This indicator measures the number of procedures required to resolve a sale of goods dispute in local courts. It includes steps to file the case, to go through the trial and judgment, and to enforce the judgment. The data are collected through studying the codes of civil procedure and other court regulations as well as surveying local litigation lawyers (and, in a quarter of the countries, judges as well). Source: World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/EnforcingContracts).\",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/EnforcingContracts/).\"\n\"IC.EC.TIME\",\"Time required to enforce a contract (days)\",\"This indicator tracks the time required to resolve a sale of goods dispute in local courts. The number of calendar days is recorded from the moment a plaintiff files a lawsuit until payment is made. This includes both the days when actions take place and the waiting periods between. The data are collected through studying the codes of civil procedure and other court regulations as well as surveying local litigation lawyers (and, in a quarter of the countries, judges as well). \\nSource: World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/EnforcingContracts).\\n\",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/EnforcingContracts/).\"\n\"IC.ELC.DURS\",\"Delay in obtaining an electrical connection (days)\",\"Delay in obtaining an electrical connection is the average wait, in days, experienced to obtain an electrical connection from the day an establishment applies for it to the day it receives the service.\",\"World Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.ELC.GEN.ZS\",\"Electricity from Generator (%)\",\"Percentage of electricity supplied from a generator or generators that the establishment owned or shared.   For survey data collected in 2006 and 2007, this indicator is computed for the Manufacturing module only.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.ELC.GIFT.ZS\",\"Expected to give gifts to get an electrical connection (% of firms)\",\"Percentage of firms expected to give gifts or an informal payment to get an electrical connection.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.ELC.OUTG\",\"Power outages in firms in a typical month (number)\",\"Power outages are the average number of power outages that establishments experience in a typical month.\",\"World Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.ELC.OUTG.HR\",\"Average duration of power outages (hours)\",\"Average number of hours of power outages.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.ELC.TIME\",\"Time required to get electricity (days)\",\"Time required to get electricity is the number of days to obtain a permanent electricity connection. The measure captures the median duration that the electricity utility and experts indicate is necessary in practice, rather than required by law, to complete a procedure.\",\"World Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.ELEC.COST.PC.ZS\",\"Cost to get electricity connection (% of income per capita)\",\"The cost is recorded as a percentage of the economy’s income per capita. Costs are recorded exclusive of value added tax.\",\"Africa Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.ELEC.PROC\",\"Procedures required to get electricity (number)\",\"The number of procedures to obtain a permanent electricity connection. A procedure is defined as any interaction of the company employees or the company’s main electrician with external parties.\",\"Africa Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.ELEC.TIME\",\"Time required to get electricity (days)\",\"The number of days to obtain a permanent electricity connection. The measure captures the median duration that the electricity utility and experts indicate is necessary in practice, rather than required by law, to complete a procedure.\",\"Africa Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.ELEC.XQ\",\"Getting electricity (rank)\",\"This index averages the country's percentile rankings on the challenges required for a business to obtain a permanent electricity connection for a newly constructed warehouse. Included are the number of steps, time, and cost.\",\"Africa Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.EMPL.FTRNG.ZS\",\"Employees offered formal training (%)\",\"Percentage of workers offered formal training. For survey data collected in 2006 and 2007, this indicator is computed for the Manufacturing module only.\",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.EXP.COST.CD\",\"Cost to export (US$ per container)\",\"Cost measures the fees levied on a 20-foot container in U.S. dollars. All the fees associated with completing the procedures to export or import the goods are included. These include costs for documents, administrative fees for customs clearance and technical control, customs broker fees, terminal handling charges and inland transport. The cost measure does not include tariffs or trade taxes. Only official costs are recorded. Several assumptions are made for the business surveyed: Has 60 or more employees; Is located in the country's most populous city; Is a private, limited liability company. It does not operate within an export processing zone or an industrial estate with special export or import privileges; Is domestically owned with no foreign ownership; Exports more than 10% of its sales. Assumptions about the traded goods: The traded product travels in a dry-cargo, 20-foot, full container load. The product: Is not hazardous nor does it include military items; Does not require refrigeration or any other special environment; Does not require any special phytosanitary or environmental safety standards other than accepted international standards.\",\"World Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.EXP.COST.EXP\",\"Trade: Cost to export (US$ per container)\",\"This indicator calculates the cost of exporting a standardized shipment of goods by ocean transport, expressed in U.S. dollars per container. Local freight forwarders, shipping lines, customs brokers, port officials, and banks provide information on the cost of each export procedure.\\nSource: World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/TradingAcrossBorders/).\",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/TradingAcrossBorders/).\"\n\"IC.EXP.COST.IMP\",\"Trade: Cost to import (US$ per container)\",\"This indicator calculates the cost of importing a standardized shipment of goods by ocean transport—from the vessel’s arrival at a port of entry to the cargo’s delivery to a warehouse—expressed in U.S. dollars per container. Local freight forwarders, shipping lines, customs brokers, port officials, and banks provide information on the cost of each import procedure.\\nSource: World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/TradingAcrossBorders/).\",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/TradingAcrossBorders/).\"\n\"IC.EXP.DOCS\",\"Documents to export (number)\",\"All documents required per shipment to export goods are recorded. It is assumed that the contract has already been agreed upon and signed by both parties. Documents required for clearance by government ministries, customs authorities, port and container terminal authorities, health and technical control agencies and banks are taken into account. Since payment is by letter of credit, all documents required by banks for the issuance or securing of a letter of credit are also taken into account. Documents that are renewed annually and that do not require renewal per shipment (for example, an annual tax clearance certificate) are not included.\",\"World Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.EXP.DOCS.IMP\",\"Trade: Documents to import (number)\",\"All documents required to import a standardized shipment of goods by ocean transport—from the vessel’s arrival at a port of entry to the cargo’s delivery to a warehouse—are recorded by this indicator. Local freight forwarders, shipping lines, customs brokers, port officials, and banks provide information on required documents.\\nSource: World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/TradingAcrossBorders/).\",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/TradingAcrossBorders/).\"\n\"IC.EXP.DURS\",\"Time to export (days)\",\"Time to export is the time necessary to comply with all procedures required to export goods. Time is recorded in calendar days. The time calculation for a procedure starts from the moment it is initiated and runs until it is completed. If a procedure can be accelerated for an additional cost, the fastest legal procedure is chosen. It is assumed that neither the exporter nor the importer wastes time and that each commits to completing each remaining procedure without delay. Procedures that can be completed in parallel are measured as simultaneous. The waiting time between procedures--for example, during unloading of the cargo--is included in the measure.\",\"World Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.EXP.TIME.EXP\",\"Trade: Time to export (day)\",\"This indicator calculates the average number of days it takes to comply with all procedures required to export goods. Local freight forwarders, shipping lines, customs brokers, port officials, and banks provide information on the time to complete each procedure.\\nSource: World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/TradingAcrossBorders/).\",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/TradingAcrossBorders/).\"\n\"IC.EXP.TIME.IMP\",\"Trade: Time to import (days)\",\"This indicator calculates the average number of days it takes to comply with all procedures required to import goods—from the vessel’s arrival at a port of entry to the cargo’s delivery to a warehouse.  Local freight forwarders, shipping lines, customs brokers, port officials, and banks provide information on the time to complete each procedure.\\nSource: World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/TradingAcrossBorders/).\",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/TradingAcrossBorders/).\"\n\"IC.FRM.ACC.ZS\",\"Firms with a Checking or Savings Account (% of firms)\",\"Percentage of firms with a checking and/or savings account.\",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.AGE.YR\",\"Age of firm (years)\",\"Age of the firm based on the year in which the firm began operations.\",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.AUDIT.ZS\",\"Firms with annual Financial Statement reviewed by External Auditor (% of firms)\",\"Percentage of firms with their annual financial statement reviewed by an external auditor.\",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.BKWC.ZS\",\"Firms using banks to finance working capital (% of firms) \",\"Firms using banks to finance working capital are the percentage of firms using bank loans to finance working capital.\",\"World Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.BNKS.ZS\",\"Firms using banks to finance investment (% of firms)\",\"Firms using banks to finance investment are the percentage of firms using banks to finance investments.\",\"World Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.BRIB.ZS\",\"Bribery incidence (% of firms experiencing at least one bribe payment request)\",\"Bribery incidence is the percentage of firms experiencing at least one bribe payment request across 6 public transactions dealing with utilities access, permits, licenses, and taxes.\",\"World Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.CMPU.ZS\",\"Firms competing against unregistered firms (% of firms)\",\"Firms competing against unregistered firms are the percentage of firms competing against unregistered or informal firms.\",\"World Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.COMP.ZS\",\"Firms identifying practices of competitors in the Informal Sector as a major constraint (% of firms)\",\"Percentage of firms identifying practices of competitors in the informal sector as a \\\"major\\\" or \\\"very severe\\\" obstacle.\",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.COR.ZS\",\"Firms identifying corruption as a major constraint (% of firms)\",\"Percentage of firms identifying corruption as a \\\"major\\\" or \\\"very severe\\\" obstacle.\",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.CORR.CORR1\",\"Percent of firms expected to give gifts in meetings with tax officials\",\"Percent of firms expected to give gifts or an informal payment in meetings with tax officials.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/corruption).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/corruption).\"\n\"IC.FRM.CORR.CORR10\",\"Percent of firms expected to give gifts to get an operating license\",\"Percent of firms expected to give gifts or an informal payment to get an operating license.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/corruption).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/corruption).\"\n\"IC.FRM.CORR.CORR11\",\"Percent of firms identifying corruption as a major constraint\",\"Percent of firms identifying corruption as a major constraint. The computation of the indicator is based on the rating of the obstacle as a potential constraint to the current operations of the establishment.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/corruption).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/corruption).\"\n\"IC.FRM.CORR.CORR2\",\"Percent of firms expected to give gifts to secure government contract\",\"Percent of establishments that consider that firms with characteristics similar to theirs are making informal payments or giving gifts to public officials to secure government contract.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/corruption).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/corruption).\"\n\"IC.FRM.CORR.CORR3\",\"Value of gift expected to secure a government contract (% of contract value)\",\"Percentage of the contract value expected as a gift to secure a government contract. Only firms that have confirmed that they have secured or attempted to secure a government contract in the last 12 months were required to answer this question.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/corruption).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/corruption).\"\n\"IC.FRM.CORR.CORR4\",\"Percent of firms expected to give gifts to public officials \\\"to get things done\\\" \",\"Percent of establishments that consider that firms with characteristics similar to theirs are making informal payments or giving gifts to public officials to \\\"get things done” with regard to customs, taxes, licenses, regulations, services, etc.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/corruption).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/corruption).\"\n\"IC.FRM.CORR.CORR6\",\"Percent of firms expected to give gifts to get an electrical connection\",\"Percent of firms expected to give gifts or an informal payment to get an electrical connection.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/corruption).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/corruption).\"\n\"IC.FRM.CORR.CORR7\",\"Percent of firms expected to give gifts to get a water connection\",\"Percent of firms expected to give gifts or an informal payment to get a water connection.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/corruption).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/corruption).\"\n\"IC.FRM.CORR.CORR8\",\"Percent of firms expected to give gifts to get a construction permit\",\"Percent of firms expected to give gifts or an informal payment to get a construction permit.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/corruption).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/corruption).\"\n\"IC.FRM.CORR.CORR9\",\"Percent of firms expected to give gifts to get an import license \",\"Percent of firms expected to give gifts or an informal payment to get an import license.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/corruption).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/corruption).\"\n\"IC.FRM.CORR.CRIME9\",\"Percent of firms identifying the courts system as a major constraint                         \",\"Percent of firms identifying the courts system as a major constraint. The computation of the indicator is based on the rating of the obstacle as a potential constraint to the current operations of the establishment.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/corruption).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/corruption).\"\n\"IC.FRM.CORR.GRAFT2\",\"Bribery index (% of gift or informal payment requests during public transactions)\",\"Bribery index is the percentage of gift or informal payment requests during 6 infrastructure, permits and licences, and tax transactions.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/corruption).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/corruption).\"\n\"IC.FRM.CORR.ZS\",\"Informal payments to public officials (% of firms)\",\"Informal payments to public officials are the percentage of firms expected to make informal payments to public officials to \\\"get things done\\\" with regard to customs, taxes, licenses, regulations, services, and the like.\",\"World Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.COST.PC.ZS\",\"Dealing with construction permits, cost (% of income per capita)\",\"Cost is recorded as a percentage of the economy’s income per capita. Only official costs are recorded. All the fees associated with completing the procedures to legally build a warehouse are recorded, including those associated with obtaining land use approvals and preconstruction design clearances; receiving inspections before, during and after construction; getting utility connections; and registering the warehouse property. Nonrecurring taxes required for the completion of the warehouse project also are recorded. The building code, information from local experts and specific regulations and fee schedules are used as sources for costs. If several local partners provide different estimates, the median reported value is used.\",\"Africa Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.FRM.CRD.ZS\",\"Firms with Line of Credit or Loans from Financial Institutions (% of firms)\",\"Percentage of firms with bank loans or line of credit.\",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.CRIM.ZS\",\"Losses due to theft, robbery, vandalism, and arson (% sales)\",\"Losses due to theft, robbery, vandalism, and arson are the estimated losses from those causes that occurred on establishments' premises as a percentage of annual sales.\",\"World Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.CRM.CRIME1\",\"Percent of firms paying for security\",\"Percent of firms paying for security, for example equipment, personnel, or professional security services.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/crime).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/crime).\"\n\"IC.FRM.CRM.CRIME2\",\"Security costs (% of annual sales)\",\"Security costs, for example equipment, personnel, or professional security services, as a percentage of total annual sales.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/crime).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/crime).\"\n\"IC.FRM.CRM.CRIME2_C\",\"If the establishment pays for security, average security costs (% of annual sales)\",\"If the establishment pays for security, for example equipment, personnel, or professional security services, the average security costs as a percentage of total annual sales.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/crime).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/crime).\"\n\"IC.FRM.CRM.CRIME3\",\"Losses due to theft and vandalism against the firm (% of annual sales)\",\"Losses as a result of theft, robbery, vandalism or arson that occurred on the establishment’s premises calculated as a percentage of annual sales.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/crime).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/crime).\"\n\"IC.FRM.CRM.CRIME3_C\",\"If there were losses, average losses due to theft and vandalism (% of annual sales)\",\"If there were losses, average losses as a result of theft, robbery, vandalism or arson that occurred on the establishment’s premises calculated as a percentage of annual sales.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/crime).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/crime).\"\n\"IC.FRM.CRM.CRIME5\",\"Products shipped to supply domestic markets that were lost due to theft (% of product value)\",\"Products shipped to supply domestic markets that were lost due to theft, as a percentage of total product value.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/crime).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/crime).\"\n\"IC.FRM.CRM.CRIME8\",\"Percent of firms identifying crime, theft and disorder as a major constraint              \",\"Percent of firms identifying crime, theft and disorder as a major constraint. The computation of the indicator is based on the rating of the obstacle as a potential constraint to the current operations of the establishment.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/crime).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/crime).\"\n\"IC.FRM.CRT.ZS\",\"Believing the court system is fair, impartial and uncorrupted (% of firms identifying this as a major contraint)\",\"Percentage of firms believing the court system is fair, impartial and uncorrupted as a major constraint. The computation of the indicator is based on the rating of the obstacle as a potential constraint to the current operations of the establishment.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.CUS.ZS\",\"Firms that trade identifying customs & trade regulations as a major constraint (% of firms)\",\"Percentage of firms that trade identifying customs & trade regulations as a major constraint. The computation of the indicator is based on the rating of the obstacle as a potential constraint to the current operations of the establishment.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.DURS\",\"Time required to obtain an operating license (days)\",\"Time required to obtain operating license is the average wait to obtain an operating license from the day the establishment applied for it to the day it was granted.\",\"World Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.ELEC.ZS\",\"Electricity (% of firms identifying this as a major constraint)\",\"Percentage of firms identifying corruption as a major constraint. The computation of the indicator is based on the rating of the obstacle as a potential constraint to the current operations of the establishment. \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.EMAIL.ZS\",\"Firms using email to communicate with clients/suppliers (% of firms)\",\"Percentage of firms using the email for communication with clients or suppliers.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.EMPL.PERM\",\"Average number of permanent, full time employees\",\"Average number of permanent, full time workers.\",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.EMPL.SKILL\",\"Average number of skilled production employees\",\"Average number of skilled production workers\",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.EMPL.TEMP\",\"Average number of seasonal/temporary, full-time employees\",\"Average number of temporary workers.\",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.EMPL.UNSKILL\",\"Average number of unskilled production workers\",\"Average number of unskilled production workers.  For survey data collected in 2006 and 2007, this indicator is computed for the Manufacturing module only.\",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.EXP.ZS\",\"Exporter firms (% of firms)\",\"Percentage of firms that export directly or indirectly.\",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.FCHAR.CAR1\",\"Age of the establishment (years)\",\"Age of the establishment in years.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\"\n\"IC.FRM.FCHAR.CAR2\",\"Proportion of private domestic ownership in a firm (%)\",\"Percentage of private domestic ownership in a firm.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\"\n\"IC.FRM.FCHAR.CAR3\",\"Proportion of private foreign ownership in a firm (%)\",\"Percentage of private foreign ownership in a firm.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\"\n\"IC.FRM.FCHAR.CAR4\",\"Proportion of government/state ownership in a firm (%)\",\"Percentage of government/state ownership in a firm.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\"\n\"IC.FRM.FCHAR.CAR6\",\"Proportion of a firm held by the largest owner(s) (%)\",\"Percentage of a firm held by the largest owner(s).   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\"\n\"IC.FRM.FCHAR.LFORM1\",\"Percent of firms with legal status of publicly listed company\",\"Percent of firms with legal status of publicly listed company   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\"\n\"IC.FRM.FCHAR.LFORM2\",\"Percent of firms with legal status of privately held Limited Liability Company \",\"Percent of firms with legal status of privately held Limited Liability Company    Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\"\n\"IC.FRM.FCHAR.LFORM3\",\"Percent of firms with legal status of Sole Proprietorship\",\"Percent of firms with legal status of Sole Proprietorship   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\"\n\"IC.FRM.FCHAR.LFORM4\",\"Percent of firms with legal status of Partnership\",\"Percent of firms with legal status of Partnership   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\"\n\"IC.FRM.FCHAR.LFORM5\",\"Percent of firms with legal status of Limited Partnership\",\"Percent of firms with legal status of Limited Partnership   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\"\n\"IC.FRM.FEMM.ZS\",\"Firms with female top manager (% of firms)\",\"Firms with female top manager refers to the percentage of firms in the private sector who have females as top managers. Top manager refers to the highest ranking manager or CEO of the establishment. This person may be the owner if he/she works as the manager of the firm. The results are based on surveys of more than 100,000 private firms.\",\"World Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.FEMO.ZS\",\"Firms with female participation in ownership (% of firms)\",\"Firms with female participation in ownership are the percentage of firms with a woman among the principal owners.\",\"World Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.FEMW.ZS\",\"Full time female workers (%)\",\"Percentage of full-time workers that are female.\",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.FIN.FIN1\",\"Proportion of investment financed internally (%)\",\"Proportion of purchases of fixed assets that was financed from internal funds/retained earnings.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/finance).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/finance).\"\n\"IC.FRM.FIN.FIN10\",\"Value of collateral needed for a loan (% of the loan amount)\",\"Value of collateral needed for a loan or line of credit as a percentage of the loan value or the value of the line of credit.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/finance).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/finance).\"\n\"IC.FRM.FIN.FIN11\",\"Proportion of loans requiring collateral (%)\",\"Proportion of loans requiring collateral in order to get the financing.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/finance).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/finance).\"\n\"IC.FRM.FIN.FIN12\",\"Percent of firms using banks to finance investments\",\"Percent of firms using banks to finance purchases of fixed assets.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/finance).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/finance).\"\n\"IC.FRM.FIN.FIN13\",\"Percent of firms using banks to finance working capital\",\"Percent of firms using banks to finance working capital.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/finance).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/finance).\"\n\"IC.FRM.FIN.FIN14\",\"Percent of firms with a bank loan/line of credit\",\"Percent of firms with a bank loan/line of credit.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/finance).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/finance).\"\n\"IC.FRM.FIN.FIN15\",\"Percent of firms with a checking or savings account\",\"Percent of firms with a checking or savings account.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/finance).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/finance).\"\n\"IC.FRM.FIN.FIN16\",\"Percent of firms identifying access to finance as a major constraint\",\"Percent of firms identifying access to finance as a major constraint. The computation of the indicator is based on the rating of the obstacle as a potential constraint to the current operations of the establishment.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/finance).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/finance).\"\n\"IC.FRM.FIN.FIN18\",\"Proportion of sales sold on credit (%)\",\"Percentage of total annual sales of goods or services sold on credit.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/finance).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/finance).\"\n\"IC.FRM.FIN.FIN2\",\"Proportion of investment financed by banks (%)\",\"Proportion of purchases of fixed assets that was financed from bank loans.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/finance).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/finance).\"\n\"IC.FRM.FIN.FIN20\",\"Percent of firms not needing a loan\",\"Percent of firms that did not apply for a loan in the last fiscal year because they did not need a loan.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/finance).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/finance).\"\n\"IC.FRM.FIN.FIN21\",\"Percent of firms whose recent loan application was rejected\",\"Percent of firms whose recent loan application was rejected.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/finance).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/finance).\"\n\"IC.FRM.FIN.FIN3\",\"Proportion of investment financed by supplier credit (%)\",\"Proportion of purchases of fixed assets that was financed by supplier credit.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/finance).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/finance).\"\n\"IC.FRM.FIN.FIN4\",\"Proportion of investment financed by equity or stock sales (%)\",\"Proportion of purchases of fixed assets that was financed by owners’ contribution or issue of new equity shares.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/finance).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/finance).\"\n\"IC.FRM.FIN.FIN5\",\"Proportion of investment financed by other financing (%)\",\"Proportion of purchases of fixed assets that was financed by other sources, i.e. moneylenders, friends, relatives, bonds, etc.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/finance).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/finance).\"\n\"IC.FRM.FIN.FIN7\",\"Proportion of working capital financed by banks (%)\",\"Proportion of working capital that was financed from bank loans.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/finance).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/finance).\"\n\"IC.FRM.FIN.FIN8\",\"Proportion of working capital financed  by supplier credit (%)\",\"Proportion of working capital that was financed by supplier credit.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/finance).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/finance).\"\n\"IC.FRM.FIN.FIN9\",\"Proportion of working capital financed by other financing (%)\",\"Proportion of working capital that was financed by other sources, i.e. moneylenders, friends, relatives, bonds, etc.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/finance).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/finance).\"\n\"IC.FRM.FINA.ZS\",\"Access to finance (% of firms identifying this as a major constraint)\",\"Percentage of firms identifying access/cost of finance as a major constraint. The computation of the indicator is based on the rating of the obstacle as a potential constraint to the current operations of the establishment.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.FINPUT.ZS\",\"Firms that use material inputs and/or supplies of foreign origin\",\"Percentage of firms that use material inputs and/or supplies of foreign origin.\",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.FREG.ZS\",\"Firms formally registered when operations started (% of firms)\",\"Firms formally registered when operations started are the percentage of firms formally registered when they started operations in the country.\",\"World Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.GEN.GEND1\",\"Percent of firms with female participation in ownership\",\"Percent of firms with female participation in ownership.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/gender).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/gender).\"\n\"IC.FRM.GEN.GEND2\",\"Proportion of permanent full-time workers that are female (%)\",\"Percentage of permanent full-time workers that are female.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/gender).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/gender).\"\n\"IC.FRM.GEN.GEND3\",\"Proportion of permanent full-time non-production workers that are female (%)\",\"Percentage of permanent full-time non-production workers that are female.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/gender).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/gender).\"\n\"IC.FRM.GEN.GEND4\",\"Percent of firms with a female top manager\",\"Percent of firms with a female top manager.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/gender).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/gender).\"\n\"IC.FRM.INFM.ZS\",\"Firms that do not report all sales for tax purposes (% of firms)\",\"Firms that do not report all sales for tax purposes are the percentage of firms that expressed that a typical firm reports less than 100 percent of sales for tax purposes; such firms are termed \\\"informal firms.\\\"\",\"World Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.INFOR.INFOR1\",\"Percent of firms competing against unregistered or informal firms\",\"Percent of firms competing against unregistered or informal firms.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/informality).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/informality).\"\n\"IC.FRM.INFOR.INFOR2\",\"Percent of firms identifying practices of competitors in the informal sector as a major constraint  \",\"Percent of firms identifying practices of competitors in the informal sector as a major constraint. The computation of the indicator is based on the rating of the obstacle as a potential constraint to the current operations of the establishment.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/informality).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/informality).\"\n\"IC.FRM.INFOR.INFOR4\",\"Percent of firms formally registered when they started operations in the country\",\"Percent of firms formally registered when they started operations in the country.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/informality).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/informality).\"\n\"IC.FRM.INFOR.INFOR5\",\"Number of years firm operated without formal registration\",\"Number of years firm operated without formal registration. This indicator is computed only for the firms that did not have a formal registration when they started their operations in the country.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/informality).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/informality).\"\n\"IC.FRM.INFRA.IN1\",\"Days to obtain an electrical connection (upon application)\",\"The wait, in days, experienced to obtain electrical connection from the day this establishment applied for it to the day it received the service.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/infrastructure).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/infrastructure).\"\n\"IC.FRM.INFRA.IN10\",\"Proportion of electricity from a generator (%)\",\"Percentage of electricity supplied from a generator(s) that the establishment owned or shared.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/infrastructure).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/infrastructure).\"\n\"IC.FRM.INFRA.IN10_C\",\"If a generator is used, average proportion of electricity from a generator (%)\",\"If a generator is used, the average proportion of electricity from a generator.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/infrastructure).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/infrastructure).\"\n\"IC.FRM.INFRA.IN11\",\"Percent of firms identifying transportation as a major constraint\",\"Percent of firms identifying transportation as a major constraint. The computation of the indicator is based on the rating of the obstacle as a potential constraint to the current operations of the establishment.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/infrastructure).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/infrastructure).\"\n\"IC.FRM.INFRA.IN12\",\"Percent of firms identifying electricity as a major constraint\",\"Percent of firms identifying electricity as a major constraint. The computation of the indicator is based on the rating of the obstacle as a potential constraint to the current operations of the establishment.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/infrastructure).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/infrastructure).\"\n\"IC.FRM.INFRA.IN14\",\"Proportion of products lost to breakage or spoilage during shipping to domestic markets (%)\",\"Products lost to breakage or spoilage during shipping to domestic markets, as a percentage of total product value.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/infrastructure).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/infrastructure).\"\n\"IC.FRM.INFRA.IN2\",\"Number of electrical outages in a typical month\",\"Number of power outages in a typical month.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/infrastructure).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/infrastructure).\"\n\"IC.FRM.INFRA.IN3\",\"Duration of a typical electrical outage (hours)\",\"Duration of a typical power outage, in hours.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/infrastructure).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/infrastructure).\"\n\"IC.FRM.INFRA.IN3_C\",\"If there were outages, average duration of a typical electrical outage (hours)\",\"If there were outages, duration of a typical power outage, in hours.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/infrastructure).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/infrastructure).\"\n\"IC.FRM.INFRA.IN4\",\"Losses due to electrical outages (% of annual sales)\",\"Losses due to electrical outages, as percentage of total annual sales.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/infrastructure).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/infrastructure).\"\n\"IC.FRM.INFRA.IN6\",\"Number of water insufficiencies in a typical month\",\"Number of water shortages in a typical month.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/infrastructure).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/infrastructure).\"\n\"IC.FRM.INFRA.IN9\",\"Percent of firms owning or sharing  a generator\",\"Percent of firms owning or sharing a generator.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/infrastructure).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/infrastructure).\"\n\"IC.FRM.INFRM.ZS\",\"Services firms competing against unregistered or informal firms (% of service firms)\",\"Percentage of services firms competing against unregistered or informal firms.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/). \"\n\"IC.FRM.INNOV.T1\",\"Percent of firms with an internationally-recognized quality certification\",\"Percent of firms having an internationally-recognized quality certification, i.e. ISO 9000, 9002 or 14000.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/innovation-and-technology).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/innovation-and-technology).\"\n\"IC.FRM.INNOV.T2\",\"Percent of firms with an annual financial statement reviewed by external auditors \",\"Percent of firms with an annual financial statement reviewed by external auditors.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/innovation-and-technology).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/innovation-and-technology).\"\n\"IC.FRM.INNOV.T3\",\"Capacity utilization (%)\",\"Capacity utilization based on the comparison of the current output with the maximum output possible using all the resources available.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/innovation-and-technology).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/innovation-and-technology).\"\n\"IC.FRM.INNOV.T4\",\"Percent of firms using technology licensed from foreign companies\",\"Percent of firms using technology licensed from foreign companies.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/innovation-and-technology).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/innovation-and-technology).\"\n\"IC.FRM.INNOV.T5\",\"Percent of firms having their own Web site\",\"Percent of firms having their own Web site.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/innovation-and-technology).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/innovation-and-technology).\"\n\"IC.FRM.INNOV.T6\",\"Percent of firms using e-mail to interact with clients/suppliers\",\"Percent of firms using e-mail to interact with clients/suppliers.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/innovation-and-technology).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/innovation-and-technology).\"\n\"IC.FRM.ISOC.ZS\",\"Internationally-recognized quality certification (% of firms)\",\"Internationally-recognized quality certification is the percentage of firms having an internationally-recognized quality certification, i.e., International Organization for Standardization (ISO) 9000, 9002 or 14000.\",\"World Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.LBRG.ZS\",\"Labor regulations (% of firms identifying this as a major constraint)\",\"Percentage of firms identifying labor regulations as a major constraint. The computation of the indicator is based on the rating of the obstacle as a potential constraint to the current operations of the establishment.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.LBSK.ZS\",\"Labor skill level (% of firms identifying this as a major constraint)\",\"Percentage of firms identifying labor skills as a major constraint. The computation of the indicator is based on the rating of the obstacle as a potential constraint to the current operations of the establishment.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.LIC.ZS\",\"Business Licensing and Permits (% of firms Identifying this as major constraint)\",\"Percentage of firms identifying business licensing and permits as major constraint. The computation of the indicator is based on the rating of the obstacle as a potential constraint to the current operations of the establishment.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.MGR.EXP\",\"Years of experience of the Top Manager working in the firm's sector\",\"Years of experience of the top manager working in the firm's sector.\",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.OBS.OBST1\",\"Percent of firms choosing access to finance as their biggest obstacle\",\"Percent of firms that chose access to finance as the biggest obstacle faced by this establishment.  (Survey respondents were presented with a list of 15 potential obstacles.)   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\"\n\"IC.FRM.OBS.OBST10\",\"Percent of firms choosing labor regulations as their biggest obstacle\",\"Percent of firms that chose labor regulations as the biggest obstacle faced by this establishment.  (Survey respondents were presented with a list of 15 potential obstacles.)   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\"\n\"IC.FRM.OBS.OBST11\",\"Percent of firms choosing political instability as their biggest obstacle\",\"Percent of firms that chose political instability as the biggest obstacle faced by this establishment.  (Survey respondents were presented with a list of 15 potential obstacles.)   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\"\n\"IC.FRM.OBS.OBST12\",\"Percent of firms choosing practices of the informal sector as their biggest obstacle\",\"Percent of firms that chose practices of the informal sector as the biggest obstacle faced by this establishment.  (Survey respondents were presented with a list of 15 potential obstacles.)   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\"\n\"IC.FRM.OBS.OBST13\",\"Percent of firms choosing tax administration as their biggest obstacle\",\"Percent of firms that chose tax administration as the biggest obstacle faced by this establishment.  (Survey respondents were presented with a list of 15 potential obstacles.)   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\"\n\"IC.FRM.OBS.OBST14\",\"Percent of firms choosing tax rates as their biggest obstacle\",\"Percent of firms that chose tax rates as the biggest obstacle faced by this establishment.  (Survey respondents were presented with a list of 15 potential obstacles.)   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\"\n\"IC.FRM.OBS.OBST15\",\"Percent of firms choosing transportation as their biggest obstacle\",\"Percent of firms that chose transportation as the biggest obstacle faced by this establishment.  (Survey respondents were presented with a list of 15 potential obstacles.)   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\"\n\"IC.FRM.OBS.OBST2\",\"Percent of firms choosing access to land as their biggest obstacle\",\"Percent of firms that chose access to land as the biggest obstacle faced by this establishment.  (Survey respondents were presented with a list of 15 potential obstacles.)   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\"\n\"IC.FRM.OBS.OBST3\",\"Percent of firms choosing business licensing and permits as their biggest obstacle\",\"Percent of firms that chose business licensing and permits as the biggest obstacle faced by this establishment.  (Survey respondents were presented with a list of 15 potential obstacles.)   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\"\n\"IC.FRM.OBS.OBST4\",\"Percent of firms choosing corruption as their biggest obstacle\",\"Percent of firms that chose corruption as the biggest obstacle faced by this establishment.  (Survey respondents were presented with a list of 15 potential obstacles.)   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\"\n\"IC.FRM.OBS.OBST5\",\"Percent of firms choosing courts as their biggest obstacle\",\"Percent of firms that chose courts as the biggest obstacle faced by this establishment.  (Survey respondents were presented with a list of 15 potential obstacles.)   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\"\n\"IC.FRM.OBS.OBST6\",\"Percent of firms choosing crime, theft and disorder as their biggest obstacle\",\"Percent of firms that chose crime, theft and disorder as the biggest obstacle faced by this establishment.  (Survey respondents were presented with a list of 15 potential obstacles.)   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\"\n\"IC.FRM.OBS.OBST7\",\"Percent of firms choosing customs and trade regulations as their biggest obstacle\",\"Percent of firms that chose customs and trade regulations as the biggest obstacle faced by this establishment.  (Survey respondents were presented with a list of 15 potential obstacles.)   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\"\n\"IC.FRM.OBS.OBST8\",\"Percent of firms choosing electricity as their biggest obstacle\",\"Percent of firms that chose electricity as the biggest obstacle faced by this establishment.  (Survey respondents were presented with a list of 15 potential obstacles.)   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\"\n\"IC.FRM.OBS.OBST9\",\"Percent of firms choosing inadequately educated workforce as their biggest obstacle\",\"Percent of firms that chose inadequately educated workforce as the biggest obstacle faced by this establishment.  (Survey respondents were presented with a list of 15 potential obstacles.)   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/CustomQuery).\"\n\"IC.FRM.OUTG.ZS\",\"Value lost due to electrical outages (% of sales)\",\"Value lost due to electrical outages is the percentage of sales lost due to power outages.\",\"World Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.OWN.GOV.ZS\",\"Enterprise ownership - Government/state (%)\",\"Percentage of government or state ownership in private firms.  The ownership variables represent the average ownership composition within a firm. These variables do not represent the ownership composition across firms. \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.OWN.PFOR.ZS\",\"Enterprise ownership - Private Foreign (%)\",\"Percentage of foreign ownership in private firms.  The ownership variables represent the average ownership composition within a firm. These variables do not represent the ownership composition across firms.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.OWN.PLOC.ZS\",\"Enterprise ownership - Private Domestic (%)\",\"Percentage of domestic ownership in private firms. The ownership variables represent the average ownership composition within a firm. These variables do not represent the ownership composition across firms.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.OWN.ZS\",\"Largest shareholder ownership (%)\",\"Percentage held by largest owner or owners\",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.PROC\",\"Dealing with construction, procedures (number)\",\"A procedure is any interaction of the company’s employees or managers with external parties, including government agencies, notaries, the land registry, the cadastre, utility com\\uadpanies, public and private inspectors and technical experts apart from in-house architects and engineers. Interactions between company employees, such as development of the warehouse plans and inspections conducted by employees, are not counted as procedures. Procedures that the company undergoes to connect to electricity, water, sewerage and phone services are included. All procedures that are legally or in practice required for building a warehouse are counted, even if they may be avoided in exceptional cases.  For more information, visit http://www.doingbusiness.org/MethodologySurveys/.  \",\"Africa Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.FRM.REG.BUS1\",\"Days to obtain an import license\",\"The wait, in days, experienced to obtain an import license from the day the establishment applied for it to the day it was granted.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/regulations-and-taxes).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/regulations-and-taxes).\"\n\"IC.FRM.REG.BUS2\",\"Days to obtain an operating license\",\"The wait, in days, experienced to obtain an operating license from the day the establishment applied for it to the day it was granted.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/regulations-and-taxes).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/regulations-and-taxes).\"\n\"IC.FRM.REG.BUS3\",\"Days to obtain a construction-related permit\",\"The wait, in days, experienced to obtain a construction-related permit from the day the establishment applied for it to the day it was granted.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/regulations-and-taxes).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/regulations-and-taxes).\"\n\"IC.FRM.REG.BUS5\",\"Percent of firms identifying business licensing and permits as a major constraint\",\"Percent of firms identifying business licensing and permits as a major constraint. The computation of the indicator is based on the rating of the obstacle as a potential constraint to the current operations of the establishment.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/regulations-and-taxes).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/regulations-and-taxes).\"\n\"IC.FRM.REG.REG1\",\"Senior management time spent dealing with the requirements of government regulation (%)\",\"Proportion of senior management’s time, in a typical week, that is spent dealing with the requirements imposed by government regulations (e.g. taxes, customs, labor regulations, licensing and registration, including dealings with officials, and completing forms).   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/regulations-and-taxes).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/regulations-and-taxes).\"\n\"IC.FRM.REG.REG2\",\"Number of visits or required meetings with tax officials\",\"Number of visits or required meetings with tax officials.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/regulations-and-taxes).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/regulations-and-taxes).\"\n\"IC.FRM.REG.REG2_C\",\"If there were visits, average number of visits or required meetings with tax officials\",\"If there were visits, average number of visits or required meetings with tax officials.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/regulations-and-taxes).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/regulations-and-taxes).\"\n\"IC.FRM.REG.REG4\",\"Percent of firms identifying tax rates as a major constraint\",\"Percent of firms identifying tax rates as a major constraint. The computation of the indicator is based on the rating of the obstacle as a potential constraint to the current operations of the establishment.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/regulations-and-taxes).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/regulations-and-taxes).\"\n\"IC.FRM.REG.REG5\",\"Percent of firms identifying tax administration as a major constraint\",\"Percent of firms identifying tax administration as a major constraint. The computation of the indicator is based on the rating of the obstacle as a potential constraint to the current operations of the establishment.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/regulations-and-taxes).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/regulations-and-taxes).\"\n\"IC.FRM.REG.ZS\",\"Firms Formally Registered when Started Operations in the Country (% of firms)\",\"Percentage of firms formally registered when they started operations in the country.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/). \"\n\"IC.FRM.SEC.ZS\",\"Firms Paying for Security (% of firms)\",\"Percentage of firms paying for security, for example equipment, personnel, or professional security services.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/)\"\n\"IC.FRM.SECR.ZS\",\"Security costs (% of sales)\",\"Security costs is the average security costs as a percentage of total annual sales.\",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.TAXAD.ZS\",\"Tax Administration (% of firms identifying this as major constraint)\",\"Percentage of firms identifying tax administration as a major constraint. The computation of the indicator is based on the rating of the obstacle as a potential constraint to the current operations of the establishment.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.TAXR.ZS\",\"Tax rates (% of firms identifying this as major constraint)\",\"Percentage of firms identifying tax rates as a major constraint. The computation of the indicator is based on the rating of the obstacle as a potential constraint to the current operations of the establishment.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.TECH.ZS\",\"Firms using technology licensed from foreign companies (% of firms)\",\"Percentage of firms using technology licensed from foreign companies. For survey data collected in 2006 and 2007, this indicator is computed for the Manufacturing module only.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.TIME\",\"Time required to deal with construction permits (days)\",\"The total number of days required to build a warehouse. The measure captures the median duration that local experts indicate is necessary to complete a procedure in practice.\",\"Africa Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.FRM.TRD.TR1\",\"Days to clear direct exports through customs\",\"Number of days to clear direct exports through customs.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/trade).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/trade).\"\n\"IC.FRM.TRD.TR10\",\"Percent of firms exporting directly or indirectly (at least 1% of sales)\",\"Percent of firms that export directly or indirectly at least 1% of their total annual sales.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/trade).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/trade).\"\n\"IC.FRM.TRD.TR11\",\"Percent of firms using material inputs and/or supplies of foreign origin\",\"Percent of firms that use material inputs and/or supplies of foreign origin.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/trade).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/trade).\"\n\"IC.FRM.TRD.TR14\",\"Days of inventory of main input\",\"Days of inventory of the most important input.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/trade).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/trade).\"\n\"IC.FRM.TRD.TR15\",\"Percent of firms exporting directly (at least 1% of sales)\",\"Percent of firms exporting directly at least 1% of their sales.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/trade).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/trade).\"\n\"IC.FRM.TRD.TR2\",\"Days to clear imports from customs\",\"Number of days to clear imports from customs.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/trade).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/trade).\"\n\"IC.FRM.TRD.TR4\",\"Proportion of total sales that are domestic sales (%)\",\"Percentage of total annual sales that are domestic sales.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/trade).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/trade).\"\n\"IC.FRM.TRD.TR5\",\"Proportion of total sales that are exported directly (%)\",\"Percentage of total annual sales that are exported directly.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/trade).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/trade).\"\n\"IC.FRM.TRD.TR6\",\"Proportion of total sales that are exported indirectly (%)\",\"Percentage of total annual sales that are exported indirectly.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/trade).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/trade).\"\n\"IC.FRM.TRD.TR7\",\"Proportion of total inputs that are of domestic origin (%)\",\"Percentage of material inputs and/or supplies that are of domestic origin.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/trade).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/trade).\"\n\"IC.FRM.TRD.TR8\",\"Proportion of total inputs that are of foreign origin (%)\",\"Percentage of material inputs and/or supplies that are of foreign origin.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/trade).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/trade).\"\n\"IC.FRM.TRD.TR9\",\"Percent of firms identifying customs and trade regulations as a major constraint\",\"Percent of firms that identifying customs and trade regulations as a major constraint. The computation of the indicator is based on the rating of the obstacle as a potential constraint to the current operations of the establishment.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/trade).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/trade).\"\n\"IC.FRM.TRNG.ZS\",\"Firms offering formal training (% of firms)\",\"Firms offering formal training are the percentage of firms offering formal training programs for their permanent, full-time employees.\",\"World Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.TRSP.ZS\",\"Transportation (% of firms identifying this as a major constraint)\",\"Percentage of firms identifying transport as a major constraint. The computation of the indicator is based on the rating of the obstacle as a potential constraint to the current operations of the establishment.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.WEB.ZS\",\"Firms using its own website (% of firms)\",\"Percentage of firms using the web for communication with clients or suppliers.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.FRM.WRKF.WK1\",\"Percent of firms offering formal training\",\"Percent of firms offering formal training programs for its permanent, full-time employees.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/workforce).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/workforce).\"\n\"IC.FRM.WRKF.WK10\",\"Percent of firms identifying an inadequately educated workforce as a major constraint\",\"Percent of firms identifying an inadequately educated workforce as a major constraint. The computation of the indicator is based on the rating of the obstacle as a potential constraint to the current operations of the establishment.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/workforce).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/workforce).\"\n\"IC.FRM.WRKF.WK11\",\"Number of temporary workers\",\"Number of temporary workers.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/workforce).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/workforce).\"\n\"IC.FRM.WRKF.WK12\",\"Number of permanent full-time workers\",\"Number of permanent, full-time workers.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/workforce).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/workforce).\"\n\"IC.FRM.WRKF.WK13\",\"Proportion of unskilled workers (out of all production workers) (%)\",\"Percentage of unskilled workers, out of all production workers.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/workforce).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/workforce).\"\n\"IC.FRM.WRKF.WK2\",\"Proportion of workers offered formal training (%)\",\"Percentage of permanent, full-time employees that have received formal training.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/workforce).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/workforce).\"\n\"IC.FRM.WRKF.WK3\",\"Number of permanent skilled production workers\",\"Number of permanent skilled production workers.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/workforce).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/workforce).\"\n\"IC.FRM.WRKF.WK4\",\"Number of permanent unskilled production workers\",\"Number of permanent unskilled production workers.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/workforce).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/workforce).\"\n\"IC.FRM.WRKF.WK6\",\"Number of permanent production workers\",\"Number of permanent production workers.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/workforce).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/workforce).\"\n\"IC.FRM.WRKF.WK7\",\"Number of permanent non-production workers\",\"Number of permanent non-production workers.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/workforce).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/workforce).\"\n\"IC.FRM.WRKF.WK8\",\"Years of the top manager's experience working in the firm's sector\",\"Years of the top manager's experience working in the firm's sector.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/workforce).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/workforce).\"\n\"IC.FRM.WRKF.WK9\",\"Percent of firms identifying labor regulations as a major constraint\",\"Percent of firms identifying labor regulations as a major constraint. The computation of the indicator is based on the rating of the obstacle as a potential constraint to the current operations of the establishment.   Source:World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/workforce).\",\"Enterprise Surveys\",\"World Bank, Enterprise Surveys Project(http://www.enterprisesurveys.org/Data/ExploreTopics/workforce).\"\n\"IC.FRM.WTLIC.DURS\",\"Number of years firms operated without formal registration\",\"Average number of years firms operated without formal registration. This indicator is computed only for the firms that did not have a formal registration when they started their operations in the country.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/). \"\n\"IC.FRM.XQ\",\"Dealing with construction permits (rank)\",\"This index ranks economies from 1 to 181, with first place being the best.  This looks into (a) procedures (b) time and (c) cost  required for a business in the construction industry to build a standardized warehouse and gives weight to each topic.  For more information, visit http://www.doingbusiness.org/MethodologySurveys/.  \",\"Africa Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.GCON.GIFT.ZS\",\"Expected to give gifts to secure a Government contract (% of firms)\",\"Percentage of establishments that consider that firms with characteristics similar to theirs are making informal payments or giving gifts to public officials to secure government contract.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.GE.COST\",\"Cost to get electricity(% of income per capita)\",\"Cost to obtain an electricity connection (% of income per capita) \",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/GettingElectricity)\"\n\"IC.GE.NUM\",\"Procedures required to connect to electricity (number)\",\"This indicator records the number of procedures required for a business to obtain a permanent electricity connection and supply for a warehouse. To ensure that data are comparable across economies, a standard case study in which an entrepreneur seeks to connect a newly built warehouse for cold meat storage to electricity was used. Data are collected from the electricity distribution utility, then completed and verified by independent professionals such as electricians, electrical engineers, electrical contractors, and construction companies.\\n\",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/GettingElectricity)\"\n\"IC.GE.TIME\",\"Time required to connect to electricity (days)\",\"This indicator tracks the time (in calendar days) required for a business to obtain a permanent electricity connection and supply for a warehouse. To ensure that data are comparable across economies, a standard case study in which an entrepreneur seeks to connect a newly built warehouse for cold meat storage to electricity was used. Data are collected from the electricity distribution utility, then completed and verified by independent professionals such as electricians, electrical engineers, electrical contractors, and construction companies.\\n\",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/GettingElectricity)\"\n\"IC.GOV.DURS.ZS\",\"Time spent dealing with the requirements of government regulations (% of senior management time)\",\"Time spent dealing with the requirements of government regulations is the proportion of senior management's time, in a typical week, that is spent dealing with the requirements imposed by government regulations (e.g., taxes, customs, labor regulations, licensing and registration, including dealings with officials, and completing forms).\",\"World Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.GRAFT.XQ\",\"Incidence of Graft index\",\"Incidence of Graft Index is the proportion of instances in which firms were either expected or requested to pay a gift or informal payment over the number of total solicitations for public services, licenses or permits for that country.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.IMP.COST.CD\",\"Cost to import (US$ per container)\",\"Cost measures the fees levied on a 20-foot container in U.S. dollars. All the fees associated with completing the procedures to export or import the goods are included. These include costs for documents, administrative fees for customs clearance and technical control, customs broker fees, terminal handling charges and inland transport. The cost measure does not include tariffs or trade taxes. Only official costs are recorded.\",\"World Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.IMP.DOCS\",\"Documents to import (number)\",\"All documents required per shipment to import goods are recorded. It is assumed that the contract has already been agreed upon and signed by both parties. Documents required for clearance by government ministries, customs authorities, port and container terminal authorities, health and technical control agencies and banks are taken into account. Since payment is by letter of credit, all documents required by banks for the issuance or securing of a letter of credit are also taken into account. Documents that are renewed annually and that do not require renewal per shipment (for example, an annual tax clearance certificate) are not included.\",\"World Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.IMP.DURS\",\"Time to import (days)\",\"Time to import is the time necessary to comply with all procedures required to import goods. Time is recorded in calendar days. The time calculation for a procedure starts from the moment it is initiated and runs until it is completed. If a procedure can be accelerated for an additional cost, the fastest legal procedure is chosen. It is assumed that neither the exporter nor the importer wastes time and that each commits to completing each remaining procedure without delay. Procedures that can be completed in parallel are measured as simultaneous. The waiting time between procedures--for example, during unloading of the cargo--is included in the measure.\",\"World Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.IMP.GIFT.ZS\",\"Expected to give gifts to get an Import License (% of firms)\",\"Percentage of firms expected to give gifts or an informal payment to get an import license.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.ISV.COP\",\"Commencement of proceedings index (0-3)\",\"The commencement of proceedings index has 3 components: (i) Whether debtors can initiate both liquidation and reorganization proceedings. A score of 1 is assigned if debtors can initiate both types of proceedings; 0.5 if they can initiate only one of these types (either liquidation or reorganization); 0 if they cannot initiate insolvency proceedings. (ii) Whether creditors can initiate both liquidation and reorganization proceedings. A score of 1 is assigned if creditors can initiate both types of proceedings; 0.5 if they can initiate only one of these types (either liquidation or reorganization); 0 if they cannot initiate insolvency proceedings. (iii) What standard is used for commencement of insolvency proceedings. A score of 1 is assigned if a liquidity test (the debtor is generally unable to pay its debts as they mature) is used; 0.5 if the balance sheet test (the liabilities of the debtor exceed its assets) is used; 1 if both the liquidity and balance sheet tests are available but only one is required to initiate insolvency proceedings; 0.5 if both tests are required; 0 if a different test is used. The index ranges from 0 to 3, with higher values indicating greater access to insolvency proceedings.\",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/Resolving Insolvency)\"\n\"IC.ISV.COST\",\"Resolving insolvency: cost (% of estate)\",\"The cost of the proceedings, recorded as a percentage of the estate’s value, is calculated on the basis of survey responses by insolvency practitioners. It includes court fees as well as fees of insolvency practitioners, independent assessors, lawyers, and accountants. Respondents provide cost estimates from among the following options: less than 2%, 2–5%, 5–8%, 8–11%, 11–18%, 18–25%, 25–33%, 33–50%, 50–75%, and more than 75% of the value of the business estate.  \\nSource: World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/ClosingBusiness).\",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/ClosingBusiness/).\"\n\"IC.ISV.CPI\",\"Creditor participation index (0-4)\",\"The creditors’ rights index has 4 components: (i) Whether creditors participate in the selection of an insolvency representative. A score of 1 is assigned if yes; 0 if no. (ii) Whether creditors are required to approve the sale of substantial assets of the debtor in the course of insolvency proceedings. A score of 1 is assigned if yes; 0 if no. (iii) Whether an individual creditor has the right to access information about insolvency proceedings, either by requesting it from an insolvency representative or by reviewing the official records. A score of 1 is assigned if yes; 0 if no. (iv) Whether an individual creditor can object to a decision of the court or of the insolvency representative to approve or reject claims against the debtor brought by the creditor itself or by other creditors. A score of 1 is assigned if yes; 0 if no. (v) The index ranges from 0 to 4, with higher values indicating greater participation and rights of creditors. \",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/Resolving Insolvency)\"\n\"IC.ISV.DURS\",\"Time to resolve insolvency (years)\",\"Time to resolve insolvency is the number of years from the filing for insolvency in court until the resolution of distressed assets.\",\"World Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.ISV.MODA\",\"Management of debtor's assets index (0-6)\",\"The management of debtor’s assets index has 6 components: (i) Whether the debtor (or an insolvency representative on its behalf) can continue performing contracts essential to the debtor’s survival. A score of 1 is assigned if yes; 0 if continuation of contracts is not possible or if the law contains no provisions on this subject. (ii) Whether the debtor (or an insolvency representative on its behalf) can reject overly burdensome contracts. A score of 1 is assigned if yes; 0 if rejection of contracts is not possible. (iii) Whether transactions entered into before commencement of insolvency proceedings that give preference to one or several creditors can be avoided after proceedings are initiated. A score of 1 is assigned if yes; 0 if avoidance of such transactions is not possible. (iv) Whether undervalued transactions entered into before commencement of insolvency proceedings can be avoided after proceedings are initiated. A score of 1 is assigned if yes; 0 if avoidance of such transactions is not possible. (v) Whether the insolvency framework includes specific provisions that allow the debtor (or an insolvency representative on its behalf), after commencement of insolvency proceedings, to obtain financing necessary to function during the proceedings. A score of 1 is assigned if yes; 0 if obtaining post-commencement financing is not possible or if the law contains no provisions on this subject. (vi) Whether post-commencement financing receives priority over ordinary unsecured creditors during distribution of assets. A score of 1 is assigned if yes; 0.5 if post-commencement financing is granted superpriority over all creditors, secured and unsecured; 0 if no priority is granted to post-commencement financing. The index ranges from 0 to 6, with higher values indicating more advantageous treatment of the debtor’s assets from the perspective of the company’s stakeholders.\",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/Resolving Insolvency)\"\n\"IC.ISV.OTCM\",\"Outcome (0 as piecemeal sale and 1 as going concern)\",\"Outcome measures whether the debtor’s business continues operating as a going concern or whether the debtor’s assets are sold piecemeal.  \",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/Resolving Insolvency)\"\n\"IC.ISV.RECRT\",\"Resolving insolvency: recovery rate (cents on the dollar)\",\"The recovery rate calculates how many cents on the dollar claimants (creditors, tax authorities, and employees) recover from an insolvent firm. Information comes from local insolvency practitioners, laws and regulations as well as public information on bankruptcy systems. The recovery rate for economies with “no practice” (i.e., fewer than 5 cases a year over the past 5 years) is 0. \\nSource: World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/ClosingBusiness).\",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/ClosingBusiness/).\"\n\"IC.ISV.RP\",\"Reorganization proceedings index (0-3)\",\"The reorganization proceedings index has 3 components: (i) Whether the reorganization plan is voted on only by the creditors whose rights are modified or affected by the plan. A score of 1 is assigned if yes; 0.5 if all creditors vote on the plan, regardless of its impact on their interests; 0 if creditors do not vote on the plan or if reorganization is not available. (ii) Whether creditors entitled to vote on the plan are divided into classes, each class votes separately and the creditors within each class are treated equally. A score of 1 is assigned if the voting procedure has these 3 features; 0 if the voting procedure does not have these 3 features or if reorganization is not available. (iii) Whether the insolvency framework requires that dissenting creditors receive as much under the reorganization plan as they would have received in liquidation. A score of 1 is assigned if yes; 0 if no such provisions exist or if reorganization is not available. The index ranges from 0 to 3, with higher values indicating greater compliance with internationally accepted practices.\",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/Resolving Insolvency)\"\n\"IC.ISV.SOIF\",\"Strength of insolvency framework index (0-16)\",\"Strength of the insolvency framework index measures whether economies implemented best international practices in the areas of commencement of insolvency proceedings, management of debtor’s assets during the proceedings, reorganization proceedings and creditor participation. The index ranges from 0 to 16, with higher values indicating insolvency legislation that is better designed for rehabilitating viable firms and liquidating nonviable ones.\",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/Resolving Insolvency)\"\n\"IC.LGL.CONT.XQ\",\"Enforcing contracts (rank)\",\"This index ranks economies from 1 to 181, with first place being the best giving time, cost and procedures equal weight to each topic.  For more information, visit http://www.doingbusiness.org/MethodologySurveys/.  \",\"Africa Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/). \"\n\"IC.LGL.COST.DEBT.ZS\",\"Enforcing contracts, cost (% of claim)\",\"Cost is recorded as a percentage of the claim, assumed to be equivalent to 200% of income per capita. Only official costs required by law are recorded, including court and enforcement costs and average attorney fees where the use of attorneys is mandatory or common.  For more information, visit http://www.doingbusiness.org/MethodologySurveys/.  \",\"Africa Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.LGL.CRED.XQ\",\"Strength of legal rights index (0=weak to 12=strong)\",\"Strength of legal rights index measures the degree to which collateral and bankruptcy laws protect the rights of borrowers and lenders and thus facilitate lending. The index ranges from 0 to 12, with higher scores indicating that these laws are better designed to expand access to credit.\",\"World Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.LGL.DURS\",\"Time required to enforce a contract (days)\",\"Time required to enforce a contract is the number of calendar days from the filing of the lawsuit in court until the final determination and, in appropriate cases, payment.\",\"World Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.LIC.NUM\",\"Procedures required to build a warehouse (number)\",\"The number of procedures required for a business in the construction industry to build a standardized warehouse is recorded by this indicator. Steps may include: (1) submitting all relevant documents and obtaining all necessary clearances, licenses, permits, and certificates; (2) completing all required notifications and receiving all necessary inspections; (3) obtaining utility connections for electricity, water, sewerage, and phone services; and (4) registering the warehouse after its completion (if required for use as collateral or for transfer of warehouse). Interactions between company employees are not counted as procedures. \\nSource: .\",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/DealingLicenses)\"\n\"IC.LIC.TIME\",\"Time required to build a warehouse (days)\",\"The time (in calendar days) required to build a warehouse—including obtaining necessary licenses and permits, completing required notifications and inspections, and obtaining utility connections—is measured by this indicator. Information is collected from experts in construction licensing—including architects, construction lawyers, construction firms, utility service providers, and public officials who deal with building regulations. If a procedure can be accelerated legally for an additional cost, the fastest procedure is chosen. To make the data comparable across economies, several assumptions about the business, the warehouse project, and the procedures are used.\\n\",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/DealingLicenses)\"\n\"IC.LOAN.COL.ZS\",\"Loans requiring collateral (%)\",\"Percentage of loans that require collateral.\",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.OPER.GIFT.ZS\",\"Expected to give gifts to get an Operating License (% of firms)\",\"Percentage of firms expected to give gifts or an informal payment to get an operating license.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.PI.CIR\",\"Extent of conflict of interest regulation index (0-10)\",\"The extent of conflict of interest regulation index measures the protection of shareholders against directors’ misuse of corporate assets for personal gain by distinguishing 3 dimensions of regulation that address conflicts of interest: transparency of related-party transactions (extent of disclosure index), shareholders’ ability to sue and hold directors liable for self-dealing (extent of director liability index) and access to evidence and allocation of legal expenses in shareholder litigation (ease of shareholder suits index). \",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/Protecting Minority Investors)\"\n\"IC.PI.CT\",\"Extent of corporate transparency index (0-9)\",\"Corporate transparency on ownership stakes, compensation, audits and financial prospects based on 6 components of corporate governance.\",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/Protecting Minority Investors)\"\n\"IC.PI.DIR\",\"Extent of director liability index (0 to 10)\",\"To help gauge investor protection, the extent of director liability index measures liability for self-dealing. The index ranges from 0 (little to no liability) to 10 (greater liability). The data are from a survey of corporate lawyers and are based on securities regulations, company laws and court rules of evidence.\\nSource: World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/ProtectingInvestors/)\",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/ProtectingInvestors/).\"\n\"IC.PI.DISCL\",\"Extent of disclosure index (0 to 10)\",\"To help gauage investor protection, the extent of disclosure index measures the transparency of corporations’ related-party transactions. The index ranges from 0 (little to no transparency) to 10 (greater transparency). The data are from a survey of corporate lawyers and are based on securities regulations, company laws and court rules of evidence.\\nSource: World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/ProtectingInvestors/)\",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/ProtectingInvestors/).\"\n\"IC.PI.INV\",\"Strength of investor protection index (0 to 10)\",\"The strength of investor protection index is an average of 3 indices--the extent of disclosure index, the extent of director liability index, and the ease of shareholder suit index. The index ranges from 0 (little to no investor protection) to 10 (greater investor protection). The data are from a survey of corporate lawyers and are based on securities regulations, company laws and court rules of evidence.\\nSource: World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/ProtectingInvestors/)\",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/ProtectingInvestors/).\"\n\"IC.PI.SG\",\"Extent of shareholder governance index (0-10)\",\"The extent of shareholder governance index is the sum of the extent of shareholder rights index, the strength of governance structure index and the extent of corporate transparency index. The index is divided by 3 so that it ranges from 0 to 10. Higher values indicate stronger rights of shareholders in corporate governance.\",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/Protecting Minority Investors)\"\n\"IC.PI.SHAR\",\"Ease of shareholder suits index (0 to 10) \",\"To help gauge investor protection, the ease of shareholder suits index measures shareholders’ ability to sue officers and directors for misconduct . The index ranges from 0 (little to no ability to file suit) to 10 (greater ability to file suit). The data are from a survey of corporate lawyers and are based on securities regulations, company laws and court rules of evidence.\\nSource: World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/ProtectingInvestors/)\",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/ProtectingInvestors/).\"\n\"IC.PI.SOGS\",\"Strength of governance structure index (0-10.5)\",\"Governance safeguards protecting shareholders from undue board control and entrenchment based on 7 components of corporate governance.\",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/Protecting Minority Investors)\"\n\"IC.PI.SR\",\"Extent of shareholder rights index (0-10.5)\",\"\",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/Protecting Minority Investors)\"\n\"IC.PRP.COST.PROP.ZS\",\"Cost of registering property (% of property value)\",\"Cost is recorded as a percentage of the property value, assumed to be equivalent to 50 times income per capita. Only official costs required by law are recorded, including fees, transfer taxes, stamp duties and any other payment to the property registry, notaries, public agencies or lawyers. Other taxes, such as capital gains tax or value added tax, are excluded from the cost measure. Both costs borne by the buyer and those borne by the seller are included. If cost estimates differ among \",\"Africa Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.PRP.DURS\",\"Time required to register property (days)\",\"Time required to register property is the number of calendar days needed for businesses to secure rights to property.\",\"World Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.PRP.PROC\",\"Procedures to register property (number)\",\"Number of procedures to register property is the number of procedures required for a businesses to secure rights to property.\",\"World Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.PRP.XQ\",\"Registering property (rank)\",\"This index ranks economies from 1 to 181, with first place being the best. This gives (a) time (b) procedures and (c) cost equal weight to each topic.  For more information, visit http://www.doingbusiness.org/MethodologySurveys/.  \",\"Africa Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.REG.CAP\",\"Minimum paid-in capital required to start a business (% of income per capita)\",\"The paid-in minimum capital requirement reflects the amount that an entrepreneur needs to deposit in a bank or with a notary to legally start a business. It is recorded as a percentage of the economy’s income per capita. \\nSource: World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/StartingBusiness).\\n\",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/StartingBusiness/).\"\n\"IC.REG.CAP.PC.ZS\",\"Minimum capital for starting a business  (% of income per capita)\",\"The paid-in minimum capital requirement reflects the amount that the entrepreneur needs to deposit in a bank or with a notary before registration and up to 3 months following in\\u00adcorporation and is recorded as a percentage of the country’s income per capita. The amount is typically specified in the commercial code or the company law. Many countries have a minimum capital requirement but allow businesses to pay only a part of it before registration, with the rest to be paid after the first year of operation.  For more information, visit http://www.doingbusiness.org/MethodologySurveys/.  \",\"Africa Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.REG.COST\",\"Cost to start a business (% of income per capita)\",\"The official cost to start a business legally is measured by this indicator and expressed a  percentage of the economy's income per capita. It includes all official fees and fees for legal or professional services if such services are required by law. In all cases, the cost excludes bribes.\\nSource: World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/StartingBusiness).\",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/StartingBusiness/).\"\n\"IC.REG.COST.PC.ZS\",\"Cost of business start-up procedures (% of GNI per capita)\",\"Cost to register a business is normalized by presenting it as a percentage of gross national income (GNI) per capita.\",\"World Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.REG.DURS\",\"Time required to start a business (days)\",\"Time required to start a business is the number of calendar days needed to complete the procedures to legally operate a business. If a procedure can be speeded up at additional cost, the fastest procedure, independent of cost, is chosen.\",\"World Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.REG.PROC\",\"Start-up procedures to register a business (number)\",\"Start-up procedures are those required to start a business, including interactions to obtain necessary permits and licenses and to complete all inscriptions, verifications, and notifications to start operations. Data are for businesses with specific characteristics of ownership, size, and type of production.\",\"World Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.REG.XQ\",\"Starting a business (rank)\",\"This index averages the country's percentile rankings on: procedures, time, cost (% of income per capita) and minimum capital (% of income per capita)\",\"Africa Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.RP.COST\",\"Cost to register property (% of property value)\",\"This indicator calculates the cost required for a business to register property expressed as a percentage of the property value, assuming a property value of 50 times income per capita. The cost includes fees, transfer taxes, stamp duties, and any other payment to the property registry, notaries, public agencies or lawyers. Information is provided by local property lawyers, notaries, and property registries. \\nSource: World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/RegisteringProperty).\",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/RegisteringProperty/).\"\n\"IC.RP.PROC\",\"Procedures required to register property (number)\",\"This indicator records the number of steps required for a business (buyer) to purchase a property from another business (seller) and register it legally so that the buyer can use the property as collateral or sell it to another business. Information is provided by local property lawyers, notaries, and property registries. \\nSource: World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/RegisteringProperty).\",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/RegisteringProperty/).\"\n\"IC.RP.TIME\",\"Time required to register property (days)\",\"This indicator records the number of calendar days required for a business (buyer) to purchase a property from another business (seller) and register it legally so that the buyer can use the property as collateral or sell it to another business. Information is provided by local property lawyers, notaries, and property registries. \\n Source: World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/RegisteringProperty).\",\"Doing Business\",\"World Bank, Doing Business Project (http://www.doingbusiness.org/ExploreTopics/RegisteringProperty/).\"\n\"IC.SALE.DOM.ZS\",\"Domestic Sales (% sales)\",\"Percentage of sales sold domestically.\",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.TAX.DURS\",\"Time to prepare and pay taxes (hours)\",\"Time to prepare and pay taxes is the time, in hours per year, it takes to prepare, file, and pay (or withhold) three major types of taxes: the corporate income tax, the value added or sales tax, and labor taxes, including payroll taxes and social security contributions.\",\"World Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.TAX.GIFT.ZS\",\"Firms expected to give gifts in meetings with tax officials (% of firms)\",\"Firms expected to give gifts in meetings with tax officials is the percentage of firms that answered positively to the question \\\"was a gift or informal payment expected or requested during a meeting with tax officials?\\\"\",\"World Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.TAX.LABR.CP.ZS\",\"Labor tax and contributions (% of commercial profits)\",\"Labor tax and contributions is the amount of taxes and mandatory contributions on labor paid by the business.\",\"World Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.TAX.LBR.ZS\",\"Paying taxes, labor tax and contributions (%)\",\"The total tax rate measures the amount of taxes and mandatory contributions payable by the business in the second year of operation, expressed as a share of commercial profits. Doing Business 2008 reports the total tax rate for fiscal 2006. The total amount of taxes is the sum of all the different taxes and contributions payable after accounting for deductions and exemptions. The taxes withheld (such as sales or value added tax or personal income tax) but not paid by the company are excluded. The taxes included can be divided into 5 categories: profit or corporate income tax, social contribu\\uadtions and labor taxes paid by the employer (for which all mandatory contributions are included, even if paid to a private entity such as a requited pension fund), property taxes, turnover taxes and other small taxes (such as municipal fees and vehicle and fuel taxes).  For more information, visit http://www.doingbusiness.org/MethodologySurveys/.  \",\"Africa Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.TAX.METG\",\"Number of visits or required meetings with tax officials\",\"\\\"Number of visits or required meetings with tax officials is the number of visits or required meetings with tax officials during the year.\\n\\\"\",\"World Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.TAX.OTH.ZS\",\"Paying taxes, other taxes (%)\",\"Amount of taxes and mandatory contributions paid by the business that are not already included in the tax profits and labour taxes.  For more information, visit http://www.doingbusiness.org/MethodologySurveys/.  \",\"Africa Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.TAX.OTHR.CP.ZS\",\"Other taxes payable by businesses (% of commercial profits)\",\"Other taxes payable by businesses include the amounts paid for property taxes, turnover taxes, and other small taxes such as municipal fees and vehicle and fuel taxes.\",\"World Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.TAX.PAYM\",\"Tax payments (number)\",\"Tax payments by businesses are the total number of taxes paid by businesses, including electronic filing. The tax is counted as paid once a year even if payments are more frequent.\",\"World Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.TAX.PFT.ZS\",\"Paying taxes, profit tax (%)\",\"\\\"Total amount of taxes and mandatory contributions payable by the business.  \\rFor more information, visit http://www.doingbusiness.org/MethodologySurveys/.  \\\"\",\"Africa Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.TAX.PRFT.CP.ZS\",\"Profit tax (% of commercial profits)\",\"Profit tax is the amount of taxes on profits paid by the business.\",\"World Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.TAX.TOTL.CP.ZS\",\"Total tax rate (% of commercial profits)\",\"Total tax rate measures the amount of taxes and mandatory contributions payable by businesses after accounting for allowable deductions and exemptions as a share of commercial profits. Taxes withheld (such as personal income tax) or collected and remitted to tax authorities (such as value added taxes, sales taxes or goods and service taxes) are excluded.\",\"World Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.TAX.XQ\",\"Paying taxes (rank)\",\"This index ranks economies from 1 to 181, with first place being the best.  This  assesses (a) number of payments (b) time spent to prepare taxes (c) labour taxes (d) other taxes and (e) taxes on profits and gives each topic equal weight.  For more information, visit http://www.doingbusiness.org/MethodologySurveys/.  \",\"Africa Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.TEL.DURS\",\"Delay in obtaining a mainline telephone connection (days)\",\"Delay for firm in obtaining a telephone connection is the average actual delay in days that firms experience when obtaining a telephone connection, measured from the day the establishment applied to the day it received the service or approval.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.TEL.GIFT.ZS\",\"Expected to give gifts to get a phone connection (% of firms)\",\"Percentage of firms expected to give gifts or an informal payment to get a phone connection.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.TRD.XQ\",\"Trading across borders (rank)\",\"This index ranks economies from 1 to 181, with first place being the best.  This gives an equal weigh to each of the topics in order for ranking (a) number of all documents required to export/import goods, (b) time and (c) cost.  \",\"Africa Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.VAL.COL.ZS\",\"Value of collateral needed for a loan (% of the loan amount)\",\"Value of collateral needed for a loan or line of credit as a percentage of the loan value or the value of the line of credit.\",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.VALG.GIFT.ZS\",\"Value of gift expected to secure Government Contract (% of Contract)\",\"Percentage of contract value expected as a gift to secure government contract. Only firms that have confirmed that they have secured or attempted to secure a government contract in the last 12 months were required to answer this question.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.WAT.DURS\",\"Delay in obtaining a water connections (days)\",\"Delay for firm in obtaining water connection is the average actual delay in days that firms experience when obtaining a water connection, measured from the day the establishment applied to the day it received the service or approval.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.WAT.GIFT.ZS\",\"Expected to give gifts to get a water connection (% of firms)\",\"Percentage of firms expected to give gifts or an informal payment to get a water connection.  \",\"Africa Development Indicators\",\"World Bank, Enterprise Surveys (http://www.enterprisesurveys.org/).\"\n\"IC.WRH.DURS\",\"Time required to build a warehouse (days)\",\"Time required to build a warehouse is the number of calendar days needed to complete the required procedures for building a warehouse. If a procedure can be speeded up at additional cost, the fastest procedure, independent of cost, is chosen.\",\"World Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IC.WRH.PROC\",\"Procedures to build a warehouse (number)\",\"Number of procedures to build a warehouse is the number of interactions of a company's employees or managers with external parties, including government agency staff, public inspectors, notaries, land registry and cadastre staff, and technical experts apart from architects and engineers.\",\"World Development Indicators\",\"World Bank, Doing Business project (http://www.doingbusiness.org/).\"\n\"IDX.HDI\",\"Human Development Index\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, National Social Economic Survey (SUSENAS)\"\n\"IE.ICT.PCAP.CD\",\"Information and communication technology expenditure per capita (current US$)\",\"Information and communications technology expenditures include computer hardware (computers, storage devices, printers, and other peripherals); computer software (operating systems, programming tools, utilities, applications, and internal software development); computer services (information technology consulting, computer and network systems integration, Web hosting, data processing services, and other services); and communications services (voice and data communications services) and wired and wireless communications equipment.\",\"Africa Development Indicators\",\"World Information Technology and Services Alliance, Digital Planet: The Global Information Economy, and Global Insight, Inc.\"\n\"IE.ICT.TOTL.CD\",\"Information and communication technology expenditure (current US$)\",\"Information and communications technology expenditures include computer hardware (computers, storage devices, printers, and other peripherals); computer software (operating systems, programming tools, utilities, applications, and internal software development); computer services (information technology consulting, computer and network systems integration, Web hosting, data processing services, and other services); and communications services (voice and data communications services) and wired and wireless communications equipment.\",\"Africa Development Indicators\",\"World Information Technology and Services Alliance, Digital Planet: The Global Information Economy, and Global Insight, Inc.\"\n\"IE.ICT.TOTL.GD.ZS\",\"Information and communication technology expenditure (% of GDP)\",\"Information and communications technology expenditures include computer hardware (computers, storage devices, printers, and other peripherals); computer software (operating systems, programming tools, utilities, applications, and internal software development); computer services (information technology consulting, computer and network systems integration, Web hosting, data processing services, and other services); and communications services (voice and data communications services) and wired and wireless communications equipment.\",\"Africa Development Indicators\",\"World Information Technology and Services Alliance, Digital Planet: The Global Information Economy, and Global Insight, Inc.\"\n\"IE.PPI.ENGY.CD\",\"Investment in energy with private participation (current US$)\",\"Investment in energy projects with private participation covers infrastructure projects in energy (electricity and natural gas transmission and distribution) that have reached financial closure and directly or indirectly serve the public. Movable assets and small projects such as windmills are excluded. The types of projects included are operations and management contracts, operations and management contracts with major capital expenditure, greenfield projects (in which a private entity or a public-private joint venture builds and operates a new facility), and divestitures. Investment commitments are the sum of investments in facilities and investments in government assets. Investments in facilities are the resources the project company commits to invest during the contract period either in new facilities or in expansion and modernization of existing facilities. Investments in government assets are the resources the project company spends on acquiring government assets such as state-owned enterprises, rights to provide services in a specific area, or the use of specific radio spectrums. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, Private Participation in Infrastructure Project Database (http://ppi.worldbank.org).\"\n\"IE.PPI.TELE.CD\",\"Investment in telecoms with private participation (current US$)\",\"Investment in telecom projects with private participation covers infrastructure projects in telecommunications that have reached financial closure and directly or indirectly serve the public. Movable assets and small projects are excluded. The types of projects included are operations and management contracts, operations and management contracts with major capital expenditure, greenfield projects (in which a private entity or a public-private joint venture builds and operates a new facility), and divestitures. Investment commitments are the sum of investments in facilities and investments in government assets. Investments in facilities are the resources the project company commits to invest during the contract period either in new facilities or in expansion and modernization of existing facilities. Investments in government assets are the resources the project company spends on acquiring government assets such as state-owned enterprises, rights to provide services in a specific area, or the use of specific radio spectrums. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, Private Participation in Infrastructure Project Database (http://ppi.worldbank.org).\"\n\"IE.PPI.TRAN.CD\",\"Investment in transport with private participation (current US$)\",\"Investment in transport projects with private participation covers infrastructure projects in transport that have reached financial closure and directly or indirectly serve the public. Movable assets and small projects are excluded. The types of projects included are operations and management contracts, operations and management contracts with major capital expenditure, greenfield projects (in which a private entity or a public-private joint venture builds and operates a new facility), and divestitures. Investment commitments are the sum of investments in facilities and investments in government assets. Investments in facilities are the resources the project company commits to invest during the contract period either in new facilities or in expansion and modernization of existing facilities. Investments in government assets are the resources the project company spends on acquiring government assets such as state-owned enterprises, rights to provide services in a specific area, or the use of specific radio spectrums. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, Private Participation in Infrastructure Project Database (http://ppi.worldbank.org).\"\n\"IE.PPI.WATR.CD\",\"Investment in water and sanitation with private participation (current US$)\",\"Investment in water and sanitation projects with private participation covers infrastructure projects in water and sanitation that have reached financial closure and directly or indirectly serve the public. Movable assets, incinerators, standalone solid waste projects, and small projects are excluded. The types of projects included are operations and management contracts, operations and management contracts with major capital expenditure, greenfield projects (in which a private entity or a public-private joint venture builds and operates a new facility), and divestitures. Investment commitments are the sum of investments in facilities and investments in government assets. Investments in facilities are the resources the project company commits to invest during the contract period either in new facilities or in expansion and modernization of existing facilities. Investments in government assets are the resources the project company spends on acquiring government assets such as state-owned enterprises, rights to provide services in a specific area, or the use of specific radio spectrums. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank, Private Participation in Infrastructure Project Database (http://ppi.worldbank.org).\"\n\"IENERGY\",\"Energy, 2000=100, current$\",\"Energy index, a Laspeyres Index with fixed weights based on 2002-2004 average developing countries export values, for coal, crude oil and natural gas.\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"IFATS_OILS\",\"Agr: Food: Fats and oils, 2000=100, current$\",\"Fats and oils index includes coconut oil, groundnut oil, palm oil, soybeans, soybean oil and soybean meal.\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"IFERTILIZERS\",\"Fertilizers, 2000=100, current$\",\"Fertilizers index includes natural phosphate rock, phosphate, potassium and nitrogenous products.\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"IFOOD\",\"Agr: Food, 2000=100, current$\",\"Food index includes fats and oils, grains and other food items.\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"IGRAINS\",\"Agr: Food: Grains, 2000=100, current$\",\"Grains index includes barley, maize, rice and wheat.\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"IMETMIN\",\"Metals and minerals, 2000=100, current$\",\"Metals and minerals index includes aluminum, copper, iron ore, lead, nickle, tin and zinc.\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"IMETMIN_DV100\",\"Base Metals, 2000=100, current$\",\"Base Metals index includes aluminum, copper, lead, nickle, tin and zinc, excludes iron ore.\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"IN.AGR.GR.IRRIG.AREA\",\"Gross Irrigated Area under all crops ('000 hectares)\",\"Gross area under irrigation is the total area under crops, irrigated once and/or more than once in a year. It is counted as many times as the number of times the areas are cropped and irrigated in a year.\",\"Country Partnership Strategy for India \",\"Source: Directorate of Economics and Statistics, Ministry of Agriculture\\nHttp://mospi.nic.in/mospi_new/upload/SYB2014/CH-12-IRRIGATION/Table 12.2.xls\"\n\"IN.AGR.YLD.ALL\",\"Yield - All Foodgrains (Kgs/Hectare)\",\"Yield of Total Foodgrains (Rice, Wheat, etc.), measured in Kgs/Hectare, is derived by aggregating the individual foodgrain production (Kgs) and total harvested areas (hectares), which are estimated using their Yield. \",\"Country Partnership Strategy for India \",\"http://eands.dacnet.nic.in/Publication12-12-2012/Agriculture_at_a_Glance%202012/Pages85-136.pdf\"\n\"IN.AGR.YLD.RICE\",\"Yield - Rice (Kgs/Hectare)\",\"Yield of Rice, measured in Kgs/Hectare, is an estimate based on randomized sampling of survey areas and controlled crop cutting experiments. \",\"Country Partnership Strategy for India \",\"http://eands.dacnet.nic.in/Publication12-12-2012/Agriculture_at_a_Glance%202012/Pages85-136.pdf\"\n\"IN.AGR.YLD.SUGRCANE\",\"Yield - Sugarcane (Kgs/Hectare)\",\"Yield of Sugarcane, measured in Kgs/Hectare, is an estimate based on randomized sampling of survey areas and controlled crop cutting experiments. \",\"Country Partnership Strategy for India \",\"http://eands.dacnet.nic.in/Publication12-12-2012/Agriculture_at_a_Glance%202012/Pages85-136.pdf\"\n\"IN.EC.GSDP.PERCAP.NOM.INR\",\"Nominal GSDP Per Capita (INR)\",\"Nominal Gross state domestic product (GSDP) per capita, or gross regional product (GRP) per capita, is a measurement of the per capita economic output in nominal terms of a state or province (i.e., of a subnational entity). It is the sum of all value added by industries and services within the state and serves as a counterpart to the gross domestic product (GDP). \\nState Domestic Product (SDP) in common parlance known as “State Income” is a measure in monetary terms of the volume of all goods and services produced during a given period of time within the geographical boundaries of the state, accounted for\\nwithout duplication.\\n\",\"Country Partnership Strategy for India \",\"Source : Central Statistics Office (CSO), Ministry of Statistics and Prgramme Implementation, Gov't of India website as on 01.08.13\"\n\"IN.EC.GSDP.PERCAP.NOM.USD\",\"Nominal GSDP Per Capita (USD)\",\"Nominal Gross state domestic product (GSDP) per capita, or gross regional product (GRP) per capita, is a measurement of the per capita economic output in nominal terms of a state or province (i.e., of a subnational entity). It is the sum of all value added by industries and services within the state and serves as a counterpart to the gross domestic product (GDP). \\nState Domestic Product (SDP) in common parlance known as “State Income” is a measure in monetary terms of the volume of all goods and services produced during a given period of time within the geographical boundaries of the state, accounted for\\nwithout duplication.\\n\",\"Country Partnership Strategy for India \",\"Source : Central Statistics Office (CSO), Ministry of Statistics and Prgramme Implementation, Gov't of India website as on 01.08.13\"\n\"IN.EC.GSDP.PERCAP.REAL.INR\",\"Real GSDP Per Capita (INR)\",\"Real Gross state domestic product (GSDP), or gross regional product (GRP), is a measurement of the per capita economic output in real terms of a state or province (i.e., of a subnational entity). It is the sum of all value added by industries and services within the state and serves as a counterpart to the gross domestic product (GDP). \\nState Domestic Product (SDP) in common parlance known as “State Income” is a measure in monetary terms of the volume of all goods and services produced during a given period of time within the geographical boundaries of the state, accounted for\\nwithout duplication.\\n\",\"Country Partnership Strategy for India \",\"Source : Central Statistics Office (CSO), Ministry of Statistics and Prgramme Implementation, Gov't of India website as on 01.08.13\"\n\"IN.EC.GSDP.PERCAP.REAL.INR.GRWTHRAT\",\"Real GSDP Per Capita (INR) Growth Rate\",\"Real Gross state domestic product (GSDP) [per capita, or gross regional product (GRP) per capita, is a measurement of the per capita growth rate of economic output in real terms of a state or province (i.e., of a subnational entity). It is the sum of all value added by industries and services within the state and serves as a counterpart to the gross domestic product (GDP). \\nState Domestic Product (SDP) in common parlance known as “State Income” is a measure in monetary terms of the volume of all goods and services produced during a given period of time within the geographical boundaries of the state, accounted for\\nwithout duplication.\\n\",\"Country Partnership Strategy for India \",\"Source : Central Statistics Office (CSO), Ministry of Statistics and Prgramme Implementation, Gov't of India website as on 01.08.13\"\n\"IN.EC.GSDP.PERCAP.REAL.USD\",\"Real GSDP Per Capita (USD)\",\"Real Gross state domestic product (GSDP) per capita, or gross regional product (GRP) per capita, is a measurement of the per capita economic output in real terms of a state or province (i.e., of a subnational entity). It is the sum of all value added by industries and services within the state and serves as a counterpart to the gross domestic product (GDP). \\nState Domestic Product (SDP) in common parlance known as “State Income” is a measure in monetary terms of the volume of all goods and services produced during a given period of time within the geographical boundaries of the state, accounted for\\nwithout duplication.\\n\",\"Country Partnership Strategy for India \",\"Source : Central Statistics Office (CSO), Ministry of Statistics and Prgramme Implementation, Gov't of India website as on 01.08.13\"\n\"IN.EC.GSDP.PERCAP.REAL.USD.GRWTHRAT\",\"Real GSDP Per Capita (USD) Growth Rate\",\"Gross state domestic product (GSDP), or gross regional product (GRP), is a measurement of the per capita growth rate  of the economic output in real terms of a state or province (i.e., of a subnational entity). It is the sum of all value added by industries and services within the state and serves as a counterpart to the gross domestic product (GDP). \\nState Domestic Product (SDP) in common parlance known as “State Income” is a measure in monetary terms of the volume of all goods and services produced during a given period of time within the geographical boundaries of the state, accounted for\\nwithout duplication.\\n\",\"Country Partnership Strategy for India \",\"Source : Central Statistics Office (CSO), Ministry of Statistics and Prgramme Implementation, Gov't of India website as on 01.08.13\"\n\"IN.EC.POP.GRWTHRAT.\",\"Decadal Growth of Population (%)\",\"Population growth rate over the 10 year period.  This is simple growth rate calculation between two population observations that are 10 year apart.\",\"Country Partnership Strategy for India \",\"Source: Provisional Population Tables & Annexures, Census of India 2011\"\n\"IN.EC.POP.TOTL\",\"Population (Thousands)\",\"\",\"Country Partnership Strategy for India \",\"Source:\\nCompiled from the statistics released by : Tenth Five Year Plan 2002-07, Volume-III, Planning Commission, Gov't of India\"\n\"IN.EDU.ENROL.GEN\",\"Enrolment by Caste-General (%)\",\"Percent pupils in General category: not belonging to the Scheduled Caste (SC), Scheduled Tribe (ST) or Other Backward Class (OBC) category. Muslims and other minorities are included in the General Category.\",\"Country Partnership Strategy for India \",\"Secondary Education in India: Progress towards universalization, Flash Statistics 2012-13, National University of Educational Planning and Adminsitration; SEMIS-FLASH-STASTICS.pdf\"\n\"IN.EDU.ENROL.MSLM\",\"Enrolment by Caste-Muslim (%)\",\"Percent of Secondary and Higher Secondary pupils in the General category and belonging to the Muslim community\",\"Country Partnership Strategy for India \",\"Secondary Education in India: Progress towards universalization, Flash Statistics 2012-13, National University of Educational Planning and Adminsitration; SEMIS-FLASH-STASTICS.pdf\"\n\"IN.EDU.ENROL.OBC\",\"Enrolment by Caste-OBC (%)\",\"Percent pupils not in the General category and belonging to the Other Backward Class (OBC) category\",\"Country Partnership Strategy for India \",\"Secondary Education in India: Progress towards universalization, Flash Statistics 2012-13, National University of Educational Planning and Adminsitration; SEMIS-FLASH-STASTICS.pdf\"\n\"IN.EDU.ENROL.SC\",\"Enrolment by Caste-SC (%)\",\"Percent pupils not in the General category and belonging to the Scheduled Caste (SC) category\",\"Country Partnership Strategy for India \",\"Secondary Education in India: Progress towards universalization, Flash Statistics 2012-13, National University of Educational Planning and Adminsitration; SEMIS-FLASH-STASTICS.pdf\"\n\"IN.EDU.ENROL.ST\",\"Enrolment by Caste-ST (%)\",\"Percent pupils not in the General category and belonging to the Scheduled Tribe (ST) category\",\"Country Partnership Strategy for India \",\"Secondary Education in India: Progress towards universalization, Flash Statistics 2012-13, National University of Educational Planning and Adminsitration; SEMIS-FLASH-STASTICS.pdf\"\n\"IN.EDU.GR.ENRL.RATIO\",\"Gross Enrolment Ratio (%)\",\"Total enrolment in secondary and higher secondary education, regardless of age, expressed as a percentage of the eligible official secondary and higher secondary school-age population in a given school-year \",\"Country Partnership Strategy for India \",\"Secondary Education in India: Progress towards universalization, Flash Statistics 2012-13, National University of Educational Planning and Adminsitration; SEMIS-FLASH-STASTICS.pdf\"\n\"IN.EDU.NET.ENRL.RATIO\",\"Net Enrolment Ratio (%)\",\"Enrolment in secondary and higher secondary education of the official age for that group expressed as a percentage of the corresponding population in that age group\",\"Country Partnership Strategy for India \",\"Secondary Education in India: Progress towards universalization, Flash Statistics 2012-13, National University of Educational Planning and Adminsitration; SEMIS-FLASH-STASTICS.pdf\"\n\"IN.EDU.PUPIL.TCHR\",\"Pupil-Teacher Ratio\",\"Average number of Pupils per Teacher for all schools (Secondary and Higher Secondary schools).\",\"Country Partnership Strategy for India \",\"Secondary Education in India: Progress towards universalization, Flash Statistics 2012-13, National University of Educational Planning and Adminsitration; SEMIS-FLASH-STASTICS.pdf\"\n\"IN.EDU.TCHR.NUM\",\"Teachers (Number)\",\"Total number of Teachers in secondary and higher secondary schools. Thes include regular and on-contract teachers.\",\"Country Partnership Strategy for India \",\"Secondary Education in India: Progress towards universalization, Flash Statistics 2012-13, National University of Educational Planning and Adminsitration; SEMIS-FLASH-STASTICS.pdf\"\n\"IN.EDU.TCHRTRNG.NUM\",\"Teacher Education Institutes (DIETs, CTEs, IASEs)\",\"Numbers of Teacher Education Institutes sponsored and funded by the Central Government for elementary and secondary schools-- District Institutes of Education and Trainin(DIETs), Colleges of Teacher Education (CTEs),  Institutes of Advanced Study in Education (IASEs) \",\"Country Partnership Strategy for India \",\"teacher Education, Department of School Education and Literacy, Min. of Human resource Development, Gov't of India.\\nhttp://www.teindia.nic.in/Institutions.aspx\"\n\"IN.ENRGY.ELEC.CAP\",\"Total- Installed Capacity (MW)\",\"Total- Installed Capacity (MW). Includes hydro, diesel and wind, steam, gas and nuclear energy.\",\"Country Partnership Strategy for India \",\"Source: Central Electricity Authority, Ministry of Power, India.\\nHttp://mospi.nic.in/mospi_new/upload/SYB2014/CH-16-ENERGY/Table 16.12.xls\"\n\"IN.ENRGY.ELEC.GEN\",\"Total-Electricity Generated Gross (GWh)\",\"Total-Electricity Generated Gross (GWh). Includes hydro, diesel and wind, steam, gas and nuclear energy.\",\"Country Partnership Strategy for India \",\"Source: Central Electricity Authority, Ministry of Power, India.\\nHttp://mospi.nic.in/mospi_new/upload/SYB2014/CH-16-ENERGY/Table 16.12.xls\"\n\"IN.ENRGY.ELEC.PERCAP.CONSMPN\",\"Utilities/Non Utilities Per Capita Consumption (KWh)\",\"Utilities/Non Utilities  Per Capita Consumption (in KWh).  Uses net electricity consumption after excluding  consumption by power station auxiliaries. Non-utilities are power stations for railways and similar entities.\",\"Country Partnership Strategy for India \",\"Source: Central Electricity Authority, Ministry of Power, India.\\nHttp://mospi.nic.in/mospi_new/upload/SYB2014/CH-16-ENERGY/Table 16.12.xls\"\n\"IN.ENRGY.ELEC.PERCAP.CONSMPN.NONUTLTS\",\"Non Utilities Per Capita Consumption (KWh)\",\"Non Utilities  Per Capita Consumption (in KWh)\",\"Country Partnership Strategy for India \",\"Source: Central Electricity Authority, Ministry of Power, India.\\nHttp://mospi.nic.in/mospi_new/upload/SYB2014/CH-16-ENERGY/Table 16.12.xls\"\n\"IN.ENRGY.ELEC.PERCAP.CONSMPN.TOTL\",\"Total (Utilities & Non-Utilities) Per Capita Consumption (KWh)\",\"Total (Utilities & Non-Utilities) Per Capita Consumption (in KWh). Uses net electricity consumption after excluding  consumption by power station auxiliaries. Non-utilities are power stations for railways and similar entities.\",\"Country Partnership Strategy for India \",\"Source: Central Electricity Authority, Ministry of Power, India.\\nHttp://mospi.nic.in/mospi_new/upload/SYB2014/CH-16-ENERGY/Table 16.12.xls\"\n\"IN.ENRGY.GRID.RENEW.CAP\",\"Grid interactive renewable power installed capacity (MW)\",\"Grid interactive renewable power installed capacity (in MW). Includes power generated from small hydro, biomass and waste, wind and solar sources. Energy from these renewable sources is connected to the regional and state grids.\",\"Country Partnership Strategy for India \",\"Source: Ministry of New and Renewable Energy, India\\nHttp://mospi.nic.in/mospi_new/upload/SYB2014/CH-16-RURAL AND URBAN DEVELOPMENT/Table 35.12.xls\\n\"\n\"IN.ENRGY.TOWNS.ELECTRFIED.NUM\",\"Number of Towns Electrified (Per 2001 Census)\",\"Number of Towns Electrified (Per 2001 Census)\",\"Country Partnership Strategy for India \",\"Source: Central Electricity Authority, Ministry of Power, India.\\nTABLE 16.14: NUMBER OF TOWNS AND VILLAGES ELECTRIFIED IN INDIA \\nHttp://mospi.nic.in/mospi_new/upload/SYB2014/CH-16-ENERGY/Table 16.14.xls\\n\"\n\"IN.ENRGY.TOWNS.ELECTRFIED.PERCENT\",\"Number of Towns Electrified (Percentage)\",\"Percentage of Towns in the State Electrified \",\"Country Partnership Strategy for India \",\"Source: Central Electricity Authority, Ministry of Power, India.\\nTABLE 16.14: NUMBER OF TOWNS AND VILLAGES ELECTRIFIED IN INDIA \\nHttp://mospi.nic.in/mospi_new/upload/SYB2014/CH-16-ENERGY/Table 16.14.xls\\n\"\n\"IN.ENRGY.TOWNS.TOTL\",\"Number of Towns Total (Per 2001 Census)\",\"Number of Towns Total (Per 2001 Census)\",\"Country Partnership Strategy for India \",\"Source: Central Electricity Authority, Ministry of Power, India.\\nTABLE 16.14: NUMBER OF TOWNS AND VILLAGES ELECTRIFIED IN INDIA \\nHttp://mospi.nic.in/mospi_new/upload/SYB2014/CH-16-ENERGY/Table 16.14.xls\\n\"\n\"IN.ENRGY.VILLAG.ELECTRFIED\",\"Number of Villages Electrified\",\"Number of Villages Electrified\",\"Country Partnership Strategy for India \",\"Source: Central Electricity Authority, Ministry of Power, India.\\nTABLE 16.14: NUMBER OF TOWNS AND VILLAGES ELECTRIFIED IN INDIA \\nHttp://mospi.nic.in/mospi_new/upload/SYB2014/CH-16-ENERGY/Table 16.14.xls\\n\"\n\"IN.ENRGY.VILLAG.ELECTRFIED.PERCENT\",\"Number of Villages Electrified (Percentage)\",\"Percentage of Villages Electrified in the State \",\"Country Partnership Strategy for India \",\"Source: Central Electricity Authority, Ministry of Power, India.\\nTABLE 16.14: NUMBER OF TOWNS AND VILLAGES ELECTRIFIED IN INDIA \\nHttp://mospi.nic.in/mospi_new/upload/SYB2014/CH-16-ENERGY/Table 16.14.xls\\n\"\n\"IN.ENRGY.VILLAG.TOTL\",\"Number of Villages Total (Per 2001 Census)\",\"Number of Villages Total (Per 2001 Census)\",\"Country Partnership Strategy for India \",\"Source: Central Electricity Authority, Ministry of Power, India.\\nTABLE 16.14: NUMBER OF TOWNS AND VILLAGES ELECTRIFIED IN INDIA \\nHttp://mospi.nic.in/mospi_new/upload/SYB2014/CH-16-ENERGY/Table 16.14.xls\\n\"\n\"IN.FIN.COMMBANK.NUM\",\"Commercial Bank Offices (Total)\",\"Number of commercial banks\",\"Country Partnership Strategy for India \",\"http://www.rbi.org.in/scripts/PublicationsView.aspx?id=12662\"\n\"IN.FIN.FININCL.INDX\",\"Financial Inclusion Index (CRISIL Method)\",\"CRISIL Inclusix is a relative index that incorporates various forms of basic financial services into one single metric. CRISIL Inclusix is India’s first comprehensive measure of financial inclusion in the form of an index. It is a relative index that has a scale of 0 to 100, and combines three very critical parameters of basic banking services — branch penetration (BP), deposit penetration (DP), and credit penetration (CP) — together into one single metric. For each of these parameters, CRISIL evaluates financial inclusion at the national/ regional/ state/ district level vis-à-vis a defined ideal. A CRISIL Inclusix score of 100 indicates the ideal state for each of the national/ regional/ state/ district level vis-à-vis a defined ideal. A CRISIL Inclusix score of 100 indicates the ideal state for each of the three parameters.\",\"Country Partnership Strategy for India \",\"http://www.crisil.com/about-crisil/crisil-inclusix.html\\n\"\n\"IN.FIN.HH.BNKG.SRVC.RURL\",\"Total number of households availing banking services - Rural\",\"Total number of households availing banking services - Rural (Source: Census 2011)\",\"Country Partnership Strategy for India \",\"http://data.gov.in/catalog/households-availing-banking-services-and-number-households-having-each-specified-assets\"\n\"IN.FIN.HH.BNKG.SRVC.TOTL\",\"Total number of households availing banking services\",\"Total number of households availing banking services ( Source: Census 2011)\",\"Country Partnership Strategy for India \",\"http://data.gov.in/catalog/households-availing-banking-services-and-number-households-having-each-specified-assets\"\n\"IN.FIN.HH.BNKG.SRVC.URBN\",\"Total number of households availing banking services - Urban\",\"Total number of households availing banking services - Urban ( Source: Census 2011)\",\"Country Partnership Strategy for India \",\"http://data.gov.in/catalog/households-availing-banking-services-and-number-households-having-each-specified-assets\"\n\"IN.FIN.HH.RURL\",\"Total number of households -Rural\",\"Total number of households -Rural (Source: Census 2011)\",\"Country Partnership Strategy for India \",\"http://data.gov.in/catalog/households-availing-banking-services-and-number-households-having-each-specified-assets\"\n\"IN.FIN.HH.TOTL\",\"Total number of households\",\"Total number of households (Source: Census 2011)\",\"Country Partnership Strategy for India \",\"http://data.gov.in/catalog/households-availing-banking-services-and-number-households-having-each-specified-assets\"\n\"IN.FIN.HH.URBN\",\"Total number of households - Urban\",\"Total number of households - Urban (Source: Census 2011)\",\"Country Partnership Strategy for India \",\"http://data.gov.in/catalog/households-availing-banking-services-and-number-households-having-each-specified-assets\"\n\"IN.FIN.POP.PERBANK\",\"Average Population Per Bank Office (In Thousands)\",\"Average Population Per Bank Office (In Thousands)\",\"Country Partnership Strategy for India \",\"http://www.rbi.org.in/scripts/PublicationsView.aspx?id=12662\"\n\"IN.HLTH.AUXNURSE.NUM\",\"Auxiliary nursing midwives\",\"Auxiliary Nurse Midwives have some training in secondary school. A period of on-thejob training may be included, and sometimes formalised in apprenticeships. Like an auxiliary nurse, an auxiliary nurse midwife has basic nursing skills and no training in nursing decisionmaking. Auxiliary nurse midwives assist in the provision of maternal and newborn health care, particularly during childbirth but also in the prenatal and postpartum periods. They possess some of the competencies in midwifery but are not fully qualified as midwives. (Source WHO cadres in maternal and newborn health)\",\"Country Partnership Strategy for India \",\"Indian Nursing Council, Pharmacy Council of India.\\nDirectorate General of Health Services(C.B.H.I.)\\nhttp://mospi.nic.in/Mospi_New/Upload/SYB2014/CH-30-HEALTH AND FAMILY WELFARE/TABLE 30.9.xlsx\"\n\"IN.HLTH.CHC.NUM\",\"Number of Community Health Centers (CHCs)\",\"Structure for the Rural health Infastucture consists of 4 levels -- District Hospitals (DH), Community Health Centers (CHC), Primary Health Centers (PHC), and Sub-Centers (SC). The number of CHCs efer to public hospitals.  The number of CHCs  refer to CHCs under the National Rural Health Mission (NRHM) and the National Urban Health Mission (NUHM) (see original source)\",\"Country Partnership Strategy for India \",\"Ministry of Health and Family Welfare, India.\\nhttp://mospi.nic.in/Mospi_New/Upload/SYB2014/CH-30-HEALTH AND FAMILY WELFARE/TABLE 30.6.xlsx\"\n\"IN.HLTH.DISTHOSPTL.NUM\",\"Number of District Hospitals\",\"Structure for the Rural health Infastucture consists of 4 levels -- District Hospitals (DH), Community Health Centers (CHC), Primary Health Centers (PHC), and Sub-Centers (SC). The number of hospitals refer to public facilities under the National Rural Health Mission (NRHM) and the National Urban Health Mission (NUHM) (see original source)\",\"Country Partnership Strategy for India \",\"Ministry of Health and Family Welfare, India.\\nhttp://mospi.nic.in/Mospi_New/Upload/SYB2014/CH-30-HEALTH AND FAMILY WELFARE/TABLE 30.6.xlsx\"\n\"IN.HLTH.DOCS.PER100K\",\"Number of Government Allopathic Doctors Per 100,000 Population\",\"Health infrastructure indicator  -- Number of Allopathic Doctors in Government Hospitals per 100,000 population\",\"Country Partnership Strategy for India \",\"Ministry of Health and Family Welfare, India.\\nhttp://mospi.nic.in/Mospi_New/Upload/SYB2014/CH-30-HEALTH AND FAMILY WELFARE/TABLE 30.1.xlsx\"\n\"IN.HLTH.GOVHOSPTL.BEDS.NUM\",\"Government Hospitals Number of beds\",\"Health infrastructure indicator  -- Number of beds in Government Hospitals\",\"Country Partnership Strategy for India \",\"Ministry of Health and Family Welfare, India.\\nhttp://mospi.nic.in/Mospi_New/Upload/SYB2014/CH-30-HEALTH AND FAMILY WELFARE/TABLE 30.1.xlsx\"\n\"IN.HLTH.GOVHOSPTL.BEDS.PER100K\",\"Government Hospitals Number of beds Per 100,000 Population\",\"Health infrastructure indicator  -- Number of beds in Government Hospitals (public) per 100,000 population\",\"Country Partnership Strategy for India \",\"Ministry of Health and Family Welfare, India.\\nhttp://mospi.nic.in/Mospi_New/Upload/SYB2014/CH-30-HEALTH AND FAMILY WELFARE/TABLE 30.1.xlsx\"\n\"IN.HLTH.GOVHOSPTL.NUM\",\"Government Hospitals (Number)\",\"Health infrastructure indicator  -- Number of Government Hospitals \",\"Country Partnership Strategy for India \",\"Ministry of Health and Family Welfare, India.\\nhttp://mospi.nic.in/Mospi_New/Upload/SYB2014/CH-30-HEALTH AND FAMILY WELFARE/TABLE 30.1.xlsx\"\n\"IN.HLTH.GOVHOSPTL.PER100K\",\"Government Hospitals (Number) Per 100,000 Population\",\"Health infrastructure indicator  - Number of government hospitals (public) per 100,000 population\",\"Country Partnership Strategy for India \",\"Ministry of Health and Family Welfare, India.\\nhttp://mospi.nic.in/Mospi_New/Upload/SYB2014/CH-30-HEALTH AND FAMILY WELFARE/TABLE 30.1.xlsx\"\n\"IN.HLTH.HIVDEATH.EST\",\"HIV/AIDS Related Death Estimates\",\"State/UT-wise HIV/AIDS Related Death Estimates with Uncertainty Bounds\",\"Country Partnership Strategy for India \",\"Source: DATA.GOV.IN under Ministry of Health and Family Welfare, Department of AIDS Control, India\\nhttp://data.gov.in/catalogs#sort_by=changed&sort_order=DESC&items_per_page=20&path=group_name/hiv-estimates-14175/ministry_department/ministry-health-and-fa\"\n\"IN.HLTH.HIVINFECTION.EST\",\"HIV Infection Estimates\",\"State/UT-wise Annual New HIV Infection among Adults (15+ Years) With Uncertainty Bounds\",\"Country Partnership Strategy for India \",\"Source: DATA.GOV.IN under Ministry of Health and Family Welfare, Department of AIDS Control, India\\nhttp://data.gov.in/catalogs#sort_by=changed&sort_order=DESC&items_per_page=20&path=group_name/hiv-estimates-14175/ministry_department/ministry-health-and-fa\"\n\"IN.HLTH.HLTHSTAFF.NUM\",\"Health visitors & Health supervisors\",\"Typically in a State in India, health visitors and supervisors include a number of job titles such as Female Health Supervisor, Block Health Visitor, District Public Health Officer, State Public Health Nursing Supervisor, Directors, Additional Directors, Deputy Directors and other officials in the State's Public Health System. \\nSource: http://www.iimahd.ernet.in/publications/data/2010-02-04Sharma.pdf\",\"Country Partnership Strategy for India \",\"Indian Nursing Council, Pharmacy Council of India.\\nDirectorate General of Health Services(C.B.H.I.)\\nhttp://mospi.nic.in/Mospi_New/Upload/SYB2014/CH-30-HEALTH AND FAMILY WELFARE/TABLE 30.9.xlsx\"\n\"IN.HLTH.MALARIA.CASES\",\"Malaria - Cases\",\"Reported cases of Malaria infection\",\"Country Partnership Strategy for India \",\" Source: Central Bureau of  Health Intelligence,  Ministry of Health & Family Welfare, India \\nTABLE 30.15:  NUMBER OF CASES AND DEATHS DUE TO DISEASES\\nhttp://mospi.nic.in/Mospi_New/upload/SYB2014/CH-30-HEALTH AND FAMILY WELFARE/Table 30.15.xls\"\n\"IN.HLTH.MALARIA.DEATH\",\"Malaria - Deaths\",\"Reported cases of Death due to Malaria\",\"Country Partnership Strategy for India \",\" Source: Central Bureau of  Health Intelligence,  Ministry of Health & Family Welfare, India \\nTABLE 30.15:  NUMBER OF CASES AND DEATHS DUE TO DISEASES\\nhttp://mospi.nic.in/Mospi_New/upload/SYB2014/CH-30-HEALTH AND FAMILY WELFARE/Table 30.15.xls\"\n\"IN.HLTH.SUBCTR.NUM\",\"Number of Sub-Centers (SCs)\",\"Structure for the Rural health Infastucture consists of 4 levels -- District Hospitals (DH), Community Health Centers (CHC), Primary Health Centers (PHC), and Sub-Centers (SC). The number of Sub-Centers (SCs) refers to public facilities.  The number of Sub-Centers (SCs) refer to public facilities under the National Rural Health Mission (NRHM) and the National Urban Health Mission (NUHM) (see original source)\",\"Country Partnership Strategy for India \",\"Ministry of Health and Family Welfare, India.\\nhttp://mospi.nic.in/Mospi_New/Upload/SYB2014/CH-30-HEALTH AND FAMILY WELFARE/TABLE 30.6.xlsx\"\n\"IN.LABR.LABR.MYS\",\"Labor Force ages 15+ Rural & Urban: Mean Years of Schooling\",\"The labor force participation rate is the percentage of working-age persons in an economy who are employed, or are unemployed but looking for a job. Typically \\\"working-age persons\\\" is defined as people between the ages of 16-59. \\nThe estimates of LFPR in different approaches provide information on the following aspects:\\ni) number of persons in labour-force - i.e., employed or unemployed-- according to\\nusual principal status (PS) and according to the principal and subsidiary status (SS) taken together (PS+SS),\\nPeople in those age groups who are not counted as participating in the labor force are typically students, homemakers, and persons under the age of 59 who are retired.\\n\",\"Country Partnership Strategy for India \",\"Source: NSS Report NO:531:Employment and Unemployment Situtation in India, July-2007- June 2008, statement no:10.1, Chapter 3\\nDatabook for DCH; 18th December 2013\"\n\"IN.LABR.LFPR.TOTL\",\"LFPR per 1000 for ages 15+ Rural & Urban: Level All Levels\",\"The labor force participation rate is the percentage of working-age persons in an economy who are employed, or are unemployed but looking for a job. Typically \\\"working-age persons\\\" is defined as people between the ages of 16-59. \\nThe estimates of LFPR in different approaches provide information on the following aspects:\\ni) number of persons in labour-force - i.e., employed or unemployed-- according to\\nusual principal status (PS) and according to the principal and subsidiary status (SS) taken together (PS+SS),\\nPeople in those age groups who are not counted as participating in the labor force are typically students, homemakers, and persons under the age of 59 who are retired.\\n\",\"Country Partnership Strategy for India \",\"Source: NSS Report NO:531:Employment and Unemployment Situtation in India, July-2007- June 2008, statement no:10.1, Chapter 3\\nDatabook for DCH; 18th December 2013\"\n\"IN.LABR.LFPR.TOTL.DIPL\",\"LFPR per 1000 for ages 15+ Rural & Urban: Level Diploma/Cert\",\"The labor force participation rate is the percentage of working-age persons in an economy who are employed, or are unemployed but looking for a job. Typically \\\"working-age persons\\\" is defined as people between the ages of 16-59. \\nThe estimates of LFPR in different approaches provide information on the following aspects:\\ni) number of persons in labour-force - i.e., employed or unemployed-- according to\\nusual principal status (PS) and according to the principal and subsidiary status (SS) taken together (PS+SS),\\nPeople in those age groups who are not counted as participating in the labor force are typically students, homemakers, and persons under the age of 59 who are retired.\\n\",\"Country Partnership Strategy for India \",\"Source: NSS Report NO:531:Employment and Unemployment Situtation in India, July-2007- June 2008, statement no:10.1, Chapter 3\\nDatabook for DCH; 18th December 2013\"\n\"IN.LABR.LFPR.TOTL.HSCNDRY\",\"LFPR per 1000 for ages 15+ Rural & Urban: Level Hr. Secondary\",\"The labor force participation rate is the percentage of working-age persons in an economy who are employed, or are unemployed but looking for a job. Typically \\\"working-age persons\\\" is defined as people between the ages of 16-59. \\nThe estimates of LFPR in different approaches provide information on the following aspects:\\ni) number of persons in labour-force - i.e., employed or unemployed-- according to\\nusual principal status (PS) and according to the principal and subsidiary status (SS) taken together (PS+SS),\\nPeople in those age groups who are not counted as participating in the labor force are typically students, homemakers, and persons under the age of 59 who are retired.\\n\",\"Country Partnership Strategy for India \",\"Source: NSS Report NO:531:Employment and Unemployment Situtation in India, July-2007- June 2008, statement no:10.1, Chapter 3\\nDatabook for DCH; 18th December 2013\"\n\"IN.LABR.LFPR.TOTL.MIDDL\",\"LFPR per 1000 for ages 15+ Rural & Urban: Level Middle\",\"The labor force participation rate is the percentage of working-age persons in an economy who are employed, or are unemployed but looking for a job. Typically \\\"working-age persons\\\" is defined as people between the ages of 16-59. \\nThe estimates of LFPR in different approaches provide information on the following aspects:\\ni) number of persons in labour-force - i.e., employed or unemployed-- according to\\nusual principal status (PS) and according to the principal and subsidiary status (SS) taken together (PS+SS),\\nPeople in those age groups who are not counted as participating in the labor force are typically students, homemakers, and persons under the age of 59 who are retired.\\n\",\"Country Partnership Strategy for India \",\"Source: NSS Report NO:531:Employment and Unemployment Situtation in India, July-2007- June 2008, statement no:10.1, Chapter 3\\nDatabook for DCH; 18th December 2013\"\n\"IN.LABR.LFPR.TOTL.NOTLITRT\",\"LFPR per 1000 for ages 15+ Rural & Urban: Level Not Literate\",\"The labor force participation rate is the percentage of working-age persons in an economy who are employed, or are unemployed but looking for a job. Typically \\\"working-age persons\\\" is defined as people between the ages of 16-59. \\nThe estimates of LFPR in different approaches provide information on the following aspects:\\ni) number of persons in labour-force - i.e., employed or unemployed-- according to\\nusual principal status (PS) and according to the principal and subsidiary status (SS) taken together (PS+SS),\\nPeople in those age groups who are not counted as participating in the labor force are typically students, homemakers, and persons under the age of 59 who are retired.\\n\",\"Country Partnership Strategy for India \",\"Source: NSS Report NO:531:Employment and Unemployment Situtation in India, July-2007- June 2008, statement no:10.1, Chapter 3\\nDatabook for DCH; 18th December 2013\"\n\"IN.LABR.LFPR.TOTL.PG\",\"LFPR per 1000 for ages 15+ Rural & Urban: Level Degree + Post Graduate\",\"The labor force participation rate is the percentage of working-age persons in an economy who are employed, or are unemployed but looking for a job. Typically \\\"working-age persons\\\" is defined as people between the ages of 16-59. \\nThe estimates of LFPR in different approaches provide information on the following aspects:\\ni) number of persons in labour-force - i.e., employed or unemployed-- according to\\nusual principal status (PS) and according to the principal and subsidiary status (SS) taken together (PS+SS),\\nPeople in those age groups who are not counted as participating in the labor force are typically students, homemakers, and persons under the age of 59 who are retired.\\n\",\"Country Partnership Strategy for India \",\"Source: NSS Report NO:531:Employment and Unemployment Situtation in India, July-2007- June 2008, statement no:10.1, Chapter 3\\nDatabook for DCH; 18th December 2013\"\n\"IN.LABR.LFPR.TOTL.PRIMRY\",\"LFPR per 1000 for ages 15+ Rural & Urban: Level Literacy upto Primary\",\"The labor force participation rate is the percentage of working-age persons in an economy who are employed, or are unemployed but looking for a job. Typically \\\"working-age persons\\\" is defined as people between the ages of 16-59. \\nThe estimates of LFPR in different approaches provide information on the following aspects:\\ni) number of persons in labour-force - i.e., employed or unemployed-- according to\\nusual principal status (PS) and according to the principal and subsidiary status (SS) taken together (PS+SS),\\nPeople in those age groups who are not counted as participating in the labor force are typically students, homemakers, and persons under the age of 59 who are retired.\\n\",\"Country Partnership Strategy for India \",\"Source: NSS Report NO:531:Employment and Unemployment Situtation in India, July-2007- June 2008, statement no:10.1, Chapter 3\\nDatabook for DCH; 18th December 2013\"\n\"IN.LABR.LFPR.TOTL.SCNDRY\",\"LFPR per 1000 for ages 15+ Rural & Urban: Level Secondary\",\"The labor force participation rate is the percentage of working-age persons in an economy who are employed, or are unemployed but looking for a job. Typically \\\"working-age persons\\\" is defined as people between the ages of 16-59. \\nThe estimates of LFPR in different approaches provide information on the following aspects:\\ni) number of persons in labour-force - i.e., employed or unemployed-- according to\\nusual principal status (PS) and according to the principal and subsidiary status (SS) taken together (PS+SS),\\nPeople in those age groups who are not counted as participating in the labor force are typically students, homemakers, and persons under the age of 59 who are retired.\\n\",\"Country Partnership Strategy for India \",\"Source: NSS Report NO:531:Employment and Unemployment Situtation in India, July-2007- June 2008, statement no:10.1, Chapter 3\\nDatabook for DCH; 18th December 2013\"\n\"IN.POV.HCR.EST.RURL\",\"Poverty HCR Estimates (%) - Rural\",\"Poverty Head Count Ratio is the percentage of the rural population living below the poverty line estimated based on population-weighted subgroup estimates (rural and urban) from household surveys.\",\"Country Partnership Strategy for India \",\"Sources:\\n1.  1993-94 and 2004-05 Estimates: Press Note on Poverty Estimates, Planning Commission, Govt. of India, Jan 2011\\n2.  2009-10 Estimates: Press Note on Poverty Estimates, 2009-10, Planning Commission, Govt. of India March 2012\\n3.  2011-12 Estimate\"\n\"IN.POV.HCR.EST.TOTL\",\"Poverty HCR Estimates (%) - Total\",\"Poverty Head Count Ratio is the percentage of the total population living below the poverty line estimated based on population-weighted subgroup estimates (rural and urban) from household surveys.\",\"Country Partnership Strategy for India \",\"Sources:\\n1.  1993-94 and 2004-05 Estimates: Press Note on Poverty Estimates, Planning Commission, Govt. of India, Jan 2011\\n2.  2009-10 Estimates: Press Note on Poverty Estimates, 2009-10, Planning Commission, Govt. of India March 2012\\n3.  2011-12 Estimate\"\n\"IN.POV.HCR.EST.URBN\",\"Poverty HCR Estimates (%) - Urban\",\"Poverty Head Count Ratio is the percentage of the urban population living below the poverty line estimated based on population-weighted subgroup estimates (rural and urban) from household surveys.\",\"Country Partnership Strategy for India \",\"Sources:\\n1.  1993-94 and 2004-05 Estimates: Press Note on Poverty Estimates, Planning Commission, Govt. of India, Jan 2011\\n2.  2009-10 Estimates: Press Note on Poverty Estimates, 2009-10, Planning Commission, Govt. of India March 2012\\n3.  2011-12 Estimate\"\n\"IN.POV.HH.DRKNGWATER\",\"Total households with drinking water facility\",\"Total households (HH) w/ drinking water facility  (Excl. institutional HH)\",\"Country Partnership Strategy for India \",\"Source: Databook for DCH December 2013 (Page 330 of 333) - Planning Commission, Government of India\"\n\"IN.POV.HH.DRKNGWATER.AWAY\",\"Availability of drinking water from a source away\",\"Distribution of households by availability of drinking water sources - away from premises\",\"Country Partnership Strategy for India \",\"Source: Databook for DCH December 2013 (Page 330 of 333) - Planning Commission, Government of India\"\n\"IN.POV.HH.DRKNGWATER.NEAR\",\"Availability of drinking water source near the premises\",\"Distribution of households by availability of drinking water sources - near the premises\",\"Country Partnership Strategy for India \",\"Source: Databook for DCH December 2013 (Page 330 of 333) - Planning Commission, Government of India\"\n\"IN.POV.HH.DRKNGWATER.WITHIN\",\"Availability of drinking water source within the premises\",\"Distribution of households by availability of drinking water sources - within the premises\",\"Country Partnership Strategy for India \",\"Source: Databook for DCH December 2013 (Page 330 of 333) - Planning Commission, Government of India\"\n\"IN.POV.INF.MORTRATE\",\"Infant Mortality Rate (per 1,000)\",\"Infant Mortality Rate (IMR) per 1000: Infant mortality rate (IMR) is the number of deaths of children less than one year of age per 1000 live births. The rate for a given region is the number of children dying under one year of age, divided by the number of live births during the year, multiplied by 1,000.\",\"Country Partnership Strategy for India \",\"Source: SRS Bulletin, Registrar General, India, January 2011\"\n\"IN.POV.INF.MORTRATE.UNDR5\",\"Under 5 Mortality Rate (Per 1,000)\",\"Under 5 Mortality Rate per 1000 is the  number of deaths of children less than five years of age per 1000 live births. The rate for a given region is the number of children dying under five years of age, divided by the number of live births during that period, multiplied by 1,000.\",\"Country Partnership Strategy for India \",\"Source: SRS Bulletin, Registrar General, India, January 2011\"\n\"IN.POV.LIT.RAT.FEMALE\",\"Literacy Rate Female (%)\",\"Percentage of female population age 7 and above who can read and write. For the purposes of census a person aged seven and above, who can both read and write with understanding in any language, is treated as literate. A person, who can only read but cannot write, is not literate. \",\"Country Partnership Strategy for India \",\"Source: Census, Registrar General of India, Ministry of Home Affairs, India\"\n\"IN.POV.LIT.RAT.MALE\",\"Literacy Rate Male (%)\",\"Percentage of male population age 7 and above who can read and write. For the purposes of census a person aged seven and above, who can both read and write with understanding in any language, is treated as literate. A person, who can only read but cannot write, is not literate. \",\"Country Partnership Strategy for India \",\"Source: Census, Registrar General of India, Ministry of Home Affairs, India\"\n\"IN.POV.LIT.RAT.TOTL\",\"Literacy Rate (%)\",\"Percentage of population age 7 and above who can read and write. For the purposes of census a person aged seven and above, who can both read and write with understanding in any language, is treated as literate. A person, who can only read but cannot write, is not literate. \",\"Country Partnership Strategy for India \",\"Source: Census, Registrar General of India, Ministry of Home Affairs, India\"\n\"IN.POV.LTRIN.POV.AWAY\",\"Latrine not available within premises\",\"Distribution of households by type of latrine facility -  not available within premises \",\"Country Partnership Strategy for India \",\"Source: Databook for DCH December 2013 (Page 330 of 333) - Planning Commission, GOI\"\n\"IN.POV.LTRIN.POV.WITHIN\",\"Latrine facility available within premises\",\"Distribution of households by type of latrine facility -  available within premises\",\"Country Partnership Strategy for India \",\"Source: Databook for DCH December 2013 (Page 330 of 333) - Planning Commission, GOI\"\n\"IN.TRANSPORT.NATLHWY.BELOWSTD\",\"National Highways (surfaced length) - Below standard single lane (KMs)\",\"National Highways: Arterial roads of the country for inter-state and strategic defense movements. \\nSurfaced Road: : A road with a hard smooth surface of bitumen or tar.\",\"Country Partnership Strategy for India \",\" Source: Transport Research Wing, Ministry of Road Transport and Highways\\nTable21.5-LENGTH OF NATIONAL AND STATE HIGHWAYS-BY WIDTH\\nHttp://mospi.nic.in/mospi_new/upload/SYB2014/CH-21-ROADS/Table 21.5.xls\"\n\"IN.TRANSPORT.NATLHWY.DBLLANE\",\"National Highways (surfaced length) - Standard double lane (KMs)\",\"National Highways: Arterial roads of the country for inter-state and strategic defense movements. \\nSurfaced Road: : A road with a hard smooth surface of bitumen or tar.\",\"Country Partnership Strategy for India \",\" Source: Transport Research Wing, Ministry of Road Transport and Highways\\nTable21.5-LENGTH OF NATIONAL AND STATE HIGHWAYS-BY WIDTH\\nHttp://mospi.nic.in/mospi_new/upload/SYB2014/CH-21-ROADS/Table 21.5.xls\"\n\"IN.TRANSPORT.NATLHWY.MULTLANE\",\"National Highways (surfaced length) - Standard multi lane (KMs)\",\"National Highways: Arterial roads of the country for inter-state and strategic defense movements. \\nSurfaced Road: : A road with a hard smooth surface of bitumen or tar.\",\"Country Partnership Strategy for India \",\" Source: Transport Research Wing, Ministry of Road Transport and Highways\\nTable21.5-LENGTH OF NATIONAL AND STATE HIGHWAYS-BY WIDTH\\nHttp://mospi.nic.in/mospi_new/upload/SYB2014/CH-21-ROADS/Table 21.5.xls\"\n\"IN.TRANSPORT.NATLHWY.ONELANESTD\",\"National Highways (surfaced length) - Standard single lane (KMs)\",\"National Highways: Arterial roads of the country for inter-state and strategic defense movements. \\nSurfaced Road: : A road with a hard smooth surface of bitumen or tar.\",\"Country Partnership Strategy for India \",\" Source: Transport Research Wing, Ministry of Road Transport and Highways\\nTable21.5-LENGTH OF NATIONAL AND STATE HIGHWAYS-BY WIDTH\\nHttp://mospi.nic.in/mospi_new/upload/SYB2014/CH-21-ROADS/Table 21.5.xls\"\n\"IN.TRANSPORT.NATLHWY.TOTL\",\"National Highways (surfaced length) - Total (KMs)\",\"National Highways: Arterial roads of the country for inter-state and strategic defense movements. \\nSurfaced Road: : A road with a hard smooth surface of bitumen or tar.\",\"Country Partnership Strategy for India \",\" Source: Transport Research Wing, Ministry of Road Transport and Highways\\nTable21.5-LENGTH OF NATIONAL AND STATE HIGHWAYS-BY WIDTH\\nHttp://mospi.nic.in/mospi_new/upload/SYB2014/CH-21-ROADS/Table 21.5.xls\"\n\"IN.TRANSPORT.RD.URBN\",\"Urban Roads (KMs)\",\"Length of Urban Roads (in KMs)\",\"Country Partnership Strategy for India \",\"Source: Transport and Research Wing, Ministry of Road Transport and Highways, India\\nRoad Transport : Table 1B.3 : Statewise Rural Road Density Per 1000 Population\\nhttp://mospi.nic.in/Mospi_New/upload/Infra_stat_2010/1.ch_road.pdf\"\n\"IN.TRANSPORT.RD.URBN.SURFACED\",\"Urban Roads Surfaced (KMs)\",\"Length of Surfaced Urban Roads (in KMs)\",\"Country Partnership Strategy for India \",\"Source: Transport and Research Wing, Ministry of Road Transport and Highways, India\\nRoad Transport : Table 1B.5 : Statewise Rural Road Density Per 1000 Population\\nhttp://mospi.nic.in/Mospi_New/upload/Infra_stat_2010/1.ch_road.pdf\"\n\"IN.TRANSPORT.RDCRASH.INJURD.NUM\",\"Number of seriously injured in road traffic crashes\",\"Number of seriously injured in road traffic crashes\",\"Country Partnership Strategy for India \",\"Source: Ministry of Road Transport and Highways (2011)\"\n\"IN.TRANSPORT.RDCRASH.NUM\",\"Number of road crashes\",\"Number of road crashes\",\"Country Partnership Strategy for India \",\"Source: Ministry of Road Transport and Highways (2011)\"\n\"IN.TRANSPORT.RURLRD.DENSIT\",\"Rural Road Density (KMs/1000 Population)\",\"Rural roads density is measured in KMs of rural roads in the area (State, District) divided by population in thousands in that area (State, District)\\nRural roads are roads within a district for which the specifications are lower than for district roads. \",\"Country Partnership Strategy for India \",\"Source: Transport and Research Wing, Ministry of Road Transport and Highways, India\\nRoad Transport : Table 1A.10 : Statewise Rural Road Density Per 1000 Population\\nhttp://mospi.nic.in/Mospi_New/upload/Infra_stat_2010/1.ch_road.pdf\"\n\"IN.TRANSPORT.TRAFDEATH.NUM\",\"Number of road traffic deaths\",\"Number of road traffic deaths\",\"Country Partnership Strategy for India \",\"Source: Ministry of Road Transport and Highways (2011)\"\n\"IN.TRANSPORT.URBNRD.DENSIT\",\"Urban Road Density (KMs Per 1000 Population)\",\"Urban roads density is measured in KMs of Urban roads in the area (State, District) divided by population in thousands in that area (State, District)\\nUrban roads are roads within a limits of a Municipality, Military Cantonment, Port o a Railway Authority.\",\"Country Partnership Strategy for India \",\"Source: Transport and Research Wing, Ministry of Road Transport and Highways, India\\nRoad Transport : Table 1A.8 : Statewise Rural Road Density Per 1000 Population\\nhttp://mospi.nic.in/Mospi_New/upload/Infra_stat_2010/1.ch_road.pdf\"\n\"INONFUEL\",\"Non-energy commodities, 2000=100, current$\",\"Non-energy index, a Laspeyres Index with fixed weights based on 2002-2004 average developing countries export values, for 34 commodities contain in the agriculture, fertilizer, and metals and minerals indices.\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"IOTHERFOOD\",\"Agr: Food: Other food, 2000=100, current$\",\"Other food index includes bananas, beef, chicken meat, oranges and sugar.\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"IOTHERRAWMAT\",\"Agr: Raw:2 Oth raw materials, 2000=100, current$\",\"Other raw materials index includes cotton, natural rubber and tobacco.\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"IP.JRN.ARTC.SC\",\"Scientific and technical journal articles\",\"Scientific and technical journal articles refer to the number of scientific and engineering articles published in the following fields: physics, biology, chemistry, mathematics, clinical medicine, biomedical research, engineering and technology, and earth and space sciences.\",\"World Development Indicators\",\"National Science Foundation, Science and Engineering Indicators.\"\n\"IP.PAT.NRES\",\"Patent applications, nonresidents\",\"Patent applications are worldwide patent applications filed through the Patent Cooperation Treaty procedure or with a national patent office for exclusive rights for an invention--a product or process that provides a new way of doing something or offers a new technical solution to a problem. A patent provides protection for the invention to the owner of the patent for a limited period, generally 20 years.\",\"World Development Indicators\",\"World Intellectual Property Organization (WIPO), WIPO Patent Report: Statistics on Worldwide Patent Activity. The International Bureau of WIPO assumes no responsibility with respect to the transformation of these data.\"\n\"IP.PAT.RESD\",\"Patent applications, residents\",\"Patent applications are worldwide patent applications filed through the Patent Cooperation Treaty procedure or with a national patent office for exclusive rights for an invention--a product or process that provides a new way of doing something or offers a new technical solution to a problem. A patent provides protection for the invention to the owner of the patent for a limited period, generally 20 years.\",\"World Development Indicators\",\"World Intellectual Property Organization (WIPO), WIPO Patent Report: Statistics on Worldwide Patent Activity. The International Bureau of WIPO assumes no responsibility with respect to the transformation of these data.\"\n\"IP.TMK.NRES\",\"Trademark applications, direct nonresident\",\"Trademark applications filed are applications to register a trademark with a national or regional Intellectual Property (IP) office. A trademark is a distinctive sign which identifies certain goods or services as those produced or provided by a specific person or enterprise. A trademark provides protection to the owner of the mark by ensuring the exclusive right to use it to identify goods or services, or to authorize another to use it in return for payment. The period of protection varies, but a trademark can be renewed indefinitely beyond the time limit on payment of additional fees. Direct nonresident trademark applications are those filed by applicants from abroad directly at a given national IP office.\",\"World Development Indicators\",\"World Intellectual Property Organization (WIPO), WIPO Patent Report: Statistics on Worldwide Patent Activity. The International Bureau of WIPO assumes no responsibility with respect to the transformation of these data.\"\n\"IP.TMK.RESD\",\"Trademark applications, direct resident\",\"Trademark applications filed are applications to register a trademark with a national or regional Intellectual Property (IP) office. A trademark is a distinctive sign which identifies certain goods or services as those produced or provided by a specific person or enterprise. A trademark provides protection to the owner of the mark by ensuring the exclusive right to use it to identify goods or services, or to authorize another to use it in return for payment. The period of protection varies, but a trademark can be renewed indefinitely beyond the time limit on payment of additional fees. Direct resident trademark applications are those filed by domestic applicants directly at a given national IP office.\",\"World Development Indicators\",\"World Intellectual Property Organization (WIPO), WIPO Patent Report: Statistics on Worldwide Patent Activity. The International Bureau of WIPO assumes no responsibility with respect to the transformation of these data.\"\n\"IP.TMK.TOTL\",\"Trademark applications, total\",\"Trademark applications filed are applications to register a trademark with a national or regional Intellectual Property (IP) office. A trademark is a distinctive sign which identifies certain goods or services as those produced or provided by a specific person or enterprise. A trademark provides protection to the owner of the mark by ensuring the exclusive right to use it to identify goods or services, or to authorize another to use it in return for payment. The period of protection varies, but a trademark can be renewed indefinitely beyond the time limit on payment of additional fees.\",\"World Development Indicators\",\"World Intellectual Property Organization (WIPO), World Intellectual Property Indicators and www.wipo.int/econ_stat. The International Bureau of WIPO assumes no responsibility with respect to the transformation of these data.\"\n\"IPTOTNSKD\",\"Industrial Production, constant US$\",\"An economic indicator that measures changes in output for the industrial sector of the economy. The industrial sector includes manufacturing, mining, and utilities. Data is in constant US$, and not seasonally adjusted. The base year is 2005.\",\"Global Economic Monitor\",\"World Bank staff calculations based on Datastream data.\"\n\"IPTOTSAKD\",\"Industrial Production, constant US$, seas. adj.\",\"An economic indicator that measures changes in output for the industrial sector of the economy. The industrial sector includes manufacturing, mining, and utilities. Data is in constant US$, seasonally adjusted. The base year is 2005.\",\"Global Economic Monitor\",\"World Bank staff calculations based on Datastream data.\"\n\"IQ.BTI.STTS.XQ\",\"State institutions with adequately established/differentiated power structure index (1=lowest; 10=highest)\",\"State institutions with adequately established/differentiated power structure index (1=lowest; 10=highest) is a composite indicator (Bertelsmann Transformation Index) that combines stateness and rule of law categories--about 8 indicators are aggregated. Stateness focuses on the existence of adequately established and differentiated power structures in the country, while rule of law focuses on the existence of check and balance mechanisms that can monitor each other and ensure enforcement of civil rights.\",\"Corporate Scorecard\",\"World Bank staff estimates from Bertelsmann Transformation Index.\"\n\"IQ.CPA.BREG.XQ\",\"CPIA business regulatory environment rating (1=low to 6=high)\",\"Business regulatory environment assesses the extent to which the legal, regulatory, and policy environments help or hinder private businesses in investing, creating jobs, and becoming more productive.\",\"World Development Indicators\",\"World Bank Group, CPIA database (http://www.worldbank.org/ida).\"\n\"IQ.CPA.DEBT.XQ\",\"CPIA debt policy rating (1=low to 6=high)\",\"Debt policy assesses whether the debt management strategy is conducive to minimizing budgetary risks and ensuring long-term debt sustainability.\",\"World Development Indicators\",\"World Bank Group, CPIA database (http://www.worldbank.org/ida).\"\n\"IQ.CPA.ECON.XQ\",\"CPIA economic management cluster average (1=low to 6=high)\",\"The economic management cluster includes macroeconomic management, fiscal policy, and debt policy.\",\"World Development Indicators\",\"World Bank Group, CPIA database (http://www.worldbank.org/ida).\"\n\"IQ.CPA.ENVR.XQ\",\"CPIA policy and institutions for environmental sustainability rating (1=low to 6=high)\",\"Policy and institutions for environmental sustainability assess the extent to which environmental policies foster the protection and sustainable use of natural resources and the management of pollution.\",\"World Development Indicators\",\"World Bank Group, CPIA database (http://www.worldbank.org/ida).\"\n\"IQ.CPA.FINQ.XQ\",\"CPIA quality of budgetary and financial management rating (1=low to 6=high)\",\"Quality of budgetary and financial management assesses the extent to which there is a comprehensive and credible budget linked to policy priorities, effective financial management systems, and timely and accurate accounting and fiscal reporting, including timely and audited public accounts.\",\"World Development Indicators\",\"World Bank Group, CPIA database (http://www.worldbank.org/ida).\"\n\"IQ.CPA.FINS.XQ\",\"CPIA financial sector rating (1=low to 6=high)\",\"Financial sector assesses the structure of the financial sector and the policies and regulations that affect it.\",\"World Development Indicators\",\"World Bank Group, CPIA database (http://www.worldbank.org/ida).\"\n\"IQ.CPA.FISP.XQ\",\"CPIA fiscal policy rating (1=low to 6=high)\",\"Fiscal policy assesses the short- and medium-term sustainability of fiscal policy (taking into account monetary and exchange rate policy and the sustainability of the public debt) and its impact on growth.\",\"World Development Indicators\",\"World Bank Group, CPIA database (http://www.worldbank.org/ida).\"\n\"IQ.CPA.GNDR.XQ\",\"CPIA gender equality rating (1=low to 6=high)\",\"Gender equality assesses the extent to which the country has installed institutions and programs to enforce laws and policies that promote equal access for men and women in education, health, the economy, and protection under law.\",\"World Development Indicators\",\"World Bank Group, CPIA database (http://www.worldbank.org/ida).\"\n\"IQ.CPA.HRES.XQ\",\"CPIA building human resources rating (1=low to 6=high)\",\"Building human resources assesses the national policies and public and private sector service delivery that affect the access to and quality of health and education services, including prevention and treatment of HIV/AIDS, tuberculosis, and malaria.\",\"World Development Indicators\",\"World Bank Group, CPIA database (http://www.worldbank.org/ida).\"\n\"IQ.CPA.IRAI.XQ\",\"IDA resource allocation index (1=low to 6=high)\",\"IDA Resource Allocation Index is obtained by calculating the average score for each cluster and then by averaging those scores. For each of 16 criteria countries are rated on a scale of 1 (low) to 6 (high).\",\"World Development Indicators\",\"World Bank Group, CPIA database (http://www.worldbank.org/ida).\"\n\"IQ.CPA.MACR.XQ\",\"CPIA macroeconomic management rating (1=low to 6=high)\",\"Macroeconomic management assesses the monetary, exchange rate, and aggregate demand policy framework.\",\"World Development Indicators\",\"World Bank Group, CPIA database (http://www.worldbank.org/ida).\"\n\"IQ.CPA.PADM.XQ\",\"CPIA quality of public administration rating (1=low to 6=high)\",\"Quality of public administration assesses the extent to which civilian central government staff is structured to design and implement government policy and deliver services effectively.\",\"World Development Indicators\",\"World Bank Group, CPIA database (http://www.worldbank.org/ida).\"\n\"IQ.CPA.PRES.XQ\",\"CPIA equity of public resource use rating (1=low to 6=high)\",\"Equity of public resource use assesses the extent to which the pattern of public expenditures and revenue collection affects the poor and is consistent with national poverty reduction priorities.\",\"World Development Indicators\",\"World Bank Group, CPIA database (http://www.worldbank.org/ida).\"\n\"IQ.CPA.PROP.XQ\",\"CPIA property rights and rule-based governance rating (1=low to 6=high)\",\"Property rights and rule-based governance assess the extent to which private economic activity is facilitated by an effective legal system and rule-based governance structure in which property and contract rights are reliably respected and enforced.\",\"World Development Indicators\",\"World Bank Group, CPIA database (http://www.worldbank.org/ida).\"\n\"IQ.CPA.PROT.XQ\",\"CPIA social protection rating (1=low to 6=high)\",\"Social protection and labor assess government policies in social protection and labor market regulations that reduce the risk of becoming poor, assist those who are poor to better manage further risks, and ensure a minimal level of welfare to all people.\",\"World Development Indicators\",\"World Bank Group, CPIA database (http://www.worldbank.org/ida).\"\n\"IQ.CPA.PUBS.XQ\",\"CPIA public sector management and institutions cluster average (1=low to 6=high)\",\"The public sector management and institutions cluster includes property rights and rule-based governance, quality of budgetary and financial management, efficiency of revenue mobilization, quality of public administration, and transparency, accountability, and corruption in\\nthe public sector.\",\"World Development Indicators\",\"World Bank Group, CPIA database (http://www.worldbank.org/ida).\"\n\"IQ.CPA.REVN.XQ\",\"CPIA efficiency of revenue mobilization rating (1=low to 6=high)\",\"Efficiency of revenue mobilization assesses the overall pattern of revenue mobilization--not only the de facto tax structure, but also revenue from all sources as actually collected.\",\"World Development Indicators\",\"World Bank Group, CPIA database (http://www.worldbank.org/ida).\"\n\"IQ.CPA.SOCI.XQ\",\"CPIA policies for social inclusion/equity cluster average (1=low to 6=high)\",\"The policies for social inclusion and equity cluster includes gender equality, equity of public resource use, building human resources, social protection and labor, and policies and institutions for environmental sustainability.\",\"World Development Indicators\",\"World Bank Group, CPIA database (http://www.worldbank.org/ida).\"\n\"IQ.CPA.STRC.XQ\",\"CPIA structural policies cluster average (1=low to 6=high)\",\"The structural policies cluster includes trade, financial sector, and business regulatory environment.\",\"World Development Indicators\",\"World Bank Group, CPIA database (http://www.worldbank.org/ida).\"\n\"IQ.CPA.TRAD.XQ\",\"CPIA trade rating (1=low to 6=high)\",\"Trade assesses how the policy framework fosters trade in goods.\",\"World Development Indicators\",\"World Bank Group, CPIA database (http://www.worldbank.org/ida).\"\n\"IQ.CPA.TRAN.XQ\",\"CPIA transparency, accountability, and corruption in the public sector rating (1=low to 6=high)\",\"Transparency, accountability, and corruption in the public sector assess the extent to which the executive can be held accountable for its use of funds and for the results of its actions by the electorate and by the legislature and judiciary, and the extent to which public employees within the executive are required to account for administrative decisions, use of resources, and results obtained. The three main dimensions assessed here are the accountability of the executive to oversight institutions and of public employees for their performance, access of civil society to information on public affairs, and state capture by narrow vested interests.\",\"World Development Indicators\",\"World Bank Group, CPIA database (http://www.worldbank.org/ida).\"\n\"IQ.FRH.GEFF.XQ\",\"Effective and accountable government index (0=lowest; 7=highest)\",\"Effective and accountable government index (0=lowest; 7=highest) is a Freedom House indicator that attempts to capture how resources are managed using the following questions: (1) Are the executive, legislative, and judicial branches of government able to oversee the actions of one another and hold each other accountable for any excessive exercise of power? (2) Does the state system ensure that people's political choices are free from domination by the specific interests of power groups (e.g., the military, foreign powers, totalitarian parties, regional hierarchies, and/or economic oligarchies)? (3) Is the civil service selected, promoted, and dismissed on the basis of open competition and by merit? (4) Is the state engaged in issues reflecting the interests of women; ethnic, religious, and other distinct groups; and disabled people?\",\"Corporate Scorecard\",\"World Bank staff estimates from Freedom House data.\"\n\"IQ.GII.INFO.XQ\",\"Public access to information index (0=lowest; 100=highest)\",\"Public access to information index (0=lowest; 100=highest) is a Global Integrity indicator that captures the in law and in practice status of access to information in a country.\",\"Corporate Scorecard\",\"World Bank staff estimates from Global Integrity Index.\"\n\"IQ.SCI.MTHD\",\"Methodology assessment of statistical capacity (scale 0 - 100)\",\"The Methodology score measures a country's ability fo adhere to internationally recommended standards and methods.\",\"World Development Indicators\",\"World Bank\"\n\"IQ.SCI.OVRL\",\"Overall level of statistical capacity (scale 0 - 100)\",\"The Statistical Capacity Indicator provides an overview of the capacity of a country's national statistical system based on a diagnostic framework thereby assessing three dimensions: Methodology, Source Data, and Periodicity and Timeliness.\",\"World Development Indicators\",\"World Bank\"\n\"IQ.SCI.PRDC\",\"Periodicity and timeliness assessment of statistical capacity (scale 0 - 100)\",\"The Periodicity score measures the availability and periodicity of key socioeconomic indicators.\",\"World Development Indicators\",\"World Bank\"\n\"IQ.SCI.SRCE\",\"Source data assessment of statistical capacity (scale 0 - 100)\",\"The Source Data score measures whether a country conducts data collection activities in line with internationally recommended periodicity, and whether data from administrative systems are available and reliable for statistical estimation purposes. \",\"World Development Indicators\",\"World Bank\"\n\"IQ.WEF.CUST.XQ\",\"Burden of customs procedure, WEF (1=extremely inefficient to 7=extremely efficient)\",\"Burden of Customs Procedure measures business executives' perceptions of their country's efficiency of customs procedures. The rating ranges from 1 to 7, with a higher score indicating greater efficiency. Data are from the World Economic Forum's Executive Opinion Survey, conducted for 30 years in collaboration with 150 partner institutes. The 2009 round included more than 13,000 respondents from 133 countries. Sampling follows a dual stratification based on company size and the sector of activity. Data are collected online or through in-person interviews. Responses are aggregated using sector-weighted averaging. The data for the latest year are combined with the data for the previous year to create a two-year moving average. Respondents evaluated the efficiency of customs procedures in their country. The lowest score (1) rates the customs procedure as extremely inefficient, and the highest score (7) as extremely efficient.\",\"World Development Indicators\",\"World Economic Forum, Global Competiveness Report and data files.\"\n\"IQ.WEF.PORT.XQ\",\"Quality of port infrastructure, WEF (1=extremely underdeveloped to 7=well developed and efficient by international standards)\",\"The Quality of Port Infrastructure measures business executives' perception of their country's port facilities. Data are from the World Economic Forum's Executive Opinion Survey, conducted for 30 years in collaboration with 150 partner institutes. The 2009 round included more than 13,000 respondents from 133 countries. Sampling follows a dual stratification based on company size and the sector of activity. Data are collected online or through in-person interviews. Responses are aggregated using sector-weighted averaging. The data for the latest year are combined with the data for the previous year to create a two-year moving average. Scores range from 1 (port infrastructure considered extremely underdeveloped) to 7 (port infrastructure considered efficient by international standards). Respondents in landlocked countries were asked how accessible are port facilities (1 = extremely inaccessible; 7 = extremely accessible).\",\"World Development Indicators\",\"World Economic Forum, Global Competiveness Report.\"\n\"IR10Y\",\"Interest Rates (10YR)\",\"A country's bond yield with a 10 year maturity\",\"Global Economic Monitor\",\"World Bank staff calculations based on Datastream data.\"\n\"IRAW_MATERIAL\",\"Agr: Raw materials, 2000=100, current$\",\"Agricultural raw materials index includes timber and other raw materials.\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"IRON_ORE\",\"Iron ore, cents/dmtu, current$\",\"Iron ore (Brazil), VALE (formerly CVRD) Carajas sinter feed, contract price, f.o.b. Ponta da Madeira.  Unit dry metric ton unit (dmtu) stands for mt 1% Fe-unit.  Prior to year 2010 annual contract prices.\",\"Global Economic Monitor (GEM) Commodities\",\"Vale; CVRD; UNCTAD; World Bank.\"\n\"IRON_ORE_SPOT\",\"Iron ore, $/dmt, current$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"\"\n\"IRSPREAD\",\"Sovereign Bond Interest Rate Spreads, basis points over US Treasuries\",\"\",\"Global Economic Monitor\",\"World Bank staff calculations based on Datastream data.\"\n\"IS.AIR.DPRT\",\"Air transport, registered carrier departures worldwide\",\"Registered carrier departures worldwide are domestic takeoffs and takeoffs abroad of air carriers registered in the country.\",\"World Development Indicators\",\"International Civil Aviation Organization, Civil Aviation Statistics of the World and ICAO staff estimates.\"\n\"IS.AIR.GOOD.MT.K1\",\"Air transport, freight (million ton-km)\",\"Air freight is the volume of freight, express, and diplomatic bags carried on each flight stage (operation of an aircraft from takeoff to its next landing), measured in metric tons times kilometers traveled.\",\"World Development Indicators\",\"International Civil Aviation Organization, Civil Aviation Statistics of the World and ICAO staff estimates.\"\n\"IS.AIR.PSGR\",\"Air transport, passengers carried\",\"Air passengers carried include both domestic and international aircraft passengers of air carriers registered in the country.\",\"World Development Indicators\",\"International Civil Aviation Organization, Civil Aviation Statistics of the World and ICAO staff estimates.\"\n\"IS.ROD.ALLS.ZS\",\"Access to an all-season road (% of rural population)\",\"Access to an all-season road is measured as the proportion of rural people who live within 2 kilometers (typically equivalent to a 20-minute walk) of an all-season road. An all-season road is a road that is motorable all year by the prevailing means of rural transport (often a pick-up or a truck which does not have four-wheel-drive). Predictable interruptions of short duration during inclement weather (e.g. heavy rainfall) are acceptable, particularly on low volume roads. The preferred approach to measuring this indicator is by analysis of household surveys that include appropriate questions about access to transport.\",\"International Development Association - Results Measurement System\",\"Compiled by World Bank staff from household surveys, specifically Living Standard Measurement Surveys (LSMS), Income/Expenditure Household Surveys (IES), Poverty Surveys (PS) and Core Welfare Indicators Questionnaires (CWIQ) carried out between 1994 to 2003.\"\n\"IS.RRS.GOOD.MT.K6\",\"Railways, goods transported (million ton-km)\",\"Goods transported by railway are the volume of goods transported by railway, measured in metric tons times kilometers traveled.\",\"World Development Indicators\",\"World Bank, Transportation, Water, and Information and Communications Technologies Department, Transport Division.\"\n\"IS.RRS.PASG.KM\",\"Railways, passengers carried (million passenger-km)\",\"Passengers carried by railway are the number of passengers transported by rail times kilometers traveled.\",\"World Development Indicators\",\"World Bank, Transportation, Water, and Information and Communications Technologies Department, Transport Division.\"\n\"IS.RRS.TOTL.KM\",\"Rail lines (total route-km)\",\"Rail lines are the length of railway route available for train service, irrespective of the number of parallel tracks.\",\"World Development Indicators\",\"World Bank, Transportation, Water, and Information and Communications Technologies Department, Transport Division.\"\n\"IS.SHP.GCNW.XQ\",\"Liner shipping connectivity index (maximum value in 2004 = 100)\",\"The Liner Shipping Connectivity Index captures how well countries are connected to global shipping networks. It is computed by the United Nations Conference on Trade and Development (UNCTAD) based on five components of the maritime transport sector: number of ships, their container-carrying capacity, maximum vessel size, number of services, and number of companies that deploy container ships in a country's ports. For each component a country's value is divided by the maximum value of each component in 2004, the five components are averaged for each country, and the average is divided by the maximum average for 2004 and multiplied by 100. The index generates a value of 100 for the country with the highest average index in 2004. . The underlying data come from Containerisation International Online.\",\"World Development Indicators\",\"United Nations Conference on Trade and Development, Review of Maritime Transport 2010.\"\n\"IS.SHP.GOOD.TU\",\"Container port traffic (TEU: 20 foot equivalent units)\",\"Port container traffic measures the flow of containers from land to sea transport modes., and vice versa, in twenty-foot equivalent units (TEUs), a standard-size container. Data refer to coastal shipping as well as international journeys. Transshipment traffic is counted as two lifts at the intermediate port (once to off-load and again as an outbound lift) and includes empty units.\",\"World Development Indicators\",\"Containerisation International, Containerisation International Yearbook.\"\n\"IT.CEL.SETS\",\"Mobile cellular subscriptions\",\"Mobile cellular telephone subscriptions are subscriptions to a public mobile telephone service that provide access to the PSTN using cellular technology. The indicator includes (and is split into) the number of postpaid subscriptions, and the number of active prepaid accounts (i.e. that have been used during the last three months). The indicator applies to all mobile cellular subscriptions that offer voice communications. It excludes subscriptions via data cards or USB modems, subscriptions to public mobile data services, private trunked mobile radio, telepoint, radio paging and telemetry services.\",\"World Development Indicators\",\"International Telecommunication Union, World Telecommunication/ICT Development Report and database.\"\n\"IT.CEL.SETS.P2\",\"Mobile cellular subscriptions (per 100 people)\",\"Mobile cellular telephone subscriptions are subscriptions to a public mobile telephone service that provide access to the PSTN using cellular technology. The indicator includes (and is split into) the number of postpaid subscriptions, and the number of active prepaid accounts (i.e. that have been used during the last three months). The indicator applies to all mobile cellular subscriptions that offer voice communications. It excludes subscriptions via data cards or USB modems, subscriptions to public mobile data services, private trunked mobile radio, telepoint, radio paging and telemetry services.\",\"World Development Indicators\",\"International Telecommunication Union, World Telecommunication/ICT Development Report and database.\"\n\"IT.CEL.SETS.P3\",\"Mobile phone subscribers (per 1,000 people)\",\"Please cite the International Telecommunication Union for third-party use of these data.  Mobile telephone subscribers are subscribers to a public mobile telephone service using cellular technology.\",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.CELL.3MIN.CD.OP\",\"Mobile cellular - price of 3-minute local call (off-peak rate - current US$)\",\"Please cite the International Telecommunication Union for third-party use of these data. The price of a three minute off-peak rate call from a mobile cellular telephone to a mobile cellular subscriber of the same network. A note indicates whether taxes are included (preferred) or not, or if the price refers to a pre-paid or post-paid subscription.  This indicator is expressed in US dollars.  \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.CELL.3MIN.CD.PK\",\"Mobile cellular - price of 3-minute local call (peak rate - current US$)\",\"Please cite the International Telecommunication Union for third-party use of these data.  The price of a three minute peak rate call from a mobile cellular telephone to a mobile cellular subscriber of the same network. A note indicates whether taxes are included (preferred) or not, or if the price refers to a pre-paid or post-paid subscription. This indicator is expressed in US dollars.  \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.CELL.3MIN.CN.OP\",\"Mobile cellular - price of 3-minute local call (off-peak rate - current LCU)\",\"Please cite the International Telecommunication Union for third-party use of these data.  The price of a three minute off-peak rate call from a mobile cellular telephone to a mobile cellular subscriber of the same network. A note indicates whether taxes are included (preferred) or not, or if the price refers to a pre-paid or post-paid subscription. This indicator is expressed in national currency.  \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.CELL.3MIN.CN.PK\",\"Mobile cellular - price of 3-minute local call (peak rate - current LCU)\",\"Please cite the International Telecommunication Union for third-party use of these data.  The price of a three minute peak rate call from a mobile cellular telephone to a mobile cellular subscriber of the same network. A note indicates whether taxes are included (preferred) or not, or if the price refers to a pre-paid or post-paid subscription. This indicator is expressed in national currency.  \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.CELL.MSUB.CD\",\"Mobile cellular monthly subscription (current US$)\",\"Please cite the International Telecommunication Union for third-party use of these data.  The monthly subscription charge for mobile cellular service. Due to the variety of plans available in many countries, it is preferable to use the tariff with the cheapest initiation/connection charge. If prepaid services are used (for those countries that have more prepaid than post-paid subscribers), the monthly subscription charge would be zero. If the plan includes free minutes, this should be put in a note. A note should indicate whether taxes are included (preferred) or not and what the rate is.  This indicator is expressed in US dollars.  \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.CELL.MSUB.CN\",\"Mobile cellular monthly subscription (current LCU)\",\"Please cite the International Telecommunication Union for third-party use of these data.  The monthly subscription charge for mobile cellular service. Due to the variety of plans available in many countries, it is preferable to use the tariff with the cheapest initiation/connection charge. If prepaid services are used (for those countries that have more prepaid than post-paid subscribers), the monthly subscription charge would be zero. If the plan includes free minutes, this should be put in a note. A note should indicate whether taxes are included (preferred) or not and what the rate is. This indicator is expressed in local currency.  \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.CELL.PO.CONN.CD\",\"Mobile cellular postpaid connection charge (current US$)\",\"Please cite the International Telecommunication Union for third-party use of these data.  The initial, one-time charge for a new postpaid subscription. Refundable deposits should not be counted. Although some operators waive the connection charge, this does not include the cost of the Subscriber Identity Module (SIM) card. The price of the SIM card should be included in the connection charge. It should also be noted if free minutes or free SMS are included in the connection charge. Taxes should be included. If not included, it should be specified in a note including the tax rate applicable. This indicator is expressed in local currency.  \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.CELL.PO.CONN.CN\",\"Mobile cellular postpaid connection charge (current LCU)\",\"Please cite the International Telecommunication Union for third-party use of these data.  The initial, one-time charge for a new postpaid subscription. Refundable deposits should not be counted. Although some operators waive the connection charge, this does not include the cost of the Subscriber Identity Module (SIM) card. The price of the SIM card should be included in the connection charge. It should also be noted if free minutes or free SMS are included in the connection charge. Taxes should be included. If not included, it should be specified in a note including the tax rate applicable. This indicator is expressed in local currency.  \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.CELL.PR.CONN.CD\",\"Mobile cellular prepaid connection charge (current US$)\",\"Please cite the International Telecommunication Union for third-party use of these data.  The initial, one-time charge for a new postpaid subscription. Refundable deposits should not be counted. Although some operators waive the connection charge, this does not include the cost of the Subscriber Identity Module (SIM) card. The price of the SIM card should be included in the connection charge. It should also be noted if free minutes or free SMS are included in the connection charge. Taxes should be included. If not included, it should be specified in a note including the tax rate applicable. This indicator is expressed in local currency.  \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.CELL.PR.CONN.CN\",\"Mobile cellular prepaid connection charge (current LCU)\",\"Please cite the International Telecommunication Union for third-party use of these data.  The initial, one-time charge for a new postpaid subscription. Refundable deposits should not be counted. Although some operators waive the connection charge, this does not include the cost of the Subscriber Identity Module (SIM) card. The price of the SIM card should be included in the connection charge. It should also be noted if free minutes or free SMS are included in the connection charge. Taxes should be included. If not included, it should be specified in a note including the tax rate applicable. This indicator is expressed in local currency.  \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.CMP.PCMP.P2\",\"Personal computers (per 100 people)\",\"Personal computers are self-contained computers designed to be used by a single individual.\",\"Education Statistics\",\"International Telecommunication Union, World Telecommunication/ICT Development Report and database, and World Bank estimates.\"\n\"IT.MLT.3MIN.CD.OP\",\"Price of a 3-minute fixed telephone local call (off-peak rate - current US$)\",\"Please cite the International Telecommunication Union for third-party use of these data.  Local call refers to the cost of an off-peak rate 3-minute call within the same exchange area using the subscriber's own terminal (i.e., not from a public telephone). This indicator is expressed in US dollars.  \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.MLT.3MIN.CD.PK\",\"Price of a 3-minute fixed telephone local call (peak rate - current US$)\",\"Please cite the International Telecommunication Union for third-party use of these data.  Local call refers to the cost of peak rate 3-minute call within the same exchange area using the subscriber's own terminal (i.e., not from a public telephone). This indicator is expressed in US dollars.  \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.MLT.3MIN.CD.US\",\"Telephone average cost of call to US (US$ per three minutes)\",\"Cost of international call to U.S. is the cost of a three-minute, peak rate, fixed line call from the country to the United States.\",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication/ICT Development Report and database, and World Bank estimates.\"\n\"IT.MLT.3MIN.CN.OP\",\"Price of a 3-minute fixed telephone local call (off-peak rate - current LCU)\",\"Please cite the International Telecommunication Union for third-party use of these data.  Local call refers to the cost of an off-peak rate 3-minute call within the same exchange area using the subscriber's own terminal (i.e., not from a public telephone). This indicator is expressed in national currency.  \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.MLT.3MIN.CN.PK\",\"Price of a 3-minute fixed telephone local call (peak rate - current LCU)\",\"Please cite the International Telecommunication Union for third-party use of these data.  Local call refers to the cost of peak rate 3-minute call within the same exchange area using the subscriber's own terminal (i.e., not from a public telephone). This indicator is expressed in local currency.  \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.MLT.BCONN.CD\",\"Business telephone connection charge (current US$)\",\"Please cite the International Telecommunication Union for third-party use of these data.  Installation (or connection) refers to the one-off charge involved in applying for business basic telephone service. Where there are different charges for different exchange areas, the charge for the largest urban area should be used and specified in a note. This indicator is expressed in US dollars.  \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.MLT.BCONN.CN\",\"Business telephone connection charge (current LCU)\",\"Please cite the International Telecommunication Union for third-party use of these data.  Installation (or connection) refers to the one-off charge involved in applying for business basic telephone service. Where there are different charges for different exchange areas, the charge for the largest urban area should be used and specified in a note. This indicator is expressed in local currency.  \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.MLT.BSUB.CD\",\"Business telephone monthly subscription (current US$)\",\"Please cite the International Telecommunication Union for third-party use of these data.  Monthly subscription refers to the recurring fixed charge for subscribing to the PSTN in US$.  The charge should cover the rental of the line but not the rental of the terminal (e.g., telephone set) where the terminal equipment market is liberalized. Separate charges should be stated where appropriate, for first and subsequent lines. If the rental charge includes any allowance for free or reduced rate call units, this should be indicated. If there are different charges for different exchange areas, the largest urban area should be used and specified in a note. This indicator is expressed in US dollars. \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.MLT.BSUB.CN\",\"Business telephone monthly subscription (current LCU)\",\"Please cite the International Telecommunication Union for third-party use of these data.  Monthly subscription refers to the recurring fixed charge for subscribing to the PSTN.  The charge should cover the rental of the line but not the rental of the terminal (e.g., telephone set) where the terminal equipment market is liberalized. Separate charges should be stated where appropriate, for first and subsequent lines. If the rental charge includes any allowance for free or reduced rate call units, this should be indicated. If there are different charges for different exchange areas, the largest urban area should be used and specified in a note. This indicator is expressed in local currency. \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.MLT.CONN.CD\",\"Residential telephone connection charge (current US$)\",\"Please cite the International Telecommunication Union for third-party use of these data.  Installation refers to the one time charge involved in applying for basic telephone service for business purposes. Where there are different charges for different exchange areas, the charge is generally for the largest urban area unless otherwise noted. This indicator is expressed in US dollars.  \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.MLT.CONN.CN\",\"Residential telephone connection charge (current LCU)\",\"Please cite the International Telecommunication Union for third-party use of these data.  Installation refers to the one time charge involved in applying for basic telephone service for business purposes. Where there are different charges for different exchange areas, the charge is generally for the largest urban area unless otherwise noted. This indicator is expressed in national currency.  \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.MLT.FALT.CL\",\"Telephone faults cleared by next working day (%)\",\"Telephone faults cleared by next working day are the percentage of faults in the public switched telephone network that have been corrected by the end of the next working day.\",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.MLT.FALT.M2\",\"Telephone faults (per 100 mainlines)\",\"Telephone mainline faults is the number of reported telephone faults for the year per 100 telephone mainlines.\",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication/ICT Development Report and database, and World Bank estimates.\"\n\"IT.MLT.INVS.CD\",\"Fixed telephone service investment (current US$)\",\"Please cite the International Telecommunication Union for third-party use of these data.  Annual investment on equipment for fixed telephone service. This indicator is expressed in US dollars.  \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.MLT.INVS.CN\",\"Fixed telephone service investment (current LCU)\",\"Please cite the International Telecommunication Union for third-party use of these data.  Annual investment on equipment for fixed telephone service. This indicator is expressed in local currency.  \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.MLT.MAIN\",\"Fixed telephone subscriptions\",\"Fixed telephone subscriptions refers to the sum of active number of analogue fixed telephone lines, voice-over-IP (VoIP) subscriptions, fixed wireless local loop (WLL) subscriptions, ISDN voice-channel equivalents and fixed public payphones.\",\"World Development Indicators\",\"International Telecommunication Union, World Telecommunication/ICT Development Report and database, and World Bank estimates.\"\n\"IT.MLT.MAIN.P2\",\"Fixed telephone subscriptions (per 100 people)\",\"Fixed telephone subscriptions refers to the sum of active number of analogue fixed telephone lines, voice-over-IP (VoIP) subscriptions, fixed wireless local loop (WLL) subscriptions, ISDN voice-channel equivalents and fixed public payphones.\",\"World Development Indicators\",\"International Telecommunication Union, World Telecommunication/ICT Development Report and database.\"\n\"IT.MLT.MAIN.P3\",\"Telephone mainlines (per 1,000 people)\",\"Please cite the International Telecommunication Union for third-party use of these data. Telephone mainlines are fixed telephone lines connecting a subscriber to the telephone exchange equipment. \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.MLT.REVN.CD\",\"Revenue from fixed telephone service (current US$)\",\"Please cite the International Telecommunication Union for third-party use of these data.  Revenue received from fixed telephone connection, subscription and calls.  This indicator is expressed in US dollars.  \",\"Africa Development Indicators\",\"\\\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\\r\\\"\"\n\"IT.MLT.REVN.CN\",\"Revenue from fixed telephone service (current LCU)\",\"Please cite the International Telecommunication Union for third-party use of these data.  Revenue received from fixed telephone connection, subscription and calls.  This indicator is expressed in local currency.  \",\"Africa Development Indicators\",\"\\\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\\r\\\"\"\n\"IT.MLT.RSUB.CD\",\"Residential monthly telephone subscription (current US$)\",\"Please cite the International Telecommunication Union for third-party use of these data.  Monthly subscription refers to the recurring fixed charge for subscribing to the PSTN. The charge should cover the rental of the line, but not the rental of the terminal (e.g., telephone set) where the terminal equipment market is liberalized. Separate charges should be stated where appropriate, for first and subsequent lines. If the rental charge includes any allowance for free or reduced rate call units, this should be indicated. If there are different charges for different exchange areas, the largest urban area should be used and specified in a note.  This indicator is expressed in US dollars.  \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.MLT.RSUB.CN\",\"Residential monthly telephone subscription (current LCU)\",\"Please cite the International Telecommunication Union for third-party use of these data.  Monthly subscription refers to the recurring fixed charge for subscribing to the PSTN. The charge should cover the rental of the line, but not the rental of the terminal (e.g., telephone set) where the terminal equipment market is liberalized. Separate charges should be stated where appropriate, for first and subsequent lines. If the rental charge includes any allowance for free or reduced rate call units, this should be indicated. If there are different charges for different exchange areas, the largest urban area should be used and specified in a note.  This indicator is expressed in local currency.  \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.MOB.COV.ZS\",\"Population coverage of mobile cellular telephony (%)\",\"Please cite the International Telecommunication Union for third-party use of these data.  Percentage of population covered by mobile cellular telephony refers to the percentage of a country’s inhabitants that live within areas served by a mobile cellular signal, irrespective of whether or not they choose to use it. This should not be confused with the percentage of the land area covered by a mobile cellular signal or the percentage of the population that subscribe to mobile cellular service. Note that this measures the theoretical ability to use mobile cellular services if one has a cellular telephone and a subscription.  \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.MOB.INVS.CD\",\"Mobile communication investment (current US$)\",\"Please cite the International Telecommunication Union for third-party use of these data.  Annual investment on equipment for mobile communication networks. Data is in US dollar.  \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.MOB.INVS.CN\",\"Mobile communication investment (current LCU)\",\"Please cite the International Telecommunication Union for third-party use of these data.  Annual investment on equipment for mobile communication networks. Data are in current local currency.  \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.MOB.REVN.CD\",\"Revenue from mobile communication (current US$)\",\"Please cite the International Telecommunication Union for third-party use of these data.  Revenues from the provision of all types of mobile communications services such cellular, private trunked radio and radio paging.  This indicator is expressed in US \",\"Africa Development Indicators\",\"\\\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\\r\\\"\"\n\"IT.MOB.REVN.CN\",\"Revenue from mobile communication (current LCU)\",\"Please cite the International Telecommunication Union for third-party use of these data.  Revenues from the provision of all types of mobile communications services such cellular, private trunked radio and radio paging.  This indicator is expressed in loc\",\"Africa Development Indicators\",\"\\\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\\r\\\"\"\n\"IT.NET.BBND\",\"Fixed broadband subscriptions\",\"Fixed broadband subscriptions refers to fixed subscriptions to high-speed access to the public Internet (a TCP/IP connection), at downstream speeds equal to, or greater than, 256 kbit/s. This includes cable modem, DSL, fiber-to-the-home/building, other fixed (wired)-broadband subscriptions, satellite broadband and terrestrial fixed wireless broadband. This total is measured irrespective of the method of payment. It excludes subscriptions that have access to data communications (including the Internet) via mobile-cellular networks. It should include fixed WiMAX and any other fixed wireless technologies. It includes both residential subscriptions and subscriptions for organizations.\",\"World Development Indicators\",\"International Telecommunication Union, World Telecommunication/ICT Development Report and database.\"\n\"IT.NET.BBND.P2\",\"Fixed broadband subscriptions (per 100 people)\",\"Fixed broadband subscriptions refers to fixed subscriptions to high-speed access to the public Internet (a TCP/IP connection), at downstream speeds equal to, or greater than, 256 kbit/s. This includes cable modem, DSL, fiber-to-the-home/building, other fixed (wired)-broadband subscriptions, satellite broadband and terrestrial fixed wireless broadband. This total is measured irrespective of the method of payment. It excludes subscriptions that have access to data communications (including the Internet) via mobile-cellular networks. It should include fixed WiMAX and any other fixed wireless technologies. It includes both residential subscriptions and subscriptions for organizations.\",\"World Development Indicators\",\"International Telecommunication Union, World Telecommunication/ICT Development Report and database.\"\n\"IT.NET.BBND.P3\",\"Broadband subscribers (per 1,000 people)\",\"Please cite the International Telecommunication Union for third-party use of these data.  Broadband subscribers are the total number of broadband subscribers with a digital subscriber line, cable modem, or other high-speed technologies. Reporting countries may have different definitions of broadband, so data are not strictly comparable across countries.\",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.NET.BNDW\",\"International Internet bandwidth (Mbps)\",\"International Internet bandwidth is the contracted capacity of international connections between countries for transmitting Internet traffic.\",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication/ICT Development Report and database, and TeleGeography.\"\n\"IT.NET.BNDW.PC\",\"International Internet bandwidth (bits per person)\",\"International Telecommunication Union, World Telecommunication/ICT Development Report and database.\",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication/ICT Development Report and database.\"\n\"IT.NET.CONN.CD\",\"Fixed broadband Internet connection charge (current US$)\",\"Fixed (Wired) broadband Internet connection charge is the initial, one-time charge for a new fixed (wired)  broadband Internet connection. The tariffs should represent the cheapest fixed (wired) broadband entry plan. Refundable deposits should not be counted. Taxes should be included. If not included, it should be specified in a note including the applicable tax rate. This indicator is expressed in US dollars.  \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.NET.CONN.CN\",\"Fixed broadband Internet connection charge (current LCU)\",\"Fixed (Wired) broadband Internet connection charge is the initial, one-time charge for a new fixed (wired)  broadband Internet connection. The tariffs should represent the cheapest fixed (wired) broadband entry plan. Refundable deposits should not be counted. Taxes should be included. If not included, it should be specified in a note including the applicable tax rate. This indicator is expressed in local currency.  \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.NET.SECR\",\"Secure Internet servers\",\"Secure servers are servers using encryption technology in Internet transactions.\",\"World Development Indicators\",\"Netcraft (http://www.netcraft.com/).\"\n\"IT.NET.SECR.P6\",\"Secure Internet servers (per 1 million people)\",\"Secure servers are servers using encryption technology in Internet transactions.\",\"World Development Indicators\",\"Netcraft (http://www.netcraft.com/) and World Bank population estimates.\"\n\"IT.NET.SUB.CD\",\"Fixed broadband Internet monthly subscription (current US$)\",\"Fixed (Wired) broadband Internet monthly subscription is the monthly subscription charge for fixed (wired) broadband Internet service. Fixed (wired) broadband is considered any dedicated connection to the Internet at downstream speeds equal to, or greater than, 256 kbit/s, using DSL. Where several offers are available, preference should be given to the 256 kbit/s connection. Taxes should be included. If not included, it should be specified in a note including the applicable tax rate. This indicator is expressed in local currency.  \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.NET.SUB.CN\",\"Fixed broadband Internet monthly subscription (current LCU)\",\"Fixed (Wired) broadband Internet monthly subscription is the monthly subscription charge for fixed (wired) broadband Internet service. Fixed (wired) broadband is considered any dedicated connection to the Internet at downstream speeds equal to, or greater than, 256 kbit/s, using DSL. Where several offers are available, preference should be given to the 256 kbit/s connection. Taxes should be included. If not included, it should be specified in a note including the applicable tax rate. This indicator is expressed in US dollars.  \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.NET.USER\",\"Internet users\",\"Internet users are people with access to the worldwide network.\",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication/ICT Development Report and database.\"\n\"IT.NET.USER.P2\",\"Internet users (per 100 people)\",\"Internet users are individuals who have used the Internet (from any location) in the last 12 months. Internet can be used via a computer, mobile phone, personal digital assistant, games machine, digital TV etc.\",\"World Development Indicators\",\"International Telecommunication Union, World Telecommunication/ICT Development Report and database, and World Bank estimates.\"\n\"IT.NET.USER.P3\",\"Internet users (per 1,000 people)\",\"Please cite the International Telecommunication Union for third-party use of these data.  Internet users are people with access to the worldwide network.\",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.NET.USER.ZS\",\"Individuals using the Internet (% of population)\",\"Individuals using the Internet refers to the percentage of individuals who have used the Internet (from any location) in the last 12 months. Internet can be used via a computer, mobile phone, personal digital assistant, games machine, digital TV etc.\",\"Sustainable Development Goals \",\"International Telecommunication Union, World Telecommunication/ICT Development Report and database.\"\n\"IT.PAY.PHONES\",\"Public payphones\",\"Please cite the International Telecommunication Union for third-party use of these data.  Total number of all types of public telephones, including coin- and card-operated and public telephones in call offices. Publicly available phones installed in private places should also be included, as should mobile public telephones. All public telephones regardless of capability (e.g., local calls or national only) should be counted. If the national definition of \\\"payphone\\\" differs from that above (e.g., by excluding pay phones in private places), then respondents should indicate their own definition.  \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.PAY.PHONES.P3\",\"Public payphones (per 1,000 people)\",\"Please cite the International Telecommunication Union for third-party use of these data.  Total number of all types of public telephones, including coin- and card-operated and public telephones in call offices. Publicly available phones installed in private places should also be included, as should mobile public telephones. All public telephones regardless of capability (e.g., local calls or national only) should be counted. If the national definition of \\\"payphone\\\" differs from that above (e.g., by excluding pay phones in private places), then respondents should indicate their own definition.  \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.PC.HOUS.ZS\",\"Homes with a personal computer (%)\",\"Please cite the International Telecommunication Union for third-party use of these data.    The proportion of households with a computer is calculated by dividing the number of in-scope households with a computer by the total number of inscope households.\",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.PRT.NEWS.P3\",\"Daily newspapers (per 1,000 people)\",\"Daily newspapers refer to those published at least four times a week and calculated as average circulation (or copies printed) per 1,000 people.\",\"Jobs for Knowledge Platform\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"IT.RAD.HOUS.ZS\",\"Households with a radio (%)\",\"Please cite the International Telecommunication Union for third-party use of these data.  The proportion of households with a radio is calculated by dividing the number of in-scope households with a radio by the total number of inscope Households.  \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.RAD.SETS\",\"Number of radio sets \",\"Please cite the International Telecommunication Union for third-party use of these data.  The total number of radio sets. A radio set is a device capable of receiving broadcast radio signals, using popular frequencies, such as FM, AM, LW and SW.  A radio set may be a stand-alone device, or it may be integrated into another device, such as a Walkman, a car or an alarm clock.  \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.RAD.SETS.P3\",\"Radio sets (per 1,000 people)\",\"Please cite the International Telecommunication Union for third-party use of these data.  Radio sets per 1000 inhabitants is obtained by dividing the number of radio sets in use by the population and multiplying by 1000.  \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.TEL.HOUS.ZS\",\"Households with a telephone (%)\",\"Please cite the International Telecommunication Union for third-party use of these data.  This percentage is obtained by dividing the number of main (fixed) lines serving households (i.e., lines which are not used for business, government or other professional purposes or as public telephone stations) by the total number of main lines. Respondents should indicate the definition of households that is being applied, and the source of this definition.\",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.TEL.INVS.CD\",\"Total annual investment in telecom (current US$)\",\"International Telecommunication Union, World Telecommunication/ICT Development Report and database.\",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication/ICT Development Report and database.\"\n\"IT.TEL.INVS.CN\",\"Telecommunications investment (current LCU)\",\"Telecommunications investment refers to the expenditure associated with acquiring the ownership of telecommunication equipment infrastructure (including supporting land and buildings and intellectual and non-tangible property such as computer software). These include expenditure on initial installations and on additions to existing installations.\",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication/ICT Development Report and database, and World Bank estimates.\"\n\"IT.TEL.INVS.RV.ZS\",\"Telecommunications investment (% of revenue)\",\"International Telecommunication Union, World Telecommunication/ICT Development Report and database.\",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication/ICT Development Report and database.\"\n\"IT.TEL.REVN.CD\",\"Total revenue from all telecommunication services (current US$)\",\"International Telecommunication Union, World Telecommunication/ICT Development Report and database.\",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication/ICT Development Report and database.\"\n\"IT.TEL.REVN.CN\",\"Telecommunications revenue (current LCU)\",\"Telecommunications revenue is the revenue from the provision of telecommunications services such as fixed-line, mobile, and data.\",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication/ICT Development Report and database, and World Bank estimates.\"\n\"IT.TEL.REVN.GD.ZS\",\"Telecommunications revenue (% GDP)\",\"Telecommunications revenue is the revenue from the provision of telecommunications services such as fixed-line, mobile, and data.\",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication/ICT Development Report and database, and World Bank estimates.\"\n\"IT.TEL.TOTL\",\"Mobile and fixed-line telephone subscribers\",\"International Telecommunication Union, World Telecommunication/ICT Development Report and database.\",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication/ICT Development Report and database.\"\n\"IT.TEL.TOTL.P2\",\"Fixed line and mobile cellular subscriptions (per 100 people)\",\"Fixed line and mobile cellular subscriptions are total telephone subscriptions (fixed line plus mobile). Fixed telephone subscriptions refers to the sum of active number of analogue fixed telephone lines, voice-over-IP (VoIP) subscriptions, fixed wireless local loop (WLL) subscriptions, ISDN voice-channel equivalents and fixed public payphones. Mobile cellular telephone subscriptions are subscriptions to a public mobile telephone service that provide access to the PSTN using cellular technology. The indicator includes (and is split into) the number of postpaid subscriptions, and the number of active prepaid accounts (i.e. that have been used during the last three months). The indicator applies to all mobile cellular subscriptions that offer voice communications. It excludes subscriptions via data cards or USB modems, subscriptions to public mobile data services, private trunked mobile radio, telepoint, radio paging and telemetry services.\",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication/ICT Development Report and database.\"\n\"IT.TEL.TOTL.P3\",\"Telephone (mainlines and mobile phone) subscribers (per 1,000 people)\",\"Please cite the International Telecommunication Union for third-party use of these data.  Fixed lines are telephone mainlines connecting a customer's equipment to the public switched telephone network. Mobile phone subscribers refer to users of portable telephones subscribing to an automatic public mobile telephone service using cellular technology that provides access to the public switched telephone network.\",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.TEL.UNMT.ZS\",\"Unmet demand (% of waiting list to number main fixed telephone lines in operation)\",\"Unmet demand is unmet applications for connection to the public switched telephone network that have had to be held over owing to a lack of technical facilities (equipment, lines, and the like) divided by the number of main telephone lines in operation.  \",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication Development Report and database, and World Bank estimates.\"\n\"IT.TELC.IM.CD\",\"Telecommunication equipment - import (current US$)\",\"They are aggregated from the following Standard International Trade Classification (SITC) subgroupings: (1) 764.1 Electrical apparatus for line telephony or line telegraphy (including such apparatus for carrier-current line systems). Telephone sets; teleprinters; telephonic or telegraphic switching apparatus; other apparatus for carrier-current line systems; other telephonic or telegraphic apparatus. (2) 764.3 Transmission apparatus for radio-telephony, radio-telegraphy, radio-broadcasting or television, whether or not incorporating reception apparatus or sound-recording or reproducing apparatus. Transmission apparatus; transmission apparatus incorporating reception apparatus. (3) 762.81 reception apparatus for radio-telephony or radio-telegraphy; and (4) Parts and accessories suitable for use solely or principally with the apparatus of sub-group 764.1. Expressed in US dollars. \",\"Africa Development Indicators\",\"The  United Nations. \"\n\"IT.TELC.XP.CD\",\"Telecommunication equipment - export (current US$)\",\"They are aggregated from the following Standard International Trade Classification (SITC) subgroupings: (1) 764.1 Electrical apparatus for line telephony or line telegraphy (including such apparatus for carrier-current line systems). Telephone sets; teleprinters; telephonic or telegraphic switching apparatus; other apparatus for carrier-current line systems; other telephonic or telegraphic apparatus. (2) 764.3 Transmission apparatus for radio-telephony, radio-telegraphy, radio-broadcasting or television, whether or not incorporating reception apparatus or sound-recording or reproducing apparatus. Transmission apparatus; transmission apparatus incorporating reception apparatus. (3) 762.81 reception apparatus for radio-telephony or radio-telegraphy; and (4) Parts and accessories suitable for use solely or principally with the apparatus of sub-group 764.1. Expressed in US dollars. \",\"Africa Development Indicators\",\"The United Nations.\"\n\"IT.TVS.HOUS.ZS\",\"Households with television (%)\",\"Households with television are the share of households with a television set. Some countries report only the number of households with a color television set, and therefore the true number may be higher than reported.\",\"Africa Development Indicators\",\"International Telecommunication Union, World Telecommunication/ICT Development Report and database, and World Bank estimates.\"\n\"ITIMBER\",\"Agr: Raw:1 Timber, 2000=100, current$\",\"Timber index includes tropical hard logs and sawnwood.\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KALUMINUM\",\"Aluminum, $/mt, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KBANANA_EU\",\"Bananas, EU, $/mt, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KBANANA_US\",\"Bananas, US, $/mt, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KBARLEY\",\"Barley, $/mt, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KBEEF\",\"Meat, beef, cents/kg, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KCHICKEN\",\"Meat, chicken, cents/kg, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KCOAL_AUS\",\"Coal, Australia, $/mt, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KCOAL_COL\",\"Coal, Colombian, $/mt, real 2010$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"\"\n\"KCOAL_SAFRICA\",\"Coal, South African, $/mt, real 2010$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"\"\n\"KCOCOA\",\"Cocoa, cents/kg, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KCOCONUT_OIL\",\"Coconut oil, $/mt, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KCOFFEE_ARABIC\",\"Coffee, Arabica, cents/kg, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KCOFFEE_ROBUS\",\"Coffee, Robusta, cents/kg, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KCOPPER\",\"Copper, $/mt, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KCOPRA\",\"Copra, $/mt, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KCOTTON_A_INDX\",\"Cotton, A Index, cents/kg, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KCRUDE_BRENT\",\"Crude oil, Brendt, $/bbl, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KCRUDE_DUBAI\",\"Crude oil, Dubai, $/bbl, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KCRUDE_PETRO\",\"Crude oil, avg, spot, $/bbl, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KCRUDE_WTI\",\"Crude oil, WTI, $/bbl, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KDAP\",\"DAP, $/mt, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KFISH_MEAL\",\"Fishmeal, $/mt, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KGOLD\",\"Gold, $/toz, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KGRNUT_OIL\",\"Groundnut oil, $/mt, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KIAGRICULTURE\",\"Agriculture, 2000=100, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KIBEVERAGES\",\"Agr: Beverages, 2000=100, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KIENERGY\",\"Energy, 2000=100, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KIFATS_OILS\",\"Agr: Food: Fats and oils, 2000=100, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KIFERTILIZERS\",\"Fertilizers, 2000=100, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KIFOOD\",\"Agr: Food, 2000=100, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KIGRAINS\",\"Agr: Food: Grains, 2000=100, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KIMETMIN\",\"Metals and minerals, 2000=100, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KIMETMIN_DV100\",\"Base Metals, 2000=100, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KINATGAS\",\"Natural gas, 2010=100, real 2010$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"\"\n\"KINONFUEL\",\"Non-energy commodities, 2000=100, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KIOTHERFOOD\",\"Agr: Food: Other food, 2000=100, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KIOTHERRAWMAT\",\"Agr: Raw:2 Other raw materials, 2000=100, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KIPRECIOUSMET\",\"Precious Metals, 2010=100, real 2010$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"\"\n\"KIRAW_MATERIAL\",\"Agr: Raw materials, 2000=100, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KIRON_ORE\",\"Iron ore, cents/dmtu, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KIRON_ORE_SPOT\",\"Iron ore, $/dmt, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"\"\n\"KITIMBER\",\"Agr: Raw:1 Timber, 2000=100, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KLAMB\",\"Meat, sheep, cents/kg, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KLEAD\",\"Lead, cents/kg, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KLOGS_CMR\",\"Logs, Cameroon, $/cum, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KLOGS_MYS\",\"Logs, Malaysia, $/cum, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KMAIZE\",\"Maize, $/mt, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KNGAS_EUR\",\"Natural gas, Europe, $/mmbtu, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KNGAS_JP\",\"Natural gas LNG, $/mmbtu, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KNGAS_US\",\"Natural gas, US, $/mmbtu, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KNICKEL\",\"Nickel, $/mt, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KORANGE\",\"Oranges, $/mt, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KPALM_OIL\",\"Palm oil, $/mt, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KPHOSROCK\",\"Phosphate rock, $/mt, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KPLATINUM\",\"Platinum, $/toz, real 2010l$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"\"\n\"KPLMKRNL_OIL\",\"Palmkernal oil, $/mt, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KPLYWOOD\",\"Plywood, cents/sheets, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KPOTASH\",\"Potassium Chloride, $/mt, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KRICE_05\",\"Rice, Thailand, 5%, $/mt, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KRICE_05_VNM\",\"Rice, Vietnamese, 5%, $/mt, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"\"\n\"KRICE_25\",\"Rice, Thailand, 25%, $/mt, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KRICE_A1\",\"Rice, Thai, A1.Special, $/mt, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KRUBBER1_MYSG\",\"Rubber, Singapore, cents/kg, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KRUBBER1_TSR20\",\"Rubber, TSR20, cents/kg, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"\"\n\"KSAWNWD_CMR\",\"Sawnwood, Cameroon, $/cum, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KSAWNWD_MYS\",\"Sawnwood, Malaysia, $/cum, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KSHRIMP_MEX\",\"Shrimp, Mexico, cents/kg, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KSILVER\",\"Silver, cents/toz, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KSORGHUM\",\"Sorghum, $/mt, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KSOYBEAN_MEAL\",\"Soybean meal, $/mt, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KSOYBEAN_OIL\",\"Soybean oil, $/mt, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KSOYBEANS\",\"Soybeans, $/mt, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KSTL_JP_CROLL\",\"Steel cr coilsheet, $/mt, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KSTL_JP_HROLL\",\"Steel hr coilsheet, $/mt, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KSTL_JP_REBAR\",\"Steel, rebar, $/mt, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KSTL_JP_WIROD\",\"Steel wire rod, $/mt, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KSUGAR_EU\",\"Sugar, EU, cents/kg, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KSUGAR_US\",\"Sugar, US, cents/kg, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KSUGAR_WLD\",\"Sugar, world, cents/kg, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KTEA_AVG\",\"Tea, auctions (3) average, cents/kg, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KTEA_COLOMBO\",\"Tea, Colombo auctions, cents/kg, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KTEA_KOLKATA\",\"Tea, Kokata auctions, cents/kg, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KTEA_MOMBASA\",\"Tea, Mombasa auctions, cents/kg, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KTIN\",\"Tin, cents/kg, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KTOBAC_US\",\"Tobacco, $/mt, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KTSP\",\"TSP, $/mt, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KUREA_EE_BULK\",\"Urea, E. Europe, bulk, $/mt, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"\"\n\"KWHEAT_CANADI\",\"Wheat, Canada, $/mtv, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KWHEAT_US_HRW\",\"Wheat, US, HRW, $/mt, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KWHEAT_US_SRW\",\"Wheat, US, SRW, $/mt, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KWOODPULP\",\"Woodpulp, $/mt, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"KZINC\",\"Zinc, cents/kg, constant 2000$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"LAMB\",\"Meat, sheep, cents/kg, current$\",\"Meat, chicken (US), broiler/fryer, whole birds, 2-1/2 to 3 pounds, USDA grade \\\"A\\\", ice-packed, Georgia Dock preliminary weighted average, wholesale\",\"Global Economic Monitor (GEM) Commodities\",\"Meat Trade Journal; World Bank.\"\n\"LEAD\",\"Lead, cents/kg, current$\",\"Lead (LME), refined, 99.97% purity, settlement price\",\"Global Economic Monitor (GEM) Commodities\",\"Platts Metals Week, Engineering and Mining Journal; Thomson Reuters Datastream; World Bank.\"\n\"LIBOR3M\",\"London Interbank Offered 3-month rates (LIBOR)\",\"LIBOR stands for London Interbank Offered Rate. It's the rate of interest at which banks offer to lend money to one another in the wholesale money markets in London. It is a standard financial index used in international capital markets. The data is for the 3 Month LIBOR rate.\",\"Global Economic Monitor\",\"World Bank staff calculations based on Datastream data.\"\n\"LIBOR6M\",\"London Interbank Offered 6-month rates (LIBOR)\",\"LIBOR stands for London Interbank Offered Rate. It's the rate of interest at which banks offer to lend money to one another in the wholesale money markets in London. It is a standard financial index used in international capital markets. The data is for the 6 Month LIBOR rate.\",\"Global Economic Monitor\",\"World Bank staff calculations based on Datastream data.\"\n\"LND.TOTL.K2\",\"Total Area (in Km²)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"LO.EGRA.CLPM.AFA.2GRD\",\"EGRA: Correct Letter Names Read Per Minute (Mean). Afan Oromo. 2nd Grade\",\"Average number of letter names that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the names of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLPM.AFA.3GRD\",\"EGRA: Correct Letter Names Read Per Minute (Mean). Afan Oromo. 3rd Grade\",\"Average number of letter names that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the names of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLPM.AMH.2GRD\",\"EGRA: Correct Letter Names Read Per Minute (Mean). Amharic. 2nd Grade\",\"Average number of letter names that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the names of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLPM.AMH.3GRD\",\"EGRA: Correct Letter Names Read Per Minute (Mean). Amharic. 3rd Grade\",\"Average number of letter names that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the names of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLPM.BMN.2GRD\",\"EGRA: Correct Letter Names Read Per Minute (Mean). Bamanankan. 2nd Grade\",\"Average number of letter names that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the names of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLPM.BOM.2GRD\",\"EGRA: Correct Letter Names Read Per Minute (Mean). Bomu. 2nd Grade\",\"Average number of letter names that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the names of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLPM.CHC.2GRD\",\"EGRA: Correct Letter Names Read Per Minute (Mean). Chichewa. 2nd Grade\",\"Average number of letter names that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the names of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLPM.CHC.4GRD\",\"EGRA: Correct Letter Names Read Per Minute (Mean). Chichewa. 4th Grade\",\"Average number of letter names that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the names of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLPM.ENG.2GRD\",\"EGRA: Correct Letter Names Read Per Minute (Mean). English. 2nd Grade\",\"Average number of letter names that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the names of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLPM.ENG.3GRD\",\"EGRA: Correct Letter Names Read Per Minute (Mean). English. 3rd Grade\",\"Average number of letter names that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the names of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLPM.ENG.4GRD\",\"EGRA: Correct Letter Names Read Per Minute (Mean). English. 4th Grade\",\"Average number of letter names that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the names of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLPM.FLF.2GRD\",\"EGRA: Correct Letter Names Read Per Minute (Mean). Fulfulde. 2nd Grade\",\"Average number of letter names that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the names of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLPM.FRN.3GRD\",\"EGRA: Correct Letter Names Read Per Minute (Mean). French. 3rd Grade\",\"Average number of letter names that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the names of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLPM.HAR.2GRD\",\"EGRA: Correct Letter Names Read Per Minute (Mean). Hararigna. 2nd Grade\",\"Average number of letter names that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the names of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLPM.HAR.3GRD\",\"EGRA: Correct Letter Names Read Per Minute (Mean). Hararigna. 3rd Grade\",\"Average number of letter names that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the names of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLPM.SID.2GRD\",\"EGRA: Correct Letter Names Read Per Minute (Mean). Sidaamu Afoo. 2nd Grade\",\"Average number of letter names that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the names of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLPM.SID.3GRD\",\"EGRA: Correct Letter Names Read Per Minute (Mean). Sidaamu Afoo. 3rd Grade\",\"Average number of letter names that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the names of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLPM.SNG.2GRD\",\"EGRA: Correct Letter Names Read Per Minute (Mean). Songhoi. 2nd Grade\",\"Average number of letter names that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the names of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLPM.SOM.2GRD\",\"EGRA: Correct Letter Names Read Per Minute (Mean). Somaligna. 2nd Grade\",\"Average number of letter names that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the names of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLPM.SOM.3GRD\",\"EGRA: Correct Letter Names Read Per Minute (Mean). Somaligna. 3rd Grade\",\"Average number of letter names that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the names of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLPM.SPN.2GRD\",\"EGRA: Correct Letter Names Read Per Minute (Mean). Spanish. 2nd Grade\",\"Average number of letter names that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the names of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLPM.SPN.3GRD\",\"EGRA: Correct Letter Names Read Per Minute (Mean). Spanish. 3rd Grade\",\"Average number of letter names that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the names of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLPM.SPN.4GRD\",\"EGRA: Correct Letter Names Read Per Minute (Mean). Spanish. 4th Grade\",\"Average number of letter names that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the names of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLPM.TIG.2GRD\",\"EGRA: Correct Letter Names Read Per Minute (Mean). Tigrinya. 2nd Grade\",\"Average number of letter names that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the names of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLPM.TIG.3GRD\",\"EGRA: Correct Letter Names Read Per Minute (Mean). Tigrinya. 3rd Grade\",\"Average number of letter names that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the names of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLSPM.AKU.2GRD\",\"EGRA: Correct Letter Sounds Read Per Minute (Mean). Akuapem. 2nd Grade\",\"Average number of letter sounds that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the sounds of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLSPM.ARB.2GRD\",\"EGRA: Correct Letter Sounds Read Per Minute (Mean). Arabic. 2nd Grade\",\"Average number of letter sounds that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the sounds of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLSPM.ARB.3GRD\",\"EGRA: Correct Letter Sounds Read Per Minute (Mean). Arabic. 3rd Grade\",\"Average number of letter sounds that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the sounds of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLSPM.AST.2GRD\",\"EGRA: Correct Letter Sounds Read Per Minute (Mean). Asante Twi. 2nd Grade\",\"Average number of letter sounds that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the sounds of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLSPM.CHI.2GRD\",\"EGRA: Correct Letter Sounds Read Per Minute (Mean). Chitonga. 2nd Grade\",\"Average number of letter sounds that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the sounds of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLSPM.CIN.2GRD\",\"EGRA: Correct Letter Sounds Read Per Minute (Mean). Cinyanja. 2nd Grade\",\"Average number of letter sounds that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the sounds of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLSPM.DAG.2GRD\",\"EGRA: Correct Letter Sounds Read Per Minute (Mean). Dagaare. 2nd Grade\",\"Average number of letter sounds that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the sounds of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLSPM.DAGB.2GRD\",\"EGRA: Correct Letter Sounds Read Per Minute (Mean). Dagbani. 2nd Grade\",\"Average number of letter sounds that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the sounds of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLSPM.DAN.2GRD\",\"EGRA: Correct Letter Sounds Read Per Minute (Mean). Dangme. 2nd Grade\",\"Average number of letter sounds that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the sounds of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLSPM.ENG.2GRD\",\"EGRA: Correct Letter Sounds Read Per Minute (Mean). English. 2nd Grade\",\"Average number of letter sounds that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the sounds of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLSPM.ENG.3GRD\",\"EGRA: Correct Letter Sounds Read Per Minute (Mean). English. 3rd Grade\",\"Average number of letter sounds that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the sounds of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLSPM.ENG.4GRD\",\"EGRA: Correct Letter Sounds Read Per Minute (Mean). English. 4th Grade\",\"Average number of letter sounds that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the sounds of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLSPM.ENG.6GRD\",\"EGRA: Correct Letter Sounds Read Per Minute (Mean). English. 6th Grade\",\"Average number of letter sounds that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the sounds of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLSPM.EWE.2GRD\",\"EGRA: Correct Letter Sounds Read Per Minute (Mean). Ewe. 2nd Grade\",\"Average number of letter sounds that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the sounds of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLSPM.FAN.2GRD\",\"EGRA: Correct Letter Sounds Read Per Minute (Mean). Fante. 2nd Grade\",\"Average number of letter sounds that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the sounds of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLSPM.FLP.3GRD\",\"EGRA: Correct Letter Sounds Read Per Minute (Mean). Filipino. 3rd Grade\",\"Average number of letter sounds that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the sounds of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLSPM.GA.2GRD\",\"EGRA: Correct Letter Sounds Read Per Minute (Mean). Ga. 2nd Grade\",\"Average number of letter sounds that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the sounds of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLSPM.GON.2GRD\",\"EGRA: Correct Letter Sounds Read Per Minute (Mean). Gonja. 2nd Grade\",\"Average number of letter sounds that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the sounds of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLSPM.ICI.2GRD\",\"EGRA: Correct Letter Sounds Read Per Minute (Mean). Icibemba. 2nd Grade\",\"Average number of letter sounds that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the sounds of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLSPM.IND.2GRD\",\"EGRA: Correct Letter Sounds Read Per Minute (Mean). Indonesian. 2nd Grade\",\"Average number of letter sounds that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the sounds of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLSPM.KAS.2GRD\",\"EGRA: Correct Letter Sounds Read Per Minute (Mean). Kasem. 2nd Grade\",\"Average number of letter sounds that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the sounds of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLSPM.KII.2GRD\",\"EGRA: Correct Letter Sounds Read Per Minute (Mean). Kiikaonde. 2nd Grade\",\"Average number of letter sounds that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the sounds of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLSPM.KNY.4GRD\",\"EGRA: Correct Letter Sounds Read Per Minute (Mean). Kinyarwanda. 4th Grade\",\"Average number of letter sounds that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the sounds of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLSPM.KNY.6GRD\",\"EGRA: Correct Letter Sounds Read Per Minute (Mean). Kinyarwanda. 6th Grade\",\"Average number of letter sounds that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the sounds of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLSPM.LUN.2GRD\",\"EGRA: Correct Letter Sounds Read Per Minute (Mean). Lunda. 2nd Grade\",\"Average number of letter sounds that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the sounds of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLSPM.LUV.2GRD\",\"EGRA: Correct Letter Sounds Read Per Minute (Mean). Luvale. 2nd Grade\",\"Average number of letter sounds that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the sounds of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLSPM.NZE.2GRD\",\"EGRA: Correct Letter Sounds Read Per Minute (Mean). Nzema. 2nd Grade\",\"Average number of letter sounds that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the sounds of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CLSPM.SIL.2GRD\",\"EGRA: Correct Letter Sounds Read Per Minute (Mean). Silozi. 2nd Grade\",\"Average number of letter sounds that students could read per minute. In this EGRA subtask, assessors present students with a sheet listing between 50 and 100 upper- and lowercase letters of the alphabet (in some languages, graphemes, or sets of letters and/or symbols representing a single sound, are presented). Students are asked to provide the sounds of all the letters that they can in one minute. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.AFA.2GRD\",\"EGRA: Correct Isolated Words Read Per Minute (Mean). Afan Oromo. 2nd Grade\",\"Average total number of familiar words correctly read per minute. The familiar word reading subtask tests students' ability to read a list of one or two syllable words drawn from a corpus of frequent words presented in random order. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.AFA.3GRD\",\"EGRA: Correct Isolated Words Read Per Minute (Mean). Afan Oromo. 3rd Grade\",\"Average total number of familiar words correctly read per minute. The familiar word reading subtask tests students' ability to read a list of one or two syllable words drawn from a corpus of frequent words presented in random order. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.AMH.2GRD\",\"EGRA: Correct Isolated Words Read Per Minute (Mean). Amharic. 2nd Grade\",\"Average total number of familiar words correctly read per minute. The familiar word reading subtask tests students' ability to read a list of one or two syllable words drawn from a corpus of frequent words presented in random order. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.AMH.3GRD\",\"EGRA: Correct Isolated Words Read Per Minute (Mean). Amharic. 3rd Grade\",\"Average total number of familiar words correctly read per minute. The familiar word reading subtask tests students' ability to read a list of one or two syllable words drawn from a corpus of frequent words presented in random order. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ARB.2GRD\",\"EGRA: Correct Isolated Words Read Per Minute (Mean). Arabic. 2nd Grade\",\"Average total number of familiar words correctly read per minute. The familiar word reading subtask tests students' ability to read a list of one or two syllable words drawn from a corpus of frequent words presented in random order. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.BMN.2GRD\",\"EGRA: Correct Isolated Words Read Per Minute (Mean). Bamanankan. 2nd Grade\",\"Average total number of familiar words correctly read per minute. The familiar word reading subtask tests students' ability to read a list of one or two syllable words drawn from a corpus of frequent words presented in random order. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.BOM.2GRD\",\"EGRA: Correct Isolated Words Read Per Minute (Mean). Bomu. 2nd Grade\",\"Average total number of familiar words correctly read per minute. The familiar word reading subtask tests students' ability to read a list of one or two syllable words drawn from a corpus of frequent words presented in random order. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.CHC.2GRD\",\"EGRA: Correct Isolated Words Read Per Minute (Mean). Chichewa. 2nd Grade\",\"Average total number of familiar words correctly read per minute. The familiar word reading subtask tests students' ability to read a list of one or two syllable words drawn from a corpus of frequent words presented in random order. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.CHC.4GRD\",\"EGRA: Correct Isolated Words Read Per Minute (Mean). Chichewa. 4th Grade\",\"Average total number of familiar words correctly read per minute. The familiar word reading subtask tests students' ability to read a list of one or two syllable words drawn from a corpus of frequent words presented in random order. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ENG.2GRD\",\"EGRA: Correct Isolated Words Read Per Minute (Mean). English. 2nd Grade\",\"Average total number of familiar words correctly read per minute. The familiar word reading subtask tests students' ability to read a list of one or two syllable words drawn from a corpus of frequent words presented in random order. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ENG.3GRD\",\"EGRA: Correct Isolated Words Read Per Minute (Mean). English. 3rd Grade\",\"Average total number of familiar words correctly read per minute. The familiar word reading subtask tests students' ability to read a list of one or two syllable words drawn from a corpus of frequent words presented in random order. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ENG.4GRD\",\"EGRA: Correct Isolated Words Read Per Minute (Mean). English. 4th Grade\",\"Average total number of familiar words correctly read per minute. The familiar word reading subtask tests students' ability to read a list of one or two syllable words drawn from a corpus of frequent words presented in random order. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ENG.6GRD\",\"EGRA: Correct Isolated Words Read Per Minute (Mean). English. 6th Grade\",\"Average total number of familiar words correctly read per minute. The familiar word reading subtask tests students' ability to read a list of one or two syllable words drawn from a corpus of frequent words presented in random order. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.FLF.2GRD\",\"EGRA: Correct Isolated Words Read Per Minute (Mean). Fulfulde. 2nd Grade\",\"Average total number of familiar words correctly read per minute. The familiar word reading subtask tests students' ability to read a list of one or two syllable words drawn from a corpus of frequent words presented in random order. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.FLP.3GRD\",\"EGRA: Correct Isolated Words Read Per Minute (Mean). Filipino. 3rd Grade\",\"Average total number of familiar words correctly read per minute. The familiar word reading subtask tests students' ability to read a list of one or two syllable words drawn from a corpus of frequent words presented in random order. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.HAR.2GRD\",\"EGRA: Correct Isolated Words Read Per Minute (Mean). Hararigna. 2nd Grade\",\"Average total number of familiar words correctly read per minute. The familiar word reading subtask tests students' ability to read a list of one or two syllable words drawn from a corpus of frequent words presented in random order. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.HAR.3GRD\",\"EGRA: Correct Isolated Words Read Per Minute (Mean). Hararigna. 3rd Grade\",\"Average total number of familiar words correctly read per minute. The familiar word reading subtask tests students' ability to read a list of one or two syllable words drawn from a corpus of frequent words presented in random order. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.KIS.2GRD\",\"EGRA: Correct Isolated Words Read Per Minute (Mean). Kiswahili. 2nd Grade\",\"Average total number of familiar words correctly read per minute. The familiar word reading subtask tests students' ability to read a list of one or two syllable words drawn from a corpus of frequent words presented in random order. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.KNY.4GRD\",\"EGRA: Correct Isolated Words Read Per Minute (Mean). Kinyarwanda. 4th Grade\",\"Average total number of familiar words correctly read per minute. The familiar word reading subtask tests students' ability to read a list of one or two syllable words drawn from a corpus of frequent words presented in random order. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.KNY.6GRD\",\"EGRA: Correct Isolated Words Read Per Minute (Mean). Kinyarwanda. 6th Grade\",\"Average total number of familiar words correctly read per minute. The familiar word reading subtask tests students' ability to read a list of one or two syllable words drawn from a corpus of frequent words presented in random order. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.SID.2GRD\",\"EGRA: Correct Isolated Words Read Per Minute (Mean). Sidaamu Afoo. 2nd Grade\",\"Average total number of familiar words correctly read per minute. The familiar word reading subtask tests students' ability to read a list of one or two syllable words drawn from a corpus of frequent words presented in random order. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.SID.3GRD\",\"EGRA: Correct Isolated Words Read Per Minute (Mean). Sidaamu Afoo. 3rd Grade\",\"Average total number of familiar words correctly read per minute. The familiar word reading subtask tests students' ability to read a list of one or two syllable words drawn from a corpus of frequent words presented in random order. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.SNG.2GRD\",\"EGRA: Correct Isolated Words Read Per Minute (Mean). Songhoi. 2nd Grade\",\"Average total number of familiar words correctly read per minute. The familiar word reading subtask tests students' ability to read a list of one or two syllable words drawn from a corpus of frequent words presented in random order. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.SOM.2GRD\",\"EGRA: Correct Isolated Words Read Per Minute (Mean). Somaligna. 2nd Grade\",\"Average total number of familiar words correctly read per minute. The familiar word reading subtask tests students' ability to read a list of one or two syllable words drawn from a corpus of frequent words presented in random order. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.SOM.3GRD\",\"EGRA: Correct Isolated Words Read Per Minute (Mean). Somaligna. 3rd Grade\",\"Average total number of familiar words correctly read per minute. The familiar word reading subtask tests students' ability to read a list of one or two syllable words drawn from a corpus of frequent words presented in random order. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.SPN.2GRD\",\"EGRA: Correct Isolated Words Read Per Minute (Mean). Spanish. 2nd Grade\",\"Average total number of familiar words correctly read per minute. The familiar word reading subtask tests students' ability to read a list of one or two syllable words drawn from a corpus of frequent words presented in random order. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.SPN.3GRD\",\"EGRA: Correct Isolated Words Read Per Minute (Mean). Spanish. 3rd Grade\",\"Average total number of familiar words correctly read per minute. The familiar word reading subtask tests students' ability to read a list of one or two syllable words drawn from a corpus of frequent words presented in random order. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.SPN.4GRD\",\"EGRA: Correct Isolated Words Read Per Minute (Mean). Spanish. 4th Grade\",\"Average total number of familiar words correctly read per minute. The familiar word reading subtask tests students' ability to read a list of one or two syllable words drawn from a corpus of frequent words presented in random order. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.TIG.2GRD\",\"EGRA: Correct Isolated Words Read Per Minute (Mean). Tigrinya. 2nd Grade\",\"Average total number of familiar words correctly read per minute. The familiar word reading subtask tests students' ability to read a list of one or two syllable words drawn from a corpus of frequent words presented in random order. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.TIG.3GRD\",\"EGRA: Correct Isolated Words Read Per Minute (Mean). Tigrinya. 3rd Grade\",\"Average total number of familiar words correctly read per minute. The familiar word reading subtask tests students' ability to read a list of one or two syllable words drawn from a corpus of frequent words presented in random order. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.AFA.2GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Afan Oromo. 2nd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.AFA.3GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Afan Oromo. 3rd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.AKU.2GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Akuapem. 2nd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.AMH.2GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Amharic. 2nd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.AMH.3GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Amharic. 3rd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.ARB.2GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Arabic. 2nd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.ARB.3GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Arabic. 3rd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.AST.2GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Asante Twi. 2nd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.BMN.2GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Bamanankan. 2nd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.BOM.2GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Bomu. 2nd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.CHC.2GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Chichewa. 2nd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.CHC.4GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Chichewa. 4th Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.CHI.2GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Chitonga. 2nd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.CIN.2GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Cinyanja. 2nd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.DAG.2GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Dagaare. 2nd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.DAGB.2GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Dagbani. 2nd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.DAN.2GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Dangme. 2nd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.ENG.2GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). English. 2nd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.ENG.3GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). English. 3rd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.ENG.4GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). English. 4th Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.ENG.6GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). English. 6th Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.EWE.2GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Ewe. 2nd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.FAN.2GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Fante. 2nd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.FLF.2GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Fulfulde. 2nd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.FLP.3GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Filipino. 3rd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.FRN.3GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). French. 3rd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.GA.2GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Ga. 2nd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.GON.2GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Gonja. 2nd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.HAR.2GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Hararigna. 2nd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.HAR.3GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Hararigna. 3rd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.ICI.2GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Icibemba. 2nd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.IND.2GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Indonesian. 2nd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.KAS.2GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Kasem. 2nd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.KII.2GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Kiikaonde. 2nd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.KIS.2GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Kiswahili. 2nd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.KNY.4GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Kinyarwanda. 4th Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.KNY.6GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Kinyarwanda. 6th Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.LUN.2GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Lunda. 2nd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.LUV.2GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Luvale. 2nd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.NZE.2GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Nzema. 2nd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.SID.2GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Sidaamu Afoo. 2nd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.SID.3GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Sidaamu Afoo. 3rd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.SIL.2GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Silozi. 2nd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.SNG.2GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Songhoi. 2nd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.SOM.2GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Somaligna. 2nd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.SOM.3GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Somaligna. 3rd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.SPN.2GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Spanish. 2nd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.SPN.3GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Spanish. 3rd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.SPN.4GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Spanish. 4th Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.TIG.2GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Tigrinya. 2nd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.CWPM.ZERO.TIG.3GRD\",\"EGRA: Oral Reading Fluency - Share of students with a zero score (%). Tigrinya. 3rd Grade\",\"Percentage of students who were unable to read a single word of text on the oral reading fluency subtask. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.INIT.0.BMN.2GRD\",\"EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Bamanankan. 2nd Grade\",\"Share of students who could not identify the initial sound of any word read aloud to the student by the assessor (%). For example, the assessors ask students questions like “What is the first sound in the word ‘map’?\\\" and record the number of initial letters the students could identify within one minute. This EGRA subtask is a test of phonemic awareness -- the ability to identify, separate, and manipulate sounds in words. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.INIT.0.BOM.2GRD\",\"EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Bomu. 2nd Grade\",\"Share of students who could not identify the initial sound of any word read aloud to the student by the assessor (%). For example, the assessors ask students questions like “What is the first sound in the word ‘map’?\\\" and record the number of initial letters the students could identify within one minute. This EGRA subtask is a test of phonemic awareness -- the ability to identify, separate, and manipulate sounds in words. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.INIT.0.CHC.2GRD\",\"EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Chichewa. 2nd Grade\",\"Share of students who could not identify the initial sound of any word read aloud to the student by the assessor (%). For example, the assessors ask students questions like “What is the first sound in the word ‘map’?\\\" and record the number of initial letters the students could identify within one minute. This EGRA subtask is a test of phonemic awareness -- the ability to identify, separate, and manipulate sounds in words. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.INIT.0.CHC.4GRD\",\"EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Chichewa. 4th Grade\",\"Share of students who could not identify the initial sound of any word read aloud to the student by the assessor (%). For example, the assessors ask students questions like “What is the first sound in the word ‘map’?\\\" and record the number of initial letters the students could identify within one minute. This EGRA subtask is a test of phonemic awareness -- the ability to identify, separate, and manipulate sounds in words. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.INIT.0.ENG.2GRD\",\"EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). English. 2nd Grade\",\"Share of students who could not identify the initial sound of any word read aloud to the student by the assessor (%). For example, the assessors ask students questions like “What is the first sound in the word ‘map’?\\\" and record the number of initial letters the students could identify within one minute. This EGRA subtask is a test of phonemic awareness -- the ability to identify, separate, and manipulate sounds in words. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.INIT.0.ENG.3GRD\",\"EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). English. 3rd Grade\",\"Share of students who could not identify the initial sound of any word read aloud to the student by the assessor (%). For example, the assessors ask students questions like “What is the first sound in the word ‘map’?\\\" and record the number of initial letters the students could identify within one minute. This EGRA subtask is a test of phonemic awareness -- the ability to identify, separate, and manipulate sounds in words. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.INIT.0.ENG.4GRD\",\"EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). English. 4th Grade\",\"Share of students who could not identify the initial sound of any word read aloud to the student by the assessor (%). For example, the assessors ask students questions like “What is the first sound in the word ‘map’?\\\" and record the number of initial letters the students could identify within one minute. This EGRA subtask is a test of phonemic awareness -- the ability to identify, separate, and manipulate sounds in words. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.INIT.0.ENG.6GRD\",\"EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). English. 6th Grade\",\"Share of students who could not identify the initial sound of any word read aloud to the student by the assessor (%). For example, the assessors ask students questions like “What is the first sound in the word ‘map’?\\\" and record the number of initial letters the students could identify within one minute. This EGRA subtask is a test of phonemic awareness -- the ability to identify, separate, and manipulate sounds in words. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.INIT.0.FLF.2GRD\",\"EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Fulfulde. 2nd Grade\",\"Share of students who could not identify the initial sound of any word read aloud to the student by the assessor (%). For example, the assessors ask students questions like “What is the first sound in the word ‘map’?\\\" and record the number of initial letters the students could identify within one minute. This EGRA subtask is a test of phonemic awareness -- the ability to identify, separate, and manipulate sounds in words. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.INIT.0.KNY.4GRD\",\"EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Kinyarwanda. 4th Grade\",\"Share of students who could not identify the initial sound of any word read aloud to the student by the assessor (%). For example, the assessors ask students questions like “What is the first sound in the word ‘map’?\\\" and record the number of initial letters the students could identify within one minute. This EGRA subtask is a test of phonemic awareness -- the ability to identify, separate, and manipulate sounds in words. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.INIT.0.KNY.6GRD\",\"EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Kinyarwanda. 6th Grade\",\"Share of students who could not identify the initial sound of any word read aloud to the student by the assessor (%). For example, the assessors ask students questions like “What is the first sound in the word ‘map’?\\\" and record the number of initial letters the students could identify within one minute. This EGRA subtask is a test of phonemic awareness -- the ability to identify, separate, and manipulate sounds in words. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.INIT.0.SNG.2GRD\",\"EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Songhoi. 2nd Grade\",\"Share of students who could not identify the initial sound of any word read aloud to the student by the assessor (%). For example, the assessors ask students questions like “What is the first sound in the word ‘map’?\\\" and record the number of initial letters the students could identify within one minute. This EGRA subtask is a test of phonemic awareness -- the ability to identify, separate, and manipulate sounds in words. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.INIT.0.SPN.2GRD\",\"EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Spanish. 2nd Grade\",\"Share of students who could not identify the initial sound of any word read aloud to the student by the assessor (%). For example, the assessors ask students questions like “What is the first sound in the word ‘map’?\\\" and record the number of initial letters the students could identify within one minute. This EGRA subtask is a test of phonemic awareness -- the ability to identify, separate, and manipulate sounds in words. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.INIT.0.SPN.3GRD\",\"EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Spanish. 3rd Grade\",\"Share of students who could not identify the initial sound of any word read aloud to the student by the assessor (%). For example, the assessors ask students questions like “What is the first sound in the word ‘map’?\\\" and record the number of initial letters the students could identify within one minute. This EGRA subtask is a test of phonemic awareness -- the ability to identify, separate, and manipulate sounds in words. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.INIT.0.SPN.4GRD\",\"EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Spanish. 4th Grade\",\"Share of students who could not identify the initial sound of any word read aloud to the student by the assessor (%). For example, the assessors ask students questions like “What is the first sound in the word ‘map’?\\\" and record the number of initial letters the students could identify within one minute. This EGRA subtask is a test of phonemic awareness -- the ability to identify, separate, and manipulate sounds in words. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.AFA.2GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Afan Oromo. 2nd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.AFA.3GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Afan Oromo. 3rd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.AKU.2GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Akuapem. 2nd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.AMH.2GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Amharic. 2nd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.AMH.3GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Amharic. 3rd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.ARB.2GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Arabic. 2nd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.ARB.3GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Arabic. 3rd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.AST.2GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Asante Twi. 2nd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.BMN.2GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Bamanankan. 2nd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.BOM.2GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Bomu. 2nd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.CHC.2GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Chichewa. 2nd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.CHC.4GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Chichewa. 4th Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.CHI.2GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Chitonga. 2nd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.CIN.2GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Cinyanja. 2nd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.DAG.2GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Dagaare. 2nd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.DAGB.2GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Dagbani. 2nd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.DAN.2GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Dangme. 2nd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.ENG.2GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). English. 2nd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.ENG.3GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). English. 3rd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.ENG.4GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). English. 4th Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.ENG.6GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). English. 6th Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.EWE.2GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Ewe. 2nd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.FAN.2GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Fante. 2nd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.FLF.2GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Fulfulde. 2nd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.FLP.3GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Filipino. 3rd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.GA.2GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Ga. 2nd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.GON.2GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Gonja. 2nd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.HAR.2GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Hararigna. 2nd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.HAR.3GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Hararigna. 3rd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.ICI.2GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Icibemba. 2nd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.IND.2GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Indonesian. 2nd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.KAS.2GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Kasem. 2nd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.KII.2GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Kiikaonde. 2nd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.KIS.2GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Kiswahili. 2nd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.KNY.4GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Kinyarwanda. 4th Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.KNY.6GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Kinyarwanda. 6th Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.LUN.2GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Lunda. 2nd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.LUV.2GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Luvale. 2nd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.NZE.2GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Nzema. 2nd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.SID.2GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Sidaamu Afoo. 2nd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.SID.3GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Sidaamu Afoo. 3rd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.SIL.2GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Silozi. 2nd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.SNG.2GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Songhoi. 2nd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.SOM.2GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Somaligna. 2nd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.SOM.3GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Somaligna. 3rd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.SPN.2GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Spanish. 2nd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.SPN.3GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Spanish. 3rd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.SPN.4GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Spanish. 4th Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.TIG.2GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Tigrinya. 2nd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.LSTN.0.TIG.3GRD\",\"EGRA: Listening Comprehension - Share of students with a zero score (%). Tigrinya. 3rd Grade\",\"Share of students scoring zero percent on the listening comprehension assessment. The listening comprehension subtask examines students' ability to respond correctly to questions about a brief passage read aloud to the student by the assessor in order to understand students’ ability to comprehend orally without having to overcome issues of decoding. Part of comprehension is understanding the meanings of the words, thus if students do not have enough vocabulary in the language, they will not be able to comprehend. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.AFA.2GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Afan Oromo. 2nd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.AFA.3GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Afan Oromo. 3rd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.AKU.2GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Akuapem. 2nd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.AMH.2GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Amharic. 2nd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.AMH.3GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Amharic. 3rd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.ARB.2GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Arabic. 2nd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.ARB.3GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Arabic. 3rd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.AST.2GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Asante Twi. 2nd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.BMN.2GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Bamanankan. 2nd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.BOM.2GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Bomu. 2nd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.CHC.2GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Chichewa. 2nd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.CHC.4GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Chichewa. 4th Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.CHI.2GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Chitonga. 2nd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.CIN.2GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Cinyanja. 2nd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.DAG.2GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Dagaare. 2nd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.DAGB.2GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Dagbani. 2nd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.DAN.2GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Dangme. 2nd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.ENG.2GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). English. 2nd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.ENG.3GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). English. 3rd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.ENG.4GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). English. 4th Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.ENG.6GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). English. 6th Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.EWE.2GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Ewe. 2nd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.FAN.2GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Fante. 2nd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.FLF.2GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Fulfulde. 2nd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.FLP.3GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Filipino. 3rd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.FRN.3GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). French. 3rd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.GA.2GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Ga. 2nd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.GON.2GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Gonja. 2nd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.HAR.2GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Hararigna. 2nd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.HAR.3GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Hararigna. 3rd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.ICI.2GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Icibemba. 2nd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.IND.2GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Indonesian. 2nd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.KAS.2GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Kasem. 2nd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.KII.2GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Kiikaonde. 2nd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.KIS.2GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Kiswahili. 2nd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.KNY.4GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Kinyarwanda. 4th Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.KNY.6GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Kinyarwanda. 6th Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.LUN.2GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Lunda. 2nd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.LUV.2GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Luvale. 2nd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.NZE.2GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Nzema. 2nd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.SID.2GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Sidaamu Afoo. 2nd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.SID.3GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Sidaamu Afoo. 3rd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.SIL.2GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Silozi. 2nd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.SNG.2GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Songhoi. 2nd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.SOM.2GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Somaligna. 2nd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.SOM.3GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Somaligna. 3rd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.SPN.2GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Spanish. 2nd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.SPN.3GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Spanish. 3rd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.SPN.4GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Spanish. 4th Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.TIG.2GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Tigrinya. 2nd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.NCWPM.TIG.3GRD\",\"EGRA: Correct Non-Words Read Per Minute (Mean). Tigrinya. 3rd Grade\",\"Average total number of invented/nonsense words correctly read per minute. The indicator measures students' ability to fluently decipher/decode randomly-presented “words” that follow linguistic rules but do not actually exist in the stated language. Skill in reading nonwords can be a purer measure of decoding than using real words because children cannot recognize the words by sight. Decoding is considered a self-teaching skill that enables children to read new and unfamiliar words independently. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.AFA.2GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Afan Oromo. 2nd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.AFA.3GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Afan Oromo. 3rd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.AKU.2GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Akuapem. 2nd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students'ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.AMH.2GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Amharic. 2nd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.AMH.3GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Amharic. 3rd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.ARB.2GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Arabic. 2nd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.ARB.3GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Arabic. 3rd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.AST.2GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Asante Twi. 2nd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students'ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.BMN.2GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Bamanankan. 2nd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.BOM.2GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Bomu. 2nd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.CHC.2GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Chichewa. 2nd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.CHC.4GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Chichewa. 4th Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.CHI.2GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Chitonga. 2nd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students'ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.CIN.2GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Cinyanja. 2nd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students'ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.DAG.2GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Dagaare. 2nd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students'ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.DAGB.2GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Dagbani. 2nd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students'ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.DAN.2GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Dangme. 2nd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students'ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.ENG.2GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). English. 2nd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.ENG.3GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). English. 3rd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.ENG.4GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). English. 4th Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.ENG.6GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). English. 6th Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.EWE.2GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Ewe. 2nd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students'ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.FAN.2GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Fante. 2nd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students'ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.FLF.2GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Fulfulde. 2nd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.FLP.3GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Filipino. 3rd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.FRN.3GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). French. 3rd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.GA.2GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Ga. 2nd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students'ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.GON.2GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Gonja. 2nd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students'ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.HAR.2GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Hararigna. 2nd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.HAR.3GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Hararigna. 3rd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.ICI.2GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Icibemba. 2nd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students'ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.IND.2GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Indonesian. 2nd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.KAS.2GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Kasem. 2nd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students'ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.KII.2GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Kiikaonde. 2nd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students'ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.KIS.2GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Kiswahili. 2nd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students'ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.KNY.4GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Kinyarwanda. 4th Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.KNY.6GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Kinyarwanda. 6th Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.LUN.2GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Lunda. 2nd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students'ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.LUV.2GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Luvale. 2nd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students'ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.NZE.2GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Nzema. 2nd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students'ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.SID.2GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Sidaamu Afoo. 2nd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.SID.3GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Sidaamu Afoo. 3rd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.SIL.2GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Silozi. 2nd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students'ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.SNG.2GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Songhoi. 2nd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.SOM.2GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Somaligna. 2nd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.SOM.3GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Somaligna. 3rd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.SPN.2GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Spanish. 2nd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.SPN.3GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Spanish. 3rd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.SPN.4GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Spanish. 4th Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.TIG.2GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Tigrinya. 2nd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.ORF.TIG.3GRD\",\"EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Tigrinya. 3rd Grade\",\"Average total number of words correctly read per minute from a narrative or informational reading passage. The oral reading fluency/paragraph reading subtask examines students' ability to read a narrative or informational text with accuracy, with little effort, and at a sufficient rate. Assessors ask students to read the paragraph and stop them after one minute to record the number of words correctly read. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org .\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.AFA.2GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Afan Oromo. 2nd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.AFA.3GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Afan Oromo. 3rd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.AKU.2GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Akuapem. 2nd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.AMH.2GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Amharic. 2nd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.AMH.3GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Amharic. 3rd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.ARB.2GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Arabic. 2nd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.ARB.3GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Arabic. 3rd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.AST.2GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Asante Twi. 2nd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.BMN.2GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Bamanankan. 2nd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.BOM.2GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Bomu. 2nd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.CHC.2GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Chichewa. 2nd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.CHC.4GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Chichewa. 4th Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.CHI.2GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Chitonga. 2nd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.CIN.2GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Cinyanja. 2nd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.DAG.2GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Dagaare. 2nd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.DAGB.2GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Dagbani. 2nd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.DAN.2GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Dangme. 2nd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.ENG.2GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). English. 2nd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.ENG.3GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). English. 3rd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.ENG.4GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). English. 4th Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.ENG.6GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). English. 6th Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.EWE.2GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Ewe. 2nd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.FAN.2GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Fante. 2nd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.FLF.2GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Fulfulde. 2nd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.FLP.3GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Filipino. 3rd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.FRN.3GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). French. 3rd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.GA.2GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Ga. 2nd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.GON.2GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Gonja. 2nd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.HAR.2GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Hararigna. 2nd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.HAR.3GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Hararigna. 3rd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.ICI.2GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Icibemba. 2nd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.IND.2GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Indonesian. 2nd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.KAS.2GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Kasem. 2nd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.KII.2GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Kiikaonde. 2nd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.KIS.2GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Kiswahili. 2nd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.KNY.4GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Kinyarwanda. 4th Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.KNY.6GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Kinyarwanda. 6th Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.LUN.2GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Lunda. 2nd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.LUV.2GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Luvale. 2nd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.NZE.2GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Nzema. 2nd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.SID.2GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Sidaamu Afoo. 2nd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.SID.3GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Sidaamu Afoo. 3rd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.SIL.2GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Silozi. 2nd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.SNG.2GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Songhoi. 2nd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.SOM.2GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Somaligna. 2nd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.SOM.3GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Somaligna. 3rd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.SPN.2GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Spanish. 2nd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.SPN.3GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Spanish. 3rd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.SPN.4GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Spanish. 4th Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.TIG.2GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Tigrinya. 2nd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.0.TIG.3GRD\",\"EGRA: Reading Comprehension - Share of students with a zero score (%). Tigrinya. 3rd Grade\",\"Share of students who scored zero percent on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.AFA.ADV.2GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Afan Oromo. 2nd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.AFA.ADV.3GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Afan Oromo. 3rd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.AKU.ADV.2GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Akuapem. 2nd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.AMH.ADV.2GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Amharic. 2nd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.AMH.ADV.3GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Amharic. 3rd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.ARB.ADV.2GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Arabic. 2nd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.ARB.ADV.3GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Arabic. 3rd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.AST.ADV.2GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Asante Twi. 2nd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.BMN.ADV.2GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Bamanankan. 2nd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.BOM.ADV.2GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Bomu. 2nd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.CHC.ADV.2GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Chichewa. 2nd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.CHC.ADV.4GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Chichewa. 4th Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.CHI.ADV.2GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Chitonga. 2nd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.CIN.ADV.2GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Cinyanja. 2nd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.DAG.ADV.2GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Dagaare. 2nd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.DAGB.ADV.2GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Dagbani. 2nd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.DAN.ADV.2GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Dangme. 2nd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.ENG.ADV.2GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). English. 2nd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.ENG.ADV.3GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). English. 3rd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.ENG.ADV.4GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). English. 4th Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.ENG.ADV.6GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). English. 6th Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.EWE.ADV.2GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Ewe. 2nd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.FAN.ADV.2GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Fante. 2nd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.FLF.ADV.2GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Fulfulde. 2nd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.FLP.ADV.3GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Filipino. 3rd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.FRN.ADV.3GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). French. 3rd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.GA.ADV.2GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Ga. 2nd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.GON.ADV.2GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Gonja. 2nd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.HAR.ADV.2GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Hararigna. 2nd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.HAR.ADV.3GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Hararigna. 3rd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.ICI.ADV.2GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Icibemba. 2nd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.IND.ADV.3GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Indonesian. 2nd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.KAS.ADV.2GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Kasem. 2nd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.KII.ADV.2GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Kiikaonde. 2nd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.KIS.ADV.2GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Kiswahili. 2nd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.KNY.ADV.4GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Kinyarwanda. 4th Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.KNY.ADV.6GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Kinyarwanda. 6th Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.LUN.ADV.2GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Lunda. 2nd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.LUV.ADV.2GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Luvale. 2nd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.NZE.ADV.2GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Nzema. 2nd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.SID.ADV.2GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Sidaamu Afoo. 2nd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.SID.ADV.3GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Sidaamu Afoo. 3rd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.SIL.ADV.2GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Silozi. 2nd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.SNG.ADV.2GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Songhoi. 2nd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.SOM.ADV.2GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Somaligna. 2nd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.SOM.ADV.3GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Somaligna. 3rd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.SPN.ADV.2GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Spanish. 2nd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.SPN.ADV.3GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Spanish. 3rd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.SPN.ADV.4GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Spanish. 4th Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.TIG.ADV.2GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Tigrinya. 2nd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.EGRA.READ.TIG.ADV.3GRD\",\"EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Tigrinya. 3rd Grade\",\"Share of students who scored 80 percent or higher on the reading comprehension assessment. The reading comprehension subtask follows the oral reading fluency subtask; students are required to respond to literal and inferential questions about the oral reading fluency subtask text they have just read. The questions are read aloud to the student by the assessor. Users are discouraged from using these data to make direct comparisons across countries or languages. Consult the EdData website and the specific country report for more information: www.eddataglobal.org.\",\"Education Statistics\",\"Early Grade Reading Assessment (EGRA): https://www.eddataglobal.org/reading/\"\n\"LO.LLECE.MAT3\",\"LLECE: Mean performance on the mathematics scale for 3rd grade students, total\",\"Average score on the 3rd grade mathematics assessment. 1997 scores were calculated on a scale with a mean of 250 points and a standard deviation of 50 points. 2006 scores were calculated on a scale with a mean of 500 and a standard deviation of 100 points. 2006 scores are not comparable with 1997 scores. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT3.0\",\"LLECE: 3rd grade students by mathematics proficiency level (%). Below Level 1\",\"Percentage of 3rd grade students below the lowest proficiency level (scoring below 391.5) on the LLECE mathematics scale. Students below Level 1 have not been able to acquire the abilities required in Level I. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT3.0.FE\",\"LLECE: Female 3rd grade students by mathematics proficiency level (%). Below Level 1\",\"Percentage of 3rd grade female students below the lowest proficiency level (scoring below 391.5) on the LLECE mathematics scale. Students below Level 1 have not been able to acquire the abilities required in Level I. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT3.0.MA\",\"LLECE: Male 3rd grade students by mathematics proficiency level (%). Below Level 1\",\"Percentage of 3rd grade male students below the lowest proficiency level (scoring below 391.5) on the LLECE mathematics scale. Students below Level 1 have not been able to acquire the abilities required in Level I. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT3.1\",\"LLECE: 3rd grade students by mathematics proficiency level (%). Level 1\",\"Percentage of 3rd grade students scoring at least 391.5 but lower than 489.01 points on the LLECE mathematics scale. At Level 1, students can recognize the relationship between natural numbers and common bi-dimensional geometric shapes in simple drawings. They can locate relative positions of an object in a spatial representation. Students can interpret tables and graphs in order to obtain direct information. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT3.1.FE\",\"LLECE: Female 3rd grade students by mathematics proficiency level (%). Level 1\",\"Percentage of 3rd grade female students scoring at least 391.5 but lower than 489.01 points on the LLECE mathematics scale. At Level 1, students can recognize the relationship between natural numbers and common bi-dimensional geometric shapes in simple drawings. They can locate relative positions of an object in a spatial representation. Students can interpret tables and graphs in order to obtain direct information. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT3.1.MA\",\"LLECE: Male 3rd grade students by mathematics proficiency level (%). Level 1\",\"Percentage of 3rd grade male students scoring at least 391.5 but lower than 489.01 points on the LLECE mathematics scale. At Level 1, students can recognize the relationship between natural numbers and common bi-dimensional geometric shapes in simple drawings. They can locate relative positions of an object in a spatial representation. Students can interpret tables and graphs in order to obtain direct information. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT3.2\",\"LLECE: 3rd grade students by mathematics proficiency level (%). Level 2\",\"Percentage of 3rd grade students scoring at least 489.01 but less than 558.54 points on the LLECE mathematics scale. At Level 2, students recognize the organization of the decimal-positional numeral system and identify the constituent elements of geometrical shapes. Students can identify a trajectory on a plane and the most suitable measurement unit or instrument in order to measure a known object’s attribute. Students interpret tables and charts in order to obtain information and compare data. Students solve addition or multiplication problems involving proportional relationships using natural numbers. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT3.2.FE\",\"LLECE: Female 3rd grade students by mathematics proficiency level (%). Level 2\",\"Percentage of 3rd grade female students scoring at least 489.01 but less than 558.54 points on the LLECE mathematics scale. At Level 2, students recognize the organization of the decimal-positional numeral system and identify the constituent elements of geometrical shapes. Students can identify a trajectory on a plane and the most suitable measurement unit or instrument in order to measure a known object’s attribute. Students interpret tables and charts in order to obtain information and compare data. Students solve addition or multiplication problems involving proportional relationships using natural numbers. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT3.2.MA\",\"LLECE: Male 3rd grade students by mathematics proficiency level (%). Level 2\",\"Percentage of 3rd grade male students scoring at least 489.01 but less than 558.54 points on the LLECE mathematics scale. At Level 2, students recognize the organization of the decimal-positional numeral system and identify the constituent elements of geometrical shapes. Students can identify a trajectory on a plane and the most suitable measurement unit or instrument in order to measure a known object’s attribute. Students interpret tables and charts in order to obtain information and compare data. Students solve addition or multiplication problems involving proportional relationships using natural numbers. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT3.3\",\"LLECE: 3rd grade students by mathematics proficiency level (%). Level 3\",\"Percentage of 3rd grade students scoring at least 558.54 but less than 621.68 points on the LLECE mathematics scale. At Level 3, students can solve multiplication problems or problems which require the use of an addition equation or two separate operations. Students can solve addition problems involving measurement units and their equivalences or problems which require using common fractions. Students must identify the graphic or addition numerical sequence rule being used in order to continue it. Students can identify the elements of unusual geometrical shapes and interpret different types of graphs in order to retrieve information and solve problems that involve operating with the data. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT3.3.FE\",\"LLECE: Female 3rd grade students by mathematics proficiency level (%). Level 3\",\"Percentage of 3rd grade female students scoring at least 558.54 but less than 621.68 points on the LLECE mathematics scale. At Level 3, students can solve multiplication problems or problems which require the use of an addition equation or two separate operations. Students can solve addition problems involving measurement units and their equivalences or problems which require using common fractions. Students must identify the graphic or addition numerical sequence rule being used in order to continue it. Students can identify the elements of unusual geometrical shapes and interpret different types of graphs in order to retrieve information and solve problems that involve operating with the data. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT3.3.MA\",\"LLECE: Male 3rd grade students by mathematics proficiency level (%). Level 3\",\"Percentage of 3rd grade male students scoring at least 558.54 but less than 621.68 points on the LLECE mathematics scale. At Level 3, students can solve multiplication problems or problems which require the use of an addition equation or two separate operations. Students can solve addition problems involving measurement units and their equivalences or problems which require using common fractions. Students must identify the graphic or addition numerical sequence rule being used in order to continue it. Students can identify the elements of unusual geometrical shapes and interpret different types of graphs in order to retrieve information and solve problems that involve operating with the data. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT3.4\",\"LLECE: 3rd grade students by mathematics proficiency level (%). Level 4\",\"Percentage of 3rd grade students scoring 621.68 or higher on the LLECE mathematics scale. At Level 4, students can recognize a numerical sequence rule and identify it. Students can solve multiplication problems with one unknown or problems which require the use of equivalences between commonly used measures of length. Students can identify an element on a bi-dimensional plane and the properties of the sides of a square or rectangle in order to solve a problem. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT3.4.FE\",\"LLECE: Female 3rd grade students by mathematics proficiency level (%). Level 4\",\"Percentage of 3rd grade female students scoring 621.68 or higher on the LLECE mathematics scale. At Level 4, students can recognize a numerical sequence rule and identify it. Students can solve multiplication problems with one unknown or problems which require the use of equivalences between commonly used measures of length. Students can identify an element on a bi-dimensional plane and the properties of the sides of a square or rectangle in order to solve a problem. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT3.4.MA\",\"LLECE: Male 3rd grade students by mathematics proficiency level (%). Level 4\",\"Percentage of 3rd grade male students scoring 621.68 or higher on the LLECE mathematics scale. At Level 4, students can recognize a numerical sequence rule and identify it. Students can solve multiplication problems with one unknown or problems which require the use of equivalences between commonly used measures of length. Students can identify an element on a bi-dimensional plane and the properties of the sides of a square or rectangle in order to solve a problem. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT3.FE\",\"LLECE: Mean performance on the mathematics scale for 3rd grade students, female\",\"Average score on the 3rd grade mathematics assessment for female students. 1997 scores were calculated on a scale with a mean of 250 points and a standard deviation of 50 points. 2006 scores were calculated on a scale with a mean of 500 and a standard deviation of 100 points. 2006 scores are not comparable with 1997 scores. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT3.MA\",\"LLECE: Mean performance on the mathematics scale for 3rd grade students, male\",\"Average score on the 3rd grade mathematics assessment for male students. 1997 scores were calculated on a scale with a mean of 250 points and a standard deviation of 50 points. 2006 scores were calculated on a scale with a mean of 500 and a standard deviation of 100 points. 2006 scores are not comparable with 1997 scores. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT3.P10\",\"LLECE: Distribution of 3rd Grade Mathematics Scores: 10th Percentile Score\",\"The 10th percentile score is the score below which 10 percent of students scored. 1997 scores were calculated on a scale with a mean of 250 points and a standard deviation of 50 points. 2006 scores were calculated on a scale with a mean of 500 and a standard deviation of 100 points. 2006 scores are not comparable with 1997 scores. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT3.P25\",\"LLECE: Distribution of 3rd Grade Mathematics Scores: 25th Percentile Score\",\"The 25th percentile score is the score below which 25 percent of students scored. 1997 scores were calculated on a scale with a mean of 250 points and a standard deviation of 50 points. 2006 scores were calculated on a scale with a mean of 500 and a standard deviation of 100 points. 2006 scores are not comparable with 1997 scores. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT3.P50\",\"LLECE: Distribution of 3rd Grade Mathematics Scores: 50th Percentile Score\",\"The 50th percentile score is the score below which 50 percent of students scored. 1997 scores were calculated on a scale with a mean of 250 points and a standard deviation of 50 points. 2006 scores were calculated on a scale with a mean of 500 and a standard deviation of 100 points. 2006 scores are not comparable with 1997 scores. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT3.P75\",\"LLECE: Distribution of 3rd Grade Mathematics Scores: 75th Percentile Score\",\"The 75th percentile score is the score below which 75 percent of students scored. 1997 scores were calculated on a scale with a mean of 250 points and a standard deviation of 50 points. 2006 scores were calculated on a scale with a mean of 500 and a standard deviation of 100 points. 2006 scores are not comparable with 1997 scores. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT3.P90\",\"LLECE: Distribution of 3rd Grade Mathematics Scores: 90th Percentile Score\",\"The 90th percentile score is the score below which 90 percent of students scored. 1997 scores were calculated on a scale with a mean of 250 points and a standard deviation of 50 points. 2006 scores were calculated on a scale with a mean of 500 and a standard deviation of 100 points. 2006 scores are not comparable with 1997 scores. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT4\",\"LLECE: Mean performance on the mathematics scale for 4th grade students, total\",\"Average score on the 4th grade mathematics assessment. 1997 means were calculated on a scale with a mean of 250 points and a standard deviation of 50 points. 4th grade students were only assessed in 1997. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT4.P10\",\"LLECE: Distribution of 4th Grade Mathematics Scores: 10th Percentile Score\",\"The 10th percentile score is the score below which 10 percent of students scored. 1997 scores were calculated on a scale with a mean of 250 points and a standard deviation of 50 points. 4th grade students were only assessed in 1997. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT4.P25\",\"LLECE: Distribution of 4th Grade Mathematics Scores: 25th Percentile Score\",\"The 25th percentile score is the score below which 25 percent of students scored. 1997 scores were calculated on a scale with a mean of 250 points and a standard deviation of 50 points. 4th grade students were only assessed in 1997. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT4.P50\",\"LLECE: Distribution of 4th Grade Mathematics Scores: 50th Percentile Score\",\"The 50th percentile score is the score below which 50 percent of students scored. 1997 scores were calculated on a scale with a mean of 250 points and a standard deviation of 50 points. 4th grade students were only assessed in 1997. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT4.P75\",\"LLECE: Distribution of 4th Grade Mathematics Scores: 75th Percentile Score\",\"The 75th percentile score is the score below which 75 percent of students scored. 1997 scores were calculated on a scale with a mean of 250 points and a standard deviation of 50 points. 4th grade students were only assessed in 1997. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT4.P90\",\"LLECE: Distribution of 4th Grade Mathematics Scores: 90th Percentile Score\",\"The 90th percentile score is the score below which 90 percent of students scored. 1997 scores were calculated on a scale with a mean of 250 points and a standard deviation of 50 points. 4th grade students were only assessed in 1997. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT6\",\"LLECE: Mean performance on the mathematics scale for 6th grade students, total\",\"Average score on the 6th grade mathematics assessment. Means were calculated on a scale with a mean of 500 and a standard deviation of 100 points. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT6.0\",\"LLECE: 6th grade students by mathematics proficiency level (%). Below Level 1\",\"Percentage of 6th grade students below the lowest proficiency level (scoring below 309.64) on the LLECE mathematics scale. Students below Level 1 have not been able to acquire the abilities required in Level I. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT6.0.FE\",\"LLECE: Female 6th grade students by mathematics proficiency level (%). Below Level 1\",\"Percentage of 6th grade female students below the lowest proficiency level (scoring below 309.64) on the LLECE mathematics scale. Students below Level 1 have not been able to acquire the abilities required in Level I. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT6.0.MA\",\"LLECE: Male 6th grade students by mathematics proficiency level (%). Below Level 1\",\"Percentage of 6th grade male students below the lowest proficiency level (scoring below 309.64) on the LLECE mathematics scale. Students below Level 1 have not been able to acquire the abilities required in Level I. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT6.1\",\"LLECE: 6th grade students by mathematics proficiency level (%). Level 1\",\"Percentage of 6th grade students scoring at least 309.64 but lower than 413.58 points on the LLECE mathematics scale. At Level 1, students can 1) arrange natural numbers (up to 5 digits) and decimals (up to thousands) in sequence; 2) recognize common geometrical shapes and the unit consistent with the attribute being measured; 3) interpret information presented in graphic images in order to compare it and change it to a different form of representation; 4) solve problems involving a single addition using natural numbers. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT6.1.FE\",\"LLECE: Female 6th grade students by mathematics proficiency level (%). Level 1\",\"Percentage of 6th grade female students scoring at least 309.64 but lower than 413.58 points on the LLECE mathematics scale. At Level 1, students can 1) arrange natural numbers (up to 5 digits) and decimals (up to thousands) in sequence; 2) recognize common geometrical shapes and the unit consistent with the attribute being measured; 3) interpret information presented in graphic images in order to compare it and change it to a different form of representation; 4) solve problems involving a single addition using natural numbers. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT6.1.MA\",\"LLECE: Male 6th grade students by mathematics proficiency level (%). Level 1\",\"Percentage of 6th grade male students scoring at least 309.64 but lower than 413.58 points on the LLECE mathematics scale. At Level 1, students can 1) arrange natural numbers (up to 5 digits) and decimals (up to thousands) in sequence; 2) recognize common geometrical shapes and the unit consistent with the attribute being measured; 3) interpret information presented in graphic images in order to compare it and change it to a different form of representation; 4) solve problems involving a single addition using natural numbers. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT6.2\",\"LLECE: 6th grade students by mathematics proficiency level (%). Level 2\",\"Percentage of 6th grade students scoring at least 413.58 but lower than 514.41 points on the LLECE mathematics scale. At Level 2, students can 1) analyze and identify the structure of the positional decimal number system, estimate weight (mass) expressing it in units consistent with the attribute being measured; 2) recognize commonly used geometrical shapes and their properties in order to solve problems; 3) interpret, compare and work with information presented through various graphic images; 4) identify the regularity of a simple pattern sequence; 5) solve addition problems in different numerical fields (natural numbers, decimals) including commonly used fractions or equivalent measures; 6) solve multiplication or division problems, or two natural number operations, or operations that include direct proportionality relations. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT6.2.FE\",\"LLECE: Female 6th grade students by mathematics proficiency level (%). Level 2\",\"Percentage of 6th grade female students scoring at least 413.58 but lower than 514.41 points on the LLECE mathematics scale. At Level 2, students can 1) analyze and identify the structure of the positional decimal number system, estimate weight (mass) expressing it in units consistent with the attribute being measured; 2) recognize commonly used geometrical shapes and their properties in order to solve problems; 3) interpret, compare and work with information presented through various graphic images; 4) identify the regularity of a simple pattern sequence; 5) solve addition problems in different numerical fields (natural numbers, decimals) including commonly used fractions or equivalent measures; 6) solve multiplication or division problems, or two natural number operations, or operations that include direct proportionality relations. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT6.2.MA\",\"LLECE: Male 6th grade students by mathematics proficiency level (%). Level 2\",\"Percentage of 6th grade male students scoring at least 413.58 but lower than 514.41 points on the LLECE mathematics scale. At Level 2, students can 1) analyze and identify the structure of the positional decimal number system, estimate weight (mass) expressing it in units consistent with the attribute being measured; 2) recognize commonly used geometrical shapes and their properties in order to solve problems; 3) interpret, compare and work with information presented through various graphic images; 4) identify the regularity of a simple pattern sequence; 5) solve addition problems in different numerical fields (natural numbers, decimals) including commonly used fractions or equivalent measures; 6) solve multiplication or division problems, or two natural number operations, or operations that include direct proportionality relations. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT6.3\",\"LLECE: 6th grade students by mathematics proficiency level (%). Level 3\",\"Percentage of 6th grade students scoring at least 514.41 but lower than 624.60 points on the LLECE mathematics scale. At Level 3, students can 1) compare fractions, use the concept of percentages when analyzing information and solving problems that require this type of calculation; 2) identify parallelism and perpendicularity on a plane, as well as bodies and their elements without the benefit of graphic support; 3) solve problems that require interpreting the constituent elements of a division or equivalent measures; 4) recognize central angles and commonly used geometrical shapes, such as circles, and resort to their properties for solving problems; 5) solve problems involving areas and perimeters of triangles and quadrilaterals; 6) make generalizations in order to continue a graphic sequence or find the numerical sequence rule that applies to a relatively complex pattern. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT6.3.FE\",\"LLECE: Female 6th grade students by mathematics proficiency level (%). Level 3\",\"Percentage of 6th grade female students scoring at least 514.41 but lower than 624.60 points on the LLECE mathematics scale. At Level 3, students can 1) compare fractions, use the concept of percentages when analyzing information and solving problems that require this type of calculation; 2) identify parallelism and perpendicularity on a plane, as well as bodies and their elements without the benefit of graphic support; 3) solve problems that require interpreting the constituent elements of a division or equivalent measures; 4) recognize central angles and commonly used geometrical shapes, such as circles, and resort to their properties for solving problems; 5) solve problems involving areas and perimeters of triangles and quadrilaterals; 6) make generalizations in order to continue a graphic sequence or find the numerical sequence rule that applies to a relatively complex pattern. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT6.3.MA\",\"LLECE: Male 6th grade students by mathematics proficiency level (%). Level 3\",\"Percentage of 6th grade male students scoring at least 514.41 but lower than 624.60 points on the LLECE mathematics scale. At Level 3, students can 1) compare fractions, use the concept of percentages when analyzing information and solving problems that require this type of calculation; 2) identify parallelism and perpendicularity on a plane, as well as bodies and their elements without the benefit of graphic support; 3) solve problems that require interpreting the constituent elements of a division or equivalent measures; 4) recognize central angles and commonly used geometrical shapes, such as circles, and resort to their properties for solving problems; 5) solve problems involving areas and perimeters of triangles and quadrilaterals; 6) make generalizations in order to continue a graphic sequence or find the numerical sequence rule that applies to a relatively complex pattern. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT6.4\",\"LLECE: 6th grade students by mathematics proficiency level (%). Level 4\",\"Percentage of 6th grade students scoring at least 624.60 points on the LLECE mathematics scale. At Level 4, students can 1) find averages and do calculations using the four basic operations in the field of natural numbers; 2) identify parallelism and perpendicularity in a real situation and the graphic images of a percentage; 3) solve problems involving properties of angles, triangles and quadrilaterals as part of different shapes, or involving operations with two decimal numbers; 4) solve problems involving fractions; 5) make generalizations in order to continue a complex graphic sequence pattern. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT6.4.FE\",\"LLECE: Female 6th grade students by mathematics proficiency level (%). Level 4\",\"Percentage of 6th grade female students scoring at least 624.60 points on the LLECE mathematics scale. At Level 4, students can 1) find averages and do calculations using the four basic operations in the field of natural numbers; 2) identify parallelism and perpendicularity in a real situation and the graphic images of a percentage; 3) solve problems involving properties of angles, triangles and quadrilaterals as part of different shapes, or involving operations with two decimal numbers; 4) solve problems involving fractions; 5) make generalizations in order to continue a complex graphic sequence pattern. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT6.4.MA\",\"LLECE: Male 6th grade students by mathematics proficiency level (%). Level 4\",\"Percentage of 6th grade male students scoring at least 624.60 points on the LLECE mathematics scale. At Level 4, students can 1) find averages and do calculations using the four basic operations in the field of natural numbers; 2) identify parallelism and perpendicularity in a real situation and the graphic images of a percentage; 3) solve problems involving properties of angles, triangles and quadrilaterals as part of different shapes, or involving operations with two decimal numbers; 4) solve problems involving fractions; 5) make generalizations in order to continue a complex graphic sequence pattern. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT6.FE\",\"LLECE: Mean performance on the mathematics scale for 6th grade students, female\",\"Average score on the 6th grade mathematics assessment for female students. Means were calculated on a scale with a mean of 500 and a standard deviation of 100 points. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT6.MA\",\"LLECE: Mean performance on the mathematics scale for 6th grade students, male\",\"Average score on the 6th grade mathematics assessment for male students. Means were calculated on a scale with a mean of 500 and a standard deviation of 100 points. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT6.P10\",\"LLECE: Distribution of 6th Grade Mathematics Scores: 10th Percentile Score\",\"The 10th percentile score is the score below which 10 percent of students scored. Scores were calculated on a scale with a mean of 500 and a standard deviation of 100 points. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT6.P25\",\"LLECE: Distribution of 6th Grade Mathematics Scores: 25th Percentile Score\",\"The 25th percentile score is the score below which 25 percent of students scored. Scores were calculated on a scale with a mean of 500 and a standard deviation of 100 points. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT6.P50\",\"LLECE: Distribution of 6th Grade Mathematics Scores: 50th Percentile Score\",\"The 50th percentile score is the score below which 50 percent of students scored. Scores were calculated on a scale with a mean of 500 and a standard deviation of 100 points. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT6.P75\",\"LLECE: Distribution of 6th Grade Mathematics Scores: 75th Percentile Score\",\"The 75th percentile score is the score below which 75 percent of students scored. Scores were calculated on a scale with a mean of 500 and a standard deviation of 100 points. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.MAT6.P90\",\"LLECE: Distribution of 6th Grade Mathematics Scores: 90th Percentile Score\",\"The 90th percentile score is the score below which 90 percent of students scored. Scores were calculated on a scale with a mean of 500 and a standard deviation of 100 points. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA3\",\"LLECE: Mean performance on the reading scale for 3rd grade students, total\",\"Average score on the 3rd grade reading assessment. 1997 scores were calculated on a scale with a mean of 250 points and a standard deviation of 50 points. 2006 scores were calculated on a scale with a mean of 500 and a standard deviation of 100 points. 2006 scores are not comparable with 1997 scores. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA3.0\",\"LLECE: 3rd grade students by reading proficiency level (%). Below Level 1\",\"Percentage of 3rd grade students below the lowest proficiency level (scoring below 367.36) on the LLECE reading scale. Students below Level 1 have not been able to acquire the abilities required in Level I. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA3.0.FE\",\"LLECE: Female 3rd grade students by reading proficiency level (%). Below Level 1\",\"Percentage of 3rd grade female students below the lowest proficiency level (scoring below 367.36) on the LLECE reading scale. Students below Level 1 have not been able to acquire the abilities required in Level I. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA3.0.MA\",\"LLECE: Male 3rd grade students by reading proficiency level (%). Below Level 1\",\"Percentage of 3rd grade male students below the lowest proficiency level (scoring below 367.36) on the LLECE reading scale. Students below Level 1 have not been able to acquire the abilities required in Level I. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA3.1\",\"LLECE: 3rd grade students by reading proficiency level (%). Level 1\",\"Percentage of 3rd grade students scoring at least 367.36 but less than 461.32 on the LLECE reading scale. Students at this level can locate information with a single meaning in a prominent part of the text, repeated literally or synonymously, and isolated from other information. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA3.1.FE\",\"LLECE: Female 3rd grade students by reading proficiency level (%). Level 1\",\"Percentage of 3rd grade female students scoring at least 367.36 but less than 461.32 on the LLECE reading scale. Students at this level can locate information with a single meaning in a prominent part of the text, repeated literally or synonymously, and isolated from other information. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA3.1.MA\",\"LLECE: Male 3rd grade students by reading proficiency level (%). Level 1\",\"Percentage of 3rd grade male students scoring at least 367.36 but less than 461.32 on the LLECE reading scale. Students at this level can locate information with a single meaning in a prominent part of the text, repeated literally or synonymously, and isolated from other information. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA3.2\",\"LLECE: 3rd grade students by reading proficiency level (%). Level 2\",\"Percentage of 3rd grade students scoring at least 461.32 but less than 552.14 on the LLECE reading scale. Students at this level can: 1) locate information in a brief text that cannot be distinguished from other conceptually similar information; 2) Discriminate words with a single meaning; 3) Recognize simple sentence reformulations; and 4) Recognize redundancies between graphic and verbal codes. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA3.2.FE\",\"LLECE: Female 3rd grade students by reading proficiency level (%). Level 2\",\"Percentage of 3rd grade female students scoring at least 461.32 but less than 552.14 on the LLECE reading scale. Students at this level can: 1) locate information in a brief text that cannot be distinguished from other conceptually similar information; 2) discriminate words with a single meaning; 3) recognize simple sentence reformulations; and 4) recognize redundancies between graphic and verbal codes. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA3.2.MA\",\"LLECE: Male 3rd grade students by reading proficiency level (%). Level 2\",\"Percentage of 3rd grade male students scoring at least 461.32 but less than 552.14 on the LLECE reading scale. Students at this level can: 1) locate information in a brief text that cannot be distinguished from other conceptually similar information; 2) discriminate words with a single meaning; 3) recognize simple sentence reformulations; and 4) recognize redundancies between graphic and verbal codes. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA3.3\",\"LLECE: 3rd grade students by reading proficiency level (%). Level 3\",\"Percentage of 3rd grade students scoring at least 552.14 but less than 637.49 on the LLECE reading scale. Students at this level can: 1) locate information discriminating it from adjacent information; 2) interpret reformulations that synthesize several data; 3) infer information based on knowledge about the world; 4) discriminate the meaning of words that have several other meanings based on the text. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA3.3.FE\",\"LLECE: Female 3rd grade students by reading proficiency level (%). Level 3\",\"Percentage of 3rd grade female students scoring at least 552.14 but less than 637.49 on the LLECE reading scale. Students at this level can: 1) locate information discriminating it from adjacent information; 2) interpret reformulations that synthesize several data; 3) infer information based on knowledge about the world; 4) discriminate the meaning of words that have several other meanings based on the text. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA3.3.MA\",\"LLECE: Male 3rd grade students by reading proficiency level (%). Level 3\",\"Percentage of 3rd grade male students scoring at least 552.14 but less than 637.49 on the LLECE reading scale. Students at this level can: 1) locate information discriminating it from adjacent information; 2) interpret reformulations that synthesize several data; 3) infer information based on knowledge about the world; 4) discriminate the meaning of words that have several other meanings based on the text. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA3.4\",\"LLECE: 3rd grade students by reading proficiency level (%). Level 4\",\"Percentage of 3rd grade students scoring higher than 637.49 on the LLECE reading scale. Students at this level can: 1) integrate and generalize information given in a paragraph or in the verbal codes and graph; 2) replace non-explicit information; 3) read the text identifying new information; 4) translate from one code to another (from numeric to verbal, and verbal to graphic). Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA3.4.FE\",\"LLECE: Female 3rd grade students by reading proficiency level (%). Level 4\",\"Percentage of 3rd grade female students scoring higher than 637.49 on the LLECE reading scale. Students at this level can: 1) integrate and generalize information given in a paragraph or in the verbal codes and graph; 2) replace non-explicit information; 3) read the text identifying new information; 4) translate from one code to another (from numeric to verbal, and verbal to graphic). Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA3.4.MA\",\"LLECE: Male 3rd grade students by reading proficiency level (%). Level 4\",\"Percentage of 3rd grade male students scoring higher than 637.49 on the LLECE reading scale. Students at this level can: 1) integrate and generalize information given in a paragraph or in the verbal codes and graph; 2) replace non-explicit information; 3) read the text identifying new information; 4) translate from one code to another (from numeric to verbal, and verbal to graphic). Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA3.FE\",\"LLECE: Mean performance on the reading scale for 3rd grade students, female\",\"Average score on the 3rd grade reading assessment for female students. 1997 scores were calculated on a scale with a mean of 250 points and a standard deviation of 50 points. 2006 scores were calculated on a scale with a mean of 500 and a standard deviation of 100 points. 2006 scores are not comparable with 1997 scores. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA3.MA\",\"LLECE: Mean performance on the reading scale for 3rd grade students, male\",\"Average score on the 3rd grade reading assessment for male students. 1997 scores were calculated on a scale with a mean of 250 points and a standard deviation of 50 points. 2006 scores were calculated on a scale with a mean of 500 and a standard deviation of 100 points. 2006 scores are not comparable with 1997 scores. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA3.P10\",\"LLECE: Distribution of 3rd Grade Reading Scores: 10th Percentile Score\",\"The 10th percentile score is the score below which 10 percent of students scored. 1997 scores were calculated on a scale with a mean of 250 points and a standard deviation of 50 points. 2006 scores were calculated on a scale with a mean of 500 and a standard deviation of 100 points. 2006 scores are not comparable with 1997 scores. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA3.P25\",\"LLECE: Distribution of 3rd Grade Reading Scores: 25th Percentile Score\",\"The 25th percentile score is the score below which 25 percent of students scored. 1997 scores were calculated on a scale with a mean of 250 points and a standard deviation of 50 points. 2006 scores were calculated on a scale with a mean of 500 and a standard deviation of 100 points. 2006 scores are not comparable with 1997 scores. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA3.P50\",\"LLECE: Distribution of 3rd Grade Reading Scores: 50th Percentile Score\",\"The 50th percentile score is the score below which 50 percent of students scored. 1997 scores were calculated on a scale with a mean of 250 points and a standard deviation of 50 points. 2006 scores were calculated on a scale with a mean of 500 and a standard deviation of 100 points. 2006 scores are not comparable with 1997 scores. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA3.P75\",\"LLECE: Distribution of 3rd Grade Reading Scores: 75th Percentile Score\",\"The 75th percentile score is the score below which 75 percent of students scored. 1997 scores were calculated on a scale with a mean of 250 points and a standard deviation of 50 points. 2006 scores were calculated on a scale with a mean of 500 and a standard deviation of 100 points. 2006 scores are not comparable with 1997 scores. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA3.P90\",\"LLECE: Distribution of 3rd Grade Reading Scores: 90th Percentile Score\",\"The 90th percentile score is the score below which 90 percent of students scored. 1997 scores were calculated on a scale with a mean of 250 points and a standard deviation of 50 points. 2006 scores were calculated on a scale with a mean of 500 and a standard deviation of 100 points. 2006 scores are not comparable with 1997 scores. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA4\",\"LLECE: Mean performance on the reading scale for 4th grade students, total\",\"Average score on the 4th grade reading assessment. 1997 means were calculated on a scale with a mean of 250 points and a standard deviation of 50 points. 4th grade students were only assessed in 1997. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA4.P10\",\"LLECE: Distribution of 4th Grade Reading Scores: 10th Percentile Score\",\"The 10th percentile score is the score below which 10 percent of students scored. 1997 scores were calculated on a scale with a mean of 250 points and a standard deviation of 50 points. 4th grade students were only assessed in 1997. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA4.P25\",\"LLECE: Distribution of 4th Grade Reading Scores: 25th Percentile Score\",\"The 25th percentile score is the score below which 25 percent of students scored. 1997 scores were calculated on a scale with a mean of 250 points and a standard deviation of 50 points. 4th grade students were only assessed in 1997. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA4.P50\",\"LLECE: Distribution of 4th Grade Reading Scores: 50th Percentile Score\",\"The 50th percentile score is the score below which 50 percent of students scored. 1997 scores were calculated on a scale with a mean of 250 points and a standard deviation of 50 points. 4th grade students were only assessed in 1997. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA4.P75\",\"LLECE: Distribution of 4th Grade Reading Scores: 75th Percentile Score\",\"The 75th percentile score is the score below which 75 percent of students scored. 1997 scores were calculated on a scale with a mean of 250 points and a standard deviation of 50 points. 4th grade students were only assessed in 1997. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA4.P90\",\"LLECE: Distribution of 4th Grade Reading Scores: 90th Percentile Score\",\"The 90th percentile score is the score below which 90 percent of students scored. 1997 scores were calculated on a scale with a mean of 250 points and a standard deviation of 50 points. 4th grade students were only assessed in 1997. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA6\",\"LLECE: Mean performance on the reading scale for 6th grade students, total\",\"Average score on the 6th grade reading assessment. Means were calculated on a scale with a mean of 500 and a standard deviation of 100 points. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA6.0\",\"LLECE: 6th grade students by reading proficiency level (%). Below Level 1\",\"Percentage of 6th grade students below the lowest proficiency level (scoring below 299.59) on the LLECE reading scale. Students below Level 1 have not been able to acquire the abilities required in Level I. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA6.0.FE\",\"LLECE: Female 6th grade students by reading proficiency level (%). Below Level 1\",\"Percentage of 6th grade female students below the lowest proficiency level (scoring below 299.59) on the LLECE reading scale. Students below Level 1 have not been able to acquire the abilities required in Level I. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA6.0.MA\",\"LLECE: Male 6th grade students by reading proficiency level (%). Below Level 1\",\"Percentage of 6th grade male students below the lowest proficiency level (scoring below 299.59) on the LLECE reading scale. Students below Level 1 have not been able to acquire the abilities required in Level I. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA6.1\",\"LLECE: 6th grade students by reading proficiency level (%). Level 1\",\"Percentage of 6th grade students scoring at least 299.59 but lower than 424.54 points on the LLECE reading scale. At Level 1, students can locate information with a single meaning in a prominent or central part of the text (beginning or end) that is repeated literally or synonymously and is isolated from other information. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA6.1.FE\",\"LLECE: Female 6th grade students by reading proficiency level (%). Level 1\",\"Percentage of 6th grade female students scoring at least 299.59 but lower than 424.54 points on the LLECE reading scale. At Level 1, students can locate information with a single meaning in a prominent or central part of the text (beginning or end) that is repeated literally or synonymously and is isolated from other information. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA6.1.MA\",\"LLECE: Male 6th grade students by reading proficiency level (%). Level 1\",\"Percentage of 6th grade male students scoring at least 299.59 but lower than 424.54 points on the LLECE reading scale. At Level 1, students can locate information with a single meaning in a prominent or central part of the text (beginning or end) that is repeated literally or synonymously and is isolated from other information. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA6.2\",\"LLECE: 6th grade students by reading proficiency level (%). Level 2\",\"Percentage of 6th grade students scoring at least 424.54 but lower than 513.66 points on the LLECE reading scale. At Level 2, students can 1) locate information in the middle of a text that must be distinguished from a different piece of information found in a different segment; and 2) identify words with a single meaning. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA6.2.FE\",\"LLECE: Female 6th grade students by reading proficiency level (%). Level 2\",\"Percentage of 6th grade female students scoring at least 424.54 but lower than 513.66 points on the LLECE reading scale. At Level 2, students can 1) locate information in the middle of a text that must be distinguished from a different piece of information found in a different segment; and 2) identify words with a single meaning. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA6.2.MA\",\"LLECE: Male 6th grade students by reading proficiency level (%). Level 2\",\"Percentage of 6th grade male students scoring at least 424.54 but lower than 513.66 points on the LLECE reading scale. At Level 2, students can 1) locate information in the middle of a text that must be distinguished from a different piece of information found in a different segment; and 2) identify words with a single meaning. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA6.3\",\"LLECE: 6th grade students by reading proficiency level (%). Level 3\",\"Percentage of 6th grade students scoring at least 513.66 but lower than 593.59 points on the LLECE reading scale. At Level 3, students can 1) locate information and separate it from other nearby information; 2) interpret reformulations and syntheses; 3) integrate data distributed across a paragraph; 4) reinstate implicit information in the paragraph; 5) re-read in search of specific data; 6) identify a single meaning in words that have several meanings; 7) recognize the meaning of parts of words (affixes) using the text as a reference. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA6.3.FE\",\"LLECE: Female 6th grade students by reading proficiency level (%). Level 3\",\"Percentage of 6th grade female students scoring at least 513.66 but lower than 593.59 points on the LLECE reading scale. At Level 3, students can 1) locate information and separate it from other nearby information; 2) interpret reformulations and syntheses; 3) integrate data distributed across a paragraph; 4) reinstate implicit information in the paragraph; 5) re-read in search of specific data; 6) identify a single meaning in words that have several meanings; 7) recognize the meaning of parts of words (affixes) using the text as a reference. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA6.3.MA\",\"LLECE: Male 6th grade students by reading proficiency level (%). Level 3\",\"Percentage of 6th grade male students scoring at least 513.66 but lower than 593.59 points on the LLECE reading scale. At Level 3, students can 1) locate information and separate it from other nearby information; 2) interpret reformulations and syntheses; 3) integrate data distributed across a paragraph; 4) reinstate implicit information in the paragraph; 5) re-read in search of specific data; 6) identify a single meaning in words that have several meanings; 7) recognize the meaning of parts of words (affixes) using the text as a reference. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA6.4\",\"LLECE: 6th grade students by reading proficiency level (%). Level 4\",\"Percentage of 6th grade students scoring at least 593.59 points on the LLECE reading scale. At Level 4, students can 1) integrate, rank and generalize information distributed across the text; 2) establish equivalences among more than two codes (verbal, numerical and graphic); 3) reinstate implicit information associated with the entire text; 4) recognize the possible meanings of technical terms or figurative language; 5) distinguish various tenses and nuances (certainty, doubt) used in a text. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA6.4.FE\",\"LLECE: Female 6th grade students by reading proficiency level (%). Level 4\",\"Percentage of 6th grade female students scoring at least 593.59 points on the LLECE reading scale. At Level 4, students can 1) integrate, rank and generalize information distributed across the text; 2) establish equivalences among more than two codes (verbal, numerical and graphic); 3) reinstate implicit information associated with the entire text; 4) recognize the possible meanings of technical terms or figurative language; 5) distinguish various tenses and nuances (certainty, doubt) used in a text. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA6.4.MA\",\"LLECE: Male 6th grade students by reading proficiency level (%). Level 4\",\"Percentage of 6th grade male students scoring at least 593.59 points on the LLECE reading scale. At Level 4, students can 1) integrate, rank and generalize information distributed across the text; 2) establish equivalences among more than two codes (verbal, numerical and graphic); 3) reinstate implicit information associated with the entire text; 4) recognize the possible meanings of technical terms or figurative language; 5) distinguish various tenses and nuances (certainty, doubt) used in a text. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA6.FE\",\"LLECE: Mean performance on the reading scale for 6th grade students, female\",\"Average score on the 6th grade reading assessment for female students. Means were calculated on a scale with a mean of 500 and a standard deviation of 100 points. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA6.MA\",\"LLECE: Mean performance on the reading scale for 6th grade students, male\",\"Average score on the 6th grade reading assessment for male students. Means were calculated on a scale with a mean of 500 and a standard deviation of 100 points. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA6.P10\",\"LLECE: Distribution of 6th Grade Reading Scores: 10th Percentile Score\",\"The 10th percentile score is the score below which 10 percent of students scored. Scores were calculated on a scale with a mean of 500 and a standard deviation of 100 points. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA6.P25\",\"LLECE: Distribution of 6th Grade Reading Scores: 25th Percentile Score\",\"The 25th percentile score is the score below which 25 percent of students scored. Scores were calculated on a scale with a mean of 500 and a standard deviation of 100 points. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA6.P50\",\"LLECE: Distribution of 6th Grade Reading Scores: 50th Percentile Score\",\"The 50th percentile score is the score below which 50 percent of students scored. Scores were calculated on a scale with a mean of 500 and a standard deviation of 100 points. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA6.P75\",\"LLECE: Distribution of 6th Grade Reading Scores: 75th Percentile Score\",\"The 75th percentile score is the score below which 75 percent of students scored. Scores were calculated on a scale with a mean of 500 and a standard deviation of 100 points. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.REA6.P90\",\"LLECE: Distribution of 6th Grade Reading Scores: 90th Percentile Score\",\"The 90th percentile score is the score below which 90 percent of students scored. Scores were calculated on a scale with a mean of 500 and a standard deviation of 100 points. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.SCI6\",\"LLECE: Mean performance on the science scale for 6th grade students, total\",\"Average score on the 6th grade science assessment. Means were calculated on a scale with a mean of 500 and a standard deviation of 100 points. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.SCI6.0\",\"LLECE: 6th grade students by science proficiency level (%). Below Level 1\",\"Percentage of 6th grade students below the lowest proficiency level (scoring below 351.31) on the LLECE science scale. Students below Level 1 have not been able to acquire the abilities required in Level I. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.SCI6.0.FE\",\"LLECE: Female 6th grade students by science proficiency level (%). Below Level 1\",\"Percentage of 6th grade female students below the lowest proficiency level (scoring below 351.31) on the LLECE science scale. Students below Level 1 have not been able to acquire the abilities required in Level I. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.SCI6.0.MA\",\"LLECE: Male 6th grade students by science proficiency level (%). Below Level 1\",\"Percentage of 6th grade male students below the lowest proficiency level (scoring below 351.31) on the LLECE science scale. Students below Level 1 have not been able to acquire the abilities required in Level I. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.SCI6.1\",\"LLECE: 6th grade students by science proficiency level (%). Level 1\",\"Percentage of 6th grade students scoring at least 351.31 but lower than 472.06 points on the LLECE science scale. At Level 1, students can 1) relate scientific knowledge to daily situations that are of common occurrence in their context; 2) explain their immediate world based on their own experiences and observations, and establish a simple and lineal relation with previously acquired scientific knowledge; and 3) describe concrete and simple events involving cognitive processes such as remembering, evoking and identifying. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.SCI6.1.FE\",\"LLECE: Female 6th grade students by science proficiency level (%). Level 1\",\"Percentage of 6th grade female students scoring at least 351.31 but lower than 472.06 points on the LLECE science scale. At Level 1, students can 1) relate scientific knowledge to daily situations that are of common occurrence in their context; 2) explain their immediate world based on their own experiences and observations, and establish a simple and lineal relation with previously acquired scientific knowledge; and 3) describe concrete and simple events involving cognitive processes such as remembering, evoking and identifying. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.SCI6.1.MA\",\"LLECE: Male 6th grade students by science proficiency level (%). Level 1\",\"Percentage of 6th grade male students scoring at least 351.31 but lower than 472.06 points on the LLECE science scale. At Level 1, students can 1) relate scientific knowledge to daily situations that are of common occurrence in their context; 2) explain their immediate world based on their own experiences and observations, and establish a simple and lineal relation with previously acquired scientific knowledge; and 3) describe concrete and simple events involving cognitive processes such as remembering, evoking and identifying. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.SCI6.2\",\"LLECE: 6th grade students by science proficiency level (%). Level 2\",\"Percentage of 6th grade students scoring at least 472.06 but lower than 590.29 points on the LLECE science scale. At Level 2, students can 1) apply school-acquired scientific knowledge; 2) compare, organize and interpret information presented in various formats (tables, charts, graphs, pictures); 3) identify causality relations and classify living beings according to a given criterion; 4) access information presented in different formats, which requires the use of much more complex skills than required in Level 1. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.SCI6.2.FE\",\"LLECE: Female 6th grade students by science proficiency level (%). Level 2\",\"Percentage of 6th grade female students scoring at least 472.06 but lower than 590.29 points on the LLECE science scale. At Level 2, students can 1) apply school-acquired scientific knowledge; 2) compare, organize and interpret information presented in various formats (tables, charts, graphs, pictures); 3) identify causality relations and classify living beings according to a given criterion; 4) access information presented in different formats, which requires the use of much more complex skills than required in Level 1. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.SCI6.2.MA\",\"LLECE: Male 6th grade students by science proficiency level (%). Level 2\",\"Percentage of 6th grade male students scoring at least 472.06 but lower than 590.29 points on the LLECE science scale. At Level 2, students can 1) apply school-acquired scientific knowledge; 2) compare, organize and interpret information presented in various formats (tables, charts, graphs, pictures); 3) identify causality relations and classify living beings according to a given criterion; 4) access information presented in different formats, which requires the use of much more complex skills than required in Level 1. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.SCI6.3\",\"LLECE: 6th grade students by science proficiency level (%). Level 3\",\"Percentage of 6th grade students scoring at least 590.29 but lower than 704.75 points on the LLECE science scale. At Level 3, students can 1) explain everyday situations on the basis of scientific evidence; 2) use simple descriptive models to interpret natural phenomena; and 3) draw conclusions from the description of experimental activities. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.SCI6.3.FE\",\"LLECE: Female 6th grade students by science proficiency level (%). Level 3\",\"Percentage of 6th grade female students scoring at least 590.29 but lower than 704.75 points on the LLECE science scale. At Level 3, students can 1) explain everyday situations on the basis of scientific evidence; 2) use simple descriptive models to interpret natural phenomena; and 3) draw conclusions from the description of experimental activities. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.SCI6.3.MA\",\"LLECE: Male 6th grade students by science proficiency level (%). Level 3\",\"Percentage of 6th grade male students scoring at least 590.29 but lower than 704.75 points on the LLECE science scale. At Level 3, students can 1) explain everyday situations on the basis of scientific evidence; 2) use simple descriptive models to interpret natural phenomena; and 3) draw conclusions from the description of experimental activities. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.SCI6.4\",\"LLECE: 6th grade students by science proficiency level (%). Level 4\",\"Percentage of 6th grade students scoring at least 704.75 points on the LLECE science scale. At Level 4, students can 1) use and transfer scientific knowledge to diverse types of situations, which requires a high degree of formalization and abstraction and 2) identify the scientific knowledge involved in a problem that is more formally stated and may relate to aspects, dimensions or analyses detached from the immediate setting. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.SCI6.4.FE\",\"LLECE: Female 6th grade students by science proficiency level (%). Level 4\",\"Percentage of 6th grade female students scoring at least 704.75 points on the LLECE science scale. At Level 4, students can 1) use and transfer scientific knowledge to diverse types of situations, which requires a high degree of formalization and abstraction and 2) identify the scientific knowledge involved in a problem that is more formally stated and may relate to aspects, dimensions or analyses detached from the immediate setting. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.SCI6.4.MA\",\"LLECE: Male 6th grade students by science proficiency level (%). Level 4\",\"Percentage of 6th grade male students scoring at least 704.75 points on the LLECE science scale. At Level 4, students can 1) use and transfer scientific knowledge to diverse types of situations, which requires a high degree of formalization and abstraction and 2) identify the scientific knowledge involved in a problem that is more formally stated and may relate to aspects, dimensions or analyses detached from the immediate setting. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.SCI6.FE\",\"LLECE: Mean performance on the science scale for 6th grade students, female\",\"Average score on the 6th grade science assessment for female students. Means were calculated on a scale with a mean of 500 and a standard deviation of 100 points. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.SCI6.MA\",\"LLECE: Mean performance on the science scale for 6th grade students, male\",\"Average score on the 6th grade science assessment for male students. Means were calculated on a scale with a mean of 500 and a standard deviation of 100 points. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.SCI6.P10\",\"LLECE: Distribution of 6th Grade Science Scores: 10th Percentile Score\",\"The 10th percentile score is the score below which 10 percent of students scored. Scores were calculated on a scale with a mean of 500 and a standard deviation of 100 points. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.SCI6.P25\",\"LLECE: Distribution of 6th Grade Science Scores: 25th Percentile Score\",\"The 25th percentile score is the score below which 25 percent of students scored. Scores were calculated on a scale with a mean of 500 and a standard deviation of 100 points. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.SCI6.P50\",\"LLECE: Distribution of 6th Grade Science Scores: 50th Percentile Score\",\"The 50th percentile score is the score below which 50 percent of students scored. Scores were calculated on a scale with a mean of 500 and a standard deviation of 100 points. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.SCI6.P75\",\"LLECE: Distribution of 6th Grade Science Scores: 75th Percentile Score\",\"The 75th percentile score is the score below which 75 percent of students scored. Scores were calculated on a scale with a mean of 500 and a standard deviation of 100 points. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.LLECE.SCI6.P90\",\"LLECE: Distribution of 6th Grade Science Scores: 90th Percentile Score\",\"The 90th percentile score is the score below which 90 percent of students scored. Scores were calculated on a scale with a mean of 500 and a standard deviation of 100 points. Data reflects country performance in the stated year according to LLECE reports. Consult the LLECE website for more detailed information: http://www.llece.org/\",\"Education Statistics\",\"Latin American Laboratory for Assessment of the Quality of Education (LLECE)\"\n\"LO.PASEC.FRE.P05\",\"PASEC: Distribution of 5th Grade French Scores: 5th Percentile Score\",\"The 5th percentile score is the score below which 5 percent of students scored. Data reflects country performance in the stated year according to PASEC. 2004-2005 PASEC data is only comparable with other country data from 2004-2005. 2006-2010 data is not comparable with data from 2004-2005. Consult the PASEC website for more detailed information: http://www.confemen.org/le-pasec/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEM Education Systems (PASEC)\"\n\"LO.PASEC.FRE.P10\",\"PASEC: Distribution of 5th Grade French Scores: 10th Percentile Score\",\"The 10th percentile score is the score below which 10 percent of students scored. Data reflects country performance in the stated year according to PASEC. 2004-2005 PASEC data is only comparable with other country data from 2004-2005. 2006-2010 data is not comparable with data from 2004-2005. Consult the PASEC website for more detailed information: http://www.confemen.org/le-pasec/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEM Education Systems (PASEC)\"\n\"LO.PASEC.FRE.P25\",\"PASEC: Distribution of 5th Grade French Scores: 25th Percentile Score\",\"The 25th percentile score is the score below which 25 percent of students scored. Data reflects country performance in the stated year according to PASEC. 2004-2005 PASEC data is only comparable with other country data from 2004-2005. 2006-2010 data is not comparable with data from 2004-2005. Consult the PASEC website for more detailed information: http://www.confemen.org/le-pasec/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEM Education Systems (PASEC)\"\n\"LO.PASEC.FRE.P50\",\"PASEC: Distribution of 5th Grade French Scores: 50th Percentile Score\",\"The 50th percentile score is the score below which 50 percent of students scored. Data reflects country performance in the stated year according to PASEC. 2004-2005 PASEC data is only comparable with other country data from 2004-2005. 2006-2010 data is not comparable with data from 2004-2005. Consult the PASEC website for more detailed information: http://www.confemen.org/le-pasec/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEM Education Systems (PASEC)\"\n\"LO.PASEC.FRE.P75\",\"PASEC: Distribution of 5th Grade French Scores: 75th Percentile Score\",\"The 75th percentile score is the score below which 75 percent of students scored. Data reflects country performance in the stated year according to PASEC. 2004-2005 PASEC data is only comparable with other country data from 2004-2005. 2006-2010 data is not comparable with data from 2004-2005. Consult the PASEC website for more detailed information: http://www.confemen.org/le-pasec/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEM Education Systems (PASEC)\"\n\"LO.PASEC.FRE.P90\",\"PASEC: Distribution of 5th Grade French Scores: 90th Percentile Score\",\"The 90th percentile score is the score below which 90 percent of students scored. Data reflects country performance in the stated year according to PASEC. 2004-2005 PASEC data is only comparable with other country data from 2004-2005. 2006-2010 data is not comparable with data from 2004-2005. Consult the PASEC website for more detailed information: http://www.confemen.org/le-pasec/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEM Education Systems (PASEC)\"\n\"LO.PASEC.FRE.P95\",\"PASEC: Distribution of 5th Grade French Scores: 95th Percentile Score\",\"The 95th percentile score is the score below which 90 percent of students scored. Data reflects country performance in the stated year according to PASEC. 2004-2005 PASEC data is only comparable with other country data from 2004-2005. 2006-2010 data is not comparable with data from 2004-2005. Consult the PASEC website for more detailed information: http://www.confemen.org/le-pasec/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEM Education Systems (PASEC)\"\n\"LO.PASEC.FRE5\",\"PASEC: Mean performance on the French language scale (100 points) for 5th grade students, total\",\"Mean percentage correct for 5th grade students on the French language exam. Data reflects country performance in the stated year according to PASEC. 2004-2005 PASEC data is only comparable with other country data from 2004-2005. 2006-2010 data is not comparable with data from 2004-2005. Consult the PASEC website for more detailed information: http://www.confemen.org/le-pasec/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEM Education Systems (PASEC)\"\n\"LO.PASEC.FRE5.FE\",\"PASEC: Mean performance on the French language scale (100 points) for 5th grade students, female\",\"Mean percentage correct for 5th grade female students on the French language exam. Average differences are only significant between males and females in Benin, Burkina Faso, Democratic Republic of Congo, and Burundi. Since comparison is suggested by giving average scores for males/females, please take into account that these are only raw effects of gender. PASEC uses econometric models to validate the effect of gender in achievement. Data reflects country performance in the stated year according to PASEC. 2004-2005 PASEC data is only comparable with other country data from 2004-2005. 2006-2010 data is not comparable with data from 2004-2005. Consult the PASEC website for more detailed information: http://www.confemen.org/le-pasec/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEM Education Systems (PASEC)\"\n\"LO.PASEC.FRE5.HIG\",\"PASEC: 5th grade students above the Knowledge Base Rate on the French language scale (above 40% of answers correct) (%), total\",\"Share of students scoring at least 40 percent on the PASEC French language exam. The Knowledge Base Rate is the minimum learning goal based on the programs of the level selected and appropriate to the scale of the tests used. Data reflects country performance in the stated year according to PASEC. 2004-2005 PASEC data is only comparable with other country data from 2004-2005. 2006-2010 data is not comparable with data from 2004-2005. Consult the PASEC website for more detailed information: http://www.confemen.org/le-pasec/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEM Education Systems (PASEC)\"\n\"LO.PASEC.FRE5.HIG.FE\",\"PASEC: 5th grade students above the Knowledge Base Rate on the French language scale (above 40% of answers correct) (%), female\",\"Share of female students scoring at least 40 percent on the PASEC French language exam. The Knowledge Base Rate is the minimum learning goal based on the programs of the level selected and appropriate to the scale of the tests used. Data reflects country performance in the stated year according to PASEC. 2004-2005 PASEC data is only comparable with other country data from 2004-2005. 2006-2010 data is not comparable with data from 2004-2005. Consult the PASEC website for more detailed information: http://www.confemen.org/le-pasec/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEM Education Systems (PASEC)\"\n\"LO.PASEC.FRE5.HIG.MA\",\"PASEC: 5th grade students above the Knowledge Base Rate on the French language scale (above 40% of answers correct) (%), male\",\"Share of male students scoring at least 40 percent on the PASEC French language exam. The Knowledge Base Rate is the minimum learning goal based on the programs of the level selected and appropriate to the scale of the tests used. Data reflects country performance in the stated year according to PASEC. 2004-2005 PASEC data is only comparable with other country data from 2004-2005. 2006-2010 data is not comparable with data from 2004-2005. Consult the PASEC website for more detailed information: http://www.confemen.org/le-pasec/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEM Education Systems (PASEC)\"\n\"LO.PASEC.FRE5.LO\",\"PASEC: 5th grade students at the lowest level of proficiency on the French language scale (less than 25% of answers correct) (%), total\",\"Share of students scoring less than 25 percent on the PASEC French language exam. The Failure Rate is the score a pupil could obtain by completing the PASEC test randomly. Data reflects country performance in the stated year according to PASEC. 2004-2005 PASEC data is only comparable with other country data from 2004-2005. 2006-2010 data is not comparable with data from 2004-2005. Consult the PASEC website for more detailed information: http://www.confemen.org/le-pasec/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEM Education Systems (PASEC)\"\n\"LO.PASEC.FRE5.LO.FE\",\"PASEC: 5th grade students at the lowest level of proficiency on the French language scale (less than 25% of answers correct) (%), female\",\"Share of female students scoring less than 25 percent on the PASEC French language exam. The Failure Rate is the score a pupil could obtain by completing the PASEC test randomly. Data reflects country performance in the stated year according to PASEC. 2004-2005 PASEC data is only comparable with other country data from 2004-2005. 2006-2010 data is not comparable with data from 2004-2005. Consult the PASEC website for more detailed information: http://www.confemen.org/le-pasec/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEM Education Systems (PASEC)\"\n\"LO.PASEC.FRE5.LO.MA\",\"PASEC: 5th grade students at the lowest level of proficiency on the French language scale (less than 25% of answers correct) (%), male\",\"Share of male students scoring less than 25 percent on the PASEC French language exam. The Failure Rate is the score a pupil could obtain by completing the PASEC test randomly. Data reflects country performance in the stated year according to PASEC. 2004-2005 PASEC data is only comparable with other country data from 2004-2005. 2006-2010 data is not comparable with data from 2004-2005. Consult the PASEC website for more detailed information: http://www.confemen.org/le-pasec/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEM Education Systems (PASEC)\"\n\"LO.PASEC.FRE5.MA\",\"PASEC: Mean performance on the French language scale (100 points) for 5th grade students, male\",\"Mean percentage correct for 5th male grade students on the French language exam. Average differences are only significant between males and females in Benin, Burkina Faso, Democratic Republic of Congo and Burundi. Since comparison is suggested by giving average scores for males/females, please take into account that these are only raw effects of gender. PASEC uses econometric models to validate the effect of gender in achievement. Data reflects country performance in the stated year according to PASEC. 2004-2005 PASEC data is only comparable with other country data from 2004-2005. 2006-2010 data is not comparable with data from 2004-2005. Consult the PASEC website for more detailed information: http://www.confemen.org/le-pasec/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEM Education Systems (PASEC)\"\n\"LO.PASEC.MAT.2\",\"PASEC: Mean performance on the mathematics scale for 2nd grade students. Total\",\"Average score of Grade 2 students on the PASEC mathemathics scale. PASEC performance scales have an international average of 500 points and a standard deviation of 100 points with all countries being given equal weighting. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.2.ADD1\",\"PASEC: Percentage of 2nd grade students correcting answering the addition problem: 8+5\",\"Share of 2nd grade students correctly answering the stated problem. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.2.ADD2\",\"PASEC: Percentage of 2nd grade students correcting answering the addition problem: 14+23\",\"Share of 2nd grade students correctly answering the stated problem. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.2.ADD3\",\"PASEC: Percentage of 2nd grade students correcting answering the addition problem: 39+26\",\"Share of 2nd grade students correctly answering the stated problem. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.2.CNT.0T60\",\"PASEC: Distribution of 2nd grade students by last number reached when counting out loud. 0 to 60\",\"Percentage of 2nd grade students who could not reach 61 when counting out loud. Counting requires students to know the numbers and understand the organization of the number sequence. It is an important prerequisite to acquire basic number concepts. The test administrator asked the pupils to start counting from one and up to the greatest possible number, meaning until they make their first mistake, hesitate for more than 5 seconds on a number or until 2 minutes have passed. The test administrator enters the last number read correctly or reached after 2 minutes have gone by. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.2.CNT.61T80\",\"PASEC: Distribution of 2nd grade students by last number reached when counting out loud. 61 to 80\",\"Percentage of 2nd grade students who counted to at least 61 but not beyond 80. Counting requires students to know the numbers and understand the organization of the number sequence. It is an important prerequisite to acquire basic number concepts. The test administrator asked the pupils to start counting from one and up to the greatest possible number, meaning until they make their first mistake, hesitate for more than 5 seconds on a number or until 2 minutes have passed. The test administrator enters the last number read correctly or reached after 2 minutes have gone by. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.2.CNT.80UP\",\"PASEC: Distribution of 2nd grade students by last number reached when counting out loud. 80+\",\"Percentage of 2nd grade students who could count beyond 80. Counting requires students to know the numbers and understand the organization of the number sequence. It is an important prerequisite to acquire basic number concepts. The test administrator asked the pupils to start counting from one and up to the greatest possible number, meaning until they make their first mistake, hesitate for more than 5 seconds on a number or until 2 minutes have passed. The test administrator enters the last number read correctly or reached after 2 minutes have gone by. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.2.FE\",\"PASEC: Mean performance on the mathematics scale for 2nd grade students. Female\",\"Average score of female Grade 2 students on the PASEC mathemathics scale. PASEC performance scales have an international average of 500 points and a standard deviation of 100 points with all countries being given equal weighting. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.2.L0\",\"PASEC: 2nd grade students by mathematics proficiency level (%). Below Level 1\",\"Percentage of 2nd grade students scoring below 400.3 on the PASEC mathematics scale. Pupils belows level 1 do not display the competencies measured by this test. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.2.L1\",\"PASEC: 2nd grade students by mathematics proficiency level (%). Level 1\",\"Percentage of 2nd grade students scoring at least 400.3 but lower than 489 on the PASEC mathematics scale. Students at Level 1 have not passed the Sufficient Competency Threshold, but they have developed their knowledge of the mathematical language and mastered the first concepts of quantity (quantification, comparison) with objects and numbers under twenty. They can appraise the relative size of objects, recognize simple geometric shapes. They have developed an awareness of the first concepts of spatial orientation (inside, outside). Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.2.L2\",\"PASEC: 2nd grade students by mathematics proficiency level (%). Level 2\",\"Percentage of 2nd grade students scoring at least 489 but lower than 577.7 on the PASEC mathematics scale. Students at Level 2 have passed the Sufficient Competency Threshold. Pupils can recognize numbers up to one hundred, compare them, complete logical series and perform operations (sums and subtractions) with numbers under fifty. They have developed awareness of spatial orientation (below, above, beside). They have begun to develop an ability to solve basic problems with numbers under twenty using reasoning skills. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.2.L3\",\"PASEC: 2nd grade students by mathematics proficiency level (%). Level 3\",\"Percentage of 2nd grade students scoring at least 577.7 on the PASEC mathematics scale. Students at Level 3 have passed the Sufficient Competency Threshold. Students at this level have mastered the oral number sequence (counting up to sixty in two minutes) and are able to compare numbers, complete logical series and perform operations (sums and subtractions) with numbers over fifty. They can solve basic problems with numbers under twenty using reasoning skills. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.2.MA\",\"PASEC: Mean performance on the mathematics scale for 2nd grade students. Male\",\"Average score of male Grade 2 students on the PASEC mathemathics scale. PASEC performance scales have an international average of 500 points and a standard deviation of 100 points with all countries being given equal weighting. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.2.MG.GAP\",\"PASEC: Average performance gap between 2nd grade students in multigrade and standard classes. Mathematics\",\"Average difference in scores between students in multigrade classes and standard classes. Standard classes have one full-time teacher per class/grade, and multigrade classes have pupils from different grades in a single pedagogical group with a single teacher. See footnotes for the statistical significance of each data point. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.2.NPP\",\"PASEC: Mean performance on the mathematics scale for 2nd grade students who did not attend pre-primary education\",\"Average score of Grade 2 students who did not attend any form of pre-primary education. PASEC performance scales have an international average of 500 points and a standard deviation of 100 points with all countries being given equal weighting. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.2.P05\",\"PASEC: Distribution of 2nd grade mathematics scores: 5th Percentile Score\",\"The 5th percentile score is the score below which 5 percent of students scored. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.2.P1\",\"PASEC: Distribution of 2nd grade mathematics scores: 1st Percentile Score\",\"The 1st percentile score is the score below which 1 percent of students scored. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.2.P10\",\"PASEC: Distribution of 2nd grade mathematics scores: 10th Percentile Score\",\"The 10th percentile score is the score below which 10 percent of students scored. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.2.P25\",\"PASEC: Distribution of 2nd grade mathematics scores: 25th Percentile Score\",\"The 25th percentile score is the score below which 25 percent of students scored. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.2.P50\",\"PASEC: Distribution of 2nd grade mathematics scores: 50th Percentile Score\",\"The 50th percentile score is the score below which 50 percent of students scored. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.2.P75\",\"PASEC: Distribution of 2nd grade mathematics scores: 75th Percentile Score\",\"The 75th percentile score is the score below which 75 percent of students scored. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.2.P90\",\"PASEC: Distribution of 2nd grade mathematics scores: 90th Percentile Score\",\"The 90th percentile score is the score below which 90 percent of students scored. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.2.P95\",\"PASEC: Distribution of 2nd grade mathematics scores: 95th Percentile Score\",\"The 95th percentile score is the score below which 95 percent of students scored. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.2.P99\",\"PASEC: Distribution of 2nd grade mathematics scores: 99th Percentile Score\",\"The 99th percentile score is the score below which 99 percent of students scored. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.2.PP\",\"PASEC: Mean performance on the mathematics scale for 2nd grade students who attended pre-primary education\",\"Average score of Grade 2 students who attended any form of pre-primary education. PASEC performance scales have an international average of 500 points and a standard deviation of 100 points with all countries being given equal weighting. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.2.PP.GAP\",\"PASEC: Average performance gap between 2nd grade students who attended/did not attend pre-primary education. Mathematics\",\"Average difference in scores between students in who attended or did not attend any form of pre-primary education. See footnotes for the statistical significance of each data point. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.2.PRI.GAP\",\"PASEC: Average performance gap between 2nd grade students in private and public education. Mathematics\",\"Average difference between pupil scores in private and public educational institutions controlling for the territorial planning index, which is calculated based on the availability of the following infrastructure and services: a paved road; electricity; a lower secondary school; an upper secondary school; a hospital; a medical or healthcare center; a police station; a bank; a savings bank; a post office; and a cultural center or library. When public and private schools are located in areas with similar infrastructure and service levels as measured by the territorial planning index, the gaps between pupils’ scores tend to be smaller. See footnotes for the statistical significance of each data point. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.2.RU.GAP\",\"PASEC: Average performance gap between 2nd grade students in rural and urban areas. Mathematics\",\"Average difference between pupil scores in rural and urban areas controlling for the territorial planning index, which is calculated based on the availability of the following infrastructure and services: a paved road; electricity; a lower secondary school; an upper secondary school; a hospital; a medical or healthcare center; a police station; a bank; a savings bank; a post office; and a cultural center or library. When urban and rural schools are located in areas with similar infrastructure and service levels as measured by the territorial planning index, the gaps between pupils’ scores tend to be smaller. Urban areas include towns and town suburbs, and rural areas include large villages (several hundred family lots) and small villages (up to one hundred family lots). These urban/rural definitions are standard across countries to facilitate the comparison of trends from one country to another. See footnotes for the statistical significance of each data point. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.2.SUB1\",\"PASEC: Percentage of 2nd grade students correcting answering the subtraction problem: 13-7\",\"Share of 2nd grade students correctly answering the stated problem. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.2.SUB2\",\"PASEC: Percentage of 2nd grade students correcting answering the subtraction problem: 34-11\",\"Share of 2nd grade students correctly answering the stated problem. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.2.SUB3\",\"PASEC: Percentage of 2nd grade students correcting answering the subtraction problem: 50-18\",\"Share of 2nd grade students correctly answering the stated problem. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.6\",\"PASEC: Mean performance on the mathematics scale for 6th grade students. Total\",\"Average score of Grade 6 students on the PASEC mathemathics scale. PASEC performance scales have an international average of 500 points and a standard deviation of 100 points with all countries being given equal weighting. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.6.FE\",\"PASEC: Mean performance on the mathematics scale for 6th grade students. Female\",\"Average score of female Grade 6 students on the PASEC mathemathics scale. PASEC performance scales have an international average of 500 points and a standard deviation of 100 points with all countries being given equal weighting. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.6.L0\",\"PASEC: 6th grade students by mathematics proficiency level (%). Below Level 1\",\"Share of 6th grade students who scored below 433.3 on the PASEC mathematics scale. Pupils below Level 1 are not able to correctly answer a majority of the most basic test questions; these pupils do not display the competencies measured by this test. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.6.L1\",\"PASEC: 6th grade students by mathematics proficiency level (%). Level 1\",\"Share of 6th grade students scoring higher than 433.3 but below 521.5 on the PASEC mathematics scale. Students at Level 1 have not reached the Sufficient Competency Threshold, but they can answer very brief questions by calling upon factual knowledge or a specific procedure. In arithmetic, they are able to carry out the four basic operations with whole numbers. In measurement, they recognize the length measurement unit: the meter. In geometry, they are able to orientate themselves in space by identifying directions and positions and by reading coordinates on a graph. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.6.L2\",\"PASEC: 6th grade students by mathematics proficiency level (%). Level 2\",\"Share of 6th grade students scoring higher than 521.5 but below 609.6 on the PASEC mathematics scale. Students at Level 2 have reached the Sufficient Competency Threshold, and are able to answer brief arithmetic, measurement and geometry questions by resorting to the three assessed processes: knowing, applying and reasoning. Some questions call on factual knowledge or a scientific approach; others require analysis of a situation prior to determining the appropriate approach. In arithmetic, students can perform operations with decimal numbers and can also solve familiar problems by analyzing the wording of the question or extracting data from a double-entry table. They know how to complete logical series with decimal numbers or fractions. In measurement, pupils can tell the time and convert units of measurement with or without a conversion table. They are also able to solve arithmetic problems involving operations with units of length or days, hours and minutes. In geometry, pupils know the names of certain solids, basic geometric shapes and some characteristic lines (diagonal, median). Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.6.L3\",\"PASEC: 6th grade students by mathematics proficiency level (%). Level 3\",\"Share of 6th grade students scoring at least 609.6 on the PASEC mathematics scale. Students at Level 3 have reached the Sufficient Competency Threshold. They are able to answer arithmetic and measurement questions that require them to analyze situations and decide on the appropriate approach. In arithmetic, they can solve problems involving fractions or decimal numbers, and in measurement, they can solve problems involving surface area or perimeter calculations. Pupils can find data on a diagram prior to calculating distances. They are also able to perform calculations and conversions involving hours, minutes and seconds. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.6.MA\",\"PASEC: Mean performance on the mathematics scale for 6th grade students. Male\",\"Average score of male Grade 6 students on the PASEC mathemathics scale. PASEC performance scales have an international average of 500 points and a standard deviation of 100 points with all countries being given equal weighting. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.6.MG.GAP\",\"PASEC: Average performance gap between 6th grade students in multigrade and standard classes. Mathematics\",\"Average difference in scores between students in multigrade classes and standard classes. Standard classes have one full-time teacher per class/grade, and multigrade classes have pupils from different grades in a single pedagogical group with a single teacher. See footnotes for the statistical significance of each data point. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.6.NPP\",\"PASEC: Mean performance on the mathematics scale for 6th grade students who did not attend pre-primary education\",\"Average score of Grade 6 students who did not attend any form of pre-primary education. PASEC performance scales have an international average of 500 points and a standard deviation of 100 points with all countries being given equal weighting. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.6.P05\",\"PASEC: Distribution of 6th grade mathematics scores: 5th Percentile Score\",\"The 5th percentile score is the score below which 5 percent of students scored. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.6.P1\",\"PASEC: Distribution of 6th grade mathematics scores: 1st Percentile Score\",\"The 1st percentile score is the score below which 1 percent of students scored. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.6.P10\",\"PASEC: Distribution of 6th grade mathematics scores: 10th Percentile Score\",\"The 10th percentile score is the score below which 10 percent of students scored. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.6.P25\",\"PASEC: Distribution of 6th grade mathematics scores: 25th Percentile Score\",\"The 25th percentile score is the score below which 25 percent of students scored. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.6.P50\",\"PASEC: Distribution of 6th grade mathematics scores: 50th Percentile Score\",\"The 50th percentile score is the score below which 50 percent of students scored. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.6.P75\",\"PASEC: Distribution of 6th grade mathematics scores: 75th Percentile Score\",\"The 75th percentile score is the score below which 75 percent of students scored. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.6.P90\",\"PASEC: Distribution of 6th grade mathematics scores: 90th Percentile Score\",\"The 90th percentile score is the score below which 90 percent of students scored. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.6.P95\",\"PASEC: Distribution of 6th grade mathematics scores: 95th Percentile Score\",\"The 95th percentile score is the score below which 95 percent of students scored. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.6.P99\",\"PASEC: Distribution of 6th grade mathematics scores: 99th Percentile Score\",\"The 99th percentile score is the score below which 99 percent of students scored. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.6.PP\",\"PASEC: Mean performance on the mathematics scale for 6th grade students who attended pre-primary education\",\"Average score of Grade 6 students who attended any form of pre-primary education. PASEC performance scales have an international average of 500 points and a standard deviation of 100 points with all countries being given equal weighting. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.6.PP.GAP\",\"PASEC: Average performance gap between 6th grade students who attended/did not attend pre-primary education. Mathematics\",\"Average difference in scores between students in who attended or did not attend any form of pre-primary education. See footnotes for the statistical significance of each data point. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.6.PRI.GAP\",\"PASEC: Average performance gap between 6th grade students in private and public education. Mathematics\",\"Average difference between pupil scores in private and public educational institutions controlling for the socioeconomic index and the territorial planning index, which is calculated based on the availability of the following infrastructure and services: a paved road; electricity; a lower secondary school; an upper secondary school; a hospital; a medical or healthcare center; a police station; a bank; a savings bank; a post office; and a cultural center or library. When public and private schools are located in areas with similar infrastructure and service levels as measured by the territorial planning index, the gaps between pupils’ scores tend to be smaller. See footnotes for the statistical significance of each data point. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.6.RU.GAP\",\"PASEC: Average performance gap between 6th grade students in rural and urban areas. Mathematics\",\"Average difference between pupil scores in rural and urban areas controlling for the socioeconomic index and the territorial planning index, which is calculated based on the availability of the following infrastructure and services: a paved road; electricity; a lower secondary school; an upper secondary school; a hospital; a medical or healthcare center; a police station; a bank; a savings bank; a post office; and a cultural center or library. When urban and rural schools are located in areas with similar infrastructure and service levels as measured by the territorial planning index, the gaps between pupils’ scores tend to be smaller. Urban areas include towns and town suburbs, and rural areas include large villages (several hundred family lots) and small villages (up to one hundred family lots). These urban/rural definitions are standard across countries to facilitate the comparison of trends from one country to another. See footnotes for the statistical significance of each data point. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.MAT.P05\",\"PASEC: Distribution of 5th Grade Mathematics Scores: 5th Percentile Score\",\"The 5th percentile score is the score below which 5 percent of students scored. Data reflects country performance in the stated year according to PASEC. 2004-2005 PASEC data is only comparable with other country data from 2004-2005. 2006-2010 data is not comparable with data from 2004-2005. Consult the PASEC website for more detailed information: http://www.confemen.org/le-pasec/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEM Education Systems (PASEC)\"\n\"LO.PASEC.MAT.P10\",\"PASEC: Distribution of 5th Grade Mathematics Scores: 10th Percentile Score\",\"The 10th percentile score is the score below which 10 percent of students scored. Data reflects country performance in the stated year according to PASEC. 2004-2005 PASEC data is only comparable with other country data from 2004-2005. 2006-2010 data is not comparable with data from 2004-2005. Consult the PASEC website for more detailed information: http://www.confemen.org/le-pasec/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEM Education Systems (PASEC)\"\n\"LO.PASEC.MAT.P25\",\"PASEC: Distribution of 5th Grade Mathematics Scores: 25th Percentile Score\",\"The 25th percentile score is the score below which 25 percent of students scored. Data reflects country performance in the stated year according to PASEC. 2004-2005 PASEC data is only comparable with other country data from 2004-2005. 2006-2010 data is not comparable with data from 2004-2005. Consult the PASEC website for more detailed information: http://www.confemen.org/le-pasec/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEM Education Systems (PASEC)\"\n\"LO.PASEC.MAT.P50\",\"PASEC: Distribution of 5th Grade Mathematics Scores: 50th Percentile Score\",\"The 50th percentile score is the score below which 50 percent of students scored. Data reflects country performance in the stated year according to PASEC. 2004-2005 PASEC data is only comparable with other country data from 2004-2005. 2006-2010 data is not comparable with data from 2004-2005. Consult the PASEC website for more detailed information: http://www.confemen.org/le-pasec/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEM Education Systems (PASEC)\"\n\"LO.PASEC.MAT.P75\",\"PASEC: Distribution of 5th Grade Mathematics Scores: 75th Percentile Score\",\"The 75th percentile score is the score below which 75 percent of students scored. Data reflects country performance in the stated year according to PASEC. 2004-2005 PASEC data is only comparable with other country data from 2004-2005. 2006-2010 data is not comparable with data from 2004-2005. Consult the PASEC website for more detailed information: http://www.confemen.org/le-pasec/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEM Education Systems (PASEC)\"\n\"LO.PASEC.MAT.P90\",\"PASEC: Distribution of 5th Grade Mathematics Scores: 90th Percentile Score\",\"The 90th percentile score is the score below which 90 percent of students scored. Data reflects country performance in the stated year according to PASEC. 2004-2005 PASEC data is only comparable with other country data from 2004-2005. 2006-2010 data is not comparable with data from 2004-2005. Consult the PASEC website for more detailed information: http://www.confemen.org/le-pasec/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEM Education Systems (PASEC)\"\n\"LO.PASEC.MAT.P95\",\"PASEC: Distribution of 5th Grade Mathematics Scores: 95th Percentile Score\",\"The 95th percentile score is the score below which 90 percent of students scored. Data reflects country performance in the stated year according to PASEC. 2004-2005 PASEC data is only comparable with other country data from 2004-2005. 2006-2010 data is not comparable with data from 2004-2005. Consult the PASEC website for more detailed information: http://www.confemen.org/le-pasec/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEM Education Systems (PASEC)\"\n\"LO.PASEC.MAT5\",\"PASEC: Mean performance on the mathematics scale (100 points) for 5th grade students, total\",\"Mean percentage correct for 5th grade students on the mathematics exam. Data reflects country performance in the stated year according to PASEC. 2004-2005 PASEC data is only comparable with other country data from 2004-2005. 2006-2010 data is not comparable with data from 2004-2005. Consult the PASEC website for more detailed information: http://www.confemen.org/le-pasec/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEM Education Systems (PASEC)\"\n\"LO.PASEC.MAT5.FE\",\"PASEC: Mean performance on the mathematics scale (100 points) for 5th grade students, female\",\"Mean percentage correct for female 5th grade students on the mathematics exam. Average differences are only significant between males and females in Benin, Gabon, Burkina Faso, Senegal, Burundi, Cote d'Ivoire, Togo and Comoros. Since comparison is suggested by giving average scores for males/females, please take into account that these are only raw effects of gender. PASEC uses econometric models to validate the effect of gender in achievement. Data reflects country performance in the stated year according to PASEC. 2004-2005 PASEC data is only comparable with other country data from 2004-2005. 2006-2010 data is not comparable with data from 2004-2005. Consult the PASEC website for more detailed information: http://www.confemen.org/le-pasec/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEM Education Systems (PASEC)\"\n\"LO.PASEC.MAT5.HIG\",\"PASEC: 5th grade students above the Knowledge Base Rate on the mathematics scale (above 40% of answers correct) (%), total\",\"Share of students scoring at least 40 percent on the PASEC mathematics exam. The Knowledge Base Rate is the minimum learning goal based on the programs of the level selected and appropriate to the scale of the tests used. Data reflects country performance in the stated year according to PASEC. 2004-2005 PASEC data is only comparable with other country data from 2004-2005. 2006-2010 data is not comparable with data from 2004-2005. Consult the PASEC website for more detailed information: http://www.confemen.org/le-pasec/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEM Education Systems (PASEC)\"\n\"LO.PASEC.MAT5.HIG.FE\",\"PASEC: 5th grade students above the Knowledge Base Rate on the mathematics scale (above 40% of answers correct) (%), female\",\"Share of female students scoring at least 40 percent on the PASEC mathematics exam. The Knowledge Base Rate is the minimum learning goal based on the programs of the level selected and appropriate to the scale of the tests used. Data reflects country performance in the stated year according to PASEC. 2004-2005 PASEC data is only comparable with other country data from 2004-2005. 2006-2010 data is not comparable with data from 2004-2005. Consult the PASEC website for more detailed information: http://www.confemen.org/le-pasec/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEM Education Systems (PASEC)\"\n\"LO.PASEC.MAT5.HIG.MA\",\"PASEC: 5th grade students above the Knowledge Base Rate on the mathematics scale (above 40% of answers correct) (%), male\",\"Share of male students scoring at least 40 percent on the PASEC mathematics exam. The Knowledge Base Rate is the minimum learning goal based on the programs of the level selected and appropriate to the scale of the tests used. Data reflects country performance in the stated year according to PASEC. 2004-2005 PASEC data is only comparable with other country data from 2004-2005. 2006-2010 data is not comparable with data from 2004-2005. Consult the PASEC website for more detailed information: http://www.confemen.org/le-pasec/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEM Education Systems (PASEC)\"\n\"LO.PASEC.MAT5.LO\",\"PASEC: 5th grade students at the lowest level of proficiency on the mathematics scale (less than 25% of answers correct) (%), total\",\"Share of students scoring less than 25 percent on the PASEC mathematics exam. The Failure Rate is the score a pupil could obtain by completing the PASEC test randomly. Data reflects country performance in the stated year according to PASEC. 2004-2005 PASEC data is only comparable with other country data from 2004-2005. 2006-2010 data is not comparable with data from 2004-2005. Consult the PASEC website for more detailed information: http://www.confemen.org/le-pasec/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEM Education Systems (PASEC)\"\n\"LO.PASEC.MAT5.LO.FE\",\"PASEC: 5th grade students at the lowest level of proficiency on the mathematics scale (less than 25% of answers correct) (%), female\",\"Share of female students scoring less than 25 percent on the PASEC mathematics exam. The Failure Rate is the score a pupil could obtain by completing the PASEC test randomly. Data reflects country performance in the stated year according to PASEC. 2004-2005 PASEC data is only comparable with other country data from 2004-2005. 2006-2010 data is not comparable with data from 2004-2005. Consult the PASEC website for more detailed information: http://www.confemen.org/le-pasec/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEM Education Systems (PASEC)\"\n\"LO.PASEC.MAT5.LO.MA\",\"PASEC: 5th grade students at the lowest level of proficiency on the mathematics scale (less than 25% of answers correct) (%), male\",\"Share of male students scoring less than 25 percent on the PASEC mathematics exam. The Failure Rate is the score a pupil could obtain by completing the PASEC test randomly. Data reflects country performance in the stated year according to PASEC. 2004-2005 PASEC data is only comparable with other country data from 2004-2005. 2006-2010 data is not comparable with data from 2004-2005. Consult the PASEC website for more detailed information: http://www.confemen.org/le-pasec/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEM Education Systems (PASEC)\"\n\"LO.PASEC.MAT5.MA\",\"PASEC: Mean performance on the mathematics scale (100 points) for 5th grade students, male\",\"Mean percentage correct for male 5th grade students on the mathematics exam. Average differences are only significant between males and females in Benin, Gabon, Burkina Faso, Senegal, Burundi, Cote d'Ivoire, Togo and Comoros. Since comparison is suggested by giving average scores for males/females, please take into account that these are only raw effects of gender. PASEC uses econometric models to validate the effect of gender in achievement. Data reflects country performance in the stated year according to PASEC. 2004-2005 PASEC data is only comparable with other country data from 2004-2005. 2006-2010 data is not comparable with data from 2004-2005. Consult the PASEC website for more detailed information: http://www.confemen.org/le-pasec/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEM Education Systems (PASEC)\"\n\"LO.PASEC.REA.2\",\"PASEC: Mean performance on the language scale for 2nd grade students. Total\",\"Average score of Grade 2 students on the PASEC language scale. PASEC performance scales have an international average of 500 points and a standard deviation of 100 points with all countries being given equal weighting. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.2.FE\",\"PASEC: Mean performance on the language scale for 2nd grade students. Female\",\"Average score of female Grade 2 students on the PASEC language scale. PASEC performance scales have an international average of 500 points and a standard deviation of 100 points with all countries being given equal weighting. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.2.L0\",\"PASEC: 2nd grade students by language proficiency level (%). Below Level 1\",\"Percentage of 2nd grade students scoring below 399.1 on the PASEC reading scale. Pupils below Level 1 do not display the competencies measured by the PASEC reading test. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.2.L1\",\"PASEC: 2nd grade students by language proficiency level (%). Level 1\",\"Percentage of 2nd grade students scoring at least 399.1 but not higher than 469.5 on the PASEC reading scale. Students at proficiency level 1 are classified as Early Readers who have not reached the Sufficient Competency Threshold. Students at this level are able to understand very short and familiar oral messages to recognize familiar objects. They have great difficulty decoding written language and performing graphophonological identification (letters, syllables, graphemes and phonemes). Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.2.L2\",\"PASEC: 2nd grade students by language proficiency level (%). Level 2\",\"Percentage of 2nd grade students scoring at least 469.5 but not higher than 540 on the PASEC reading scale. Students at proficiency level 2 are classified as Emerging Readers who have not reached the Sufficient Competency Threshold. These students are in the process of developing the first basic links between the oral and written language. They can perform basic graphophonological decoding, recognition and identification tasks (letters, syllables, graphemes and phonemes). Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.2.L3\",\"PASEC: 2nd grade students by language proficiency level (%). Level 3\",\"Percentage of 2nd grade students scoring at least 540 but not higher than 610.4 on the PASEC reading scale. Students at proficiency level 3 are classified as Novice Readers who have reached the Sufficient Competency Threshold. These students have demonstrated their skills at written language decoding, listening comprehension and reading comprehension. They are able to identify the meaning of isolated words in reading comprehension, and in listening comprehension, they are able to understand explicit information in a short passage containing familiar vocabulary. They have developed links between oral and written language thus improving their decoding skills and expanding their vocabulary. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.2.L4\",\"PASEC: 2nd grade students by language proficiency level (%). Level 4\",\"Percentage of 2nd grade students scoring at least 610.4 on the PASEC reading scale. Students at proficiency level 4 are classified as Intermediate Readers who have reached the Sufficient Competency Threshold. These students have acquired written language decoding and listening comprehension competencies that enable them to understand explicit information in words, sentences and short passages. They can combine their decoding skills and their mastery of the oral language to grasp the literal meaning of a short passage. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.2.LTR.0T5\",\"PASEC: Distribution of 2nd grade students by average number of letters read accurately in one minute. 0 to 5 Letters\",\"Percentage of 2nd grade students who accurately read 5 or less letters per minute on the PASEC reading assessment. Pupils’ ability to read letters of the alphabet correctly and quickly shows how well pupils have mastered initial letter decoding skills. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.2.LTR.11T20\",\"PASEC: Distribution of 2nd grade students by average number of letters read accurately in one minute. 11 to 20 Letters\",\"Percentage of 2nd grade students who accurately read 11 to 20 letters per minute on the PASEC reading assessment. Pupils’ ability to read letters of the alphabet correctly and quickly shows how well pupils have mastered initial letter decoding skills. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.2.LTR.20UP\",\"PASEC: Distribution of 2nd grade students by average number of letters read accurately in one minute. 20+ Letters\",\"Percentage of 2nd grade students who accurately read more than 20 letters per minute on the PASEC reading assessment. Pupils’ ability to read letters of the alphabet correctly and quickly shows how well pupils have mastered initial letter decoding skills. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.2.LTR.6T10\",\"PASEC: Distribution of 2nd grade students by average number of letters read accurately in one minute. 6 to 10 Letters\",\"Percentage of 2nd grade students who accurately read 6 to 10 letters per minute on the PASEC reading assessment. Pupils’ ability to read letters of the alphabet correctly and quickly shows how well pupils have mastered initial letter decoding skills. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.2.MA\",\"PASEC: Mean performance on the language scale for 2nd grade students. Male\",\"Average score of male Grade 2 students on the PASEC language scale. PASEC performance scales have an international average of 500 points and a standard deviation of 100 points with all countries being given equal weighting. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.2.MG.GAP\",\"PASEC: Average performance gap between 2nd grade students in multigrade and standard classes. Language\",\"Average difference in scores between students in multigrade classes and standard classes. Standard classes have one full-time teacher per class/grade, and multigrade classes have pupils from different grades in a single pedagogical group with a single teacher. See footnotes for the statistical significance of each data point. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.2.NPP\",\"PASEC: Mean performance on the language scale for 2nd grade students who did not attend pre-primary education\",\"Average score of Grade 2 students who did not attend any form of pre-primary education. PASEC performance scales have an international average of 500 points and a standard deviation of 100 points with all countries being given equal weighting. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.2.P05\",\"PASEC: Distribution of 2nd grade language scores: 5th Percentile Score\",\"The 5th percentile score is the score below which 5 percent of students scored. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.2.P1\",\"PASEC: Distribution of 2nd grade language scores: 1st Percentile Score\",\"The 1st percentile score is the score below which 1 percent of students scored. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.2.P10\",\"PASEC: Distribution of 2nd grade language scores: 10th Percentile Score\",\"The 10th percentile score is the score below which 10 percent of students scored. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.2.P25\",\"PASEC: Distribution of 2nd grade language scores: 25th Percentile Score\",\"The 25th percentile score is the score below which 25 percent of students scored. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.2.P50\",\"PASEC: Distribution of 2nd grade language scores: 50th Percentile Score\",\"The 50th percentile score is the score below which 50 percent of students scored. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.2.P75\",\"PASEC: Distribution of 2nd grade language scores: 75th Percentile Score\",\"The 75th percentile score is the score below which 75 percent of students scored. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.2.P90\",\"PASEC: Distribution of 2nd grade language scores: 90th Percentile Score\",\"The 90th percentile score is the score below which 90 percent of students scored. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.2.P95\",\"PASEC: Distribution of 2nd grade language scores: 95th Percentile Score\",\"The 95th percentile score is the score below which 95 percent of students scored. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.2.P99\",\"PASEC: Distribution of 2nd grade language scores: 99th Percentile Score\",\"The 99th percentile score is the score below which 99 percent of students scored. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.2.PP\",\"PASEC: Mean performance on the language scale for 2nd grade students who attended pre-primary education\",\"Average score of Grade 2 students who attended any form of pre-primary education. PASEC performance scales have an international average of 500 points and a standard deviation of 100 points with all countries being given equal weighting. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.2.PP.GAP\",\"PASEC: Average performance gap between 2nd grade students who attended/did not attend pre-primary education. Language\",\"Average difference in scores between students in who attended or did not attend any form of pre-primary education. See footnotes for the statistical significance of each data point. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.2.PRI.GAP\",\"PASEC: Average performance gap between 2nd grade students in private and public education. Language\",\"Average difference between pupil scores in private and public educational institutions controlling for the territorial planning index, which is calculated based on the availability of the following infrastructure and services: a paved road; electricity; a lower secondary school; an upper secondary school; a hospital; a medical or healthcare center; a police station; a bank; a savings bank; a post office; and a cultural center or library. When public and private schools are located in areas with similar infrastructure and service levels as measured by the territorial planning index, the gaps between pupils’ scores tend to be smaller. See footnotes for the statistical significance of each data point. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.2.RU.GAP\",\"PASEC: Average performance gap between 2nd grade students in rural and urban areas. Language\",\"Average difference between pupil scores in rural and urban areas controlling for the territorial planning index, which is calculated based on the availability of the following infrastructure and services: a paved road; electricity; a lower secondary school; an upper secondary school; a hospital; a medical or healthcare center; a police station; a bank; a savings bank; a post office; and a cultural center or library. When urban and rural schools are located in areas with similar infrastructure and service levels as measured by the territorial planning index, the gaps between pupils’ scores tend to be smaller. Urban areas include towns and town suburbs, and rural areas include large villages (several hundred family lots) and small villages (up to one hundred family lots). These urban/rural definitions are standard across countries to facilitate the comparison of trends from one country to another. See footnotes for the statistical significance of each data point. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.2.WRD.0\",\"PASEC: Distribution of 2nd grade students by average number of words read accurately in one minute. 0 Words\",\"Percentage of 2nd grade students who accurately read zero words within one minute. The exercise requires pupils to read isolated, familiar and mostly irregular words to determine which pupils have developed sufficient written language decoding skills to adopt a lexical approach to reading. Pupils have up to five seconds to read each word; This time limit ensures that students are not decoding words through the sub-lexical assembly process. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.2.WRD.11T20\",\"PASEC: Distribution of 2nd grade students by average number of words read accurately in one minute. 11 to 20 Words\",\"Percentage of 2nd grade students who accurately read 11 to 20 words within one minute. The exercise requires pupils to read isolated, familiar and mostly irregular words to determine which pupils have developed sufficient written language decoding skills to adopt a lexical approach to reading. Pupils have up to five seconds to read each word; This time limit ensures that students are not decoding words through the sub-lexical assembly process. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.2.WRD.1T5\",\"PASEC: Distribution of 2nd grade students by average number of words read accurately in one minute. 1 to 5 Words\",\"Percentage of 2nd grade students who accurately read 1 to 5 words within one minute. The exercise requires pupils to read isolated, familiar and mostly irregular words to determine which pupils have developed sufficient written language decoding skills to adopt a lexical approach to reading. Pupils have up to five seconds to read each word; This time limit ensures that students are not decoding words through the sub-lexical assembly process. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.2.WRD.20UP\",\"PASEC: Distribution of 2nd grade students by average number of words read accurately in one minute. 20+ Words\",\"Percentage of 2nd grade students who accurately read more than 20 words within one minute. The exercise requires pupils to read isolated, familiar and mostly irregular words to determine which pupils have developed sufficient written language decoding skills to adopt a lexical approach to reading. Pupils have up to five seconds to read each word; This time limit ensures that students are not decoding words through the sub-lexical assembly process. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.2.WRD.6T10\",\"PASEC: Distribution of 2nd grade students by average number of words read accurately in one minute. 6 to 10 Words\",\"Percentage of 2nd grade students who accurately read 6 to 10 words within one minute. The exercise requires pupils to read isolated, familiar and mostly irregular words to determine which pupils have developed sufficient written language decoding skills to adopt a lexical approach to reading. Pupils have up to five seconds to read each word; This time limit ensures that students are not decoding words through the sub-lexical assembly process. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.6\",\"PASEC: Mean performance on the reading scale for 6th grade students. Total\",\"Average score of Grade 6 students on the PASEC reading scale. PASEC performance scales have an international average of 500 points and a standard deviation of 100 points with all countries being given equal weighting. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.6.FE\",\"PASEC: Mean performance on the reading scale for 6th grade students. Female\",\"Average score of female Grade 6 students on the PASEC reading scale. PASEC performance scales have an international average of 500 points and a standard deviation of 100 points with all countries being given equal weighting. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.6.L0\",\"PASEC: 6th grade students by reading proficiency level (%). Below Level 1\",\"Share of 6th grade students scoring below 365 on the PASEC reading scale. Pupils below Level 1 are not able to correctly answer a majority of the most basic test questions; Pupils at this level do not display the competencies measured by this test. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.6.L1\",\"PASEC: 6th grade students by reading proficiency level (%). Level 1\",\"Share of 6th grade students scoring higher than 365 but lower than 441.7 on the PASEC reading scale. Students at level 1 have not achieved the Sufficient Competency Threshold. They have developed decoding skills and can draw on them to understand isolated words taken from their everyday lives but are in difficulty when it comes to understanding the meaning of short and simple texts. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.6.L2\",\"PASEC: 6th grade students by reading proficiency level (%). Level 2\",\"Share of 6th grade students scoring higher than 441.7 but lower than 518.4 on the PASEC reading scale. Students at level 2 have not achieved the Sufficient Competency Threshold, but they can draw on their orthographic decoding skills to identify and understand isolated words taken from their everyday lives. They are also able to paraphrase explicit information from a text and locate information in short and medium length texts by identifying clues in the text and questions. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.6.L3\",\"PASEC: 6th grade students by reading proficiency level (%). Level 3\",\"Share of 6th grade students scoring higher than 518.4 but lower than 595.1 on the PASEC reading scale. Students at level 3 have achieved the Sufficient Competency Threshold. They are able to combine two pieces of explicit information from a document and carry out simple inferences in a narrative or informative text. They can extract implicit information from written material while giving meaning to implicit connectors, anaphora or referents. Students can also locate explicit information in long texts and discontinuous documents. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.6.L4\",\"PASEC: 6th grade students by reading proficiency level (%). Level 4\",\"Share of 6th grade students scoring higher than 595.1 on the PASEC reading scale. Students at level 4 have achieved the Sufficient Competency Threshold and have an overall understanding of narrative passages, informative texts and documents. They are able to interpret several implicit ideas in these texts while drawing from their experience and knowledge. When reading literary texts, pupils can to identify the author’s intention, determine implicit meaning and interpret characters’ feelings. When reading informative texts and documents, they can connect information and compare data prior to using it. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.6.MA\",\"PASEC: Mean performance on the reading scale for 6th grade students. Male\",\"Average score of male Grade 6 students on the PASEC reading scale. PASEC performance scales have an international average of 500 points and a standard deviation of 100 points with all countries being given equal weighting. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.6.MG.GAP\",\"PASEC: Average performance gap between 6th grade students in multigrade and standard classes. Reading\",\"Average difference in scores between students in multigrade classes and standard classes. Standard classes have one full-time teacher per class/grade, and multigrade classes have pupils from different grades in a single pedagogical group with a single teacher. See footnotes for the statistical significance of each data point. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.6.NPP\",\"PASEC: Mean performance on the reading scale for 6th grade students who did not attend pre-primary education\",\"Average score of Grade 6 students who did not attend any form of pre-primary education. PASEC performance scales have an international average of 500 points and a standard deviation of 100 points with all countries being given equal weighting. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.6.P05\",\"PASEC: Distribution of 6th grade reading scores: 5th Percentile Score\",\"The 5th percentile score is the score below which 5 percent of students scored. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.6.P1\",\"PASEC: Distribution of 6th grade reading scores: 1st Percentile Score\",\"The 1st percentile score is the score below which 1 percent of students scored. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.6.P10\",\"PASEC: Distribution of 6th grade reading scores: 10th Percentile Score\",\"The 10th percentile score is the score below which 10 percent of students scored. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.6.P25\",\"PASEC: Distribution of 6th grade reading scores: 25th Percentile Score\",\"The 25th percentile score is the score below which 25 percent of students scored. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.6.P50\",\"PASEC: Distribution of 6th grade reading scores: 50th Percentile Score\",\"The 50th percentile score is the score below which 50 percent of students scored. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.6.P75\",\"PASEC: Distribution of 6th grade reading scores: 75th Percentile Score\",\"The 75th percentile score is the score below which 75 percent of students scored. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.6.P90\",\"PASEC: Distribution of 6th grade reading scores: 90th Percentile Score\",\"The 90th percentile score is the score below which 90 percent of students scored. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.6.P95\",\"PASEC: Distribution of 6th grade reading scores: 95th Percentile Score\",\"The 95th percentile score is the score below which 95 percent of students scored. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.6.P99\",\"PASEC: Distribution of 6th grade reading scores: 99th Percentile Score\",\"The 99th percentile score is the score below which 99 percent of students scored. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.6.PP\",\"PASEC: Mean performance on the reading scale for 6th grade students who attended pre-primary education\",\"Average score of Grade 6 students who attended any form of pre-primary education. PASEC performance scales have an international average of 500 points and a standard deviation of 100 points with all countries being given equal weighting. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.6.PP.GAP\",\"PASEC: Average performance gap between 6th grade students who attended/did not attend pre-primary education. Reading\",\"Average difference in scores between students in who attended or did not attend any form of pre-primary education. See footnotes for the statistical significance of each data point. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.6.PRI.GAP\",\"PASEC: Average performance gap between 6th grade students in private and public education. Reading\",\"Average difference between pupil scores in private and public educational institutions controlling for the socioeconomic index and the territorial planning index, which is calculated based on the availability of the following infrastructure and services: a paved road; electricity; a lower secondary school; an upper secondary school; a hospital; a medical or healthcare center; a police station; a bank; a savings bank; a post office; and a cultural center or library. When public and private schools are located in areas with similar infrastructure and service levels as measured by the territorial planning index, the gaps between pupils’ scores tend to be smaller. See footnotes for the statistical significance of each data point. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PASEC.REA.6.RU.GAP\",\"PASEC: Average performance gap between 6th grade students in rural and urban areas. Reading\",\"Average difference between pupil scores in rural and urban areas controlling for the socioeconomic index and the territorial planning index, which is calculated based on the availability of the following infrastructure and services: a paved road; electricity; a lower secondary school; an upper secondary school; a hospital; a medical or healthcare center; a police station; a bank; a savings bank; a post office; and a cultural center or library. When urban and rural schools are located in areas with similar infrastructure and service levels as measured by the territorial planning index, the gaps between pupils’ scores tend to be smaller. Urban areas include towns and town suburbs, and rural areas include large villages (several hundred family lots) and small villages (up to one hundred family lots). These urban/rural definitions are standard across countries to facilitate the comparison of trends from one country to another. See footnotes for the statistical significance of each data point. Data were published for this indicator beginning with PASEC 2014. Consult the PASEC website for more detailed information: http://www.pasec.confemen.org/\",\"Education Statistics\",\"Programme d'Analyse des Systèmes Educatifs de la CONFEMEN/Program for the Analysis of CONFEMEN Education Systems (PASEC): http://www.pasec.confemen.org/\"\n\"LO.PIAAC.LIT\",\"PIAAC: Mean Adult Literacy Proficiency. Total\",\"Literacy is defined as the ability to understand, evaluate, use and engage with written texts to participate in society, to achieve one’s goals, and to develop one’s knowledge and potential. Literacy encompasses a range of skills from the decoding of written words and sentences to the comprehension, interpretation, and evaluation of complex texts. It does not, however, involve the production of text (writing). Information on the skills of adults with low levels of proficiency is provided by an assessment of reading components that covers text vocabulary, sentence comprehension and passage fluency. The target population for the survey was the non institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. Literacy-related non-respondents are not included in the calculation of the mean scores which, thus, present an upper bound of the estimated literacy proficiency of the population. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.LIT.1\",\"PIAAC: Adults by literacy proficiency level (%). Level 1\",\"Percentage of adults scoring 176 to less than 226 points on the 0 to 500 point scale. Most of the tasks at this level require the respondent to read relatively short digital or print continuous, non-continuous, or mixed texts to locate a single piece of information that is identical to or synonymous with the information given in the question or directive. Some tasks, such as those involving non-continuous texts, may require the respondent to enter personal information onto a document. Little, if any, competing information is present. Some tasks may require simple cycling through more than one piece of information. Knowledge and skill in recognizing basic vocabulary determining the meaning of sentences, and reading paragraphs of text is expected. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The percentage of adults scoring at different levels of proficiency adds up to 100% when the percentage of literacy-related non-respondents are taken into account. Adults in this category were not able to complete the background questionnaire due to language difficulties or learning and mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.LIT.2\",\"PIAAC: Adults by literacy proficiency level (%). Level 2\",\"Percentage of adults scoring 226 to less than 276 points on the 0 to 500 point scale. At this level, the medium of texts may be digital or printed, and texts may comprise continuous, non-continuous, or mixed types. Tasks at this level require respondents to make matches between the text and information, and may require paraphrasing or low-level inferences. Some competing pieces of information may be present. Some tasks require the respondent to either A) cycle through or integrate two or more pieces of information based on criteria; B) compare and contrast or reason about information requested in the question; or C) navigate within digital texts to access and identify information from various parts of a document. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The percentage of adults scoring at different levels of proficiency adds up to 100% when the percentage of literacy-related non-respondents are taken into account. Adults in this category were not able to complete the background questionnaire due to language difficulties or learning and mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.LIT.3\",\"PIAAC: Adults by literacy proficiency level (%). Level 3\",\"Percentage of adults scoring 276 to less than 326 points on the 0 to 500 point scale. Texts at this level are often dense or lengthy, and include continuous, non-continuous, mixed, or multiple pages of text. Understanding text and rhetorical structures become more central to successfully completing tasks, especially navigating complex digital texts. Tasks require the respondent to identify, interpret, or evaluate one or more pieces of information, and often require varying levels of inference. Many tasks require the respondent to construct meaning across larger chunks of text or perform multi-step operations in order to identify and formulate responses. Often tasks also demand that the respondent disregard irrelevant or inappropriate content to answer accurately. Competing information is often present, but it is not more prominent than the correct information. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The percentage of adults scoring at different levels of proficiency adds up to 100% when the percentage of literacy-related non-respondents are taken into account. Adults in this category were not able to complete the background questionnaire due to language difficulties or learning and mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.LIT.4\",\"PIAAC: Adults by literacy proficiency level (%). Level 4\",\"Percentage of adults scoring 326 to less than 376 points on the 0 to 500 point scale. Tasks at this level often require respondents to perform multiple-step operations to integrate, interpret, or synthesize information from complex or lengthy continuous, non-continuous, mixed, or multiple type texts. Complex inferences and application of background knowledge may be needed to perform the task successfully. Many tasks require identifying and understanding one or more specific, non-central idea(s) in the text in order to interpret or evaluate subtle evidence-claim or persuasive discourse relationships. Conditional information is frequently present in tasks at this level and must be taken into consideration by the respondent. Competing information is present and sometimes seemingly as prominent as correct information. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The percentage of adults scoring at different levels of proficiency adds up to 100% when the percentage of literacy-related non-respondents are taken into account. Adults in this category were not able to complete the background questionnaire due to language difficulties or learning and mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.LIT.5\",\"PIAAC: Adults by literacy proficiency level (%). Level 5\",\"Percentage of adults scoring equal to or higher than 376 points on the 0 to 500 point scale. At this level, tasks may require the respondent to search for and integrate information across multiple, dense texts; construct syntheses of similar and contrasting ideas or points of view; or evaluate evidence based arguments. Application and evaluation of logical and conceptual models of ideas may be required to accomplish tasks. Evaluating reliability of evidentiary sources and selecting key information is frequently a requirement. Tasks often require respondents to be aware of subtle, rhetorical cues and to make high-level inferences or use specialized background knowledge. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The percentage of adults scoring at different levels of proficiency adds up to 100% when the percentage of literacy-related non-respondents are taken into account. Adults in this category were not able to complete the background questionnaire due to language difficulties or learning and mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.LIT.BE\",\"PIAAC: Adults by literacy proficiency level (%). Below Level 1\",\"Percentage of adults scoring below 176 points on the 0 to 500 point scale. The tasks at this level require the respondent to read brief texts on familiar topics to locate a single piece of specific information. There is seldom any competing information in the text and the requested information is identical in form to information in the question or directive. The respondent may be required to locate information in short continuous texts. However, in this case, the information can be located as if the text were non-continuous in format. Only basic vocabulary knowledge is required, and the reader is not required to understand the structure of sentences or paragraphs or make use of other text features. Tasks below Level 1 do not make use of any features specific to digital texts. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The percentage of adults scoring at different levels of proficiency adds up to 100% when the percentage of literacy-related non-respondents are taken into account. Adults in this category were not able to complete the background questionnaire due to language difficulties or learning and mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.LIT.FE\",\"PIAAC: Mean Adult Literacy Proficiency. Female\",\"Literacy is defined as the ability to understand, evaluate, use and engage with written texts to participate in society, to achieve one’s goals, and to develop one’s knowledge and potential. Literacy encompasses a range of skills from the decoding of written words and sentences to the comprehension, interpretation, and evaluation of complex texts. It does not, however, involve the production of text (writing). Information on the skills of adults with low levels of proficiency is provided by an assessment of reading components that covers text vocabulary, sentence comprehension and passage fluency. The target population for the survey was the non institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. Literacy-related non-respondents are not included in the calculation of the mean scores which, thus, present an upper bound of the estimated literacy proficiency of the population. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.LIT.FE.1\",\"PIAAC: Female adults by literacy proficiency level (%). Level 1\",\"Percentage of female adults scoring 176 to less than 226 points on the 0 to 500 point scale. Most of the tasks at this level require the respondent to read relatively short digital or print continuous, non-continuous, or mixed texts to locate a single piece of information that is identical to or synonymous with the information given in the question or directive. Some tasks, such as those involving non-continuous texts, may require the respondent to enter personal information onto a document. Little, if any, competing information is present. Some tasks may require simple cycling through more than one piece of information. Knowledge and skill in recognizing basic vocabulary determining the meaning of sentences, and reading paragraphs of text is expected. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The percentage of adults scoring at different levels of proficiency adds up to 100% when the percentage of literacy-related non-respondents are taken into account. Adults in this category were not able to complete the background questionnaire due to language difficulties or learning and mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.LIT.FE.2\",\"PIAAC: Female adults by literacy proficiency level (%). Level 2\",\"Percentage of female adults scoring 226 to less than 276 points on the 0 to 500 point scale. At this level, the medium of texts may be digital or printed, and texts may comprise continuous, non-continuous, or mixed types. Tasks at this level require respondents to make matches between the text and information, and may require paraphrasing or low-level inferences. Some competing pieces of information may be present. Some tasks require the respondent to either A) cycle through or integrate two or more pieces of information based on criteria; B) compare and contrast or reason about information requested in the question; or C) navigate within digital texts to access and identify information from various parts of a document. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The percentage of adults scoring at different levels of proficiency adds up to 100% when the percentage of literacy-related non-respondents are taken into account. Adults in this category were not able to complete the background questionnaire due to language difficulties or learning and mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.LIT.FE.3\",\"PIAAC: Female adults by literacy proficiency level (%). Level 3\",\"Percentage of female adults scoring 276 to less than 326 points on the 0 to 500 point scale. Texts at this level are often dense or lengthy, and include continuous, non-continuous, mixed, or multiple pages of text. Understanding text and rhetorical structures become more central to successfully completing tasks, especially navigating complex digital texts. Tasks require the respondent to identify, interpret, or evaluate one or more pieces of information, and often require varying levels of inference. Many tasks require the respondent to construct meaning across larger chunks of text or perform multi-step operations in order to identify and formulate responses. Often tasks also demand that the respondent disregard irrelevant or inappropriate content to answer accurately. Competing information is often present, but it is not more prominent than the correct information. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The percentage of adults scoring at different levels of proficiency adds up to 100% when the percentage of literacy-related non-respondents are taken into account. Adults in this category were not able to complete the background questionnaire due to language difficulties or learning and mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.LIT.FE.4\",\"PIAAC: Female adults by literacy proficiency level (%). Level 4\",\"Percentage of female adults scoring 326 to less than 376 points on the 0 to 500 point scale. Tasks at this level often require respondents to perform multiple-step operations to integrate, interpret, or synthesize information from complex or lengthy continuous, non-continuous, mixed, or multiple type texts. Complex inferences and application of background knowledge may be needed to perform the task successfully. Many tasks require identifying and understanding one or more specific, non-central idea(s) in the text in order to interpret or evaluate subtle evidence-claim or persuasive discourse relationships. Conditional information is frequently present in tasks at this level and must be taken into consideration by the respondent. Competing information is present and sometimes seemingly as prominent as correct information. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The percentage of adults scoring at different levels of proficiency adds up to 100% when the percentage of literacy-related non-respondents are taken into account. Adults in this category were not able to complete the background questionnaire due to language difficulties or learning and mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.LIT.FE.5\",\"PIAAC: Female adults by literacy proficiency level (%). Level 5\",\"Percentage of female adults scoring equal to or higher than 376 points on the 0 to 500 point scale. At this level, tasks may require the respondent to search for and integrate information across multiple, dense texts; construct syntheses of similar and contrasting ideas or points of view; or evaluate evidence based arguments. Application and evaluation of logical and conceptual models of ideas may be required to accomplish tasks. Evaluating reliability of evidentiary sources and selecting key information is frequently a requirement. Tasks often require respondents to be aware of subtle, rhetorical cues and to make high-level inferences or use specialized background knowledge. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The percentage of adults scoring at different levels of proficiency adds up to 100% when the percentage of literacy-related non-respondents are taken into account. Adults in this category were not able to complete the background questionnaire due to language difficulties or learning and mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.LIT.FE.BE\",\"PIAAC: Female adults by literacy proficiency level (%). Below Level 1\",\"Percentage of female adults scoring below 176 points on the 0 to 500 point scale. The tasks at this level require the respondent to read brief texts on familiar topics to locate a single piece of specific information. There is seldom any competing information in the text and the requested information is identical in form to information in the question or directive. The respondent may be required to locate information in short continuous texts. However, in this case, the information can be located as if the text were non-continuous in format. Only basic vocabulary knowledge is required, and the reader is not required to understand the structure of sentences or paragraphs or make use of other text features. Tasks below Level 1 do not make use of any features specific to digital texts. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The percentage of adults scoring at different levels of proficiency adds up to 100% when the percentage of literacy-related non-respondents are taken into account. Adults in this category were not able to complete the background questionnaire due to language difficulties or learning and mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.LIT.MA\",\"PIAAC: Mean Adult Literacy Proficiency. Male\",\"Literacy is defined as the ability to understand, evaluate, use and engage with written texts to participate in society, to achieve one’s goals, and to develop one’s knowledge and potential. Literacy encompasses a range of skills from the decoding of written words and sentences to the comprehension, interpretation, and evaluation of complex texts. It does not, however, involve the production of text (writing). Information on the skills of adults with low levels of proficiency is provided by an assessment of reading components that covers text vocabulary, sentence comprehension and passage fluency. The target population for the survey was the non institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. Literacy-related non-respondents are not included in the calculation of the mean scores which, thus, present an upper bound of the estimated literacy proficiency of the population. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.LIT.MA.1\",\"PIAAC: Male adults by literacy proficiency level (%). Level 1\",\"Percentage of male adults scoring 176 to less than 226 points on the 0 to 500 point scale. Most of the tasks at this level require the respondent to read relatively short digital or print continuous, non-continuous, or mixed texts to locate a single piece of information that is identical to or synonymous with the information given in the question or directive. Some tasks, such as those involving non-continuous texts, may require the respondent to enter personal information onto a document. Little, if any, competing information is present. Some tasks may require simple cycling through more than one piece of information. Knowledge and skill in recognizing basic vocabulary determining the meaning of sentences, and reading paragraphs of text is expected. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The percentage of adults scoring at different levels of proficiency adds up to 100% when the percentage of literacy-related non-respondents are taken into account. Adults in this category were not able to complete the background questionnaire due to language difficulties or learning and mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.LIT.MA.2\",\"PIAAC: Male adults by literacy proficiency level (%). Level 2\",\"Percentage of male adults scoring 226 to less than 276 points on the 0 to 500 point scale. At this level, the medium of texts may be digital or printed, and texts may comprise continuous, non-continuous, or mixed types. Tasks at this level require respondents to make matches between the text and information, and may require paraphrasing or low-level inferences. Some competing pieces of information may be present. Some tasks require the respondent to either A) cycle through or integrate two or more pieces of information based on criteria; B) compare and contrast or reason about information requested in the question; or C) navigate within digital texts to access and identify information from various parts of a document. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The percentage of adults scoring at different levels of proficiency adds up to 100% when the percentage of literacy-related non-respondents are taken into account. Adults in this category were not able to complete the background questionnaire due to language difficulties or learning and mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.LIT.MA.3\",\"PIAAC: Male adults by literacy proficiency level (%). Level 3\",\"Percentage of male adults scoring 276 to less than 326 points on the 0 to 500 point scale. Texts at this level are often dense or lengthy, and include continuous, non-continuous, mixed, or multiple pages of text. Understanding text and rhetorical structures become more central to successfully completing tasks, especially navigating complex digital texts. Tasks require the respondent to identify, interpret, or evaluate one or more pieces of information, and often require varying levels of inference. Many tasks require the respondent to construct meaning across larger chunks of text or perform multi-step operations in order to identify and formulate responses. Often tasks also demand that the respondent disregard irrelevant or inappropriate content to answer accurately. Competing information is often present, but it is not more prominent than the correct information. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The percentage of adults scoring at different levels of proficiency adds up to 100% when the percentage of literacy-related non-respondents are taken into account. Adults in this category were not able to complete the background questionnaire due to language difficulties or learning and mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.LIT.MA.4\",\"PIAAC: Male adults by literacy proficiency level (%). Level 4\",\"Percentage of male adults scoring 326 to less than 376 points on the 0 to 500 point scale. Tasks at this level often require respondents to perform multiple-step operations to integrate, interpret, or synthesize information from complex or lengthy continuous, non-continuous, mixed, or multiple type texts. Complex inferences and application of background knowledge may be needed to perform the task successfully. Many tasks require identifying and understanding one or more specific, non-central idea(s) in the text in order to interpret or evaluate subtle evidence-claim or persuasive discourse relationships. Conditional information is frequently present in tasks at this level and must be taken into consideration by the respondent. Competing information is present and sometimes seemingly as prominent as correct information. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The percentage of adults scoring at different levels of proficiency adds up to 100% when the percentage of literacy-related non-respondents are taken into account. Adults in this category were not able to complete the background questionnaire due to language difficulties or learning and mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.LIT.MA.5\",\"PIAAC: Male adults by literacy proficiency level (%). Level 5\",\"Percentage of male adults scoring equal to or higher than 376 points on the 0 to 500 point scale. At this level, tasks may require the respondent to search for and integrate information across multiple, dense texts; construct syntheses of similar and contrasting ideas or points of view; or evaluate evidence based arguments. Application and evaluation of logical and conceptual models of ideas may be required to accomplish tasks. Evaluating reliability of evidentiary sources and selecting key information is frequently a requirement. Tasks often require respondents to be aware of subtle, rhetorical cues and to make high-level inferences or use specialized background knowledge. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The percentage of adults scoring at different levels of proficiency adds up to 100% when the percentage of literacy-related non-respondents are taken into account. Adults in this category were not able to complete the background questionnaire due to language difficulties or learning and mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.LIT.MA.BE\",\"PIAAC: Male adults by literacy proficiency level (%). Below Level 1\",\"Percentage of male adults scoring below 176 points on the 0 to 500 point scale. The tasks at this level require the respondent to read brief texts on familiar topics to locate a single piece of specific information. There is seldom any competing information in the text and the requested information is identical in form to information in the question or directive. The respondent may be required to locate information in short continuous texts. However, in this case, the information can be located as if the text were non-continuous in format. Only basic vocabulary knowledge is required, and the reader is not required to understand the structure of sentences or paragraphs or make use of other text features. Tasks below Level 1 do not make use of any features specific to digital texts. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The percentage of adults scoring at different levels of proficiency adds up to 100% when the percentage of literacy-related non-respondents are taken into account. Adults in this category were not able to complete the background questionnaire due to language difficulties or learning and mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.LIT.P05\",\"PIAAC: Distribution of Adult Literacy Scores: 5th Percentile Score\",\"The 5th percentile score is the score below which 5 percent of adults (age 16 to 65) scored. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.LIT.P10\",\"PIAAC: Distribution of Adult Literacy Scores: 10th Percentile Score\",\"The 10th percentile score is the score below which 10 percent of adults (age 16 to 65) scored. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.LIT.P25\",\"PIAAC: Distribution of Adult Literacy Scores: 25th Percentile Score\",\"The 25th percentile score is the score below which 25 percent of adults (age 16 to 65) scored. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.LIT.P50\",\"PIAAC: Distribution of Adult Literacy Scores: 50th Percentile Score\",\"The 50th percentile score is the score below which 50 percent of adults (age 16 to 65) scored. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.LIT.P75\",\"PIAAC: Distribution of Adult Literacy Scores: 75th Percentile Score\",\"The 75th percentile score is the score below which 75 percent of adults (age 16 to 65) scored. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.LIT.P90\",\"PIAAC: Distribution of Adult Literacy Scores: 90th Percentile Score\",\"The 90th percentile score is the score below which 90 percent of adults (age 16 to 65) scored. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.LIT.P95\",\"PIAAC: Distribution of Adult Literacy Scores: 95th Percentile Score\",\"The 95th percentile score is the score below which 90 percent of adults (age 16 to 65) scored. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.LIT.YOU\",\"PIAAC: Mean Young Adult Literacy Proficiency. Total\",\"Literacy is defined as the ability to understand, evaluate, use and engage with written texts to participate in society, to achieve one’s goals, and to develop one’s knowledge and potential. Literacy encompasses a range of skills from the decoding of written words and sentences to the comprehension, interpretation, and evaluation of complex texts. It does not, however, involve the production of text (writing). Information on the skills of adults with low levels of proficiency is provided by an assessment of reading components that covers text vocabulary, sentence comprehension and passage fluency. The target population was the non institutionalized population, aged 16-24 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. Literacy-related non-respondents are not included in the calculation of the mean scores which, thus, present an upper bound of the estimated literacy proficiency of the population. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.LIT.YOU.1\",\"PIAAC: Young adults by literacy proficiency level (%). Level 1\",\"Percentage of young (age 16-24) adults scoring 176 to less than 226 points on the 0 to 500 point scale. Most of the tasks at this level require the respondent to read relatively short digital or print continuous, non-continuous, or mixed texts to locate a single piece of information that is identical to or synonymous with the information given in the question or directive. Some tasks, such as those involving non-continuous texts, may require the respondent to enter personal information onto a document. Little, if any, competing information is present. Some tasks may require simple cycling through more than one piece of information. Knowledge and skill in recognizing basic vocabulary determining the meaning of sentences, and reading paragraphs of text is expected. The target population was the non-institutionalized population, aged 16-24 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The percentage of adults scoring at different levels of proficiency adds up to 100% when the percentage of literacy-related non-respondents are taken into account. Adults in this category were not able to complete the background questionnaire due to language difficulties or learning and mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.LIT.YOU.2\",\"PIAAC: Young adults by literacy proficiency level (%). Level 2\",\"Percentage of young (age 16-24) adults scoring 226 to less than 276 points on the 0 to 500 point scale. At this level, the medium of texts may be digital or printed, and texts may comprise continuous, non-continuous, or mixed types. Tasks at this level require respondents to make matches between the text and information, and may require paraphrasing or low-level inferences. Some competing pieces of information may be present. Some tasks require the respondent to either A) cycle through or integrate two or more pieces of information based on criteria; B) compare and contrast or reason about information requested in the question; or C) navigate within digital texts to access and identify information from various parts of a document. The target population was the non-institutionalized population, aged 16-24 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The percentage of adults scoring at different levels of proficiency adds up to 100% when the percentage of literacy-related non-respondents are taken into account. Adults in this category were not able to complete the background questionnaire due to language difficulties or learning and mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.LIT.YOU.3\",\"PIAAC: Young adults by literacy proficiency level (%). Level 3\",\"Percentage of young (age 16-24) adults scoring 276 to less than 326 points on the 0 to 500 point scale. Texts at this level are often dense or lengthy, and include continuous, non-continuous, mixed, or multiple pages of text. Understanding text and rhetorical structures become more central to successfully completing tasks, especially navigating complex digital texts. Tasks require the respondent to identify, interpret, or evaluate one or more pieces of information, and often require varying levels of inference. Many tasks require the respondent to construct meaning across larger chunks of text or perform multi-step operations in order to identify and formulate responses. Often tasks also demand that the respondent disregard irrelevant or inappropriate content to answer accurately. Competing information is often present, but it is not more prominent than the correct information. The target population was the non-institutionalized population, aged 16-24 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The percentage of adults scoring at different levels of proficiency adds up to 100% when the percentage of literacy-related non-respondents are taken into account. Adults in this category were not able to complete the background questionnaire due to language difficulties or learning and mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.LIT.YOU.4\",\"PIAAC: Young adults by literacy proficiency level (%). Level 4\",\"Percentage of young (age 16-24) adults scoring 326 to less than 376 points on the 0 to 500 point scale. Tasks at this level often require respondents to perform multiple-step operations to integrate, interpret, or synthesize information from complex or lengthy continuous, non-continuous, mixed, or multiple type texts. Complex inferences and application of background knowledge may be needed to perform the task successfully. Many tasks require identifying and understanding one or more specific, non-central idea(s) in the text in order to interpret or evaluate subtle evidence-claim or persuasive discourse relationships. Conditional information is frequently present in tasks at this level and must be taken into consideration by the respondent. Competing information is present and sometimes seemingly as prominent as correct information. The target population was the non-institutionalized population, aged 16-24 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The percentage of adults scoring at different levels of proficiency adds up to 100% when the percentage of literacy-related non-respondents are taken into account. Adults in this category were not able to complete the background questionnaire due to language difficulties or learning and mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.LIT.YOU.5\",\"PIAAC: Young adults by literacy proficiency level (%). Level 5\",\"Percentage of young (age 16-24) adults scoring equal to or higher than 376 points on the 0 to 500 point scale. At this level, tasks may require the respondent to search for and integrate information across multiple, dense texts; construct syntheses of similar and contrasting ideas or points of view; or evaluate evidence based arguments. Application and evaluation of logical and conceptual models of ideas may be required to accomplish tasks. Evaluating reliability of evidentiary sources and selecting key information is frequently a requirement. Tasks often require respondents to be aware of subtle, rhetorical cues and to make high-level inferences or use specialized background knowledge. The target population was the non-institutionalized population, aged 16-24 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The percentage of adults scoring at different levels of proficiency adds up to 100% when the percentage of literacy-related non-respondents are taken into account. Adults in this category were not able to complete the background questionnaire due to language difficulties or learning and mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.LIT.YOU.BE\",\"PIAAC: Young adults by literacy proficiency level (%). Below Level 1\",\"Percentage of young (age 16-24) adults scoring below 176 points on the 0 to 500 point scale. The tasks at this level require the respondent to read brief texts on familiar topics to locate a single piece of specific information. There is seldom any competing information in the text and the requested information is identical in form to information in the question or directive. The respondent may be required to locate information in short continuous texts. However, in this case, the information can be located as if the text were non-continuous in format. Only basic vocabulary knowledge is required, and the reader is not required to understand the structure of sentences or paragraphs or make use of other text features. Tasks below Level 1 do not make use of any features specific to digital texts. The target population was the non-institutionalized population, aged 16-24 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The percentage of adults scoring at different levels of proficiency adds up to 100% when the percentage of literacy-related non-respondents are taken into account. Adults in this category were not able to complete the background questionnaire due to language difficulties or learning and mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.LIT.YOU.FE\",\"PIAAC: Mean Young Adult Literacy Proficiency. Female\",\"Literacy is defined as the ability to understand, evaluate, use and engage with written texts to participate in society, to achieve one’s goals, and to develop one’s knowledge and potential. Literacy encompasses a range of skills from the decoding of written words and sentences to the comprehension, interpretation, and evaluation of complex texts. It does not, however, involve the production of text (writing). Information on the skills of adults with low levels of proficiency is provided by an assessment of reading components that covers text vocabulary, sentence comprehension and passage fluency. The target population was the non institutionalized population, aged 16-24 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. Literacy-related non-respondents are not included in the calculation of the mean scores which, thus, present an upper bound of the estimated literacy proficiency of the population. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.LIT.YOU.MA\",\"PIAAC: Mean Young Adult Literacy Proficiency. Male\",\"Literacy is defined as the ability to understand, evaluate, use and engage with written texts to participate in society, to achieve one’s goals, and to develop one’s knowledge and potential. Literacy encompasses a range of skills from the decoding of written words and sentences to the comprehension, interpretation, and evaluation of complex texts. It does not, however, involve the production of text (writing). Information on the skills of adults with low levels of proficiency is provided by an assessment of reading components that covers text vocabulary, sentence comprehension and passage fluency. The target population was the non institutionalized population, aged 16-24 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. Literacy-related non-respondents are not included in the calculation of the mean scores which, thus, present an upper bound of the estimated literacy proficiency of the population. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.NUM\",\"PIAAC: Mean Adult Numeracy Proficiency. Total\",\"Numeracy is defined as the ability to access, use, interpret and communicate mathematical information and ideas in order to engage in and manage the mathematical demands of a range of situations in adult life. To this end, numeracy involves managing a situation or solving a problem in a real context, by responding to mathematical content/information/ideas represented in multiple ways. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.NUM.1\",\"PIAAC: Adults by numeracy proficiency level (%). Level 1\",\"Percentage of adults scoring 176 to less than 226 points on the 0 to 500 point scale. Tasks at this level require the respondent to carry out basic mathematical processes in common, concrete contexts where the mathematical content is explicit with little text and minimal distractors. Tasks usually require one-step or simple processes involving counting, sorting, performing basic arithmetic operations, understanding simple percents such as 50%, and locating and identifying elements of simple or common graphical or spatial representations. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The proportion of adults scoring at different levels of proficiency adds up to 100% when the percentage of numeracy-related non-respondents are taken into account. Adults in the missing category were not able to provide enough background information to impute proficiency scores because of language difficulties, or learning or mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.NUM.2\",\"PIAAC: Adults by numeracy proficiency level (%). Level 2\",\"Percentage of adults scoring 226 to less than 276 points on the 0 to 500 point scale. Tasks at this level require the respondent to identify and act on mathematical information and ideas embedded in a range of common contexts where the mathematical content is fairly explicit or visual with relatively few distractors. Tasks tend to require the application of two or more steps or processes involving calculation with whole numbers and common decimals, percents and fractions; simple measurement and spatial representation; estimation; and interpretation of relatively simple data and statistics in texts, tables and graphs. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The proportion of adults scoring at different levels of proficiency adds up to 100% when the percentage of numeracy-related non-respondents are taken into account. Adults in the missing category were not able to provide enough background information to impute proficiency scores because of language difficulties, or learning or mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.NUM.3\",\"PIAAC: Adults by numeracy proficiency level (%). Level 3\",\"Percentage of adults scoring 276 to less than 326 points on the 0 to 500 point scale. Tasks at this level require the respondent to understand mathematical information that may be less explicit, embedded in contexts that are not always familiar and represented in more complex ways. Tasks require several steps and may involve the choice of problem-solving strategies and relevant processes. Tasks tend to require the application of number sense and spatial sense; recognizing and working with mathematical relationships, patterns, and proportions expressed in verbal or numerical form; and interpretation and basic analysis of data and statistics in texts, tables and graphs. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The proportion of adults scoring at different levels of proficiency adds up to 100% when the percentage of numeracy-related non-respondents are taken into account. Adults in the missing category were not able to provide enough background information to impute proficiency scores because of language difficulties, or learning or mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.NUM.4\",\"PIAAC: Adults by numeracy proficiency level (%). Level 4\",\"Percentage of adults scoring 326 to less than 376 points on the 0 to 500 point scale. Tasks at this level require the respondent to understand a broad range of mathematical information that may be complex, abstract or embedded in unfamiliar contexts. These tasks involve undertaking multiple steps and choosing relevant problem-solving strategies and processes. Tasks tend to require analysis and more complex reasoning about quantities and data; statistics and chance; spatial relationships; and change, proportions and formulas. Tasks at this level may also require understanding arguments or communicating well-reasoned explanations for answers or choices. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The proportion of adults scoring at different levels of proficiency adds up to 100% when the percentage of numeracy-related non-respondents are taken into account. Adults in the missing category were not able to provide enough background information to impute proficiency scores because of language difficulties, or learning or mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.NUM.5\",\"PIAAC: Adults by numeracy proficiency level (%). Level 5\",\"Percentage of adults scoring equal to or higher than 376 points on the 0 to 500 point scale. Tasks at this level require the respondent to understand complex representations and abstract and formal mathematical and statistical ideas, possibly embedded in complex texts. Respondents may have to integrate multiple types of mathematical information where considerable translation or interpretation is required; draw inferences; develop or work with mathematical arguments or models; and justify, evaluate and critically reflect upon solutions or choices. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The proportion of adults scoring at different levels of proficiency adds up to 100% when the percentage of numeracy-related non-respondents are taken into account. Adults in the missing category were not able to provide enough background information to impute proficiency scores because of language difficulties, or learning or mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.NUM.BE\",\"PIAAC: Adults by numeracy proficiency level (%). Below Level 1\",\"Percentage of adults scoring below 176 points on the 0 to 500 point scale on the 0 to 500 point scale. Tasks at this level require the respondents to carry out simple processes such as counting, sorting, performing basic arithmetic operations with whole numbers or money, or recognizing common spatial representations in concrete, familiar contexts where the mathematical content is explicit with little or no text or distractors. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The proportion of adults scoring at different levels of proficiency adds up to 100% when the percentage of numeracy-related non-respondents are taken into account. Adults in the missing category were not able to provide enough background information to impute proficiency scores because of language difficulties, or learning or mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.NUM.FE\",\"PIAAC: Mean Adult Numeracy Proficiency. Female\",\"Numeracy is defined as the ability to access, use, interpret and communicate mathematical information and ideas in order to engage in and manage the mathematical demands of a range of situations in adult life. To this end, numeracy involves managing a situation or solving a problem in a real context, by responding to mathematical content/information/ideas represented in multiple ways. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.NUM.FE.1\",\"PIAAC: Female adults by numeracy proficiency level (%). Level 1\",\"Percentage of female adults scoring 176 to less than 226 points on the 0 to 500 point scale. Tasks at this level require the respondent to carry out basic mathematical processes in common, concrete contexts where the mathematical content is explicit with little text and minimal distractors. Tasks usually require one-step or simple processes involving counting, sorting, performing basic arithmetic operations, understanding simple percents such as 50%, and locating and identifying elements of simple or common graphical or spatial representations. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The proportion of adults scoring at different levels of proficiency adds up to 100% when the percentage of numeracy-related non-respondents are taken into account. Adults in the missing category were not able to provide enough background information to impute proficiency scores because of language difficulties, or learning or mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.NUM.FE.2\",\"PIAAC: Female adults by numeracy proficiency level (%). Level 2\",\"Percentage of female adults scoring 226 to less than 276 points on the 0 to 500 point scale. Tasks at this level require the respondent to identify and act on mathematical information and ideas embedded in a range of common contexts where the mathematical content is fairly explicit or visual with relatively few distractors. Tasks tend to require the application of two or more steps or processes involving calculation with whole numbers and common decimals, percents and fractions; simple measurement and spatial representation; estimation; and interpretation of relatively simple data and statistics in texts, tables and graphs. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The proportion of adults scoring at different levels of proficiency adds up to 100% when the percentage of numeracy-related non-respondents are taken into account. Adults in the missing category were not able to provide enough background information to impute proficiency scores because of language difficulties, or learning or mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.NUM.FE.3\",\"PIAAC: Female adults by numeracy proficiency level (%). Level 3\",\"Percentage of female adults scoring 276 to less than 326 points on the 0 to 500 point scale. Tasks at this level require the respondent to understand mathematical information that may be less explicit, embedded in contexts that are not always familiar and represented in more complex ways. Tasks require several steps and may involve the choice of problem-solving strategies and relevant processes. Tasks tend to require the application of number sense and spatial sense; recognizing and working with mathematical relationships, patterns, and proportions expressed in verbal or numerical form; and interpretation and basic analysis of data and statistics in texts, tables and graphs. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The proportion of adults scoring at different levels of proficiency adds up to 100% when the percentage of numeracy-related non-respondents are taken into account. Adults in the missing category were not able to provide enough background information to impute proficiency scores because of language difficulties, or learning or mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.NUM.FE.4\",\"PIAAC: Female adults by numeracy proficiency level (%). Level 4\",\"Percentage of female adults scoring 326 to less than 376 points on the 0 to 500 point scale. Tasks at this level require the respondent to understand a broad range of mathematical information that may be complex, abstract or embedded in unfamiliar contexts. These tasks involve undertaking multiple steps and choosing relevant problem-solving strategies and processes. Tasks tend to require analysis and more complex reasoning about quantities and data; statistics and chance; spatial relationships; and change, proportions and formulas. Tasks at this level may also require understanding arguments or communicating well-reasoned explanations for answers or choices. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The proportion of adults scoring at different levels of proficiency adds up to 100% when the percentage of numeracy-related non-respondents are taken into account. Adults in the missing category were not able to provide enough background information to impute proficiency scores because of language difficulties, or learning or mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.NUM.FE.5\",\"PIAAC: Female adults by numeracy proficiency level (%). Level 5\",\"Percentage of female adults scoring equal to or higher than 376 points on the 0 to 500 point scale. Tasks at this level require the respondent to understand complex representations and abstract and formal mathematical and statistical ideas, possibly embedded in complex texts. Respondents may have to integrate multiple types of mathematical information where considerable translation or interpretation is required; draw inferences; develop or work with mathematical arguments or models; and justify, evaluate and critically reflect upon solutions or choices. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The proportion of adults scoring at different levels of proficiency adds up to 100% when the percentage of numeracy-related non-respondents are taken into account. Adults in the missing category were not able to provide enough background information to impute proficiency scores because of language difficulties, or learning or mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.NUM.FE.BE\",\"PIAAC: Female adults by numeracy proficiency level (%). Below Level 1\",\"Percentage of female adults scoring below 176 points on the 0 to 500 point scale on the 0 to 500 point scale. Tasks at this level require the respondents to carry out simple processes such as counting, sorting, performing basic arithmetic operations with whole numbers or money, or recognizing common spatial representations in concrete, familiar contexts where the mathematical content is explicit with little or no text or distractors. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The proportion of adults scoring at different levels of proficiency adds up to 100% when the percentage of numeracy-related non-respondents are taken into account. Adults in the missing category were not able to provide enough background information to impute proficiency scores because of language difficulties, or learning or mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.NUM.MA\",\"PIAAC: Mean Adult Numeracy Proficiency. Male\",\"Numeracy is defined as the ability to access, use, interpret and communicate mathematical information and ideas in order to engage in and manage the mathematical demands of a range of situations in adult life. To this end, numeracy involves managing a situation or solving a problem in a real context, by responding to mathematical content/information/ideas represented in multiple ways. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.NUM.MA.1\",\"PIAAC: Male adults by numeracy proficiency level (%). Level 1\",\"Percentage of male adults scoring 176 to less than 226 points on the 0 to 500 point scale. Tasks at this level require the respondent to carry out basic mathematical processes in common, concrete contexts where the mathematical content is explicit with little text and minimal distractors. Tasks usually require one-step or simple processes involving counting, sorting, performing basic arithmetic operations, understanding simple percents such as 50%, and locating and identifying elements of simple or common graphical or spatial representations. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The proportion of adults scoring at different levels of proficiency adds up to 100% when the percentage of numeracy-related non-respondents are taken into account. Adults in the missing category were not able to provide enough background information to impute proficiency scores because of language difficulties, or learning or mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.NUM.MA.2\",\"PIAAC: Male adults by numeracy proficiency level (%). Level 2\",\"Percentage of male adults scoring 226 to less than 276 points on the 0 to 500 point scale. Tasks at this level require the respondent to identify and act on mathematical information and ideas embedded in a range of common contexts where the mathematical content is fairly explicit or visual with relatively few distractors. Tasks tend to require the application of two or more steps or processes involving calculation with whole numbers and common decimals, percents and fractions; simple measurement and spatial representation; estimation; and interpretation of relatively simple data and statistics in texts, tables and graphs. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The proportion of adults scoring at different levels of proficiency adds up to 100% when the percentage of numeracy-related non-respondents are taken into account. Adults in the missing category were not able to provide enough background information to impute proficiency scores because of language difficulties, or learning or mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.NUM.MA.3\",\"PIAAC: Male adults by numeracy proficiency level (%). Level 3\",\"Percentage of male adults scoring 276 to less than 326 points on the 0 to 500 point scale. Tasks at this level require the respondent to understand mathematical information that may be less explicit, embedded in contexts that are not always familiar and represented in more complex ways. Tasks require several steps and may involve the choice of problem-solving strategies and relevant processes. Tasks tend to require the application of number sense and spatial sense; recognizing and working with mathematical relationships, patterns, and proportions expressed in verbal or numerical form; and interpretation and basic analysis of data and statistics in texts, tables and graphs. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The proportion of adults scoring at different levels of proficiency adds up to 100% when the percentage of numeracy-related non-respondents are taken into account. Adults in the missing category were not able to provide enough background information to impute proficiency scores because of language difficulties, or learning or mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.NUM.MA.4\",\"PIAAC: Male adults by numeracy proficiency level (%). Level 4\",\"Percentage of male adults scoring 326 to less than 376 points on the 0 to 500 point scale. Tasks at this level require the respondent to understand a broad range of mathematical information that may be complex, abstract or embedded in unfamiliar contexts. These tasks involve undertaking multiple steps and choosing relevant problem-solving strategies and processes. Tasks tend to require analysis and more complex reasoning about quantities and data; statistics and chance; spatial relationships; and change, proportions and formulas. Tasks at this level may also require understanding arguments or communicating well-reasoned explanations for answers or choices. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The proportion of adults scoring at different levels of proficiency adds up to 100% when the percentage of numeracy-related non-respondents are taken into account. Adults in the missing category were not able to provide enough background information to impute proficiency scores because of language difficulties, or learning or mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.NUM.MA.5\",\"PIAAC: Male adults by numeracy proficiency level (%). Level 5\",\"Percentage of male adults scoring equal to or higher than 376 points on the 0 to 500 point scale. Tasks at this level require the respondent to understand complex representations and abstract and formal mathematical and statistical ideas, possibly embedded in complex texts. Respondents may have to integrate multiple types of mathematical information where considerable translation or interpretation is required; draw inferences; develop or work with mathematical arguments or models; and justify, evaluate and critically reflect upon solutions or choices. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The proportion of adults scoring at different levels of proficiency adds up to 100% when the percentage of numeracy-related non-respondents are taken into account. Adults in the missing category were not able to provide enough background information to impute proficiency scores because of language difficulties, or learning or mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.NUM.MA.BE\",\"PIAAC: Male adults by numeracy proficiency level (%). Below Level 1\",\"Percentage of male adults scoring below 176 points on the 0 to 500 point scale on the 0 to 500 point scale. Tasks at this level require the respondents to carry out simple processes such as counting, sorting, performing basic arithmetic operations with whole numbers or money, or recognizing common spatial representations in concrete, familiar contexts where the mathematical content is explicit with little or no text or distractors. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The proportion of adults scoring at different levels of proficiency adds up to 100% when the percentage of numeracy-related non-respondents are taken into account. Adults in the missing category were not able to provide enough background information to impute proficiency scores because of language difficulties, or learning or mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.NUM.P05\",\"PIAAC: Distribution of Adult Numeracy Scores: 5th Percentile Score\",\"The 5th percentile score is the score below which 5 percent of adults (age 16 to 65) scored. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.NUM.P10\",\"PIAAC: Distribution of Adult Numeracy Scores: 10th Percentile Score\",\"The 10th percentile score is the score below which 10 percent of adults (age 16 to 65) scored. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.NUM.P25\",\"PIAAC: Distribution of Adult Numeracy Scores: 25th Percentile Score\",\"The 25th percentile score is the score below which 25 percent of adults (age 16 to 65) scored. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.NUM.P50\",\"PIAAC: Distribution of Adult Numeracy Scores: 50th Percentile Score\",\"The 50th percentile score is the score below which 50 percent of adults (age 16 to 65) scored. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.NUM.P75\",\"PIAAC: Distribution of Adult Numeracy Scores: 75th Percentile Score\",\"The 75th percentile score is the score below which 75 percent of adults (age 16 to 65) scored. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.NUM.P90\",\"PIAAC: Distribution of Adult Numeracy Scores: 90th Percentile Score\",\"The 90th percentile score is the score below which 90 percent of adults (age 16 to 65) scored. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.NUM.P95\",\"PIAAC: Distribution of Adult Numeracy Scores: 95th Percentile Score\",\"The 95th percentile score is the score below which 90 percent of adults (age 16 to 65) scored. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.NUM.YOU\",\"PIAAC: Mean Young Adult Numeracy Proficiency. Total\",\"Numeracy is defined as the ability to access, use, interpret and communicate mathematical information and ideas in order to engage in and manage the mathematical demands of a range of situations in adult life. To this end, numeracy involves managing a situation or solving a problem in a real context, by responding to mathematical content/information/ideas represented in multiple ways. The target population was the non-institutionalized population, aged 16-24 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.NUM.YOU.1\",\"PIAAC: Young adults by numeracy proficiency level (%). Level 1\",\"Percentage of young (age 16-24) adults scoring 176 to less than 226 points on the 0 to 500 point scale. Tasks at this level require the respondent to carry out basic mathematical processes in common, concrete contexts where the mathematical content is explicit with little text and minimal distractors. Tasks usually require one-step or simple processes involving counting, sorting, performing basic arithmetic operations, understanding simple percents such as 50%, and locating and identifying elements of simple or common graphical or spatial representations. The target population was the non-institutionalized population, aged 16-24 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The proportion of adults scoring at different levels of proficiency adds up to 100% when the percentage of numeracy-related non-respondents are taken into account. Adults in the missing category were not able to provide enough background information to impute proficiency scores because of language difficulties, or learning or mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.NUM.YOU.2\",\"PIAAC: Young adults by numeracy proficiency level (%). Level 2\",\"Percentage of young (age 16-24) adults scoring 226 to less than 276 points on the 0 to 500 point scale. Tasks at this level require the respondent to identify and act on mathematical information and ideas embedded in a range of common contexts where the mathematical content is fairly explicit or visual with relatively few distractors. Tasks tend to require the application of two or more steps or processes involving calculation with whole numbers and common decimals, percents and fractions; simple measurement and spatial representation; estimation; and interpretation of relatively simple data and statistics in texts, tables and graphs. The target population was the non-institutionalized population, aged 16-24 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The proportion of adults scoring at different levels of proficiency adds up to 100% when the percentage of numeracy-related non-respondents are taken into account. Adults in the missing category were not able to provide enough background information to impute proficiency scores because of language difficulties, or learning or mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.NUM.YOU.3\",\"PIAAC: Young adults by numeracy proficiency level (%). Level 3\",\"Percentage of young (age 16-24) adults scoring 276 to less than 326 points on the 0 to 500 point scale. Tasks at this level require the respondent to understand mathematical information that may be less explicit, embedded in contexts that are not always familiar and represented in more complex ways. Tasks require several steps and may involve the choice of problem-solving strategies and relevant processes. Tasks tend to require the application of number sense and spatial sense; recognizing and working with mathematical relationships, patterns, and proportions expressed in verbal or numerical form; and interpretation and basic analysis of data and statistics in texts, tables and graphs. The target population was the non-institutionalized population, aged 16-24 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The proportion of adults scoring at different levels of proficiency adds up to 100% when the percentage of numeracy-related non-respondents are taken into account. Adults in the missing category were not able to provide enough background information to impute proficiency scores because of language difficulties, or learning or mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.NUM.YOU.4\",\"PIAAC: Young adults by numeracy proficiency level (%). Level 4\",\"Percentage of young (age 16-24) adults scoring 326 to less than 376 points on the 0 to 500 point scale. Tasks at this level require the respondent to understand a broad range of mathematical information that may be complex, abstract or embedded in unfamiliar contexts. These tasks involve undertaking multiple steps and choosing relevant problem-solving strategies and processes. Tasks tend to require analysis and more complex reasoning about quantities and data; statistics and chance; spatial relationships; and change, proportions and formulas. Tasks at this level may also require understanding arguments or communicating well-reasoned explanations for answers or choices. The target population was the non-institutionalized population, aged 16-24 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The proportion of adults scoring at different levels of proficiency adds up to 100% when the percentage of numeracy-related non-respondents are taken into account. Adults in the missing category were not able to provide enough background information to impute proficiency scores because of language difficulties, or learning or mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.NUM.YOU.5\",\"PIAAC: Young adults by numeracy proficiency level (%). Level 5\",\"Percentage of young (age 16-24) adults scoring equal to or higher than 376 points on the 0 to 500 point scale. Tasks at this level require the respondent to understand complex representations and abstract and formal mathematical and statistical ideas, possibly embedded in complex texts. Respondents may have to integrate multiple types of mathematical information where considerable translation or interpretation is required; draw inferences; develop or work with mathematical arguments or models; and justify, evaluate and critically reflect upon solutions or choices. The target population was the non-institutionalized population, aged 16-24 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The proportion of adults scoring at different levels of proficiency adds up to 100% when the percentage of numeracy-related non-respondents are taken into account. Adults in the missing category were not able to provide enough background information to impute proficiency scores because of language difficulties, or learning or mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.NUM.YOU.BE\",\"PIAAC: Young adults by numeracy proficiency level (%). Below Level 1\",\"Percentage of young (age 16-24) adults scoring below 176 points on the 0 to 500 point scale on the 0 to 500 point scale. Tasks at this level require the respondents to carry out simple processes such as counting, sorting, performing basic arithmetic operations with whole numbers or money, or recognizing common spatial representations in concrete, familiar contexts where the mathematical content is explicit with little or no text or distractors. The target population was the non-institutionalized population, aged 16-24 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. The proportion of adults scoring at different levels of proficiency adds up to 100% when the percentage of numeracy-related non-respondents are taken into account. Adults in the missing category were not able to provide enough background information to impute proficiency scores because of language difficulties, or learning or mental disabilities (literacy-related non-response). For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.NUM.YOU.FE\",\"PIAAC: Mean Young Adult Numeracy Proficiency. Female\",\"Numeracy is defined as the ability to access, use, interpret and communicate mathematical information and ideas in order to engage in and manage the mathematical demands of a range of situations in adult life. To this end, numeracy involves managing a situation or solving a problem in a real context, by responding to mathematical content/information/ideas represented in multiple ways. The target population was the non-institutionalized population, aged 16-24 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.NUM.YOU.MA\",\"PIAAC: Mean Young Adult Numeracy Proficiency. Male\",\"Numeracy is defined as the ability to access, use, interpret and communicate mathematical information and ideas in order to engage in and manage the mathematical demands of a range of situations in adult life. To this end, numeracy involves managing a situation or solving a problem in a real context, by responding to mathematical content/information/ideas represented in multiple ways. The target population was the non-institutionalized population, aged 16-24 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.TEC.1\",\"PIAAC: Adults by proficiency level in problem solving in technology-rich environments (%). Level 1\",\"Percentage of adults scoring 241 to less than 291 points on the 0 to 500 point scale. At this level, tasks typically require the use of widely available and familiar technology applications, such as e-mail software or a web browser. There is little or no navigation required to access the information or commands required to solve the problem. The tasks involve few steps and a minimal number of operators. Only simple forms of reasoning, such as assigning items to categories, are required; there is no need to contrast or integrate information. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.TEC.2\",\"PIAAC: Adults by proficiency level in problem solving in technology-rich environments (%). Level 2\",\"Percentage of adults scoring 291 to less than 341 points on the 0 to 500 point scale. At this level, tasks typically require the use of both generic and more specific technology applications. For instance, the respondent may have to make use of a novel online form. Some navigation across pages and applications is required to solve the problem. The task may involve multiple steps and operators. The goal of the problem may have to be defined by the respondent, though the criteria to be met are explicit. There are higher monitoring demands. Some unexpected outcomes or impasses may appear. The task may require evaluating the relevance of a set of items to discard distractors. Some integration and inferential reasoning may be needed. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.TEC.3\",\"PIAAC: Adults by proficiency level in problem solving in technology-rich environments (%). Level 3\",\"Percentage of adults scoring equal to or higher than 341 points on the 0 to 500 point scale. At this level, tasks typically require the use of both generic and more specific technology applications. Some navigation across pages and applications is required to solve the problem. The use of tools (e.g. a sort function) is required to make progress towards the solution. The task may involve multiple steps and operators. The goal of the problem may have to be defined by the respondent, and the criteria to be met may or may not be explicit. There are typically high monitoring demands. Unexpected outcomes and impasses are likely to occur. The task may require evaluating the relevance and reliability of information in order to discard distractors. Integration and inferential reasoning may be needed to a large extent. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.TEC.BE\",\"PIAAC: Adults by proficiency level in problem solving in technology-rich environments (%). Below Level 1\",\"Percentage of adults scoring below 241 points on the 0 to 500 point scale. Tasks are based on well-defined problems involving the use of only one function within a generic interface to meet one explicit criterion without any categorical or inferential reasoning, or transforming of information. Few steps are required and no sub-goal has to be generated. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.TEC.FAIL\",\"PIAAC: Adults by proficiency level in problem solving in technology-rich environments (%). Failed the ICT Core Test\",\"Adults in this category had prior computer experience but failed the ICT core test, which assesses basic ICT skills, such as the capacity to use a mouse or scroll through a web page, needed to take the computer-based assessment. Therefore, they did not take part in the computer-based assessment, but took the paper-based version of the assessment, which does not include the problem solving in technology-rich environment domain. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.TEC.FE.1\",\"PIAAC: Female adults by proficiency level in problem solving in technology-rich environments (%). Level 1\",\"Percentage of female adults scoring 241 to less than 291 points on the 0 to 500 point scale. At this level, tasks typically require the use of widely available and familiar technology applications, such as e-mail software or a web browser. There is little or no navigation required to access the information or commands required to solve the problem. The tasks involve few steps and a minimal number of operators. Only simple forms of reasoning, such as assigning items to categories, are required; there is no need to contrast or integrate information. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.TEC.FE.2\",\"PIAAC: Female adults by proficiency level in problem solving in technology-rich environments (%). Level 2\",\"Percentage of female adults scoring 291 to less than 341 points on the 0 to 500 point scale. At this level, tasks typically require the use of both generic and more specific technology applications. For instance, the respondent may have to make use of a novel online form. Some navigation across pages and applications is required to solve the problem. The task may involve multiple steps and operators. The goal of the problem may have to be defined by the respondent, though the criteria to be met are explicit. There are higher monitoring demands. Some unexpected outcomes or impasses may appear. The task may require evaluating the relevance of a set of items to discard distractors. Some integration and inferential reasoning may be needed. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.TEC.FE.3\",\"PIAAC: Female adults by proficiency level in problem solving in technology-rich environments (%). Level 3\",\"Percentage of female adults scoring equal to or higher than 341 points on the 0 to 500 point scale. At this level, tasks typically require the use of both generic and more specific technology applications. Some navigation across pages and applications is required to solve the problem. The use of tools (e.g. a sort function) is required to make progress towards the solution. The task may involve multiple steps and operators. The goal of the problem may have to be defined by the respondent, and the criteria to be met may or may not be explicit. There are typically high monitoring demands. Unexpected outcomes and impasses are likely to occur. The task may require evaluating the relevance and reliability of information in order to discard distractors. Integration and inferential reasoning may be needed to a large extent. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.TEC.FE.BE\",\"PIAAC: Female adults by proficiency level in problem solving in technology-rich environments (%). Below Level 1\",\"Percentage of female adults scoring below 241 points on the 0 to 500 point scale. Tasks are based on well-defined problems involving the use of only one function within a generic interface to meet one explicit criterion without any categorical or inferential reasoning, or transforming of information. Few steps are required and no sub-goal has to be generated. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.TEC.FE.FAIL\",\"PIAAC: Female adults by proficiency level in problem solving in technology-rich environments (%). Failed ICT Core Test\",\"Percentage of female adults who had prior computer experience but failed the ICT core test, which assesses the basic ICT skills needed to take the computer-based assessment, such as the capacity to use a mouse or scroll through a web page. Therefore, they did not take part in the computer-based assessment, but took the paper-based version of the assessment, which does not include the problem solving in technology-rich environment domain. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.TEC.FE.NO\",\"PIAAC: Female adults by proficiency level in problem solving in technology-rich environments (%). No computer experience\",\"Percentage of female adults who reported having no prior computer experience; therefore, they did not take part in the computer-based assessment but took the paper-based version of the assessment, which does not include the problem solving in technology-rich environment domain. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.TEC.FE.OPT\",\"PIAAC: Female adults by proficiency level in problem solving in technology-rich environments (%). Opted out of computer-based assessment\",\"Percentage of female adults who opted to take the paper-based assessment without first taking the ICT core assessment, even if they reported some prior experience with computers. They also did not take part in the computer-based assessment, but took the paper-based version of the assessment, which does not include the problem solving in technology-rich environment domain. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.TEC.MA.1\",\"PIAAC: Male adults by proficiency level in problem solving in technology-rich environments (%). Level 1\",\"Percentage of male adults scoring 241 to less than 291 points on the 0 to 500 point scale. At this level, tasks typically require the use of widely available and familiar technology applications, such as e-mail software or a web browser. There is little or no navigation required to access the information or commands required to solve the problem. The tasks involve few steps and a minimal number of operators. Only simple forms of reasoning, such as assigning items to categories, are required; there is no need to contrast or integrate information. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.TEC.MA.2\",\"PIAAC: Male adults by proficiency level in problem solving in technology-rich environments (%). Level 2\",\"Percentage of male adults scoring 291 to less than 341 points on the 0 to 500 point scale. At this level, tasks typically require the use of both generic and more specific technology applications. For instance, the respondent may have to make use of a novel online form. Some navigation across pages and applications is required to solve the problem. The task may involve multiple steps and operators. The goal of the problem may have to be defined by the respondent, though the criteria to be met are explicit. There are higher monitoring demands. Some unexpected outcomes or impasses may appear. The task may require evaluating the relevance of a set of items to discard distractors. Some integration and inferential reasoning may be needed. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.TEC.MA.3\",\"PIAAC: Male adults by proficiency level in problem solving in technology-rich environments (%). Level 3\",\"Percentage of male adults scoring equal to or higher than 341 points on the 0 to 500 point scale. At this level, tasks typically require the use of both generic and more specific technology applications. Some navigation across pages and applications is required to solve the problem. The use of tools (e.g. a sort function) is required to make progress towards the solution. The task may involve multiple steps and operators. The goal of the problem may have to be defined by the respondent, and the criteria to be met may or may not be explicit. There are typically high monitoring demands. Unexpected outcomes and impasses are likely to occur. The task may require evaluating the relevance and reliability of information in order to discard distractors. Integration and inferential reasoning may be needed to a large extent. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.TEC.MA.BE\",\"PIAAC: Male adults by proficiency level in problem solving in technology-rich environments (%). Below Level 1\",\"Percentage of male adults scoring below 241 points on the 0 to 500 point scale. Tasks are based on well-defined problems involving the use of only one function within a generic interface to meet one explicit criterion without any categorical or inferential reasoning, or transforming of information. Few steps are required and no sub-goal has to be generated. The target population for the survey was the non-institutionalized population, aged 16-65 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.TEC.MA.FAIL\",\"PIAAC: Male adults by proficiency level in problem solving in technology-rich environments (%). Failed ICT Core Test\",\"Percentage of male adults who had prior computer experience but failed the ICT core test, which assesses the basic ICT skills needed to take the computer-based assessment, such as the capacity to use a mouse or scroll through a web page. Therefore, they did not take part in the computer-based assessment, but took the paper-based version of the assessment, which does not include the problem solving in technology-rich environment domain. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.TEC.MA.NO\",\"PIAAC: Male adults by proficiency level in problem solving in technology-rich environments (%). No computer experience\",\"Percentage of male adults who reported having no prior computer experience; therefore, they did not take part in the computer-based assessment but took the paper-based version of the assessment, which does not include the problem solving in technology-rich environment domain. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.TEC.MA.OPT\",\"PIAAC: Male adults by proficiency level in problem solving in technology-rich environments (%). Opted out of computer-based assessment\",\"Percentage of male adults who opted to take the paper-based assessment without first taking the ICT core assessment, even if they reported some prior experience with computers. They also did not take part in the computer-based assessment, but took the paper-based version of the assessment, which does not include the problem solving in technology-rich environment domain. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.TEC.NO\",\"PIAAC: Adults by proficiency level in problem solving in technology-rich environments (%). No computer experience\",\"Adults in this category reported having no prior computer experience; therefore, they did not take part in the computer-based assessment but took the paper-based version of the assessment, which does not include the problem solving in technology-rich environment domain. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.TEC.OPT\",\"PIAAC: Adults by proficiency level in problem solving in technology-rich environments (%). Opted out of computer-based assessment\",\"Adults in this category opted to take the paper-based assessment without first taking the ICT core assessment, even if they reported some prior experience with computers. They also did not take part in the computer-based assessment, but took the paper-based version of the assessment, which does not include the problem solving in technology-rich environment domain. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.TEC.P05\",\"PIAAC: Distribution of Adult Problem Solving in Technology-Rich Environments Scores: 5th Percentile Score\",\"The 5th percentile score is the score below which 5 percent of adults (age 16 to 65) scored. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.TEC.P10\",\"PIAAC: Distribution of Adult Problem Solving in Technology-Rich Environments Scores: 10th Percentile Score\",\"The 10th percentile score is the score below which 10 percent of adults (age 16 to 65) scored. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.TEC.P25\",\"PIAAC: Distribution of Adult Problem Solving in Technology-Rich Environments Scores: 25th Percentile Score\",\"The 25th percentile score is the score below which 25 percent of adults (age 16 to 65) scored. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.TEC.P50\",\"PIAAC: Distribution of Adult Problem Solving in Technology-Rich Environments Scores: 50th Percentile Score\",\"The 50th percentile score is the score below which 50 percent of adults (age 16 to 65) scored. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.TEC.P75\",\"PIAAC: Distribution of Adult Problem Solving in Technology-Rich Environments Scores: 75th Percentile Score\",\"The 75th percentile score is the score below which 75 percent of adults (age 16 to 65) scored. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.TEC.P90\",\"PIAAC: Distribution of Adult Problem Solving in Technology-Rich Environments Scores: 90th Percentile Score\",\"The 90th percentile score is the score below which 90 percent of adults (age 16 to 65) scored. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.TEC.P95\",\"PIAAC: Distribution of Adult Problem Solving in Technology-Rich Environments Scores: 95th Percentile Score\",\"The 95th percentile score is the score below which 90 percent of adults (age 16 to 65) scored. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.TEC.YOU.1\",\"PIAAC: Young adults by proficiency level in problem solving in technology-rich environments (%). Level 1\",\"Percentage of young (age 16-24) adults scoring 241 to less than 291 points on the 0 to 500 point scale. At this level, tasks typically require the use of widely available and familiar technology applications, such as e-mail software or a web browser. There is little or no navigation required to access the information or commands required to solve the problem. The tasks involve few steps and a minimal number of operators. Only simple forms of reasoning, such as assigning items to categories, are required; there is no need to contrast or integrate information. The target population was the non-institutionalized population, aged 16-24 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.TEC.YOU.2\",\"PIAAC: Young adults by proficiency level in problem solving in technology-rich environments (%). Level 2\",\"Percentage of young (age 16-24) adults scoring 291 to less than 341 points on the 0 to 500 point scale. At this level, tasks typically require the use of both generic and more specific technology applications. For instance, the respondent may have to make use of a novel online form. Some navigation across pages and applications is required to solve the problem. The task may involve multiple steps and operators. The goal of the problem may have to be defined by the respondent, though the criteria to be met are explicit. There are higher monitoring demands. Some unexpected outcomes or impasses may appear. The task may require evaluating the relevance of a set of items to discard distractors. Some integration and inferential reasoning may be needed. The target population was the non-institutionalized population, aged 16-24 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.TEC.YOU.3\",\"PIAAC: Young adults by proficiency level in problem solving in technology-rich environments (%). Level 3\",\"Percentage of young (age 16-24) adults scoring equal to or higher than 341 points on the 0 to 500 point scale. At this level, tasks typically require the use of both generic and more specific technology applications. Some navigation across pages and applications is required to solve the problem. The use of tools (e.g. a sort function) is required to make progress towards the solution. The task may involve multiple steps and operators. The goal of the problem may have to be defined by the respondent, and the criteria to be met may or may not be explicit. There are typically high monitoring demands. Unexpected outcomes and impasses are likely to occur. The task may require evaluating the relevance and reliability of information in order to discard distractors. Integration and inferential reasoning may be needed to a large extent. The target population was the non-institutionalized population, aged 16-24 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.TEC.YOU.BE\",\"PIAAC: Young adults by proficiency level in problem solving in technology-rich environments (%). Below Level 1\",\"Percentage of young (age 16-24) adults scoring below 241 points on the 0 to 500 point scale. Tasks are based on well-defined problems involving the use of only one function within a generic interface to meet one explicit criterion without any categorical or inferential reasoning, or transforming of information. Few steps are required and no sub-goal has to be generated. The target population was the non-institutionalized population, aged 16-24 years, residing in the country at the time of data collection, irrespective of nationality, citizenship or language status. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.TEC.YOU.FAIL\",\"PIAAC: Young adults by proficiency level in problem solving in technology-rich environments (%). Failed ICT Core Test\",\"Percentage of young (age 16-24) adults who had prior computer experience but failed the ICT core test, which assesses basic ICT skills needed to take the computer-based assessment, such as the capacity to use a mouse or scroll through a web page. Therefore, they did not take part in the computer-based assessment, but took the paper-based version of the assessment, which does not include the problem solving in technology-rich environment domain. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.TEC.YOU.NO\",\"PIAAC: Young adults by proficiency level in problem solving in technology-rich environments (%). No computer experience\",\"Percentage of young (age 16-24) adults who reported having no prior computer experience; therefore, they did not take part in the computer-based assessment but took the paper-based version of the assessment, which does not include the problem solving in technology-rich environment domain. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIAAC.TEC.YOU.OPT\",\"PIAAC: Young adults by proficiency level in problem solving in technology-rich environments (%). Opted out of computer-based assessment\",\"Percentage of young (age 16-24) adults who opted to take the paper-based assessment without first taking the ICT core assessment, even if they reported some prior experience with computers. They did not take part in the computer-based assessment, but took the paper-based version of the assessment, which does not include the problem solving in technology-rich environment domain. For more information, consult the OECD PIAAC website: http://www.oecd.org/site/piaac/\",\"Education Statistics\",\"OECD Programme for the International Assessment of Adult Competencies (PIAAC)\"\n\"LO.PIRLS.REA\",\"PIRLS: Mean performance on the reading scale, total\",\"Mean performance on the reading scale for fourth grade students. Total is the average scale score for fourth graders on the PIRLS reading assessment. The scale centerpoint is 500. Data reflects country performance in the stated year, but may not be comparable across years or countries. Consult the PIRLS website for more detailed information: http://timssandpirls.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA) Progress in International Reading Literacy Study (PIRLS)\"\n\"LO.PIRLS.REA.ADV\",\"PIRLS: Fourth grade students reaching the advanced international benchmark in reading achievement (%)\",\"Fourth grade students reaching the advanced international benchmark in reading achievement (%) is the share of fourth grade students scoring at least 625 on the reading assessment. When reading Literary Texts, students at the advanced international benchmarking level can: A) Integrate ideas and evidence across a text to appreciate overall themes, and B) Interpret story events and character actions to provide reasons, motivations, feelings, and character traits with full text-based support. When reading Informational Texts, students at the advanced international benchmark can A) Distinguish and interpret complex information from different parts of text, and provide full text-based support, B) Integrate information across a text to provide explanations, interpret significance, and sequence activities, and C) Evaluate visual and textual features to explain their function. The procedure for identifying International Benchmarks changed from the PIRLS 2001 method of using percentiles to a method based on scores that do not change from PIRLS cycle to cycle. In PIRLS 2001, the Advanced benchmark was called the \\\"Top 10% Benchmark\\\" (90th percentile score), which corresponded to a scale score of 615. The 2001 data in this database were recalculated based on a 625 Advanced Benchmark score and are different than the data found in the 2001 PIRLS report. Data reflects country performance in the stated year, but may not be comparable across years or countries. Consult the PIRLS website for more detailed information: http://timssandpirls.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA) Progress in International Reading Literacy Study (PIRLS)\"\n\"LO.PIRLS.REA.ADV.FE\",\"PIRLS: Female 4th grade students reaching the advanced international benchmark in reading achievement (%)\",\"Female 4th grade students reaching the advanced international benchmark in reading achievement (%) is the share of female 4th grade students scoring at least 625 on the reading assessment. When reading Literary Texts, students at the advanced international benchmarking level can: A) Integrate ideas and evidence across a text to appreciate overall themes, and B) Interpret story events and character actions to provide reasons, motivations, feelings, and character traits with full text-based support. When reading Informational Texts, students at the advanced international benchmark can A) Distinguish and interpret complex information from different parts of text, and provide full text-based support, B) Integrate information across a text to provide explanations, interpret significance, and sequence activities, and C) Evaluate visual and textual features to explain their function. The procedure for identifying International Benchmarks changed from the PIRLS 2001 method of using percentiles to a method based on scores that do not change from PIRLS cycle to cycle. In PIRLS 2001, the Advanced benchmark was called the \\\"Top 10% Benchmark\\\" (90th percentile score), which corresponded to a scale score of 615. The 2001 data in this database were recalculated based on a 625 Advanced Benchmark score and are different than the data found in the 2001 PIRLS report. Data reflects country performance in the stated year, but may not be comparable across years or countries. Data reflects country performance in the stated year, but may not be comparable across years or countries. Consult the PIRLS website for more detailed information: http://timssandpirls.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA) Progress in International Reading Literacy Study (PIRLS)\"\n\"LO.PIRLS.REA.ADV.MA\",\"PIRLS: Male 4th grade students reaching the advanced international benchmark in reading achievement (%)\",\"Male 4th grade students reaching the advanced international benchmark in reading achievement (%) is the share of male 4th grade students scoring at least 625 on the reading assessment. When reading Literary Texts, students at the advanced international benchmarking level can: A) Integrate ideas and evidence across a text to appreciate overall themes, and B) Interpret story events and character actions to provide reasons, motivations, feelings, and character traits with full text-based support. When reading Informational Texts, students at the advanced international benchmark can A) Distinguish and interpret complex information from different parts of text, and provide full text-based support, B) Integrate information across a text to provide explanations, interpret significance, and sequence activities, and C) Evaluate visual and textual features to explain their function. The procedure for identifying International Benchmarks changed from the PIRLS 2001 method of using percentiles to a method based on scores that do not change from PIRLS cycle to cycle. In PIRLS 2001, the Advanced benchmark was called the \\\"Top 10% Benchmark\\\" (90th percentile score), which corresponded to a scale score of 615. The 2001 data in this database were recalculated based on a 625 Advanced Benchmark score and are different than the data found in the 2001 PIRLS report. Data reflects country performance in the stated year, but may not be comparable across years or countries. Data reflects country performance in the stated year, but may not be comparable across years or countries. Consult the PIRLS website for more detailed information: http://timssandpirls.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA) Progress in International Reading Literacy Study (PIRLS)\"\n\"LO.PIRLS.REA.BL\",\"PIRLS: Fourth grade students who did not reach the low international benchmark in reading achievement (%)\",\"Fourth grade students who did not reach the low international benchmark in reading achievement (%) is the share of fourth grade students who did not score at least 400 on the reading assessment. These figures were calculated by the World Bank EdStats team by subtracting the share of students reaching the low international benchmark from 100. Data reflects country performance in the stated year, but may not be comparable across years or countries. Consult the PIRLS website for more detailed information: http://timssandpirls.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA) Progress in International Reading Literacy Study (PIRLS)\"\n\"LO.PIRLS.REA.BL.FE\",\"PIRLS: Female 4th grade students who did not reach the low international benchmark in reading achievement (%)\",\"Female 4th grade students who did not reach the low international benchmark in reading achievement (%) is the share of female 4th grade students who did not score at least 400 on the reading assessment. These figures were calculated by the World Bank EdStats team by subtracting the share of students reaching the low international benchmark from 100. Data reflects country performance in the stated year, but may not be comparable across years or countries. Consult the PIRLS website for more detailed information: http://timssandpirls.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA) Progress in International Reading Literacy Study (PIRLS)\"\n\"LO.PIRLS.REA.BL.MA\",\"PIRLS: Male 4th grade students who did not reach the low international benchmark in reading achievement (%)\",\"Male 4th grade students who did not reach the low international benchmark in reading achievement (%) is the share of male 4th grade students who did not score at least 400 on the reading assessment. These figures were calculated by the World Bank EdStats team by subtracting the share of students reaching the low international benchmark from 100. Data reflects country performance in the stated year, but may not be comparable across years or countries. Consult the PIRLS website for more detailed information: http://timssandpirls.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA) Progress in International Reading Literacy Study (PIRLS)\"\n\"LO.PIRLS.REA.FE\",\"PIRLS: Mean performance on the reading scale, female\",\"Mean performance on the reading scale for fourth grade students. Female is the average scale score for female fourth graders on the PIRLS reading assessment. The scale centerpoint is 500. Data reflects country performance in the stated year, but may not be comparable across years or countries. Consult the PIRLS website for more detailed information: http://timssandpirls.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA) Progress in International Reading Literacy Study (PIRLS)\"\n\"LO.PIRLS.REA.HI\",\"PIRLS: Fourth grade students reaching the high international benchmark in reading achievement (%)\",\"Fourth grade students reaching the high international benchmark in reading achievement (%) is the share of fourth grade students scoring at least 550 on the reading assessment. When reading Literary Texts, students at the high benchmarking level can A) Locate and distinguish significant actions and details embedded across the text, B) Make inferences to explain relationships between intentions, actions, events, and feelings, and give text-based support, C) Interpret and integrate story events and character actions and traits from different parts of the text, D) Evaluate the significance of events and actions across the entire story, and E) Recognize the use of some language features (e.g., metaphor, tone, imagery). When reading Informational Texts, students at this benchmarking level can: A) Locate and distinguish relevant information within a dense text or a complex table, B) Make inferences about logical connections to provide explanations and reasons, C) Integrate textual and visual information to interpret the relationship between ideas, and D) Evaluate content and textual elements to make a generalization. The procedure for identifying International Benchmarks changed from the PIRLS 2001 method of using percentiles to a method based on scores that do not change from PIRLS cycle to cycle. In PIRLS 2001, the High Benchmark was called the \\\"Upper Quarter Benchmark\\\" or 75th percentile score, which corresponded to a scale score of 570. The 2001 data in this database were recalculated based on a 550 High Benchmark score and are different than the data found in the 2001 PIRLS report. Data reflects country performance in the stated year, but may not be comparable across years or countries. Consult the PIRLS website for more detailed information: http://timssandpirls.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA) Progress in International Reading Literacy Study (PIRLS)\"\n\"LO.PIRLS.REA.HI.FE\",\"PIRLS: Female 4th grade students reaching the high international benchmark in reading achievement (%)\",\"Female 4th grade students reaching the high international benchmark in reading achievement (%) is the share of female 4th grade students scoring at least 550 on the reading assessment. When reading Literary Texts, students at the high benchmarking level can A) Locate and distinguish significant actions and details embedded across the text, B) Make inferences to explain relationships between intentions, actions, events, and feelings, and give text-based support, C) Interpret and integrate story events and character actions and traits from different parts of the text, D) Evaluate the significance of events and actions across the entire story, and E) Recognize the use of some language features (e.g., metaphor, tone, imagery). When reading Informational Texts, students at this benchmarking level can: A) Locate and distinguish relevant information within a dense text or a complex table, B) Make inferences about logical connections to provide explanations and reasons, C) Integrate textual and visual information to interpret the relationship between ideas, and D) Evaluate content and textual elements to make a generalization. The procedure for identifying International Benchmarks changed from the PIRLS 2001 method of using percentiles to a method based on scores that do not change from PIRLS cycle to cycle. In PIRLS 2001, the High Benchmark was called the \\\"Upper Quarter Benchmark\\\" or 75th percentile score, which corresponded to a scale score of 570. The 2001 data in this database were recalculated based on a 550 High Benchmark score and are different than the data found in the 2001 PIRLS report. Data reflects country performance in the stated year, but may not be comparable across years or countries. Consult the PIRLS website for more detailed information: http://timssandpirls.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA) Progress in International Reading Literacy Study (PIRLS)\"\n\"LO.PIRLS.REA.HI.MA\",\"PIRLS: Male 4th grade students reaching the high international benchmark in reading achievement (%)\",\"Male 4th grade students reaching the high international benchmark in reading achievement (%) is the share of male 4th grade students scoring at least 550 on the reading assessment. When reading Literary Texts, students at the high benchmarking level can A) Locate and distinguish significant actions and details embedded across the text, B) Make inferences to explain relationships between intentions, actions, events, and feelings, and give text-based support, C) Interpret and integrate story events and character actions and traits from different parts of the text, D) Evaluate the significance of events and actions across the entire story, and E) Recognize the use of some language features (e.g., metaphor, tone, imagery). When reading Informational Texts, students at this benchmarking level can: A) Locate and distinguish relevant information within a dense text or a complex table, B) Make inferences about logical connections to provide explanations and reasons, C) Integrate textual and visual information to interpret the relationship between ideas, and D) Evaluate content and textual elements to make a generalization. The procedure for identifying International Benchmarks changed from the PIRLS 2001 method of using percentiles to a method based on scores that do not change from PIRLS cycle to cycle. In PIRLS 2001, the High Benchmark was called the \\\"Upper Quarter Benchmark\\\" or 75th percentile score, which corresponded to a scale score of 570. The 2001 data in this database were recalculated based on a 550 High Benchmark score and are different than the data found in the 2001 PIRLS report. Data reflects country performance in the stated year, but may not be comparable across years or countries. Consult the PIRLS website for more detailed information: http://timssandpirls.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA) Progress in International Reading Literacy Study (PIRLS)\"\n\"LO.PIRLS.REA.INT\",\"PIRLS: Fourth grade students reaching the intermediate international benchmark in reading achievement (%)\",\"Fourth grade students reaching the intermediate international benchmark in reading achievement (%) is the share of fourth grade students scoring at least 475 on the reading assessment. When reading Literary Texts, students at the intermediate benchmarking level can A) Retrieve and reproduce explicitly stated actions, events, and feelings, B) Make straightforward inferences about the attributes, feelings, and motivations of main characters, C) Interpret obvious reasons and causes and give simple explanations, and D) Begin to recognize language features and style. When reading Informational Texts, students at the informational level can A) Locate and reproduce two or three pieces of information from within the text, and B) Use subheadings, text boxes, and illustrations to locate parts of the text. The procedure for identifying International Benchmarks changed from the PIRLS 2001 method of using percentiles to a method based on scores that do not change from PIRLS cycle to cycle. In PIRLS 2001, the Intermediate Benchmark was called the \\\"Median Benchmark\\\" (50th percentile score or median), which corresponded to a scale score of 510. The 2001 data in this database were recalculated based on a 475 Intermediate Benchmark score and are different than the data found in the 2001 PIRLS report. Data reflects country performance in the stated year, but may not be comparable across years or countries. Consult the PIRLS website for more detailed information: http://timssandpirls.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA) Progress in International Reading Literacy Study (PIRLS)\"\n\"LO.PIRLS.REA.INT.FE\",\"PIRLS: Female 4th grade students reaching the intermediate international benchmark in reading achievement (%)\",\"Female 4th grade students reaching the intermediate international benchmark in reading achievement (%) is the share of female 4th grade students scoring at least 475 on the reading assessment. When reading Literary Texts, students at the intermediate benchmarking level can A) Retrieve and reproduce explicitly stated actions, events, and feelings, B) Make straightforward inferences about the attributes, feelings, and motivations of main characters, C) Interpret obvious reasons and causes and give simple explanations, and D) Begin to recognize language features and style. When reading Informational Texts, students at the informational level can A) Locate and reproduce two or three pieces of information from within the text, and B) Use subheadings, text boxes, and illustrations to locate parts of the text. The procedure for identifying International Benchmarks changed from the PIRLS 2001 method of using percentiles to a method based on scores that do not change from PIRLS cycle to cycle. In PIRLS 2001, the Intermediate Benchmark was called the \\\"Median Benchmark\\\" (50th percentile score or median), which corresponded to a scale score of 510. The 2001 data in this database were recalculated based on a 475 Intermediate Benchmark score and are different than the data found in the 2001 PIRLS report. Data reflects country performance in the stated year, but may not be comparable across years or countries. Consult the PIRLS website for more detailed information: http://timssandpirls.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA) Progress in International Reading Literacy Study (PIRLS)\"\n\"LO.PIRLS.REA.INT.MA\",\"PIRLS: Male 4th grade students reaching the intermediate international benchmark in reading achievement (%)\",\"Male 4th grade students reaching the intermediate international benchmark in reading achievement (%) is the share of male 4th grade students scoring at least 475 on the reading assessment. When reading Literary Texts, students at the intermediate benchmarking level can A) Retrieve and reproduce explicitly stated actions, events, and feelings, B) Make straightforward inferences about the attributes, feelings, and motivations of main characters, C) Interpret obvious reasons and causes and give simple explanations, and D) Begin to recognize language features and style. When reading Informational Texts, students at the informational level can A) Locate and reproduce two or three pieces of information from within the text, and B) Use subheadings, text boxes, and illustrations to locate parts of the text. The procedure for identifying International Benchmarks changed from the PIRLS 2001 method of using percentiles to a method based on scores that do not change from PIRLS cycle to cycle. In PIRLS 2001, the Intermediate Benchmark was called the \\\"Median Benchmark\\\" (50th percentile score or median), which corresponded to a scale score of 510. The 2001 data in this database were recalculated based on a 475 Intermediate Benchmark score and are different than the data found in the 2001 PIRLS report. Data reflects country performance in the stated year, but may not be comparable across years or countries. Consult the PIRLS website for more detailed information: http://timssandpirls.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA) Progress in International Reading Literacy Study (PIRLS)\"\n\"LO.PIRLS.REA.LOW\",\"PIRLS: Fourth grade students reaching the low international benchmark in reading achievement (%)\",\"Fourth grade students reaching the low international benchmark in reading achievement (%) is the share of fourth grade students scoring at least 400 on the reading assessment. When reading Literary Texts, students at the low benchmarking level can locate and retrieve an explicitly stated detail. When reading Informational Texts, students at the low benchmark can locate and reproduce explicitly stated information that is at the beginning of the text. The procedure for identifying International Benchmarks changed from the PIRLS 2001 method of using percentiles to a method based on scores that do not change from PIRLS cycle to cycle. In PIRLS 2001, the Low Benchmark was called the \\\"Lower Quarter Benchmark\\\" (25th percentile score), which corresponded to a scale score of 435. The 2001 data in this database were recalculated based on a 400 Low Benchmark score and are different than the data found in the 2001 PIRLS report. Data reflects country performance in the stated year, but may not be comparable across years or countries. Consult the PIRLS website for more detailed information: http://timssandpirls.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA) Progress in International Reading Literacy Study (PIRLS)\"\n\"LO.PIRLS.REA.LOW.FE\",\"PIRLS: Female 4th grade students reaching the low international benchmark in reading achievement (%)\",\"Female 4th grade students reaching the low international benchmark in reading achievement (%) is the share of female 4th grade students scoring at least 400 on the reading assessment. When reading Literary Texts, students at the low benchmarking level can locate and retrieve an explicitly stated detail. When reading Informational Texts, students at the low benchmark can locate and reproduce explicitly stated information that is at the beginning of the text. The procedure for identifying International Benchmarks changed from the PIRLS 2001 method of using percentiles to a method based on scores that do not change from PIRLS cycle to cycle. In PIRLS 2001, the Low Benchmark was called the \\\"Lower Quarter Benchmark\\\" (25th percentile score), which corresponded to a scale score of 435. The 2001 data in this database were recalculated based on a 400 Low Benchmark score and are different than the data found in the 2001 PIRLS report. Data reflects country performance in the stated year, but may not be comparable across years or countries. Consult the PIRLS website for more detailed information: http://timssandpirls.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA) Progress in International Reading Literacy Study (PIRLS)\"\n\"LO.PIRLS.REA.LOW.MA\",\"PIRLS: Male 4th grade students reaching the low international benchmark in reading achievement (%)\",\"Male 4th grade students reaching the low international benchmark in reading achievement (%) is the share of male 4th grade students scoring at least 400 on the reading assessment. When reading Literary Texts, students at the low benchmarking level can locate and retrieve an explicitly stated detail. When reading Informational Texts, students at the low benchmark can locate and reproduce explicitly stated information that is at the beginning of the text. The procedure for identifying International Benchmarks changed from the PIRLS 2001 method of using percentiles to a method based on scores that do not change from PIRLS cycle to cycle. In PIRLS 2001, the Low Benchmark was called the \\\"Lower Quarter Benchmark\\\" (25th percentile score), which corresponded to a scale score of 435. The 2001 data in this database were recalculated based on a 400 Low Benchmark score and are different than the data found in the 2001 PIRLS report. Data reflects country performance in the stated year, but may not be comparable across years or countries. Consult the PIRLS website for more detailed information: http://timssandpirls.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA) Progress in International Reading Literacy Study (PIRLS)\"\n\"LO.PIRLS.REA.MA\",\"PIRLS: Mean performance on the reading scale, male\",\"Mean performance on the reading scale for fourth grade students. Male is the average scale score for male fourth graders on the PIRLS reading assessment. The scale centerpoint is 500. Data reflects country performance in the stated year, but may not be comparable across years or countries. Consult the PIRLS website for more detailed information: http://timssandpirls.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA) Progress in International Reading Literacy Study (PIRLS)\"\n\"LO.PIRLS.REA.P05\",\"PIRLS: Distribution of Reading Scores: 5th Percentile Score\",\"The 5th percentile score is the score below which 5 percent of students scored. Data reflects country performance in the stated year, but may not be comparable across years or countries. Consult the PIRLS website for more detailed information: http://timssandpirls.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA) Progress in International Reading Literacy Study (PIRLS)\"\n\"LO.PIRLS.REA.P10\",\"PIRLS: Distribution of Reading Scores: 10th Percentile Score\",\"The 10th percentile score is the score below which 10 percent of students scored. Data reflects country performance in the stated year, but may not be comparable across years or countries. Consult the PIRLS website for more detailed information: http://timssandpirls.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA) Progress in International Reading Literacy Study (PIRLS)\"\n\"LO.PIRLS.REA.P25\",\"PIRLS: Distribution of Reading Scores: 25th Percentile Score\",\"The 25th percentile score is the score below which 25 percent of students scored. Data reflects country performance in the stated year, but may not be comparable across years or countries. Consult the PIRLS website for more detailed information: http://timssandpirls.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA) Progress in International Reading Literacy Study (PIRLS)\"\n\"LO.PIRLS.REA.P50\",\"PIRLS: Distribution of Reading Scores: 50th Percentile Score\",\"The 50th percentile score is the score below which 50 percent of students scored. Data reflects country performance in the stated year, but may not be comparable across years or countries. Consult the PIRLS website for more detailed information: http://timssandpirls.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA) Progress in International Reading Literacy Study (PIRLS)\"\n\"LO.PIRLS.REA.P75\",\"PIRLS: Distribution of Reading Scores: 75th Percentile Score\",\"The 75th percentile score is the score below which 75 percent of students scored. Data reflects country performance in the stated year, but may not be comparable across years or countries. Consult the PIRLS website for more detailed information: http://timssandpirls.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA) Progress in International Reading Literacy Study (PIRLS)\"\n\"LO.PIRLS.REA.P90\",\"PIRLS: Distribution of Reading Scores: 90th Percentile Score\",\"The 90th percentile score is the score below which 90 percent of students scored. Data reflects country performance in the stated year, but may not be comparable across years or countries. Consult the PIRLS website for more detailed information: http://timssandpirls.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA) Progress in International Reading Literacy Study (PIRLS)\"\n\"LO.PIRLS.REA.P95\",\"PIRLS: Distribution of Reading Scores: 95th Percentile Score\",\"The 95th percentile score is the score below which 90 percent of students scored. Data reflects country performance in the stated year, but may not be comparable across years or countries. Consult the PIRLS website for more detailed information: http://timssandpirls.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA) Progress in International Reading Literacy Study (PIRLS)\"\n\"LO.PISA.MAT\",\"PISA: Mean performance on the mathematics scale\",\"Average score of 15-year-old students on the PISA mathematics scale. The metric for the overall mathematics scale is based on a mean for OECD countries of 500 points and a standard deviation of 100 points. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.MAT.0\",\"PISA: 15-year-olds by mathematics proficiency level (%). Below Level 1\",\"Percentage of 15-year-old students below the lowest proficiency level (scoring 358 or below) on the PISA mathematics scale. Students below Level 1 may be able to perform very direct and straightforward mathematical tasks, such as reading a single value from a well-labeled chart or table where the labels on the chart match the words in the stimulus and question, so that the selection criteria are clear and the relationship between the chart and the aspects of the context depicted are evident, and performing arithmetic calculations with whole numbers by following clear and well-defined instructions. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.MAT.0.FE\",\"PISA: Female 15-year-olds by mathematics proficiency level (%). Below Level 1\",\"Percentage of 15-year-old female students below the lowest proficiency level (scoring 358 or below) on the PISA mathematics scale. Students below Level 1 may be able to perform very direct and straightforward mathematical tasks, such as reading a single value from a well-labeled chart or table where the labels on the chart match the words in the stimulus and question, so that the selection criteria are clear and the relationship between the chart and the aspects of the context depicted are evident, and performing arithmetic calculations with whole numbers by following clear and well-defined instructions. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.MAT.0.MA\",\"PISA: Male 15-year-olds by mathematics proficiency level (%). Below Level 1\",\"Percentage of 15-year-old male students below the lowest proficiency level (scoring 358 or below) on the PISA mathematics scale. Students below Level 1 may be able to perform very direct and straightforward mathematical tasks, such as reading a single value from a well-labeled chart or table where the labels on the chart match the words in the stimulus and question, so that the selection criteria are clear and the relationship between the chart and the aspects of the context depicted are evident, and performing arithmetic calculations with whole numbers by following clear and well-defined instructions. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.MAT.1\",\"PISA: 15-year-olds by mathematics proficiency level (%). Level 1\",\"Percentage of 15-year-old students scoring higher than 358 but lower than or equal to 420 points on the PISA mathematics scale. . At Level 1, students can answer questions involving familiar contexts where all relevant information is present and the questions are clearly defined. They are able to identify information and to carry out routine procedures according to direct instructions in explicit situations. They can perform actions that are almost always obvious and follow immediately from the given stimuli. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.MAT.1.FE\",\"PISA: Female 15-year-olds by mathematics proficiency level (%). Level 1\",\"Percentage of 15-year-old female students scoring higher than 358 but lower than or equal to 420 points on the PISA mathematics scale. At Level 1, students can answer questions involving familiar contexts where all relevant information is present and the questions are clearly defined. They are able to identify information and to carry out routine procedures according to direct instructions in explicit situations. They can perform actions that are almost always obvious and follow immediately from the given stimuli. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.MAT.1.MA\",\"PISA: Male 15-year-olds by mathematics proficiency level (%). Level 1\",\"Percentage of 15-year-old male students scoring higher than 358 but lower than or equal to 420 points on the PISA mathematics scale. At Level 1, students can answer questions involving familiar contexts where all relevant information is present and the questions are clearly defined. They are able to identify information and to carry out routine procedures according to direct instructions in explicit situations. They can perform actions that are almost always obvious and follow immediately from the given stimuli. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.MAT.2\",\"PISA: 15-year-olds by mathematics proficiency level (%). Level 2\",\"Percentage of 15-year-old students scoring higher than 420 but lower than or equal to 482 points on the PISA mathematics scale. At Level 2, students can interpret and recognize situations in contexts that require no more than direct inference. They can extract relevant information from a single source and make use of a single representational mode. Students at this level can employ basic algorithms, formulae, procedures, or conventions to solve problems involving whole numbers. They are capable of making literal interpretations of the results. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.MAT.2.FE\",\"PISA: Female 15-year-olds by mathematics proficiency level (%). Level 2\",\"Percentage of 15-year-old female students scoring higher than 420 but lower than or equal to 482 points on the PISA mathematics scale. At Level 2, students can interpret and recognize situations in contexts that require no more than direct inference. They can extract relevant information from a single source and make use of a single representational mode. Students at this level can employ basic algorithms, formulae, procedures, or conventions to solve problems involving whole numbers. They are capable of making literal interpretations of the results. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.MAT.2.MA\",\"PISA: Male 15-year-olds by mathematics proficiency level (%). Level 2\",\"Percentage of 15-year-old male students scoring higher than 420 but lower than or equal to 482 points on the PISA mathematics scale. At Level 2, students can interpret and recognize situations in contexts that require no more than direct inference. They can extract relevant information from a single source and make use of a single representational mode. Students at this level can employ basic algorithms, formulae, procedures, or conventions to solve problems involving whole numbers. They are capable of making literal interpretations of the results. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.MAT.3\",\"PISA: 15-year-olds by mathematics proficiency level (%). Level 3\",\"Percentage of 15-year-old students scoring higher than 482 but lower than or equal to 545 points on the PISA mathematics scale. At Level 3, students can execute clearly described procedures, including those that require sequential decisions. Their interpretations are sufficiently sound to be a base for building a simple model or for selecting and applying simple problem- solving strategies. Students at this level can interpret and use representations based on different information sources and reason directly from them. They typically show some ability to handle percentages, fractions and decimal numbers, and to work with proportional relationships. Their solutions reflect that they have engaged in basic interpretation and reasoning. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.MAT.3.FE\",\"PISA: Female 15-year-olds by mathematics proficiency level (%). Level 3\",\"Percentage of 15-year-old female students scoring higher than 482 but lower than or equal to 545 points on the PISA mathematics scale. At Level 3, students can execute clearly described procedures, including those that require sequential decisions. Their interpretations are sufficiently sound to be a base for building a simple model or for selecting and applying simple problem- solving strategies. Students at this level can interpret and use representations based on different information sources and reason directly from them. They typically show some ability to handle percentages, fractions and decimal numbers, and to work with proportional relationships. Their solutions reflect that they have engaged in basic interpretation and reasoning. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.MAT.3.MA\",\"PISA: Male 15-year-olds by mathematics proficiency level (%). Level 3\",\"Percentage of 15-year-old male students scoring higher than 482 but lower than or equal to 545 points on the PISA mathematics scale. At Level 3, students can execute clearly described procedures, including those that require sequential decisions. Their interpretations are sufficiently sound to be a base for building a simple model or for selecting and applying simple problem- solving strategies. Students at this level can interpret and use representations based on different information sources and reason directly from them. They typically show some ability to handle percentages, fractions and decimal numbers, and to work with proportional relationships. Their solutions reflect that they have engaged in basic interpretation and reasoning. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.MAT.4\",\"PISA: 15-year-olds by mathematics proficiency level (%). Level 4\",\"Percentage of 15-year-old students scoring higher than 545 but lower than or equal to 607 on the PISA mathematics scale. At Level 4, students can work effectively with explicit models for complex concrete situations that may involve constraints or call for making assumptions. They can select and integrate different representations, including symbolic, linking them directly to aspects of real-world situations. Students at this level can utilize their limited range of skills and can reason with some insight, in straightforward contexts. They can construct and communicate explanations and arguments based on their interpretations, arguments, and actions. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.MAT.4.FE\",\"PISA: Female 15-year-olds by mathematics proficiency level (%). Level 4\",\"Percentage of 15-year-old female students scoring higher than 545 but lower than or equal to 607 on the PISA mathematics scale. At Level 4, students can work effectively with explicit models for complex concrete situations that may involve constraints or call for making assumptions. They can select and integrate different representations, including symbolic, linking them directly to aspects of real-world situations. Students at this level can utilize their limited range of skills and can reason with some insight, in straightforward contexts. They can construct and communicate explanations and arguments based on their interpretations, arguments, and actions. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.MAT.4.MA\",\"PISA: Male 15-year-olds by mathematics proficiency level (%). Level 4\",\"Percentage of 15-year-old male students scoring higher than 545 but lower than or equal to 607 on the PISA mathematics scale. At Level 4, students can work effectively with explicit models for complex concrete situations that may involve constraints or call for making assumptions. They can select and integrate different representations, including symbolic, linking them directly to aspects of real-world situations. Students at this level can utilize their limited range of skills and can reason with some insight, in straightforward contexts. They can construct and communicate explanations and arguments based on their interpretations, arguments, and actions. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.MAT.5\",\"PISA: 15-year-olds by mathematics proficiency level (%). Level 5\",\"Percentage of 15-year-old students scoring higher than 607 but lower than or equal to 669 on the PISA mathematics scale. At Level 5, students can develop and work with models for complex situations, identifying constraints and specifying assumptions. They can select, compare, and evaluate appropriate problem-solving strategies for dealing with complex problems related to these models. Students at this level can work strategically using broad, well-developed thinking and reasoning skills, appropriate linked representations, symbolic and formal characterizations, and insight pertaining to these situations. They begin to reflect on their work and can formulate and communicate their interpretations and reasoning. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.MAT.5.FE\",\"PISA: Female 15-year-olds by mathematics proficiency level (%). Level 5\",\"Percentage of 15-year-old female students scoring higher than 607 but lower than or equal to 669 on the PISA mathematics scale. At Level 5, students can develop and work with models for complex situations, identifying constraints and specifying assumptions. They can select, compare, and evaluate appropriate problem-solving strategies for dealing with complex problems related to these models. Students at this level can work strategically using broad, well-developed thinking and reasoning skills, appropriate linked representations, symbolic and formal characterizations, and insight pertaining to these situations. They begin to reflect on their work and can formulate and communicate their interpretations and reasoning. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.MAT.5.MA\",\"PISA: Male 15-year-olds by mathematics proficiency level (%). Level 5\",\"Percentage of 15-year-old male students scoring higher than 607 but lower than or equal to 669 on the PISA mathematics scale. At Level 5, students can develop and work with models for complex situations, identifying constraints and specifying assumptions. They can select, compare, and evaluate appropriate problem-solving strategies for dealing with complex problems related to these models. Students at this level can work strategically using broad, well-developed thinking and reasoning skills, appropriate linked representations, symbolic and formal characterizations, and insight pertaining to these situations. They begin to reflect on their work and can formulate and communicate their interpretations and reasoning. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.MAT.6\",\"PISA: 15-year-olds by mathematics proficiency level (%). Level 6\",\"Percentage of 15-year-old students scoring higher than 669 on the PISA mathematics scale. At Level 6, students can conceptualize, generalize and utilize information based on their investigations and modeling of complex problem situations, and can use their knowledge in relatively non-standard contexts. They can link different information sources and representations and flexibly translate among them. Students at this level are capable of advanced mathematical thinking and reasoning. These students can apply this insight and understanding, along with a mastery of symbolic and formal mathematical operations and relationships, to develop new approaches and strategies for attacking novel situations. Students at this level can reflect on their actions, and can formulate and precisely communicate their actions and reflections regarding their findings, interpretations, arguments, and the appropriateness of these to the original situation. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.MAT.6.FE\",\"PISA: Female 15-year-olds by mathematics proficiency level (%). Level 6\",\"Percentage of 15-year-old female students scoring higher than 669 on the PISA mathematics scale. At Level 6, students can conceptualize, generalize and utilize information based on their investigations and modeling of complex problem situations, and can use their knowledge in relatively non-standard contexts. They can link different information sources and representations and flexibly translate among them. Students at this level are capable of advanced mathematical thinking and reasoning. These students can apply this insight and understanding, along with a mastery of symbolic and formal mathematical operations and relationships, to develop new approaches and strategies for attacking novel situations. Students at this level can reflect on their actions, and can formulate and precisely communicate their actions and reflections regarding their findings, interpretations, arguments, and the appropriateness of these to the original situation. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.MAT.6.MA\",\"PISA: Male 15-year-olds by mathematics proficiency level (%). Level 6\",\"Percentage of 15-year-old male students scoring higher than 669 on the PISA mathematics scale. At Level 6, students can conceptualize, generalize and utilize information based on their investigations and modeling of complex problem situations, and can use their knowledge in relatively non-standard contexts. They can link different information sources and representations and flexibly translate among them. Students at this level are capable of advanced mathematical thinking and reasoning. These students can apply this insight and understanding, along with a mastery of symbolic and formal mathematical operations and relationships, to develop new approaches and strategies for attacking novel situations. Students at this level can reflect on their actions, and can formulate and precisely communicate their actions and reflections regarding their findings, interpretations, arguments, and the appropriateness of these to the original situation. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.MAT.FE\",\"PISA: Mean performance on the mathematics scale. Female\",\"Average score of 15-year-old female students on the PISA mathematics scale. The metric for the overall mathematics scale is based on a mean for OECD countries of 500 points and a standard deviation of 100 points. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.MAT.MA\",\"PISA: Mean performance on the mathematics scale. Male\",\"Average score of 15-year-old male students on the PISA mathematics scale. The metric for the overall mathematics scale is based on a mean for OECD countries of 500 points and a standard deviation of 100 points. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.MAT.P05\",\"The 5th percentile score is the score below which 5 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed\",\"The 5th percentile score is the score below which 5 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.MAT.P10\",\"The 10th percentile score is the score below which 10 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detail\",\"The 10th percentile score is the score below which 10 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.MAT.P25\",\"The 25th percentile score is the score below which 25 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detail\",\"The 25th percentile score is the score below which 25 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.MAT.P50\",\"PISA: Distribution of Mathematics Scores: 50th Percentile Score\",\"The 50th percentile score is the score below which 50 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.MAT.P75\",\"The 75th percentile score is the score below which 75 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detail\",\"The 75th percentile score is the score below which 75 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.MAT.P90\",\"The 90th percentile score is the score below which 90 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detail\",\"The 90th percentile score is the score below which 90 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.MAT.P95\",\"The 95th percentile score is the score below which 90 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detail\",\"The 95th percentile score is the score below which 90 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.REA\",\"PISA: Mean performance on the reading scale\",\"Average score of 15-year-old students on the PISA reading scale. The metric for the overall reading scale is based on a mean for participating OECD countries set at 500, with a standard deviation of 100. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.REA.0\",\"PISA: 15-year-olds by reading proficiency level (%). Below Level 1B\",\"Percentage of 15-year-old students scoring students below the lowest proficiency level (1B) on the PISA reading scale. Students with scores below Level 1b (less or equal to 262 points) usually do not succeed at the most basic reading tasks that PISA measures. This does not necessarily mean that they are illiterate, but that there is insufficient information on which to base a description of their reading proficiency. 2000, 2003, and 2006 PISA assessments used a different reading proficiency scale (Below Level 1 to Level 5) than later assessments, which use a reading scale from Below Level 1B to Level 6. Because an equivalent proficiency level to \\\"Below Level 1B\\\" and Level 1B were not calculated for the 2000, 2003, and 2006 PISA Reports, the data are not currently available for those years. Use caution in comparing proficiency scores across years. For more information on comparability of results, consult the PISA website: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.REA.0.FE\",\"PISA: Female 15-year-olds by reading proficiency level (%). Below Level 1B\",\"Percentage of 15-year-old female students scoring students below the lowest proficiency level (1B) on the PISA reading scale. Students with scores below Level 1b (less or equal to 262 points) usually do not succeed at the most basic reading tasks that PISA measures. This does not necessarily mean that they are illiterate, but that there is insufficient information on which to base a description of their reading proficiency.  2000, 2003, and 2006 PISA assessments used a different reading proficiency scale (Below Level 1 to Level 5) than later assessments, which use a reading scale from Below Level 1B to Level 6. 2000, 2003, and 2006 PISA assessments used a different reading proficiency scale (Below Level 1 to Level 5) than later assessments, which use a reading scale from Below Level 1B to Level 6. Because an equivalent proficiency level to \\\"Below Level 1B\\\" and Level 1B were not calculated for the 2000, 2003, and 2006 PISA Reports, the data are not currently available for those years. Use caution in comparing proficiency scores across years. For more information on comparability of results, consult the PISA website: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.REA.0.MA\",\"PISA: Male 15-year-olds by reading proficiency level (%). Below Level 1B\",\"Percentage of 15-year-old male students scoring students below the lowest proficiency level (1B) on the PISA reading scale. Students with scores below Level 1b (less or equal to 262 points) usually do not succeed at the most basic reading tasks that PISA measures. This does not necessarily mean that they are illiterate, but that there is insufficient information on which to base a description of their reading proficiency. 2000, 2003, and 2006 PISA assessments used a different reading proficiency scale (Below Level 1 to Level 5) than later assessments, which use a reading scale from Below Level 1B to Level 6. Because an equivalent proficiency level to \\\"Below Level 1B\\\" and Level 1B were not calculated for the 2000, 2003, and 2006 PISA Reports, the data are not currently available for those years. Use caution in comparing proficiency scores across years. For more information on comparability of results, consult the PISA website: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.REA.1A\",\"PISA: 15-year-olds by reading proficiency level (%). Level 1A\",\"Percentage of 15-year-old students scoring higher than 335 but lower than or equal to 407 on the PISA reading scale. Tasks at Level 1A require the reader to locate one or more independent pieces of explicitly stated information; to recognize the main theme or author’s purpose in a text about a familiar topic, or to make a simple connection between information in the text and common, everyday knowledge. Typically the required information in the text is prominent and there is little, if any, competing information. The reader is explicitly directed to consider relevant factors in the task and in the text. 2000, 2003, and 2006 PISA assessments used a different reading proficiency scale (Levels 1 to 5) than later assessments, which use a scale from Level 1B to Level 6. PISA 2000/2003/2006 Level 1 data have been included in this database as Level 1A because they are based on an identical score range.  Use caution in comparing proficiency scores across years. For more information on comparability of results, consult the PISA website: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.REA.1A.FE\",\"PISA: Female 15-year-olds by reading proficiency level (%). Level 1A\",\"Percentage of 15-year-old female students scoring higher than 335 but lower than or equal to 407 on the PISA reading scale. Tasks at Level 1A require the reader to locate one or more independent pieces of explicitly stated information; to recognize the main theme or author’s purpose in a text about a familiar topic, or to make a simple connection between information in the text and common, everyday knowledge. Typically the required information in the text is prominent and there is little, if any, competing information. The reader is explicitly directed to consider relevant factors in the task and in the text. 2000, 2003, and 2006 PISA assessments used a different reading proficiency scale (Levels 1 to 5) than later assessments, which use a scale from Level 1B to Level 6. PISA 2000/2003/2006 Level 1 data have been included in this database as Level 1A because they are based on an identical score range.  Use caution in comparing proficiency scores across years. For more information on comparability of results, consult the PISA website: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.REA.1A.MA\",\"PISA: Male 15-year-olds by reading proficiency level (%). Level 1A\",\"Percentage of 15-year-old male students scoring higher than 335 but lower than or equal to 407 on the PISA reading scale. Tasks at Level 1A require the reader to locate one or more independent pieces of explicitly stated information; to recognize the main theme or author’s purpose in a text about a familiar topic, or to make a simple connection between information in the text and common, everyday knowledge. Typically the required information in the text is prominent and there is little, if any, competing information. The reader is explicitly directed to consider relevant factors in the task and in the text. 2000, 2003, and 2006 PISA assessments used a different reading proficiency scale (Levels 1 to 5) than later assessments, which use a scale from Level 1B to Level 6. PISA 2000/2003/2006 Level 1 data have been included in this database as Level 1A because they are based on an identical score range.  Use caution in comparing proficiency scores across years. For more information on comparability of results, consult the PISA website: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.REA.1B\",\"PISA: 15-year-olds by reading proficiency level (%). Level 1B\",\"Percentage of 15-year-old students scoring higher than 262 but lower than or equal to 335 on the PISA reading scale. Tasks at level 1B require the reader to locate a single piece of explicitly stated information in a prominent position in a short, syntactically simple text with a familiar context and text type, such as a narrative or a simple list. The text typically provides support to the reader, such as repetition of information, pictures or familiar symbols. There is minimal competing information. In tasks requiring interpretation the reader may need to make simple connections between adjacent pieces of information. 2000, 2003, and 2006 PISA assessments used a different reading proficiency scale (Below Level 1 to Level 5) than later assessments, which use a reading scale from Below Level 1B to Level 6. Because an equivalent proficiency level to \\\"Below Level 1B\\\" and Level 1B were not calculated for the 2000, 2003, and 2006 PISA Reports, the data are not currently available for those years. Use caution in comparing proficiency scores across years. For more information on comparability of results, consult the PISA website: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.REA.1B.FE\",\"PISA: Female 15-year-olds by reading proficiency level (%). Level 1B\",\"Percentage of 15-year-old female students scoring higher than 262 but lower than or equal to 335 on the PISA reading scale. Tasks at level 1B require the reader to locate a single piece of explicitly stated information in a prominent position in a short, syntactically simple text with a familiar context and text type, such as a narrative or a simple list. The text typically provides support to the reader, such as repetition of information, pictures or familiar symbols. There is minimal competing information. In tasks requiring interpretation the reader may need to make simple connections between adjacent pieces of information. 2000, 2003, and 2006 PISA assessments used a different reading proficiency scale (Below Level 1 to Level 5) than later assessments, which use a reading scale from Below Level 1B to Level 6. Because an equivalent proficiency level to \\\"Below Level 1B\\\" and Level 1B were not calculated for the 2000, 2003, and 2006 PISA Reports, the data are not currently available for those years. Use caution in comparing proficiency scores across years. For more information on comparability of results, consult the PISA website: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.REA.1B.MA\",\"PISA: Male 15-year-olds by reading proficiency level (%). Level 1B\",\"Percentage of 15-year-old male students scoring higher than 262 but lower than or equal to 335 on the PISA reading scale. Tasks at level 1B require the reader to locate a single piece of explicitly stated information in a prominent position in a short, syntactically simple text with a familiar context and text type, such as a narrative or a simple list. The text typically provides support to the reader, such as repetition of information, pictures or familiar symbols. There is minimal competing information. In tasks requiring interpretation the reader may need to make simple connections between adjacent pieces of information. 2000, 2003, and 2006 PISA assessments used a different reading proficiency scale (Below Level 1 to Level 5) than later assessments, which use a reading scale from Below Level 1B to Level 6. Because an equivalent proficiency level to \\\"Below Level 1B\\\" and Level 1B were not calculated for the 2000, 2003, and 2006 PISA Reports, the data are not currently available for those years. Use caution in comparing proficiency scores across years. For more information on comparability of results, consult the PISA website: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.REA.2\",\"PISA: 15-year-olds by reading proficiency level (%). Level 2\",\"Percentage of 15-year-old students scoring higher than 407 but lower than or equal to 480 on the PISA reading scale. Some tasks at level 2 require the reader to locate one or more pieces of information, which may need to be inferred and may need to meet several conditions. Others require recognizing the main idea in a text, understanding relationships, or construing meaning within a limited part of the text when the information is not prominent and the reader must make low level inferences. Tasks at this level may involve comparisons or contrasts based on a single feature in the text. Typical reflective tasks at this level require readers to make a comparison or several connections between the text and outside knowledge, by drawing on personal experience and attitudes. 2000, 2003, and 2006 PISA assessments used a different reading proficiency scale (Levels 1 to 5) than later assessments, which use a scale from Level 1B to Level 6. PISA 2000/2003/2006 Level 2 data have been included in this database as Level 2 because they are based on an identical score range. Use caution in comparing proficiency scores across years. For more information on comparability of results, consult the PISA website: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.REA.2.FE\",\"PISA: Female 15-year-olds by reading proficiency level (%). Level 2\",\"Percentage of 15-year-old female students scoring higher than 407 but lower than or equal to 480 on the PISA reading scale. Some tasks at level 2 require the reader to locate one or more pieces of information, which may need to be inferred and may need to meet several conditions. Others require recognizing the main idea in a text, understanding relationships, or construing meaning within a limited part of the text when the information is not prominent and the reader must make low level inferences. Tasks at this level may involve comparisons or contrasts based on a single feature in the text. Typical reflective tasks at this level require readers to make a comparison or several connections between the text and outside knowledge, by drawing on personal experience and attitudes. 2000, 2003, and 2006 PISA assessments used a different reading proficiency scale (Levels 1 to 5) than later assessments, which use a scale from Level 1B to Level 6. PISA 2000/2003/2006 Level 2 data have been included in this database as Level 2 because they are based on an identical score range. Use caution in comparing proficiency scores across years. For more information on comparability of results, consult the PISA website: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.REA.2.MA\",\"PISA: Male 15-year-olds by reading proficiency level (%). Level 2\",\"Percentage of 15-year-old male students scoring higher than 407 but lower than or equal to 480 on the PISA reading scale. Some tasks at level 2 require the reader to locate one or more pieces of information, which may need to be inferred and may need to meet several conditions. Others require recognizing the main idea in a text, understanding relationships, or construing meaning within a limited part of the text when the information is not prominent and the reader must make low level inferences. Tasks at this level may involve comparisons or contrasts based on a single feature in the text. Typical reflective tasks at this level require readers to make a comparison or several connections between the text and outside knowledge, by drawing on personal experience and attitudes. 2000, 2003, and 2006 PISA assessments used a different reading proficiency scale (Levels 1 to 5) than later assessments, which use a scale from Level 1B to Level 6. PISA 2000/2003/2006 Level 2 data have been included in this database as Level 2 because they are based on an identical score range. Use caution in comparing proficiency scores across years. For more information on comparability of results, consult the PISA website: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.REA.3\",\"PISA: 15-year-olds by reading proficiency level (%). Level 3\",\"Percentage of 15-year-old students scoring higher than 480 but lower than or equal to 553 on the PISA reading scale. Tasks at level 3 require the reader to locate, and in some cases recognize the relationship between, several pieces of information that must meet multiple conditions. Interpretative tasks at this level require the reader to integrate several parts of a text in order to identify a main idea, understand a relationship or construe the meaning of a word or phrase. They need to take into account many features in comparing, contrasting or categorizing. Often the required information is not prominent or there is much competing information; or there are other text obstacles, such as ideas that are contrary to expectation or negatively worded. Reflective tasks at this level may require connections, comparisons, and explanations, or they may require the reader to evaluate a feature of the text. Some reflective tasks require readers to demonstrate a fine understanding of the text in relation to familiar, everyday knowledge. Other tasks do not require detailed text comprehension but require the reader to draw on less common knowledge. 2000, 2003, and 2006 PISA assessments used a different reading proficiency scale (Levels 1 to 5) than later assessments, which use a scale from Level 1B to Level 6. PISA 2000/2003/2006 Level 3 data have been included in this database as Level 3 because they are based on an identical score range. Use caution in comparing proficiency scores across years. For more information on comparability of results, consult the PISA website: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.REA.3.FE\",\"PISA: Female 15-year-olds by reading proficiency level (%). Level 3\",\"Percentage of 15-year-old female students scoring higher than 480 but lower than or equal to 553 on the PISA reading scale. Tasks at level 3 require the reader to locate, and in some cases recognize the relationship between, several pieces of information that must meet multiple conditions. Interpretative tasks at this level require the reader to integrate several parts of a text in order to identify a main idea, understand a relationship or construe the meaning of a word or phrase. They need to take into account many features in comparing, contrasting or categorizing. Often the required information is not prominent or there is much competing information; or there are other text obstacles, such as ideas that are contrary to expectation or negatively worded. Reflective tasks at this level may require connections, comparisons, and explanations, or they may require the reader to evaluate a feature of the text. Some reflective tasks require readers to demonstrate a fine understanding of the text in relation to familiar, everyday knowledge. Other tasks do not require detailed text comprehension but require the reader to draw on less common knowledge. 2000, 2003, and 2006 PISA assessments used a different reading proficiency scale (Levels 1 to 5) than later assessments, which use a scale from Level 1B to Level 6. PISA 2000/2003/2006 Level 3 data have been included in this database as Level 3 because they are based on an identical score range. Use caution in comparing proficiency scores across years. For more information on comparability of results, consult the PISA website: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.REA.3.MA\",\"PISA: Male 15-year-olds by reading proficiency level (%). Level 3\",\"Percentage of 15-year-old male students scoring higher than 480 but lower than or equal to 553 on the PISA reading scale. Tasks at level 3 require the reader to locate, and in some cases recognize the relationship between, several pieces of information that must meet multiple conditions. Interpretative tasks at this level require the reader to integrate several parts of a text in order to identify a main idea, understand a relationship or construe the meaning of a word or phrase. They need to take into account many features in comparing, contrasting or categorizing. Often the required information is not prominent or there is much competing information; or there are other text obstacles, such as ideas that are contrary to expectation or negatively worded. Reflective tasks at this level may require connections, comparisons, and explanations, or they may require the reader to evaluate a feature of the text. Some reflective tasks require readers to demonstrate a fine understanding of the text in relation to familiar, everyday knowledge. Other tasks do not require detailed text comprehension but require the reader to draw on less common knowledge. 2000, 2003, and 2006 PISA assessments used a different reading proficiency scale (Levels 1 to 5) than later assessments, which use a scale from Level 1B to Level 6. PISA 2000/2003/2006 Level 3 data have been included in this database as Level 3 because they are based on an identical score range. Use caution in comparing proficiency scores across years. For more information on comparability of results, consult the PISA website: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.REA.4\",\"PISA: 15-year-olds by reading proficiency level (%). Level 4\",\"Percentage of 15-year-old students scoring higher than 553 but lower than or equal to 626 on the PISA reading scale. Tasks at Level 4 involve retrieving information require the reader to locate and organize several pieces of embedded information. Some tasks at this level require interpreting the meaning of nuances of language in a section of text by taking into account the text as a whole. Other interpretative tasks require understanding and applying categories in an unfamiliar context. Reflective tasks at this level require readers to use formal or public knowledge to hypothesize about or critically evaluate a text. Readers must demonstrate an accurate understanding of long or complex texts whose content or form may be unfamiliar. 2000, 2003, and 2006 PISA assessments used a different reading proficiency scale (Levels 1 to 5) than later assessments, which use a scale from Level 1B to Level 6. PISA 2000/2003/2006 Level 4 data have been included in this database as Level 4 because they are based on an identical score range. Use caution in comparing proficiency scores across years. For more information on comparability of results, consult the PISA website: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.REA.4.FE\",\"PISA: Female 15-year-olds by reading proficiency level (%). Level 4\",\"Percentage of 15-year-old female students scoring higher than 553 but lower than or equal to 626 on the PISA reading scale. Tasks at Level 4 involve retrieving information require the reader to locate and organize several pieces of embedded information. Some tasks at this level require interpreting the meaning of nuances of language in a section of text by taking into account the text as a whole. Other interpretative tasks require understanding and applying categories in an unfamiliar context. Reflective tasks at this level require readers to use formal or public knowledge to hypothesize about or critically evaluate a text. Readers must demonstrate an accurate understanding of long or complex texts whose content or form may be unfamiliar. 2000, 2003, and 2006 PISA assessments used a different reading proficiency scale (Levels 1 to 5) than later assessments, which use a scale from Level 1B to Level 6. PISA 2000/2003/2006 Level 4 data have been included in this database as Level 4 because they are based on an identical score range. Use caution in comparing proficiency scores across years. For more information on comparability of results, consult the PISA website: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.REA.4.MA\",\"PISA: Male 15-year-olds by reading proficiency level (%). Level 4\",\"Percentage of 15-year-old male students scoring higher than 553 but lower than or equal to 626 on the PISA reading scale. Tasks at Level 4 involve retrieving information require the reader to locate and organize several pieces of embedded information. Some tasks at this level require interpreting the meaning of nuances of language in a section of text by taking into account the text as a whole. Other interpretative tasks require understanding and applying categories in an unfamiliar context. Reflective tasks at this level require readers to use formal or public knowledge to hypothesize about or critically evaluate a text. Readers must demonstrate an accurate understanding of long or complex texts whose content or form may be unfamiliar. 2000, 2003, and 2006 PISA assessments used a different reading proficiency scale (Levels 1 to 5) than later assessments, which use a scale from Level 1B to Level 6. PISA 2000/2003/2006 Level 4 data have been included in this database as Level 4 because they are based on an identical score range. Use caution in comparing proficiency scores across years. For more information on comparability of results, consult the PISA website: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.REA.5\",\"PISA: 15-year-olds by reading proficiency level (%). Level 5\",\"Percentage of 15-year-old students scoring higher than 626 but lower than or equal to 698 on the PISA reading scale. Tasks at level 5 involve retrieving information require the reader to locate and organize several pieces of deeply embedded information, inferring which information in the text is relevant. Reflective tasks require critical evaluation or hypothesis, drawing on specialized knowledge. Both interpretative and reflective tasks require a full and detailed understanding of a text whose content or form is unfamiliar. For all aspects of reading, tasks at this level typically involve dealing with concepts that are contrary to expectations. 2000, 2003, and 2006 PISA assessments used a different reading proficiency scale (Levels 1 to 5) than later assessments, which use a scale from Level 1B to Level 6. In this database, 2000/2003/2006 Level 5 data are calculated figures based on the current Level 5 (626 to 698) rather than the figures presented for Level 5 (626+) in PISA Reports. Use caution in comparing results across years. For more information on comparability of results, consult the PISA website: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.REA.5.FE\",\"PISA: Female 15-year-olds by reading proficiency level (%). Level 5\",\"Percentage of 15-year-old female students scoring higher than 626 but lower than or equal to 698 on the PISA reading scale. Tasks at level 5 involve retrieving information require the reader to locate and organize several pieces of deeply embedded information, inferring which information in the text is relevant. Reflective tasks require critical evaluation or hypothesis, drawing on specialized knowledge. Both interpretative and reflective tasks require a full and detailed understanding of a text whose content or form is unfamiliar. For all aspects of reading, tasks at this level typically involve dealing with concepts that are contrary to expectations. 2000, 2003, and 2006 PISA assessments used a different reading proficiency scale (Levels 1 to 5) than later assessments, which use a scale from Level 1B to Level 6. In this database, 2000/2003/2006 Level 5 data are calculated figures based on the current PISA Proficiency Level 5 (626 to 698) rather than the figures presented for Level 5 (626+) in PISA Reports. Use caution in comparing results across years. For more information on comparability of results, consult the PISA website: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.REA.5.MA\",\"PISA: Male 15-year-olds by reading proficiency level (%). Level 5\",\"Percentage of 15-year-old male students scoring higher than 626 but lower than or equal to 698 on the PISA reading scale. Tasks at level 5 involve retrieving information require the reader to locate and organize several pieces of deeply embedded information, inferring which information in the text is relevant. Reflective tasks require critical evaluation or hypothesis, drawing on specialized knowledge. Both interpretative and reflective tasks require a full and detailed understanding of a text whose content or form is unfamiliar. For all aspects of reading, tasks at this level typically involve dealing with concepts that are contrary to expectations.  2000, 2003, and 2006 PISA assessments used a different reading proficiency scale (Levels 1 to 5) than later assessments, which use a scale from Level 1B to Level 6. In this database, 2000/2003/2006 Level 5 data are calculated figures based on the current PISA Proficiency Level 5 (626 to 698) rather than the figures presented for Level 5 (626+) in PISA Reports. Use caution in comparing results across years. For more information on comparability of results, consult the PISA website: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.REA.6\",\"PISA: 15-year-olds by reading proficiency level (%). Level 6\",\"Percentage of 15-year-old students scoring higher than 698 on the PISA reading scale. Tasks at Level 6 level typically require the reader to make multiple inferences, comparisons and contrasts that are both detailed and precise. They require demonstration of a full and detailed understanding of one or more texts and may involve integrating information from more than one text. Tasks may require the reader to deal with unfamiliar ideas, in the presence of prominent competing information, and to generate abstract categories for interpretations. Reflect and evaluate tasks may require the reader to hypothesize about or critically evaluate a complex text on an unfamiliar topic, taking into account multiple criteria or perspectives, and applying sophisticated understandings from beyond the text. A salient condition for access and retrieve tasks at this level is precision of analysis and fine attention to detail that is inconspicuous in the texts. 2000, 2003, and 2006 PISA assessments used a different reading proficiency scale (Levels 1 to 5) than later assessments, which use a scale from Level 1B to Level 6. Level 6 data were not available in the 2000/2003/2006 PISA Reports, so these figures were calculated based on the current PISA Reading Proficiency Level 6 (698+). Use caution in comparing proficiency scores across years. For more information on comparability of results, consult the PISA website: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.REA.6.FE\",\"PISA: Female 15-year-olds by reading proficiency level (%). Level 6\",\"Percentage of 15-year-old female students scoring higher than 698 on the PISA reading scale. Tasks at Level 6 level typically require the reader to make multiple inferences, comparisons and contrasts that are both detailed and precise. They require demonstration of a full and detailed understanding of one or more texts and may involve integrating information from more than one text. Tasks may require the reader to deal with unfamiliar ideas, in the presence of prominent competing information, and to generate abstract categories for interpretations. Reflect and evaluate tasks may require the reader to hypothesize about or critically evaluate a complex text on an unfamiliar topic, taking into account multiple criteria or perspectives, and applying sophisticated understandings from beyond the text. A salient condition for access and retrieve tasks at this level is precision of analysis and fine attention to detail that is inconspicuous in the texts. 2000, 2003, and 2006 PISA assessments used a different reading proficiency scale (Levels 1 to 5) than later assessments, which use a scale from Level 1B to Level 6. Level 6 data were not available in the 2000/2003/2006 PISA Reports, so these figures were calculated based on the current PISA Reading Proficiency Level 6 (698+). Use caution in comparing proficiency scores across years. For more information on comparability of results, consult the PISA website: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.REA.6.MA\",\"PISA: Male 15-year-olds by reading proficiency level (%). Level 6\",\"Percentage of 15-year-old male students scoring higher than 698 on the PISA reading scale. Tasks at Level 6 level typically require the reader to make multiple inferences, comparisons and contrasts that are both detailed and precise. They require demonstration of a full and detailed understanding of one or more texts and may involve integrating information from more than one text. Tasks may require the reader to deal with unfamiliar ideas, in the presence of prominent competing information, and to generate abstract categories for interpretations. Reflect and evaluate tasks may require the reader to hypothesize about or critically evaluate a complex text on an unfamiliar topic, taking into account multiple criteria or perspectives, and applying sophisticated understandings from beyond the text. A salient condition for access and retrieve tasks at this level is precision of analysis and fine attention to detail that is inconspicuous in the texts. 2000, 2003, and 2006 PISA assessments used a different reading proficiency scale (Levels 1 to 5) than later assessments, which use a scale from Level 1B to Level 6. Level 6 data were not available in the 2000/2003/2006 PISA Reports, so these figures were calculated based on the current PISA Reading Proficiency Level 6 (698+). Use caution in comparing proficiency scores across years. For more information on comparability of results, consult the PISA website: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.REA.FE\",\"PISA: Mean performance on the reading scale. Female\",\"Average score of 15-year-old female students on the PISA reading scale. The metric for the overall reading scale is based on a mean for participating OECD countries set at 500, with a standard deviation of 100. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.REA.MA\",\"PISA: Mean performance on the reading scale. Male\",\"Average score of 15-year-old male students on the PISA reading scale. The metric for the overall reading scale is based on a mean for participating OECD countries set at 500, with a standard deviation of 100. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.REA.P05\",\"The 5th percentile score is the score below which 5 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed\",\"The 5th percentile score is the score below which 5 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.REA.P10\",\"The 10th percentile score is the score below which 10 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detail\",\"The 10th percentile score is the score below which 10 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.REA.P25\",\"The 25th percentile score is the score below which 25 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detail\",\"The 25th percentile score is the score below which 25 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.REA.P50\",\"PISA: Distribution of Reading Scores: 50th Percentile Score\",\"The 50th percentile score is the score below which 50 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.REA.P75\",\"The 75th percentile score is the score below which 75 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detail\",\"The 75th percentile score is the score below which 75 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.REA.P90\",\"The 90th percentile score is the score below which 90 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detail\",\"The 90th percentile score is the score below which 90 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.REA.P95\",\"The 95th percentile score is the score below which 90 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detail\",\"The 95th percentile score is the score below which 90 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.SCI\",\"PISA: Mean performance on the science scale\",\"Average score of 15-year-old students on the PISA science scale. In PISA 2006 the mean science score for OECD countries was initially set at 500 points (for 30 OECD countries), then was re-set at 498 points after taking into account new OECD countries. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.SCI.0\",\"PISA: 15-year-olds by science proficiency level (%). Below Level 1\",\"Percentage of 15-year-old students scoring below the lowest proficiency level (less than or equal to 335) on the PISA science scale. Students who score below Level 1 usually do not succeed at the most basic levels of science that PISA measures. Such students are more likely to have serious difficulties in using science to benefit from further education and learning opportunities and in participating in life situations related to science and technology. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.SCI.0.FE\",\"PISA: Female 15-year-olds by science proficiency level (%). Below Level 1\",\"Percentage of 15-year-old female students scoring below the lowest proficiency level (less than or equal to 335) on the PISA science scale. Students who score below Level 1 usually do not succeed at the most basic levels of science that PISA measures. Such students are more likely to have serious difficulties in using science to benefit from further education and learning opportunities and in participating in life situations related to science and technology. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.SCI.0.MA\",\"PISA: Male 15-year-olds by science proficiency level (%). Below Level 1\",\"Percentage of 15-year-old male students scoring below the lowest proficiency level (less than or equal to 335) on the PISA science scale. Students who score below Level 1 usually do not succeed at the most basic levels of science that PISA measures. Such students are more likely to have serious difficulties in using science to benefit from further education and learning opportunities and in participating in life situations related to science and technology. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.SCI.1\",\"PISA: 15-year-olds by science proficiency level (%). Level 1\",\"Percentage of 15-year-old students scoring higher than 335 but less than or equal to 409 on the PISA science scale. At Level 1, students have such limited scientific knowledge that it can only be applied to a few, familiar situations. They can present scientific explanations that are obvious and follow explicitly from given evidence. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.SCI.1.FE\",\"PISA: Female 15-year-olds by science proficiency level (%). Level 1\",\"Percentage of 15-year-old female students scoring higher than 335 but less than or equal to 409 on the PISA science scale. At Level 1, students have such limited scientific knowledge that it can only be applied to a few, familiar situations. They can present scientific explanations that are obvious and follow explicitly from given evidence. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.SCI.1.MA\",\"PISA: Male 15-year-olds by science proficiency level (%). Level 1\",\"Percentage of 15-year-old male students scoring higher than 335 but less than or equal to 409 on the PISA science scale. At Level 1, students have such limited scientific knowledge that it can only be applied to a few, familiar situations. They can present scientific explanations that are obvious and follow explicitly from given evidence. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.SCI.2\",\"PISA: 15-year-olds by science proficiency level (%). Level 2\",\"Percentage of 15-year-old students scoring higher than 409 but less than or equal to 484 on the PISA science scale. At Level 2, students have adequate scientific knowledge to provide possible explanations in familiar contexts or draw conclusions based on simple investigations. They are capable of direct reasoning and making literal interpretations of the results of scientific inquiry or technological problem solving. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.SCI.2.FE\",\"PISA: Female 15-year-olds by science proficiency level (%). Level 2\",\"Percentage of 15-year-old female students scoring higher than 409 but less than or equal to 484 on the PISA science scale. At Level 2, students have adequate scientific knowledge to provide possible explanations in familiar contexts or draw conclusions based on simple investigations. They are capable of direct reasoning and making literal interpretations of the results of scientific inquiry or technological problem solving. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.SCI.2.MA\",\"PISA: Male 15-year-olds by science proficiency level (%). Level 2\",\"Percentage of 15-year-old male students scoring higher than 409 but less than or equal to 484 on the PISA science scale. At Level 2, students have adequate scientific knowledge to provide possible explanations in familiar contexts or draw conclusions based on simple investigations. They are capable of direct reasoning and making literal interpretations of the results of scientific inquiry or technological problem solving. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.SCI.3\",\"PISA: 15-year-olds by science proficiency level (%). Level 3\",\"Percentage of 15-year-old students scoring higher than 484 but less than or equal to 559 on the PISA science scale. At Level 3, students can identify clearly described scientific issues in a range of contexts. They can select facts and knowledge to explain phenomena and apply simple models or inquiry strategies. Students at this level can interpret and use scientific concepts from different disciplines and can apply them directly. They can develop short statements using facts and make decisions based on scientific knowledge. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.SCI.3.FE\",\"PISA: Female 15-year-olds by science proficiency level (%). Level 3\",\"Percentage of 15-year-old female students scoring higher than 484 but less than or equal to 559 on the PISA science scale. At Level 3, students can identify clearly described scientific issues in a range of contexts. They can select facts and knowledge to explain phenomena and apply simple models or inquiry strategies. Students at this level can interpret and use scientific concepts from different disciplines and can apply them directly. They can develop short statements using facts and make decisions based on scientific knowledge. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.SCI.3.MA\",\"PISA: Male 15-year-olds by science proficiency level (%). Level 3\",\"Percentage of 15-year-old male students scoring higher than 484 but less than or equal to 559 on the PISA science scale. At Level 3, students can identify clearly described scientific issues in a range of contexts. They can select facts and knowledge to explain phenomena and apply simple models or inquiry strategies. Students at this level can interpret and use scientific concepts from different disciplines and can apply them directly. They can develop short statements using facts and make decisions based on scientific knowledge. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.SCI.4\",\"PISA: 15-year-olds by science proficiency level (%). Level 4\",\"Percentage of 15-year-old students scoring higher than 559 but less than or equal to 633 on the PISA science scale. At Level 4, students can work effectively with situations and issues that may involve explicit phenomena requiring them to make inferences about the role of science or technology. They can select and integrate explanations from different disciplines of science or technology and link those explanations directly to aspects of life situations. Students at this level can reflect on their actions and they can communicate decisions using scientific knowledge and evidence. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.SCI.4.FE\",\"PISA: Female 15-year-olds by science proficiency level (%). Level 4\",\"Percentage of 15-year-old female students scoring higher than 559 but less than or equal to 633 on the PISA science scale. At Level 4, students can work effectively with situations and issues that may involve explicit phenomena requiring them to make inferences about the role of science or technology. They can select and integrate explanations from different disciplines of science or technology and link those explanations directly to aspects of life situations. Students at this level can reflect on their actions and they can communicate decisions using scientific knowledge and evidence. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.SCI.4.MA\",\"PISA: Male 15-year-olds by science proficiency level (%). Level 4\",\"Percentage of 15-year-old male students scoring higher than 559 but less than or equal to 633 on the PISA science scale. At Level 4, students can work effectively with situations and issues that may involve explicit phenomena requiring them to make inferences about the role of science or technology. They can select and integrate explanations from different disciplines of science or technology and link those explanations directly to aspects of life situations. Students at this level can reflect on their actions and they can communicate decisions using scientific knowledge and evidence. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.SCI.5\",\"PISA: 15-year-olds by science proficiency level (%). Level 5\",\"Percentage of 15-year-old students scoring higher than 633 but less than or equal to 708 on the PISA science scale. At Level 5, students can identify the scientific components of many complex life situations, apply both scientific concepts and knowledge about science to these situations, and can compare, select and evaluate appropriate scientific evidence for responding to life situations. Students at this level can use well-developed inquiry abilities, link knowledge appropriately, and bring critical insights to situations. They can construct explanations based on evidence and arguments based on their critical analysis. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.SCI.5.FE\",\"PISA: Female 15-year-olds by science proficiency level (%). Level 5\",\"Percentage of 15-year-old female students scoring higher than 633 but less than or equal to 708 on the PISA science scale. At Level 5, students can identify the scientific components of many complex life situations, apply both scientific concepts and knowledge about science to these situations, and can compare, select and evaluate appropriate scientific evidence for responding to life situations. Students at this level can use well-developed inquiry abilities, link knowledge appropriately, and bring critical insights to situations. They can construct explanations based on evidence and arguments based on their critical analysis. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.SCI.5.MA\",\"PISA: Male 15-year-olds by science proficiency level (%). Level 5\",\"Percentage of 15-year-old male students scoring higher than 633 but less than or equal to 708 on the PISA science scale. At Level 5, students can identify the scientific components of many complex life situations, apply both scientific concepts and knowledge about science to these situations, and can compare, select and evaluate appropriate scientific evidence for responding to life situations. Students at this level can use well-developed inquiry abilities, link knowledge appropriately, and bring critical insights to situations. They can construct explanations based on evidence and arguments based on their critical analysis. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.SCI.6\",\"PISA: 15-year-olds by science proficiency level (%). Level 6\",\"Percentage of 15-year-old students scoring higher than 708 on the PISA science scale. At Level 6, students can consistently identify, explain and apply scientific knowledge and knowledge about science in a variety of complex life situations. They can link different information sources and explanations and use evidence from those sources to justify decisions. They clearly and consistently demonstrate advanced scientific thinking and reasoning, and they use their scientific understanding in support of solutions to unfamiliar scientific and technological situations. Students at this level can use scientific knowledge and develop arguments in support of recommendations and decisions that center on personal, social or global situations. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.SCI.6.FE\",\"PISA: Female 15-year-olds by science proficiency level (%). Level 6\",\"Percentage of 15-year-old female students scoring higher than 708 on the PISA science scale. At Level 6, students can consistently identify, explain and apply scientific knowledge and knowledge about science in a variety of complex life situations. They can link different information sources and explanations and use evidence from those sources to justify decisions. They clearly and consistently demonstrate advanced scientific thinking and reasoning, and they use their scientific understanding in support of solutions to unfamiliar scientific and technological situations. Students at this level can use scientific knowledge and develop arguments in support of recommendations and decisions that center on personal, social or global situations. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.SCI.6.MA\",\"PISA: Male 15-year-olds by science proficiency level (%). Level 6\",\"Percentage of 15-year-old male students scoring higher than 708 on the PISA science scale. At Level 6, students can consistently identify, explain and apply scientific knowledge and knowledge about science in a variety of complex life situations. They can link different information sources and explanations and use evidence from those sources to justify decisions. They clearly and consistently demonstrate advanced scientific thinking and reasoning, and they use their scientific understanding in support of solutions to unfamiliar scientific and technological situations. Students at this level can use scientific knowledge and develop arguments in support of recommendations and decisions that center on personal, social or global situations. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.SCI.FE\",\"PISA: Mean performance on the science scale. Female\",\"Average score of 15-year-old female students on the PISA science scale. In PISA 2006 the mean science score for OECD countries was initially set at 500 points (for 30 OECD countries), then was re-set at 498 points after taking into account new OECD countries. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.SCI.MA\",\"PISA: Mean performance on the science scale. Male\",\"Average score of 15-year-old male students on the PISA science scale. In PISA 2006 the mean science score for OECD countries was initially set at 500 points (for 30 OECD countries), then was re-set at 498 points after taking into account new OECD countries. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.SCI.P05\",\"The 5th percentile score is the score below which 5 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed\",\"The 5th percentile score is the score below which 5 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.SCI.P10\",\"The 10th percentile score is the score below which 10 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detail\",\"The 10th percentile score is the score below which 10 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.SCI.P25\",\"The 25th percentile score is the score below which 25 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detail\",\"The 25th percentile score is the score below which 25 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.SCI.P50\",\"PISA: Distribution of Science Scores: 50th Percentile Score\",\"The 50th percentile score is the score below which 50 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.SCI.P75\",\"The 75th percentile score is the score below which 75 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detail\",\"The 75th percentile score is the score below which 75 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.SCI.P90\",\"The 90th percentile score is the score below which 90 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detail\",\"The 90th percentile score is the score below which 90 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.PISA.SCI.P95\",\"The 95th percentile score is the score below which 90 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detail\",\"The 95th percentile score is the score below which 90 percent of students scored. Data reflects country performance in the stated year according to PISA reports, but may not be comparable across years or countries. Consult the PISA website for more detailed information: http://www.oecd.org/pisa/\",\"Education Statistics\",\"OECD Programme for International Student Assessment (PISA)\"\n\"LO.SACMEQ.MAT\",\"SACMEQ: Mean performance on the mathematics scale\",\"Mean performance on the mathematics scale is the mean mathematics score for 6th grade students. Mean scores are on SACMEQ scales for mathematics, which have averages of 500 and standard deviations of 100. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.MAT.FE\",\"SACMEQ: Mean performance on the mathematics scale, female\",\"Mean performance on the mathematics scale, female is the mean mathematics score for female 6th grade students. Mean scores are on SACMEQ scales for mathematics, which have averages of 500 and standard deviations of 100. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.MAT.L1\",\"SACMEQ: 6th grade students by mathematics proficiency level (%). Level 1 - Pre-Numeracy\",\"Percentage of 6th grade students scoring at the Pre-Numeracy level (Level 1 of 8) on the mathematics assessment. At this level, students can apply single step addition or subtraction operations, recognize simple shapes, match numbers and pictures, and count in whole numbers. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.MAT.L1.FE\",\"SACMEQ: Female 6th grade students by mathematics proficiency level (%). Level 1 - Pre-Numeracy\",\"Percentage of 6th grade female students scoring at the Pre-Numeracy level (Level 1 of 8) on the mathematics assessment. At this level, students can apply single step addition or subtraction operations, recognize simple shapes, match numbers and pictures, and count in whole numbers. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.MAT.L1.MA\",\"SACMEQ: Male 6th grade students by mathematics proficiency level (%). Level 1 - Pre-Numeracy\",\"Percentage of 6th grade male students scoring at the Pre-Numeracy level (Level 1 of 8) on the mathematics assessment. At this level, students can apply single step addition or subtraction operations, recognize simple shapes, match numbers and pictures, and count in whole numbers. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.MAT.L2\",\"SACMEQ: 6th grade students by mathematics proficiency level (%). Level 2 - Emergent Numeracy\",\"Percentage of 6th grade students scoring at the Emergent Numeracy level (Level 2 of 8) on the mathematics assessment. At this level, students can apply a two-step addition or subtraction operation involving carrying, checking (through very basic estimation), or conversion of pictures to numbers. They can estimate the length of familiar objects and recognize common two-dimensional shapes. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.MAT.L2.FE\",\"SACMEQ: Female 6th grade students by mathematics proficiency level (%). Level 2 - Emergent Numeracy\",\"Percentage of 6th grade female students scoring at the Emergent Numeracy level (Level 2 of 8) on the mathematics assessment. At this level, students can apply a two-step addition or subtraction operation involving carrying, checking (through very basic estimation), or conversion of pictures to numbers. They can estimate the length of familiar objects and recognize common two-dimensional shapes. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.MAT.L2.MA\",\"SACMEQ: Male 6th grade students by mathematics proficiency level (%). Level 2 - Emergent Numeracy\",\"Percentage of 6th grade male students scoring at the Emergent Numeracy level (Level 2 of 8) on the mathematics assessment. At this level, students can apply a two-step addition or subtraction operation involving carrying, checking (through very basic estimation), or conversion of pictures to numbers. They can estimate the length of familiar objects and recognize common two-dimensional shapes. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.MAT.L3\",\"SACMEQ: 6th grade students by mathematics proficiency level (%). Level 3 - Basic Numeracy\",\"Percentage of 6th grade students scoring at the Basic Numeracy level (Level 3 of 8) on the mathematics assessment. At this level, students can translate verbal information presented in a sentence, simple graph or table, using one arithmetic operation in several repeated steps. They can translate graphical information into fractions, interpret place value of whole numbers up to thousands, and interpret simple common everyday units of measurement. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.MAT.L3.FE\",\"SACMEQ: Female 6th grade students by mathematics proficiency level (%). Level 3 - Basic Numeracy\",\"Percentage of 6th grade female students scoring at the Basic Numeracy level (Level 3 of 8) on the mathematics assessment. At this level, students can translate verbal information presented in a sentence, simple graph or table, using one arithmetic operation in several repeated steps. They can translate graphical information into fractions, interpret place value of whole numbers up to thousands, and interpret simple common everyday units of measurement. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.MAT.L3.MA\",\"SACMEQ: Male 6th grade students by mathematics proficiency level (%). Level 3 - Basic Numeracy\",\"Percentage of 6th grade male students scoring at the Basic Numeracy level (Level 3 of 8) on the mathematics assessment. At this level, students can translate verbal information presented in a sentence, simple graph or table, using one arithmetic operation in several repeated steps. They can translate graphical information into fractions, interpret place value of whole numbers up to thousands, and interpret simple common everyday units of measurement. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.MAT.L4\",\"SACMEQ: 6th grade students by mathematics proficiency level (%). Level 4 - Beginning Numeracy\",\"Percentage of 6th grade students scoring at the Beginning Numeracy level (Level 4 of 8) on the mathematics assessment. At this level, students can translate verbal or graphic information into simple arithmetic problems, and use multiple different arithmetic operations (in the correct order) on whole numbers, fractions, and/or decimals. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.MAT.L4.FE\",\"SACMEQ: Female 6th grade students by mathematics proficiency level (%). Level 4 - Beginning Numeracy\",\"Percentage of 6th grade female students scoring at the Beginning Numeracy level (Level 4 of 8) on the mathematics assessment. At this level, students can translate verbal or graphic information into simple arithmetic problems, and use multiple different arithmetic operations (in the correct order) on whole numbers, fractions, and/or decimals. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.MAT.L4.MA\",\"SACMEQ: Male 6th grade students by mathematics proficiency level (%). Level 4 - Beginning Numeracy\",\"Percentage of 6th grade male students scoring at the Beginning Numeracy level (Level 4 of 8) on the mathematics assessment. At this level, students can translate verbal or graphic information into simple arithmetic problems, and use multiple different arithmetic operations (in the correct order) on whole numbers, fractions, and/or decimals. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.MAT.L5\",\"SACMEQ: 6th grade students by mathematics proficiency level (%). Level 5 - Competent Numeracy\",\"Percentage of 6th grade students scoring at the Competent Numeracy level (Level 5 of 8) on the mathematics assessment. At this level, students can translate verbal, graphic, or tabular information into an arithmetic form in order to solve a given problem. They can solve multiple-operation problems (using the correct order of arithmetic operations) involving everyday units of measurement and/or whole and mixed numbers, and convert basic measurement units from one level of measurement to another (for example, meters to centimeters). Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.MAT.L5.FE\",\"SACMEQ: Female 6th grade students by mathematics proficiency level (%). Level 5 - Competent Numeracy\",\"Percentage of 6th grade female students scoring at the Competent Numeracy level (Level 5 of 8) on the mathematics assessment. At this level, students can translate verbal, graphic, or tabular information into an arithmetic form in order to solve a given problem. They can solve multiple-operation problems (using the correct order of arithmetic operations) involving everyday units of measurement and/or whole and mixed numbers, and convert basic measurement units from one level of measurement to another (for example, meters to centimeters). Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.MAT.L5.MA\",\"SACMEQ: Male 6th grade students by mathematics proficiency level (%). Level 5 - Competent Numeracy\",\"Percentage of 6th grade male students scoring at the Competent Numeracy level (Level 5 of 8) on the mathematics assessment. At this level, students can translate verbal, graphic, or tabular information into an arithmetic form in order to solve a given problem. They can solve multiple-operation problems (using the correct order of arithmetic operations) involving everyday units of measurement and/or whole and mixed numbers, and convert basic measurement units from one level of measurement to another (for example, meters to centimeters). Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.MAT.L6\",\"SACMEQ: 6th grade students by mathematics proficiency level (%). Level 6 - Mathematically Skilled\",\"Percentage of 6th grade students scoring at the Mathematically Skilled numeracy level (Level 6 of 8) on the mathematics assessment. At this level, students can solve multiple-operation problems (using the correct order of arithmetic operations) involving fractions, ratios, and decimals. They can translate verbal and graphic representation information into symbolic, algebraic, and equation form in order to solve a given mathematical problem. They can check and estimate answers using external knowledge (not provided within the problem). Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.MAT.L6.FE\",\"SACMEQ: Female 6th grade students by mathematics proficiency level (%). Level 6 - Mathematically Skilled\",\"Percentage of 6th grade female students scoring at the Mathematically Skilled numeracy level (Level 6 of 8) on the mathematics assessment. At this level, students can solve multiple-operation problems (using the correct order of arithmetic operations) involving fractions, ratios, and decimals. They can translate verbal and graphic representation information into symbolic, algebraic, and equation form in order to solve a given mathematical problem. They can check and estimate answers using external knowledge (not provided within the problem). Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.MAT.L6.MA\",\"SACMEQ: Male 6th grade students by mathematics proficiency level (%). Level 6 - Mathematically Skilled\",\"Percentage of 6th grade male students scoring at the Mathematically Skilled numeracy level (Level 6 of 8) on the mathematics assessment. At this level, students can solve multiple-operation problems (using the correct order of arithmetic operations) involving fractions, ratios, and decimals. They can translate verbal and graphic representation information into symbolic, algebraic, and equation form in order to solve a given mathematical problem. They can check and estimate answers using external knowledge (not provided within the problem). Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.MAT.L7\",\"SACMEQ: 6th grade students by mathematics proficiency level (%). Level 7 - Concrete Problem Solving\",\"Percentage of 6th grade students scoring at the Concrete Problem Solving numeracy level (Level 7 of 8) on the mathematics assessment. At this level, students can extract and convert (for example, with respect to measurement units) information from tables, charts, visual and symbolic presentations in order to identify, and then solve multi-step problems. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.MAT.L7.FE\",\"SACMEQ: Female 6th grade students by mathematics proficiency level (%). Level 7 - Concrete Problem Solving\",\"Percentage of 6th grade female students scoring at the Concrete Problem Solving numeracy level (Level 7 of 8) on the mathematics assessment. At this level, students can extract and convert (for example, with respect to measurement units) information from tables, charts, visual and symbolic presentations in order to identify, and then solve multi-step problems. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.MAT.L7.MA\",\"SACMEQ: Male 6th grade students by mathematics proficiency level (%). Level 7 - Concrete Problem Solving\",\"Percentage of 6th grade male students scoring at the Concrete Problem Solving numeracy level (Level 7 of 8) on the mathematics assessment. At this level, students can extract and convert (for example, with respect to measurement units) information from tables, charts, visual and symbolic presentations in order to identify, and then solve multi-step problems. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.MAT.L8\",\"SACMEQ: 6th grade students by mathematics proficiency level (%). Level 8 - Abstract Problem Solving\",\"Percentage of 6th grade students scoring at the Abstract Problem Solving numeracy level (Level 8 of 8) on the mathematics assessment. At this level, students can identify the nature of an unstated mathematical problem embedded within verbal or graphic information, and then translate this into symbolic, algebraic, or equation form in order to solve the problem. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.MAT.L8.FE\",\"SACMEQ: Female 6th grade students by mathematics proficiency level (%). Level 8 - Abstract Problem Solving\",\"Percentage of 6th grade female students scoring at the Abstract Problem Solving numeracy level (Level 8 of 8) on the mathematics assessment. At this level, students can identify the nature of an unstated mathematical problem embedded within verbal or graphic information, and then translate this into symbolic, algebraic, or equation form in order to solve the problem. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.MAT.L8.MA\",\"SACMEQ: Male 6th grade students by mathematics proficiency level (%). Level 8 - Abstract Problem Solving\",\"Percentage of 6th grade male students scoring at the Abstract Problem Solving numeracy level (Level 8 of 8) on the mathematics assessment. At this level, students can identify the nature of an unstated mathematical problem embedded within verbal or graphic information, and then translate this into symbolic, algebraic, or equation form in order to solve the problem. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.MAT.MA\",\"SACMEQ: Mean performance on the mathematics scale, male\",\"Mean performance on the mathematics scale, male is the mean mathematics score for male 6th grade students. Mean scores are on SACMEQ scales for mathematics, which have averages of 500 and standard deviations of 100. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.REA\",\"SACMEQ: Mean performance on the reading scale, total\",\"Mean performance on the reading scale, total is the mean reading score for all 6th grade students. Mean scores are on SACMEQ scales for reading, which have averages of 500 and standard deviations of 100. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.REA.FE\",\"SACMEQ: Mean performance on the reading scale, female\",\"Mean performance on the reading scale, female is the mean reading score for female 6th grade students. Mean scores are on SACMEQ scales for reading, which have averages of 500 and standard deviations of 100. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.REA.L1\",\"SACMEQ: 6th grade students by reading proficiency level (%). Level 1 - Pre-Reading\",\"Percentage of 6th grade students scoring at the Pre-Reading level (Level 1 of 8) on the reading assessment. At this level, the student can match words and pictures involving concrete concepts and everyday objects, and follow short simple written instructions. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.REA.L1.FE\",\"SACMEQ: Female 6th grade students by reading proficiency level (%). Level 1 - Pre-Reading\",\"Percentage of 6th grade female students scoring at the Pre-Reading level (Level 1 of 8) on the reading assessment. At this level, the student can match words and pictures involving concrete concepts and everyday objects, and follow short simple written instructions. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.REA.L1.MA\",\"SACMEQ: Male 6th grade students by reading proficiency level (%). Level 1 - Pre-Reading\",\"Percentage of 6th grade male students scoring at the Pre-Reading level (Level 1 of 8) on the reading assessment. At this level, the student can match words and pictures involving concrete concepts and everyday objects, and follow short simple written instructions. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.REA.L2\",\"SACMEQ: 6th grade students by reading proficiency level (%). Level 2 - Emergent Reading\",\"Percentage of 6th grade students scoring at the Emergent Reading level (Level 2 of 8) on the reading assessment. Students at this level can match words and pictures involving prepositions and abstract concepts, and use cuing systems (by sounding out, using simple sentence structure, and familiar words) to interpret phrases by reading on. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.REA.L2.FE\",\"SACMEQ: Female 6th grade students by reading proficiency level (%). Level 2 - Emergent Reading\",\"Percentage of 6th grade female students scoring at the Emergent Reading level (Level 2 of 8) on the reading assessment. Students at this level can match words and pictures involving prepositions and abstract concepts, and use cuing systems (by sounding out, using simple sentence structure, and familiar words) to interpret phrases by reading on. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.REA.L2.MA\",\"SACMEQ: Male 6th grade students by reading proficiency level (%). Level 2 - Emergent Reading\",\"Percentage of 6th grade male students scoring at the Emergent Reading level (Level 2 of 8) on the reading assessment. Students at this level can match words and pictures involving prepositions and abstract concepts, and use cuing systems (by sounding out, using simple sentence structure, and familiar words) to interpret phrases by reading on. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.REA.L3\",\"SACMEQ: 6th grade students by reading proficiency level (%). Level 3 - Basic Reading\",\"Percentage of 6th grade students scoring at the Basic Reading level (Level 3 of 8) on the reading assessment. Students at this level can interpret meaning (by matching words and phrases, completing a sentence, or matching adjacent words) in a short and simple text by reading on or reading back. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.REA.L3.FE\",\"SACMEQ: Female 6th grade students by reading proficiency level (%). Level 3 - Basic Reading\",\"Percentage of 6th grade female students scoring at the Basic Reading level (Level 3 of 8) on the reading assessment. Students at this level can interpret meaning (by matching words and phrases, completing a sentence, or matching adjacent words) in a short and simple text by reading on or reading back. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.REA.L3.MA\",\"SACMEQ: Male 6th grade students by reading proficiency level (%). Level 3 - Basic Reading\",\"Percentage of 6th grade male students scoring at the Basic Reading level (Level 3 of 8) on the reading assessment. Students at this level can interpret meaning (by matching words and phrases, completing a sentence, or matching adjacent words) in a short and simple text by reading on or reading back. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.REA.L4\",\"SACMEQ: 6th grade students by reading proficiency level (%). Level 4 - Reading for Meaning\",\"Percentage of 6th grade students scoring at the Reading for Meaning level (Level 4 of 8) on the reading assessment. At this level, students can read on or read back in order to link and interpret information located in various parts of the text. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.REA.L4.FE\",\"SACMEQ: Female 6th grade students by reading proficiency level (%). Level 4 - Reading for Meaning\",\"Percentage of 6th grade female students scoring at the Reading for Meaning level (Level 4 of 8) on the reading assessment. At this level, students can read on or read back in order to link and interpret information located in various parts of the text. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.REA.L4.MA\",\"SACMEQ: Male 6th grade students by reading proficiency level (%). Level 4 - Reading for Meaning\",\"Percentage of 6th grade male students scoring at the Reading for Meaning level (Level 4 of 8) on the reading assessment. At this level, students can read on or read back in order to link and interpret information located in various parts of the text. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.REA.L5\",\"SACMEQ: 6th grade students by reading proficiency level (%). Level 5 - Interpretive Reading\",\"Percentage of 6th grade students scoring at the Interpretive Reading level (Level 5 of 8) on the reading assessment. At this level, students can read on and reads back in order to combine and interpret information from various parts of the text in association with external information (based on recalled factual knowledge) that ‘completes’ and contextualizes meaning. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.REA.L5.FE\",\"SACMEQ: Female 6th grade students by reading proficiency level (%). Level 5 - Interpretive Reading\",\"Percentage of 6th grade female students scoring at the Interpretive Reading level (Level 5 of 8) on the reading assessment. At this level, students can read on and reads back in order to combine and interpret information from various parts of the text in association with external information (based on recalled factual knowledge) that ‘completes’ and contextualizes meaning. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.REA.L5.MA\",\"SACMEQ: Male 6th grade students by reading proficiency level (%). Level 5 - Interpretive Reading\",\"Percentage of 6th grade male students scoring at the Interpretive Reading level (Level 5 of 8) on the reading assessment. At this level, students can read on and reads back in order to combine and interpret information from various parts of the text in association with external information (based on recalled factual knowledge) that ‘completes’ and contextualizes meaning. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.REA.L6\",\"SACMEQ: 6th grade students by reading proficiency level (%). Level 6 - Inferential Reading\",\"Percentage of 6th grade students scoring at the Inferential Reading level (Level 6 of 8) on the reading assessment. At this level, students can read on and read back through longer texts (narrative, document, or expository) in order to combine information from various parts of the texts so as to infer the writer’s purpose. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.REA.L6.FE\",\"SACMEQ: Female 6th grade students by reading proficiency level (%). Level 6 - Inferential Reading\",\"Percentage of 6th grade female students scoring at the Inferential Reading level (Level 6 of 8) on the reading assessment. At this level, students can read on and read back through longer texts (narrative, document, or expository) in order to combine information from various parts of the texts so as to infer the writer’s purpose. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.REA.L6.MA\",\"SACMEQ: Male 6th grade students by reading proficiency level (%). Level 6 - Inferential Reading\",\"Percentage of 6th grade male students scoring at the Inferential Reading level (Level 6 of 8) on the reading assessment. At this level, students can read on and read back through longer texts (narrative, document, or expository) in order to combine information from various parts of the texts so as to infer the writer’s purpose. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.REA.L7\",\"SACMEQ: 6th grade students by reading proficiency level (%). Level 7 - Analytical Reading\",\"Percentage of 6th grade students scoring at the Analytical Reading level (Level 7 of 8) on the reading assessment. At this level, students can locate information in longer texts (narrative, document, or expository) by reading on and reading backing order to combine information from various parts of the text so as to infer the writer’s personal beliefs (value systems, prejudices, and/or biases). Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.REA.L7.FE\",\"SACMEQ: Female 6th grade students by reading proficiency level (%). Level 7 - Analytical Reading\",\"Percentage of 6th grade female students scoring at the Analytical Reading level (Level 7 of 8) on the reading assessment. At this level, students can locate information in longer texts (narrative, document, or expository) by reading on and reading backing order to combine information from various parts of the text so as to infer the writer’s personal beliefs (value systems, prejudices, and/or biases). Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.REA.L7.MA\",\"SACMEQ: Male 6th grade students by reading proficiency level (%). Level 7 - Analytical Reading\",\"Percentage of 6th grade male students scoring at the Analytical Reading level (Level 7 of 8) on the reading assessment. At this level, students can locate information in longer texts (narrative, document, or expository) by reading on and reading backing order to combine information from various parts of the text so as to infer the writer’s personal beliefs (value systems, prejudices, and/or biases). Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.REA.L8\",\"SACMEQ: 6th grade students by reading proficiency level (%). Level 8 - Critical Reading\",\"Percentage of 6th grade students scoring at the Critical Reading level (Level 8 of 8) on the reading assessment. At this level, students can locate information in longer texts (narrative, document, and expository) by reading on and reading back in order to combine information from various parts of the text so as to infer and evaluate what the writer has assumed about the topic and the characteristics of the reader – such as age, knowledge, and personal beliefs (values systems, prejudices, and/or biases). Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.REA.L8.FE\",\"SACMEQ: Female 6th grade students by reading proficiency level (%). Level 8 - Critical Reading\",\"Percentage of 6th grade female students scoring at the Critical Reading level (Level 8 of 8) on the reading assessment. At this level, students can locate information in longer texts (narrative, document, and expository) by reading on and reading back in order to combine information from various parts of the text so as to infer and evaluate what the writer has assumed about the topic and the characteristics of the reader – such as age, knowledge, and personal beliefs (values systems, prejudices, and/or biases). Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.REA.L8.MA\",\"SACMEQ: Male 6th grade students by reading proficiency level (%). Level 8 - Critical Reading\",\"Percentage of 6th grade male students scoring at the Critical Reading level (Level 8 of 8) on the reading assessment. At this level, students can locate information in longer texts (narrative, document, and expository) by reading on and reading back in order to combine information from various parts of the text so as to infer and evaluate what the writer has assumed about the topic and the characteristics of the reader – such as age, knowledge, and personal beliefs (values systems, prejudices, and/or biases). Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.SACMEQ.REA.MA\",\"SACMEQ: Mean performance on the reading scale, male\",\"Mean performance on the reading scale, male is the mean reading score for male 6th grade students. Mean scores are on SACMEQ scales for reading, which have averages of 500 and standard deviations of 100. Data reflects country performance in the stated year according to SACMEQ, but may not be comparable across years or countries. Consult the SACMEQ website for more detailed information: http://www.sacmeq.org/\",\"Education Statistics\",\"Southern and Eastern Africa Consortium for Monitoring Educational Quality (SACMEQ) Data Archive, www.sacmeq.org\"\n\"LO.TIMSS.MAT4\",\"TIMSS: Mean performance on the mathematics scale for fourth grade students, total\",\"TIMSS: Mean performance on the mathematics scale for fourth grade students, total is the average scale score for 4th graders on the mathematics assessment. The scale centerpoint is 500. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT4.ADV\",\"TIMSS: Fourth grade students reaching the advanced international benchmark of mathematics achievement (%)\",\"TIMSS: Fourth grade students reaching the advanced international benchmark of mathematics achievement (%) is the share of 4th grade students scoring at least 625 on the mathematics assessment. Students at this benchmark can apply their understanding and knowledge in a variety of relatively complex situations and explain their reasoning. They can solve a variety of multi-step word problems involving whole numbers including proportions. Students at this level show an increasing understanding of fractions and decimals. Students can apply geometric knowledge of a range of two- and three-dimensional shapes in a variety of situations. They can draw a conclusion from data in a table and justify their conclusion. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT4.ADV.FE\",\"TIMSS: Female 4th grade students reaching the advanced international benchmark of mathematics achievement (%)\",\"TIMSS: Female 4th grade students reaching the advanced international benchmark of mathematics achievement (%) is the share of female 4th grade students scoring at least 625 on the mathematics assessment. Students at this benchmark can apply their understanding and knowledge in a variety of relatively complex situations and explain their reasoning. They can solve a variety of multi-step word problems involving whole numbers including proportions. Students at this level show an increasing understanding of fractions and decimals. Students can apply geometric knowledge of a range of two- and three-dimensional shapes in a variety of situations. They can draw a conclusion from data in a table and justify their conclusion. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT4.ADV.MA\",\"TIMSS: Male 4th grade students reaching the advanced international benchmark of mathematics achievement (%)\",\"TIMSS: Male 4th grade students reaching the advanced international benchmark of mathematics achievement (%) is the share of male 4th grade students scoring at least 625 on the mathematics assessment. Students at this benchmark can apply their understanding and knowledge in a variety of relatively complex situations and explain their reasoning. They can solve a variety of multi-step word problems involving whole numbers including proportions. Students at this level show an increasing understanding of fractions and decimals. Students can apply geometric knowledge of a range of two- and three-dimensional shapes in a variety of situations. They can draw a conclusion from data in a table and justify their conclusion. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT4.BL\",\"TIMSS: Fourth grade students who did not reach the low international benchmark of mathematics achievement (%)\",\"TIMSS: Fourth grade students who did not reach the low international benchmark of mathematics achievement (%) is the share of 4th grade students scoring below 400 on the mathematics assessment. This indicator is calculated by subtracting the share of students reaching the low international benchmark from 100. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT4.BL.FE\",\"TIMSS: Female 4th grade students who did not reach the low international benchmark of mathematics achievement (%)\",\"TIMSS: Female 4th grade students who did not reach the low international benchmark of mathematics achievement (%) is the share of female 4th grade students scoring below 400 on the mathematics assessment. This indicator is calculated by subtracting the share of students reaching the low international benchmark from 100. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT4.BL.MA\",\"TIMSS: Male 4th grade students who did not reach the low international benchmark of mathematics achievement (%)\",\"TIMSS: Male 4th grade students who did not reach the low international benchmark of mathematics achievement (%) is the share of male 4th grade students scoring below 400 on the mathematics assessment. This indicator is calculated by subtracting the share of students reaching the low international benchmark from 100. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT4.FE\",\"TIMSS: Mean performance on the mathematics scale for fourth grade students, female\",\"TIMSS: Mean performance on the mathematics scale for fourth grade students, female is the average scale score for female 4th graders on the mathematics assessment. The scale centerpoint is 500. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT4.HI\",\"TIMSS: Fourth grade students reaching the high international benchmark of mathematics achievement (%)\",\"TIMSS: Fourth grade students reaching the high international benchmark of mathematics achievement (%) is the share of 4th grade students scoring at least 550 on the mathematics assessment. Students at this benchmark can apply their knowledge and understanding to solve problems. Students can solve word problems involving operations with whole numbers. They can use division in a variety of problem situations. They can use their understanding of place value to solve problems. Students can extend patterns to find a later specified term. Students demonstrate understanding of line symmetry and geometric properties. Students can interpret and use data in tables and graphs to solve problems. They can use information in pictographs and tally charts to complete bar graphs. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT4.HI.FE\",\"TIMSS: Female 4th grade students reaching the high international benchmark of mathematics achievement (%)\",\"TIMSS: Female 4th grade students reaching the high international benchmark of mathematics achievement (%) is the share of female 4th grade students scoring at least 550 on the mathematics assessment. Students at this benchmark can apply their knowledge and understanding to solve problems. Students can solve word problems involving operations with whole numbers. They can use division in a variety of problem situations. They can use their understanding of place value to solve problems. Students can extend patterns to find a later specified term. Students demonstrate understanding of line symmetry and geometric properties. Students can interpret and use data in tables and graphs to solve problems. They can use information in pictographs and tally charts to complete bar graphs. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT4.HI.MA\",\"TIMSS: Male 4th grade students reaching the high international benchmark of mathematics achievement (%)\",\"TIMSS: Male 4th grade students reaching the high international benchmark of mathematics achievement (%) is the share of male 4th grade students scoring at least 550 on the mathematics assessment. Students at this benchmark can apply their knowledge and understanding to solve problems. Students can solve word problems involving operations with whole numbers. They can use division in a variety of problem situations. They can use their understanding of place value to solve problems. Students can extend patterns to find a later specified term. Students demonstrate understanding of line symmetry and geometric properties. Students can interpret and use data in tables and graphs to solve problems. They can use information in pictographs and tally charts to complete bar graphs. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT4.INT\",\"TIMSS: Fourth grade students reaching the intermediate international benchmark of mathematics achievement (%)\",\"TIMSS: Fourth grade students reaching the intermediate international benchmark of mathematics achievement (%) is the share of 4th grade students scoring at least 475 on the mathematics assessment. Students at this benchmark can apply basic mathematical knowledge in straightforward situations. Students at this level demonstrate an understanding of whole numbers and some understanding of fractions. Students can visualize three-dimensional shapes from two-dimensional representations. They can interpret bar graphs, pictographs, and tables to solve simple problems. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT4.INT.FE\",\"TIMSS: Female 4th grade students reaching the intermediate international benchmark of mathematics achievement (%)\",\"TIMSS: Female 4th grade students reaching the intermediate international benchmark of mathematics achievement (%) is the share of female 4th grade students scoring at least 475 on the mathematics assessment. Students at this benchmark can apply basic mathematical knowledge in straightforward situations. Students at this level demonstrate an understanding of whole numbers and some understanding of fractions. Students can visualize three-dimensional shapes from two-dimensional representations. They can interpret bar graphs, pictographs, and tables to solve simple problems. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT4.INT.MA\",\"TIMSS: Male 4th grade students reaching the intermediate international benchmark of mathematics achievement (%)\",\"TIMSS: Male 4th grade students reaching the intermediate international benchmark of mathematics achievement (%) is the share of male 4th grade students scoring at least 475 on the mathematics assessment. Students at this benchmark can apply basic mathematical knowledge in straightforward situations. Students at this level demonstrate an understanding of whole numbers and some understanding of fractions. Students can visualize three-dimensional shapes from two-dimensional representations. They can interpret bar graphs, pictographs, and tables to solve simple problems. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT4.LOW\",\"TIMSS: Fourth grade students reaching the low international benchmark of mathematics achievement (%)\",\"TIMSS: Fourth grade students reaching the low international benchmark of mathematics achievement (%) is the share of 4th grade students scoring at least 400 on the mathematics assessment. Students at this benchmark have some basic mathematical knowledge. Students can add and subtract whole numbers. They have some recognition of parallel and perpendicular lines, familiar geometric shapes, and coordinate maps. They can read and complete simple bar graphs and tables. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT4.LOW.FE\",\"TIMSS: Female 4th grade students reaching the low international benchmark of mathematics achievement (%)\",\"TIMSS: Female 4th grade students reaching the low international benchmark of mathematics achievement (%) is the share of female 4th grade students scoring at least 400 on the mathematics assessment. Students at this benchmark have some basic mathematical knowledge. Students can add and subtract whole numbers. They have some recognition of parallel and perpendicular lines, familiar geometric shapes, and coordinate maps. They can read and complete simple bar graphs and tables. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT4.LOW.MA\",\"TIMSS: Male 4th grade students reaching the low international benchmark of mathematics achievement (%)\",\"TIMSS: Male 4th grade students reaching the low international benchmark of mathematics achievement (%) is the share of male 4th grade students scoring at least 400 on the mathematics assessment. Students at this benchmark have some basic mathematical knowledge. Students can add and subtract whole numbers. They have some recognition of parallel and perpendicular lines, familiar geometric shapes, and coordinate maps. They can read and complete simple bar graphs and tables. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT4.MA\",\"TIMSS: Mean performance on the mathematics scale for fourth grade students, male\",\"TIMSS: Mean performance on the mathematics scale for fourth grade students, male is the average scale score for male 4th graders on the mathematics assessment. The scale centerpoint is 500. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT4.P05\",\"TIMSS: Distribution of 4th Grade Mathematics Scores: 5th Percentile Score\",\"The 5th percentile score is the score below which 5 percent of students scored. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT4.P10\",\"TIMSS: Distribution of 4th Grade Mathematics Scores: 10th Percentile Score\",\"The 10th percentile score is the score below which 10 percent of students scored. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT4.P25\",\"TIMSS: Distribution of 4th Grade Mathematics Scores: 25th Percentile Score\",\"The 25th percentile score is the score below which 25 percent of students scored. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT4.P50\",\"TIMSS: Distribution of 4th Grade Mathematics Scores: 50th Percentile Score\",\"The 50th percentile score is the score below which 50 percent of students scored. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT4.P75\",\"TIMSS: Distribution of 4th Grade Mathematics Scores: 75th Percentile Score\",\"The 75th percentile score is the score below which 75 percent of students scored. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT4.P90\",\"TIMSS: Distribution of 4th Grade Mathematics Scores: 90th Percentile Score\",\"The 90th percentile score is the score below which 90 percent of students scored. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT4.P95\",\"TIMSS: Distribution of 4th Grade Mathematics Scores: 95th Percentile Score\",\"The 95th percentile score is the score below which 90 percent of students scored. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT8\",\"TIMSS: Mean performance on the mathematics scale for eighth grade students, total\",\"TIMSS: Mean performance on the mathematics scale for eighth grade students, total is the average scale score for 8th graders on the mathematics assessment. The scale centerpoint is 500. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT8.ADV\",\"TIMSS: Eighth grade students reaching the advanced international benchmark of mathematics achievement (%)\",\"TIMSS: Eighth grade students reaching the advanced international benchmark of mathematics achievement (%) is the share of 8th grade students scoring at least 625 on the mathematics assessment. Students at this benchmark can reason with information, draw conclusions, make generalizations, and solve linear equations. Students can solve a variety of fraction, proportion, and percent problems and justify their conclusions. Students can express generalizations algebraically and model situations. They can solve a variety of problems involving equations, formulas, and functions. Students can reason with geometric figures to solve problems. Students can reason with data from several sources or unfamiliar representations to solve multi-step problems. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT8.ADV.FE\",\"TIMSS: Female 8th grade students reaching the advanced international benchmark of mathematics achievement (%)\",\"TIMSS: Female 8th grade students reaching the advanced international benchmark of mathematics achievement (%) is the share of female 8th grade students scoring at least 625 on the mathematics assessment. Students at this benchmark can reason with information, draw conclusions, make generalizations, and solve linear equations. Students can solve a variety of fraction, proportion, and percent problems and justify their conclusions. Students can express generalizations algebraically and model situations. They can solve a variety of problems involving equations, formulas, and functions. Students can reason with geometric figures to solve problems. Students can reason with data from several sources or unfamiliar representations to solve multi-step problems. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT8.ADV.MA\",\"TIMSS: Male 8th grade students reaching the advanced international benchmark of mathematics achievement (%)\",\"TIMSS: Male 8th grade students reaching the advanced international benchmark of mathematics achievement (%) is the share of male 8th grade students scoring at least 625 on the mathematics assessment. Students at this benchmark can reason with information, draw conclusions, make generalizations, and solve linear equations. Students can solve a variety of fraction, proportion, and percent problems and justify their conclusions. Students can express generalizations algebraically and model situations. They can solve a variety of problems involving equations, formulas, and functions. Students can reason with geometric figures to solve problems. Students can reason with data from several sources or unfamiliar representations to solve multi-step problems. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT8.BL\",\"TIMSS: Eighth grade students who did not reach the low international benchmark of mathematics achievement (%)\",\"TIMSS: Eighth grade students who did not reach the low international benchmark of mathematics achievement (%) is the share of 8th grade students scoring below 400 on the mathematics assessment. This indicator is calculated by subtracting the share of students reaching the low international benchmark from 100. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT8.BL.FE\",\"TIMSS: Female 8th grade students who did not reach the low international benchmark of mathematics achievement (%)\",\"TIMSS: Female 8th grade students who did not reach the low international benchmark of mathematics achievement (%) is the share of female 8th grade students scoring below 400 on the mathematics assessment. This indicator is calculated by subtracting the share of students reaching the low international benchmark from 100. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT8.BL.MA\",\"TIMSS: Male 8th grade students who did not reach the low international benchmark of mathematics achievement (%)\",\"TIMSS: Male 8th grade students who did not reach the low international benchmark of mathematics achievement (%) is the share of male 8th grade students scoring below 400 on the mathematics assessment. This indicator is calculated by subtracting the share of students reaching the low international benchmark from 100. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT8.FE\",\"TIMSS: Mean performance on the mathematics scale for eighth grade students, female\",\"TIMSS: Mean performance on the mathematics scale for eighth grade students, female is the average scale score for female 8th graders on the mathematics assessment. The scale centerpoint is 500. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT8.HI\",\"TIMSS: Eighth grade students reaching the high international benchmark of mathematics achievement (%)\",\"TIMSS: Eighth grade students reaching the high international benchmark of mathematics achievement (%) is the share of 8th grade students scoring at least 550 on the mathematics assessment. Students at this benchmark can apply their understanding and knowledge in a variety of relatively complex situations. Students can use information from several sources to solve problems involving different types of numbers and operations. Students can relate fractions, decimals, and percents to each other. Students at this level show basic procedural knowledge related to algebraic expressions. They can use properties of lines, angles, triangles, rectangles, and rectangular prisms to solve problems. They can analyze data in a variety of graphs. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT8.HI.FE\",\"TIMSS: Female 8th grade students reaching the high international benchmark of mathematics achievement (%)\",\"TIMSS: Female 8th grade students reaching the high international benchmark of mathematics achievement (%) is the share of female 8th grade students scoring at least 550 on the mathematics assessment. Students at this benchmark can apply their understanding and knowledge in a variety of relatively complex situations. Students can use information from several sources to solve problems involving different types of numbers and operations. Students can relate fractions, decimals, and percents to each other. Students at this level show basic procedural knowledge related to algebraic expressions. They can use properties of lines, angles, triangles, rectangles, and rectangular prisms to solve problems. They can analyze data in a variety of graphs. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT8.HI.MA\",\"TIMSS: Male 8th grade students reaching the high international benchmark of mathematics achievement (%)\",\"TIMSS: Male 8th grade students reaching the high international benchmark of mathematics achievement (%) is the share of male 8th grade students scoring at least 550 on the mathematics assessment. Students at this benchmark can apply their understanding and knowledge in a variety of relatively complex situations. Students can use information from several sources to solve problems involving different types of numbers and operations. Students can relate fractions, decimals, and percents to each other. Students at this level show basic procedural knowledge related to algebraic expressions. They can use properties of lines, angles, triangles, rectangles, and rectangular prisms to solve problems. They can analyze data in a variety of graphs. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT8.INT\",\"TIMSS: Eighth grade students reaching the intermediate international benchmark of mathematics achievement (%)\",\"TIMSS: Eighth grade students reaching the intermediate international benchmark of mathematics achievement (%) is the share of 8th grade students scoring at least 475 on the mathematics assessment. Students at this benchmark can apply basic mathematical knowledge in a variety of situations. Students can solve problems involving decimals, fractions, proportions, and percentages. They understand simple algebraic relationships. Students can relate a two-dimensional drawing to a three-dimensional object. They can read, interpret, and construct graphs and tables. They recognize basic notions of likelihood. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT8.INT.FE\",\"TIMSS: Female 8th grade students reaching the intermediate international benchmark of mathematics achievement (%)\",\"TIMSS: Female 8th grade students reaching the intermediate international benchmark of mathematics achievement (%) is the share of female 8th grade students scoring at least 475 on the mathematics assessment. Students at this benchmark can apply basic mathematical knowledge in a variety of situations. Students can solve problems involving decimals, fractions, proportions, and percentages. They understand simple algebraic relationships. Students can relate a two-dimensional drawing to a three-dimensional object. They can read, interpret, and construct graphs and tables. They recognize basic notions of likelihood. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT8.INT.MA\",\"TIMSS: Male 8th grade students reaching the intermediate international benchmark of mathematics achievement (%)\",\"TIMSS: Male 8th grade students reaching the intermediate international benchmark of mathematics achievement (%) is the share of male 8th grade students scoring at least 475 on the mathematics assessment. Students at this benchmark can apply basic mathematical knowledge in a variety of situations. Students can solve problems involving decimals, fractions, proportions, and percentages. They understand simple algebraic relationships. Students can relate a two-dimensional drawing to a three-dimensional object. They can read, interpret, and construct graphs and tables. They recognize basic notions of likelihood. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT8.LOW\",\"TIMSS: Eighth grade students reaching the low international benchmark of mathematics achievement (%)\",\"TIMSS: Eighth grade students reaching the low international benchmark of mathematics achievement (%) is the share of 8th grade students scoring at least 400 on the mathematics assessment. Students at this benchmark have some knowledge of whole numbers and decimals, operations, and basic graphs. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT8.LOW.FE\",\"TIMSS: Female 8th grade students reaching the low international benchmark of mathematics achievement (%)\",\"TIMSS: Female 8th grade students reaching the low international benchmark of mathematics achievement (%) is the share of female 8th grade students scoring at least 400 on the mathematics assessment. Students at this benchmark have some knowledge of whole numbers and decimals, operations, and basic graphs. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT8.LOW.MA\",\"TIMSS: Male 8th grade students reaching the low international benchmark of mathematics achievement (%)\",\"TIMSS: Male 8th grade students reaching the low international benchmark of mathematics achievement (%) is the share of male 8th grade students scoring at least 400 on the mathematics assessment. Students at this benchmark have some knowledge of whole numbers and decimals, operations, and basic graphs. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT8.MA\",\"TIMSS: Mean performance on the mathematics scale for eighth grade students, male\",\"TIMSS: Mean performance on the mathematics scale for eighth grade students, male is the average scale score for male 8th graders on the mathematics assessment. The scale centerpoint is 500. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT8.P05\",\"TIMSS: Distribution of 8th Grade Mathematics Scores: 5th Percentile Score\",\"The 5th percentile score is the score below which 5 percent of students scored. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT8.P10\",\"TIMSS: Distribution of 8th Grade Mathematics Scores: 10th Percentile Score\",\"The 10th percentile score is the score below which 10 percent of students scored. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT8.P25\",\"TIMSS: Distribution of 8th Grade Mathematics Scores: 25th Percentile Score\",\"The 25th percentile score is the score below which 25 percent of students scored. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT8.P50\",\"TIMSS: Distribution of 8th Grade Mathematics Scores: 50th Percentile Score\",\"The 50th percentile score is the score below which 50 percent of students scored. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT8.P75\",\"TIMSS: Distribution of 8th Grade Mathematics Scores: 75th Percentile Score\",\"The 75th percentile score is the score below which 75 percent of students scored. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT8.P90\",\"TIMSS: Distribution of 8th Grade Mathematics Scores: 90th Percentile Score\",\"The 90th percentile score is the score below which 90 percent of students scored. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.MAT8.P95\",\"TIMSS: Distribution of 8th Grade Mathematics Scores: 95th Percentile Score\",\"The 95th percentile score is the score below which 90 percent of students scored. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI4\",\"TIMSS: Mean performance on the science scale for fourth grade students, total\",\"TIMSS: Mean performance on the science scale for fourth grade students, total is the average scale score for 4th graders on the science assessment. The scale centerpoint is 500. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI4.ADV\",\"TIMSS: Fourth grade students reaching the advanced international benchmark of science achievement (%)\",\"TIMSS: Fourth grade students reaching the advanced international benchmark of science achievement (%) is the share of 4th grade students scoring at least 625 on the science assessment. Students reaching this benchmark can apply knowledge and understanding of scientific processes and relationships and show some knowledge of the process of scientific inquiry. Students communicate their understanding of characteristics and life processes of organisms, reproduction and development, ecosystems and organisms' interactions with the environment, and factors relating to human health. They demonstrate understanding of properties of light and relationships among physical properties of materials, apply and communicate their understanding of electricity and energy in practical contexts, and demonstrate an understanding of magnetic and gravitational forces and motion. Students communicate their understanding of the solar system and of Earth’s structure, physical characteristics, resources, processes, cycles, and history. They have a beginning ability to interpret results in the context of a simple experiment, reason and draw conclusions from descriptions and diagrams, and evaluate and support an argument. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI4.ADV.FE\",\"TIMSS: Female 4th grade students reaching the advanced international benchmark of science achievement (%)\",\"TIMSS: Female 4th grade students reaching the advanced international benchmark of science achievement (%) is the share of female 4th grade students scoring at least 625 on the science assessment. Students reaching this benchmark can apply knowledge and understanding of scientific processes and relationships and show some knowledge of the process of scientific inquiry. Students communicate their understanding of characteristics and life processes of organisms, reproduction and development, ecosystems and organisms' interactions with the environment, and factors relating to human health. They demonstrate understanding of properties of light and relationships among physical properties of materials, apply and communicate their understanding of electricity and energy in practical contexts, and demonstrate an understanding of magnetic and gravitational forces and motion. Students communicate their understanding of the solar system and of Earth’s structure, physical characteristics, resources, processes, cycles, and history. They have a beginning ability to interpret results in the context of a simple experiment, reason and draw conclusions from descriptions and diagrams, and evaluate and support an argument. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI4.ADV.MA\",\"TIMSS: Male 4th grade students reaching the advanced international benchmark of science achievement (%)\",\"TIMSS: Male 4th grade students reaching the advanced international benchmark of science achievement (%) is the share of male 4th grade students scoring at least 625 on the science assessment. Students reaching this benchmark can apply knowledge and understanding of scientific processes and relationships and show some knowledge of the process of scientific inquiry. Students communicate their understanding of characteristics and life processes of organisms, reproduction and development, ecosystems and organisms' interactions with the environment, and factors relating to human health. They demonstrate understanding of properties of light and relationships among physical properties of materials, apply and communicate their understanding of electricity and energy in practical contexts, and demonstrate an understanding of magnetic and gravitational forces and motion. Students communicate their understanding of the solar system and of Earth’s structure, physical characteristics, resources, processes, cycles, and history. They have a beginning ability to interpret results in the context of a simple experiment, reason and draw conclusions from descriptions and diagrams, and evaluate and support an argument. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI4.BL\",\"TIMSS: Fourth grade students who did not reach the low international benchmark of science achievement (%)\",\"TIMSS: Fourth grade students who did not reach the low international benchmark of science achievement (%) is the share of 4th grade students scoring below 400 on the science assessment. This indicator is calculated by subtracting the share of students reaching the low international benchmark from 100. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI4.BL.FE\",\"TIMSS: Female 4th grade students who did not reach the low international benchmark of science achievement (%)\",\"TIMSS: Female 4th grade students who did not reach the low international benchmark of science achievement (%) is the share of female 4th grade students scoring below 400 on the science assessment. This indicator is calculated by subtracting the share of students reaching the low international benchmark from 100. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI4.BL.MA\",\"TIMSS: Male 4th grade students who did not reach the low international benchmark of science achievement (%)\",\"TIMSS: Male 4th grade students who did not reach the low international benchmark of science achievement (%) is the share of male 4th grade students scoring below 400 on the science assessment. This indicator is calculated by subtracting the share of students reaching the low international benchmark from 100. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI4.FE\",\"TIMSS: Mean performance on the science scale for fourth grade students, female\",\"TIMSS: Mean performance on the science scale for fourth grade students, female is the average scale score for female 4th graders on the science assessment. The scale centerpoint is 500. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI4.HI\",\"TIMSS: Fourth grade students reaching the high international benchmark of science achievement (%)\",\"TIMSS: Fourth grade students reaching the high international benchmark of science achievement (%) is the share of 4th grade students scoring at least 550 on the science assessment. Students reaching this benchmark can apply their knowledge and understanding of the sciences to explain phenomena in everyday and abstract contexts. Students demonstrate some understanding of plant and animal structure, life processes, life cycles, and reproduction. They also demonstrate some understanding of ecosystems and organisms' interactions with their environment, including understanding of human responses to outside conditions and activities. Students demonstrate understanding of some properties of matter, electricity and energy, and magnetic and gravitational forces and motion. They show some knowledge of the solar system, and of Earth’s physical characteristics, processes, and resources. Students demonstrate elementary knowledge and skills related to scientific inquiry. They compare, contrast, and make simple inferences, and provide brief descriptive responses combining knowledge of science concepts with information from both everyday and abstract contexts. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI4.HI.FE\",\"TIMSS: Female 4th grade students reaching the high international benchmark of science achievement (%)\",\"TIMSS: Female 4th grade students reaching the high international benchmark of science achievement (%) is the share of female 4th grade students scoring at least 550 on the science assessment. Students reaching this benchmark can apply their knowledge and understanding of the sciences to explain phenomena in everyday and abstract contexts. Students demonstrate some understanding of plant and animal structure, life processes, life cycles, and reproduction. They also demonstrate some understanding of ecosystems and organisms' interactions with their environment, including understanding of human responses to outside conditions and activities. Students demonstrate understanding of some properties of matter, electricity and energy, and magnetic and gravitational forces and motion. They show some knowledge of the solar system, and of Earth’s physical characteristics, processes, and resources. Students demonstrate elementary knowledge and skills related to scientific inquiry. They compare, contrast, and make simple inferences, and provide brief descriptive responses combining knowledge of science concepts with information from both everyday and abstract contexts. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI4.HI.MA\",\"TIMSS: Male 4th grade students reaching the high international benchmark of science achievement (%)\",\"TIMSS: Male 4th grade students reaching the high international benchmark of science achievement (%) is the share of male 4th grade students scoring at least 550 on the science assessment. Students reaching this benchmark can apply their knowledge and understanding of the sciences to explain phenomena in everyday and abstract contexts. Students demonstrate some understanding of plant and animal structure, life processes, life cycles, and reproduction. They also demonstrate some understanding of ecosystems and organisms' interactions with their environment, including understanding of human responses to outside conditions and activities. Students demonstrate understanding of some properties of matter, electricity and energy, and magnetic and gravitational forces and motion. They show some knowledge of the solar system, and of Earth’s physical characteristics, processes, and resources. Students demonstrate elementary knowledge and skills related to scientific inquiry. They compare, contrast, and make simple inferences, and provide brief descriptive responses combining knowledge of science concepts with information from both everyday and abstract contexts. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI4.INT\",\"TIMSS: Fourth grade students reaching the intermediate international benchmark of science achievement (%)\",\"TIMSS: Fourth grade students reaching the intermediate international benchmark of science achievement (%) is the share of 4th grade students scoring at least 475 on the science assessment. Students reaching this benchmark have basic knowledge and understanding of practical situations in the sciences. Students recognize some basic information related to characteristics of living things, their reproduction and life cycles, and their interactions with the environment, and show some understanding of human biology and health. They also show some knowledge of properties of matter and light, electricity and energy, and forces and motion. Students know some basic facts about the solar system and show an initial understanding of Earth’s physical characteristics and resources. They demonstrate ability to interpret information in pictorial diagrams and apply factual knowledge to practical situations. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI4.INT.FE\",\"TIMSS: Female 4th grade students reaching the intermediate international benchmark of science achievement (%)\",\"TIMSS: Female 4th grade students reaching the intermediate international benchmark of science achievement (%) is the share of female 4th grade students scoring at least 475 on the science assessment. Students reaching this benchmark have basic knowledge and understanding of practical situations in the sciences. Students recognize some basic information related to characteristics of living things, their reproduction and life cycles, and their interactions with the environment, and show some understanding of human biology and health. They also show some knowledge of properties of matter and light, electricity and energy, and forces and motion. Students know some basic facts about the solar system and show an initial understanding of Earth’s physical characteristics and resources. They demonstrate ability to interpret information in pictorial diagrams and apply factual knowledge to practical situations. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI4.INT.MA\",\"TIMSS: Male 4th grade students reaching the intermediate international benchmark of science achievement (%)\",\"TIMSS: Male 4th grade students reaching the intermediate international benchmark of science achievement (%) is the share of male 4th grade students scoring at least 475 on the science assessment. Students reaching this benchmark have basic knowledge and understanding of practical situations in the sciences. Students recognize some basic information related to characteristics of living things, their reproduction and life cycles, and their interactions with the environment, and show some understanding of human biology and health. They also show some knowledge of properties of matter and light, electricity and energy, and forces and motion. Students know some basic facts about the solar system and show an initial understanding of Earth’s physical characteristics and resources. They demonstrate ability to interpret information in pictorial diagrams and apply factual knowledge to practical situations. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI4.LOW\",\"TIMSS: Fourth grade students reaching the low international benchmark of science achievement (%)\",\"TIMSS: Fourth grade students reaching the low international benchmark of science achievement (%) is the share of 4th grade students scoring at least 400 on the science assessment. Students reaching this benchmark show some elementary knowledge of life, physical, and earth sciences. Students demonstrate knowledge of some simple facts related to human health, ecosystems, and the behavioral and physical characteristics of animals. They also demonstrate some basic knowledge of energy and the physical properties of matter. Students interpret simple diagrams, complete simple tables, and provide short written responses to questions requiring factual information. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI4.LOW.FE\",\"TIMSS: Female 4th grade students reaching the low international benchmark of science achievement (%)\",\"TIMSS: Female 4th grade students reaching the low international benchmark of science achievement (%) is the share of female 4th grade students scoring at least 400 on the science assessment. Students reaching this benchmark show some elementary knowledge of life, physical, and earth sciences. Students demonstrate knowledge of some simple facts related to human health, ecosystems, and the behavioral and physical characteristics of animals. They also demonstrate some basic knowledge of energy and the physical properties of matter. Students interpret simple diagrams, complete simple tables, and provide short written responses to questions requiring factual information. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI4.LOW.MA\",\"TIMSS: Male 4th grade students reaching the low international benchmark of science achievement (%)\",\"TIMSS: Male 4th grade students reaching the low international benchmark of science achievement (%) is the share of male 4th grade students scoring at least 400 on the science assessment. Students reaching this benchmark show some elementary knowledge of life, physical, and earth sciences. Students demonstrate knowledge of some simple facts related to human health, ecosystems, and the behavioral and physical characteristics of animals. They also demonstrate some basic knowledge of energy and the physical properties of matter. Students interpret simple diagrams, complete simple tables, and provide short written responses to questions requiring factual information. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI4.MA\",\"TIMSS: Mean performance on the science scale for fourth grade students, male\",\"TIMSS: Mean performance on the science scale for fourth grade students, male is the average scale score for male 4th graders on the science assessment. The scale centerpoint is 500. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI4.P05\",\"TIMSS: Distribution of 4th Grade Science Scores: 5th Percentile Score\",\"The 5th percentile score is the score below which 5 percent of students scored. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI4.P10\",\"TIMSS: Distribution of 4th Grade Science Scores: 10th Percentile Score\",\"The 10th percentile score is the score below which 10 percent of students scored. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI4.P25\",\"TIMSS: Distribution of 4th Grade Science Scores: 25th Percentile Score\",\"The 25th percentile score is the score below which 25 percent of students scored. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI4.P50\",\"TIMSS: Distribution of 4th Grade Science Scores: 50th Percentile Score\",\"The 50th percentile score is the score below which 50 percent of students scored. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI4.P75\",\"TIMSS: Distribution of 4th Grade Science Scores: 75th Percentile Score\",\"The 75th percentile score is the score below which 75 percent of students scored. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI4.P90\",\"TIMSS: Distribution of 4th Grade Science Scores: 90th Percentile Score\",\"The 90th percentile score is the score below which 90 percent of students scored. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI4.P95\",\"TIMSS: Distribution of 4th Grade Science Scores: 95th Percentile Score\",\"The 95th percentile score is the score below which 90 percent of students scored. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI8\",\"TIMSS: Mean performance on the science scale for eighth grade students, total\",\"TIMSS: Mean performance on the science scale for eighth grade students, total is the average scale score for 8th graders on the science assessment. The scale centerpoint is 500. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI8.ADV\",\"TIMSS: Eighth grade students reaching the advanced international benchmark of science achievement (%)\",\"TIMSS: Eighth grade students reaching the advanced international benchmark of science achievement (%) is the share of 8th grade students scoring at least 625 on the science assessment. Students at this benchmark can communicate an understanding of complex and abstract concepts in biology, chemistry, physics, and earth science. Students demonstrate some conceptual knowledge about cells and the characteristics, classification, and life processes of organisms. They communicate an understanding of the complexity of ecosystems and adaptations of organisms, and apply an understanding of life cycles and heredity. Students also communicate an understanding of the structure of matter and physical and chemical properties and changes and apply knowledge of forces, pressure, motion, sound, and light. They reason about electrical circuits and properties of magnets. Students apply knowledge and communicate understanding of the solar system and Earth’s processes, structures, and physical features. They understand basic features of scientific investigation. They also combine information from several sources to solve problems and draw conclusions, and they provide written explanations to communicate scientific knowledge. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI8.ADV.FE\",\"TIMSS: Female 8th grade students reaching the advanced international benchmark of science achievement (%)\",\"TIMSS: Female 8th grade students reaching the advanced international benchmark of science achievement (%) is the share of female 8th grade students scoring at least 625 on the science assessment. Students at this benchmark can communicate an understanding of complex and abstract concepts in biology, chemistry, physics, and earth science. Students demonstrate some conceptual knowledge about cells and the characteristics, classification, and life processes of organisms. They communicate an understanding of the complexity of ecosystems and adaptations of organisms, and apply an understanding of life cycles and heredity. Students also communicate an understanding of the structure of matter and physical and chemical properties and changes and apply knowledge of forces, pressure, motion, sound, and light. They reason about electrical circuits and properties of magnets. Students apply knowledge and communicate understanding of the solar system and Earth’s processes, structures, and physical features. They understand basic features of scientific investigation. They also combine information from several sources to solve problems and draw conclusions, and they provide written explanations to communicate scientific knowledge. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI8.ADV.MA\",\"TIMSS: Male 8th grade students reaching the advanced international benchmark of science achievement (%)\",\"TIMSS: Male 8th grade students reaching the advanced international benchmark of science achievement (%) is the share of male 8th grade students scoring at least 625 on the science assessment. Students at this benchmark can communicate an understanding of complex and abstract concepts in biology, chemistry, physics, and earth science. Students demonstrate some conceptual knowledge about cells and the characteristics, classification, and life processes of organisms. They communicate an understanding of the complexity of ecosystems and adaptations of organisms, and apply an understanding of life cycles and heredity. Students also communicate an understanding of the structure of matter and physical and chemical properties and changes and apply knowledge of forces, pressure, motion, sound, and light. They reason about electrical circuits and properties of magnets. Students apply knowledge and communicate understanding of the solar system and Earth’s processes, structures, and physical features. They understand basic features of scientific investigation. They also combine information from several sources to solve problems and draw conclusions, and they provide written explanations to communicate scientific knowledge. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI8.BL\",\"TIMSS: Eighth grade students who did not reach the low international benchmark of science achievement (%)\",\"TIMSS: Eighth grade students who did not reach the low international benchmark of science achievement (%) is the share of 8th grade students scoring below 400 on the science assessment. This indicator is calculated by subtracting the share of students reaching the low international benchmark from 100. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI8.BL.FE\",\"TIMSS: Female 8th grade students who did not reach the low international benchmark of science achievement (%)\",\"TIMSS: Female 8th grade students who did not reach the low international benchmark of science achievement (%) is the share of female 8th grade students scoring below 400 on the science assessment. This indicator is calculated by subtracting the share of students reaching the low international benchmark from 100. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI8.BL.MA\",\"TIMSS: Male 8th grade students who did not reach the low international benchmark of science achievement (%)\",\"TIMSS: Male 8th grade students who did not reach the low international benchmark of science achievement (%) is the share of male 8th grade students scoring below 400 on the science assessment. This indicator is calculated by subtracting the share of students reaching the low international benchmark from 100. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI8.FE\",\"TIMSS: Mean performance on the science scale for eighth grade students, female\",\"TIMSS: Mean performance on the science scale for eighth grade students, female is the average scale score for female 8th graders on the science assessment. The scale centerpoint is 500. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI8.HI\",\"TIMSS: Eighth grade students reaching the high international benchmark of science achievement (%)\",\"TIMSS: Eighth grade students reaching the high international benchmark of science achievement (%) is the share of 8th grade students scoring at least 550 on the science assessment. Students at this benchmark can demonstrate understanding of concepts related to science cycles, systems, and principles. They demonstrate understanding of aspects of human biology, and of the characteristics, classification, and life processes of organisms. Students communicate understanding of processes and relationships in ecosystems. They show an understanding of the classification and compositions of matter and chemical and physical properties and changes. They apply knowledge to situations related to light and sound and demonstrate basic knowledge of heat and temperature, forces and motion, and electrical circuits and magnets. Students demonstrate an understanding of the solar system and of Earth’s processes, physical features, and resources. They demonstrate some scientific inquiry skills. They also combine and interpret information from various types of diagrams, contour maps, graphs, and tables; select relevant information, analyze, and draw conclusions; and provide short explanations conveying scientific knowledge. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI8.HI.FE\",\"TIMSS: Female 8th grade students reaching the high international benchmark of science achievement (%)\",\"TIMSS: Female 8th grade students reaching the high international benchmark of science achievement (%) is the share of female 8th grade students scoring at least 550 on the science assessment. Students at this benchmark can demonstrate understanding of concepts related to science cycles, systems, and principles. They demonstrate understanding of aspects of human biology, and of the characteristics, classification, and life processes of organisms. Students communicate understanding of processes and relationships in ecosystems. They show an understanding of the classification and compositions of matter and chemical and physical properties and changes. They apply knowledge to situations related to light and sound and demonstrate basic knowledge of heat and temperature, forces and motion, and electrical circuits and magnets. Students demonstrate an understanding of the solar system and of Earth’s processes, physical features, and resources. They demonstrate some scientific inquiry skills. They also combine and interpret information from various types of diagrams, contour maps, graphs, and tables; select relevant information, analyze, and draw conclusions; and provide short explanations conveying scientific knowledge. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI8.HI.MA\",\"TIMSS: Male 8th grade students reaching the high international benchmark of science achievement (%)\",\"TIMSS: Male 8th grade students reaching the high international benchmark of science achievement (%) is the share of male 8th grade students scoring at least 550 on the science assessment. Students at this benchmark can demonstrate understanding of concepts related to science cycles, systems, and principles. They demonstrate understanding of aspects of human biology, and of the characteristics, classification, and life processes of organisms. Students communicate understanding of processes and relationships in ecosystems. They show an understanding of the classification and compositions of matter and chemical and physical properties and changes. They apply knowledge to situations related to light and sound and demonstrate basic knowledge of heat and temperature, forces and motion, and electrical circuits and magnets. Students demonstrate an understanding of the solar system and of Earth’s processes, physical features, and resources. They demonstrate some scientific inquiry skills. They also combine and interpret information from various types of diagrams, contour maps, graphs, and tables; select relevant information, analyze, and draw conclusions; and provide short explanations conveying scientific knowledge. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI8.INT\",\"TIMSS: Eighth grade students reaching the intermediate international benchmark of science achievement (%)\",\"TIMSS: Eighth grade students reaching the intermediate international benchmark of science achievement (%) is the share of 8th grade students scoring at least 475 on the science assessment. Students at this benchmark can recognize and apply their understanding of basic scientific knowledge in various contexts. Students apply knowledge and communicate an understanding of human health, life cycles, adaptation, and heredity, and analyze information about ecosystems. They have some knowledge of chemistry in everyday life and elementary knowledge of properties of solutions and the concept of concentration. They are acquainted with some aspects of force, motion, and energy. They demonstrate an understanding of Earth’s processes and physical features, including the water cycle and atmosphere. Students interpret information from tables, graphs, and pictorial diagrams and draw conclusions. They apply knowledge to practical situations and communicate their understanding through brief descriptive responses. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI8.INT.FE\",\"TIMSS: Female 8th grade students reaching the intermediate international benchmark of science achievement (%)\",\"TIMSS: Female 8th grade students reaching the intermediate international benchmark of science achievement (%) is the share of female 8th grade students scoring at least 475 on the science assessment. Students at this benchmark can recognize and apply their understanding of basic scientific knowledge in various contexts. Students apply knowledge and communicate an understanding of human health, life cycles, adaptation, and heredity, and analyze information about ecosystems. They have some knowledge of chemistry in everyday life and elementary knowledge of properties of solutions and the concept of concentration. They are acquainted with some aspects of force, motion, and energy. They demonstrate an understanding of Earth’s processes and physical features, including the water cycle and atmosphere. Students interpret information from tables, graphs, and pictorial diagrams and draw conclusions. They apply knowledge to practical situations and communicate their understanding through brief descriptive responses. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI8.INT.MA\",\"TIMSS: Male 8th grade students reaching the intermediate international benchmark of science achievement (%)\",\"TIMSS: Male 8th grade students reaching the intermediate international benchmark of science achievement (%) is the share of male 8th grade students scoring at least 475 on the science assessment. Students at this benchmark can recognize and apply their understanding of basic scientific knowledge in various contexts. Students apply knowledge and communicate an understanding of human health, life cycles, adaptation, and heredity, and analyze information about ecosystems. They have some knowledge of chemistry in everyday life and elementary knowledge of properties of solutions and the concept of concentration. They are acquainted with some aspects of force, motion, and energy. They demonstrate an understanding of Earth’s processes and physical features, including the water cycle and atmosphere. Students interpret information from tables, graphs, and pictorial diagrams and draw conclusions. They apply knowledge to practical situations and communicate their understanding through brief descriptive responses. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI8.LOW\",\"TIMSS: Eighth grade students reaching the low international benchmark of science achievement (%)\",\"TIMSS: Eighth grade students reaching the low international benchmark of science achievement (%) is the share of 8th grade students scoring at least 400 on the science assessment. Students at this benchmark can recognize some basic facts from the life and physical sciences. They have some knowledge of biology, and demonstrate some familiarity with physical phenomena. Students interpret simple pictorial diagrams, complete simple tables, and apply basic knowledge to practical situations. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI8.LOW.FE\",\"TIMSS: Female 8th grade students reaching the low international benchmark of science achievement (%)\",\"TIMSS: Female 8th grade students reaching the low international benchmark of science achievement (%) is the share of female 8th grade students scoring at least 400 on the science assessment. Students at this benchmark can recognize some basic facts from the life and physical sciences. They have some knowledge of biology, and demonstrate some familiarity with physical phenomena. Students interpret simple pictorial diagrams, complete simple tables, and apply basic knowledge to practical situations. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI8.LOW.MA\",\"TIMSS: Male 8th grade students reaching the low international benchmark of science achievement (%)\",\"TIMSS: Male 8th grade students reaching the low international benchmark of science achievement (%) is the share of male 8th grade students scoring at least 400 on the science assessment. Students at this benchmark can recognize some basic facts from the life and physical sciences. They have some knowledge of biology, and demonstrate some familiarity with physical phenomena. Students interpret simple pictorial diagrams, complete simple tables, and apply basic knowledge to practical situations. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI8.MA\",\"TIMSS: Mean performance on the science scale for eighth grade students, male\",\"TIMSS: Mean performance on the science scale for eighth grade students, male is the average scale score for male 8th graders on the science assessment. The scale centerpoint is 500. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI8.P05\",\"TIMSS: Distribution of 8th Grade Science Scores: 5th Percentile Score\",\"The 5th percentile score is the score below which 5 percent of students scored. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI8.P10\",\"TIMSS: Distribution of 8th Grade Science Scores: 10th Percentile Score\",\"The 10th percentile score is the score below which 10 percent of students scored. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI8.P25\",\"TIMSS: Distribution of 8th Grade Science Scores: 25th Percentile Score\",\"The 25th percentile score is the score below which 25 percent of students scored. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI8.P50\",\"TIMSS: Distribution of 8th Grade Science Scores: 50th Percentile Score\",\"The 50th percentile score is the score below which 50 percent of students scored. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI8.P75\",\"TIMSS: Distribution of 8th Grade Science Scores: 75th Percentile Score\",\"The 75th percentile score is the score below which 75 percent of students scored. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI8.P90\",\"TIMSS: Distribution of 8th Grade Science Scores: 90th Percentile Score\",\"The 90th percentile score is the score below which 90 percent of students scored. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LO.TIMSS.SCI8.P95\",\"TIMSS: Distribution of 8th Grade Science Scores: 95th Percentile Score\",\"The 95th percentile score is the score below which 90 percent of students scored. Data reflects country performance in the stated year according to TIMSS reports, but may not be comparable across years or countries. Consult the TIMSS website for more detailed information: http://timss.bc.edu/\",\"Education Statistics\",\"International Association for the Evaluation of Educational Achievement (IEA)'s Trends in International Mathematics and Science Study\"\n\"LOGS_CMR\",\"Logs, Cameroon, $/cum, current$\",\"Logs (West Africa), sapele, high quality (loyal and marchand), 80 centimeter or more, f.o.b. Douala, Cameroon beginning January 1996; previously of unspecified dimension\",\"Global Economic Monitor (GEM) Commodities\",\"International Tropical Timber Organization; Marches Tropicaux et Mediterraneens; World Bank.\"\n\"LOGS_MYS\",\"Logs, Malaysia, $/cum, current$\",\"Logs (Malaysia), meranti, Sarawak, sale price charged by importers, Tokyo beginning February 1993; previously average of Sabah and Sarawak weighted by Japanese import volumes\",\"Global Economic Monitor (GEM) Commodities\",\"International Tropical Timber Organization; Mokuzai Shikyo Geppo; World Bank.\"\n\"LP.EXP.DURS.MD\",\"Lead time to export, median case (days)\",\"Lead time to export is the median time (the value for 50 percent of shipments) from shipment point to port of loading. Data are from the Logistics Performance Index survey. Respondents provided separate values for the best case (10 percent of shipments) and the median case (50 percent of shipments). The data are exponentiated averages of the logarithm of single value responses and of midpoint values of range responses for the median case.\",\"World Development Indicators\",\"World Bank and Turku School of Economics, Logistic Performance Index Surveys. Data are available online at : http://www.worldbank.org/lpi. Summary results are published in Arvis and others' Connecting to Compete: Trade Logistics in the Global Economy, The Logistics Performance Index and Its Indicators report.\"\n\"LP.IMP.DURS.MD\",\"Lead time to import, median case (days)\",\"Lead time to import is the median time (the value for 50 percent of shipments) from port of discharge to arrival at the consignee. Data are from the Logistics Performance Index survey. Respondents provided separate values for the best case (10 percent of shipments) and the median case (50 percent of shipments). The data are exponentiated averages of the logarithm of single value responses and of midpoint values of range responses for the median case.\",\"World Development Indicators\",\"World Bank and Turku School of Economics, Logistic Performance Index Surveys. Data are available online at : http://www.worldbank.org/lpi. Summary results are published in Arvis and others' Connecting to Compete: Trade Logistics in the Global Economy, The Logistics Performance Index and Its Indicators report.\"\n\"LP.LPI.CUST.XQ\",\"Logistics performance index: Efficiency of customs clearance process (1=low to 5=high)\",\"Data are from Logistics Performance Index surveys conducted by the World Bank in partnership with academic and international institutions and private companies and individuals engaged in international logistics. 2009 round of surveys covered more than 5,000 country assessments by nearly 1,000 international freight forwarders. Respondents evaluate eight markets on six core dimensions on a scale from 1 (worst) to 5 (best). The markets are chosen based on the most important export and import markets of the respondent's country, random selection, and, for landlocked countries, neighboring countries that connect them with international markets. Details of the survey methodology are in Arvis and others' Connecting to Compete 2010: Trade Logistics in the Global Economy (2010). Respondents evaluated efficiency of customs clearance processes (i.e. speed, simplicity and predictability of formalities), on a rating ranging from 1 (very low) to 5 (very high). Scores are averaged across all respondents.\",\"World Development Indicators\",\"World Bank and Turku School of Economics, Logistic Performance Index Surveys. Data are available online at : http://www.worldbank.org/lpi. Summary results are published in Arvis and others' Connecting to Compete: Trade Logistics in the Global Economy, The Logistics Performance Index and Its Indicators report.\"\n\"LP.LPI.INFR.XQ\",\"Logistics performance index: Quality of trade and transport-related infrastructure (1=low to 5=high)\",\"Data are from Logistics Performance Index surveys conducted by the World Bank in partnership with academic and international institutions and private companies and individuals engaged in international logistics. 2009 round of surveys covered more than 5,000 country assessments by nearly 1,000 international freight forwarders. Respondents evaluate eight markets on six core dimensions on a scale from 1 (worst) to 5 (best). The markets are chosen based on the most important export and import markets of the respondent's country, random selection, and, for landlocked countries, neighboring countries that connect them with international markets. Details of the survey methodology are in Arvis and others' Connecting to Compete 2010: Trade Logistics in the Global Economy (2010). Respondents evaluated the quality of trade and transport related infrastructure (e.g. ports, railroads, roads, information technology), on a rating ranging from 1 (very low) to 5 (very high). Scores are averaged across all respondents.\",\"World Development Indicators\",\"World Bank and Turku School of Economics, Logistic Performance Index Surveys. Data are available online at : http://www.worldbank.org/lpi. Summary results are published in Arvis and others' Connecting to Compete: Trade Logistics in the Global Economy, The Logistics Performance Index and Its Indicators report.\"\n\"LP.LPI.ITRN.XQ\",\"Logistics performance index: Ease of arranging competitively priced shipments (1=low to 5=high)\",\"Data are from Logistics Performance Index surveys conducted by the World Bank in partnership with academic and international institutions and private companies and individuals engaged in international logistics. 2009 round of surveys covered more than 5,000 country assessments by nearly 1,000 international freight forwarders. Respondents evaluate eight markets on six core dimensions on a scale from 1 (worst) to 5 (best). The markets are chosen based on the most important export and import markets of the respondent's country, random selection, and, for landlocked countries, neighboring countries that connect them with international markets. Details of the survey methodology are in Arvis and others' Connecting to Compete 2010: Trade Logistics in the Global Economy (2010). Respondents assessed the ease of arranging competitively priced shipments to markets, on a rating ranging from 1 (very difficult) to 5 (very easy). Scores are averaged across all respondents.\",\"World Development Indicators\",\"World Bank and Turku School of Economics, Logistic Performance Index Surveys. Data are available online at : http://www.worldbank.org/lpi. Summary results are published in Arvis and others' Connecting to Compete: Trade Logistics in the Global Economy, The Logistics Performance Index and Its Indicators report.\"\n\"LP.LPI.LOGS.XQ\",\"Logistics performance index: Competence and quality of logistics services (1=low to 5=high)\",\"Data are from Logistics Performance Index surveys conducted by the World Bank in partnership with academic and international institutions and private companies and individuals engaged in international logistics. 2009 round of surveys covered more than 5,000 country assessments by nearly 1,000 international freight forwarders. Respondents evaluate eight markets on six core dimensions on a scale from 1 (worst) to 5 (best). The markets are chosen based on the most important export and import markets of the respondent's country, random selection, and, for landlocked countries, neighboring countries that connect them with international markets. Details of the survey methodology are in Arvis and others' Connecting to Compete 2010: Trade Logistics in the Global Economy (2010). Respondents evaluated the overall level of competence and quality of logistics services (e.g. transport operators, customs brokers), on a rating ranging from 1 (very low) to 5 (very high). Scores are averaged across all respondents.\",\"World Development Indicators\",\"World Bank and Turku School of Economics, Logistic Performance Index Surveys. Data are available online at : http://www.worldbank.org/lpi. Summary results are published in Arvis and others' Connecting to Compete: Trade Logistics in the Global Economy, The Logistics Performance Index and Its Indicators report.\"\n\"LP.LPI.OVRL.XQ\",\"Logistics performance index: Overall (1=low to 5=high)\",\"Logistics Performance Index overall score reflects perceptions of a country's logistics based on efficiency of customs clearance process, quality of trade- and transport-related infrastructure, ease of arranging competitively priced shipments, quality of logistics services, ability to track and trace consignments, and frequency with which shipments reach the consignee within the scheduled time. The index ranges from 1 to 5, with a higher score representing better performance. Data are from Logistics Performance Index surveys conducted by the World Bank in partnership with academic and international institutions and private companies and individuals engaged in international logistics. 2009 round of surveys covered more than 5,000 country assessments by nearly 1,000 international freight forwarders. Respondents evaluate eight markets on six core dimensions on a scale from 1 (worst) to 5 (best). The markets are chosen based on the most important export and import markets of the respondent's country, random selection, and, for landlocked countries, neighboring countries that connect them with international markets. Scores for the six areas are averaged across all respondents and aggregated to a single score using principal components analysis. Details of the survey methodology and index construction methodology are in Arvis and others' Connecting to Compete 2010: Trade Logistics in the Global Economy (2010).\",\"World Development Indicators\",\"World Bank and Turku School of Economics, Logistic Performance Index Surveys. Data are available online at : http://www.worldbank.org/lpi. Summary results are published in Arvis and others' Connecting to Compete: Trade Logistics in the Global Economy, The Logistics Performance Index and Its Indicators report.\"\n\"LP.LPI.TIME.XQ\",\"Logistics performance index: Frequency with which shipments reach consignee within scheduled or expected time (1=low to 5=high)\",\"Data are from Logistics Performance Index surveys conducted by the World Bank in partnership with academic and international institutions and private companies and individuals engaged in international logistics. 2009 round of surveys covered more than 5,000 country assessments by nearly 1,000 international freight forwarders. Respondents evaluate eight markets on six core dimensions on a scale from 1 (worst) to 5 (best). The markets are chosen based on the most important export and import markets of the respondent's country, random selection, and, for landlocked countries, neighboring countries that connect them with international markets. Details of the survey methodology are in Arvis and others' Connecting to Compete 2010: Trade Logistics in the Global Economy (2010). Respondents assessed how often the shipments to assessed markets reach the consignee within the scheduled or expected delivery time, on a rating ranging from 1 (hardly ever) to 5 (nearly always). Scores are averaged across all respondents.\",\"World Development Indicators\",\"World Bank and Turku School of Economics, Logistic Performance Index Surveys. Data are available online at : http://www.worldbank.org/lpi. Summary results are published in Arvis and others' Connecting to Compete: Trade Logistics in the Global Economy, The Logistics Performance Index and Its Indicators report.\"\n\"LP.LPI.TRAC.XQ\",\"Logistics performance index: Ability to track and trace consignments (1=low to 5=high)\",\"Data are from Logistics Performance Index surveys conducted by the World Bank in partnership with academic and international institutions and private companies and individuals engaged in international logistics. 2009 round of surveys covered more than 5,000 country assessments by nearly 1,000 international freight forwarders. Respondents evaluate eight markets on six core dimensions on a scale from 1 (worst) to 5 (best). The markets are chosen based on the most important export and import markets of the respondent's country, random selection, and, for landlocked countries, neighboring countries that connect them with international markets. Details of the survey methodology are in Arvis and others' Connecting to Compete 2010: Trade Logistics in the Global Economy (2010). Respondents evaluated the ability to track and trace consignments when shipping to the market, on a rating ranging from 1 (very low) to 5 (very high). Scores are averaged across all respondents.\",\"World Development Indicators\",\"World Bank and Turku School of Economics, Logistic Performance Index Surveys. Data are available online at : http://www.worldbank.org/lpi. Summary results are published in Arvis and others' Connecting to Compete: Trade Logistics in the Global Economy, The Logistics Performance Index and Its Indicators report.\"\n\"MAIZE\",\"Maize, $/mt, current$\",\"Maize (US), no. 2, yellow, f.o.b. US Gulf ports\",\"Global Economic Monitor (GEM) Commodities\",\"US Department of Agriculture; World Bank.\"\n\"MO.INDEX.ECON.XQ\",\"Sustainable Economic Opportunity\",\"Public Management:  Within this subcategory the Ibrahim Index measures: (i) Quality of Public Administration – clustered indicator (average) of variables from the African Development Bank and the World Bank measuring the extent to which the civil service is structured to effectively and ethically design policy and deliver services. (ii) Quality of Budget Management – clustered indicator (average) of variables from the African Development Bank and the World Bank measuring the extent to which there is a comprehensive and credible budget, linked to policy priorities, with mechanisms to ensure implementation and reporting. (iii) Currency Inside Banks – total stock of currency held within banks as a proportion of the money supply in an economy (OD). (iv) Ratio of Total Revenue to Total Expenditure – total budget revenue as a proportion of total budget expenditure (OD). (v) Ratio of Budget Deficit or Surplus to GDP – budget deficit or budget surplus as a proportion of Gross Domestic Product. (vi) Management of  Public Debt – clustered indicator (average) of variables from the African Development Bank and the World Bank measuring short- and medium term sustainability of fiscal policy and its impact on growth. (vii) Inflation – annual average change in the consumer price index. (viii) Ratio of External Debt Service to Exports – total external debt service due, expressed as a proportion of exports of goods, non-factor services, income and workers’ remittances. (ix) Imports Covered by Reserves – period of time that imports could be paid for by foreign exchange reserves. (x) Statistical Capacity – national statistical systems and their adherence to international norms in the areas of: Methodology (of compiling statistics and indicators); Regularity and coverage of censuses and surveys; Regularity, timeliness and accessibility of key socioeconomic indicators.\",\"Africa Development Indicators\",\"Mo Ibrahim Foundation, electronic files and web site.\"\n\"MO.INDEX.HDEV.XQ\",\"Human Development\",\"Health and Welfare: Within this sub-category the Ibrahim Index measures: (i) Incidence of TB – incidence of new cases of Tuberculosis. (ii) Child Mortality – likelihood that a newborn baby will die before the age of five, assuming that he/she is subject to current, age-specific mortality rates. (iii) Immunisation against Measles – proportion of one year olds (children aged 12–23 months) who have received one dose of measles vaccine. (iv) Immunisation against DTP – proportion of one year olds (children aged 12–23 months) who have received three doses of DTP vaccine. (v) Welfare Regime – equality of access to social safety nets that compensate for poverty and other risks. (vi) Social Protection and Labour – clustered indicator (average) of variables from the African Development Bank and the World Bank measuring government policies and regulations to ensure a minimum level of welfare to all people. (vii) Social Exclusion – extent to which significant parts of society are isolated due to poverty and inequality. (viii) Antiretroviral Treatment Provision – people with advanced HIV infection who are receiving antiretroviral treatment (ART) according to nationally approved or international standards. (ix)  Antiretroviral Treatment Provision for Pregnant Women – HIV positive pregnant women who received antiretroviral treatment (ART) to reduce the risk of mother-to-child transmission. (x) Access to Piped Water – proportion of the population with access to water piped into their dwelling or just outside it. (xi) Access to Improved Water – proportion of the population with access to a water source protected from outside contamination. (xii) Access to Improved Sanitation – proportion of the population served with a sanitation facility that hygienically separates human excreta from human contact. (xiii) Open Defecation Sanitation – proportion of the population forced to dispose of human faeces in open bodies of water or outdoor open spaces.\",\"Africa Development Indicators\",\"Mo Ibrahim Foundation, electronic files and web site.\"\n\"MO.INDEX.PHR.XQ\",\"Participation and Human Rights\",\"Participation: Within this sub-category the Ibrahim Index measures: (i) Political Participation – extent to which citizens have relevant information and the freedom to participate in the political process. (ii) Effective Power to Govern – extent to which democratically elected leaders have the effective power to govern, or the extent of veto powers and political enclaves.  (iii) Free and Fair Elections – extent to which leaders are determined by free and fair elections. (iv)  Electoral Self-determination – right of citizens to freely decide their political system and leadership. (v) Free and Fair Executive Elections – integrity of executive elections.\",\"Africa Development Indicators\",\"Mo Ibrahim Foundation, electronic files and web site.\"\n\"MO.INDEX.SRLW.XQ\",\"Safety and Rule of Law\",\"Personal Safety:  Within this sub-category the Ibrahim Index measures: (i) Safety of the Person – level of criminality in a country. (ii) Violent Crime – prevalence of violent crime, both organised and common. (iii) Social Unrest – prevalence of violent social unrest. (iv) Human Trafficking – government efforts to combat human trafficking. (v) Domestic Political Persecution – clustered indicator (an average) of the following variables: Physical Integrity Rights Index – government respect for citizens’ rights to freedom from torture, extrajudicial killing, political imprisonment, and disappearance.  Political Terror Scale – levels of state-instigated political violence and terror.\",\"Africa Development Indicators\",\"Mo Ibrahim Foundation, electronic files and web site.\"\n\"MO.INDEX.XQ\",\"Overall Mo Ibrahim index\",\"Measures overall index on (a) Safety and rule of law (b) Participation and human rights (c) Sustainable Economic  opportunity and (d) Human development.\",\"Africa Development Indicators\",\"Mo Ibrahim Foundation, electronic files and web site.\"\n\"MS.MIL.MPRT.KD\",\"Arms imports (SIPRI trend indicator values)\",\"Arms transfers cover the supply of military weapons through sales, aid, gifts, and those made through manufacturing licenses. Data cover major conventional weapons such as aircraft, armored vehicles, artillery, radar systems, missiles, and ships designed for military use. Excluded are transfers of other military equipment such as small arms and light weapons, trucks, small artillery, ammunition, support equipment, technology transfers, and other services.\",\"World Development Indicators\",\"Stockholm International Peace Research Institute (SIPRI), Arms Transfers Programme (http://portal.sipri.org/publications/pages/transfer/splash).\"\n\"MS.MIL.TOTL.P1\",\"Armed forces personnel, total\",\"Armed forces personnel are active duty military personnel, including paramilitary forces if the training, organization, equipment, and control suggest they may be used to support or replace regular military forces.\",\"World Development Indicators\",\"International Institute for Strategic Studies, The Military Balance.\"\n\"MS.MIL.TOTL.TF.ZS\",\"Armed forces personnel (% of total labor force)\",\"Armed forces personnel are active duty military personnel, including paramilitary forces if the training, organization, equipment, and control suggest they may be used to support or replace regular military forces. Labor force comprises all people who meet the International Labour Organization's definition of the economically active population.\",\"World Development Indicators\",\"International Institute for Strategic Studies, The Military Balance.\"\n\"MS.MIL.XPND.CN\",\"Military expenditure (current LCU)\",\"Military expenditures data from SIPRI are derived from the NATO definition, which includes all current and capital expenditures on the armed forces, including peacekeeping forces; defense ministries and other government agencies engaged in defense projects; paramilitary forces, if these are judged to be trained and equipped for military operations; and military space activities. Such expenditures include military and civil personnel, including retirement pensions of military personnel and social services for personnel; operation and maintenance; procurement; military research and development; and military aid (in the military expenditures of the donor country). Excluded are civil defense and current expenditures for previous military activities, such as for veterans' benefits, demobilization, conversion, and destruction of weapons. This definition cannot be applied for all countries, however, since that would require much more detailed information than is available about what is included in military budgets and off-budget military expenditure items. (For example, military budgets might or might not cover civil defense, reserves and auxiliary forces, police and paramilitary forces, dual-purpose forces such as military and civilian police, military grants in kind, pensions for military personnel, and social security contributions paid by one part of government to another.)\",\"World Development Indicators\",\"Stockholm International Peace Research Institute (SIPRI), Yearbook: Armaments, Disarmament and International Security.\"\n\"MS.MIL.XPND.GD.ZS\",\"Military expenditure (% of GDP)\",\"Military expenditures data from SIPRI are derived from the NATO definition, which includes all current and capital expenditures on the armed forces, including peacekeeping forces; defense ministries and other government agencies engaged in defense projects; paramilitary forces, if these are judged to be trained and equipped for military operations; and military space activities. Such expenditures include military and civil personnel, including retirement pensions of military personnel and social services for personnel; operation and maintenance; procurement; military research and development; and military aid (in the military expenditures of the donor country). Excluded are civil defense and current expenditures for previous military activities, such as for veterans' benefits, demobilization, conversion, and destruction of weapons. This definition cannot be applied for all countries, however, since that would require much more detailed information than is available about what is included in military budgets and off-budget military expenditure items. (For example, military budgets might or might not cover civil defense, reserves and auxiliary forces, police and paramilitary forces, dual-purpose forces such as military and civilian police, military grants in kind, pensions for military personnel, and social security contributions paid by one part of government to another.)\",\"World Development Indicators\",\"Stockholm International Peace Research Institute (SIPRI), Yearbook: Armaments, Disarmament and International Security.\"\n\"MS.MIL.XPND.ZS\",\"Military expenditure (% of central government expenditure)\",\"Military expenditures data from SIPRI are derived from the NATO definition, which includes all current and capital expenditures on the armed forces, including peacekeeping forces; defense ministries and other government agencies engaged in defense projects; paramilitary forces, if these are judged to be trained and equipped for military operations; and military space activities. Such expenditures include military and civil personnel, including retirement pensions of military personnel and social services for personnel; operation and maintenance; procurement; military research and development; and military aid (in the military expenditures of the donor country). Excluded are civil defense and current expenditures for previous military activities, such as for veterans' benefits, demobilization, conversion, and destruction of weapons. This definition cannot be applied for all countries, however, since that would require much more detailed information than is available about what is included in military budgets and off-budget military expenditure items. (For example, military budgets might or might not cover civil defense, reserves and auxiliary forces, police and paramilitary forces, dual-purpose forces such as military and civilian police, military grants in kind, pensions for military personnel, and social security contributions paid by one part of government to another.)\",\"World Development Indicators\",\"Stockholm International Peace Research Institute (SIPRI), Yearbook: Armaments, Disarmament and International Security.\"\n\"MS.MIL.XPRT.KD\",\"Arms exports (SIPRI trend indicator values)\",\"Arms transfers cover the supply of military weapons through sales, aid, gifts, and those made through manufacturing licenses. Data cover major conventional weapons such as aircraft, armored vehicles, artillery, radar systems, missiles, and ships designed for military use. Excluded are transfers of other military equipment such as small arms and light weapons, trucks, small artillery, ammunition, support equipment, technology transfers, and other services.\",\"World Development Indicators\",\"Stockholm International Peace Research Institute (SIPRI), Arms Transfers Programme (http://portal.sipri.org/publications/pages/transfer/splash).\"\n\"NA.GDP.AGR.CR\",\"GDP on Agriculture Sector (in IDR Million), Current Price\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"NA.GDP.AGR.KR\",\"GDP on Agriculture Sector (in IDR Million), Constant Price\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"NA.GDP.CNST.CR\",\"GDP on Construction Sector (in IDR Million), Current Price\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"NA.GDP.CNST.KR\",\"GDP on Construction Sector (in IDR Million), Constant Price\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"NA.GDP.EXC.OG.CR\",\"Total GDP excluding Oil and Gas (in IDR Million), Current Price\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"NA.GDP.EXC.OG.KR\",\"Total GDP excluding Oil and Gas (in IDR Million), Constant Price\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"NA.GDP.FINS.CR\",\"GDP on Financial Service Sector (in IDR Million), Current Price\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"NA.GDP.FINS.KR\",\"GDP on Financial Service Sector (in IDR Million), Constant Price\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"NA.GDP.INC.OG.CR\",\"Total GDP including Oil and Gas (in IDR Million), Current Price\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"NA.GDP.INC.OG.KR\",\"Total GDP including Oil and Gas (in IDR Million), Constant Price\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"NA.GDP.MINQ.CR\",\"GDP on Mining and Quarrying Sector (in IDR Million), Current Price\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"NA.GDP.MINQ.KR\",\"GDP on Mining and Quarrying Sector (in IDR Million), Constant Price\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"NA.GDP.MNF.CR\",\"GDP on Manufacturing Sector (in IDR Million), Current Price\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"NA.GDP.MNF.KR\",\"GDP on Manufacturing Sector (in IDR Million), Constant Price\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"NA.GDP.SRV.OTHR.CR\",\"GDP on Other Service Sector (in IDR Million), Current Price\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"NA.GDP.SRV.OTHR.KR\",\"GDP on Other Service Sector (in IDR Million), Constant Price\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"NA.GDP.TRAN.COMM.CR\",\"GDP on Transportation and Telecommunication Sector (in IDR Million), Current Price\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"NA.GDP.TRAN.COMM.KR\",\"GDP on Transportation and Telecommunication Sector (in IDR Million), Constant Price\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"NA.GDP.TRD.HTL.CR\",\"GDP on Trade, Hotel and Restaurant Sector (in IDR Million), Current Price\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"NA.GDP.TRD.HTL.KR\",\"GDP on Trade, Hotel and Restaurant Sector (in IDR Million), Constant Price\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"NA.GDP.UTL.CR\",\"GDP on Utilities Sector (in IDR Million), Current Price\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"NA.GDP.UTL.KR\",\"GDP on Utilities Sector (in IDR Million), Constant Price\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"NE.CON.GOVT.CD\",\"General government final consumption expenditure (current US$)\",\"General government final consumption expenditure (formerly general government consumption) includes all government current expenditures for purchases of goods and services (including compensation of employees). It also includes most expenditures on national defense and security, but excludes government military expenditures that are part of government capital formation. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.CON.GOVT.CN\",\"General government final consumption expenditure (current LCU)\",\"General government final consumption expenditure (formerly general government consumption) includes all government current expenditures for purchases of goods and services (including compensation of employees). It also includes most expenditures on national defense and security, but excludes government military expenditures that are part of government capital formation. Data are in current local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.CON.GOVT.KD\",\"General government final consumption expenditure (constant 2010 US$)\",\"General government final consumption expenditure (formerly general government consumption) includes all government current expenditures for purchases of goods and services (including compensation of employees). It also includes most expenditures on national defense and security, but excludes government military expenditures that are part of government capital formation. Data are in constant 2010 U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.CON.GOVT.KD.ZG\",\"General government final consumption expenditure (annual % growth)\",\"Annual percentage growth of general government final consumption expenditure based on constant local currency. Aggregates are based on constant 2010 U.S. dollars. General government final consumption expenditure (general government consumption) includes all government current expenditures for purchases of goods and services (including compensation of employees). It also includes most expenditures on national defense and security, but excludes government military expenditures that are part of government capital formation.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.CON.GOVT.KN\",\"General government final consumption expenditure (constant LCU)\",\"General government final consumption expenditure (formerly general government consumption) includes all government current expenditures for purchases of goods and services (including compensation of employees). It also includes most expenditures on national defense and security, but excludes government military expenditures that are part of government capital formation. Data are in constant local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.CON.GOVT.ZS\",\"General government final consumption expenditure (% of GDP)\",\"General government final consumption expenditure (formerly general government consumption) includes all government current expenditures for purchases of goods and services (including compensation of employees). It also includes most expenditures on national defense and security, but excludes government military expenditures that are part of government capital formation.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.CON.PCAP.CD\",\"Final consumption expenditure plus discrepancy, per capita (current US$)\",\"Final consumption expenditure (formerly total consumption) is the sum of household final consumption expenditure (private consumption) and general government final consumption expenditure (general government consumption). This estimate includes any statistical discrepancy in the use of resources relative to the supply of resources. Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.CON.PETC.CD\",\"Household final consumption expenditure, etc. (current US$)\",\"Household final consumption expenditure (formerly private consumption) is the market value of all goods and services, including durable products (such as cars, washing machines, and home computers), purchased by households. It excludes purchases of dwellings but includes imputed rent for owner-occupied dwellings. It also includes payments and fees to governments to obtain permits and licenses. Here, household consumption expenditure includes the expenditures of nonprofit institutions serving households, even when reported separately by the country. This item also includes any statistical discrepancy in the use of resources relative to the supply of resources. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.CON.PETC.CN\",\"Household final consumption expenditure, etc. (current LCU)\",\"Household final consumption expenditure (formerly private consumption) is the market value of all goods and services, including durable products (such as cars, washing machines, and home computers), purchased by households. It excludes purchases of dwellings but includes imputed rent for owner-occupied dwellings. It also includes payments and fees to governments to obtain permits and licenses. Here, household consumption expenditure includes the expenditures of nonprofit institutions serving households, even when reported separately by the country. This item also includes any statistical discrepancy in the use of resources relative to the supply of resources. Data are in current local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.CON.PETC.KD\",\"Household final consumption expenditure, etc. (constant 2010 US$)\",\"Household final consumption expenditure (formerly private consumption) is the market value of all goods and services, including durable products (such as cars, washing machines, and home computers), purchased by households. It excludes purchases of dwellings but includes imputed rent for owner-occupied dwellings. It also includes payments and fees to governments to obtain permits and licenses. Here, household consumption expenditure includes the expenditures of nonprofit institutions serving households, even when reported separately by the country. This item also includes any statistical discrepancy in the use of resources relative to the supply of resources. Data are in constant 2010 U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.CON.PETC.KD.ZG\",\"Household final consumption expenditure, etc. (annual % growth)\",\"Annual percentage growth of household final consumption expenditure is based on constant local currency. Aggregates are based on constant 2010 U.S. dollars. Household final consumption expenditure (formerly private consumption) is the market value of all goods and services, including durable products (such as cars, washing machines, and home computers), purchased by households. It excludes purchases of dwellings but includes imputed rent for owner-occupied dwellings. It also includes payments and fees to governments to obtain permits and licenses. Here, household consumption expenditure includes the expenditures of nonprofit institutions serving households, even when reported separately by the country. This item also includes any statistical discrepancy in the use of resources relative to the supply of resources.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.CON.PETC.KN\",\"Household final consumption expenditure, etc. (constant LCU)\",\"Household final consumption expenditure (formerly private consumption) is the market value of all goods and services, including durable products (such as cars, washing machines, and home computers), purchased by households. It excludes purchases of dwellings but includes imputed rent for owner-occupied dwellings. It also includes payments and fees to governments to obtain permits and licenses. Here, household consumption expenditure includes the expenditures of nonprofit institutions serving households, even when reported separately by the country. This item also includes any statistical discrepancy in the use of resources relative to the supply of resources. Data are in constant local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.CON.PETC.ZS\",\"Household final consumption expenditure, etc. (% of GDP)\",\"Household final consumption expenditure (formerly private consumption) is the market value of all goods and services, including durable products (such as cars, washing machines, and home computers), purchased by households. It excludes purchases of dwellings but includes imputed rent for owner-occupied dwellings. It also includes payments and fees to governments to obtain permits and licenses. Here, household consumption expenditure includes the expenditures of nonprofit institutions serving households, even when reported separately by the country. This item also includes any statistical discrepancy in the use of resources relative to the supply of resources.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.CON.PRVT.CD\",\"Household final consumption expenditure (current US$)\",\"Household final consumption expenditure (formerly private consumption) is the market value of all goods and services, including durable products (such as cars, washing machines, and home computers), purchased by households. It excludes purchases of dwellings but includes imputed rent for owner-occupied dwellings. It also includes payments and fees to governments to obtain permits and licenses. Here, household consumption expenditure includes the expenditures of nonprofit institutions serving households, even when reported separately by the country. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.CON.PRVT.CN\",\"Household final consumption expenditure (current LCU)\",\"Household final consumption expenditure (formerly private consumption) is the market value of all goods and services, including durable products (such as cars, washing machines, and home computers), purchased by households. It excludes purchases of dwellings but includes imputed rent for owner-occupied dwellings. It also includes payments and fees to governments to obtain permits and licenses. Here, household consumption expenditure includes the expenditures of nonprofit institutions serving households, even when reported separately by the country. Data are in current local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.CON.PRVT.KD\",\"Household final consumption expenditure (constant 2010 US$)\",\"Household final consumption expenditure (formerly private consumption) is the market value of all goods and services, including durable products (such as cars, washing machines, and home computers), purchased by households. It excludes purchases of dwellings but includes imputed rent for owner-occupied dwellings. It also includes payments and fees to governments to obtain permits and licenses. Here, household consumption expenditure includes the expenditures of nonprofit institutions serving households, even when reported separately by the country. Data are in constant 2010 U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.CON.PRVT.KD.ZG\",\"Household final consumption expenditure (annual % growth)\",\"Annual percentage growth of household final consumption expenditure based on constant local currency. Aggregates are based on constant 2010 U.S. dollars. Household final consumption expenditure (formerly private consumption) is the market value of all goods and services, including durable products (such as cars, washing machines, and home computers), purchased by households. It excludes purchases of dwellings but includes imputed rent for owner-occupied dwellings. It also includes payments and fees to governments to obtain permits and licenses. Here, household consumption expenditure includes the expenditures of nonprofit institutions serving households, even when reported separately by the country.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.CON.PRVT.KN\",\"Household final consumption expenditure (constant LCU)\",\"Household final consumption expenditure (formerly private consumption) is the market value of all goods and services, including durable products (such as cars, washing machines, and home computers), purchased by households. It excludes purchases of dwellings but includes imputed rent for owner-occupied dwellings. It also includes payments and fees to governments to obtain permits and licenses. Here, household consumption expenditure includes the expenditures of nonprofit institutions serving households, even when reported separately by the country. Data are in constant local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.CON.PRVT.PC.KD\",\"Household final consumption expenditure per capita (constant 2010 US$)\",\"Household final consumption expenditure per capita (private consumption per capita) is calculated using private consumption in constant 2010 prices and World Bank population estimates. Household final consumption expenditure is the market value of all goods and services, including durable products (such as cars, washing machines, and home computers), purchased by households. It excludes purchases of dwellings but includes imputed rent for owner-occupied dwellings. It also includes payments and fees to governments to obtain permits and licenses. Here, household consumption expenditure includes the expenditures of nonprofit institutions serving households, even when reported separately by the country. Data are in constant 2010 U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.CON.PRVT.PC.KD.ZG\",\"Household final consumption expenditure per capita growth (annual %)\",\"Annual percentage growth of household final consumption expenditure per capita, which is calculated using household final consumption expenditure in constant 2010 prices and World Bank population estimates. Household final consumption expenditure (private consumption) is the market value of all goods and services, including durable products (such as cars, washing machines, and home computers), purchased by households. It excludes purchases of dwellings but includes imputed rent for owner-occupied dwellings. It also includes payments and fees to governments to obtain permits and licenses. Here, household consumption expenditure includes the expenditures of nonprofit institutions serving households, even when reported separately by the country.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.CON.PRVT.PP.CD\",\"Household final consumption expenditure, PPP (current international $)\",\"Household final consumption expenditure (formerly private consumption) is the market value of all goods and services, including durable products (such as cars, washing machines, and home computers), purchased by households. It excludes purchases of dwellings but includes imputed rent for owner-occupied dwellings. It also includes payments and fees to governments to obtain permits and licenses. Here, household consumption expenditure includes the expenditures of nonprofit institutions serving households, even when reported separately by the country. Data are converted to current international dollars using purchasing power parity rates based on the 2011 ICP round.\",\"World Development Indicators\",\"World Bank, International Comparison Program database.\"\n\"NE.CON.PRVT.PP.KD\",\"Household final consumption expenditure, PPP (constant 2011 international $)\",\"Household final consumption expenditure (formerly private consumption) is the market value of all goods and services, including durable products (such as cars, washing machines, and home computers), purchased by households. It excludes purchases of dwellings but includes imputed rent for owner-occupied dwellings. It also includes payments and fees to governments to obtain permits and licenses. Here, household consumption expenditure includes the expenditures of nonprofit institutions serving households, even when reported separately by the country. Data are converted to constant 2011 international dollars using purchasing power parity rates.\",\"World Development Indicators\",\"World Bank, International Comparison Program database.\"\n\"NE.CON.TETC.CD\",\"Final consumption expenditure, etc. (current US$)\",\"Final consumption expenditure (formerly total consumption) is the sum of household final consumption expenditure (private consumption) and general government final consumption expenditure (general government consumption). This estimate includes any statistical discrepancy in the use of resources relative to the supply of resources. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.CON.TETC.CN\",\"Final consumption expenditure, etc. (current LCU)\",\"Final consumption expenditure (formerly total consumption) is the sum of household final consumption expenditure (formerly private consumption) and general government final consumption expenditure (formerly general government consumption). This estimate includes any statistical discrepancy in the use of resources relative to the supply of resources. Data are in current local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.CON.TETC.KD\",\"Final consumption expenditure, etc. (constant 2010 US$)\",\"Final consumption expenditure (formerly total consumption) is the sum of household final consumption expenditure (formerly private consumption) and general government final consumption expenditure (formerly general government consumption). This estimate includes any statistical discrepancy in the use of resources relative to the supply of resources. Data are in constant 2010 U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.CON.TETC.KD.ZG\",\"Final consumption expenditure, etc. (annual % growth)\",\"Average annual growth of final consumption expenditure based on constant local currency. Aggregates are based on constant 2010 U.S. dollars. Final consumption expenditure (formerly total consumption) is the sum of household final consumption expenditure (formerly private consumption) and general government final consumption expenditure (formerly general government consumption). This estimate includes any statistical discrepancy in the use of resources relative to the supply of resources.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.CON.TETC.KN\",\"Final consumption expenditure, etc. (constant LCU)\",\"Final consumption expenditure (formerly total consumption) is the sum of household final consumption expenditure (formerly private consumption) and general government final consumption expenditure (formerly general government consumption). This estimate includes any statistical discrepancy in the use of resources relative to the supply of resources. Data are in constant local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.CON.TETC.ZS\",\"Final consumption expenditure, etc. (% of GDP)\",\"Final consumption expenditure (formerly total consumption) is the sum of household final consumption expenditure (private consumption) and general government final consumption expenditure (general government consumption). This estimate includes any statistical discrepancy in the use of resources relative to the supply of resources.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.CON.TOTL.CD\",\"Final consumption expenditure (current US$)\",\"Final consumption expenditure (formerly total consumption) is the sum of household final consumption expenditure (private consumption) and general government final consumption expenditure (general government consumption). Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.CON.TOTL.CN\",\"Final consumption expenditure (current LCU)\",\"Final consumption expenditure (formerly total consumption) is the sum of household final consumption expenditure (private consumption) and general government final consumption expenditure (general government consumption). Data are in current local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.CON.TOTL.KD\",\"Final consumption expenditure (constant 2010 US$)\",\"Final consumption expenditure (formerly total consumption) is the sum of household final consumption expenditure (formerly private consumption) and general government final consumption expenditure (formerly general government consumption). Data are in constant 2010 U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.CON.TOTL.KN\",\"Final consumption expenditure (constant LCU)\",\"Final consumption expenditure (formerly total consumption) is the sum of household final consumption expenditure (formerly private consumption) and general government final consumption expenditure (formerly general government consumption). Data are in constant local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.DAB.DEFL.ZS\",\"Gross national expenditure deflator (base year varies by country)\",\"Gross national expenditure (formerly domestic absorption) is the sum of household final consumption expenditure (formerly private consumption), general government final consumption expenditure (formerly general government consumption), and gross capital formation (formerly gross domestic investment).\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.DAB.TOTL.CD\",\"Gross national expenditure (current US$)\",\"Gross national expenditure (formerly domestic absorption) is the sum of household final consumption expenditure (formerly private consumption), general government final consumption expenditure (formerly general government consumption), and gross capital formation (formerly gross domestic investment). Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.DAB.TOTL.CN\",\"Gross national expenditure (current LCU)\",\"Gross national expenditure (formerly domestic absorption) is the sum of household final consumption expenditure (formerly private consumption), general government final consumption expenditure (formerly general government consumption), and gross capital formation (formerly gross domestic investment). Data are in current local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.DAB.TOTL.KD\",\"Gross national expenditure (constant 2010 US$)\",\"Gross national expenditure (formerly domestic absorption) is the sum of household final consumption expenditure (formerly private consumption), general government final consumption expenditure (formerly general government consumption), and gross capital formation (formerly gross domestic investment). Data are in constant 2010 U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.DAB.TOTL.KN\",\"Gross national expenditure (constant LCU)\",\"Gross national expenditure (formerly domestic absorption) is the sum of household final consumption expenditure (formerly private consumption), general government final consumption expenditure (formerly general government consumption), and gross capital formation (formerly gross domestic investment). Data are in constant local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.DAB.TOTL.ZS\",\"Gross national expenditure (% of GDP)\",\"Gross national expenditure (formerly domestic absorption) is the sum of household final consumption expenditure (formerly private consumption), general government final consumption expenditure (formerly general government consumption), and gross capital formation (formerly gross domestic investment).\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.EXP.GNFS.CD\",\"Exports of goods and services (current US$)\",\"Exports of goods and services represent the value of all goods and other market services provided to the rest of the world. They include the value of merchandise, freight, insurance, transport, travel, royalties, license fees, and other services, such as communication, construction, financial, information, business, personal, and government services. They exclude compensation of employees and investment income (formerly called factor services) and transfer payments. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.EXP.GNFS.CN\",\"Exports of goods and services (current LCU)\",\"Exports of goods and services represent the value of all goods and other market services provided to the rest of the world. They include the value of merchandise, freight, insurance, transport, travel, royalties, license fees, and other services, such as communication, construction, financial, information, business, personal, and government services. They exclude compensation of employees and investment income (formerly called factor services) and transfer payments. Data are in current local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.EXP.GNFS.KD\",\"Exports of goods and services (constant 2010 US$)\",\"Exports of goods and services represent the value of all goods and other market services provided to the rest of the world. They include the value of merchandise, freight, insurance, transport, travel, royalties, license fees, and other services, such as communication, construction, financial, information, business, personal, and government services. They exclude compensation of employees and investment income (formerly called factor services) and transfer payments. Data are in constant 2010 U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.EXP.GNFS.KD.ZG\",\"Exports of goods and services (annual % growth)\",\"Annual growth rate of exports of goods and services based on constant local currency. Aggregates are based on constant 2010 U.S. dollars. Exports of goods and services represent the value of all goods and other market services provided to the rest of the world. They include the value of merchandise, freight, insurance, transport, travel, royalties, license fees, and other services, such as communication, construction, financial, information, business, personal, and government services. They exclude compensation of employees and investment income (formerly called factor services) and transfer payments.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.EXP.GNFS.KN\",\"Exports of goods and services (constant LCU)\",\"Exports of goods and services represent the value of all goods and other market services provided to the rest of the world. They include the value of merchandise, freight, insurance, transport, travel, royalties, license fees, and other services, such as communication, construction, financial, information, business, personal, and government services. They exclude compensation of employees and investment income (formerly called factor services) and transfer payments. Data are in constant local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.EXP.GNFS.KN.ZG\",\"Exports of goods and non-financial services, growth (%, constant LCU)\",\"\\\"The annual rate of growth of exports of goods and non-financial services, as calculated from the constant local currency series.  Exports of goods and services represent the value of all goods and other market services provided to or received from the rest of the world. Included is the value of merchandise, freight, insurance, transport, travel, royalties, license fees, and other services.  Data are in constant local currency.\\r  \\\"\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.EXP.GNFS.XN\",\"Export price index (goods and services, 2000=100)\",\"The exports price index is derived by dividing the national accounts exports of goods and services in current U.S. dollars by exports of goods and services in constant 2000 U.S. dollars, with 2000 equaling 100. \",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.EXP.GNFS.ZS\",\"Exports of goods and services (% of GDP)\",\"Exports of goods and services represent the value of all goods and other market services provided to the rest of the world. They include the value of merchandise, freight, insurance, transport, travel, royalties, license fees, and other services, such as communication, construction, financial, information, business, personal, and government services. They exclude compensation of employees and investment income (formerly called factor services) and transfer payments.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.CON.GOVT.CR\",\"GDP expenditure on general government consumption (in IDR Million)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"NE.GDI.CON.NPI.CR\",\"GDP expenditure on non profit private institution consumption (in IDR Million)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"NE.GDI.CON.PRVT.CR\",\"GDP expenditure on private consumption (in IDR Million)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"NE.GDI.EXPT.CR\",\"GDP expenditure on exports (in IDR Million)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"NE.GDI.FCGV.CD\",\"GDFI - central government (current US$)\",\"Central government’s gross domestic fixed investment (gross fixed capital formation) comprises all additions to the stocks of fixed assets (purchases and own-account capital formation), less any sales of second-hand and scrapped fixed assets, by central government.  Data are in current U.S. dollars. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"NE.GDI.FCGV.CN\",\"GDFI - central government (current LCU)\",\"Central government’s gross domestic fixed investment (gross fixed capital formation) comprises all additions to the stocks of fixed assets (purchases and own-account capital formation), less any sales of second-hand and scrapped fixed assets, by central government.  Data are in current local currency.  \",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.FCGV.KD\",\"GDFI - central government (constant 2000 US$)\",\"Gross domestic fixed investment includes land improvements (fences, ditches, drains, and so on); plant, machinery, and equipment purchases; and the construction of roads, railways, and the like, including schools, offices, hospitals, private residential dwellings, and commercial and industrial buildings. According to the 1993 SNA, net acquisitions of valuables are also considered capital formation. Data are in constant 2000 U.S. dollars.\",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"NE.GDI.FCGV.KN\",\"GDFI - central government (constant LCU)\",\"Central government’s gross domestic fixed investment (gross fixed capital formation) comprises all additions to the stocks of fixed assets (purchases and own-account capital formation), less any sales of second-hand and scrapped fixed assets, by central government.  Data are in current local currency.  \",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.FGOV.CD\",\"GDFI - general government (current US$)\",\"General government’s gross domestic fixed investment (gross fixed capital formation) comprises all additions to the stocks of fixed assets (purchases and own-account capital formation), less any sales of second-hand and scrapped fixed assets, by local, state.  Data are in current U.S. dollars.  \",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.FGOV.CN\",\"GDFI - general government (current LCU)\",\"General government’s gross domestic fixed investment (gross fixed capital formation) comprises all additions to the stocks of fixed assets (purchases and own-account capital formation), less any sales of second-hand and scrapped fixed assets, by local, state or central government. Most outlays by government on military equipment are excluded. According to 93SNA are outlays on weapons and equipment with no alternative civil use treated as intermediate consumption, and part of government consumption expenditure. Data are in current local currency.  \",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.FGOV.KD\",\"GDFI - general government (constant 2000 US$)\",\"\\\"\\nGross domestic fixed investment includes land improvements (fences, ditches, drains, and so on); plant, machinery, and equipment purchases; and the construction of roads, railways, and the like, including schools, offices, hospitals, private residential dwellings, and commercial and industrial buildings. According to the 1993 SNA, net acquisitions of valuables are also considered capital formation. Data are in constant 2000 U.S. dollars.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.FGOV.KN\",\"GDFI - general government (constant LCU)\",\"General government’s gross domestic fixed investment (gross fixed capital formation) comprises all additions to the stocks of fixed assets (purchases and own-account capital formation), less any sales of second-hand and scrapped fixed assets, by local, state or central government. Most outlays by government on military equipment are excluded. According to 93SNA are outlays on weapons and equipment with no alternative civil use treated as intermediate consumption, and part of government consumption expenditure. Data; constant prices, local currencies.  \",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.FLGV.CD\",\"GDFI - state and local government (current US$)\",\"State and local governments’ gross domestic fixed investment (gross fixed capital formation) comprises all additions to the stocks of fixed assets (purchases and own-account capital formation), less any sales of second-hand and scrapped fixed assets, by state and local governments.  Data are in current U.S. dollars.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"NE.GDI.FLGV.CN\",\"GDFI - state and local government (current LCU)\",\"State and local governments’ gross domestic fixed investment (gross fixed capital formation) comprises all additions to the stocks of fixed assets (purchases and own-account capital formation), less any sales of second-hand and scrapped fixed assets, by state and local governments.  Data are in current local currency.  \",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.FLGV.KN\",\"GDFI - state and local government (constant LCU)\",\"State and local governments’ gross domestic fixed investment (gross fixed capital formation) comprises all additions to the stocks of fixed assets (purchases and own-account capital formation), less any sales of second-hand and scrapped fixed assets, by state and local governments.  Data are in constant local currency.  \",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.FPBE.CD\",\"GDFI - public enterprises (current US$)\",\"Public sector’s gross domestic fixed investment (gross fixed capital formation) comprises all additions to the stocks of fixed assets (purchases and own-account capital formation), less any sales of second-hand and scrapped fixed assets.  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.FPBE.CN\",\"GDFI - public enterprises (current LCU)\",\"Public sector’s gross domestic fixed investment (gross fixed capital formation) comprises all additions to the stocks of fixed assets (purchases and own-account capital formation), less any sales of second-hand and scrapped fixed assets. Data are in current local currency.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.FPBE.KN\",\"GDFI - public enterprises (constant LCU)\",\"Public sector’s gross domestic fixed investment (gross fixed capital formation) comprises all additions to the stocks of fixed assets (purchases and own-account capital formation), less any sales of second-hand and scrapped fixed assets. Data are in const\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.FPRV.CD\",\"GDFI - private (current US$)\",\"Private sector’s gross domestic fixed investment (gross fixed capital formation) comprises all additions to the stocks of fixed assets (purchases and own-account capital formation), less any sales of second-hand and scrapped fixed assets.  Data are in current U.S. dollars.  \",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.FPRV.CN\",\"Gross fixed capital formation, private sector (current LCU)\",\"Private investment covers gross outlays by the private sector (including private nonprofit agencies) on additions to its fixed domestic assets.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.FPRV.KD\",\"GDFI - private sector (constant 2000 US$)\",\"Private sector’s gross domestic fixed investment (gross fixed capital formation) comprises all additions to the stocks of fixed assets (purchases and own-account capital formation), less any sales of second-hand and scrapped fixed assets.  Data are in constant 2000 local currency.  \",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.FPRV.KN\",\"GDFI - private sector (constant LCU)\",\"Private sector’s gross domestic fixed investment (gross fixed capital formation) comprises all additions to the stocks of fixed assets (purchases and own-account capital formation), less any sales of second-hand and scrapped fixed assets.  Data are in constant local prices.  \",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.FPRV.ZS\",\"Gross fixed capital formation, private sector (% of GDP)\",\"Private investment covers gross outlays by the private sector (including private nonprofit agencies) on additions to its fixed domestic assets.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.FPUB.CD\",\"GDFI - public sector (current US$)\",\"Public sectors’ gross domestic fixed investment (gross fixed capital formation) comprises all additions to the stocks of fixed assets (purchases and own-account capital formation), less any sales of second-hand and scrapped fixed assets measured at constant prices, done by government units and non-financial public enterprises. Most outlays by government on military equipment are excluded. According to 1993 SNA are outlays on weapons and equipment with no alternative civil use treated as intermediate consumption, and part of governments consumption expenditure. Data are in current U.S. dollars.  \",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.FPUB.CN\",\"Gross fixed capital formation, public sector (current LCU)\",\"Public investment covers gross outlays by the public sector on additions to its fixed domestic assets.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.FPUB.KD\",\"GDFI - public sector (constant 2000 US$)\",\"Public sectors’ gross domestic fixed investment (gross fixed capital formation) comprises all additions to the stocks of fixed assets (purchases and own-account capital formation), less any sales of second-hand and scrapped fixed assets measured at constant prices, done by government units and non-financial public enterprises. Most outlays by government on military equipment are excluded. According to 1993 SNA are outlays on weapons and equipment with no alternative civil use treated as intermediate consumption, and part of governments consumption expenditure. Data are in constant 2000 U.S. dollars.  \",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.FPUB.KN\",\"GDFI - public sector (constant LCU)\",\"Public sectors’ gross domestic fixed investment (gross fixed capital formation) comprises all additions to the stocks of fixed assets (purchases and own-account capital formation), less any sales of second-hand and scrapped fixed assets measured at constant prices, done by government units and non-financial public enterprises. Most outlays by government on military equipment are excluded. According to 1993 SNA are outlays on weapons and equipment with no alternative civil use treated as intermediate consumption, and part of governments consumption expenditure. Data are in constant local currency.  \",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.FPUB.ZS\",\"Gross public investment (% of GDP)\",\"Gross public investment (see definition below) as a percentage of GDP (%) .  Public sectors’ gross domestic fixed investment (gross fixed capital formation) comprises all additions to the stocks of fixed assets (purchases and own-account capital formation), less any sales of second-hand and scrapped fixed assets measured at constant prices, done by government units and non-financial public enterprises. Most outlays by government on military equipment are excluded. According to 1993 SNA are outlays on weapons and equipment with no alternative civil use treated as intermediate consumption, and part of governments consumption expenditure. \",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.FTOT.CD\",\"Gross fixed capital formation (current US$)\",\"Gross fixed capital formation (formerly gross domestic fixed investment) includes land improvements (fences, ditches, drains, and so on); plant, machinery, and equipment purchases; and the construction of roads, railways, and the like, including schools, offices, hospitals, private residential dwellings, and commercial and industrial buildings. According to the 1993 SNA, net acquisitions of valuables are also considered capital formation. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.FTOT.CN\",\"Gross fixed capital formation (current LCU)\",\"Gross fixed capital formation (formerly gross domestic fixed investment) includes land improvements (fences, ditches, drains, and so on); plant, machinery, and equipment purchases; and the construction of roads, railways, and the like, including schools, offices, hospitals, private residential dwellings, and commercial and industrial buildings. According to the 1993 SNA, net acquisitions of valuables are also considered capital formation. Data are in current local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.FTOT.CR\",\"GDP expenditure on gross fixed capital formation (in IDR Million)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"NE.GDI.FTOT.KD\",\"Gross fixed capital formation (constant 2010 US$)\",\"Gross fixed capital formation (formerly gross domestic fixed investment) includes land improvements (fences, ditches, drains, and so on); plant, machinery, and equipment purchases; and the construction of roads, railways, and the like, including schools, offices, hospitals, private residential dwellings, and commercial and industrial buildings. According to the 1993 SNA, net acquisitions of valuables are also considered capital formation. Data are in constant 2010 U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.FTOT.KD.ZG\",\"Gross fixed capital formation (annual % growth)\",\"Average annual growth of gross fixed capital formation based on constant local currency. Aggregates are based on constant 2010 U.S. dollars. Gross fixed capital formation (formerly gross domestic fixed investment) includes land improvements (fences, ditches, drains, and so on); plant, machinery, and equipment purchases; and the construction of roads, railways, and the like, including schools, offices, hospitals, private residential dwellings, and commercial and industrial buildings. According to the 1993 SNA, net acquisitions of valuables are also considered capital formation.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.FTOT.KN\",\"Gross fixed capital formation (constant LCU)\",\"Gross fixed capital formation (formerly gross domestic fixed investment) includes land improvements (fences, ditches, drains, and so on); plant, machinery, and equipment purchases; and the construction of roads, railways, and the like, including schools, offices, hospitals, private residential dwellings, and commercial and industrial buildings. According to the 1993 SNA, net acquisitions of valuables are also considered capital formation. Data are in constant local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.FTOT.ZS\",\"Gross fixed capital formation (% of GDP)\",\"Gross fixed capital formation (formerly gross domestic fixed investment) includes land improvements (fences, ditches, drains, and so on); plant, machinery, and equipment purchases; and the construction of roads, railways, and the like, including schools, offices, hospitals, private residential dwellings, and commercial and industrial buildings. According to the 1993 SNA, net acquisitions of valuables are also considered capital formation.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.IMPT.CR\",\"GDP expenditure on imports (in IDR Million)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"NE.GDI.STKB.CD\",\"Changes in inventories (current US$)\",\"Inventories are stocks of goods held by firms to meet temporary or unexpected fluctuations in production or sales, and \\\"work in progress.\\\" Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.STKB.CN\",\"Changes in inventories (current LCU)\",\"Inventories are stocks of goods held by firms to meet temporary or unexpected fluctuations in production or sales, and \\\"work in progress.\\\" Data are in current local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.STKB.CR\",\"GDP expenditure on changes in stock (in IDR Million)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"NE.GDI.STKB.KN\",\"Changes in inventories (constant LCU)\",\"Inventories are stocks of goods held by firms to meet temporary or unexpected fluctuations in production or sales, and \\\"work in progress.\\\" Data are in constant local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.STPB.CD\",\"Change in stocks public sector (current US$)\",\"Changes in stocks/inventories of public sector comprises the value of the physical changes in (i) stocks of raw materials, work-in-progress (excluding work put in place on structures, roads and other construction projects), and finished goods held by industries, and (ii) stocks of strategic materials or other commodities of importance to the nation held by producers of government services. Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"NE.GDI.STPB.CN\",\"Change in stocks public sector (current LCU)\",\"Changes in stocks/inventories of public sector comprises the value of the physical changes in (i) stocks of raw materials, work-in-progress (excluding work put in place on structures, roads and other construction projects), and finished goods held by industries, and (ii) stocks of strategic materials or other commodities of importance to the nation held by producers of government services. Data are in current local currency.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.STPB.KN\",\"Change in stocks, public sector (constant LCU)\",\"Changes in stocks/inventories of public sector comprises the value of the physical changes in (i) stocks of raw materials, work-in-progress (excluding work put in place on structures, roads and other construction projects), and finished goods held by industries, and (ii) stocks of strategic materials or other commodities of importance to the nation held by producers of government services. Data are in constant local currency.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.STPV.CD\",\"Change in stocks, private sector (current US$)\",\"Changes in stocks/inventories of private sector comprises the value of the physical changes in stocks of raw materials, work-in-progress (excluding work put in place on structures, roads and other construction projects), and finished goods held by industries.  Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"NE.GDI.STPV.CN\",\"Change in stocks, private sector (current LCU)\",\"Changes in stocks/inventories of private sector comprises the value of the physical changes in stocks of raw materials, work-in-progress (excluding work put in place on structures, roads and other construction projects), and finished goods held by industries.  Data are in current local currency.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.STPV.KN\",\"Change in stocks, private sector (constant LCU)\",\"Changes in stocks/inventories of private sector comprises the value of the physical changes in stocks of raw materials, work-in-progress (excluding work put in place on structures, roads and other construction projects), and finished goods held by industries.  Data are in constant local currency.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.TOTL.CD\",\"Gross capital formation (current US$)\",\"Gross capital formation (formerly gross domestic investment) consists of outlays on additions to the fixed assets of the economy plus net changes in the level of inventories. Fixed assets include land improvements (fences, ditches, drains, and so on); plant, machinery, and equipment purchases; and the construction of roads, railways, and the like, including schools, offices, hospitals, private residential dwellings, and commercial and industrial buildings. Inventories are stocks of goods held by firms to meet temporary or unexpected fluctuations in production or sales, and \\\"work in progress.\\\" According to the 1993 SNA, net acquisitions of valuables are also considered capital formation. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.TOTL.CN\",\"Gross capital formation (current LCU)\",\"Gross capital formation (formerly gross domestic investment) consists of outlays on additions to the fixed assets of the economy plus net changes in the level of inventories. Fixed assets include land improvements (fences, ditches, drains, and so on); plant, machinery, and equipment purchases; and the construction of roads, railways, and the like, including schools, offices, hospitals, private residential dwellings, and commercial and industrial buildings. Inventories are stocks of goods held by firms to meet temporary or unexpected fluctuations in production or sales, and \\\"work in progress.\\\" According to the 1993 SNA, net acquisitions of valuables are also considered capital formation. Data are in current local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.TOTL.CR\",\"Total GDP based on expenditure (in IDR Million)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"NE.GDI.TOTL.KD\",\"Gross capital formation (constant 2010 US$)\",\"Gross capital formation (formerly gross domestic investment) consists of outlays on additions to the fixed assets of the economy plus net changes in the level of inventories. Fixed assets include land improvements (fences, ditches, drains, and so on); plant, machinery, and equipment purchases; and the construction of roads, railways, and the like, including schools, offices, hospitals, private residential dwellings, and commercial and industrial buildings. Inventories are stocks of goods held by firms to meet temporary or unexpected fluctuations in production or sales, and \\\"work in progress.\\\" According to the 1993 SNA, net acquisitions of valuables are also considered capital formation. Data are in constant 2010 U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.TOTL.KD.ZG\",\"Gross capital formation (annual % growth)\",\"Annual growth rate of gross capital formation based on constant local currency. Aggregates are based on constant 2010 U.S. dollars. Gross capital formation (formerly gross domestic investment) consists of outlays on additions to the fixed assets of the economy plus net changes in the level of inventories. Fixed assets include land improvements (fences, ditches, drains, and so on); plant, machinery, and equipment purchases; and the construction of roads, railways, and the like, including schools, offices, hospitals, private residential dwellings, and commercial and industrial buildings. Inventories are stocks of goods held by firms to meet temporary or unexpected fluctuations in production or sales, and \\\"work in progress.\\\" According to the 1993 SNA, net acquisitions of valuables are also considered capital formation.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.TOTL.KN\",\"Gross capital formation (constant LCU)\",\"Gross capital formation (formerly gross domestic investment) consists of outlays on additions to the fixed assets of the economy plus net changes in the level of inventories. Fixed assets include land improvements (fences, ditches, drains, and so on); plant, machinery, and equipment purchases; and the construction of roads, railways, and the like, including schools, offices, hospitals, private residential dwellings, and commercial and industrial buildings. Inventories are stocks of goods held by firms to meet temporary or unexpected fluctuations in production or sales, and \\\"work in progress.\\\" According to the 1993 SNA, net acquisitions of valuables are also considered capital formation. Data are in constant local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.GDI.TOTL.ZS\",\"Gross capital formation (% of GDP)\",\"Gross capital formation (formerly gross domestic investment) consists of outlays on additions to the fixed assets of the economy plus net changes in the level of inventories. Fixed assets include land improvements (fences, ditches, drains, and so on); plant, machinery, and equipment purchases; and the construction of roads, railways, and the like, including schools, offices, hospitals, private residential dwellings, and commercial and industrial buildings. Inventories are stocks of goods held by firms to meet temporary or unexpected fluctuations in production or sales, and \\\"work in progress.\\\" According to the 1993 SNA, net acquisitions of valuables are also considered capital formation.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.IMP.GNFS.CD\",\"Imports of goods and services (current US$)\",\"Imports of goods and services represent the value of all goods and other market services received from the rest of the world. They include the value of merchandise, freight, insurance, transport, travel, royalties, license fees, and other services, such as communication, construction, financial, information, business, personal, and government services. They exclude compensation of employees and investment income (formerly called factor services) and transfer payments. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.IMP.GNFS.CN\",\"Imports of goods and services (current LCU)\",\"Imports of goods and services represent the value of all goods and other market services received from the rest of the world. They include the value of merchandise, freight, insurance, transport, travel, royalties, license fees, and other services, such as communication, construction, financial, information, business, personal, and government services. They exclude compensation of employees and investment income (formerly called factor services) and transfer payments. Data are in current local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.IMP.GNFS.KD\",\"Imports of goods and services (constant 2010 US$)\",\"Imports of goods and services represent the value of all goods and other market services received from the rest of the world. They include the value of merchandise, freight, insurance, transport, travel, royalties, license fees, and other services, such as communication, construction, financial, information, business, personal, and government services. They exclude compensation of employees and investment income (formerly called factor services) and transfer payments. Data are in constant 2010 U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.IMP.GNFS.KD.ZG\",\"Imports of goods and services (annual % growth)\",\"Annual growth rate of imports of goods and services based on constant local currency. Aggregates are based on constant 2010 U.S. dollars. Imports of goods and services represent the value of all goods and other market services received from the rest of the world. They include the value of merchandise, freight, insurance, transport, travel, royalties, license fees, and other services, such as communication, construction, financial, information, business, personal, and government services. They exclude compensation of employees and investment income (formerly called factor services) and transfer payments.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.IMP.GNFS.KN\",\"Imports of goods and services (constant LCU)\",\"Imports of goods and services represent the value of all goods and other market services received from the rest of the world. They include the value of merchandise, freight, insurance, transport, travel, royalties, license fees, and other services, such as communication, construction, financial, information, business, personal, and government services. They exclude compensation of employees and investment income (formerly called factor services) and transfer payments. Data are in constant local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.IMP.GNFS.XN\",\"Import price index (goods and services 2000=100)\",\"The imports price index is derived by dividing the national accounts exports of goods and services in current U.S. dollars by imports of goods and services in constant 2000 U.S. dollars, with 2000 equaling 100. \",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.IMP.GNFS.ZS\",\"Imports of goods and services (% of GDP)\",\"Imports of goods and services represent the value of all goods and other market services received from the rest of the world. They include the value of merchandise, freight, insurance, transport, travel, royalties, license fees, and other services, such as communication, construction, financial, information, business, personal, and government services. They exclude compensation of employees and investment income (formerly called factor services) and transfer payments.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.MRCH.GDP.ZS\",\"Merchandise trade to GDP ratio (%)\",\"Merchandise trade as a share of GDP is the sum of merchandise exports and imports divided by the value of GDP, all in current US dollars  and from the national accounts.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"NE.RSB.GNFS.CD\",\"External balance on goods and services (current US$)\",\"External balance on goods and services (formerly resource balance) equals exports of goods and services minus imports of goods and services (previously nonfactor services). Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.RSB.GNFS.CN\",\"External balance on goods and services (current LCU)\",\"External balance on goods and services (formerly resource balance) equals exports of goods and services minus imports of goods and services (previously nonfactor services). Data are in current local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.RSB.GNFS.KN\",\"External balance on goods and services (constant LCU)\",\"External balance on goods and services (formerly resource balance) equals exports of goods and services minus imports of goods and services (previously nonfactor services). Data are in constant local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.RSB.GNFS.ZS\",\"External balance on goods and services (% of GDP)\",\"External balance on goods and services (formerly resource balance) equals exports of goods and services minus imports of goods and services (previously nonfactor services).\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.TRD.GNFS.CD\",\"Trade of goods and services (current US$)\",\"Trade is the sum of exports and imports of goods and services measured as a share of gross domestic product. \",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.TRD.GNFS.ZS\",\"Trade (% of GDP)\",\"Trade is the sum of exports and imports of goods and services measured as a share of gross domestic product.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NE.TRM.TRAD.XN\",\"Terms of trade index (2000=100)\",\"This is based upon goods and non-financial services from the National Accounts, that is, the terms of trade index shows the national accounts exports price index divided by the imports price index, with 2000 equaling 100.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"NE.TRM.TRAD.XU\",\"Terms of trade (goods and services, 2000 = 100)\",\"The terms of trade index shows the national accounts exports price index divided by the imports price index, with 2000 equaling 100.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NEER\",\"Nominal Effecive Exchange Rate\",\"A measure of the value of a currency against a weighted average of several foreign currencies\",\"Global Economic Monitor\",\"World Bank staff calculations based on Datastream and IMF International Finance Statistics data.\"\n\"NGAS_EUR\",\"Natural gas, Europe, $/mmbtu, current$\",\"Natural Gas (Europe), average import border price, including UK.  As of April 2010 includes a spot price component.  Between June 2000 - March 2010 excludes UK\",\"Global Economic Monitor (GEM) Commodities\",\"World Gas Intelligence; World Bank.\"\n\"NGAS_JP\",\"Natural gas LNG, $/mmbtu, current$\",\"Natural gas LNG (Japan), import price, cif, recent two months' averages are estimates.\",\"Global Economic Monitor (GEM) Commodities\",\"World Gas Intelligence; World Bank.\"\n\"NGAS_US\",\"Natural gas, US, $/mmbtu, current$\",\"Natural Gas (U.S.), spot price at Henry Hub, Louisiana\",\"Global Economic Monitor (GEM) Commodities\",\"Thomson Reuters Datastream; The Wall Street Journal; World Bank.\"\n\"NICKEL\",\"Nickel, $/mt, current$\",\"Nickel (LME), cathodes, minimum 99.8% purity, settlement price beginning 2005; previously cash price\",\"Global Economic Monitor (GEM) Commodities\",\"Platts Metals Week, Thomson Reuters Datastream; World Bank.\"\n\"NRRV.SHR.FRST.CR\",\"Total Natural Resources Revenue Sharing from Forestry (in IDR, realization value)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, Laporan Keuangan Pemerintah Pusat (Central Government Financial Report)\"\n\"NRRV.SHR.FSH.CR\",\"Total Natural Resources Revenue Sharing from Fishery (in IDR, realization value)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, Laporan Keuangan Pemerintah Pusat (Central Government Financial Report)\"\n\"NRRV.SHR.GAS.CR\",\"Total Natural Resources Revenue Sharing from Gas (in IDR, realization value)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, Laporan Keuangan Pemerintah Pusat (Central Government Financial Report)\"\n\"NRRV.SHR.GEOT.CR\",\"Total Natural Resources Revenue Sharing from Geothermal  Energy (in IDR, realization value)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, Laporan Keuangan Pemerintah Pusat (Central Government Financial Report)\"\n\"NRRV.SHR.MIN.CR\",\"Total Natural Resources Revenue Sharing from Mining (in IDR, realization value)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, Laporan Keuangan Pemerintah Pusat (Central Government Financial Report)\"\n\"NRRV.SHR.PETR.CR\",\"Total Natural Resources Revenue Sharing from Oil (in IDR, realization value)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, Laporan Keuangan Pemerintah Pusat (Central Government Financial Report)\"\n\"NV.AGR.PCAP.KD.ZG\",\"Real agricultural GDP per capita growth rate (%)\",\"The growth rate of real per capita GDP in agriculture, expressed at an annual rate.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"NV.AGR.TOTL.CD\",\"Agriculture, value added (current US$)\",\"Agriculture corresponds to ISIC divisions 1-5 and includes forestry, hunting, and fishing, as well as cultivation of crops and livestock production. Value added is the net output of a sector after adding up all outputs and subtracting intermediate inputs. It is calculated without making deductions for depreciation of fabricated assets or depletion and degradation of natural resources. The origin of value added is determined by the International Standard Industrial Classification (ISIC), revision 3. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.AGR.TOTL.CN\",\"Agriculture, value added (current LCU)\",\"Agriculture corresponds to ISIC divisions 1-5 and includes forestry, hunting, and fishing, as well as cultivation of crops and livestock production. Value added is the net output of a sector after adding up all outputs and subtracting intermediate inputs. It is calculated without making deductions for depreciation of fabricated assets or depletion and degradation of natural resources. The origin of value added is determined by the International Standard Industrial Classification (ISIC), revision 3. Data are in current local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.AGR.TOTL.KD\",\"Agriculture, value added (constant 2010 US$)\",\"Agriculture corresponds to ISIC divisions 1-5 and includes forestry, hunting, and fishing, as well as cultivation of crops and livestock production. Value added is the net output of a sector after adding up all outputs and subtracting intermediate inputs. It is calculated without making deductions for depreciation of fabricated assets or depletion and degradation of natural resources. The origin of value added is determined by the International Standard Industrial Classification (ISIC), revision 3. Data are in constant 2010 U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.AGR.TOTL.KD.ZG\",\"Agriculture, value added (annual % growth)\",\"Annual growth rate for agricultural value added based on constant local currency. Aggregates are based on constant 2010 U.S. dollars. Agriculture corresponds to ISIC divisions 1-5 and includes forestry, hunting, and fishing, as well as cultivation of crops and livestock production. Value added is the net output of a sector after adding up all outputs and subtracting intermediate inputs. It is calculated without making deductions for depreciation of fabricated assets or depletion and degradation of natural resources. The origin of value added is determined by the International Standard Industrial Classification (ISIC), revision 3.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.AGR.TOTL.KN\",\"Agriculture, value added (constant LCU)\",\"Agriculture corresponds to ISIC divisions 1-5 and includes forestry, hunting, and fishing, as well as cultivation of crops and livestock production. Value added is the net output of a sector after adding up all outputs and subtracting intermediate inputs. It is calculated without making deductions for depreciation of fabricated assets or depletion and degradation of natural resources. The origin of value added is determined by the International Standard Industrial Classification (ISIC), revision 3. Data are in constant local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.AGR.TOTL.ZG\",\"Real agricultural GDP growth rates (%)\",\"This is the annual rate of growth of agricultural GDP.  Value added in agriculture measures the output of the agricultural sector (ISIC divisions 1-5) less the value of intermediate inputs. Agriculture comprises value added from forestry, hunting, and fishing as well as cultivation of crops and livestock production. Value added is the net output of a sector after adding up all outputs and subtracting intermediate inputs. It is calculated without making deductions for depreciation of fabricated assets or depletion and degradation of natural resources. The industrial origin of value added is determined by the International Standard Industrial Classification (ISIC), revision 2. Data are in current local currency.\",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"NV.AGR.TOTL.ZS\",\"Agriculture, value added (% of GDP)\",\"Agriculture corresponds to ISIC divisions 1-5 and includes forestry, hunting, and fishing, as well as cultivation of crops and livestock production. Value added is the net output of a sector after adding up all outputs and subtracting intermediate inputs. It is calculated without making deductions for depreciation of fabricated assets or depletion and degradation of natural resources. The origin of value added is determined by the International Standard Industrial Classification (ISIC), revision 3. Note: For VAB countries, gross value added at factor cost is used as the denominator.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.IND.CNST.CD\",\"Construction, value added (current US$)\",\"Value added in construction is defined as the value of output of the construction industry less the value of intermediate consumption (intermediate inputs). Construction is a subset of industry (ISIC 45). Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.IND.CNST.CN\",\"Construction, value added (current LCU)\",\"Value added in construction is defined as the value of output of the construction industry less the value of intermediate consumption (intermediate inputs). Construction is a subset of industry (ISIC 45). Data are in current local currency.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.IND.CNST.KN\",\"Construction, value added (constant LCU)\",\"Value added in construction is defined as the value of output of the construction industry less the value of intermediate consumption (intermediate inputs). Construction is a subset of industry (ISIC 45). Data are in constant local currency.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.IND.GELW.CD\",\"Gas, electricity and water, value added (current US$)\",\"Value added in gas, electricity and water is defined as the value of output of the ‘Electricity, Gas and Water supply' industry less the value of intermediate consumption (intermediate inputs). Gas, electricity and water is a subset of industry (ISIC 40-41). Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.IND.GELW.CN\",\"Gas, electricity and water, value added (current LCU)\",\"Value added in gas, electricity and water is defined as the value of output of the ‘Electricity, Gas and Water supply' industry less the value of intermediate consumption (intermediate inputs). Gas, electricity and water is a subset of industry (ISIC 40-41). Data are in current local currency.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.IND.GELW.KN\",\"Gas, electricity and water, value added (constant LCU)\",\"Value added in gas, electricity and water is defined as the value of output of the ‘Electricity, Gas and Water supply' industry less the value of intermediate consumption (intermediate inputs). Gas, electricity and water is a subset of industry (ISIC 40-41). Data are in constant local currency.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.IND.MANF.CD\",\"Manufacturing, value added (current US$)\",\"Manufacturing refers to industries belonging to ISIC divisions 15-37. Value added is the net output of a sector after adding up all outputs and subtracting intermediate inputs. It is calculated without making deductions for depreciation of fabricated assets or depletion and degradation of natural resources. The origin of value added is determined by the International Standard Industrial Classification (ISIC), revision 3. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.IND.MANF.CN\",\"Manufacturing, value added (current LCU)\",\"Manufacturing refers to industries belonging to ISIC divisions 15-37. Value added is the net output of a sector after adding up all outputs and subtracting intermediate inputs. It is calculated without making deductions for depreciation of fabricated assets or depletion and degradation of natural resources. The origin of value added is determined by the International Standard Industrial Classification (ISIC), revision 3. Data are in current local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.IND.MANF.KD\",\"Manufacturing, value added (constant 2010 US$)\",\"Manufacturing refers to industries belonging to ISIC divisions 15-37. Value added is the net output of a sector after adding up all outputs and subtracting intermediate inputs. It is calculated without making deductions for depreciation of fabricated assets or depletion and degradation of natural resources. The origin of value added is determined by the International Standard Industrial Classification (ISIC), revision 3. Data are expressed constant 2010 U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.IND.MANF.KD.ZG\",\"Manufacturing, value added (annual % growth)\",\"Annual growth rate for manufacturing value added based on constant local currency. Aggregates are based on constant 2010 U.S. dollars. Manufacturing refers to industries belonging to ISIC divisions 15-37. Value added is the net output of a sector after adding up all outputs and subtracting intermediate inputs. It is calculated without making deductions for depreciation of fabricated assets or depletion and degradation of natural resources. The origin of value added is determined by the International Standard Industrial Classification (ISIC), revision 3.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.IND.MANF.KN\",\"Manufacturing, value added (constant LCU)\",\"Manufacturing refers to industries belonging to ISIC divisions 15-37. Value added is the net output of a sector after adding up all outputs and subtracting intermediate inputs. It is calculated without making deductions for depreciation of fabricated assets or depletion and degradation of natural resources. The origin of value added is determined by the International Standard Industrial Classification (ISIC), revision 3. Data are in constant local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.IND.MANF.KN.ZG\",\"Value added, manufacturing growth rate (%)\",\"This is the annual rate of growth of value added in manufacturing.  Manufacturing refers to industries belonging to ISIC divisions 15-37. Value added is the net output of a sector after adding up all outputs and subtracting intermediate inputs. It is calculated without making deductions for depreciation of fabricated assets or depletion and degradation of natural resources. The industrial origin of value added is determined by the International Standard Industrial Classification (ISIC), revision 2.\",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"NV.IND.MANF.ZS\",\"Manufacturing, value added (% of GDP)\",\"Manufacturing refers to industries belonging to ISIC divisions 15-37. Value added is the net output of a sector after adding up all outputs and subtracting intermediate inputs. It is calculated without making deductions for depreciation of fabricated assets or depletion and degradation of natural resources. The origin of value added is determined by the International Standard Industrial Classification (ISIC), revision 3. Note: For VAB countries, gross value added at factor cost is used as the denominator.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.IND.MINQ.CD\",\"Mining and quarrying, value added (current US$)\",\"Value added in mining and quarrying is defined as the value of output of the mining and quarrying industries less the value of intermediate consumption (intermediate inputs). Mining and quarrying is a subset of industry (ISIC 10-14). Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.IND.MINQ.CN\",\"Mining and quarrying, value added (current LCU)\",\"Value added in mining and quarrying is defined as the value of output of the mining and quarrying industries less the value of intermediate consumption (intermediate inputs). Mining and quarrying is a subset of industry (ISIC 10-14). Data are in current local currency.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.IND.MINQ.KD\",\"Value added, mining and quarrying (constant 2000 US$)\",\"Value added in mining and quarrying is defined as the value of output of the mining and quarrying industries less the value of intermediate consumption (intermediate inputs). Mining and quarrying is a subset of industry (ISIC 10-14). Data are in constant 2000 U.S. dollars.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.IND.MINQ.KN\",\"Mining and quarrying, value added (constant LCU)\",\"Value added in mining and quarrying is defined as the value of output of the mining and quarrying industries less the value of intermediate consumption (intermediate inputs). Mining and quarrying is a subset of industry (ISIC 10-14). Data are in constant local currency.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.IND.TOTL.CD\",\"Industry, value added (current US$)\",\"Industry corresponds to ISIC divisions 10-45 and includes manufacturing (ISIC divisions 15-37). It comprises value added in mining, manufacturing (also reported as a separate subgroup), construction, electricity, water, and gas. Value added is the net output of a sector after adding up all outputs and subtracting intermediate inputs. It is calculated without making deductions for depreciation of fabricated assets or depletion and degradation of natural resources. The origin of value added is determined by the International Standard Industrial Classification (ISIC), revision 3. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.IND.TOTL.CN\",\"Industry, value added (current LCU)\",\"Industry corresponds to ISIC divisions 10-45 and includes manufacturing (ISIC divisions 15-37). It comprises value added in mining, manufacturing (also reported as a separate subgroup), construction, electricity, water, and gas. Value added is the net output of a sector after adding up all outputs and subtracting intermediate inputs. It is calculated without making deductions for depreciation of fabricated assets or depletion and degradation of natural resources. The origin of value added is determined by the International Standard Industrial Classification (ISIC), revision 3. Data are in current local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.IND.TOTL.KD\",\"Industry, value added (constant 2010 US$)\",\"Industry corresponds to ISIC divisions 10-45 and includes manufacturing (ISIC divisions 15-37). It comprises value added in mining, manufacturing (also reported as a separate subgroup), construction, electricity, water, and gas. Value added is the net output of a sector after adding up all outputs and subtracting intermediate inputs. It is calculated without making deductions for depreciation of fabricated assets or depletion and degradation of natural resources. The origin of value added is determined by the International Standard Industrial Classification (ISIC), revision 3. Data are in constant 2010 U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.IND.TOTL.KD.ZG\",\"Industry, value added (annual % growth)\",\"Annual growth rate for industrial value added based on constant local currency. Aggregates are based on constant 2010 U.S. dollars. Industry corresponds to ISIC divisions 10-45 and includes manufacturing (ISIC divisions 15-37). It comprises value added in mining, manufacturing (also reported as a separate subgroup), construction, electricity, water, and gas. Value added is the net output of a sector after adding up all outputs and subtracting intermediate inputs. It is calculated without making deductions for depreciation of fabricated assets or depletion and degradation of natural resources. The origin of value added is determined by the International Standard Industrial Classification (ISIC), revision 3.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.IND.TOTL.KN\",\"Industry, value added (constant LCU)\",\"Industry corresponds to ISIC divisions 10-45 and includes manufacturing (ISIC divisions 15-37). It comprises value added in mining, manufacturing (also reported as a separate subgroup), construction, electricity, water, and gas. Value added is the net output of a sector after adding up all outputs and subtracting intermediate inputs. It is calculated without making deductions for depreciation of fabricated assets or depletion and degradation of natural resources. The origin of value added is determined by the International Standard Industrial Classification (ISIC), revision 3. Data are in constant local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.IND.TOTL.ZS\",\"Industry, value added (% of GDP)\",\"Industry corresponds to ISIC divisions 10-45 and includes manufacturing (ISIC divisions 15-37). It comprises value added in mining, manufacturing (also reported as a separate subgroup), construction, electricity, water, and gas. Value added is the net output of a sector after adding up all outputs and subtracting intermediate inputs. It is calculated without making deductions for depreciation of fabricated assets or depletion and degradation of natural resources. The origin of value added is determined by the International Standard Industrial Classification (ISIC), revision 3. Note: For VAB countries, gross value added at factor cost is used as the denominator.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.MNF.CHEM.ZS.UN\",\"Chemicals (% of value added in manufacturing)\",\"Value added in manufacturing is the sum of gross output less the value of intermediate inputs used in production for industries classified in ISIC major division D. Chemicals correspond to ISIC division 24.\",\"World Development Indicators\",\"United Nations Industrial Development Organization, International Yearbook of Industrial Statistics.\"\n\"NV.MNF.FBTO.ZS.UN\",\"Food, beverages and tobacco (% of value added in manufacturing)\",\"Value added in manufacturing is the sum of gross output less the value of intermediate inputs used in production for industries classified in ISIC major division D. Food, beverages, and tobacco correspond to ISIC divisions 15 and 16.\",\"World Development Indicators\",\"United Nations Industrial Development Organization, International Yearbook of Industrial Statistics.\"\n\"NV.MNF.MTRN.ZS.UN\",\"Machinery and transport equipment (% of value added in manufacturing)\",\"Value added in manufacturing is the sum of gross output less the value of intermediate inputs used in production for industries classified in ISIC major division D. Machinery and transport equipment correspond to ISIC divisions 29, 30, 32, 34, and 35.\",\"World Development Indicators\",\"United Nations Industrial Development Organization, International Yearbook of Industrial Statistics.\"\n\"NV.MNF.OTHR.ZS.UN\",\"Other manufacturing (% of value added in manufacturing)\",\"Value added in manufacturing is the sum of gross output less the value of intermediate inputs used in production for industries classified in ISIC major division D. Other manufacturing, a residual, covers wood and related products (ISIC division 20), paper and related products (ISIC divisions 21 and 22), petroleum and related products (ISIC division 23), basic metals and mineral products (ISIC division27), fabricated metal products and professional goods (ISIC division 28), and other industries (ISIC divisions 25, 26, 31, 33, 36, and 37). Includes unallocated data. When data for textiles, machinery, or chemicals are shown as not available, they are included in other manufacturing.\",\"World Development Indicators\",\"United Nations Industrial Development Organization, International Yearbook of Industrial Statistics.\"\n\"NV.MNF.TXTL.ZS.UN\",\"Textiles and clothing (% of value added in manufacturing)\",\"Value added in manufacturing is the sum of gross output less the value of intermediate inputs used in production for industries classified in ISIC major division D. Textiles and clothing correspond to ISIC divisions 17-19.\",\"World Development Indicators\",\"United Nations Industrial Development Organization, International Yearbook of Industrial Statistics.\"\n\"NV.SRV.ADMN.CD\",\"Public administration and defense, value added (current US$)\",\"Value added in public administration and defense is defined as the value of output of the public administration and defense industries less the value of intermediate consumption (intermediate inputs). Public administration and defense is a subset of services (ISIC 75). Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.SRV.ADMN.CN\",\"Public administration and defense, value added (current LCU)\",\"Value added in public administration and defense is defined as the value of output of the public administration and defense industries less the value of intermediate consumption (intermediate inputs). Public administration and defense is a subset of services (ISIC 75). Data are in current local currency.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.SRV.ADMN.KN\",\"Public administration and defense, value added (constant LCU)\",\"Value added in public administration and defense is defined as the value of output of the public administration and defense industries less the value of intermediate consumption (intermediate inputs). Public administration and defense is a subset of services (ISIC 75). Data are in constant local currency.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.SRV.BNKG.CD\",\"Banking, value added (current US$)\",\"Value added in banking is defined as the value of output of the banking industry less the value of intermediate consumption (intermediate inputs). Banking is a subset of services, comprising financial intermediation (ISIC 65-67). Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.SRV.BNKG.CN\",\"Banking, value added (current LCU)\",\"Value added in banking is defined as the value of output of the banking industry less the value of intermediate consumption (intermediate inputs). Banking is a subset of services, comprising financial intermediation (ISIC 65-67). Data are in current local currency.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.SRV.BNKG.KN\",\"Banking, value added (constant LCU)\",\"Value added in banking is defined as the value of output of the banking industry less the value of intermediate consumption (intermediate inputs). Banking is a subset of services, comprising financial intermediation (ISIC 65-67). Data are in constant local currency.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.SRV.DISC.CD\",\"Discrepancy in GDP, value added (current US$)\",\"This is the discrepancy included in the value added of services, etc. Covered here are any discrepancies noted by national compilers as well as discrepancies arising from linking new and old series in the World Bank data base. Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.SRV.DISC.CN\",\"Discrepancy in GDP, value added (current LCU)\",\"This is the discrepancy included in the value added of services, etc. Covered here are any discrepancies noted by national compilers as well as discrepancies arising from linking new and old series in the World Bank data base. Data are in current local currency.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.SRV.DISC.KN\",\"Discrepancy in GDP, value added (constant LCU)\",\"This is the discrepancy included in the value added of services, etc. Covered here are any discrepancies noted by national compilers as well as discrepancies arising from linking new and old series in the World Bank data base. Data are in constant local currency.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.SRV.DWEL.CD\",\"Ownership of dwellings, value added (current US$)\",\"Value added in dwellings is defined as the imputed value of output of owner occupied dwellings less the value of intermediate consumption (intermediate inputs). Dwellings is a subset of services (part of ISIC 70). Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.SRV.DWEL.CN\",\"Ownership of dwellings, value added (current LCU)\",\"Value added in dwellings is defined as the imputed value of output of owner occupied dwellings less the value of intermediate consumption (intermediate inputs). Dwellings is a subset of services (part of ISIC 70). Data are in current local currency.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.SRV.DWEL.KN\",\"Ownership of dwellings, value added (constant LCU)\",\"Value added in dwellings is defined as the imputed value of output of owner occupied dwellings less the value of intermediate consumption (intermediate inputs). Dwellings is a subset of services (part of ISIC 70). Data are in constant local currency.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.SRV.OTHR.CD\",\"Other services, value added (current US$)\",\"Value added in other services is defined as the value of output of the 'other services' industry less the value of intermediate consumption (intermediate inputs). Other services is a subset of services, comprising real estate, renting and business activities (excluding services of owner occupied dwellings), education, health and social work, other community, social and personal service activities, private households with employed persons, and extra territorial organizations (ISIC 70-74, 80-99). Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.SRV.OTHR.CN\",\"Other services, value added (current LCU)\",\"Value added in other services is defined as the value of output of the 'other services' industry less the value of intermediate consumption (intermediate inputs). Other services is a subset of services, comprising real estate, renting and business activities (excluding services of owner occupied dwellings), education, health and social work, other community, social and personal service activities, private households with employed persons, and extra territorial organizations (ISIC 70-74, 80-99). Data are in current local currency.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.SRV.OTHR.KN\",\"Other services, value added (constant LCU)\",\"Value added in other services is defined as the value of output of the 'other services' industry less the value of intermediate consumption (intermediate inputs). Other services is a subset of services, comprising real estate, renting and business activities (excluding services of owner occupied dwellings), education, health and social work, other community, social and personal service activities, private households with employed persons, and extra territorial organizations (ISIC 70-74, 80-99). Data are in constant local currency.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.SRV.TETC.CD\",\"Services, etc., value added (current US$)\",\"Services correspond to ISIC divisions 50-99. They include value added in wholesale and retail trade (including hotels and restaurants), transport, and government, financial, professional, and personal services such as education, health care, and real estate services. Also included are imputed bank service charges, import duties, and any statistical discrepancies noted by national compilers as well as discrepancies arising from rescaling. Value added is the net output of a sector after adding up all outputs and subtracting intermediate inputs. It is calculated without making deductions for depreciation of fabricated assets or depletion and degradation of natural resources. The industrial origin of value added is determined by the International Standard Industrial Classification (ISIC), revision 3. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.SRV.TETC.CN\",\"Services, etc., value added (current LCU)\",\"Services correspond to ISIC divisions 50-99. They include value added in wholesale and retail trade (including hotels and restaurants), transport, and government, financial, professional, and personal services such as education, health care, and real estate services. Also included are imputed bank service charges, import duties, and any statistical discrepancies noted by national compilers as well as discrepancies arising from rescaling. Value added is the net output of a sector after adding up all outputs and subtracting intermediate inputs. It is calculated without making deductions for depreciation of fabricated assets or depletion and degradation of natural resources. The industrial origin of value added is determined by the International Standard Industrial Classification (ISIC), revision 3. Data are in current local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.SRV.TETC.KD\",\"Services, etc., value added (constant 2010 US$)\",\"Services correspond to ISIC divisions 50-99. They include value added in wholesale and retail trade (including hotels and restaurants), transport, and government, financial, professional, and personal services such as education, health care, and real estate services. Also included are imputed bank service charges, import duties, and any statistical discrepancies noted by national compilers as well as discrepancies arising from rescaling. Value added is the net output of a sector after adding up all outputs and subtracting intermediate inputs. It is calculated without making deductions for depreciation of fabricated assets or depletion and degradation of natural resources. The industrial origin of value added is determined by the International Standard Industrial Classification (ISIC), revision 3. Data are in constant 2010 U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.SRV.TETC.KD.ZG\",\"Services, etc., value added (annual % growth)\",\"Annual growth rate for value added in services based on constant local currency. Aggregates are based on constant 2010 U.S. dollars. Services correspond to ISIC divisions 50-99. They include value added in wholesale and retail trade (including hotels and restaurants), transport, and government, financial, professional, and personal services such as education, health care, and real estate services. Also included are imputed bank service charges, import duties, and any statistical discrepancies noted by national compilers as well as discrepancies arising from rescaling. Value added is the net output of a sector after adding up all outputs and subtracting intermediate inputs. It is calculated without making deductions for depreciation of fabricated assets or depletion and degradation of natural resources. The industrial origin of value added is determined by the International Standard Industrial Classification (ISIC), revision 3.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.SRV.TETC.KN\",\"Services, etc., value added (constant LCU)\",\"Services correspond to ISIC divisions 50-99. They include value added in wholesale and retail trade (including hotels and restaurants), transport, and government, financial, professional, and personal services such as education, health care, and real estate services. Also included are imputed bank service charges, import duties, and any statistical discrepancies noted by national compilers as well as discrepancies arising from rescaling. Value added is the net output of a sector after adding up all outputs and subtracting intermediate inputs. It is calculated without making deductions for depreciation of fabricated assets or depletion and degradation of natural resources. The industrial origin of value added is determined by the International Standard Industrial Classification (ISIC), revision 3. Data are in constant local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.SRV.TETC.KN.ZG\",\"Value added, services and etc growth rate (%)\",\"This is the annual rate of growth of value added in services. Services correspond to ISIC divisions 50-99. They include value added in wholesale and retail trade (including hotels and restaurants), transport, and government, financial, professional, and personal services such as education, health care, and real estate services. Also included are imputed bank service charges, import duties, and any statistical discrepancies noted by national compilers as well as discrepancies arising from rescaling. Value added is the net output of a sector after adding up all outputs and subtracting intermediate inputs. It is calculated without making deductions for depreciation of fabricated assets or depletion and degradation of natural resources. The industrial origin of value added is determined by the International Standard Industrial Classification (ISIC), revision 2.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.SRV.TETC.ZS\",\"Services, etc., value added (% of GDP)\",\"Services correspond to ISIC divisions 50-99 and they include value added in wholesale and retail trade (including hotels and restaurants), transport, and government, financial, professional, and personal services such as education, health care, and real estate services. Also included are imputed bank service charges, import duties, and any statistical discrepancies noted by national compilers as well as discrepancies arising from rescaling. Value added is the net output of a sector after adding up all outputs and subtracting intermediate inputs. It is calculated without making deductions for depreciation of fabricated assets or depletion and degradation of natural resources. The industrial origin of value added is determined by the International Standard Industrial Classification (ISIC), revision 3. Note: For VAB countries, gross value added at factor cost is used as the denominator.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.SRV.TOTL.CD\",\"Services, value added (current US$)\",\"Services correspond to ISIC divisions 50-99. They include value added in wholesale and retail trade (including hotels and restaurants), transport, and government, financial, professional, and personal services such as education, health care, and real estate services. Also included are imputed bank service charges and import duties. Value added is the net output of a sector after adding up all outputs and subtracting intermediate inputs. It is calculated without making deductions for depreciation of fabricated assets or depletion and degradation of natural resources. The industrial origin of value added is determined by the International Standard Industrial Classification (ISIC), revision 2. Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.SRV.TOTL.CN\",\"Services, value added (current LCU)\",\"Services correspond to ISIC divisions 50-99. They include value added in wholesale and retail trade (including hotels and restaurants), transport, and government, financial, professional, and personal services such as education, health care, and real estate services. Also included are imputed bank service charges and import duties. Value added is the net output of a sector after adding up all outputs and subtracting intermediate inputs. It is calculated without making deductions for depreciation of fabricated assets or depletion and degradation of natural resources. The industrial origin of value added is determined by the International Standard Industrial Classification (ISIC), revision 2. Data are in current local currency.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.SRV.TOTL.KD\",\"Value added, services (constant 2000 US$)\",\"\\nValue added (gross) in ‘Services’ is defined as the value of output of the ‘Service’ industry less the value of intermediate consumption (intermediate inputs). ‘Services’ comprises wholesale and retail trade, hotel and restaurants, transport, storage and communications, financial intermediation, real estate, renting and business activities, public administration and defense, education, health and social work, other community, social and personal service activities, private households with employed persons, and extra-territorial organizations (ISIC 50-99). Data are in constant 2000 U.S. dollars.\",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"NV.SRV.TOTL.KN\",\"Services, value added (constant LCU)\",\"Services correspond to ISIC divisions 50-99. They include value added in wholesale and retail trade (including hotels and restaurants), transport, and government, financial, professional, and personal services such as education, health care, and real estate services. Also included are imputed bank service charges and import duties. Value added is the net output of a sector after adding up all outputs and subtracting intermediate inputs. It is calculated without making deductions for depreciation of fabricated assets or depletion and degradation of natural resources. The industrial origin of value added is determined by the International Standard Industrial Classification (ISIC), revision 2. Data are in constant local currency.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.SRV.TRAD.CD\",\"Wholesale and retail trade, value added (current US$)\",\"Value added in trade is defined as the value of output of the trade industry less the value of intermediate consumption (intermediate inputs). Trade is a subset of services, comprising wholesale and retail trade, and hotel and restaurants (ISIC 50-55). Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.SRV.TRAD.CN\",\"Wholesale and retail trade, value added (current LCU)\",\"Value added in trade is defined as the value of output of the trade industry less the value of intermediate consumption (intermediate inputs). Trade is a subset of services, comprising wholesale and retail trade, and hotel and restaurants (ISIC 50-55). Data are in current local currency.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.SRV.TRAD.KN\",\"Wholesale and retail trade, value added (constant LCU)\",\"Value added in trade is defined as the value of output of the trade industry less the value of intermediate consumption (intermediate inputs). Trade is a subset of services, comprising wholesale and retail trade, and hotel and restaurants (ISIC 50-55). Data are in constant local currency.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.SRV.TRAN.CD\",\"Transport, storage and communication, value added (current US$)\",\"Value added in transport is defined as the value of output of the transport industry less the value of intermediate consumption (intermediate inputs). Transport is a subset of services, comprising transport, storage and communications (ISIC 60-64). Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.SRV.TRAN.CN\",\"Transport, storage and communication, value added (current LCU)\",\"Value added in transport is defined as the value of output of the transport industry less the value of intermediate consumption (intermediate inputs). Transport is a subset of services, comprising transport, storage and communications (ISIC 60-64). Data are in current local currency.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NV.SRV.TRAN.KN\",\"Transport, storage and communication, value added (constant LCU)\",\"Value added in transport is defined as the value of output of the transport industry less the value of intermediate consumption (intermediate inputs). Transport is a subset of services, comprising transport, storage and communications (ISIC 60-64). Data are in constant local currency.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.ADJ.AEDU.CD\",\"Adjusted savings: education expenditure (current US$)\",\"Education expenditure refers to the current operating expenditures in education, including wages and salaries and excluding capital investments in buildings and equipment.\",\"World Development Indicators\",\"World Bank staff estimates using data from the United Nations Statistics Division's Statistical Yearbook, and the UNESCO Institute for Statistics online database.\"\n\"NY.ADJ.AEDU.GN.ZS\",\"Adjusted savings: education expenditure (% of GNI)\",\"Education expenditure refers to the current operating expenditures in education, including wages and salaries and excluding capital investments in buildings and equipment.\",\"World Development Indicators\",\"World Bank staff estimates using data from the United Nations Statistics Division's Statistical Yearbook, and the UNESCO Institute for Statistics online database.\"\n\"NY.ADJ.DCO2.CD\",\"Adjusted savings: carbon dioxide damage (current US$)\",\"Carbon dioxide damage is estimated to be $20 per ton of carbon (the unit damage in 1995 U.S. dollars) times the number of tons of carbon emitted.\",\"World Development Indicators\",\"World Bank staff estimates based on Samuel Fankhauser's \\\"Valuing Climate Change: The Economics of the Greenhouse\\\" (1995).\"\n\"NY.ADJ.DCO2.GN.ZS\",\"Adjusted savings: carbon dioxide damage (% of GNI)\",\"Carbon dioxide damage is estimated to be $20 per ton of carbon (the unit damage in 1995 U.S. dollars) times the number of tons of carbon emitted.\",\"World Development Indicators\",\"World Bank staff estimates based on Samuel Fankhauser's \\\"Valuing Climate Change: The Economics of the Greenhouse\\\" (1995).\"\n\"NY.ADJ.DFOR.CD\",\"Adjusted savings: net forest depletion (current US$)\",\"Net forest depletion is calculated as the product of unit resource rents and the excess of roundwood harvest over natural growth.\",\"World Development Indicators\",\"World Bank staff estimates based on sources and methods in World Bank's \\\"The Changing Wealth of Nations: Measuring Sustainable Development in the New Millennium\\\" (2011).\"\n\"NY.ADJ.DFOR.GN.ZS\",\"Adjusted savings: net forest depletion (% of GNI)\",\"Net forest depletion is calculated as the product of unit resource rents and the excess of roundwood harvest over natural growth.\",\"World Development Indicators\",\"World Bank staff estimates based on sources and methods in World Bank's \\\"The Changing Wealth of Nations: Measuring Sustainable Development in the New Millennium\\\" (2011).\"\n\"NY.ADJ.DKAP.CD\",\"Adjusted savings: consumption of fixed capital (current US$)\",\"Consumption of fixed capital represents the replacement value of capital used up in the process of production.\",\"World Development Indicators\",\"World Bank staff estimates using data from the United Nations Statistics Division's National Accounts Statistics.\"\n\"NY.ADJ.DKAP.GN.ZS\",\"Adjusted savings: consumption of fixed capital (% of GNI)\",\"Consumption of fixed capital represents the replacement value of capital used up in the process of production.\",\"World Development Indicators\",\"World Bank staff estimates using data from the United Nations Statistics Division's National Accounts Statistics.\"\n\"NY.ADJ.DMIN.CD\",\"Adjusted savings: mineral depletion (current US$)\",\"Mineral depletion is the ratio of the value of the stock of mineral resources to the remaining reserve lifetime (capped at 25 years). It covers tin, gold, lead, zinc, iron, copper, nickel, silver, bauxite, and phosphate. \",\"World Development Indicators\",\"World Bank staff estimates based on sources and methods in World Bank's \\\"The Changing Wealth of Nations: Measuring Sustainable Development in the New Millennium\\\" (2011).\"\n\"NY.ADJ.DMIN.GN.ZS\",\"Adjusted savings: mineral depletion (% of GNI)\",\"Mineral depletion is the ratio of the value of the stock of mineral resources to the remaining reserve lifetime (capped at 25 years). It covers tin, gold, lead, zinc, iron, copper, nickel, silver, bauxite, and phosphate. \",\"World Development Indicators\",\"World Bank staff estimates based on sources and methods in World Bank's \\\"The Changing Wealth of Nations: Measuring Sustainable Development in the New Millennium\\\" (2011).\"\n\"NY.ADJ.DNGY.CD\",\"Adjusted savings: energy depletion (current US$)\",\"Energy depletion is the ratio of the value of the stock of energy resources to the remaining reserve lifetime (capped at 25 years). It covers coal, crude oil, and natural gas. \",\"World Development Indicators\",\"World Bank staff estimates based on sources and methods in World Bank's \\\"The Changing Wealth of Nations: Measuring Sustainable Development in the New Millennium\\\" (2011).\"\n\"NY.ADJ.DNGY.GN.ZS\",\"Adjusted savings: energy depletion (% of GNI)\",\"Energy depletion is the ratio of the value of the stock of energy resources to the remaining reserve lifetime (capped at 25 years). It covers coal, crude oil, and natural gas. \",\"World Development Indicators\",\"World Bank staff estimates based on sources and methods in World Bank's \\\"The Changing Wealth of Nations: Measuring Sustainable Development in the New Millennium\\\" (2011).\"\n\"NY.ADJ.DPEM.CD\",\"Adjusted savings: particulate emission damage (current US$)\",\"Particulate emissions damage is the damage due to exposure of a country's population to ambient concentrations of particulates measuring less than 2.5 microns in diameter (PM2.5) as well as indoor concentrations of air pollution in households cooking with solid fuels. Damages are calculated as productivity losses in the workforce due to premature death and illness.\",\"World Development Indicators\",\"Data on health impacts from exposure to ambient PM2.5 pollution and household air pollution are from the Global Burden of Disease 2010 study. Data are provided by the Institute for Health Metrics and Evaluation at the University of Washington.\"\n\"NY.ADJ.DPEM.GN.ZS\",\"Adjusted savings: particulate emission damage (% of GNI)\",\"Particulate emissions damage is the damage due to exposure of a country's population to ambient concentrations of particulates measuring less than 2.5 microns in diameter (PM2.5) as well as indoor concentrations of air pollution in households cooking with solid fuels. Damages are calculated as productivity losses in the workforce due to premature death and illness.\",\"World Development Indicators\",\"Data on health impacts from exposure to ambient PM2.5 pollution and household air pollution are from the Global Burden of Disease 2010 study. Data are provided by the Institute for Health Metrics and Evaluation at the University of Washington.\"\n\"NY.ADJ.DRES.GN.ZS\",\"Adjusted savings: natural resources depletion (% of GNI)\",\"Natural resource depletion is the sum of net forest depletion, energy depletion, and mineral depletion. Net forest depletion is unit resource rents times the excess of roundwood harvest over natural growth. Energy depletion is the ratio of the value of the stock of energy resources to the remaining reserve lifetime (capped at 25 years). It covers coal, crude oil, and natural gas. Mineral depletion is the ratio of the value of the stock of mineral resources to the remaining reserve lifetime (capped at 25 years). It covers tin, gold, lead, zinc, iron, copper, nickel, silver, bauxite, and phosphate.\",\"World Development Indicators\",\"World Bank staff estimates based on sources and methods in World Bank's \\\"The Changing Wealth of Nations: Measuring Sustainable Development in the New Millennium\\\" (2011).\"\n\"NY.ADJ.ICTR.GN.ZS\",\"Adjusted savings: gross savings (% of GNI)\",\"Gross savings are the difference between gross national income and public and private consumption, plus net current transfers.\",\"World Development Indicators\",\"World Bank national accounts data files.\"\n\"NY.ADJ.NNAT.CD\",\"Adjusted savings: net national savings (current US$)\",\"Net national savings are equal to gross national savings less the value of consumption of fixed capital.\",\"World Development Indicators\",\"World Bank staff estimates based on sources and methods in World Bank's \\\"The Changing Wealth of Nations: Measuring Sustainable Development in the New Millennium\\\" (2011).\"\n\"NY.ADJ.NNAT.GN.ZS\",\"Adjusted savings: net national savings (% of GNI)\",\"Net national savings are equal to gross national savings less the value of consumption of fixed capital.\",\"World Development Indicators\",\"World Bank staff estimates based on sources and methods in World Bank's \\\"The Changing Wealth of Nations: Measuring Sustainable Development in the New Millennium\\\" (2011).\"\n\"NY.ADJ.NNTY.CD\",\"Adjusted net national income (current US$)\",\"Adjusted net national income is GNI minus consumption of fixed capital and natural resources depletion.\",\"World Development Indicators\",\"World Bank staff estimates based on sources and methods in World Bank's \\\"The Changing Wealth of Nations: Measuring Sustainable Development in the New Millennium\\\" (2011).\"\n\"NY.ADJ.NNTY.KD\",\"Adjusted net national income (constant 2010 US$)\",\"Adjusted net national income is GNI minus consumption of fixed capital and natural resources depletion.\",\"World Development Indicators\",\"World Bank staff estimates based on sources and methods in World Bank's \\\"The Changing Wealth of Nations: Measuring Sustainable Development in the New Millennium\\\" (2011).\"\n\"NY.ADJ.NNTY.KD.ZG\",\"Adjusted net national income (annual % growth)\",\"Adjusted net national income is GNI minus consumption of fixed capital and natural resources depletion.\",\"World Development Indicators\",\"World Bank staff estimates based on sources and methods in World Bank's \\\"The Changing Wealth of Nations: Measuring Sustainable Development in the New Millennium\\\" (2011).\"\n\"NY.ADJ.NNTY.PC.CD\",\"Adjusted net national income per capita (current US$)\",\"Adjusted net national income is GNI minus consumption of fixed capital and natural resources depletion.\",\"World Development Indicators\",\"World Bank staff estimates based on sources and methods in World Bank's \\\"The Changing Wealth of Nations: Measuring Sustainable Development in the New Millennium\\\" (2011).\"\n\"NY.ADJ.NNTY.PC.KD\",\"Adjusted net national income per capita (constant 2010 US$)\",\"Adjusted net national income is GNI minus consumption of fixed capital and natural resources depletion.\",\"World Development Indicators\",\"NULWorld Bank staff estimates based on sources and methods in World Bank's \\\"The Changing Wealth of Nations: Measuring Sustainable Development in the New Millennium\\\" (2011).L\"\n\"NY.ADJ.NNTY.PC.KD.ZG\",\"Adjusted net national income per capita (annual % growth)\",\"Adjusted net national income is GNI minus consumption of fixed capital and natural resources depletion.\",\"World Development Indicators\",\"World Bank staff estimates based on sources and methods in World Bank's \\\"The Changing Wealth of Nations: Measuring Sustainable Development in the New Millennium\\\" (2011).\"\n\"NY.ADJ.SVNG.CD\",\"Adjusted net savings, including particulate emission damage (current US$)\",\"Adjusted net savings are equal to net national savings plus education expenditure and minus energy depletion, mineral depletion, net forest depletion, and carbon dioxide and particulate emissions damage.\",\"World Development Indicators\",\"World Bank staff estimates based on sources and methods in World Bank's \\\"The Changing Wealth of Nations: Measuring Sustainable Development in the New Millennium\\\" (2011).\"\n\"NY.ADJ.SVNG.GN.ZS\",\"Adjusted net savings, including particulate emission damage (% of GNI)\",\"Adjusted net savings are equal to net national savings plus education expenditure and minus energy depletion, mineral depletion, net forest depletion, and carbon dioxide and particulate emissions damage.\",\"World Development Indicators\",\"World Bank staff estimates based on sources and methods in World Bank's \\\"The Changing Wealth of Nations: Measuring Sustainable Development in the New Millennium\\\" (2011).\"\n\"NY.ADJ.SVNX.CD\",\"Adjusted net savings, excluding particulate emission damage (current US$)\",\"Adjusted net savings are equal to net national savings plus education expenditure and minus energy depletion, mineral depletion, net forest depletion, and carbon dioxide. This series excludes particulate emissions damage.\",\"World Development Indicators\",\"World Bank staff estimates based on sources and methods in World Bank's \\\"The Changing Wealth of Nations: Measuring Sustainable Development in the New Millennium\\\" (2011).\"\n\"NY.ADJ.SVNX.GN.ZS\",\"Adjusted net savings, excluding particulate emission damage (% of GNI)\",\"Adjusted net savings are equal to net national savings plus education expenditure and minus energy depletion, mineral depletion, net forest depletion, and carbon dioxide. This series excludes particulate emissions damage.\",\"World Development Indicators\",\"World Bank staff estimates based on sources and methods in World Bank's \\\"The Changing Wealth of Nations: Measuring Sustainable Development in the New Millennium\\\" (2011).\"\n\"NY.AGR.SUBS.GD.ZS\",\"Agricultural support estimate (% of GDP)\",\"Agriculture support is the annual monetary value of all gross transfers from taxpayers and consumers, both domestic and foreign (in the form of subsidies arising from policy measures that support agriculture), net of the associated budgetary receipts, regardless of their objectives and impacts on farm production and income, or consumption of farm products.\",\"Millennium Development Goals\",\"Organisation for Economic Co-operation and Development, Producer and Consumer Support Estimates database. Available online at www.oecd.org/tad/support/psecse.\"\n\"NY.EXP.CAPM.KN\",\"Exports as a capacity to import (constant LCU)\",\"Exports as a capacity to import equals the current price value of exports of goods and services deflated by the import price index. Data are in constant local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GDP.COAL.RT.ZS\",\"Coal rents (% of GDP)\",\"Coal rents are the difference between the value of both hard and soft coal production at world prices and their total costs of production.\",\"World Development Indicators\",\"Estimates based on sources and methods described in \\\"The Changing Wealth of Nations: Measuring Sustainable Development in the New Millennium\\\" (World Bank, 2011).\"\n\"NY.GDP.DEFL.KD.ZG\",\"Inflation, GDP deflator (annual %)\",\"Inflation as measured by the annual growth rate of the GDP implicit deflator shows the rate of price change in the economy as a whole. The GDP implicit deflator is the ratio of GDP in current local currency to GDP in constant local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GDP.DEFL.ZS\",\"GDP deflator (base year varies by country)\",\"The GDP implicit deflator is the ratio of GDP in current local currency to GDP in constant local currency. The base year varies by country.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GDP.DISC.CD\",\"Discrepancy in expenditure estimate of GDP (current US$)\",\"This is the discrepancy included in the ‘total consumption etc.' This discrepancy is included to ensures that GDP from the expenditure side equals GDP measured by the income or output approach. Data are in current U.S. dollars.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GDP.DISC.CN\",\"Discrepancy in expenditure estimate of GDP (current LCU)\",\"Discrepancy in expenditure estimate of GDP is the discrepancy included in final consumption expenditure, etc. (total consumption, etc.). This discrepancy is included to ensure that GDP from the expenditure side equals GDP measured by the income or output approach. Data are in current local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GDP.DISC.KN\",\"Discrepancy in expenditure estimate of GDP (constant LCU)\",\" A statistical discrepancy usually arises when the GDP components are estimated independently by industrial origin and by expenditure categories. This item represents the discrepancy in the use of resources (i.e., the estimate of GDP by expenditure categories). Data are in constant local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GDP.FCST.CD\",\"Gross value added at factor cost (current US$)\",\"Gross value added at factor cost (formerly GDP at factor cost) is derived as the sum of the value added in the agriculture, industry and services sectors. If the value added of these sectors is calculated at purchaser values, gross value added at factor cost is derived by subtracting net product taxes from GDP. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GDP.FCST.CN\",\"Gross value added at factor cost (current LCU)\",\"Gross value added at factor cost (formerly GDP at factor cost) is derived as the sum of the value added in the agriculture, industry and services sectors. If the value added of these sectors is calculated at purchaser values, gross value added at factor cost is derived by subtracting net product taxes from GDP. Data are in current local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GDP.FCST.KD\",\"Gross value added at factor cost (constant 2010 US$)\",\"Gross value added at factor cost (formerly GDP at factor cost) is derived as the sum of the value added in the agriculture, industry and services sectors. If the value added of these sectors is calculated at purchaser values, gross value added at factor cost is derived by subtracting net product taxes from GDP. Data are in constant 2010 U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GDP.FCST.KN\",\"Gross value added at factor cost (constant LCU)\",\"Gross value added at factor cost (formerly GDP at factor cost) is derived as the sum of the value added in the agriculture, industry and services sectors. If the value added of these sectors is calculated at purchaser values, gross value added at factor cost is derived by subtracting net product taxes from GDP. Data are in constant local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GDP.FRST.RT.ZS\",\"Forest rents (% of GDP)\",\"Forest rents are roundwood harvest times the product of average prices and a region-specific rental rate.\",\"World Development Indicators\",\"Estimates based on sources and methods described in \\\"The Changing Wealth of Nations: Measuring Sustainable Development in the New Millennium\\\" (World Bank, 2011).\"\n\"NY.GDP.MINR.RT.ZS\",\"Mineral rents (% of GDP)\",\"Mineral rents are the difference between the value of production for a stock of minerals at world prices and their total costs of production. Minerals included in the calculation are tin, gold, lead, zinc, iron, copper, nickel, silver, bauxite, and phosphate.\",\"World Development Indicators\",\"Estimates based on sources and methods described in \\\"The Changing Wealth of Nations: Measuring Sustainable Development in the New Millennium\\\" (World Bank, 2011).\"\n\"NY.GDP.MKTP.CD\",\"GDP (current US$)\",\"GDP at purchaser's prices is the sum of gross value added by all resident producers in the economy plus any product taxes and minus any subsidies not included in the value of the products. It is calculated without making deductions for depreciation of fabricated assets or for depletion and degradation of natural resources. Data are in current U.S. dollars. Dollar figures for GDP are converted from domestic currencies using single year official exchange rates. For a few countries where the official exchange rate does not reflect the rate effectively applied to actual foreign exchange transactions, an alternative conversion factor is used.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GDP.MKTP.CD.XD\",\"GDP deflator, index (2000=100; US$ series)\",\"The GDP deflator series based upon the U.S. dollar series is defined as the ratio of the GDP at market prices in current U.S. dollars) to the GDP at market prices in constant (2000) U.S. dollars.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"NY.GDP.MKTP.CN\",\"GDP (current LCU)\",\"GDP at purchaser's prices is the sum of gross value added by all resident producers in the economy plus any product taxes and minus any subsidies not included in the value of the products. It is calculated without making deductions for depreciation of fabricated assets or for depletion and degradation of natural resources. Data are in current local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GDP.MKTP.CN.XD\",\"GDP deflator, period average (LCU index 2000=100)\",\"The GDP implicit deflator is the ratio of GDP in current local currency to GDP in constant local currency.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"NY.GDP.MKTP.KD\",\"GDP at market prices (constant 2010 US$)\",\"GDP at purchaser's prices is the sum of gross value added by all resident producers in the economy plus any product taxes and minus any subsidies not included in the value of the products. It is calculated without making deductions for depreciation of fabricated assets or for depletion and degradation of natural resources. Data are in constant 2010 U.S. dollars. Dollar figures for GDP are converted from domestic currencies using 2010 official exchange rates. For a few countries where the official exchange rate does not reflect the rate effectively applied to actual foreign exchange transactions, an alternative conversion factor is used.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GDP.MKTP.KD.ZG\",\"GDP growth (annual %)\",\"Annual percentage growth rate of GDP at market prices based on constant local currency. Aggregates are based on constant 2010 U.S. dollars. GDP is the sum of gross value added by all resident producers in the economy plus any product taxes and minus any subsidies not included in the value of the products. It is calculated without making deductions for depreciation of fabricated assets or for depletion and degradation of natural resources.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GDP.MKTP.KN\",\"GDP (constant LCU)\",\"GDP is the sum of gross value added by all resident producers in the economy plus any product taxes and minus any subsidies not included in the value of the products. It is calculated without making deductions for depreciation of fabricated assets or for depletion and degradation of natural resources. Data are in constant local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GDP.MKTP.PP.CD\",\"GDP, PPP (current international $)\",\"PPP GDP is gross domestic product converted to international dollars using purchasing power parity rates. An international dollar has the same purchasing power over GDP as the U.S. dollar has in the United States. GDP is the sum of gross value added by all resident producers in the economy plus any product taxes and minus any subsidies not included in the value of the products. It is calculated without making deductions for depreciation of fabricated assets or for depletion and degradation of natural resources. Data are in current international dollars. For most economies PPP figures are extrapolated from the 2011 International Comparison Program (ICP) benchmark estimates or imputed using a statistical model based on the 2011 ICP. For 47 high- and upper middle-income economies conversion factors are provided by Eurostat and the Organisation for Economic Co-operation and Development (OECD).\",\"World Development Indicators\",\"World Bank, International Comparison Program database.\"\n\"NY.GDP.MKTP.PP.KD\",\"GDP, PPP (constant 2011 international $)\",\"PPP GDP is gross domestic product converted to international dollars using purchasing power parity rates. An international dollar has the same purchasing power over GDP as the U.S. dollar has in the United States. GDP is the sum of gross value added by all resident producers in the economy plus any product taxes and minus any subsidies not included in the value of the products. It is calculated without making deductions for depreciation of fabricated assets or for depletion and degradation of natural resources. Data are in constant 2011 international dollars.\",\"World Development Indicators\",\"World Bank, International Comparison Program database.\"\n\"NY.GDP.MKTP.XU.E\",\"GDP deflator, end period (base year varies by country)\",\"The GDP implicit deflator is the ratio of GDP in current local currency to GDP in constant local currency. The base year varies by country.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GDP.NGAS.RT.ZS\",\"Natural gas rents (% of GDP)\",\"Natural gas rents are the difference between the value of natural gas production at world prices and total costs of production.\",\"World Development Indicators\",\"Estimates based on sources and methods described in \\\"The Changing Wealth of Nations: Measuring Sustainable Development in the New Millennium\\\" (World Bank, 2011).\"\n\"NY.GDP.PCAP.CD\",\"GDP per capita (current US$)\",\"GDP per capita is gross domestic product divided by midyear population. GDP is the sum of gross value added by all resident producers in the economy plus any product taxes and minus any subsidies not included in the value of the products. It is calculated without making deductions for depreciation of fabricated assets or for depletion and degradation of natural resources. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GDP.PCAP.CN\",\"GDP per capita (current LCU)\",\"GDP per capita is gross domestic product divided by midyear population. GDP is the sum of gross value added by all resident producers in the economy plus any product taxes and minus any subsidies not included in the value of the products. It is calculated without making deductions for depreciation of fabricated assets or for depletion and degradation of natural resources. Data are in current local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GDP.PCAP.KD\",\"GDP per capita (constant 2010 US$)\",\"GDP per capita is gross domestic product divided by midyear population. GDP is the sum of gross value added by all resident producers in the economy plus any product taxes and minus any subsidies not included in the value of the products. It is calculated without making deductions for depreciation of fabricated assets or for depletion and degradation of natural resources. Data are in constant 2010 U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GDP.PCAP.KD.ZG\",\"GDP per capita growth (annual %)\",\"Annual percentage growth rate of GDP per capita based on constant local currency. Aggregates are based on constant 2010 U.S. dollars. GDP per capita is gross domestic product divided by midyear population. GDP at purchaser's prices is the sum of gross value added by all resident producers in the economy plus any product taxes and minus any subsidies not included in the value of the products. It is calculated without making deductions for depreciation of fabricated assets or for depletion and degradation of natural resources.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GDP.PCAP.KN\",\"GDP per capita (constant LCU)\",\"GDP per capita is gross domestic product divided by midyear population. GDP at purchaser's prices is the sum of gross value added by all resident producers in the economy plus any product taxes and minus any subsidies not included in the value of the products. It is calculated without making deductions for depreciation of fabricated assets or for depletion and degradation of natural resources. Data are in constant local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GDP.PCAP.PP.CD\",\"GDP per capita, PPP (current international $)\",\"GDP per capita based on purchasing power parity (PPP). PPP GDP is gross domestic product converted to international dollars using purchasing power parity rates. An international dollar has the same purchasing power over GDP as the U.S. dollar has in the United States. GDP at purchaser's prices is the sum of gross value added by all resident producers in the economy plus any product taxes and minus any subsidies not included in the value of the products. It is calculated without making deductions for depreciation of fabricated assets or for depletion and degradation of natural resources. Data are in current international dollars based on the 2011 ICP round.\",\"World Development Indicators\",\"World Bank, International Comparison Program database.\"\n\"NY.GDP.PCAP.PP.KD\",\"GDP per capita, PPP (constant 2011 international $)\",\"GDP per capita based on purchasing power parity (PPP). PPP GDP is gross domestic product converted to international dollars using purchasing power parity rates. An international dollar has the same purchasing power over GDP as the U.S. dollar has in the United States. GDP at purchaser's prices is the sum of gross value added by all resident producers in the economy plus any product taxes and minus any subsidies not included in the value of the products. It is calculated without making deductions for depreciation of fabricated assets or for depletion and degradation of natural resources. Data are in constant 2011 international dollars.\",\"World Development Indicators\",\"World Bank, International Comparison Program database.\"\n\"NY.GDP.PCAP.PP.KD.ZG\",\"GDP per capita, PPP annual growth (%)\",\"Annual percentage growth rate of GDP per capita based on purchasing power parity (PPP). GDP per capita based on purchasing power parity (PPP). PPP GDP is gross domestic product converted to international dollars using purchasing power parity rates. An international dollar has the same purchasing power over GDP as the U.S. dollar has in the United States. GDP at purchaser's prices is the sum of gross value added by all resident producers in the economy plus any product taxes and minus any subsidies not included in the value of the products. It is calculated without making deductions for depreciation of fabricated assets or for depletion and degradation of natural resources. Data are in constant 2000 international dollars.  \",\"Africa Development Indicators\",\"\\\"World Bank, International Comparison Programme database.\\r\\\"\"\n\"NY.GDP.PETR.RT.ZS\",\"Oil rents (% of GDP)\",\"Oil rents are the difference between the value of crude oil production at world prices and total costs of production.\",\"World Development Indicators\",\"Estimates based on sources and methods described in \\\"The Changing Wealth of Nations: Measuring Sustainable Development in the New Millennium\\\" (World Bank, 2011).\"\n\"NY.GDP.TOTL.RT.ZS\",\"Total natural resources rents (% of GDP)\",\"Total natural resources rents are the sum of oil rents, natural gas rents, coal rents (hard and soft), mineral rents, and forest rents.\",\"World Development Indicators\",\"Estimates based on sources and methods described in \\\"The Changing Wealth of Nations: Measuring Sustainable Development in the New Millennium\\\" (World Bank, 2011).\"\n\"NY.GDS.PRVT.CD\",\"Gross domestic savings, private (current US$)\",\"Private sector’s gross domestic saving is derived as value added in private sector at factor cost less private consumption, etc. Data are in current U.S. dollars.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"NY.GDS.PRVT.CN\",\"Gross domestic savings, private (current LCU)\",\"Private sector’s gross domestic saving is derived as value added in private sector at factor cost less private consumption, etc. Data are in current local currency.  \",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GDS.PRVT.KN\",\"Gross domestic savings, private (constant LCU)\",\"Private sector’s gross domestic saving is derived as value added in private sector at factor cost less private consumption, etc. Data are in constant local currency.  \",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GDS.PUBL.CD\",\"Gross domestic savings, public (current US$)\",\"Public sector’s gross domestic saving is derived as value added in public sector at factor cost plus all indirect taxes, net less general government consumption expenditure. Data are in current U.S. dollars.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"NY.GDS.PUBL.CN\",\"Gross domestic savings, public (current LCU)\",\"Public sector’s gross domestic saving is derived as value added in public sector at factor cost plus all indirect taxes, net less general government consumption expenditure. Data are in current local currency.  \",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GDS.PUBL.KN\",\"Gross domestic savings, public (constant LCU)\",\"Public sector’s gross domestic saving is derived as value added in public sector at factor cost plus all indirect taxes, net less general government consumption expenditure. Data are in constant local currency.  \",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GDS.TOTL.CD\",\"Gross domestic savings (current US$)\",\"Gross domestic savings are calculated as GDP less final consumption expenditure (total consumption). Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GDS.TOTL.CN\",\"Gross domestic savings (current LCU)\",\"Gross domestic savings are calculated as GDP less final consumption expenditure (total consumption). Data are in current local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GDS.TOTL.KD\",\"Gross domestic savings, total (constant 2000 US$)\",\"Gross domestic savings are calculated as the difference between GDP and total consumption. Data are in constant 2000 U.S. dollars. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"NY.GDS.TOTL.ZS\",\"Gross domestic savings (% of GDP)\",\"Gross domestic savings are calculated as GDP less final consumption expenditure (total consumption).\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GDY.TOTL.KN\",\"Gross domestic income (constant LCU)\",\"Gross domestic income is derived as the sum of GDP and the terms of trade adjustment. Data are in constant local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GNP.ATLS.CD\",\"GNI, Atlas method (current US$)\",\"GNI (formerly GNP) is the sum of value added by all resident producers plus any product taxes (less subsidies) not included in the valuation of output plus net receipts of primary income (compensation of employees and property income) from abroad. Data are in current U.S. dollars. GNI, calculated in national currency, is usually converted to U.S. dollars at official exchange rates for comparisons across economies, although an alternative rate is used when the official exchange rate is judged to diverge by an exceptionally large margin from the rate actually applied in international transactions. To smooth fluctuations in prices and exchange rates, a special Atlas method of conversion is used by the World Bank. This applies a conversion factor that averages the exchange rate for a given year and the two preceding years, adjusted for differences in rates of inflation between the country, and through 2000, the G-5 countries (France, Germany, Japan, the United Kingdom, and the United States). From 2001, these countries include the Euro area, Japan, the United Kingdom, and the United States.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GNP.MKTP.CD\",\"GNI (current US$)\",\"GNI (formerly GNP) is the sum of value added by all resident producers plus any product taxes (less subsidies) not included in the valuation of output plus net receipts of primary income (compensation of employees and property income) from abroad. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GNP.MKTP.CN\",\"GNI (current LCU)\",\"GNI (formerly GNP) is the sum of value added by all resident producers plus any product taxes (less subsidies) not included in the valuation of output plus net receipts of primary income (compensation of employees and property income) from abroad. Data are in current local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GNP.MKTP.KD\",\"GNI (constant 2010 US$)\",\"GNI (formerly GNP) is the sum of value added by all resident producers plus any product taxes (less subsidies) not included in the valuation of output plus net receipts of primary income (compensation of employees and property income) from abroad. Data are in constant 2010 U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GNP.MKTP.KD.ZG\",\"GNI growth (annual %)\",\"GNI (formerly GNP) is the sum of value added by all resident producers plus any product taxes (less subsidies) not included in the valuation of output plus net receipts of primary income (compensation of employees and property income) from abroad.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GNP.MKTP.KN\",\"GNI (constant LCU)\",\"GNI (formerly GNP) is the sum of value added by all resident producers plus any product taxes (less subsidies) not included in the valuation of output plus net receipts of primary income (compensation of employees and property income) from abroad. Data are in constant local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GNP.MKTP.PC.CD\",\"GNI per capita (current US$)\",\"GNI per capita is gross national income divided by midyear population. GNI (formerly GNP) is the sum of value added by all resident producers plus any product taxes (less subsidies) not included in the valuation of output plus net receipts of primary income (compensation of employees and property income) from abroad. Data are in current U.S. dollars.\",\"Sustainable Development Goals \",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GNP.MKTP.PP.CD\",\"GNI, PPP (current international $)\",\"PPP GNI (formerly PPP GNP) is gross national income (GNI) converted to international dollars using purchasing power parity rates. An international dollar has the same purchasing power over GNI as a U.S. dollar has in the United States. Gross national income is the sum of value added by all resident producers plus any product taxes (less subsidies) not included in the valuation of output plus net receipts of primary income (compensation of employees and property income) from abroad. Data are in current international dollars. For most economies PPP figures are extrapolated from the 2011 International Comparison Program (ICP) benchmark estimates or imputed using a statistical model based on the 2011 ICP. For 47 high- and upper middle-income economies conversion factors are provided by Eurostat and the Organisation for Economic Co-operation and Development (OECD).\",\"World Development Indicators\",\"World Bank, International Comparison Program database.\"\n\"NY.GNP.MKTP.PP.KD\",\"GNI, PPP (constant 2011 international $)\",\"PPP GNI (formerly PPP GNP) is gross national income (GNI) converted to international dollars using purchasing power parity rates. An international dollar has the same purchasing power over GNI as a U.S. dollar has in the United States. Gross national income is the sum of value added by all resident producers plus any product taxes (less subsidies) not included in the valuation of output plus net receipts of primary income (compensation of employees and property income) from abroad. Data are in constant 2011 international dollars.\",\"World Development Indicators\",\"World Bank, International Comparison Program database.\"\n\"NY.GNP.PCAP.CD\",\"GNI per capita, Atlas method (current US$)\",\"GNI per capita (formerly GNP per capita) is the gross national income, converted to U.S. dollars using the World Bank Atlas method, divided by the midyear population. GNI is the sum of value added by all resident producers plus any product taxes (less subsidies) not included in the valuation of output plus net receipts of primary income (compensation of employees and property income) from abroad. GNI, calculated in national currency, is usually converted to U.S. dollars at official exchange rates for comparisons across economies, although an alternative rate is used when the official exchange rate is judged to diverge by an exceptionally large margin from the rate actually applied in international transactions. To smooth fluctuations in prices and exchange rates, a special Atlas method of conversion is used by the World Bank. This applies a conversion factor that averages the exchange rate for a given year and the two preceding years, adjusted for differences in rates of inflation between the country, and through 2000, the G-5 countries (France, Germany, Japan, the United Kingdom, and the United States). From 2001, these countries include the Euro area, Japan, the United Kingdom, and the United States.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GNP.PCAP.CN\",\"GNI per capita (current LCU)\",\"GNI per capita is gross national income divided by midyear population. GNI (formerly GNP) is the sum of value added by all resident producers plus any product taxes (less subsidies) not included in the valuation of output plus net receipts of primary income (compensation of employees and property income) from abroad. Data are in current local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GNP.PCAP.KD\",\"GNI per capita (constant 2010 US$)\",\"GNI per capita is gross national income divided by midyear population. GNI (formerly GNP) is the sum of value added by all resident producers plus any product taxes (less subsidies) not included in the valuation of output plus net receipts of primary income (compensation of employees and property income) from abroad. Data are in constant 2010 U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GNP.PCAP.KD.ZG\",\"GNI per capita growth (annual %)\",\"Annual percentage growth rate of GNI per capita based on constant local currency. Aggregates are based on constant 2010 U.S. dollars. GNI per capita is gross national income divided by midyear population. GNI (formerly GNP) is the sum of value added by all resident producers plus any product taxes (less subsidies) not included in the valuation of output plus net receipts of primary income (compensation of employees and property income) from abroad.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GNP.PCAP.KN\",\"GNI per capita (constant LCU)\",\"GNI per capita is gross national income divided by midyear population. GNI (formerly GNP) is the sum of value added by all resident producers plus any product taxes (less subsidies) not included in the valuation of output plus net receipts of primary income (compensation of employees and property income) from abroad. Data are in constant local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GNP.PCAP.PP.CD\",\"GNI per capita, PPP (current international $)\",\"GNI per capita based on purchasing power parity (PPP). PPP GNI is gross national income (GNI) converted to international dollars using purchasing power parity rates. An international dollar has the same purchasing power over GNI as a U.S. dollar has in the United States. GNI is the sum of value added by all resident producers plus any product taxes (less subsidies) not included in the valuation of output plus net receipts of primary income (compensation of employees and property income) from abroad. Data are in current international dollars based on the 2011 ICP round.\",\"World Development Indicators\",\"World Bank, International Comparison Program database.\"\n\"NY.GNP.PCAP.PP.KD\",\"GNI per capita, PPP (constant 2011 international $)\",\"GNI per capita based on purchasing power parity (PPP). PPP GNI is gross national income (GNI) converted to international dollars using purchasing power parity rates. An international dollar has the same purchasing power over GNI as a U.S. dollar has in the United States. GNI is the sum of value added by all resident producers plus any product taxes (less subsidies) not included in the valuation of output plus net receipts of primary income (compensation of employees and property income) from abroad. Data are in constant 2011 international dollars.\",\"World Development Indicators\",\"World Bank, International Comparison Program database.\"\n\"NY.GNS.ICTR.CD\",\"Gross savings (current US$)\",\"Gross savings are calculated as gross national income less total consumption, plus net transfers. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GNS.ICTR.CN\",\"Gross savings (current LCU)\",\"Gross savings are calculated as gross national income less total consumption, plus net transfers. Data are in current local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GNS.ICTR.GN.ZS\",\"Gross savings (% of GNI)\",\"Gross savings are calculated as gross national income less total consumption, plus net transfers.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GNS.ICTR.KD\",\"Gross national savings, including net current transfers (constant 2000 US$)\",\"Gross national savings including net current transfers is equal to gross domestic savings plus net income and net current transfers from abroad. Data are in constant 2000 U.S. dollars.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"NY.GNS.ICTR.KN\",\"Gross national savings, including net current transfers (constant LCU)\",\"Gross national savings, including net current transfers is equal to gross domestic savings plus net income and net current transfers from abroad. Data are in constant local currency.  \",\"Africa Development Indicators\",\"\\\"World Bank country economists.\\r\\\"\"\n\"NY.GNS.ICTR.ZS\",\"Gross savings (% of GDP)\",\"Gross savings are calculated as gross national income less total consumption, plus net transfers.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GNS.PRVT.CD\",\"Gross national savings, private (current US$)\",\"Gross saving real in private sector is derived as gross disposable income REAL in private sector less private consumption expenditure. Data are in current U.S. dollars.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"NY.GNS.PRVT.CN\",\"Gross national savings, private (current LCU)\",\"Gross saving real in private sector is derived as gross disposable income REAL in private sector less private consumption expenditure. Data are in current local currency.  \",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GNS.PRVT.KN\",\"Gross national savings, private (constant LCU)\",\"Gross saving real in private sector is derived as gross disposable income REAL in private sector less private consumption expenditure. Data are in constant local currency. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"NY.GNS.PUBL.CD\",\"Gross national savings, public (current US$)\",\"Gross saving in public sector is derived as gross disposable income in public sector less government final consumption expenditure. Data are in current U.S. dollars.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"NY.GNS.PUBL.CN\",\"Gross national savings, public (current LCU)\",\"Gross saving in public sector is derived as gross disposable income in public sector less government final consumption expenditure. Data are in current local currency.  \",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GNS.PUBL.KN\",\"Gross national savings, public (constant LCU)\",\"Gross saving in public sector is derived as gross disposable income in public sector less government final consumption expenditure. Data are in constant local currency.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"NY.GNY.TOTL.CN\",\"Gross national disposable income (current LCU)\",\"Gross national income is derived as the sum of GNP and the terms of trade adjustment. Data are in current local currency.  \",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GNY.TOTL.KD\",\"Gross national income (constant 2000 US$)\",\"Gross national income is derived as the sum of GNP and the terms of trade adjustment. Data are in constant 2000 U.S. dollars.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"NY.GNY.TOTL.KN\",\"Gross national income (constant LCU)\",\"Gross national income is derived as the sum of GNP and the terms of trade adjustment. Data are in constant local currency.\",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GSR.NFCY.CD\",\"Net income from abroad (current US$)\",\"Net income includes the net labor income and net property and entrepreneurial income components of the SNA. Labor income covers compensation of employees paid to nonresident workers. Property and entrepreneurial income covers investment income from the ownership of foreign financial claims (interest, dividends, rent, etc.) and nonfinancial property income (patents, copyrights, etc.). Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GSR.NFCY.CN\",\"Net income from abroad (current LCU)\",\"Net income includes the net labor income and net property and entrepreneurial income components of the SNA. Labor income covers compensation of employees paid to nonresident workers. Property and entrepreneurial income covers investment income from the ownership of foreign financial claims (interest, dividends, rent, etc.) and nonfinancial property income (patents, copyrights, etc.). Data are in current local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.GSR.NFCY.KN\",\"Net income from abroad (constant LCU)\",\"Net income includes the net labor income and net property and entrepreneurial income components of the SNA. Labor income covers compensation of employees paid to nonresident workers. Property and entrepreneurial income covers investment income from the ownership of foreign financial claims (interest, dividends, rent, etc.) and nonfinancial property income (patents, copyrights, etc.). Data are in constant local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.TAX.IDRT.CD\",\"Indirect taxes (current US$)\",\"Taxes are compulsory, unrequited payments made by institutional units to government units. Indirect taxes consists of ‘taxes on products’ payable on goods and services when they are produced, delivered, sold, transferred or otherwise disposed by their producers, plus ‘other taxes on production’. Data are in current U.S. dollars.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"NY.TAX.IDRT.CN\",\"Indirect taxes (current LCU)\",\"Taxes are compulsory, unrequited payments made by institutional units to government units. Indirect taxes consists of ‘taxes on products’ payable on goods and services when they are produced, delivered, sold, transferred or otherwise disposed by their producers, plus ‘other taxes on production’. Data are in current local currency.  \",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.TAX.NIND.CD\",\"Net taxes on products (current US$)\",\"Net taxes on products (net indirect taxes) are the sum of product taxes less subsidies. Product taxes are those taxes payable by producers that relate to the production, sale, purchase or use of the goods and services. Subsidies are grants on the current account made by general government to private enterprises and unincorporated public enterprises. The grants may take the form of payments to ensure a guaranteed price or to enable maintenance of prices of goods and services below costs of production, and other forms of assistance to producers. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.TAX.NIND.CN\",\"Net taxes on products (current LCU)\",\"Net taxes on products (net indirect taxes) are the sum of product taxes less subsidies. Product taxes are those taxes payable by producers that relate to the production, sale, purchase or use of the goods and services. Subsidies are grants on the current account made by general government to private enterprises and unincorporated public enterprises. The grants may take the form of payments to ensure a guaranteed price or to enable maintenance of prices of goods and services below costs of production, and other forms of assistance to producers. Data are in current local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.TAX.NIND.KN\",\"Net taxes on products (constant LCU)\",\"Net taxes on products (net indirect taxes) are the sum of product taxes less subsidies. Product taxes are those taxes payable by producers that relate to the production, sale, purchase or use of the goods and services. Subsidies are grants on the current account made by general government to private enterprises and unincorporated public enterprises. The grants may take the form of payments to ensure a guaranteed price or to enable maintenance of prices of goods and services below costs of production, and other forms of assistance to producers. Data are in constant local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.TAX.SUBS.CD\",\"Subsidies (current US$)\",\"Subsidies are current unrequited payments that government units make to enterprises, resident producers and importers. Subsidies may be designed to influence enterprises level or type of production, or the prices at which the products are sold. (Capital grants are in the national accounts classified as capital transfers.) Subsidies consists of ‘subsidies on products’, subsidies payable per unit of a good or a service, and ‘other subsidies on production’, which cover all other subsidies enterprises receives as a consequence of engaging in production. Data are in current U.S. dollars.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"NY.TAX.SUBS.CN\",\"Subsidies (current LCU; from SNA)\",\"Subsidies are current unrequited payments that government units make to enterprises, resident producers and importers. Subsidies may be designed to influence enterprises level or type of production, or the prices at which the products are sold. (Capital grants are in the national accounts classified as capital transfers.) Subsidies consists of ‘subsidies on products’, subsidies payable per unit of a good or a service, and ‘other subsidies on production’, which cover all other subsidies enterprises receives as a consequence of engaging in production. Data are in current local currency.  \",\"Africa Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.TRF.NCTR.CD\",\"Net current transfers from abroad (current US$)\",\"Current transfers comprise transfers of income between residents of the reporting country and the rest of the world that carry no provisions for repayment. Net current transfers from abroad is equal to the unrequited transfers of income from nonresidents to residents minus the unrequited transfers from residents to nonresidents. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.TRF.NCTR.CN\",\"Net current transfers from abroad (current LCU)\",\"Current transfers comprise transfers of income between residents of the reporting country and the rest of the world that carry no provisions for repayment. Net current transfers from abroad is equal to the unrequited transfers of income from nonresidents to residents minus the unrequited transfers from residents to nonresidents. Data are in current local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.TRF.NCTR.KN\",\"Net current transfers from abroad (constant LCU)\",\"Current transfers comprise transfers of income between residents of the reporting country and the rest of the world that carry no provisions for repayment. Net current transfers from abroad is equal to the unrequited transfers of income from nonresidents to residents minus the unrequited transfers from residents to nonresidents. Data are in constant local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NY.TTF.GNFS.KN\",\"Terms of trade adjustment (constant LCU)\",\"The terms of trade effect equals capacity to import less exports of goods and services in constant prices. Data are in constant local currency.\",\"World Development Indicators\",\"World Bank national accounts data, and OECD National Accounts data files.\"\n\"NYGDPMKTPKDZ\",\"Annual percentage growth rate of GDP at market prices based on constant 2010 US Dollars.\",\"GDP is the sum of gross value added by all resident producers in the economy plus any product taxes and minus any subsidies not included in the value of the products. It is calculated without making deductions for depreciation of fabricated assets or for depletion and degradation of natural resources.\",\"GEP Economic Prospects\",\"The World Bank\"\n\"OECD.TSAL.0.E0\",\"Annual statutory teacher salaries in public institutions in USD. Pre-Primary. Starting salary\",\"Starting salaries refer to the average scheduled gross salary per year for a full-time teacher with the minimum training necessary to be fully qualified at the beginning of the teaching career. Salaries are in equivalent USD converted using PPPs for private consumption. Statutory salaries refer to scheduled salaries according to official pay scales, while actual salaries refer to the average annual salary earned by a full-time teacher. The salaries reported are gross (total sum paid by the employer) less the employer’s contribution to social security and pension, according to existing salary scales. Salaries are “before tax”, i.e. before deductions for income tax. Teachers’ salaries are one component of teachers’ total compensation. Other benefits, such as regional allowances for teaching in remote areas, family allowances, reduced rates on public transport and tax allowances on the purchase of cultural materials, may also form part of teachers’ total remuneration. There are also large differences in taxation and social-benefits systems in OECD countries. All this should be borne in mind when comparing statutory salaries across countries. Data after 2009 is not comparable to data for 2009 and before due to changes in methodology. For more information, consult the OECD's Education at a Glance website: http://www.oecd.org/edu/eag.htm\",\"Education Statistics\",\"Organisation for Economic Co-operation and Development (OECD)\"\n\"OECD.TSAL.0.E10\",\"Annual statutory teacher salaries in public institutions in USD. Pre-Primary. 10 years of experience\",\"Salaries after 10 years of experience refer to the scheduled annual salary of a full-time classroom teacher with the minimum training necessary to be fully qualified plus 10 years of experience. Salaries are in equivalent USD converted using PPPs for private consumption. Statutory salaries refer to scheduled salaries according to official pay scales, while actual salaries refer to the average annual salary earned by a full-time teacher. The salaries reported are gross (total sum paid by the employer) less the employer’s contribution to social security and pension, according to existing salary scales. Salaries are “before tax”, i.e. before deductions for income tax. Teachers’ salaries are one component of teachers’ total compensation. Other benefits, such as regional allowances for teaching in remote areas, family allowances, reduced rates on public transport and tax allowances on the purchase of cultural materials, may also form part of teachers’ total remuneration. There are also large differences in taxation and social-benefits systems in OECD countries. All this should be borne in mind when comparing statutory salaries across countries. Data after 2009 is not comparable to data for 2009 and before due to changes in methodology. For more information, consult the OECD's Education at a Glance website: http://www.oecd.org/edu/eag.htm\",\"Education Statistics\",\"Organisation for Economic Co-operation and Development (OECD)\"\n\"OECD.TSAL.0.E15\",\"Annual statutory teacher salaries in public institutions in USD. Pre-Primary. 15 years of experience\",\"Salaries after 15 years of experience refer to the scheduled annual salary of a full-time classroom teacher with the minimum training necessary to be fully qualified plus 15 years of experience. Salaries are in equivalent USD converted using PPPs for private consumption. Statutory salaries refer to scheduled salaries according to official pay scales, while actual salaries refer to the average annual salary earned by a full-time teacher. The salaries reported are gross (total sum paid by the employer) less the employer’s contribution to social security and pension, according to existing salary scales. Salaries are “before tax”, i.e. before deductions for income tax. Teachers’ salaries are one component of teachers’ total compensation. Other benefits, such as regional allowances for teaching in remote areas, family allowances, reduced rates on public transport and tax allowances on the purchase of cultural materials, may also form part of teachers’ total remuneration. There are also large differences in taxation and social-benefits systems in OECD countries. All this should be borne in mind when comparing statutory salaries across countries. Data after 2009 is not comparable to data for 2009 and before due to changes in methodology. For more information, consult the OECD's Education at a Glance website: http://www.oecd.org/edu/eag.htm\",\"Education Statistics\",\"Organisation for Economic Co-operation and Development (OECD)\"\n\"OECD.TSAL.0.ETOP\",\"Annual statutory teacher salaries in public institutions in USD. Pre-Primary. Top of scale\",\"Top of scale salaries reported refer to the scheduled maximum annual salary of a full-time classroom teacher with the minimum training to be fully qualified for the job. Salaries are in equivalent USD converted using PPPs for private consumption. Statutory salaries refer to scheduled salaries according to official pay scales, while actual salaries refer to the average annual salary earned by a full-time teacher. The salaries reported are gross (total sum paid by the employer) less the employer’s contribution to social security and pension, according to existing salary scales. Salaries are “before tax”, i.e. before deductions for income tax. Teachers’ salaries are one component of teachers’ total compensation. Other benefits, such as regional allowances for teaching in remote areas, family allowances, reduced rates on public transport and tax allowances on the purchase of cultural materials, may also form part of teachers’ total remuneration. There are also large differences in taxation and social-benefits systems in OECD countries. All this should be borne in mind when comparing statutory salaries across countries. Data after 2009 is not comparable to data for 2009 and before due to changes in methodology. For more information, consult the OECD's Education at a Glance website: http://www.oecd.org/edu/eag.htm\",\"Education Statistics\",\"Organisation for Economic Co-operation and Development (OECD)\"\n\"OECD.TSAL.1.E0\",\"Annual statutory teacher salaries in public institutions in USD. Primary. Starting salary\",\"Starting salaries refer to the average scheduled gross salary per year for a full-time teacher with the minimum training necessary to be fully qualified at the beginning of the teaching career. Salaries are in equivalent USD converted using PPPs for private consumption. Statutory salaries refer to scheduled salaries according to official pay scales, while actual salaries refer to the average annual salary earned by a full-time teacher. The salaries reported are gross (total sum paid by the employer) less the employer’s contribution to social security and pension, according to existing salary scales. Salaries are “before tax”, i.e. before deductions for income tax. Teachers’ salaries are one component of teachers’ total compensation. Other benefits, such as regional allowances for teaching in remote areas, family allowances, reduced rates on public transport and tax allowances on the purchase of cultural materials, may also form part of teachers’ total remuneration. There are also large differences in taxation and social-benefits systems in OECD countries. All this should be borne in mind when comparing statutory salaries across countries. Data after 2009 is not comparable to data for 2009 and before due to changes in methodology. For more information, consult the OECD's Education at a Glance website: http://www.oecd.org/edu/eag.htm\",\"Education Statistics\",\"Organisation for Economic Co-operation and Development (OECD)\"\n\"OECD.TSAL.1.E10\",\"Annual statutory teacher salaries in public institutions in USD. Primary. 10 years of experience\",\"Salaries after 10 years of experience refer to the scheduled annual salary of a full-time classroom teacher with the minimum training necessary to be fully qualified plus 10 years of experience. Salaries are in equivalent USD converted using PPPs for private consumption. Statutory salaries refer to scheduled salaries according to official pay scales, while actual salaries refer to the average annual salary earned by a full-time teacher. The salaries reported are gross (total sum paid by the employer) less the employer’s contribution to social security and pension, according to existing salary scales. Salaries are “before tax”, i.e. before deductions for income tax. Teachers’ salaries are one component of teachers’ total compensation. Other benefits, such as regional allowances for teaching in remote areas, family allowances, reduced rates on public transport and tax allowances on the purchase of cultural materials, may also form part of teachers’ total remuneration. There are also large differences in taxation and social-benefits systems in OECD countries. All this should be borne in mind when comparing statutory salaries across countries. Data after 2009 is not comparable to data for 2009 and before due to changes in methodology. For more information, consult the OECD's Education at a Glance website: http://www.oecd.org/edu/eag.htm\",\"Education Statistics\",\"Organisation for Economic Co-operation and Development (OECD)\"\n\"OECD.TSAL.1.E15\",\"Annual statutory teacher salaries in public institutions in USD. Primary. 15 years of experience\",\"Salaries after 15 years of experience refer to the scheduled annual salary of a full-time classroom teacher with the minimum training necessary to be fully qualified plus 15 years of experience. Salaries are in equivalent USD converted using PPPs for private consumption. Statutory salaries refer to scheduled salaries according to official pay scales, while actual salaries refer to the average annual salary earned by a full-time teacher. The salaries reported are gross (total sum paid by the employer) less the employer’s contribution to social security and pension, according to existing salary scales. Salaries are “before tax”, i.e. before deductions for income tax. Teachers’ salaries are one component of teachers’ total compensation. Other benefits, such as regional allowances for teaching in remote areas, family allowances, reduced rates on public transport and tax allowances on the purchase of cultural materials, may also form part of teachers’ total remuneration. There are also large differences in taxation and social-benefits systems in OECD countries. All this should be borne in mind when comparing statutory salaries across countries. Data after 2009 is not comparable to data for 2009 and before due to changes in methodology. For more information, consult the OECD's Education at a Glance website: http://www.oecd.org/edu/eag.htm\",\"Education Statistics\",\"Organisation for Economic Co-operation and Development (OECD)\"\n\"OECD.TSAL.1.ETOP\",\"Annual statutory teacher salaries in public institutions in USD. Primary. Top of scale\",\"Top of scale salaries reported refer to the scheduled maximum annual salary of a full-time classroom teacher with the minimum training to be fully qualified for the job. Salaries are in equivalent USD converted using PPPs for private consumption. Statutory salaries refer to scheduled salaries according to official pay scales, while actual salaries refer to the average annual salary earned by a full-time teacher. The salaries reported are gross (total sum paid by the employer) less the employer’s contribution to social security and pension, according to existing salary scales. Salaries are “before tax”, i.e. before deductions for income tax. Teachers’ salaries are one component of teachers’ total compensation. Other benefits, such as regional allowances for teaching in remote areas, family allowances, reduced rates on public transport and tax allowances on the purchase of cultural materials, may also form part of teachers’ total remuneration. There are also large differences in taxation and social-benefits systems in OECD countries. All this should be borne in mind when comparing statutory salaries across countries. Data after 2009 is not comparable to data for 2009 and before due to changes in methodology. For more information, consult the OECD's Education at a Glance website: http://www.oecd.org/edu/eag.htm\",\"Education Statistics\",\"Organisation for Economic Co-operation and Development (OECD)\"\n\"OECD.TSAL.2.E0\",\"Annual statutory teacher salaries in public institutions in USD. Lower Secondary. Starting salary\",\"Starting salaries refer to the average scheduled gross salary per year for a full-time teacher with the minimum training necessary to be fully qualified at the beginning of the teaching career. Salaries are in equivalent USD converted using PPPs for private consumption. Statutory salaries refer to scheduled salaries according to official pay scales, while actual salaries refer to the average annual salary earned by a full-time teacher. The salaries reported are gross (total sum paid by the employer) less the employer’s contribution to social security and pension, according to existing salary scales. Salaries are “before tax”, i.e. before deductions for income tax. Teachers’ salaries are one component of teachers’ total compensation. Other benefits, such as regional allowances for teaching in remote areas, family allowances, reduced rates on public transport and tax allowances on the purchase of cultural materials, may also form part of teachers’ total remuneration. There are also large differences in taxation and social-benefits systems in OECD countries. All this should be borne in mind when comparing statutory salaries across countries. Data after 2009 is not comparable to data for 2009 and before due to changes in methodology. For more information, consult the OECD's Education at a Glance website: http://www.oecd.org/edu/eag.htm\",\"Education Statistics\",\"Organisation for Economic Co-operation and Development (OECD)\"\n\"OECD.TSAL.2.E10\",\"Annual statutory teacher salaries in public institutions in USD. Lower Secondary. 10 years of experience\",\"Salaries after 10 years of experience refer to the scheduled annual salary of a full-time classroom teacher with the minimum training necessary to be fully qualified plus 10 years of experience. Salaries are in equivalent USD converted using PPPs for private consumption. Statutory salaries refer to scheduled salaries according to official pay scales, while actual salaries refer to the average annual salary earned by a full-time teacher. The salaries reported are gross (total sum paid by the employer) less the employer’s contribution to social security and pension, according to existing salary scales. Salaries are “before tax”, i.e. before deductions for income tax. Teachers’ salaries are one component of teachers’ total compensation. Other benefits, such as regional allowances for teaching in remote areas, family allowances, reduced rates on public transport and tax allowances on the purchase of cultural materials, may also form part of teachers’ total remuneration. There are also large differences in taxation and social-benefits systems in OECD countries. All this should be borne in mind when comparing statutory salaries across countries. Data after 2009 is not comparable to data for 2009 and before due to changes in methodology. For more information, consult the OECD's Education at a Glance website: http://www.oecd.org/edu/eag.htm\",\"Education Statistics\",\"Organisation for Economic Co-operation and Development (OECD)\"\n\"OECD.TSAL.2.E15\",\"Annual statutory teacher salaries in public institutions in USD. Lower Secondary. 15 years of experience\",\"Salaries after 15 years of experience refer to the scheduled annual salary of a full-time classroom teacher with the minimum training necessary to be fully qualified plus 15 years of experience. Salaries are in equivalent USD converted using PPPs for private consumption. Statutory salaries refer to scheduled salaries according to official pay scales, while actual salaries refer to the average annual salary earned by a full-time teacher. The salaries reported are gross (total sum paid by the employer) less the employer’s contribution to social security and pension, according to existing salary scales. Salaries are “before tax”, i.e. before deductions for income tax. Teachers’ salaries are one component of teachers’ total compensation. Other benefits, such as regional allowances for teaching in remote areas, family allowances, reduced rates on public transport and tax allowances on the purchase of cultural materials, may also form part of teachers’ total remuneration. There are also large differences in taxation and social-benefits systems in OECD countries. All this should be borne in mind when comparing statutory salaries across countries. Data after 2009 is not comparable to data for 2009 and before due to changes in methodology. For more information, consult the OECD's Education at a Glance website: http://www.oecd.org/edu/eag.htm\",\"Education Statistics\",\"Organisation for Economic Co-operation and Development (OECD)\"\n\"OECD.TSAL.2.ETOP\",\"Annual statutory teacher salaries in public institutions in USD. Lower Secondary. Top of scale\",\"Top of scale salaries reported refer to the scheduled maximum annual salary of a full-time classroom teacher with the minimum training to be fully qualified for the job. Salaries are in equivalent USD converted using PPPs for private consumption. Statutory salaries refer to scheduled salaries according to official pay scales, while actual salaries refer to the average annual salary earned by a full-time teacher. The salaries reported are gross (total sum paid by the employer) less the employer’s contribution to social security and pension, according to existing salary scales. Salaries are “before tax”, i.e. before deductions for income tax. Teachers’ salaries are one component of teachers’ total compensation. Other benefits, such as regional allowances for teaching in remote areas, family allowances, reduced rates on public transport and tax allowances on the purchase of cultural materials, may also form part of teachers’ total remuneration. There are also large differences in taxation and social-benefits systems in OECD countries. All this should be borne in mind when comparing statutory salaries across countries. Data after 2009 is not comparable to data for 2009 and before due to changes in methodology. For more information, consult the OECD's Education at a Glance website: http://www.oecd.org/edu/eag.htm\",\"Education Statistics\",\"Organisation for Economic Co-operation and Development (OECD)\"\n\"OECD.TSAL.3.E0\",\"Annual statutory teacher salaries in public institutions in USD. Upper Secondary. Starting salary\",\"Starting salaries refer to the average scheduled gross salary per year for a full-time upper secondary teacher (general programs only) with the minimum training necessary to be fully qualified at the beginning of the teaching career. Salaries are in equivalent USD converted using PPPs for private consumption. Statutory salaries refer to scheduled salaries according to official pay scales, while actual salaries refer to the average annual salary earned by a full-time teacher. The salaries reported are gross (total sum paid by the employer) less the employer’s contribution to social security and pension, according to existing salary scales. Salaries are “before tax”, i.e. before deductions for income tax. Teachers’ salaries are one component of teachers’ total compensation. Other benefits, such as regional allowances for teaching in remote areas, family allowances, reduced rates on public transport and tax allowances on the purchase of cultural materials, may also form part of teachers’ total remuneration. There are also large differences in taxation and social-benefits systems in OECD countries. All this should be borne in mind when comparing statutory salaries across countries. Data after 2009 is not comparable to data for 2009 and before due to changes in methodology. For more information, consult the OECD's Education at a Glance website: http://www.oecd.org/edu/eag.htm\",\"Education Statistics\",\"Organisation for Economic Co-operation and Development (OECD)\"\n\"OECD.TSAL.3.E10\",\"Annual statutory teacher salaries in public institutions in USD. Upper Secondary. 10 years of experience\",\"Salaries after 10 years of experience refer to the scheduled annual salary of a full-time upper secondary classroom teacher (general programs only) with the minimum training necessary to be fully qualified plus 10 years of experience. Salaries are in equivalent USD converted using PPPs for private consumption. Statutory salaries refer to scheduled salaries according to official pay scales, while actual salaries refer to the average annual salary earned by a full-time teacher. The salaries reported are gross (total sum paid by the employer) less the employer’s contribution to social security and pension, according to existing salary scales. Salaries are “before tax”, i.e. before deductions for income tax. Teachers’ salaries are one component of teachers’ total compensation. Other benefits, such as regional allowances for teaching in remote areas, family allowances, reduced rates on public transport and tax allowances on the purchase of cultural materials, may also form part of teachers’ total remuneration. There are also large differences in taxation and social-benefits systems in OECD countries. All this should be borne in mind when comparing statutory salaries across countries. Data after 2009 is not comparable to data for 2009 and before due to changes in methodology. For more information, consult the OECD's Education at a Glance website: http://www.oecd.org/edu/eag.htm\",\"Education Statistics\",\"Organisation for Economic Co-operation and Development (OECD)\"\n\"OECD.TSAL.3.E15\",\"Annual statutory teacher salaries in public institutions in USD. Upper Secondary. 15 years of experience\",\"Salaries after 15 years of experience refer to the scheduled annual salary of a full-time upper secondary classroom teacher (general programs only) with the minimum training necessary to be fully qualified plus 15 years of experience. Salaries are in equivalent USD converted using PPPs for private consumption. Statutory salaries refer to scheduled salaries according to official pay scales, while actual salaries refer to the average annual salary earned by a full-time teacher. The salaries reported are gross (total sum paid by the employer) less the employer’s contribution to social security and pension, according to existing salary scales. Salaries are “before tax”, i.e. before deductions for income tax. Teachers’ salaries are one component of teachers’ total compensation. Other benefits, such as regional allowances for teaching in remote areas, family allowances, reduced rates on public transport and tax allowances on the purchase of cultural materials, may also form part of teachers’ total remuneration. There are also large differences in taxation and social-benefits systems in OECD countries. All this should be borne in mind when comparing statutory salaries across countries. Data after 2009 is not comparable to data for 2009 and before due to changes in methodology. For more information, consult the OECD's Education at a Glance website: http://www.oecd.org/edu/eag.htm\",\"Education Statistics\",\"Organisation for Economic Co-operation and Development (OECD)\"\n\"OECD.TSAL.3.ETOP\",\"Annual statutory teacher salaries in public institutions in USD. Upper Secondary. Top of scale\",\"Top of scale salaries reported refer to the scheduled maximum annual salary of a full-time upper secondary classroom teacher (general programs only) with the minimum training to be fully qualified for the job. Salaries are in equivalent USD converted using PPPs for private consumption. Statutory salaries refer to scheduled salaries according to official pay scales, while actual salaries refer to the average annual salary earned by a full-time teacher. The salaries reported are gross (total sum paid by the employer) less the employer’s contribution to social security and pension, according to existing salary scales. Salaries are “before tax”, i.e. before deductions for income tax. Teachers’ salaries are one component of teachers’ total compensation. Other benefits, such as regional allowances for teaching in remote areas, family allowances, reduced rates on public transport and tax allowances on the purchase of cultural materials, may also form part of teachers’ total remuneration. There are also large differences in taxation and social-benefits systems in OECD countries. All this should be borne in mind when comparing statutory salaries across countries. Data after 2009 is not comparable to data for 2009 and before due to changes in methodology. For more information, consult the OECD's Education at a Glance website: http://www.oecd.org/edu/eag.htm\",\"Education Statistics\",\"Organisation for Economic Co-operation and Development (OECD)\"\n\"Off_shore_financial_centers\",\"Countries categorized as offshore financial centers by the IMF and the Financial Stability Forum (FSF)\",\"Countries categorized as offshore financial centers by the IMF and the Financial Stability Forum (FSF).\",\"Jobs for Knowledge Platform\",\"International Monetary Fund.\"\n\"ORANGE\",\"Oranges, $/mt, current$\",\"Oranges (Mediterranean exporters) navel, EEC indicative import price, c.i.f. Paris\",\"Global Economic Monitor (GEM) Commodities\",\"INTERFEL, Fel Actualite hebdo; FRuiTrop; Marche Europeens Des Fruits et Legumes; World Bank.\"\n\"PA.NUS.ATLS\",\"DEC alternative conversion factor (LCU per US$)\",\"The DEC alternative conversion factor is the underlying annual exchange rate used for the World Bank Atlas method. As a rule, it is the official exchange rate reported in the IMF's International Financial Statistics (line rf). Exceptions arise where further refinements are made by World Bank staff. It is expressed in local currency units per U.S. dollar.\",\"World Development Indicators\",\"International Monetary Fund, International Financial Statistics, supplemented by World Bank staff estimates.\"\n\"PA.NUS.FCRF\",\"Official exchange rate (LCU per US$, period average)\",\"Official exchange rate refers to the exchange rate determined by national authorities or to the rate determined in the legally sanctioned exchange market. It is calculated as an annual average based on monthly averages (local currency units relative to the U.S. dollar).\",\"World Development Indicators\",\"International Monetary Fund, International Financial Statistics.\"\n\"PA.NUS.PPP\",\"PPP conversion factor, GDP (LCU per international $)\",\"Purchasing power parity conversion factor is the number of units of a country's currency required to buy the same amounts of goods and services in the domestic market as U.S. dollar would buy in the United States. This conversion factor is for GDP. For most economies PPP figures are extrapolated from the 2011 International Comparison Program (ICP) benchmark estimates or imputed using a statistical model based on the 2011 ICP. For 47 high- and upper middle-income economies conversion factors are provided by Eurostat and the Organisation for Economic Co-operation and Development (OECD).\",\"World Development Indicators\",\"World Bank, International Comparison Program database.\"\n\"PA.NUS.PPP.05\",\"2005 PPP conversion factor, GDP (LCU per international $)\",\"Purchasing power parity conversion factor is the number of units of a country's currency required to buy the same amounts of goods and services in the domestic market as U.S. dollar would buy in the United States. This conversion factor is for GDP. Historical estimates are provided for the 2005 benchmark year only. A separate series is available for extrapolated estimates based on the latest ICP round.\",\"World Development Indicators\",\"World Bank, International Comparison Program database.\"\n\"PA.NUS.PPPC.RF\",\"Price level ratio of PPP conversion factor (GDP) to market exchange rate\",\"Purchasing power parity conversion factor is the number of units of a country's currency required to buy the same amount of goods and services in the domestic market as a U.S. dollar would buy in the United States. The ratio of PPP conversion factor to market exchange rate is the result obtained by dividing the PPP conversion factor by the market exchange rate. The ratio, also referred to as the national price level, makes it possible to compare the cost of the bundle of goods that make up gross domestic product (GDP) across countries. It tells how many dollars are needed to buy a dollar's worth of goods in the country as compared to the United States. PPP conversion factors are based on the 2011 ICP round.\",\"World Development Indicators\",\"World Bank, International Comparison Program database.\"\n\"PA.NUS.PRVT.PP\",\"PPP conversion factor, private consumption (LCU per international $)\",\"Purchasing power parity conversion factor is the number of units of a country's currency required to buy the same amounts of goods and services in the domestic market as U.S. dollar would buy in the United States. This conversion factor is for private consumption (i.e., household final consumption expenditure). For most economies PPP figures are extrapolated from the 2011 International Comparison Program (ICP) benchmark estimates or imputed using a statistical model based on the 2011 ICP. For 47 high- and upper middle-income economies conversion factors are provided by Eurostat and the Organisation for Economic Co-operation and Development (OECD).\",\"World Development Indicators\",\"World Bank, International Comparison Program database.\"\n\"PA.NUS.PRVT.PP.05\",\"2005 PPP conversion factor, private consumption (LCU per international $)\",\"Purchasing power parity conversion factor is the number of units of a country's currency required to buy the same amounts of goods and services in the domestic market as U.S. dollar would buy in the United States. This conversion factor is for private consumption (i.e., household final consumption expenditure). Historical estimates are provided for the 2005 benchmark year only. A separate series is available for extrapolated estimates based on the latest ICP round.\",\"World Development Indicators\",\"World Bank, International Comparison Program database.\"\n\"PALM.LND.DMG\",\"Palm Oil Land Area by type of condition: Damaged (in Hectares)\",\"\",\"INDO-DAPOER\",\"Ministry of Agriculture, Tree Crop Estate Statistics of Indonesia for Oil Palm\"\n\"PALM.LND.IMM\",\"Palm Oil Land Area by type of condition: Immature (in Hectares)\",\"\",\"INDO-DAPOER\",\"Ministry of Agriculture, Tree Crop Estate Statistics of Indonesia for Oil Palm\"\n\"PALM.LND.MTR\",\"Palm Oil Land Area by type of condition: Mature (in Hectares)\",\"\",\"INDO-DAPOER\",\"Ministry of Agriculture, Tree Crop Estate Statistics of Indonesia for Oil Palm\"\n\"PALM.LND.PRVT\",\"Palm Oil Land Area by type of ownership: Private (in Hectares)\",\"\",\"INDO-DAPOER\",\"Ministry of Agriculture, Tree Crop Estate Statistics of Indonesia for Oil Palm\"\n\"PALM.LND.SMHD\",\"Palm Oil Land Area by type of ownership: Smallholder (in Hectares)\",\"\",\"INDO-DAPOER\",\"Ministry of Agriculture, Tree Crop Estate Statistics of Indonesia for Oil Palm\"\n\"PALM.LND.SOE\",\"Palm Oil Land Area by type of ownership: State Owned Enterprise (in Hectares)\",\"\",\"INDO-DAPOER\",\"Ministry of Agriculture, Tree Crop Estate Statistics of Indonesia for Oil Palm\"\n\"PALM.LND.TOTL\",\"Palm Oil Land Area: Total (in Hectares)\",\"\",\"INDO-DAPOER\",\"Ministry of Agriculture, Tree Crop Estate Statistics of Indonesia for Oil Palm\"\n\"PALM.PRD.PRVT\",\"Palm Production by type of ownership: Private (in Tons)\",\"\",\"INDO-DAPOER\",\"Ministry of Agriculture, Tree Crop Estate Statistics of Indonesia for Oil Palm\"\n\"PALM.PRD.SMHD\",\"Palm Production by type of ownership: Smallholder (in Tons)\",\"\",\"INDO-DAPOER\",\"Ministry of Agriculture, Tree Crop Estate Statistics of Indonesia for Oil Palm\"\n\"PALM.PRD.SOE\",\"Palm Production by type of ownership: State Owned Enterprise (in Tons)\",\"\",\"INDO-DAPOER\",\"Ministry of Agriculture, Tree Crop Estate Statistics of Indonesia for Oil Palm\"\n\"PALM.PRD.TOTL\",\"Palm Production: Total (in Tons)\",\"\",\"INDO-DAPOER\",\"Ministry of Agriculture, Tree Crop Estate Statistics of Indonesia for Oil Palm\"\n\"PALM.YLD.PRVT\",\"Palm Oil Yield by type of ownership: Private (in Kg/Ha)\",\"\",\"INDO-DAPOER\",\"Ministry of Agriculture, Tree Crop Estate Statistics of Indonesia for Oil Palm\"\n\"PALM.YLD.SMHD\",\"Palm Oil Yield by type of ownership: Smallholder (in Kg/Ha)\",\"\",\"INDO-DAPOER\",\"Ministry of Agriculture, Tree Crop Estate Statistics of Indonesia for Oil Palm\"\n\"PALM.YLD.SOE\",\"Palm Oil Yield by type of ownership: State Owned Enterprise (in Kg/Ha)\",\"\",\"INDO-DAPOER\",\"Ministry of Agriculture, Tree Crop Estate Statistics of Indonesia for Oil Palm\"\n\"PALM_OIL\",\"Palm oil, $/mt, current$\",\"Palm oil (Malaysia), 5% bulk, c.i.f. N. W. Europe\",\"Global Economic Monitor (GEM) Commodities\",\"ISTA Mielke GmbH, Oil World; US Department of Agriculture; World Bank.\"\n\"PE.NUS.FCAE\",\"Official exchange rate (LCU per US$, end period)\",\"Official exchange rate refers to the exchange rate determined by national authorities or to the rate determined in the legally sanctioned exchange market. This series shows the end period value of local currency units relative to the U.S. dollar.\",\"Africa Development Indicators\",\"International Monetary Fund, International Financial Statistics.\"\n\"PER.ADMIN.CAP\",\"World Bank: Share of total capital education expenditures for administration (%)                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ADMIN.CTL\",\"World Bank: Share of administration expenditures for central government administration (%)                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ADMIN.GOV\",\"World Bank: Share of administration expenditures from government sources (%)                                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ADMIN.INTL\",\"World Bank: Share of administration expenditures from international sources (%)                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ADMIN.LOCAL\",\"World Bank: Share of administration expenditures for district/municipal government administration (%)                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ADMIN.PROV\",\"World Bank: Share of administration expenditures for provincial/state government administration (%)                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ADMIN.SAL.USD\",\"World Bank: Average salary for administration (in USD or local currency)                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.AE.ITL.SHARE\",\"World Bank: Share of education expenditures from international sources for adult education (%)                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.AE.SAL\",\"World Bank: Salaries' share of adult education expenditures (%)                                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.AE.SAL.TOT\",\"World Bank: Share of total education expenditures for adult education salaries (%)                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.AE.SAL.USD\",\"World Bank: Average annual salary for adult education instructors (in USD or local currency)                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.AE.SOR.GOV\",\"World Bank: Share of adult education expenditures from government sources (%)                                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.AE.SOR.ITL\",\"World Bank: Share of adult education expenditures from international sources (%)                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.AE.TOT\",\"World Bank: Share of total education expenditure for adult education (%)                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.CAPITA\",\"World Bank: Per capita education expenditures (in USD or local currency)                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.CAPITA.CAP\",\"World Bank: Capital expenditures per capita (in USD or local currency)                                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.CAPITA.RCT\",\"World Bank: Recurrent expenditures per capita (in USD or local currency)                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.CNTRL.GDP\",\"World Bank: Share of GDP for central government expenditures on education (%)                                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.CONSTRUCT.METER\",\"World Bank: Construction Cost per square meter (in USD or local currency)                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.CONSTRUCTION\",\"World Bank: Construction Cost per Classroom (in USD or local currency)                                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.CONTRACT.PCTTOT\",\"World Bank: Share of total education expenditures for contract teachers (%)                                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.CONTRACT.SAL\",\"World Bank: Contract Teachers, Annual Salary (in USD or local currency)                                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.CONTRACT.TOT\",\"World Bank: Contract Teachers, total employed                                                                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.CONTRACT.USD\",\"World Bank: Contract Teachers, Total Cost in USD or local currency                                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.CPL\",\"World Bank: Capital share of total education expenditure (%)                                                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.CPL.GDP\",\"World Bank: Public capital expenditure on education as % of GDP                                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.CPL.INF\",\"World Bank: Total education infrastructure expenditures (local currency)                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.CPL.TOT\",\"World Bank: Public capital expenditure on education as a % of total capital government expenditure                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.CPL.USD\",\"World Bank: Total Capital Expenditures on Education (USD Millions or local currency)                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.EDSAL.AVG\",\"World Bank: Ratio of average education sector salary to average national wage                                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.EFF.TRA\",\"World Bank: Share of disbursed transfers that reach schools (%)                                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.EFF.WI.RCT\",\"World Bank: Wastage Index (%), recurrent education expenditures                                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.EFF.WI.TOT\",\"World Bank: Wastage Index (%), total education expenditures                                                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.EXE.CPL\",\"World Bank: Capital education budget execution rate (%)                                                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.EXE.CPL.GOV\",\"World Bank: Capital education budget execution rate (%), domestically financed                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.EXE.CPL.ITL\",\"World Bank: Capital education budget execution rate (%), internationally financed                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.EXE.RCT\",\"World Bank: Recurrent education budget execution rate (%)                                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.EXE.SAL\",\"World Bank: Education salary execution rate (%)                                                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.GNP\",\"World Bank: Public education expenditures as a % of GNP                                                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.GS.TOT\",\"World Bank: Total education expenditures on goods and services (in USD or local currency)                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.MAINTENANCE\",\"World Bank: Maintenance Cost per school (in USD or in local currency)                                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.MIN.AD\",\"World Bank: Ministry of Education employees (% administration/non-teaching)                                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.MIN.ED\",\"World Bank: Share of total public sector employees for the education sector (%)                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.MIN.TCH\",\"World Bank: Ministry of Education employees (% teachers)                                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.NSAL\",\"World Bank: Share of total education expenditures for non-salary items (%)                                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.NSAL.RCT\",\"World Bank: Share of total recurrent education expenditures for non-salary items (%)                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.P40\",\"World Bank: Share of total education expenditures for the poorest 40% of students (%)                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.PCR\",\"World Bank: Pupil/Classroom Ratio                                                                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.PNTR\",\"World Bank: Pupil/Administration (Non-Teaching) Staff Ratio                                                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.PPS\",\"World Bank: Pupils/School                                                                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.PS.GDP\",\"World Bank: Public education expenditure per student (% of GDP per capita)                                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.PS.LOC\",\"World Bank: Expenditures per student per year (local currency)                                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.PS.LOC.JR\",\"World Bank: Expenditures per student per year (local currency), junior secondary                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.PS.LOC.PP\",\"World Bank: Expenditures per student per year (local currency), pre-primary                                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.PS.LOC.PRM\",\"World Bank: Expenditures per student per year (local currency), primary                                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.PS.LOC.SEC\",\"World Bank: Expenditures per student per year (local currency), secondary                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.PS.LOC.SR\",\"World Bank: Expenditures per student per year (local currency), senior secondary                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.PS.LOC.TER\",\"World Bank: Expenditures per student per year (local currency), tertiary                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.PS.RCT.ADMIN\",\"World Bank: Recurrent expenditures per student for administration (in USD or local currency)                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.PS.USD\",\"World Bank: Expenditures per student per year (in USD)                                                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.PSTF\",\"World Bank: Pupil/Total Staff Ratio                                                                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.PTR\",\"World Bank: Pupil/Teacher Ratio                                                                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.PVT.SHARE\",\"World Bank: Share of total schools, privately managed (%)                                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.QTL.NP\",\"World Bank: Share of total education expenditures for non-poor students (%)                                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.QTL.POOR\",\"World Bank: Share of total education expenditures for poor students (%)                                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.QTL.Q1\",\"World Bank: Share of total education expenditures for Quintile 1 (poorest) (%)                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.QTL.Q2\",\"World Bank: Share of total education expenditures for Quintile 2 (%)                                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.QTL.Q3\",\"World Bank: Share of total education expenditures for Quintile 3 (%)                                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.QTL.Q4\",\"World Bank: Share of total education expenditures for Quintile 4 (%)                                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.QTL.Q5\",\"World Bank: Share of total education expenditures for Quintile 5 (richest) (%)                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.R40\",\"World Bank: Share of total education expenditures for the richest 40% of students (%)                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.RCT\",\"World Bank: Share of total government expenditures (all sectors) for recurrent education expenditures (%)                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.RCT.GDP\",\"World Bank: Public recurrent expenditure on education (% of GDP)                                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.RCT.GS\",\"World Bank: Share of recurrent expenditures for goods and services (%)                                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.RCT.SAL\",\"World Bank: Share of recurrent education expenditures for salaries (%)                                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.RCT.TOT\",\"World Bank: Recurrent share of total education expenditures (%)                                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.RCT.TOT.RCT\",\"World Bank: Public recurrent education expenditure as % of total recurrent government expenditure                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.RCT.TSAL\",\"World Bank: Share of recurrent education expenditures for teachers salaries (%)                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.RCT.USD\",\"World Bank: Total Recurrent Expenditures on Education (USD Millions or local currency)                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.SAL\",\"World Bank: Share of total education expenditures for salaries (%)                                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.SAL.AVG\",\"World Bank: Ratio of average teacher salary to average national wage                                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.SAL.GDP\",\"World Bank: Education salary expenditures as a % of GDP                                                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.SAL.GHOST\",\"World Bank: Education salary expenditures as a % of GDP                                                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.SAL.PVT\",\"World Bank: Public/Private Teacher Salary Ratio                                                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.SAL.TGOV\",\"World Bank: Share of total government salary expenditure for education salaries (%)                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.SAL.USD\",\"World Bank: Total Salary Expenditures on Education (USD or local currency)                                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.SAL.VERT\",\"World Bank: Teacher Salary Vertical Compression Ratio                                                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.SFT.D\",\"World Bank: Share of schools with double shifts (%)                                                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.SFT.S\",\"World Bank: Share of schools with single shifts (%)                                                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.SFT.T\",\"World Bank: Share of schools with triple shifts (%)                                                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.SUB.GDP\",\"World Bank: Share of GDP for subnational government expenditures on education (%)                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.TCH.JOB\",\"World Bank: Share of teachers holding more than one job (%)                                                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.TLM.PS\",\"World Bank: Per student expenditure on Teaching/learning materials (in USD or local currency)                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.TNR\",\"World Bank: Teaching/Non-Teaching Staff Ratio                                                                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.TSAL\",\"World Bank: Share of total education expenditures for teachers salaries (%)                                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.TSAL.GDP\",\"World Bank: Ratio of Teacher Salaries to per capita GDP                                                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.TSAL.USD\",\"World Bank: Average Annual Teacher Salary (in USD or local currency)                                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.TTL.GDP\",\"World Bank: Total education expenditure as % of GDP                                                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.TTL.GDP.GOV\",\"World Bank: Total public education expenditure as % of GDP                                                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.TTL.GOV\",\"World Bank: Total public education expenditure, % of government spending                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.TTL.LCL\",\"World Bank: Total education expenditure (in local currency)                                                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.TTL.NA\",\"World Bank: Share of total education expenditure not allocated by educational level (%)                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ALL.TTL.USD\",\"World Bank: Total education expenditure (in USD millions)                                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.ADMIN\",\"World Bank: Share of basic education expenditures for administration (%)                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.CPL\",\"World Bank: Capital share of basic education expenditures (%)                                                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.CPL.TOT\",\"World Bank: Share of total capital education expenditure (%), basic                                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.EFF.REP\",\"World Bank: Repetition/Drop-out Inefficiency Cost, basic                                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.EFF.SHARE\",\"World Bank: Wastage Index (%), Basic Education                                                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.EXE.CPL\",\"World Bank: Capital education budget execution rate (%), basic                                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.EXE.RCT\",\"World Bank: Recurrent education budget execution rate (%), basic                                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.EXE.TOT\",\"World Bank: Education budget execution rate, basic (%)                                                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.GDP\",\"World Bank: Share of GDP for education expenditures on basic education (%)                                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.GS.RCT\",\"World Bank: Share of basic education recurrent expenditures for goods and services (%)                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.HH.BOARD\",\"World Bank: Household spending per student on room/board for basic education (USD or local currency)                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.HH.Q1\",\"World Bank: Private/Household spending on basic education, Quintile 1                                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.HH.Q2\",\"World Bank: Private/Household spending on basic education, Quintile 2                                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.HH.Q3\",\"World Bank: Private/Household spending on basic education, Quintile 3                                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.HH.Q4\",\"World Bank: Private/Household spending on basic education, Quintile 4                                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.HH.Q5\",\"World Bank: Private/Household spending on basic education, Quintile 5                                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.HH.TEXT\",\"World Bank: Household spending per student on textbooks for basic education (USD or local currency)                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.HH.TRNSPT\",\"World Bank: Household spending per student on transportation for basic education (USD or local currency)                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.HH.TUIT\",\"World Bank: Household spending per student on tuition for basic education (USD or local currency)                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.HH.UNIF\",\"World Bank: Household spending per student on uniforms/clothing for basic education (USD or local currency)                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.INSTRUCT\",\"World Bank: Total instructional hours in basic education (Grades 1-8)                                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.ITL.SHARE\",\"World Bank: Share of education expenditures from international sources for basic education (%)                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.PCR\",\"World Bank: Pupil/Classroom Ratio, basic education                                                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.PPC\",\"World Bank: Pupils/Class, basic education                                                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.PS.GDP\",\"World Bank: Public education expenditure per student (% of GDP per capita), basic                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.PS.NONSAL\",\"World Bank: Per student non-salary spending, basic education (in USD or local currency)                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.PS.RCT\",\"World Bank: Recurrent expenditures per basic education student (USD or local currency)                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.PS.RCT.RATIO\",\"World Bank: Ratio of basic per capita/per student recurrent expenditures relative to primary education                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.PS.USD\",\"World Bank: Expenditures per student per year (in USD or local currency), basic                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.PSTF\",\"World Bank: Pupil/Total Staff Ratio, basic education                                                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.PTR\",\"World Bank: Pupil/Teacher Ratio, basic education                                                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.QLT.Q1\",\"World Bank: Share of basic education expenditures for Quintile 1 (poorest) (%)                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.QLT.Q2\",\"World Bank: Share of basic education expenditures for Quintile 2 (%)                                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.QLT.Q3\",\"World Bank: Share of basic education expenditures for Quintile 3 (%)                                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.QLT.Q4\",\"World Bank: Share of basic education expenditures for Quintile 4 (%)                                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.QLT.Q5\",\"World Bank: Share of basic education expenditures for Quintile 5 (richest) (%)                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.QTL.NP\",\"World Bank: Share of total basic education expenditures for non-poor students (%)                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.QTL.P40\",\"World Bank: Share of education expenditures for the poorest 40% of students (%), Basic                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.QTL.POOR\",\"World Bank: Share of total basic education expenditures for poor students (%)                                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.QTL.R40\",\"World Bank: Share of education expenditures for the richest 40% of students (%), Basic                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.RCT\",\"World Bank: Recurrent share of basic education expenditures (%)                                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.RCT.TOT\",\"World Bank: Share of total recurrent education expenditure (%), basic                                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.SAL\",\"World Bank: Salaries' share of basic education expenditures (%)                                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.SAL.GDP\",\"World Bank: Ratio of Teacher Salaries to per capita GDP, basic education                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.SAL.RCT\",\"World Bank: Share of recurrent education expenditures for basic education salaries (%)                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.SAL.SHARE\",\"World Bank: Share of total salary expenditures for basic education (%)                                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.SAL.TOT\",\"World Bank: Share of total education expenditures for basic education salaries (%)                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.SOR.GOV\",\"World Bank: Share of basic education expenditures from government sources (%)                                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.TEACH.SHARE\",\"World Bank: Share of teachers for basic education (%)                                                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.TNR\",\"World Bank: Teaching/Non-Teaching Staff Ratio, basic education                                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.TOT\",\"World Bank: Share of total education expenditure for basic education (%)                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.TOT.CPL\",\"World Bank: Capital share of total education expenditure (%), basic                                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.TOTEXP\",\"World Bank: Total expenditures on basic education (USD or local currency)                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.BAS.TRANSFER.RCT\",\"World Bank: Share of basic education recurrent expenditures for transfers (%)                                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.EFF.GDP\",\"World Bank: Share of GDP lost through inefficiencies (%)                                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.EFF.SUB.GDP\",\"World Bank: Share of GDP potentially saved with improved targeting of education subsidies (%)                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.EFF.SUB.USD\",\"World Bank: Total potential savings with improved targeting of government education subsidies (USD or local currency)                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.EFF.TEACH.GDP\",\"World Bank: Share of GDP potentially saved with improved pupil/teacher ratios (%)                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.EFF.TEACH.USD\",\"World Bank: Total potential savings with improved pupil/teacher ratios (USD or local currency)                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.EMPOLY.ED\",\"World Bank: Share of total national employment for the education sector (%)                                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ETH.PS.MAJ\",\"World Bank: Per student expenditure for majority ethnic group students, primary                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ETH.PS.MIN\",\"World Bank: Per student expenditure for minority ethnic group students, primary                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ETH.PTR.MAJ\",\"World Bank: Pupil/Teacher Ratio in majority ethnic group schools, primary                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.ETH.PTR.MIN\",\"World Bank: Pupil/Teacher Ratio in minority ethnic group schools, primary                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.EXE.GS.TOT\",\"World Bank: Goods and Services Execution Rate (%)                                                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.FEED.PS.USD\",\"World Bank: Per student cost of school feeding programs (in USD or local currency)                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.GEO.PPS.RRL\",\"World Bank: Pupils/School in rural areas                                                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.GEO.PPS.URB\",\"World Bank: Pupils/School in urban areas                                                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.GEO.RRL.PS.HH\",\"World Bank: Household spending per student, rural areas (USD or local currency)                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.GEO.URB.PS.HH\",\"World Bank: Household spending per student, urban areas (USD or local currency)                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.GOV.SHARE.TOT\",\"World Bank: Share of total domestically-financed/government expenditures for education (%)                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.GS.TOT.SHARE\",\"World Bank: Share of total expenditures for goods and services (%)                                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.HH.MGT.SHARE\",\"World Bank: Share of total household education spending/school fees appropriated to provincial/regional/central government levels from the school level (%)                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.HH.P40.SHARE\",\"World Bank: Share of total household education expenditures for the poorest 40%                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.HH.Q1.SHARE\",\"World Bank: Share of total household education expenditures for Quintile 1 (%)                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.HH.Q2.SHARE\",\"World Bank: Share of total household education expenditures for Quintile 2 (%)                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.HH.Q3.SHARE\",\"World Bank: Share of total household education expenditures for Quintile 3 (%)                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.HH.Q4.SHARE\",\"World Bank: Share of total household education expenditures for Quintile 4 (%)                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.HH.Q5.SHARE\",\"World Bank: Share of total household education expenditures for Quintile 5 (%)                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.HH.R40.SHARE\",\"World Bank: Share of total household education expenditures for the richest 40%                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.HH.SAL.SHARE\",\"World Bank: Share of total household education spending for salaries (%)                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.INTL.COMT.DISP\",\"World Bank: Share of international commitments for education disbursed to government (%)                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.ADMIN\",\"World Bank: Share of junior secondary expenditures for administration (%)                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.CPL\",\"World Bank: Capital share of junior secondary expenditures (%)                                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.CPL.TOT\",\"World Bank: Share of total capital education expenditure (%), junior secondary                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.EFF.REP\",\"World Bank: Repetition/Drop-out Inefficiency Cost, junior secondary                                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.EFF.REP.YEAR\",\"World Bank: Repetition/Dropout Inefficiency Annual Resource Input Ratio, junior secondary                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.GS.RCT\",\"World Bank: Share of junior secondary recurrent expenditures for goods and services (%)                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.ITL.SHARE\",\"World Bank: Share of education expenditures from international sources for junior secondary education (%)                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.PCR\",\"World Bank: Pupil/Classroom Ratio, junior secondary                                                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.PPC\",\"World Bank: Pupils/Class, junior secondary                                                                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.PS.GDP\",\"World Bank: Public education expenditure per student (% of GDP per capita), junior secondary                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.PS.NONSAL\",\"World Bank: Per student non-salary spending, junior secondary (in USD or local currency)                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.PS.PRIM\",\"World Bank: Ratio of expenditures per student, junior secondary to primary                                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.PS.RCT\",\"World Bank: Recurrent expenditures per junior secondary student (USD or local currency)                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.PS.USD\",\"World Bank: Expenditures per student per year in USD, junior secondary                                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.PSTF\",\"World Bank: Pupil/Total Staff Ratio, junior secondary                                                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.PTR\",\"World Bank: Pupil/Teacher Ratio, junior secondary                                                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.QLT.Q1\",\"World Bank: Share of junior secondary education expenditures for Quintile 1 (poorest) (%)                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.QLT.Q2\",\"World Bank: Share of junior secondary education expenditures for Quintile 2 (%)                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.QLT.Q3\",\"World Bank: Share of junior secondary education expenditures for Quintile 3 (%)                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.QLT.Q4\",\"World Bank: Share of junior secondary education expenditures for Quintile 4 (%)                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.QLT.Q5\",\"World Bank: Share of junior secondary education expenditures for Quintile 5 (richest) (%)                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.QTL.P40\",\"World Bank: Share of education expenditures for the poorest 40% of students (%), Junior Secondary                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.QTL.R40\",\"World Bank: Share of education expenditures for the richest 40% of students (%), Junior Secondary                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.RCT\",\"World Bank: Recurrent share of junior secondary expenditures (%)                                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.RCT.TOT\",\"World Bank: Share of total recurrent education expenditure (%), junior secondary                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.SAL\",\"World Bank: Salaries' share of junior secondary expenditures (%)                                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.SAL.GDP\",\"World Bank: Ratio of Teacher Salaries to per capita GDP, junior secondary                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.SAL.RCT\",\"World Bank: Share of recurrent education expenditures for junior secondary salaries (%)                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.SAL.SHARE.RCT\",\"World Bank: Salaries' share of junior secondary recurrent expenditures (%)                                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.SAL.TOT\",\"World Bank: Share of total education expenditures for junior secondary salaries (%)                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.SAL.USD\",\"World Bank: Average Annual Teacher Salary (in USD or local currency), junior secondary                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.SOR.GOV\",\"World Bank: Share of junior secondary education expenditures from government sources (%)                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.TCH.HRS\",\"World Bank: Average annual teaching load, junior secondary (hours of instruction per year)                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.TEACH.SHARE\",\"World Bank: Share of teachers for junior secondary education (%)                                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.TNR\",\"World Bank: Teaching/Non-Teaching Staff Ratio, junior secondary                                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.TOT\",\"World Bank: Share of total education expenditure for junior secondary education (%)                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.TOTEXP\",\"World Bank: Total expenditures on junior secondary education (USD or local currency)                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.TRANSFER.PS\",\"World Bank: Per student transfer by central to subnational government, junior secondary education (USD or local currency)                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.JR.TRANSFER.RCT\",\"World Bank: Share of junior secondary recurrent expenditures for transfers (%)                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.AD.RCT\",\"World Bank: Share of total recurrent education expenditure for administration (%)                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.AD.SAL.SHARE\",\"World Bank: Share of total salary expenditures for administration (%)                                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.AD.TOT\",\"World Bank: Share of total education expenditure for administration (%)                                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.FEED.GDP\",\"World Bank: School Feeding Programs (% of GDP)                                                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.FEED.RCT\",\"World Bank: School Feeding Programs (% of total recurrent expenditures)                                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.FEED.TOT\",\"World Bank: School Feeding Programs (% of total education expenditures)                                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.FEED.TOT.USD\",\"World Bank: Total expenditures on School Feeding Programs (in USD or local currency)                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.FIN.JR\",\"World Bank: Share of recurrent junior secondary expenditures for scholarships (%)                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.FIN.LOAN.TER\",\"World Bank: Total Student Loans (USD or local currency). Tertiary                                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.FIN.PRM\",\"World Bank: Share of recurrent primary education expenditures for scholarships (%)                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.FIN.RCT\",\"World Bank: Share of recurrent expenditures for scholarships (%)                                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.FIN.SEC\",\"World Bank: Share of recurrent secondary expenditures for scholarships (%)                                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.FIN.SR\",\"World Bank: Share of recurrent senior secondary expenditures for scholarships (%)                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.FIN.TER\",\"World Bank: Share of recurrent tertiary expenditures for scholarships (%)                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.FIN.TER.TOT\",\"World Bank: Share of total tertiary expenditures for scholarships (%)                                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.FIN.TOT\",\"World Bank: Share of total education spending for scholarships (%)                                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.FIN.TOT.PRM\",\"World Bank: Total Expenditures on Scholarships/Student Financial Assistance (USD or local currency). Primary                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.FIN.TOT.Q1\",\"World Bank: Share of scholarships/subsidy expenditures for Quintile 1 (%)                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.FIN.TOT.Q2\",\"World Bank: Share of scholarships/subsidy expenditures for Quintile 2 (%)                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.FIN.TOT.Q3\",\"World Bank: Share of scholarships/subsidy expenditures for Quintile 3 (%)                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.FIN.TOT.Q4\",\"World Bank: Share of scholarships/subsidy expenditures for Quintile 4 (%)                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.FIN.TOT.Q5\",\"World Bank: Share of scholarships/subsidy expenditures for Quintile 5 (%)                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.FIN.TOT.SEC\",\"World Bank: Total Expenditures on Scholarships/Student Financial Assistance (USD or local currency). Secondary                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.FIN.TOT.SR\",\"World Bank: Share of scholarships/subsidy expenditures for senior secondary (%)                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.FIN.TOT.TER\",\"World Bank: Share of scholarships/subsidy expenditures for tertiary education (%)                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.FIN.TOT.TER.LOC\",\"World Bank: Total Expenditures on Scholarships/Student Financial Assistance (USD or local currency). Tertiary                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.FIN.TOT.VOC\",\"World Bank: Share of scholarships/subsidy expenditures for technical/vocational education (%)                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.FIN.USD\",\"World Bank: Total Expenditures on Scholarships/Student Financial Assistance (USD or local currency)                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.FIN.VOC.TOT\",\"World Bank: Share of total technical/vocational expenditures for scholarships (%)                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GDR.PRM\",\"World Bank: Expenditures on females (as a % for males), primary                                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GDR.SEC\",\"World Bank: Expenditures on females (as a % for males), secondary                                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GDR.TER\",\"World Bank: Expenditures on females (as a % for males), tertiary                                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GDR.TOT\",\"World Bank: Expenditures on females (as a % for males)                                                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GEO.RRL\",\"World Bank: Share of education spending on rural areas (%)                                                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GEO.RRL.JR\",\"World Bank: Share of junior secondary education spending on rural areas (%)                                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GEO.RRL.P40\",\"World Bank: Share of expenditures for the poorest 40%, rural areas                                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GEO.RRL.PCT\",\"World Bank: Pupil/Classroom Ratio, rural areas                                                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GEO.RRL.PP\",\"World Bank: Share of pre-primary education spending on rural areas (%)                                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GEO.RRL.PPC\",\"World Bank: Pupils/Class, rural areas                                                                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GEO.RRL.PRM\",\"World Bank: Share of primary education spending on rural areas (%)                                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GEO.RRL.PRM.PER\",\"World Bank: Average expenditure per primary student, rural areas (in USD or local currency)                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GEO.RRL.PSTF\",\"World Bank: Pupil/Total Staff Ratio, rural areas                                                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GEO.RRL.PTR\",\"World Bank: Pupil/Teacher Ratio, rural areas                                                                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GEO.RRL.R40\",\"World Bank: Share of expenditures for the richest 40%, rural areas                                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GEO.RRL.SEC\",\"World Bank: Share of secondary education spending on rural areas (%)                                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GEO.RRL.SEC.PS\",\"World Bank: Average expenditure per secondary student, rural areas (in USD or local currency)                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GEO.RRL.SR\",\"World Bank: Share of senior secondary education spending on rural areas (%)                                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GEO.RRL.TER\",\"World Bank: Share of tertiary education spending on rural areas (%)                                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GEO.RRL.TNR\",\"World Bank: Teaching/Non-Teaching Staff Ratio, rural areas                                                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GEO.RU.PRM\",\"World Bank: Ratio of rural/urban per capita expenditures, secondary                                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GEO.RU.SEC\",\"World Bank: Ratio of rural/urban per capita expenditures, primary                                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GEO.URB\",\"World Bank: Share of education spending on urban areas (%)                                                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GEO.URB.JR\",\"World Bank: Share of junior secondary education spending on urban areas (%)                                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GEO.URB.P40\",\"World Bank: Share of expenditures for the poorest 40%, urban areas                                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GEO.URB.PCR\",\"World Bank: Pupil/Classroom Ratio, urban areas                                                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GEO.URB.PP\",\"World Bank: Share of pre-primary education spending on urban areas (%)                                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GEO.URB.PPC\",\"World Bank: Pupils/Class, urban areas                                                                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GEO.URB.PRM\",\"World Bank: Share of primary education spending on urban areas (%)                                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GEO.URB.PRM.PER\",\"World Bank: Average expenditure per primary student, urban areas (in USD or local currency)                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GEO.URB.PSTF\",\"World Bank: Pupil/Total Staff Ratio, urban areas                                                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GEO.URB.PTR\",\"World Bank: Pupil/Teacher Ratio, urban areas                                                                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GEO.URB.R40\",\"World Bank: Share of expenditures for the richest 40%, urban areas                                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GEO.URB.SEC\",\"World Bank: Share of secondary education spending on urban areas (%)                                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GEO.URB.SEC.PS\",\"World Bank: Average expenditure per secondary student, urban areas (in USD or local currency)                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GEO.URB.SR\",\"World Bank: Share of senior secondary education spending on urban areas (%)                                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GEO.URB.TER\",\"World Bank: Share of tertiary education spending on urban areas (%)                                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GEO.URB.TNR\",\"World Bank: Teaching/Non-Teaching Staff Ratio, urban areas                                                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.GOV.PRIV\",\"World Bank: Share of total public education expenditure for private institutions (%)                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.HIV.ABS\",\"World Bank: Total education expenditure lost to HIV/AIDS related teacher absenteeism (USD millions)                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.HIV.OVC.ENR\",\"World Bank: Total cost of enrolling HIV/AIDS orphans (in USD millions)                                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.HIV.OVC.PRM\",\"World Bank: Orphans and Vulnerable Children (OVC) Cash Transfer to Schools per primary student (in USD)                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.HIV.OVC.SEC\",\"World Bank: Orphans and Vulnerable Children (OVC) Cash Transfer to Schools per secondary student (in USD)                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.HIV.OVC.TOT\",\"World Bank: Total Cash Transfers for Orphans and Vulnerable Children (OVCs) (in USD)                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.HIV.SHARE\",\"World Bank: Share of total education expenditures for HIV/AIDS interventions (%)                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.HIV.TOT\",\"World Bank: Share of total education expenditure lost due to HIV/AIDS (%)                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.HIV.TT\",\"World Bank: Additional cost of teacher education due to HIV/AIDS (USD millions)                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.HIV.USD\",\"World Bank: Total education expenditure lost to HIV/AIDS (USD millions)                                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.MAIN.RCT\",\"World Bank: Operations and Maintenance (% of recurrent education expenditure)                                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.MAIN.TOT\",\"World Bank: Operations and Maintenance (% of total education expenditure)                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.PTXT\",\"World Bank: Pupil/Textbook Ratio                                                                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.SPECIAL.SHARE\",\"World Bank: Share of total education expenditures for special education/disabilities (%)                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.TLM\",\"World Bank: Teaching/learning materials (% of total education expenditures)                                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.TLM.RCT\",\"World Bank: Teaching/learning materials (% of total recurrent education expenditures)                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.TRA.BAS\",\"World Bank: Per student transfer by central to subnational government, basic (USD or local currency)                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.TRA.GDP\",\"World Bank: Central Government Transfers for education (% of GDP)                                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.TRA.OVERALL\",\"World Bank: Per student transfer by central to subnational government (USD or local currency)                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.TRA.PP\",\"World Bank: Per student transfer by central to subnational government, pre-primary (USD or local currency)                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.TRA.PRM\",\"World Bank: Per student transfer by central to subnational government, primary (USD or local currency)                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.TRA.RCT\",\"World Bank: Share of recurrent education expenditures for transfers (%)                                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.TRA.SEC\",\"World Bank: Per student transfer by central to subnational government, secondary (USD or local currency)                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.TRA.TER\",\"World Bank: Per student funding transfer by central government to tertiary institutions (USD or local currency)                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.TRA.TOT\",\"World Bank: Share of total central government transfers for education (%)                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.TRA.TOT.SHARE\",\"World Bank: Share of total education expenditures for transfers (%)                                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.TRA.USD\",\"World Bank: Total Transfers (local currency or USD millions)                                                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.TT.PRM\",\"World Bank: Ratio of expenditures per student, teacher training to primary                                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.TT.RCT\",\"World Bank: Teacher Training (% of recurrent education expenditures)                                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.TT.TOT\",\"World Bank: Teacher Training (% of total education expenditure)                                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.TXT.RCT\",\"World Bank: Textbooks (% of total recurrent education expenditures)                                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.TXT.TOT\",\"World Bank: Textbooks (% of total education expenditures)                                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.UTL.RCT\",\"World Bank: Utilities (% of recurrent education expenditure)                                                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.OC.UTL.TOT\",\"World Bank: Utilities (% of total education expenditure)                                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PER.TEACH.SHARE\",\"World Bank: Share of teachers for primary (%)                                                                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.ADMIN\",\"World Bank: Share of pre-primary expenditures for administration (%)                                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.CAP.SHARE\",\"World Bank: Share of total capital education expenditure (%), pre-primary                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.CPL\",\"World Bank: Capital share of pre-primary expenditures (%)                                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.EXE.CPL\",\"World Bank: Capital education budget execution rate (%), pre-primary                                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.EXE.RCT\",\"World Bank: Recurrent education budget execution rate (%), pre-primary                                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.EXE.TOT\",\"World Bank: Education budget execution rate, pre-primary (%)                                                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.GDP\",\"World Bank: Share of GDP for education expenditures on pre-primary education (%)                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.ITL.SHARE\",\"World Bank: Share of education expenditures from international sources for pre-primary education (%)                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.PCR\",\"World Bank: Pupil/Classroom Ratio, pre-primary                                                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.PPC\",\"World Bank: Pupils/Class, pre-primary                                                                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.PRIV\",\"World Bank: Share of pre-primary schools, privately managed (%)                                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.PS.GDP\",\"World Bank: Public education expenditure per student (% of GDP per capita), pre-primary                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.PS.PRM\",\"World Bank: Ratio of expenditures per student, pre-primary to primary                                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.PS.RCT\",\"World Bank: Recurrent expenditures per pre-primary student (USD or local currency)                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.PS.RCT.RATIO\",\"World Bank: Ratio of pre-primary per capita/per student recurrent expenditures relative to primary education                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.PS.USD\",\"World Bank: Expenditures per student per year (in USD), pre-primary                                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.PSTF\",\"World Bank: Pupil/Total Staff Ratio, pre-primary                                                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.PTR\",\"World Bank: Pupil/Teacher Ratio, pre-primary                                                                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.PVT.FEE\",\"World Bank: Private institution fees, pre-primary (in USD or local currency)                                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.QLT.P40\",\"World Bank: Share of education expenditures for the poorest 40% of students (%), Pre-Primary                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.QLT.Q1\",\"World Bank: Share of pre-primary education expenditures for Quintile 1 (poorest) (%)                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.QLT.Q2\",\"World Bank: Share of pre-primary education expenditures for Quintile 2 (%)                                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.QLT.Q3\",\"World Bank: Share of pre-primary education expenditures for Quintile 3 (%)                                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.QLT.Q4\",\"World Bank: Share of pre-primary education expenditures for Quintile 4 (%)                                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.QLT.Q5\",\"World Bank: Share of pre-primary education expenditures for Quintile 5 (richest) (%)                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.QTL.NP\",\"World Bank: Share of total pre-primary education expenditures for non-poor students (%)                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.QTL.POOR\",\"World Bank: Share of total pre-primary education expenditures for poor students (%)                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.QTL.R40\",\"World Bank: Share of education expenditures for the richest 40% of students (%), Pre-Primary                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.RCT\",\"World Bank: Recurrent share of pre-primary expenditures (%)                                                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.RCT.TOT\",\"World Bank: Share of total recurrent education expenditure (%), pre-primary                                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.SAL\",\"World Bank: Salaries' share of pre-primary expenditures (%)                                                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.SAL.RCT\",\"World Bank: Share of recurrent education expenditures for pre-primary salaries (%)                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.SAL.TOT\",\"World Bank: Share of total education expenditures for pre-primary salaries (%)                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.SAL.USD\",\"World Bank: Average Annual Teacher Salary in USD, pre-primary                                                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.SOR.GOV\",\"World Bank: Share of pre-primary education expenditures from government sources (%)                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.TEACH.SHARE\",\"World Bank: Share of teachers for pre-primary education (%)                                                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.TNR\",\"World Bank: Teaching/Non-Teaching Staff Ratio, pre-primary                                                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.TOT\",\"World Bank: Share of total education expenditure for pre-primary education (%)                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PP.TOTEXP\",\"World Bank: Total expenditures on pre-primary education (USD or local currency)                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRIV.MANAGE\",\"World Bank: Share of secondary schools, privately managed (%)                                                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.ADMIN\",\"World Bank: Share of primary expenditures for administration (%)                                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.CIVIL.SAL\",\"World Bank: Civil Service Teachers, Annual Salary (in USD or local currency), primary                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.CIVIL.SHARE\",\"World Bank: Civil Service Primary Teachers (% of total primary teachers)                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.COM.SAL\",\"World Bank: Community/Locally-Hired Teachers, Annual Salary (in USD or local currency), primary                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.COM.SHARE\",\"World Bank: Community/Locally-Hired Primary Teachers (% of total primary teachers)                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.CONTRACT\",\"World Bank: Contract/Part-Time primary teachers (% of total teachers)                                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.CONTRACT.SAL\",\"World Bank: Contract Teachers, Annual Salary (in USD or local currency), primary                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.CPL\",\"World Bank: Capital share of primary expenditures (%)                                                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.CPL.TOT\",\"World Bank: Share of total capital education expenditure (%), primary                                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.DS.SHARE\",\"World Bank: Share of schools with double shifts (%), primary                                                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.EFF.REP\",\"World Bank: Repetition/Drop-out Inefficiency Cost, primary                                                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.EFF.REP.YEAR\",\"World Bank: Repetition/Dropout Inefficiency Annual Resource Input Ratio, primary                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.EFF.REP.YEAR.PUB\",\"World Bank: Repetition/Dropout Inefficiency Annual Resource Input Ratio, primary public schools                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.EFF.REP.YEAR.PVT\",\"World Bank: Repetition/Dropout Inefficiency Annual Resource Input Ratio, primary private schools                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.EFF.TCHRSUPPLY\",\"World Bank: Cost Burden of Teacher Oversupply (% of total education expenditures)                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.EFF.TOT\",\"World Bank: Total Cost of Inefficiencies (USD or local currency), primary                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.EFF.WASTAGE\",\"World Bank: Wastage Index (%), Total Primary Expenditures                                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.EXE.CPL\",\"World Bank: Capital education budget execution rate (%), primary                                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.EXE.RCT\",\"World Bank: Recurrent education budget execution rate (%), primary                                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.EXE.SAL\",\"World Bank: Salary execution rate (%), primary                                                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.EXE.TOT\",\"World Bank: Education budget execution rate, primary (%)                                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.GDP\",\"World Bank: Share of GDP for education expenditures on primary education (%)                                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.GS.RCT\",\"World Bank: Share of primary recurrent expenditures for goods and services (%)                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.HH.BOARD\",\"World Bank: Household spending per student on room/board for primary education (USD or local currency)                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.HH.FEES.TOT\",\"World Bank: Total household spending on school fees, primary (USD or local currency)                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.HH.TEXT\",\"World Bank: Household spending per student on textbooks for primary education (USD or local currency)                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.HH.TRNSPT\",\"World Bank: Household spending per student on transportation for primary education (USD or local currency)                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.HH.TUIT\",\"World Bank: Household spending per student on tuition for primary education (USD or local currency)                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.HH.UNIF\",\"World Bank: Household spending per student on uniforms/clothing for primary education (USD or local currency)                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.ITL.SHARE\",\"World Bank: Share of education expenditures from international sources for primary education (%)                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.PCR\",\"World Bank: Pupil/Classroom Ratio, primary                                                                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.PNTR\",\"World Bank: Pupil/Administration (Non-Teaching) Staff Ratio, primary                                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.PPC\",\"World Bank: Pupils/Class, primary                                                                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.PPS\",\"World Bank: Pupils/School, primary                                                                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.PPS.PRIV\",\"World Bank: Pupils/Private Primary School                                                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.PPS.PUB\",\"World Bank: Pupils/Public Primary School                                                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.PQTR\",\"World Bank: Pupils/Certified Teacher Ratio, primary                                                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.PRIV.PS\",\"World Bank: Per student expenditures in private primary institutions (in USD or local currency)                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.PS.GDP\",\"World Bank: Public education expenditure per student (% of GDP per capita), primary                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.PS.NONSAL\",\"World Bank: Per student non-salary spending, primary (in USD or local currency)                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.PS.PUB\",\"World Bank: Per student expenditures in public primary institutions (in USD or local currency)                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.PS.USD\",\"World Bank: Expenditures per student per year (in USD), primary                                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.PSTF\",\"World Bank: Pupil/Total Staff Ratio, primary                                                                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.PTC.CIVIL\",\"World Bank: Pupil/Teacher Ratio for primary schools with Civil Service Teachers                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.PTR\",\"World Bank: Pupil/Teacher Ratio, primary                                                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.PTR.CONTRACT\",\"World Bank: Pupil/Teacher Ratio for primary schools with Contract Teachers                                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.PTR.PRIV\",\"World Bank: Pupil/Teacher Ratio for Private Primary Schools                                                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.PTR.PUBLIC\",\"World Bank: Pupil/Teacher Ratio for Public Primary Schools                                                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.PVT.FEE\",\"World Bank: Private institution fees, primary (in USD or local currency)                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.PVT.SHARE\",\"World Bank: Share of primary schools, privately managed (% of total schools)                                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.QLT.Q1\",\"World Bank: Share of primary education expenditures for Quintile 1 (poorest) (%)                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.QLT.Q2\",\"World Bank: Share of primary education expenditures for Quintile 2 (%)                                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.QLT.Q3\",\"World Bank: Share of primary education expenditures for Quintile 3 (%)                                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.QLT.Q4\",\"World Bank: Share of primary education expenditures for Quintile 4 (%)                                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.QLT.Q5\",\"World Bank: Share of primary education expenditures for Quintile 5 (richest) (%)                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.QTL.NP\",\"World Bank: Share of total primary education expenditures for non-poor students (%)                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.QTL.P40\",\"World Bank: Share of education expenditures for the poorest 40% of students (%), Primary                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.QTL.POOR\",\"World Bank: Share of total primary education expenditures for poor students (%)                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.QTL.R40\",\"World Bank: Share of education expenditures for the richest 40% of students (%), Primary                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.RCT\",\"World Bank: Recurrent share of primary expenditures (%)                                                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.RCT.GDP\",\"World Bank: Primary recurrent expenditures as a share of GDP (%)                                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.RCT.PS\",\"World Bank: Recurrent expenditures per primary student (USD or local currency)                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.RCT.TOT\",\"World Bank: Share of total recurrent education expenditure (%), primary                                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.SAL\",\"World Bank: Salaries' share of primary expenditures (%)                                                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.SAL.GDP\",\"World Bank: Ratio of Teacher Salaries to per capita GDP, primary                                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.SAL.LOC\",\"World Bank: Average Annual Teacher Salary in local currency, primary                                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.SAL.PS\",\"World Bank: Salary expenditures per primary student (USD or local currency)                                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.SAL.RCT\",\"World Bank: Share of recurrent education expenditures for primary salaries (%)                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.SAL.SHARE\",\"World Bank: Share of total salary expenditures for primary (%)                                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.SAL.SHARE.RCT\",\"World Bank: Salaries' share of primary recurrent expenditures (%)                                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.SAL.TOT\",\"World Bank: Share of total education expenditures for primary salaries (%)                                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.SAL.USD\",\"World Bank: Average Annual Teacher Salary in USD, primary                                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.TCH.HRS\",\"World Bank: Average annual teaching load, primary (hours of instruction per year)                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.TCH.JOB\",\"World Bank: Share of primary teachers holding more than one job (%)                                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.TLM.PS\",\"World Bank: Per student expenditures on Teaching/learning materials, primary (in USD or local currency)                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.TNR\",\"World Bank: Teaching/Non-Teaching Staff Ratio, primary                                                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.TOT\",\"World Bank: Share of total education expenditure for primary education (%)                                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.TOT.CPL\",\"World Bank: Capital share of total education expenditure (%), primary                                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.TOTEXP\",\"World Bank: Total expenditures on primary education (USD or local currency)                                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.TRANSFER.RCT\",\"World Bank: Share of primary recurrent expenditures for transfers (%)                                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.TS.SHARE\",\"World Bank: Share of schools with triple shifts (%), primary                                                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.TTL.GOV\",\"World Bank: Share of total government expenditures (all sectors) for primary education expenditures (%)                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PRM.UTL.SHARE\",\"World Bank: Share of primary expenditures for utilities (%)                                                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PVT.PRM.TOT\",\"World Bank: Share of total education expenditures for private primary schools (%)                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PVT.SEC.TOT\",\"World Bank: Share of total education expenditures for private secondary schools (%)                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.PVT.TER.TOT\",\"World Bank: Share of total education expenditures for private tertiary institutions (%)                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.RRL.HH.SHARE\",\"World Bank: Share of total household expenditures for education, rural areas (%)                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.RRL.HH.TOTSHARE\",\"World Bank: Share of total household education expenditures from rural areas (%)                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SAL.HOURLY\",\"World Bank: Average hourly wage for teachers (in USD or local currency)                                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SAL.HR.WEEK\",\"World Bank: Teachers total working hours per week                                                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SAL.MOE.MONTH\",\"World Bank: Average monthly education sector salary (in USD or local currency)                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SAL.NOT\",\"World Bank: Share of teachers not on the government payroll (%)                                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SAL.PRM.WEEK\",\"World Bank: Primary teachers total working hours per week                                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SAL.PUB\",\"World Bank: Average teacher salary in public schools (in USD or local currency)                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SAL.SEC.WEEK\",\"World Bank: Secondary teachers total working hours per week                                                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SAL.TEACH.MONTH.USD\",\"World Bank: Average monthly teacher salary (in USD or local currency)                                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SAL.TEACH.TOT.USD\",\"World Bank: Total teacher salary expenditures (in USD or local currency)                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.ADMIN\",\"World Bank: Share of secondary expenditures for administration (%)                                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.CIVIL.SAL\",\"World Bank: Civil Service Teachers, Annual Salary (in USD or local currency), secondary                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.CIVIL.SHARE\",\"World Bank: Civil Service Secondary Teachers (% of total secondary teachers)                                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.COM.SAL\",\"World Bank: Community/Locally-Hired Teachers, Annual Salary (in USD or local currency), secondary                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.COM.SHARE\",\"World Bank: Community/Locally-Hired Secondary Teachers (% of total secondary teachers)                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.CONTRACT\",\"World Bank: Contract/Part-Time secondary teachers (% of total teachers)                                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.CONTRACT.SAL\",\"World Bank: Contract Teachers, Annual Salary (in USD or local currency), secondary                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.CPL\",\"World Bank: Capital share of secondary expenditures (%)                                                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.CPL.TOT\",\"World Bank: Share of total capital education expenditure (%), secondary                                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.DS.SHARE\",\"World Bank: Share of schools with double shifts (%), secondary                                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.EFF.REP\",\"World Bank: Repetition/Drop-out Inefficiency Cost, secondary                                                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.EFF.REP.YEAR\",\"World Bank: Repetition/Dropout Inefficiency Annual Resource Input Ratio, secondary                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.EFF.REP.YEAR.PUB\",\"World Bank: Repetition/Dropout Inefficiency Annual Resource Input Ratio, secondary public schools                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.EFF.REP.YEAR.PVT\",\"World Bank: Repetition/Dropout Inefficiency Annual Resource Input Ratio, secondary private schools                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.EFF.TOT\",\"World Bank: Total Cost of Inefficiencies (USD or local currency), secondary                                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.EXE.CPL\",\"World Bank: Capital education budget execution rate (%), secondary                                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.EXE.RCT\",\"World Bank: Recurrent education budget execution rate (%), secondary                                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.EXE.SAL\",\"World Bank: Salary execution rate (%), secondary                                                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.EXE.TOT\",\"World Bank: Education budget execution rate, secondary (%)                                                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.GDP\",\"World Bank: Share of GDP for education expenditures on secondary education (%)                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.GS.RCT\",\"World Bank: Share of secondary recurrent expenditures for goods and services (%)                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.HH.BOARD\",\"World Bank: Household spending per student on room/board for secondary education (USD or local currency)                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.HH.TEXT\",\"World Bank: Household spending per student on textbooks for secondary education (USD or local currency)                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.HH.TRNSPT\",\"World Bank: Household spending per student on transportation for secondary education (USD or local currency)                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.HH.TUIT\",\"World Bank: Household spending per student on tuition for secondary education (USD or local currency)                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.HH.UNIF\",\"World Bank: Household spending per student on uniforms/clothing for secondary education (USD or local currency)                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.ITL.SHARE\",\"World Bank: Share of education expenditures from international sources for secondary education (%)                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.PCR\",\"World Bank: Pupil/Classroom Ratio, secondary                                                                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.PPC\",\"World Bank: Pupils/Class, secondary                                                                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.PPS\",\"World Bank: Pupils/School, secondary                                                                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.PPS.PRIV\",\"World Bank: Pupils/Private Secondary School                                                                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.PPS.PUB\",\"World Bank: Pupils/Public Secondary School                                                                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.PQTR\",\"World Bank: Pupils/Certified Teacher Ratio, secondary                                                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.PRIV.PS\",\"World Bank: Per student expenditures in private secondary institutions (in USD or local currency)                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.PRT.PRIV\",\"World Bank: Pupil/Teacher Ratio for Private Secondary Schools                                                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.PS.GDP\",\"World Bank: Public education expenditure per student (% of GDP per capita), secondary                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.PS.NONSAL\",\"World Bank: Per student non-salary spending, secondary (in USD or local currency)                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.PS.PRM\",\"World Bank: Ratio of expenditures per student, secondary to primary                                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.PS.PUB\",\"World Bank: Per student expenditures in public secondary institutions (in USD or local currency)                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.PS.RCT.RATIO\",\"World Bank: Ratio of secondary per capita/per student recurrent expenditures relative to primary education                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.PS.TEXT\",\"World Bank: Per student expenditure on Teaching/learning materials, secondary (in USD or local currency)                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.PS.USD\",\"World Bank: Expenditures per student per year (in USD), secondary                                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.PSTF\",\"World Bank: Pupil/Total Staff Ratio, secondary                                                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.PTC.CIVIL\",\"World Bank: Pupil/Teacher Ratio for secondary schools with Civil Service Teachers                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.PTR\",\"World Bank: Pupil/Teacher Ratio, secondary                                                                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.PTR.CONTRACT\",\"World Bank: Pupil/Teacher Ratio for secondary schools with Contract Teachers                                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.PTR.PUBLIC\",\"World Bank: Pupil/Teacher Ratio for Public Secondary Schools                                                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.PVT.FEE\",\"World Bank: Private institution fees, secondary (in USD or local currency)                                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.QTL.NP\",\"World Bank: Share of total secondary education expenditures for non-poor students (%)                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.QTL.P40\",\"World Bank: Share of education expenditures for the poorest 40% of students (%), Secondary                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.QTL.POOR\",\"World Bank: Share of total secondary education expenditures for poor students (%)                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.QTL.Q1\",\"World Bank: Share of secondary education expenditures for Quintile 1 (poorest) (%)                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.QTL.Q2\",\"World Bank: Share of secondary education expenditures for Quintile 2 (%)                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.QTL.Q3\",\"World Bank: Share of secondary education expenditures for Quintile 3 (%)                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.QTL.Q4\",\"World Bank: Share of secondary education expenditures for Quintile 4 (%)                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.QTL.Q5\",\"World Bank: Share of secondary education expenditures for Quintile 5 (richest) (%)                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.QTL.R40\",\"World Bank: Share of education expenditures for the richest 40% of students (%), Secondary                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.RCT\",\"World Bank: Recurrent share of secondary expenditures (%)                                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.RCT.GDP\",\"World Bank: Secondary recurrent expenditures as a share of GDP (%)                                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.RCT.PS\",\"World Bank: Recurrent expenditures per secondary student (USD or local currency)                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.RCT.TOT\",\"World Bank: Share of total recurrent education expenditure (%), secondary                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.SAL\",\"World Bank: Salaries' share of secondary education expenditures (%)                                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.SAL.GDP\",\"World Bank: Ratio of Teacher Salaries to per capita GDP, secondary                                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.SAL.LOC\",\"World Bank: Average Annual Teacher Salary in local currency, secondary                                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.SAL.PS\",\"World Bank: Salary expenditures per secondary student (USD or local currency)                                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.SAL.RCT\",\"World Bank: Share of recurrent education expenditures for secondary salaries (%)                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.SAL.SHARE\",\"World Bank: Share of total salary expenditures for secondary (%)                                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.SAL.SHARE.RCT\",\"World Bank: Salaries' share of secondary recurrent expenditures (%)                                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.SAL.TOT\",\"World Bank: Share of total education expenditures for secondary salaries (%)                                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.SAL.USD\",\"World Bank: Average Annual Teacher Salary in USD, secondary                                                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.TCH.HRS\",\"World Bank: Average annual teaching load, secondary (hours of instruction per year)                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.TCH.JOB\",\"World Bank: Share of secondary teachers holding more than one job (%)                                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.TEACH.SHARE\",\"World Bank: Share of teachers for secondary (%)                                                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.TNR\",\"World Bank: Teaching/Non-Teaching Staff Ratio, secondary                                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.TOT\",\"World Bank: Share of total education expenditure for secondary education (%)                                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.TOT.CPL\",\"World Bank: Capital share of total education expenditure (%), secondary                                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.TOTEXP\",\"World Bank: Total expenditures on secondary education (USD or local currency)                                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.TRANSFER.RCT\",\"World Bank: Share of secondary recurrent expenditures for transfers (%)                                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SEC.TS.SHARE\",\"World Bank: Share of schools with triple shifts (%), secondary                                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.BAS.CTL\",\"World Bank: Share of basic education expenditures financed by central government sources (%)                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.BAS.DIST\",\"World Bank: Share of basic education expenditures financed by district/municipal government sources (%)                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.BAS.PROV\",\"World Bank: Share of basic education expenditures financed by provincial/state government sources (%)                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.CTL.BAS\",\"World Bank: Share of total central government education expenditures for basic education (%)                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.CTL.CAP\",\"World Bank: Share of central government education expenditures for capital (%)                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.CTL.CPL\",\"World Bank: Central government share of education capital expenditures (%)                                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.CTL.JR\",\"World Bank: Share of total central government education expenditures for junior secondary (%)                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.CTL.PP\",\"World Bank: Share of total central government education expenditures for pre-primary (%)                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.CTL.PRM\",\"World Bank: Share of total central government education expenditures for primary (%)                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.CTL.RCT\",\"World Bank: Central government share of recurrent education expenditures (%)                                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.CTL.RCT.SHARE\",\"World Bank: Share of central government education expenditures for recurrent expenditures (%)                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.CTL.SAL\",\"World Bank: Central government share of education salaries (%)                                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.CTL.SAL.SHARE\",\"World Bank: Share of central government education expenditures for salaries (%)                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.CTL.SEC\",\"World Bank: Share of total central government education expenditures for secondary (%)                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.CTL.SR\",\"World Bank: Share of total central government education expenditures for senior secondary education (%)                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.CTL.TER\",\"World Bank: Share of total central government education expenditures for tertiary (%)                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.CTL.TOT\",\"World Bank: Share of total central government spending for education (%)                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.CTL.TOT.BAS\",\"World Bank: Share of total education expenditures disbursed by the central government for basic education (%)                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.CTL.TOT.PP\",\"World Bank: Share of total education expenditures disbursed by the central government for pre-primary (%)                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.CTL.TOT.PRM\",\"World Bank: Share of total education expenditures disbursed by the central government for primary (%)                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.CTL.TOT.SEC\",\"World Bank: Share of total education expenditures disbursed by the central government for secondary (%)                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.CTL.TOT.TER\",\"World Bank: Share of total education expenditures disbursed by the central government for tertiary education (%)                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.CTL.TOT.VOC\",\"World Bank: Share of total education expenditures disbursed by the central government for technical/vocational education (%)                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.CTL.VOC\",\"World Bank: Share of total central government education expenditures for technical/vocational education (%)                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.DIST\",\"World Bank: Share of total education expenditures financed by district/municipal government sources (%)                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.DIST.BAS\",\"World Bank: Share of total education expenditures disbursed by subnational levels of government for basic education (%)                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.DIST.CTL\",\"World Bank: Share of total education expenditures disbursed by the central government (%)                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.DIST.JR\",\"World Bank: Share of total education expenditures disbursed by subnational levels of government for junior secondary education (%)                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.DIST.LOC\",\"World Bank: Share of total education expenditures disbursed by district/municipal levels of government (%)                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.DIST.PP\",\"World Bank: Share of total education expenditures disbursed by subnational levels of government for pre-primary (%)                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.DIST.PRM\",\"World Bank: Share of total education expenditures disbursed by subnational levels of government for primary (%)                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.DIST.REG\",\"World Bank: Share of total education expenditures disbursed by provincial/state levels of government (%)                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.DIST.REV\",\"World Bank: Share of total district/municipal government expenditures for the education sector (%)                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.DIST.SEC\",\"World Bank: Share of total education expenditures disbursed by subnational levels of government for secondary (%)                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.DIST.SR\",\"World Bank: Share of total education expenditures disbursed by subnational levels of government for senior secondary education (%)                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.DIST.SUB\",\"World Bank: Share of total education expenditures disbursed by subnational levels of government (%)                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.DIST.TER\",\"World Bank: Share of total education expenditures disbursed by subnational levels of government for tertiary education (%)                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.DIST.VOC\",\"World Bank: Share of total education expenditures disbursed by subnational levels of government for technical/vocational education (%)                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.FEE.JR\",\"World Bank: Annual school fees per student, junior secondary (in USD or local currency)                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.FEE.JR.SHARE\",\"World Bank: Share of total junior secondary education expenditures from parental contributions/school fees (%)                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.FEE.PP.SHARE\",\"World Bank: Share of total pre-primary education expenditures from parental contributions/school fees (%)                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.FEE.PRM\",\"World Bank: Annual school fees per student, primary (in USD or local currency)                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.FEE.PRM.SHARE\",\"World Bank: Share of total expenditures on primary education recovered from school fees/household contributions (%)                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.FEE.SEC\",\"World Bank: Annual school fees per student, secondary (in USD or local currency)                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.FEE.SEC.SHARE\",\"World Bank: Share of total expenditures on secondary education recovered from school fees/household expenditures (%)                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.FEE.SR\",\"World Bank: Annual school fees per student, senior secondary (in USD or local currency)                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.FEE.SR.SHARE\",\"World Bank: Share of total senior secondary education expenditures from parental contributions/school fees (%)                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.FEE.TER\",\"World Bank: Annual tuition fees per student, tertiary (in USD or local currency)                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.FEE.TER.SHARE\",\"World Bank: Share of total cost of public tertiary education recovered from student fees (Cost Recovery %)                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.FEE.TOT\",\"World Bank: Share of total education revenue from school fees (%)                                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.GOV.CPL\",\"World Bank: Capital expenditures from government sources (%)                                                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.GOV.GDP\",\"World Bank: Total education expenditure from public sources (% of GDP)                                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.GOV.PRM\",\"World Bank: Share of primary expenditures from public/government sources (%)                                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.GOV.PS.PRM\",\"World Bank: Government expenditures per primary student (in USD or local currency)                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.GOV.PS.SEC\",\"World Bank: Government expenditures per secondary student (in USD or local currency)                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.GOV.PS.TER\",\"World Bank: Government expenditures per tertiary student (in USD or local currency)                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.GOV.PS.VOC\",\"World Bank: Government expenditures per technical/vocational education student (in USD or local currency)                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.GOV.RCT\",\"World Bank: Recurrent expenditures from government sources (%)                                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.GOV.SEC\",\"World Bank: Share of secondary expenditures from public/government sources (%)                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.GOV.TER\",\"World Bank: Share of total tertiary education expenditures (% from public sources)                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.GOV.TOT\",\"World Bank: Share of total education expenditure (% from public sources)                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.GOV.TOT.CPL\",\"World Bank: Share of total capital expenditure on education (% from public sources)                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.GOV.TOT.USD\",\"World Bank: Total Expenditures from Public/Government Sources (in USD or local currency)                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.GOV.VOC\",\"World Bank: Share of technical/vocational expenditures from public/government sources (%)                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH\",\"World Bank: Household spending per student (USD or local currency)                                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.BAS\",\"World Bank: Household spending per student, basic (in USD or local currency)                                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.JR\",\"World Bank: Household spending per student, junior secondary (in USD or local currency)                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.LOC\",\"World Bank: Total household spending on education (local currency)                                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.P20.PRM\",\"World Bank: Share of total Private/Household spending on primary education for poorest 20% of students (%)                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.P20.SEC\",\"World Bank: Share of total Private/Household spending on secondary education for poorest 20% of students (%)                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.P20.TER\",\"World Bank: Share of total Private/Household spending on tertiary education for poorest 20% of students (%)                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.P40\",\"World Bank: Private/Household spending on education, poorest 40% of students                                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.PRM\",\"World Bank: Household spending per student, primary (in USD or local currency)                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.Q1\",\"World Bank: Private/Household spending on education, Quintile 1                                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.Q1.PRM\",\"World Bank: Share of total Private/Household spending on primary education for Quintile 1 (%)                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.Q1.SEC\",\"World Bank: Share of total Private/Household spending on secondary education for Quintile 1 (%)                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.Q1.TER\",\"World Bank: Share of total Private/Household spending on tertiary education for Quintile 1 (%)                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.Q2\",\"World Bank: Private/Household spending on education, Quintile 2                                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.Q2.PRM\",\"World Bank: Share of total Private/Household spending on primary education for Quintile 2 (%)                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.Q2.SEC\",\"World Bank: Share of total Private/Household spending on secondary education for Quintile 2 (%)                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.Q2.TER\",\"World Bank: Share of total Private/Household spending on tertiary education for Quintile 2 (%)                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.Q3\",\"World Bank: Private/Household spending on education, Quintile 3                                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.Q3.PRM\",\"World Bank: Share of total Private/Household spending on primary education for Quintile 3 (%)                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.Q3.SEC\",\"World Bank: Share of total Private/Household spending on secondary education for Quintile 3 (%)                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.Q3.TER\",\"World Bank: Share of total Private/Household spending on tertiary education for Quintile 3 (%)                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.Q4\",\"World Bank: Private/Household spending on education, Quintile 4                                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.Q4.PRM\",\"World Bank: Share of total Private/Household spending on primary education for Quintile 4 (%)                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.Q4.SEC\",\"World Bank: Share of total Private/Household spending on secondary education for Quintile 4 (%)                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.Q4.TER\",\"World Bank: Share of total Private/Household spending on tertiary education for Quintile 4 (%)                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.Q5\",\"World Bank: Private/Household spending on education, Quintile 5                                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.Q5.PRM\",\"World Bank: Share of total Private/Household spending on primary education for Quintile 5 (%)                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.Q5.SEC\",\"World Bank: Share of total Private/Household spending on secondary education for Quintile 5 (%)                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.Q5.TER\",\"World Bank: Share of total Private/Household spending on tertiary education for Quintile 5 (%)                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.R20.PRM\",\"World Bank: Share of total Private/Household spending on primary education for richest 20% of students (%)                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.R20.SEC\",\"World Bank: Share of total Private/Household spending on secondary education for richest 20% of students (%)                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.R20.TER\",\"World Bank: Share of total Private/Household spending on tertiary education for richest 20% of students (%)                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.R40\",\"World Bank: Private/Household spending on education, richest 40% of students                                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.SEC\",\"World Bank: Household spending per student, secondary (in USD or local currency)                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.SR\",\"World Bank: Household spending per student, senior secondary (in USD or local currency)                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.TER\",\"World Bank: Household spending per student, tertiary (in USD or local currency)                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.TOT\",\"World Bank: Share of total education expenditure (% from parent/household contributions)                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.USD\",\"World Bank: Total household spending on education (USD)                                                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.USD.BAS\",\"World Bank: Total household spending on education (USD), basic                                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.USD.JR\",\"World Bank: Total household spending on education (USD or local currency), junior secondary                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.USD.PP\",\"World Bank: Total household spending on education (USD), pre-primary                                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.USD.PRM\",\"World Bank: Total household spending on education (USD or local currency), primary                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.USD.SEC\",\"World Bank: Total household spending on education (USD or local currency), secondary                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.USD.SR\",\"World Bank: Total household spending on education (USD or local currency), senior secondary                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.HH.USD.TER\",\"World Bank: Total household spending on education (USD), tertiary                                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.ITL.BAS\",\"World Bank: Share of basic education expenditures from international sources (%)                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.ITL.CPL\",\"World Bank: Share of total capital education expenditure from international sources (%)                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.ITL.GDP\",\"World Bank: Total education expenditures from international sources as a % of GDP                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.ITL.JR\",\"World Bank: Share of junior secondary expenditures from international sources (%)                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.ITL.OFF\",\"World Bank: Off-budget international education spending, total (in USD or local currency)                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.ITL.PP\",\"World Bank: Share of pre-primary expenditures from international sources (%)                                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.ITL.PRM\",\"World Bank: Share of primary expenditures from international sources (%)                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.ITL.RCT\",\"World Bank: Recurrent expenditures from international sources (%)                                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.ITL.SEC\",\"World Bank: Share of secondary expenditures from international sources (%)                                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.ITL.SR\",\"World Bank: Share of senior secondary expenditures from international sources (%)                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.ITL.TER\",\"World Bank: Share of tertiary expenditures from international sources (%)                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.ITL.TOT\",\"World Bank: Share of total education expenditure from international sources (%)                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.ITL.USD\",\"World Bank: Total education expenditures from international sources (in USD or local currency)                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.ITL.VOC\",\"World Bank: Share of technical/vocational expenditures from international sources (%)                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.PP.CTL\",\"World Bank: Share of pre-primary education expenditures financed by central government sources (%)                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.PP.DIST\",\"World Bank: Share of pre-primary education expenditures financed by district/municipal government sources (%)                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.PP.PROV\",\"World Bank: Share of pre-primary education expenditures financed by provincial/state government sources (%)                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.PRM.CTL\",\"World Bank: Share of primary education expenditures financed by central government sources (%)                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.PRM.DIST\",\"World Bank: Share of primary education expenditures financed by district/municipal government sources (%)                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.PRM.PROV\",\"World Bank: Share of primary education expenditures financed by provincial/state government sources (%)                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.PROV\",\"World Bank: Share of total education expenditures financed by provincial/state government sources (%)                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.PROV.REV\",\"World Bank: Share of total provincial/state government expenditures for the education sector (%)                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.PRT.SEC\",\"World Bank: Secondary share of total private spending on education (%)                                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.PVT.GDP\",\"World Bank: Total private expenditure on education (% of GDP)                                                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.PVT.GDP.PP\",\"World Bank: Total private expenditure on pre-primary education (% of GDP)                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.PVT.GDP.PRM\",\"World Bank: Total private expenditure on primary education (% of GDP)                                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.PVT.GDP.SEC\",\"World Bank: Total private expenditure on secondary education (% of GDP)                                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.PVT.GDP.TER\",\"World Bank: Total private expenditure on tertiary education (% of GDP)                                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.PVT.JR\",\"World Bank: Junior secondary share of total private spending on education (%)                                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.PVT.PCT\",\"World Bank: Share of household consumption for private expenditures on education (%)                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.PVT.PCT.PRM\",\"World Bank: Share of household consumption for private expenditures on primary education (%)                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.PVT.PCT.Q1\",\"World Bank: Share of Quintile 1 household consumption for private expenditures on education (%)                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.PVT.PCT.Q2\",\"World Bank: Share of Quintile 2 household consumption for private expenditures on education (%)                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.PVT.PCT.Q3\",\"World Bank: Share of Quintile 3 household consumption for private expenditures on education (%)                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.PVT.PCT.Q4\",\"World Bank: Share of Quintile 4 household consumption for private expenditures on education (%)                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.PVT.PCT.Q5\",\"World Bank: Share of Quintile 5 household consumption for private expenditures on education (%)                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.PVT.PCT.SEC\",\"World Bank: Share of household consumption for private expenditures on secondary education (%)                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.PVT.PCT.TER\",\"World Bank: Share of household consumption for private expenditures on tertiary education (%)                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.PVT.PP\",\"World Bank: Pre-primary share of total private spending on education (%)                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.PVT.PRM\",\"World Bank: Primary share of total private spending on education (%)                                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.PVT.SR\",\"World Bank: Senior secondary share of total private spending on education (%)                                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.PVT.TER\",\"World Bank: Tertiary share of total private/household spending on education (%)                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.PVT.TOT\",\"World Bank: Share of total education expenditure (% from private sources)                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.PVT.VOC\",\"World Bank: Technical/Vocational share of total private/household spending on education (%)                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.SEC.CTL\",\"World Bank: Share of secondary education expenditures financed by central government sources (%)                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.SEC.DIST\",\"World Bank: Share of secondary education expenditures financed by district/municipal government sources (%)                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.SEC.PROV\",\"World Bank: Share of secondary education expenditures financed by provincial/state government sources (%)                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.SUB.BAS\",\"World Bank: Share of subnational education expenditures, basic (%)                                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.SUB.CAP\",\"World Bank: Share of subnational education expenditures for capital (%)                                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.SUB.CPL\",\"World Bank: Subnational government share of education capital expenditures (%)                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.SUB.PP\",\"World Bank: Share of subnational education expenditures, pre-primary (%)                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.SUB.PRM\",\"World Bank: Share of subnational education expenditures, primary (%)                                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.SUB.RCT\",\"World Bank: Subnational government share of recurrent education expenditures (%)                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.SUB.RCT.SHARE\",\"World Bank: Share of subnational education expenditures for recurrent expenditures (%)                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.SUB.REV\",\"World Bank: Share of total subnational government expenditures for the education sector (%)                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.SUB.SAL\",\"World Bank: Subnational government share of salaries (%)                                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.SUB.SAL.SHARE\",\"World Bank: Share of subnational education expenditures for salaries (%)                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.SUB.SEC\",\"World Bank: Share of subnational education expenditures, secondary (%)                                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.SUB.STAFF\",\"World Bank: Share of total education staff employed at the subnational level (%)                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.SUB.TER\",\"World Bank: Share of subnational education expenditures, tertiary (%)                                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.SUB.VOC\",\"World Bank: Share of subnational education expenditures, technical/vocational (%)                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.TER.CTL\",\"World Bank: Share of tertiary education expenditures financed by central government sources (%)                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.TER.DIST\",\"World Bank: Share of tertiary education expenditures financed by district/municipal government sources (%)                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.TER.PROV\",\"World Bank: Share of tertiary education expenditures financed by provincial/state government sources (%)                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.TOT.CTL\",\"World Bank: Share of total education revenues from central sources (%)                                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.TOT.SUB\",\"World Bank: Share of total education revenues from subnational sources (%)                                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.VOC.CTL\",\"World Bank: Share of vocational education expenditures financed by central government sources (%)                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.VOC.DIST\",\"World Bank: Share of vocational education expenditures financed by district/municipal government sources (%)                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SOR.VOC.PROV\",\"World Bank: Share of vocational education expenditures financed by provincial/state government sources (%)                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SP.ITL.SHARE\",\"World Bank: Share of education expenditures from international sources for special education (%)                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SP.SAL\",\"World Bank: Average annual salary for special education teachers (in USD or local currency)                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SP.SOR.GOV\",\"World Bank: Share of special education expenditures from government sources (%)                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SP.SOR.ITL\",\"World Bank: Share of special education expenditures from international sources (%)                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.ADMIN\",\"World Bank: Share of senior secondary expenditures for administration (%)                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.CPL\",\"World Bank: Capital share of senior secondary expenditures (%)                                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.CPL.TOT\",\"World Bank: Share of total capital education expenditure (%), senior secondary                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.EFF.REP\",\"World Bank: Repetition/Drop-out Inefficiency Cost, senior secondary                                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.EFF.REP.YEAR\",\"World Bank: Repetition/Dropout Inefficiency Annual Resource Input Ratio, senior secondary                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.GS.RCT\",\"World Bank: Share of senior secondary recurrent expenditures for goods and services (%)                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.ITL.SHARE\",\"World Bank: Share of education expenditures from international sources for senior secondary education (%)                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.PCR\",\"World Bank: Pupil/Classroom Ratio, senior secondary                                                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.PPC\",\"World Bank: Pupils/Class, senior secondary                                                                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.PS.GDP\",\"World Bank: Public education expenditure per student (% of GDP per capita), senior secondary                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.PS.NONSAL\",\"World Bank: Per student non-salary spending, senior secondary (in USD or local currency)                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.PS.PRM\",\"World Bank: Ratio of expenditures per student, senior secondary to primary                                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.PS.RCT\",\"World Bank: Recurrent expenditures per senior secondary student (USD or local currency)                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.PS.USD\",\"World Bank: Expenditures per student per year (in USD), senior secondary                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.PSTF\",\"World Bank: Pupil/Total Staff Ratio, senior secondary                                                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.PTR\",\"World Bank: Pupil/Teacher Ratio, senior secondary                                                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.QLT.Q1\",\"World Bank: Share of senior secondary education expenditures for Quintile 1 (poorest) (%)                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.QLT.Q2\",\"World Bank: Share of senior secondary education expenditures for Quintile 2 (%)                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.QLT.Q3\",\"World Bank: Share of senior secondary education expenditures for Quintile 3 (%)                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.QLT.Q4\",\"World Bank: Share of senior secondary education expenditures for Quintile 4 (%)                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.QLT.Q5\",\"World Bank: Share of senior secondary education expenditures for Quintile 5 (richest) (%)                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.QTL.P40\",\"World Bank: Share of education expenditures for the poorest 40% of students (%), Senior Secondary                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.QTL.R40\",\"World Bank: Share of education expenditures for the richest 40% of students (%), Senior Secondary                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.RCT\",\"World Bank: Recurrent share of senior secondary expenditures (%)                                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.RCT.TOT\",\"World Bank: Share of total recurrent education expenditure (%), senior secondary                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.SAL\",\"World Bank: Salaries' share of senior secondary expenditures (%)                                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.SAL.GDP\",\"World Bank: Ratio of Teacher Salaries to per capita GDP, senior secondary                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.SAL.RCT\",\"World Bank: Share of recurrent education expenditures for senior secondary salaries (%)                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.SAL.SHARE.RCT\",\"World Bank: Salaries' share of senior secondary recurrent expenditures (%)                                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.SAL.TOT\",\"World Bank: Share of total education expenditures for senior secondary salaries (%)                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.SAL.USD\",\"World Bank: Average Annual Teacher Salary in USD, senior secondary                                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.SOR.GOV\",\"World Bank: Share of senior education expenditures from government sources (%)                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.TCH.HRS\",\"World Bank: Average annual teaching load, senior secondary (hours of instruction per year)                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.TEACH.SHARE\",\"World Bank: Share of teachers for senior secondary education (%)                                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.TNR\",\"World Bank: Teaching/Non-Teaching Staff Ratio, senior secondary                                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.TOT\",\"World Bank: Share of total education expenditure for senior secondary education (%)                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.TOTEXP\",\"World Bank: Total expenditures on senior secondary education (USD or local currency)                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.TRANSFER.PS\",\"World Bank: Per student transfer by central to subnational government, senior secondary education (USD or local currency)                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SR.TRANSFER.RCT\",\"World Bank: Share of senior secondary recurrent expenditures for transfers (%)                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SUB.DIST.CAP\",\"World Bank: Share of district/municipal education expenditures for capital (%)                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SUB.DIST.RCT\",\"World Bank: Share of district/municipal education expenditures for recurrent (%)                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SUB.DIST.SAL\",\"World Bank: Share of district/municipal education expenditures for salaries (%)                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SUB.PROV.CAP\",\"World Bank: Share of provincial/state education expenditures for capital (%)                                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SUB.PROV.RCT\",\"World Bank: Share of provincial/state education expenditures for recurrent expenditures (%)                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.SUB.PROV.SAL\",\"World Bank: Share of provincial/state education expenditures for salaries (%)                                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TEACH.RCT.PS\",\"World Bank: Recurrent expenditures per teacher education student (USD or local currency)                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TEACH.SAL.PS\",\"World Bank: Salary expenditures per teacher education student (USD or local currency)                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.ADMIN\",\"World Bank: Share of tertiary expenditures for administration (%)                                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.CPL\",\"World Bank: Capital share of tertiary expenditures (%)                                                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.CPL.TOT\",\"World Bank: Share of total capital education expenditure (%), tertiary                                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.EFF.REP\",\"World Bank: Repetition/Drop-out Inefficiency Cost, tertiary                                                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.EFF.REP.YEAR\",\"World Bank: Repetition/Dropout Inefficiency Annual Resource Input Ratio, tertiary                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.EXE.CPL\",\"World Bank: Capital education budget execution rate (%), tertiary                                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.EXE.RCT\",\"World Bank: Recurrent education budget execution rate (%), tertiary                                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.EXE.SAL\",\"World Bank: Salary execution rate (%), tertiary                                                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.EXE.TOT\",\"World Bank: Education budget execution rate, tertiary (%)                                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.FIN.PS\",\"World Bank: Average scholarship per student, tertiary (in USD or local currency)                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.FIN.STUDENTS\",\"World Bank: Share of tertiary students who receive financial assistance/loans (%)                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.GDP\",\"World Bank: Share of GDP for education expenditures on tertiary education (%)                                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.GS.RCT\",\"World Bank: Share of tertiary recurrent expenditures for goods and services (%)                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.HH.BOARD\",\"World Bank: Household spending per student on room/board for tertiary education (USD or local currency)                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.HH.TEXT\",\"World Bank: Household spending per student on textbooks for tertiary education (USD or local currency)                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.HH.TRNSPT\",\"World Bank: Household spending per student on transportation for tertiary education (USD or local currency)                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.HH.UNIF\",\"World Bank: Household spending per student on uniforms/clothing for tertiary education (USD or local currency)                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.ITL.SHARE\",\"World Bank: Share of education expenditures from international sources for tertiary education (%)                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.PCR\",\"World Bank: Pupil/Classroom Ratio, tertiary                                                                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.PS.GDP\",\"World Bank: Public education expenditure per student (% of GDP per capita), tertiary                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.PS.NONSAL\",\"World Bank: Per student non-salary spending, tertiary education (in USD or local currency)                                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.PS.PRM\",\"World Bank: Ratio of expenditures per student, tertiary to primary                                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.PS.RCT.RATIO\",\"World Bank: Ratio of tertiary per capita/per student recurrent expenditures relative to primary education                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.PS.TEXT\",\"World Bank: Per student expenditure on teaching/learning materials, tertiary (in USD or local currency)                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.PS.USD\",\"World Bank: Expenditures per student per year (in USD), tertiary                                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.PSTF\",\"World Bank: Pupil/Total Staff Ratio, tertiary                                                                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.PTR\",\"World Bank: Pupil/Teacher Ratio, tertiary                                                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.PVT\",\"World Bank: Share of tertiary institutions, privately managed (%)                                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.PVT.FEE\",\"World Bank: Private institution fees, tertiary (in USD or local currency)                                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.QTL.NP\",\"World Bank: Share of total tertiary education expenditures for non-poor students (%)                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.QTL.P40\",\"World Bank: Share of education expenditures for the poorest 40% of students (%), Tertiary                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.QTL.POOR\",\"World Bank: Share of total tertiary education expenditures for poor students (%)                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.QTL.Q1\",\"World Bank: Share of tertiary education expenditures for Quintile 1 (poorest) (%)                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.QTL.Q2\",\"World Bank: Share of tertiary education expenditures for Quintile 2 (%)                                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.QTL.Q3\",\"World Bank: Share of tertiary education expenditures for Quintile 3 (%)                                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.QTL.Q4\",\"World Bank: Share of tertiary education expenditures for Quintile 4 (%)                                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.QTL.Q5\",\"World Bank: Share of tertiary education expenditures for Quintile 5 (richest) (%)                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.QTL.R40\",\"World Bank: Share of education expenditures for the richest 40% of students (%), Tertiary                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.RCT\",\"World Bank: Recurrent share of tertiary expenditures (%)                                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.RCT.GDP\",\"World Bank: Tertiary recurrent expenditures as a share of GDP (%)                                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.RCT.PS\",\"World Bank: Recurrent expenditures per tertiary student (USD or local currency)                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.RCT.TOT\",\"World Bank: Share of total recurrent education expenditure (%), tertiary                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.SAL\",\"World Bank: Salaries' share of tertiary education expenditures (%)                                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.SAL.GDP\",\"World Bank: Ratio of Teacher Salaries to per capita GDP, tertiary                                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.SAL.PS\",\"World Bank: Salary expenditures per tertiary student (USD or local currency)                                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.SAL.RCT\",\"World Bank: Share of recurrent education expenditures for tertiary salaries (%)                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.SAL.SHARE\",\"World Bank: Share of total salary expenditures for tertiary (%)                                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.SAL.SHARE.RCT\",\"World Bank: Salaries' share of tertiary recurrent expenditures (%)                                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.SAL.TOT\",\"World Bank: Share of total education expenditures for tertiary salaries (%)                                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.SAL.USD\",\"World Bank: Average Annual Teacher Salary (in USD or local currency), tertiary                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.SHARE.PRIV\",\"World Bank: Share of tertiary education expenditures for private institutions (%)                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.TEACH.SHARE\",\"World Bank: Share of teachers for tertiary education (%)                                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.TEXT.RCT\",\"World Bank: Share of tertiary recurrent expenditures for teaching/learning materials (%)                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.TEXT.TOT\",\"World Bank: Share of tertiary expenditures for teaching/learning materials (%)                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.TNR\",\"World Bank: Teaching/Non-Teaching Staff Ratio, tertiary                                                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.TOT\",\"World Bank: Share of total education expenditure for tertiary education (%)                                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.TOT.CPL\",\"World Bank: Capital share of total education expenditure (%), tertiary                                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.TOTEXP\",\"World Bank: Total expenditures on tertiary education (USD or local currency)                                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TER.TRANSFER.RCT\",\"World Bank: Share of tertiary recurrent expenditures for transfers (%)                                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TEXT.TOT\",\"World Bank: Textbooks, Total Expenditures in USD or local currency                                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TOT.EFF.TOT\",\"World Bank: Total Cost of Inefficiencies (USD or local currency)                                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TT.CAP.SHARE\",\"World Bank: Share of total capital education expenditures (%), teacher training                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TT.EXE.CAP\",\"World Bank: Capital budget execution rate, Teacher Training (%)                                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TT.ITL.SHARE\",\"World Bank: Share of education expenditures from international sources for teacher training education (%)                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TT.OA.UNQUAL\",\"World Bank: Share of teachers who are uncertified (%)                                                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TT.PRM.UNQUAL\",\"World Bank: Share of primary teachers who are uncertified (%)                                                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TT.PS.GDP\",\"World Bank: Public education expenditure per student (% of GDP per capita), teacher training                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TT.PS.USD\",\"World Bank: Expenditures per student per year in USD, teacher training                                                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TT.SEC.UNQUAL\",\"World Bank: Share of secondary teachers who are uncertified (%)                                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TT.SOR.GOV\",\"World Bank: Share of teacher education expenditures from government sources (%)                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.TT.SOR.ITL\",\"World Bank: Share of teacher education expenditures from international sources (%)                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.URB.HH.SHARE\",\"World Bank: Share of total household expenditures for education, urban areas (%)                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.URB.HH.TOTSHARE\",\"World Bank: Share of total household education expenditures from urban areas (%)                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.ADMIN\",\"World Bank: Share of technical/vocational expenditures for administration (%)                                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.CPL\",\"World Bank: Capital share of technical/vocational expenditures (%)                                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.CPL.TOT\",\"World Bank: Share of total capital education expenditure (%), technical/vocational                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.EXE.CPL\",\"World Bank: Capital education budget execution rate (%), technical/vocational                                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.EXE.RCT\",\"World Bank: Recurrent education budget execution rate (%), technical/vocational                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.EXE.TOT\",\"World Bank: Education budget execution rate, technical/vocational (%)                                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.FIN.RCT.PCT\",\"World Bank: Share of recurrent technical/vocational expenditures for scholarships (%)                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.FIN.STUDENTS\",\"World Bank: Share of Technical/Vocational students who received scholarships (%)                                                                                                                                                                                      \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.GDP\",\"World Bank: Share of GDP for education expenditures on technical/vocational education (%)                                                                                                                                                                             \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.GS.RCT\",\"World Bank: Share of technical/vocational education recurrent expenditures for goods and services (%)                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.HH.PS\",\"World Bank: Household spending per student on technical/vocational education (in USD or local currency)                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.PCR\",\"World Bank: Pupil/Classroom Ratio, technical/vocational education                                                                                                                                                                                                     \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.PPC\",\"World Bank: Pupils/Class, technical/vocational education                                                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.PS.GDP\",\"World Bank: Public education expenditure per student (% of GDP per capita), technical/vocational education                                                                                                                                                            \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.PS.NONSAL\",\"World Bank: Per student non-salary spending, technical/vocational education (in USD or local currency)                                                                                                                                                                \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.PS.PRM\",\"World Bank: Ratio of expenditures per student, technical/vocational to primary                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.PS.USD\",\"World Bank: Expenditures per student per year (in USD/local currency), technical/vocational education                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.PSTF\",\"World Bank: Pupil/Total Staff Ratio, technical/vocational education                                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.PTR\",\"World Bank: Pupil/Teacher Ratio, technical/vocational education                                                                                                                                                                                                       \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.PVT.FEE\",\"World Bank: Private institution fees, technical/vocational (in USD or local currency)                                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.QTL.P40\",\"World Bank: Share of education expenditures for the poorest 40% of students (%), Technical/Vocational                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.QTL.Q1\",\"World Bank: Share of technical/vocational education expenditures for Quintile 1 (poorest) (%)                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.QTL.Q2\",\"World Bank: Share of technical/vocational education expenditures for Quintile 2 (%)                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.QTL.Q3\",\"World Bank: Share of technical/vocational education expenditures for Quintile 3 (%)                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.QTL.Q4\",\"World Bank: Share of technical/vocational education expenditures for Quintile 4 (%)                                                                                                                                                                                   \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.QTL.Q5\",\"World Bank: Share of technical/vocational education expenditures for Quintile 5 (richest) (%)                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.QTL.R40\",\"World Bank: Share of education expenditures for the richest 40% of students (%), Technical/Vocational                                                                                                                                                                 \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.RCT\",\"World Bank: Recurrent share of technical/vocational expenditures (%)                                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.RCT.PS\",\"World Bank: Recurrent expenditures per technical/vocational student (USD or local currency)                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.RCT.TOT\",\"World Bank: Share of total recurrent education expenditure (%), technical/vocational                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.SAL\",\"World Bank: Salaries' share of technical/vocational education expenditures (%)                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.SAL.RCT\",\"World Bank: Share of recurrent education expenditures for technical/vocational salaries (%)                                                                                                                                                                           \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.SAL.SHARE.RCT\",\"World Bank: Salaries' share of technical/vocational recurrent expenditures (%)                                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.SAL.SHARE.TOT\",\"World Bank: Share of total expenditures for technical/vocational salaries (%)                                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.SAL.USDLOC\",\"World Bank: Annual Teacher Salaries, technical/vocational education (in USD or local currency)                                                                                                                                                                        \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.TEACH.SHARE\",\"World Bank: Share of teachers for technical/vocational education (%)                                                                                                                                                                                                  \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.TNR\",\"World Bank: Teaching/Non-Teaching Staff Ratio, technical/vocational education                                                                                                                                                                                         \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.TOT\",\"World Bank: Share of total education expenditure for technical/vocational education (%)                                                                                                                                                                               \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.TOT.CPL\",\"World Bank: Capital share of total education expenditure (%), technical/vocational                                                                                                                                                                                    \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.TOTEXP\",\"World Bank: Total expenditures on technical vocational education (USD or local currency)                                                                                                                                                                              \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"PER.VOC.TRANSFER.RCT\",\"World Bank: Share of technical/vocational education recurrent expenditures for transfers (%)                                                                                                                                                                          \",\"Users should not compare this indicator data across countries because there is no standard method of calculation for the indicator in the database. For more information of the indicator data, visit EdStats website at http://datatopics.worldbank.org/education/edstatsHome.aspx, and refer to the document for the selected country. \",\"Education Statistics\",\"World Bank Public Expenditure Review Documents\"\n\"per_allsp.adq_ep_preT_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) -All Social Protection and Labor  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.adq_ep_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) -All Social Protection and Labor \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.adq_pop_preT_tot\",\"Adequacy of benefits (%) -All Social Protection and Labor (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.adq_pop_rur\",\"Adequacy of benefits (%) -All Social Protection and Labor -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.adq_pop_tot\",\"Adequacy of social protection and labor programs (% of total welfare of beneficiary households)\",\"Adequacy of social protection and labor programs (SPL) is measured by the total transfer amount received by the population participating in social insurance, social safety net, and unemployment benefits and active labor market programs as a share of their total welfare. Welfare is defined as the total income or total expenditure of beneficiary households. Estimates include both direct and indirect beneficiaries.\",\"World Development Indicators\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.adq_pop_urb\",\"Adequacy of benefits (%) -All Social Protection and Labor -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.adq_q1_preT_tot\",\"Adequacy of benefits in poorest quintile (%) -All Social Protection and Labor (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.adq_q1_rur\",\"Adequacy of benefits in poorest quintile (%) -All Social Protection and Labor -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.adq_q1_tot\",\"Adequacy of benefits in poorest quintile (%) -All Social Protection and Labor \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.adq_q1_urb\",\"Adequacy of benefits in poorest quintile (%) -All Social Protection and Labor -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.adq_q2_preT_tot\",\"Adequacy of benefits in 2nd quintile (%) -All Social Protection and Labor (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.adq_q2_rur\",\"Adequacy of benefits in 2nd quintile (%) -All Social Protection and Labor -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.adq_q2_tot\",\"Adequacy of benefits in 2nd quintile (%) -All Social Protection and Labor \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.adq_q2_urb\",\"Adequacy of benefits in 2nd quintile (%) -All Social Protection and Labor -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.adq_q3_preT_tot\",\"Adequacy of benefits in 3rd quintile (%) -All Social Protection and Labor (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.adq_q3_rur\",\"Adequacy of benefits in 3rd quintile (%) -All Social Protection and Labor -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.adq_q3_tot\",\"Adequacy of benefits in 3rd quintile (%) -All Social Protection and Labor \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.adq_q3_urb\",\"Adequacy of benefits in 3rd quintile (%) -All Social Protection and Labor -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.adq_q4_preT_tot\",\"Adequacy of benefits in 4th quintile (%) -All Social Protection and Labor (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.adq_q4_rur\",\"Adequacy of benefits in 4th quintile (%) -All Social Protection and Labor -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.adq_q4_tot\",\"Adequacy of benefits in 4th quintile (%) -All Social Protection and Labor \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.adq_q4_urb\",\"Adequacy of benefits in 4th quintile (%) -All Social Protection and Labor -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.adq_q5_preT_tot\",\"Adequacy of benefits in richest quintile (%) -All Social Protection and Labor (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.adq_q5_rur\",\"Adequacy of benefits in richest quintile (%) -All Social Protection and Labor -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.adq_q5_tot\",\"Adequacy of benefits in richest quintile (%) -All Social Protection and Labor \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.adq_q5_urb\",\"Adequacy of benefits in richest quintile (%) -All Social Protection and Labor -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.avt_ep_preT_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) -All Social Protection and Labor  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.avt_ep_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) -All Social Protection and Labor \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.avt_pop_preT_tot\",\"Average per capita transfer -All Social Protection and Labor (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.avt_pop_rur\",\"Average per capita transfer -All Social Protection and Labor -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.avt_pop_tot\",\"Average per capita transfer -All Social Protection and Labor \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.avt_pop_urb\",\"Average per capita transfer -All Social Protection and Labor -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.avt_q1_preT_tot\",\"Average per capita transfer held by poorest quintile -All Social Protection and Labor (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.avt_q1_rur\",\"Average per capita transfer held by poorest quintile -All Social Protection and Labor -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.avt_q1_tot\",\"Average per capita transfer held by poorest quintile -All Social Protection and Labor \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.avt_q1_urb\",\"Average per capita transfer held by poorest quintile -All Social Protection and Labor -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.avt_q2_preT_tot\",\"Average per capita transfer held by 2nd quintile -All Social Protection and Labor (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.avt_q2_rur\",\"Average per capita transfer held by 2nd quintile -All Social Protection and Labor -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.avt_q2_tot\",\"Average per capita transfer held by 2nd quintile -All Social Protection and Labor \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.avt_q2_urb\",\"Average per capita transfer held by 2nd quintile -All Social Protection and Labor -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.avt_q3_preT_tot\",\"Average per capita transfer held by 3rd quintile -All Social Protection and Labor (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.avt_q3_rur\",\"Average per capita transfer held by 3rd quintile -All Social Protection and Labor -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.avt_q3_tot\",\"Average per capita transfer held by 3rd quintile -All Social Protection and Labor \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.avt_q3_urb\",\"Average per capita transfer held by 3rd quintile -All Social Protection and Labor -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.avt_q4_preT_tot\",\"Average per capita transfer held by 4th quintile -All Social Protection and Labor (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.avt_q4_rur\",\"Average per capita transfer held by 4th quintile -All Social Protection and Labor -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.avt_q4_tot\",\"Average per capita transfer held by 4th quintile -All Social Protection and Labor \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.avt_q4_urb\",\"Average per capita transfer held by 4th quintile -All Social Protection and Labor -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.avt_q5_preT_tot\",\"Average per capita transfer held by richest quintile -All Social Protection and Labor (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.avt_q5_rur\",\"Average per capita transfer held by richest quintile -All Social Protection and Labor -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.avt_q5_tot\",\"Average per capita transfer held by richest quintile -All Social Protection and Labor \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.avt_q5_urb\",\"Average per capita transfer held by richest quintile -All Social Protection and Labor -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.ben_ep_preT_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) -All Social Protection and Labor  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.ben_ep_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) -All Social Protection and Labor \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.ben_q1_preT_tot\",\"Benefits incidence in poorest quintile (%) -All Social Protection and Labor (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.ben_q1_rur\",\"Benefits incidence in poorest quintile (%) -All Social Protection and Labor -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.ben_q1_tot\",\"Benefits incidence in poorest quintile (%) -All Social Protection and Labor \",\"NULL\",\"World Development Indicators\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.ben_q1_urb\",\"Benefits incidence in poorest quintile (%) -All Social Protection and Labor -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.ben_q2_preT_tot\",\"Benefits incidence in 2nd quintile (%) -All Social Protection and Labor (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.ben_q2_rur\",\"Benefits incidence in 2nd quintile (%) -All Social Protection and Labor -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.ben_q2_tot\",\"Benefits incidence in 2nd quintile (%) -All Social Protection and Labor \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.ben_q2_urb\",\"Benefits incidence in 2nd quintile (%) -All Social Protection and Labor -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.ben_q3_preT_tot\",\"Benefits incidence in 3rd quintile (%) -All Social Protection and Labor (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.ben_q3_rur\",\"Benefits incidence in 3rd quintile (%) -All Social Protection and Labor -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.ben_q3_tot\",\"Benefits incidence in 3rd quintile (%) -All Social Protection and Labor \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.ben_q3_urb\",\"Benefits incidence in 3rd quintile (%) -All Social Protection and Labor -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.ben_q4_preT_tot\",\"Benefits incidence in 4th quintile (%) -All Social Protection and Labor (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.ben_q4_rur\",\"Benefits incidence in 4th quintile (%) -All Social Protection and Labor -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.ben_q4_tot\",\"Benefits incidence in 4th quintile (%) -All Social Protection and Labor \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.ben_q4_urb\",\"Benefits incidence in 4th quintile (%) -All Social Protection and Labor -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.ben_q5_preT_tot\",\"Benefits incidence in richest quintile (%) -All Social Protection and Labor (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.ben_q5_rur\",\"Benefits incidence in richest quintile (%) -All Social Protection and Labor -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.ben_q5_tot\",\"Benefits incidence in richest quintile (%) -All Social Protection and Labor \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.ben_q5_urb\",\"Benefits incidence in richest quintile (%) -All Social Protection and Labor -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.bry_ep_preT_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) -All Social Protection and Labor  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.bry_ep_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) -All Social Protection and Labor \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.bry_q1_preT_tot\",\"Beneficiary incidence in poorest quintile (%) -All Social Protection and Labor (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.bry_q1_rur\",\"Beneficiary incidence in poorest quintile (%) -All Social Protection and Labor -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.bry_q1_tot\",\"Beneficiary incidence in poorest quintile (%) -All Social Protection and Labor \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.bry_q1_urb\",\"Beneficiary incidence in poorest quintile (%) -All Social Protection and Labor -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.bry_q2_preT_tot\",\"Beneficiary incidence in 2nd quintile (%) -All Social Protection and Labor (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.bry_q2_rur\",\"Beneficiary incidence in 2nd quintile (%) -All Social Protection and Labor -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.bry_q2_tot\",\"Beneficiary incidence in 2nd quintile (%) -All Social Protection and Labor \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.bry_q2_urb\",\"Beneficiary incidence in 2nd quintile (%) -All Social Protection and Labor -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.bry_q3_preT_tot\",\"Beneficiary incidence in 3rd quintile (%) -All Social Protection and Labor (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.bry_q3_rur\",\"Beneficiary incidence in 3rd quintile (%) -All Social Protection and Labor -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.bry_q3_tot\",\"Beneficiary incidence in 3rd quintile (%) -All Social Protection and Labor \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.bry_q3_urb\",\"Beneficiary incidence in 3rd quintile (%) -All Social Protection and Labor -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.bry_q4_preT_tot\",\"Beneficiary incidence in 4th quintile (%) -All Social Protection and Labor (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.bry_q4_rur\",\"Beneficiary incidence in 4th quintile (%) -All Social Protection and Labor -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.bry_q4_tot\",\"Beneficiary incidence in 4th quintile (%) -All Social Protection and Labor \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.bry_q4_urb\",\"Beneficiary incidence in 4th quintile (%) -All Social Protection and Labor -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.bry_q5_preT_tot\",\"Beneficiary incidence in richest quintile (%) -All Social Protection and Labor (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.bry_q5_rur\",\"Beneficiary incidence in richest quintile (%) -All Social Protection and Labor -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.bry_q5_tot\",\"Beneficiary incidence in richest quintile (%) -All Social Protection and Labor \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.bry_q5_urb\",\"Beneficiary incidence in richest quintile (%) -All Social Protection and Labor -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.cba_ep_preT_tot\",\"Benefit-cost ratio - All Social Protection and Labor -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.cba_ep_tot\",\"Benefit-cost ratio - All Social Protection and Labor -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.cba_q1_preT_tot\",\"Benefit-cost ratio - All Social Protection and Labor -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.cba_q1_rur\",\"Benefit-cost ratio - All Social Protection and Labor -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.cba_q1_tot\",\"Benefit-cost ratio - All Social Protection and Labor -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.cba_q1_urb\",\"Benefit-cost ratio - All Social Protection and Labor - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.cov_ep_preT_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) -All Social Protection and Labor  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.cov_ep_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) -All Social Protection and Labor \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.cov_pop_preT_tot\",\"Coverage (%) -All Social Protection and Labor (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.cov_pop_rur\",\"Coverage (%) -All Social Protection and Labor -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.cov_pop_tot\",\"Coverage (%) -All Social Protection and Labor \",\"NULL\",\"World Development Indicators\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.cov_pop_urb\",\"Coverage (%) -All Social Protection and Labor -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.cov_q1_preT_tot\",\"Coverage in poorest quintile (%) -All Social Protection and Labor (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.cov_q1_rur\",\"Coverage in poorest quintile (%) -All Social Protection and Labor -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.cov_q1_tot\",\"Coverage in poorest quintile (%) -All Social Protection and Labor \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.cov_q1_urb\",\"Coverage in poorest quintile (%) -All Social Protection and Labor -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.cov_q2_preT_tot\",\"Coverage in 2nd quintile (%) -All Social Protection and Labor (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.cov_q2_rur\",\"Coverage in 2nd quintile (%) -All Social Protection and Labor -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.cov_q2_tot\",\"Coverage in 2nd quintile (%) -All Social Protection and Labor \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.cov_q2_urb\",\"Coverage in 2nd quintile (%) -All Social Protection and Labor -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.cov_q3_preT_tot\",\"Coverage in 3rd quintile (%) -All Social Protection and Labor (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.cov_q3_rur\",\"Coverage in 3rd quintile (%) -All Social Protection and Labor -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.cov_q3_tot\",\"Coverage in 3rd quintile (%) -All Social Protection and Labor \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.cov_q3_urb\",\"Coverage in 3rd quintile (%) -All Social Protection and Labor -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.cov_q4_preT_tot\",\"Coverage in 4th quintile (%) -All Social Protection and Labor (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.cov_q4_rur\",\"Coverage in 4th quintile (%) -All Social Protection and Labor -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.cov_q4_tot\",\"Coverage in 4th quintile (%) -All Social Protection and Labor \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.cov_q4_urb\",\"Coverage in 4th quintile (%) -All Social Protection and Labor -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.cov_q5_preT_tot\",\"Coverage in richest quintile (%) -All Social Protection and Labor (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.cov_q5_rur\",\"Coverage in richest quintile (%) -All Social Protection and Labor -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.cov_q5_tot\",\"Coverage in richest quintile (%) -All Social Protection and Labor \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp.cov_q5_urb\",\"Coverage in richest quintile (%) -All Social Protection and Labor -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp_gini_ep_preT_tot\",\"Gini inequality reduction (%) - All Social Protection and Labor -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp_gini_ep_tot\",\"Gini inequality reduction (%) - All Social Protection and Labor -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp_gini_preT_tot\",\"Gini inequality reduction (%) - All Social Protection and Labor -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp_gini_rur\",\"Gini inequality reduction (%) - All Social Protection and Labor -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp_gini_tot\",\"Gini inequality reduction (%) - All Social Protection and Labor -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp_gini_urb\",\"Gini inequality reduction (%) - All Social Protection and Labor - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp_p0_ep_preT_tot\",\"Poverty Headcount reduction (%) - All Social Protection and Labor -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp_p0_ep_tot\",\"Poverty Headcount reduction (%) - All Social Protection and Labor -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp_p0_preT_tot\",\"Poverty Headcount reduction (%) - All Social Protection and Labor -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp_p0_rur\",\"Poverty Headcount reduction (%) - All Social Protection and Labor -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp_p0_tot\",\"Poverty Headcount reduction (%) - All Social Protection and Labor -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp_p0_urb\",\"Poverty Headcount reduction (%) - All Social Protection and Labor - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp_p1_ep_preT_tot\",\"Poverty Gap reduction (%) - All Social Protection and Labor -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp_p1_ep_tot\",\"Poverty Gap reduction (%) - All Social Protection and Labor -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp_p1_preT_tot\",\"Poverty Gap reduction (%) - All Social Protection and Labor -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp_p1_rur\",\"Poverty Gap reduction (%) - All Social Protection and Labor -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp_p1_tot\",\"Poverty Gap reduction (%) - All Social Protection and Labor -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_allsp_p1_urb\",\"Poverty Gap reduction (%) - All Social Protection and Labor - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ac.adq_ep_preT_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - Active Labor Market  (preT)\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.adq_ep_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - Active Labor Market\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.adq_pop_preT_tot\",\"Adequacy of benefits (%) - Active Labor Market (preT)\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.adq_pop_rur\",\"Adequacy of benefits (%) - Active Labor Market -rural\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.adq_pop_tot\",\"Adequacy of benefits (%) - Active Labor Market\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.adq_pop_urb\",\"Adequacy of benefits (%) - Active Labor Market -urban\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.adq_q1_preT_tot\",\"Adequacy of benefits in poorest quintile (%) - Active Labor Market (preT)\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.adq_q1_rur\",\"Adequacy of benefits in poorest quintile (%) - Active Labor Market -rural\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.adq_q1_tot\",\"Adequacy of benefits in poorest quintile (%) - Active Labor Market\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.adq_q1_urb\",\"Adequacy of benefits in poorest quintile (%) - Active Labor Market -urban\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.adq_q2_preT_tot\",\"Adequacy of benefits in 2nd quintile (%) - Active Labor Market (preT)\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.adq_q2_rur\",\"Adequacy of benefits in 2nd quintile (%) - Active Labor Market -rural\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.adq_q2_tot\",\"Adequacy of benefits in 2nd quintile (%) - Active Labor Market\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.adq_q2_urb\",\"Adequacy of benefits in 2nd quintile (%) - Active Labor Market -urban\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.adq_q3_preT_tot\",\"Adequacy of benefits in 3rd quintile (%) - Active Labor Market (preT)\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.adq_q3_rur\",\"Adequacy of benefits in 3rd quintile (%) - Active Labor Market -rural\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.adq_q3_tot\",\"Adequacy of benefits in 3rd quintile (%) - Active Labor Market\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.adq_q3_urb\",\"Adequacy of benefits in 3rd quintile (%) - Active Labor Market -urban\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.adq_q4_preT_tot\",\"Adequacy of benefits in 4th quintile (%) - Active Labor Market (preT)\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.adq_q4_rur\",\"Adequacy of benefits in 4th quintile (%) - Active Labor Market -rural\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.adq_q4_tot\",\"Adequacy of benefits in 4th quintile (%) - Active Labor Market\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.adq_q4_urb\",\"Adequacy of benefits in 4th quintile (%) - Active Labor Market -urban\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.adq_q5_preT_tot\",\"Adequacy of benefits in richest quintile (%) - Active Labor Market (preT)\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.adq_q5_rur\",\"Adequacy of benefits in richest quintile (%) - Active Labor Market -rural\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.adq_q5_tot\",\"Adequacy of benefits in richest quintile (%) - Active Labor Market\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.adq_q5_urb\",\"Adequacy of benefits in richest quintile (%) - Active Labor Market -urban\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.avt_ep_preT_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - Active Labor Market  (preT)\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.avt_ep_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - Active Labor Market\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.avt_pop_preT_tot\",\"Average per capita transfer - Active Labor Market (preT)\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.avt_pop_rur\",\"Average per capita transfer - Active Labor Market -rural\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.avt_pop_tot\",\"Average per capita transfer - Active Labor Market\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.avt_pop_urb\",\"Average per capita transfer - Active Labor Market -urban\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.avt_q1_preT_tot\",\"Average per capita transfer held by poorest quintile - Active Labor Market (preT)\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.avt_q1_rur\",\"Average per capita transfer held by poorest quintile - Active Labor Market -rural\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.avt_q1_tot\",\"Average per capita transfer held by poorest quintile - Active Labor Market\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.avt_q1_urb\",\"Average per capita transfer held by poorest quintile - Active Labor Market -urban\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.avt_q2_preT_tot\",\"Average per capita transfer held by 2nd quintile - Active Labor Market (preT)\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.avt_q2_rur\",\"Average per capita transfer held by 2nd quintile - Active Labor Market -rural\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.avt_q2_tot\",\"Average per capita transfer held by 2nd quintile - Active Labor Market\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.avt_q2_urb\",\"Average per capita transfer held by 2nd quintile - Active Labor Market -urban\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.avt_q3_preT_tot\",\"Average per capita transfer held by 3rd quintile - Active Labor Market (preT)\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.avt_q3_rur\",\"Average per capita transfer held by 3rd quintile - Active Labor Market -rural\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.avt_q3_tot\",\"Average per capita transfer held by 3rd quintile - Active Labor Market\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.avt_q3_urb\",\"Average per capita transfer held by 3rd quintile - Active Labor Market -urban\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.avt_q4_preT_tot\",\"Average per capita transfer held by 4th quintile - Active Labor Market (preT)\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.avt_q4_rur\",\"Average per capita transfer held by 4th quintile - Active Labor Market -rural\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.avt_q4_tot\",\"Average per capita transfer held by 4th quintile - Active Labor Market\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.avt_q4_urb\",\"Average per capita transfer held by 4th quintile - Active Labor Market -urban\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.avt_q5_preT_tot\",\"Average per capita transfer held by richest quintile - Active Labor Market (preT)\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.avt_q5_rur\",\"Average per capita transfer held by richest quintile - Active Labor Market -rural\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.avt_q5_tot\",\"Average per capita transfer held by richest quintile - Active Labor Market\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.avt_q5_urb\",\"Average per capita transfer held by richest quintile - Active Labor Market -urban\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.ben_ep_preT_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - Active Labor Market  (preT)\",\"Percentage of benefits going to the extreme poor (those below $125 a day)  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.ben_ep_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - Active Labor Market\",\"Percentage of benefits going to the extreme poor (those below $125 a day)  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.ben_q1_preT_tot\",\"Benefits incidence in poorest quintile (%) - Active Labor Market (preT)\",\"Percentage of benefits going to the poorest quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.ben_q1_rur\",\"Benefits incidence in poorest quintile (%) - Active Labor Market -rural\",\"Percentage of benefits going to the poorest quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.ben_q1_tot\",\"Benefits incidence in poorest quintile (%) - Active Labor Market\",\"Percentage of benefits going to the poorest quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.ben_q1_urb\",\"Benefits incidence in poorest quintile (%) - Active Labor Market -urban\",\"Percentage of benefits going to the poorest quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.ben_q2_preT_tot\",\"Benefits incidence in 2nd quintile (%) - Active Labor Market (preT)\",\"Percentage of benefits going to the second quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.ben_q2_rur\",\"Benefits incidence in 2nd quintile (%) - Active Labor Market -rural\",\"Percentage of benefits going to the second quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.ben_q2_tot\",\"Benefits incidence in 2nd quintile (%) - Active Labor Market\",\"Percentage of benefits going to the second quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.ben_q2_urb\",\"Benefits incidence in 2nd quintile (%) - Active Labor Market -urban\",\"Percentage of benefits going to the second quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.ben_q3_preT_tot\",\"Benefits incidence in 3rd quintile (%) - Active Labor Market (preT)\",\"Percentage of benefits going to the third quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.ben_q3_rur\",\"Benefits incidence in 3rd quintile (%) - Active Labor Market -rural\",\"Percentage of benefits going to the third quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.ben_q3_tot\",\"Benefits incidence in 3rd quintile (%) - Active Labor Market\",\"Percentage of benefits going to the third quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.ben_q3_urb\",\"Benefits incidence in 3rd quintile (%) - Active Labor Market -urban\",\"Percentage of benefits going to the third quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.ben_q4_preT_tot\",\"Benefits incidence in 4th quintile (%) - Active Labor Market (preT)\",\"Percentage of benefits going to the fourth quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.ben_q4_rur\",\"Benefits incidence in 4th quintile (%) - Active Labor Market -rural\",\"Percentage of benefits going to the fourth quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.ben_q4_tot\",\"Benefits incidence in 4th quintile (%) - Active Labor Market\",\"Percentage of benefits going to the fourth quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.ben_q4_urb\",\"Benefits incidence in 4th quintile (%) - Active Labor Market -urban\",\"Percentage of benefits going to the fourth quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.ben_q5_preT_tot\",\"Benefits incidence in richest quintile (%) - Active Labor Market (preT)\",\"Percentage of benefits going to the richestquintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.ben_q5_rur\",\"Benefits incidence in richest quintile (%) - Active Labor Market -rural\",\"Percentage of benefits going to the richestquintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.ben_q5_tot\",\"Benefits incidence in richest quintile (%) - Active Labor Market\",\"Percentage of benefits going to the richestquintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.ben_q5_urb\",\"Benefits incidence in richest quintile (%) - Active Labor Market -urban\",\"Percentage of benefits going to the richestquintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.bry_ep_preT_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - Active Labor Market  (preT)\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.bry_ep_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - Active Labor Market\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.bry_q1_preT_tot\",\"Beneficiary incidence in poorest quintile (%) - Active Labor Market (preT)\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.bry_q1_rur\",\"Beneficiary incidence in poorest quintile (%) - Active Labor Market -rural\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.bry_q1_tot\",\"Beneficiary incidence in poorest quintile (%) - Active Labor Market\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.bry_q1_urb\",\"Beneficiary incidence in poorest quintile (%) - Active Labor Market -urban\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.bry_q2_preT_tot\",\"Beneficiary incidence in 2nd quintile (%) - Active Labor Market (preT)\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.bry_q2_rur\",\"Beneficiary incidence in 2nd quintile (%) - Active Labor Market -rural\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.bry_q2_tot\",\"Beneficiary incidence in 2nd quintile (%) - Active Labor Market\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.bry_q2_urb\",\"Beneficiary incidence in 2nd quintile (%) - Active Labor Market -urban\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.bry_q3_preT_tot\",\"Beneficiary incidence in 3rd quintile (%) - Active Labor Market (preT)\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.bry_q3_rur\",\"Beneficiary incidence in 3rd quintile (%) - Active Labor Market -rural\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.bry_q3_tot\",\"Beneficiary incidence in 3rd quintile (%) - Active Labor Market\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.bry_q3_urb\",\"Beneficiary incidence in 3rd quintile (%) - Active Labor Market -urban\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.bry_q4_preT_tot\",\"Beneficiary incidence in 4th quintile (%) - Active Labor Market (preT)\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.bry_q4_rur\",\"Beneficiary incidence in 4th quintile (%) - Active Labor Market -rural\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.bry_q4_tot\",\"Beneficiary incidence in 4th quintile (%) - Active Labor Market\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.bry_q4_urb\",\"Beneficiary incidence in 4th quintile (%) - Active Labor Market -urban\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.bry_q5_preT_tot\",\"Beneficiary incidence in richest quintile (%) - Active Labor Market (preT)\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.bry_q5_rur\",\"Beneficiary incidence in richest quintile (%) - Active Labor Market -rural\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.bry_q5_tot\",\"Beneficiary incidence in richest quintile (%) - Active Labor Market\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.bry_q5_urb\",\"Beneficiary incidence in richest quintile (%) - Active Labor Market -urban\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.cba_ep_preT_tot\",\"Benefit-cost ratio -  Active Labor Market  -extreme poor (<$1.25 a day) (preT)\",\"Poverty gap reduction obtained for each $1 spent in SPL programs (%)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.cba_ep_tot\",\"Benefit-cost ratio -  Active Labor Market  -extreme poor (<$1.25 a day)\",\"Poverty gap reduction obtained for each $1 spent in SPL programs (%)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.cba_q1_preT_tot\",\"Benefit-cost ratio -  Active Labor Market  -poorest quintile (preT)\",\"Poverty gap reduction obtained for each $1 spent in SPL programs (%)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.cba_q1_rur\",\"Benefit-cost ratio -  Active Labor Market  -poorest quintile -rural\",\"Poverty gap reduction obtained for each $1 spent in SPL programs (%)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.cba_q1_tot\",\"Benefit-cost ratio -  Active Labor Market  -poorest quintile\",\"Poverty gap reduction obtained for each $1 spent in SPL programs (%)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.cba_q1_urb\",\"Benefit-cost ratio -  Active Labor Market  - poorest quintile -urban\",\"Poverty gap reduction obtained for each $1 spent in SPL programs (%)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.cov_ep_preT_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - Active Labor Market  (preT)\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.cov_ep_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - Active Labor Market\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.cov_pop_preT_tot\",\"Coverage (%) - Active Labor Market (preT)\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.cov_pop_rur\",\"Coverage (%) - Active Labor Market -rural\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.cov_pop_tot\",\"Coverage (%) - Active Labor Market\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.cov_pop_urb\",\"Coverage (%) - Active Labor Market -urban\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.cov_q1_preT_tot\",\"Coverage in poorest quintile (%) - Active Labor Market (preT)\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.cov_q1_rur\",\"Coverage in poorest quintile (%) - Active Labor Market -rural\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.cov_q1_tot\",\"Coverage in poorest quintile (%) - Active Labor Market\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.cov_q1_urb\",\"Coverage in poorest quintile (%) - Active Labor Market -urban\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.cov_q2_preT_tot\",\"Coverage in 2nd quintile (%) - Active Labor Market (preT)\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.cov_q2_rur\",\"Coverage in 2nd quintile (%) - Active Labor Market -rural\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.cov_q2_tot\",\"Coverage in 2nd quintile (%) - Active Labor Market\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.cov_q2_urb\",\"Coverage in 2nd quintile (%) - Active Labor Market -urban\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.cov_q3_preT_tot\",\"Coverage in 3rd quintile (%) - Active Labor Market (preT)\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.cov_q3_rur\",\"Coverage in 3rd quintile (%) - Active Labor Market -rural\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.cov_q3_tot\",\"Coverage in 3rd quintile (%) - Active Labor Market\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.cov_q3_urb\",\"Coverage in 3rd quintile (%) - Active Labor Market -urban\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.cov_q4_preT_tot\",\"Coverage in 4th quintile (%) - Active Labor Market (preT)\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.cov_q4_rur\",\"Coverage in 4th quintile (%) - Active Labor Market -rural\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.cov_q4_tot\",\"Coverage in 4th quintile (%) - Active Labor Market\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.cov_q4_urb\",\"Coverage in 4th quintile (%) - Active Labor Market -urban\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.cov_q5_preT_tot\",\"Coverage in richest quintile (%) - Active Labor Market (preT)\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.cov_q5_rur\",\"Coverage in richest quintile (%) - Active Labor Market -rural\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.cov_q5_tot\",\"Coverage in richest quintile (%) - Active Labor Market\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac.cov_q5_urb\",\"Coverage in richest quintile (%) - Active Labor Market -urban\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac_gini_ep_preT_tot\",\"Gini inequality reduction (%) -  Active Labor Market  -extreme poor (<$1.25 a day) (preT)\",\"Gini inequality index reduction due to SPL programs as % of pre-transfer Gini index\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac_gini_ep_tot\",\"Gini inequality reduction (%) -  Active Labor Market  -extreme poor (<$1.25 a day)\",\"Gini inequality index reduction due to SPL programs as % of pre-transfer Gini index\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac_gini_preT_tot\",\"Gini inequality reduction (%) -  Active Labor Market  -poorest quintile (preT)\",\"Gini inequality index reduction due to SPL programs as % of pre-transfer Gini index\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac_gini_rur\",\"Gini inequality reduction (%) -  Active Labor Market  -poorest quintile -rural\",\"Gini inequality index reduction due to SPL programs as % of pre-transfer Gini index\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac_gini_tot\",\"Gini inequality reduction (%) -  Active Labor Market  -poorest quintile\",\"Gini inequality index reduction due to SPL programs as % of pre-transfer Gini index\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac_gini_urb\",\"Gini inequality reduction (%) -  Active Labor Market  - poorest quintile -urban\",\"Gini inequality index reduction due to SPL programs as % of pre-transfer Gini index\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac_p0_ep_preT_tot\",\"Poverty Headcount reduction (%) -  Active Labor Market  -extreme poor (<$1.25 a day) (preT)\",\"Poverty headcount reduction due to SPL programs as % of pre-transfer poverty headcount\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac_p0_ep_tot\",\"Poverty Headcount reduction (%) -  Active Labor Market  -extreme poor (<$1.25 a day)\",\"Poverty headcount reduction due to SPL programs as % of pre-transfer poverty headcount\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac_p0_preT_tot\",\"Poverty Headcount reduction (%) -  Active Labor Market  -poorest quintile (preT)\",\"Poverty headcount reduction due to SPL programs as % of pre-transfer poverty headcount\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac_p0_rur\",\"Poverty Headcount reduction (%) -  Active Labor Market  -poorest quintile -rural\",\"Poverty headcount reduction due to SPL programs as % of pre-transfer poverty headcount\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac_p0_tot\",\"Poverty Headcount reduction (%) -  Active Labor Market  -poorest quintile\",\"Poverty headcount reduction due to SPL programs as % of pre-transfer poverty headcount\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac_p0_urb\",\"Poverty Headcount reduction (%) -  Active Labor Market  - poorest quintile -urban\",\"Poverty headcount reduction due to SPL programs as % of pre-transfer poverty headcount\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac_p1_ep_preT_tot\",\"Poverty Gap reduction (%) -  Active Labor Market  -extreme poor (<$1.25 a day) (preT)\",\"Poverty gap reduction due to SPL programs as % of pre-transfer poverty gap\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac_p1_ep_tot\",\"Poverty Gap reduction (%) -  Active Labor Market  -extreme poor (<$1.25 a day)\",\"Poverty gap reduction due to SPL programs as % of pre-transfer poverty gap\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac_p1_preT_tot\",\"Poverty Gap reduction (%) -  Active Labor Market  -poorest quintile (preT)\",\"Poverty gap reduction due to SPL programs as % of pre-transfer poverty gap\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac_p1_rur\",\"Poverty Gap reduction (%) -  Active Labor Market  -poorest quintile -rural\",\"Poverty gap reduction due to SPL programs as % of pre-transfer poverty gap\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac_p1_tot\",\"Poverty Gap reduction (%) -  Active Labor Market  -poorest quintile\",\"Poverty gap reduction due to SPL programs as % of pre-transfer poverty gap\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_ac_p1_urb\",\"Poverty Gap reduction (%) -  Active Labor Market  - poorest quintile -urban\",\"Poverty gap reduction due to SPL programs as % of pre-transfer poverty gap\",\"Global Social Protection\",\"ASPIRE\"\n\"per_lm_alllm.adq_ep_preT_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - All Labor Market  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.adq_ep_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - All Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.adq_pop_preT_tot\",\"Adequacy of benefits (%) - All Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.adq_pop_rur\",\"Adequacy of benefits (%) - All Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.adq_pop_tot\",\"Adequacy of unemployment benefits and ALMP (% of total welfare of beneficiary households)\",\"Adequacy of unemployment benefits and active labor market programs (ALMP) is measured by the total transfer amount received by the population participating in unemployment benefits and active labor market programs as a share of their total welfare. Welfare is defined as the total income or total expenditure of beneficiary households. Unemployment benefits and active labor market programs include unemployment compensation, severance pay, and early retirement due to labor market reasons, labor market services (intermediation), training (vocational, life skills, and cash for training), job rotation and job sharing, employment incentives and wage subsidies, supported employment and rehabilitation, and employment measures for the disabled. Estimates include both direct and indirect beneficiaries.\",\"World Development Indicators\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.adq_pop_urb\",\"Adequacy of benefits (%) - All Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.adq_q1_preT_tot\",\"Adequacy of benefits in poorest quintile (%) - All Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.adq_q1_rur\",\"Adequacy of benefits in poorest quintile (%) - All Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.adq_q1_tot\",\"Adequacy of benefits in poorest quintile (%) - All Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.adq_q1_urb\",\"Adequacy of benefits in poorest quintile (%) - All Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.adq_q2_preT_tot\",\"Adequacy of benefits in 2nd quintile (%) - All Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.adq_q2_rur\",\"Adequacy of benefits in 2nd quintile (%) - All Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.adq_q2_tot\",\"Adequacy of benefits in 2nd quintile (%) - All Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.adq_q2_urb\",\"Adequacy of benefits in 2nd quintile (%) - All Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.adq_q3_preT_tot\",\"Adequacy of benefits in 3rd quintile (%) - All Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.adq_q3_rur\",\"Adequacy of benefits in 3rd quintile (%) - All Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.adq_q3_tot\",\"Adequacy of benefits in 3rd quintile (%) - All Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.adq_q3_urb\",\"Adequacy of benefits in 3rd quintile (%) - All Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.adq_q4_preT_tot\",\"Adequacy of benefits in 4th quintile (%) - All Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.adq_q4_rur\",\"Adequacy of benefits in 4th quintile (%) - All Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.adq_q4_tot\",\"Adequacy of benefits in 4th quintile (%) - All Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.adq_q4_urb\",\"Adequacy of benefits in 4th quintile (%) - All Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.adq_q5_preT_tot\",\"Adequacy of benefits in richest quintile (%) - All Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.adq_q5_rur\",\"Adequacy of benefits in richest quintile (%) - All Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.adq_q5_tot\",\"Adequacy of benefits in richest quintile (%) - All Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.adq_q5_urb\",\"Adequacy of benefits in richest quintile (%) - All Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.avt_ep_preT_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - All Labor Market  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.avt_ep_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - All Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.avt_pop_preT_tot\",\"Average per capita transfer - All Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.avt_pop_rur\",\"Average per capita transfer - All Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.avt_pop_tot\",\"Average per capita transfer - All Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.avt_pop_urb\",\"Average per capita transfer - All Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.avt_q1_preT_tot\",\"Average per capita transfer held by poorest quintile - All Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.avt_q1_rur\",\"Average per capita transfer held by poorest quintile - All Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.avt_q1_tot\",\"Average per capita transfer held by poorest quintile - All Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.avt_q1_urb\",\"Average per capita transfer held by poorest quintile - All Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.avt_q2_preT_tot\",\"Average per capita transfer held by 2nd quintile - All Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.avt_q2_rur\",\"Average per capita transfer held by 2nd quintile - All Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.avt_q2_tot\",\"Average per capita transfer held by 2nd quintile - All Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.avt_q2_urb\",\"Average per capita transfer held by 2nd quintile - All Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.avt_q3_preT_tot\",\"Average per capita transfer held by 3rd quintile - All Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.avt_q3_rur\",\"Average per capita transfer held by 3rd quintile - All Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.avt_q3_tot\",\"Average per capita transfer held by 3rd quintile - All Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.avt_q3_urb\",\"Average per capita transfer held by 3rd quintile - All Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.avt_q4_preT_tot\",\"Average per capita transfer held by 4th quintile - All Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.avt_q4_rur\",\"Average per capita transfer held by 4th quintile - All Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.avt_q4_tot\",\"Average per capita transfer held by 4th quintile - All Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.avt_q4_urb\",\"Average per capita transfer held by 4th quintile - All Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.avt_q5_preT_tot\",\"Average per capita transfer held by richest quintile - All Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.avt_q5_rur\",\"Average per capita transfer held by richest quintile - All Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.avt_q5_tot\",\"Average per capita transfer held by richest quintile - All Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.avt_q5_urb\",\"Average per capita transfer held by richest quintile - All Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.ben_ep_preT_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - All Labor Market  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.ben_ep_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - All Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.ben_q1_preT_tot\",\"Benefits incidence in poorest quintile (%) - All Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.ben_q1_rur\",\"Benefits incidence in poorest quintile (%) - All Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.ben_q1_tot\",\"Benefits incidence in poorest quintile (%) - All Labor Market \",\"NULL\",\"World Development Indicators\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.ben_q1_urb\",\"Benefits incidence in poorest quintile (%) - All Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.ben_q2_preT_tot\",\"Benefits incidence in 2nd quintile (%) - All Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.ben_q2_rur\",\"Benefits incidence in 2nd quintile (%) - All Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.ben_q2_tot\",\"Benefits incidence in 2nd quintile (%) - All Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.ben_q2_urb\",\"Benefits incidence in 2nd quintile (%) - All Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.ben_q3_preT_tot\",\"Benefits incidence in 3rd quintile (%) - All Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.ben_q3_rur\",\"Benefits incidence in 3rd quintile (%) - All Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.ben_q3_tot\",\"Benefits incidence in 3rd quintile (%) - All Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.ben_q3_urb\",\"Benefits incidence in 3rd quintile (%) - All Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.ben_q4_preT_tot\",\"Benefits incidence in 4th quintile (%) - All Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.ben_q4_rur\",\"Benefits incidence in 4th quintile (%) - All Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.ben_q4_tot\",\"Benefits incidence in 4th quintile (%) - All Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.ben_q4_urb\",\"Benefits incidence in 4th quintile (%) - All Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.ben_q5_preT_tot\",\"Benefits incidence in richest quintile (%) - All Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.ben_q5_rur\",\"Benefits incidence in richest quintile (%) - All Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.ben_q5_tot\",\"Benefits incidence in richest quintile (%) - All Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.ben_q5_urb\",\"Benefits incidence in richest quintile (%) - All Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.bry_ep_preT_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - All Labor Market  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.bry_ep_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - All Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.bry_q1_preT_tot\",\"Beneficiary incidence in poorest quintile (%) - All Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.bry_q1_rur\",\"Beneficiary incidence in poorest quintile (%) - All Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.bry_q1_tot\",\"Beneficiary incidence in poorest quintile (%) - All Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.bry_q1_urb\",\"Beneficiary incidence in poorest quintile (%) - All Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.bry_q2_preT_tot\",\"Beneficiary incidence in 2nd quintile (%) - All Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.bry_q2_rur\",\"Beneficiary incidence in 2nd quintile (%) - All Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.bry_q2_tot\",\"Beneficiary incidence in 2nd quintile (%) - All Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.bry_q2_urb\",\"Beneficiary incidence in 2nd quintile (%) - All Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.bry_q3_preT_tot\",\"Beneficiary incidence in 3rd quintile (%) - All Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.bry_q3_rur\",\"Beneficiary incidence in 3rd quintile (%) - All Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.bry_q3_tot\",\"Beneficiary incidence in 3rd quintile (%) - All Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.bry_q3_urb\",\"Beneficiary incidence in 3rd quintile (%) - All Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.bry_q4_preT_tot\",\"Beneficiary incidence in 4th quintile (%) - All Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.bry_q4_rur\",\"Beneficiary incidence in 4th quintile (%) - All Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.bry_q4_tot\",\"Beneficiary incidence in 4th quintile (%) - All Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.bry_q4_urb\",\"Beneficiary incidence in 4th quintile (%) - All Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.bry_q5_preT_tot\",\"Beneficiary incidence in richest quintile (%) - All Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.bry_q5_rur\",\"Beneficiary incidence in richest quintile (%) - All Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.bry_q5_tot\",\"Beneficiary incidence in richest quintile (%) - All Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.bry_q5_urb\",\"Beneficiary incidence in richest quintile (%) - All Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.cba_ep_preT_tot\",\"Benefit-cost ratio -  All Labor Market  -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.cba_ep_tot\",\"Benefit-cost ratio -  All Labor Market  -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.cba_q1_preT_tot\",\"Benefit-cost ratio -  All Labor Market  -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.cba_q1_rur\",\"Benefit-cost ratio -  All Labor Market  -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.cba_q1_tot\",\"Benefit-cost ratio -  All Labor Market  -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.cba_q1_urb\",\"Benefit-cost ratio -  All Labor Market  - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.cov_ep_preT_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - All Labor Market  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.cov_ep_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - All Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.cov_pop_preT_tot\",\"Coverage (%) - All Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.cov_pop_rur\",\"Coverage (%) - All Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.cov_pop_tot\",\"Coverage (%) - All Labor Market \",\"NULL\",\"World Development Indicators\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.cov_pop_urb\",\"Coverage (%) - All Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.cov_q1_preT_tot\",\"Coverage in poorest quintile (%) - All Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.cov_q1_rur\",\"Coverage in poorest quintile (%) - All Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.cov_q1_tot\",\"Coverage in poorest quintile (%) - All Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.cov_q1_urb\",\"Coverage in poorest quintile (%) - All Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.cov_q2_preT_tot\",\"Coverage in 2nd quintile (%) - All Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.cov_q2_rur\",\"Coverage in 2nd quintile (%) - All Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.cov_q2_tot\",\"Coverage in 2nd quintile (%) - All Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.cov_q2_urb\",\"Coverage in 2nd quintile (%) - All Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.cov_q3_preT_tot\",\"Coverage in 3rd quintile (%) - All Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.cov_q3_rur\",\"Coverage in 3rd quintile (%) - All Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.cov_q3_tot\",\"Coverage in 3rd quintile (%) - All Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.cov_q3_urb\",\"Coverage in 3rd quintile (%) - All Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.cov_q4_preT_tot\",\"Coverage in 4th quintile (%) - All Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.cov_q4_rur\",\"Coverage in 4th quintile (%) - All Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.cov_q4_tot\",\"Coverage in 4th quintile (%) - All Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.cov_q4_urb\",\"Coverage in 4th quintile (%) - All Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.cov_q5_preT_tot\",\"Coverage in richest quintile (%) - All Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.cov_q5_rur\",\"Coverage in richest quintile (%) - All Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.cov_q5_tot\",\"Coverage in richest quintile (%) - All Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm.cov_q5_urb\",\"Coverage in richest quintile (%) - All Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm_gini_ep_preT_tot\",\"Gini inequality reduction (%) -  All Labor Market  -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm_gini_ep_tot\",\"Gini inequality reduction (%) -  All Labor Market  -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm_gini_preT_tot\",\"Gini inequality reduction (%) -  All Labor Market  -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm_gini_rur\",\"Gini inequality reduction (%) -  All Labor Market  -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm_gini_tot\",\"Gini inequality reduction (%) -  All Labor Market  -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm_gini_urb\",\"Gini inequality reduction (%) -  All Labor Market  - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm_p0_ep_preT_tot\",\"Poverty Headcount reduction (%) -  All Labor Market  -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm_p0_ep_tot\",\"Poverty Headcount reduction (%) -  All Labor Market  -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm_p0_preT_tot\",\"Poverty Headcount reduction (%) -  All Labor Market  -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm_p0_rur\",\"Poverty Headcount reduction (%) -  All Labor Market  -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm_p0_tot\",\"Poverty Headcount reduction (%) -  All Labor Market  -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm_p0_urb\",\"Poverty Headcount reduction (%) -  All Labor Market  - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm_p1_ep_preT_tot\",\"Poverty Gap reduction (%) -  All Labor Market  -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm_p1_ep_tot\",\"Poverty Gap reduction (%) -  All Labor Market  -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm_p1_preT_tot\",\"Poverty Gap reduction (%) -  All Labor Market  -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm_p1_rur\",\"Poverty Gap reduction (%) -  All Labor Market  -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm_p1_tot\",\"Poverty Gap reduction (%) -  All Labor Market  -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_alllm_p1_urb\",\"Poverty Gap reduction (%) -  All Labor Market  - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.adq_ep_preT_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - Passive Labor Market  (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.adq_ep_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - Passive Labor Market \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.adq_pop_preT_tot\",\"Adequacy of benefits (%) - Passive Labor Market (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.adq_pop_rur\",\"Adequacy of benefits (%) - Passive Labor Market -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.adq_pop_tot\",\"Adequacy of benefits (%) - Passive Labor Market \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.adq_pop_urb\",\"Adequacy of benefits (%) - Passive Labor Market -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.adq_q1_preT_tot\",\"Adequacy of benefits in poorest quintile (%) - Passive Labor Market (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.adq_q1_rur\",\"Adequacy of benefits in poorest quintile (%) - Passive Labor Market -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.adq_q1_tot\",\"Adequacy of benefits in poorest quintile (%) - Passive Labor Market \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.adq_q1_urb\",\"Adequacy of benefits in poorest quintile (%) - Passive Labor Market -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.adq_q2_preT_tot\",\"Adequacy of benefits in 2nd quintile (%) - Passive Labor Market (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.adq_q2_rur\",\"Adequacy of benefits in 2nd quintile (%) - Passive Labor Market -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.adq_q2_tot\",\"Adequacy of benefits in 2nd quintile (%) - Passive Labor Market \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.adq_q2_urb\",\"Adequacy of benefits in 2nd quintile (%) - Passive Labor Market -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.adq_q3_preT_tot\",\"Adequacy of benefits in 3rd quintile (%) - Passive Labor Market (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.adq_q3_rur\",\"Adequacy of benefits in 3rd quintile (%) - Passive Labor Market -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.adq_q3_tot\",\"Adequacy of benefits in 3rd quintile (%) - Passive Labor Market \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.adq_q3_urb\",\"Adequacy of benefits in 3rd quintile (%) - Passive Labor Market -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.adq_q4_preT_tot\",\"Adequacy of benefits in 4th quintile (%) - Passive Labor Market (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.adq_q4_rur\",\"Adequacy of benefits in 4th quintile (%) - Passive Labor Market -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.adq_q4_tot\",\"Adequacy of benefits in 4th quintile (%) - Passive Labor Market \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.adq_q4_urb\",\"Adequacy of benefits in 4th quintile (%) - Passive Labor Market -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.adq_q5_preT_tot\",\"Adequacy of benefits in richest quintile (%) - Passive Labor Market (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.adq_q5_rur\",\"Adequacy of benefits in richest quintile (%) - Passive Labor Market -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.adq_q5_tot\",\"Adequacy of benefits in richest quintile (%) - Passive Labor Market \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.adq_q5_urb\",\"Adequacy of benefits in richest quintile (%) - Passive Labor Market -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.avt_ep_preT_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - Passive Labor Market  (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.avt_ep_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - Passive Labor Market \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.avt_pop_preT_tot\",\"Average per capita transfer - Passive Labor Market (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.avt_pop_rur\",\"Average per capita transfer - Passive Labor Market -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.avt_pop_tot\",\"Average per capita transfer - Passive Labor Market \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.avt_pop_urb\",\"Average per capita transfer - Passive Labor Market -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.avt_q1_preT_tot\",\"Average per capita transfer held by poorest quintile - Passive Labor Market (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.avt_q1_rur\",\"Average per capita transfer held by poorest quintile - Passive Labor Market -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.avt_q1_tot\",\"Average per capita transfer held by poorest quintile - Passive Labor Market \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.avt_q1_urb\",\"Average per capita transfer held by poorest quintile - Passive Labor Market -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.avt_q2_preT_tot\",\"Average per capita transfer held by 2nd quintile - Passive Labor Market (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.avt_q2_rur\",\"Average per capita transfer held by 2nd quintile - Passive Labor Market -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.avt_q2_tot\",\"Average per capita transfer held by 2nd quintile - Passive Labor Market \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.avt_q2_urb\",\"Average per capita transfer held by 2nd quintile - Passive Labor Market -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.avt_q3_preT_tot\",\"Average per capita transfer held by 3rd quintile - Passive Labor Market (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.avt_q3_rur\",\"Average per capita transfer held by 3rd quintile - Passive Labor Market -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.avt_q3_tot\",\"Average per capita transfer held by 3rd quintile - Passive Labor Market \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.avt_q3_urb\",\"Average per capita transfer held by 3rd quintile - Passive Labor Market -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.avt_q4_preT_tot\",\"Average per capita transfer held by 4th quintile - Passive Labor Market (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.avt_q4_rur\",\"Average per capita transfer held by 4th quintile - Passive Labor Market -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.avt_q4_tot\",\"Average per capita transfer held by 4th quintile - Passive Labor Market \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.avt_q4_urb\",\"Average per capita transfer held by 4th quintile - Passive Labor Market -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.avt_q5_preT_tot\",\"Average per capita transfer held by richest quintile - Passive Labor Market (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.avt_q5_rur\",\"Average per capita transfer held by richest quintile - Passive Labor Market -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.avt_q5_tot\",\"Average per capita transfer held by richest quintile - Passive Labor Market \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.avt_q5_urb\",\"Average per capita transfer held by richest quintile - Passive Labor Market -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.ben_ep_preT_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - Passive Labor Market  (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.ben_ep_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - Passive Labor Market \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.ben_q1_preT_tot\",\"Benefits incidence in poorest quintile (%) - Passive Labor Market (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.ben_q1_rur\",\"Benefits incidence in poorest quintile (%) - Passive Labor Market -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.ben_q1_tot\",\"Benefits incidence in poorest quintile (%) - Passive Labor Market \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.ben_q1_urb\",\"Benefits incidence in poorest quintile (%) - Passive Labor Market -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.ben_q2_preT_tot\",\"Benefits incidence in 2nd quintile (%) - Passive Labor Market (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.ben_q2_rur\",\"Benefits incidence in 2nd quintile (%) - Passive Labor Market -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.ben_q2_tot\",\"Benefits incidence in 2nd quintile (%) - Passive Labor Market \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.ben_q2_urb\",\"Benefits incidence in 2nd quintile (%) - Passive Labor Market -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.ben_q3_preT_tot\",\"Benefits incidence in 3rd quintile (%) - Passive Labor Market (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.ben_q3_rur\",\"Benefits incidence in 3rd quintile (%) - Passive Labor Market -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.ben_q3_tot\",\"Benefits incidence in 3rd quintile (%) - Passive Labor Market \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.ben_q3_urb\",\"Benefits incidence in 3rd quintile (%) - Passive Labor Market -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.ben_q4_preT_tot\",\"Benefits incidence in 4th quintile (%) - Passive Labor Market (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.ben_q4_rur\",\"Benefits incidence in 4th quintile (%) - Passive Labor Market -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.ben_q4_tot\",\"Benefits incidence in 4th quintile (%) - Passive Labor Market \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.ben_q4_urb\",\"Benefits incidence in 4th quintile (%) - Passive Labor Market -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.ben_q5_preT_tot\",\"Benefits incidence in richest quintile (%) - Passive Labor Market (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.ben_q5_rur\",\"Benefits incidence in richest quintile (%) - Passive Labor Market -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.ben_q5_tot\",\"Benefits incidence in richest quintile (%) - Passive Labor Market \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.ben_q5_urb\",\"Benefits incidence in richest quintile (%) - Passive Labor Market -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.bry_ep_preT_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - Passive Labor Market  (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.bry_ep_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - Passive Labor Market \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.bry_q1_preT_tot\",\"Beneficiary incidence in poorest quintile (%) - Passive Labor Market (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.bry_q1_rur\",\"Beneficiary incidence in poorest quintile (%) - Passive Labor Market -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.bry_q1_tot\",\"Beneficiary incidence in poorest quintile (%) - Passive Labor Market \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.bry_q1_urb\",\"Beneficiary incidence in poorest quintile (%) - Passive Labor Market -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.bry_q2_preT_tot\",\"Beneficiary incidence in 2nd quintile (%) - Passive Labor Market (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.bry_q2_rur\",\"Beneficiary incidence in 2nd quintile (%) - Passive Labor Market -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.bry_q2_tot\",\"Beneficiary incidence in 2nd quintile (%) - Passive Labor Market \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.bry_q2_urb\",\"Beneficiary incidence in 2nd quintile (%) - Passive Labor Market -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.bry_q3_preT_tot\",\"Beneficiary incidence in 3rd quintile (%) - Passive Labor Market (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.bry_q3_rur\",\"Beneficiary incidence in 3rd quintile (%) - Passive Labor Market -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.bry_q3_tot\",\"Beneficiary incidence in 3rd quintile (%) - Passive Labor Market \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.bry_q3_urb\",\"Beneficiary incidence in 3rd quintile (%) - Passive Labor Market -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.bry_q4_preT_tot\",\"Beneficiary incidence in 4th quintile (%) - Passive Labor Market (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.bry_q4_rur\",\"Beneficiary incidence in 4th quintile (%) - Passive Labor Market -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.bry_q4_tot\",\"Beneficiary incidence in 4th quintile (%) - Passive Labor Market \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.bry_q4_urb\",\"Beneficiary incidence in 4th quintile (%) - Passive Labor Market -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.bry_q5_preT_tot\",\"Beneficiary incidence in richest quintile (%) - Passive Labor Market (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.bry_q5_rur\",\"Beneficiary incidence in richest quintile (%) - Passive Labor Market -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.bry_q5_tot\",\"Beneficiary incidence in richest quintile (%) - Passive Labor Market \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.bry_q5_urb\",\"Beneficiary incidence in richest quintile (%) - Passive Labor Market -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.cba_ep_preT_tot\",\"Benefit-cost ratio -  Passive Labor Market  -extreme poor (<$1.25 a day) (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.cba_ep_tot\",\"Benefit-cost ratio -  Passive Labor Market  -extreme poor (<$1.25 a day)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.cba_q1_preT_tot\",\"Benefit-cost ratio -  Passive Labor Market  -poorest quintile (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.cba_q1_rur\",\"Benefit-cost ratio -  Passive Labor Market  -poorest quintile -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.cba_q1_tot\",\"Benefit-cost ratio -  Passive Labor Market  -poorest quintile\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.cba_q1_urb\",\"Benefit-cost ratio -  Passive Labor Market  - poorest quintile -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.cov_ep_preT_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - Passive Labor Market  (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.cov_ep_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - Passive Labor Market \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.cov_pop_preT_tot\",\"Coverage (%) - Passive Labor Market (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.cov_pop_rur\",\"Coverage (%) - Passive Labor Market -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.cov_pop_tot\",\"Coverage (%) - Passive Labor Market \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.cov_pop_urb\",\"Coverage (%) - Passive Labor Market -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.cov_q1_preT_tot\",\"Coverage in poorest quintile (%) - Passive Labor Market (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.cov_q1_rur\",\"Coverage in poorest quintile (%) - Passive Labor Market -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.cov_q1_tot\",\"Coverage in poorest quintile (%) - Passive Labor Market \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.cov_q1_urb\",\"Coverage in poorest quintile (%) - Passive Labor Market -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.cov_q2_preT_tot\",\"Coverage in 2nd quintile (%) - Passive Labor Market (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.cov_q2_rur\",\"Coverage in 2nd quintile (%) - Passive Labor Market -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.cov_q2_tot\",\"Coverage in 2nd quintile (%) - Passive Labor Market \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.cov_q2_urb\",\"Coverage in 2nd quintile (%) - Passive Labor Market -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.cov_q3_preT_tot\",\"Coverage in 3rd quintile (%) - Passive Labor Market (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.cov_q3_rur\",\"Coverage in 3rd quintile (%) - Passive Labor Market -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.cov_q3_tot\",\"Coverage in 3rd quintile (%) - Passive Labor Market \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.cov_q3_urb\",\"Coverage in 3rd quintile (%) - Passive Labor Market -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.cov_q4_preT_tot\",\"Coverage in 4th quintile (%) - Passive Labor Market (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.cov_q4_rur\",\"Coverage in 4th quintile (%) - Passive Labor Market -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.cov_q4_tot\",\"Coverage in 4th quintile (%) - Passive Labor Market \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.cov_q4_urb\",\"Coverage in 4th quintile (%) - Passive Labor Market -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.cov_q5_preT_tot\",\"Coverage in richest quintile (%) - Passive Labor Market (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.cov_q5_rur\",\"Coverage in richest quintile (%) - Passive Labor Market -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.cov_q5_tot\",\"Coverage in richest quintile (%) - Passive Labor Market \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa.cov_q5_urb\",\"Coverage in richest quintile (%) - Passive Labor Market -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa_gini_ep_preT_tot\",\"Gini inequality reduction (%) -  Passive Labor Market  -extreme poor (<$1.25 a day) (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa_gini_ep_tot\",\"Gini inequality reduction (%) -  Passive Labor Market  -extreme poor (<$1.25 a day)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa_gini_preT_tot\",\"Gini inequality reduction (%) -  Passive Labor Market  -poorest quintile (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa_gini_rur\",\"Gini inequality reduction (%) -  Passive Labor Market  -poorest quintile -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa_gini_tot\",\"Gini inequality reduction (%) -  Passive Labor Market  -poorest quintile\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa_gini_urb\",\"Gini inequality reduction (%) -  Passive Labor Market  - poorest quintile -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa_p0_ep_preT_tot\",\"Poverty Headcount reduction (%) -  Passive Labor Market  -extreme poor (<$1.25 a day) (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa_p0_ep_tot\",\"Poverty Headcount reduction (%) -  Passive Labor Market  -extreme poor (<$1.25 a day)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa_p0_preT_tot\",\"Poverty Headcount reduction (%) -  Passive Labor Market  -poorest quintile (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa_p0_rur\",\"Poverty Headcount reduction (%) -  Passive Labor Market  -poorest quintile -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa_p0_tot\",\"Poverty Headcount reduction (%) -  Passive Labor Market  -poorest quintile\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa_p0_urb\",\"Poverty Headcount reduction (%) -  Passive Labor Market  - poorest quintile -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa_p1_ep_preT_tot\",\"Poverty Gap reduction (%) -  Passive Labor Market  -extreme poor (<$1.25 a day) (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa_p1_ep_tot\",\"Poverty Gap reduction (%) -  Passive Labor Market  -extreme poor (<$1.25 a day)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa_p1_preT_tot\",\"Poverty Gap reduction (%) -  Passive Labor Market  -poorest quintile (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa_p1_rur\",\"Poverty Gap reduction (%) -  Passive Labor Market  -poorest quintile -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa_p1_tot\",\"Poverty Gap reduction (%) -  Passive Labor Market  -poorest quintile\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_pa_p1_urb\",\"Poverty Gap reduction (%) -  Passive Labor Market  - poorest quintile -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.adq_ep_preT_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - Labor Market  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.adq_ep_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.adq_pop_preT_tot\",\"Adequacy of benefits (%) - Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.adq_pop_rur\",\"Adequacy of benefits (%) - Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.adq_pop_tot\",\"Adequacy of benefits (%) - Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.adq_pop_urb\",\"Adequacy of benefits (%) - Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.adq_q1_preT_tot\",\"Adequacy of benefits in poorest quintile (%) - Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.adq_q1_rur\",\"Adequacy of benefits in poorest quintile (%) - Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.adq_q1_tot\",\"Adequacy of benefits in poorest quintile (%) - Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.adq_q1_urb\",\"Adequacy of benefits in poorest quintile (%) - Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.adq_q2_preT_tot\",\"Adequacy of benefits in 2nd quintile (%) - Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.adq_q2_rur\",\"Adequacy of benefits in 2nd quintile (%) - Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.adq_q2_tot\",\"Adequacy of benefits in 2nd quintile (%) - Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.adq_q2_urb\",\"Adequacy of benefits in 2nd quintile (%) - Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.adq_q3_preT_tot\",\"Adequacy of benefits in 3rd quintile (%) - Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.adq_q3_rur\",\"Adequacy of benefits in 3rd quintile (%) - Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.adq_q3_tot\",\"Adequacy of benefits in 3rd quintile (%) - Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.adq_q3_urb\",\"Adequacy of benefits in 3rd quintile (%) - Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.adq_q4_preT_tot\",\"Adequacy of benefits in 4th quintile (%) - Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.adq_q4_rur\",\"Adequacy of benefits in 4th quintile (%) - Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.adq_q4_tot\",\"Adequacy of benefits in 4th quintile (%) - Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.adq_q4_urb\",\"Adequacy of benefits in 4th quintile (%) - Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.adq_q5_preT_tot\",\"Adequacy of benefits in richest quintile (%) - Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.adq_q5_rur\",\"Adequacy of benefits in richest quintile (%) - Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.adq_q5_tot\",\"Adequacy of benefits in richest quintile (%) - Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.adq_q5_urb\",\"Adequacy of benefits in richest quintile (%) - Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.avt_ep_preT_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - Labor Market  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.avt_ep_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.avt_pop_preT_tot\",\"Average per capita transfer - Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.avt_pop_rur\",\"Average per capita transfer - Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.avt_pop_tot\",\"Average per capita transfer - Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.avt_pop_urb\",\"Average per capita transfer - Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.avt_q1_preT_tot\",\"Average per capita transfer held by poorest quintile - Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.avt_q1_rur\",\"Average per capita transfer held by poorest quintile - Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.avt_q1_tot\",\"Average per capita transfer held by poorest quintile - Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.avt_q1_urb\",\"Average per capita transfer held by poorest quintile - Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.avt_q2_preT_tot\",\"Average per capita transfer held by 2nd quintile - Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.avt_q2_rur\",\"Average per capita transfer held by 2nd quintile - Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.avt_q2_tot\",\"Average per capita transfer held by 2nd quintile - Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.avt_q2_urb\",\"Average per capita transfer held by 2nd quintile - Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.avt_q3_preT_tot\",\"Average per capita transfer held by 3rd quintile - Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.avt_q3_rur\",\"Average per capita transfer held by 3rd quintile - Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.avt_q3_tot\",\"Average per capita transfer held by 3rd quintile - Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.avt_q3_urb\",\"Average per capita transfer held by 3rd quintile - Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.avt_q4_preT_tot\",\"Average per capita transfer held by 4th quintile - Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.avt_q4_rur\",\"Average per capita transfer held by 4th quintile - Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.avt_q4_tot\",\"Average per capita transfer held by 4th quintile - Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.avt_q4_urb\",\"Average per capita transfer held by 4th quintile - Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.avt_q5_preT_tot\",\"Average per capita transfer held by richest quintile - Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.avt_q5_rur\",\"Average per capita transfer held by richest quintile - Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.avt_q5_tot\",\"Average per capita transfer held by richest quintile - Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.avt_q5_urb\",\"Average per capita transfer held by richest quintile - Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.ben_ep_preT_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - Labor Market  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.ben_ep_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.ben_q1_preT_tot\",\"Benefits incidence in poorest quintile (%) - Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.ben_q1_rur\",\"Benefits incidence in poorest quintile (%) - Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.ben_q1_tot\",\"Benefits incidence in poorest quintile (%) - Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.ben_q1_urb\",\"Benefits incidence in poorest quintile (%) - Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.ben_q2_preT_tot\",\"Benefits incidence in 2nd quintile (%) - Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.ben_q2_rur\",\"Benefits incidence in 2nd quintile (%) - Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.ben_q2_tot\",\"Benefits incidence in 2nd quintile (%) - Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.ben_q2_urb\",\"Benefits incidence in 2nd quintile (%) - Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.ben_q3_preT_tot\",\"Benefits incidence in 3rd quintile (%) - Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.ben_q3_rur\",\"Benefits incidence in 3rd quintile (%) - Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.ben_q3_tot\",\"Benefits incidence in 3rd quintile (%) - Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.ben_q3_urb\",\"Benefits incidence in 3rd quintile (%) - Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.ben_q4_preT_tot\",\"Benefits incidence in 4th quintile (%) - Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.ben_q4_rur\",\"Benefits incidence in 4th quintile (%) - Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.ben_q4_tot\",\"Benefits incidence in 4th quintile (%) - Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.ben_q4_urb\",\"Benefits incidence in 4th quintile (%) - Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.ben_q5_preT_tot\",\"Benefits incidence in richest quintile (%) - Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.ben_q5_rur\",\"Benefits incidence in richest quintile (%) - Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.ben_q5_tot\",\"Benefits incidence in richest quintile (%) - Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.ben_q5_urb\",\"Benefits incidence in richest quintile (%) - Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.bry_ep_preT_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - Labor Market  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.bry_ep_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.bry_q1_preT_tot\",\"Beneficiary incidence in poorest quintile (%) - Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.bry_q1_rur\",\"Beneficiary incidence in poorest quintile (%) - Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.bry_q1_tot\",\"Beneficiary incidence in poorest quintile (%) - Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.bry_q1_urb\",\"Beneficiary incidence in poorest quintile (%) - Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.bry_q2_preT_tot\",\"Beneficiary incidence in 2nd quintile (%) - Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.bry_q2_rur\",\"Beneficiary incidence in 2nd quintile (%) - Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.bry_q2_tot\",\"Beneficiary incidence in 2nd quintile (%) - Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.bry_q2_urb\",\"Beneficiary incidence in 2nd quintile (%) - Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.bry_q3_preT_tot\",\"Beneficiary incidence in 3rd quintile (%) - Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.bry_q3_rur\",\"Beneficiary incidence in 3rd quintile (%) - Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.bry_q3_tot\",\"Beneficiary incidence in 3rd quintile (%) - Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.bry_q3_urb\",\"Beneficiary incidence in 3rd quintile (%) - Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.bry_q4_preT_tot\",\"Beneficiary incidence in 4th quintile (%) - Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.bry_q4_rur\",\"Beneficiary incidence in 4th quintile (%) - Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.bry_q4_tot\",\"Beneficiary incidence in 4th quintile (%) - Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.bry_q4_urb\",\"Beneficiary incidence in 4th quintile (%) - Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.bry_q5_preT_tot\",\"Beneficiary incidence in richest quintile (%) - Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.bry_q5_rur\",\"Beneficiary incidence in richest quintile (%) - Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.bry_q5_tot\",\"Beneficiary incidence in richest quintile (%) - Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.bry_q5_urb\",\"Beneficiary incidence in richest quintile (%) - Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.cba_ep_preT_tot\",\"Benefit-cost ratio -  Labor Market  -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.cba_ep_tot\",\"Benefit-cost ratio -  Labor Market  -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.cba_q1_preT_tot\",\"Benefit-cost ratio -  Labor Market  -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.cba_q1_rur\",\"Benefit-cost ratio -  Labor Market  -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.cba_q1_tot\",\"Benefit-cost ratio -  Labor Market  -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.cba_q1_urb\",\"Benefit-cost ratio -  Labor Market  - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.cov_ep_preT_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - Labor Market  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.cov_ep_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.cov_pop_preT_tot\",\"Coverage (%) - Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.cov_pop_rur\",\"Coverage (%) - Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.cov_pop_tot\",\"Coverage (%) - Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.cov_pop_urb\",\"Coverage (%) - Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.cov_q1_preT_tot\",\"Coverage in poorest quintile (%) - Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.cov_q1_rur\",\"Coverage in poorest quintile (%) - Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.cov_q1_tot\",\"Coverage in poorest quintile (%) - Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.cov_q1_urb\",\"Coverage in poorest quintile (%) - Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.cov_q2_preT_tot\",\"Coverage in 2nd quintile (%) - Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.cov_q2_rur\",\"Coverage in 2nd quintile (%) - Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.cov_q2_tot\",\"Coverage in 2nd quintile (%) - Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.cov_q2_urb\",\"Coverage in 2nd quintile (%) - Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.cov_q3_preT_tot\",\"Coverage in 3rd quintile (%) - Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.cov_q3_rur\",\"Coverage in 3rd quintile (%) - Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.cov_q3_tot\",\"Coverage in 3rd quintile (%) - Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.cov_q3_urb\",\"Coverage in 3rd quintile (%) - Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.cov_q4_preT_tot\",\"Coverage in 4th quintile (%) - Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.cov_q4_rur\",\"Coverage in 4th quintile (%) - Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.cov_q4_tot\",\"Coverage in 4th quintile (%) - Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.cov_q4_urb\",\"Coverage in 4th quintile (%) - Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.cov_q5_preT_tot\",\"Coverage in richest quintile (%) - Labor Market (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.cov_q5_rur\",\"Coverage in richest quintile (%) - Labor Market -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.cov_q5_tot\",\"Coverage in richest quintile (%) - Labor Market \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub.cov_q5_urb\",\"Coverage in richest quintile (%) - Labor Market -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub_gini_ep_preT_tot\",\"Gini inequality reduction (%) -  Labor Market  -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub_gini_ep_tot\",\"Gini inequality reduction (%) -  Labor Market  -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub_gini_preT_tot\",\"Gini inequality reduction (%) -  Labor Market  -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub_gini_rur\",\"Gini inequality reduction (%) -  Labor Market  -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub_gini_tot\",\"Gini inequality reduction (%) -  Labor Market  -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub_gini_urb\",\"Gini inequality reduction (%) -  Labor Market  - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub_p0_ep_preT_tot\",\"Poverty Headcount reduction (%) -  Labor Market  -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub_p0_ep_tot\",\"Poverty Headcount reduction (%) -  Labor Market  -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub_p0_preT_tot\",\"Poverty Headcount reduction (%) -  Labor Market  -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub_p0_rur\",\"Poverty Headcount reduction (%) -  Labor Market  -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub_p0_tot\",\"Poverty Headcount reduction (%) -  Labor Market  -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub_p0_urb\",\"Poverty Headcount reduction (%) -  Labor Market  - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub_p1_ep_preT_tot\",\"Poverty Gap reduction (%) -  Labor Market  -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub_p1_ep_tot\",\"Poverty Gap reduction (%) -  Labor Market  -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub_p1_preT_tot\",\"Poverty Gap reduction (%) -  Labor Market  -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub_p1_rur\",\"Poverty Gap reduction (%) -  Labor Market  -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub_p1_tot\",\"Poverty Gap reduction (%) -  Labor Market  -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lm_ub_p1_urb\",\"Poverty Gap reduction (%) -  Labor Market  - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lmonl.overlap_ep_preT_tot\",\"Population in extreme poor (<$1.25 a day) only receiving Labor Market (%, preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lmonl.overlap_ep_tot\",\"Population in extreme poor (<$1.25 a day) only receiving Labor Market (%)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lmonl.overlap_pop_preT_tot\",\"Population only receiving Labor Market (%, preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lmonl.overlap_pop_rur\",\"Population only receiving Labor Market (%) -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lmonl.overlap_pop_tot\",\"Population only receiving Labor Market (%)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lmonl.overlap_pop_urb\",\"Population only receiving Labor Market (%) -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lmonl.overlap_q1_preT_tot\",\"Population in the poorest quintile only receiving Labor Market (%, preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lmonl.overlap_q1_rur\",\"Population in the poorest quintile only receiving Labor Market (%) -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lmonl.overlap_q1_tot\",\"Population in the poorest quintile only receiving Labor Market (%)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_lmonl.overlap_q1_urb\",\"Population in the poorest quintile only receiving Labor Market (%) -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_nprog.overlap_ep_preT_tot\",\"Population in extreme poor (<$1.25 a day) not receiving Social Protection (%, preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_nprog.overlap_ep_tot\",\"Population in extreme poor (<$1.25 a day) not receiving Social Protection (%)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_nprog.overlap_pop_preT_tot\",\"Population not receiving Social Protection (%, preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_nprog.overlap_pop_rur\",\"Population not receiving Social Protection (%) -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_nprog.overlap_pop_tot\",\"Population not receiving Social Protection (%)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_nprog.overlap_pop_urb\",\"Population not receiving Social Protection (%) -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_nprog.overlap_q1_preT_tot\",\"Population in the poorest quintile not receiving Social Protection (%, preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_nprog.overlap_q1_rur\",\"Population in the poorest quintile not receiving Social Protection (%) -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_nprog.overlap_q1_tot\",\"Population in the poorest quintile not receiving Social Protection (%)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_nprog.overlap_q1_urb\",\"Population in the poorest quintile not receiving Social Protection (%) -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog1_ep_preT_tot\",\"Population in extreme poor (<$1.25 a day) receiving only 1 program (%, preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog1_ep_tot\",\"Population in extreme poor (<$1.25 a day) receiving only 1 program (%)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog1_pop_preT_tot\",\"Population receiving only 1 program (%, preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog1_pop_rur\",\"Population receiving only 1 program (%) -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog1_pop_tot\",\"Population receiving only 1 program (%)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog1_pop_urb\",\"Population receiving only 1 program (%) -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog1_q1_preT_tot\",\"Population in the poorest quintile receiving 1 program (%, preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog1_q1_rur\",\"Population in the poorest quintile receiving 1 program (%) -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog1_q1_tot\",\"Population in the poorest quintile receiving 1 program (%)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog1_q1_urb\",\"Population in the poorest quintile receiving 1 program (%) -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog2_ep_preT_tot\",\"Population in extreme poor (<$1.25 a day) receiving 2 programs (%, preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog2_ep_tot\",\"Population in extreme poor (<$1.25 a day) receiving 2 programs (%)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog2_pop_preT_tot\",\"Population receiving 2 programs (%, preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog2_pop_rur\",\"Population receiving 2 programs (%) -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog2_pop_tot\",\"Population receiving 2 programs (%)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog2_pop_urb\",\"Population receiving 2 programs (%) -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog2_q1_preT_tot\",\"Population in the poorest quintile receiving 2 programs (%, preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog2_q1_rur\",\"Population in the poorest quintile receiving 2 programs (%) -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog2_q1_tot\",\"Population in the poorest quintile receiving 2 programs (%)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog2_q1_urb\",\"Population in the poorest quintile receiving 2 programs (%) -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog3_ep_preT_tot\",\"Population in extreme poor (<$1.25 a day) receiving 3 programs (%, preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog3_ep_tot\",\"Population in extreme poor (<$1.25 a day) receiving 3 programs (%)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog3_pop_preT_tot\",\"Population receiving 3 programs (%, preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog3_pop_rur\",\"Population receiving 3 programs (%) -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog3_pop_tot\",\"Population receiving 3 programs (%)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog3_pop_urb\",\"Population receiving 3 programs (%) -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog3_q1_preT_tot\",\"Population in the poorest quintile receiving 3 programs (%, preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog3_q1_rur\",\"Population in the poorest quintile receiving 3 programs (%) -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog3_q1_tot\",\"Population in the poorest quintile receiving 3 programs (%)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog3_q1_urb\",\"Population in the poorest quintile receiving 3 programs (%) -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog4_ep_preT_tot\",\"Population in extreme poor (<$1.25 a day) receiving 4 or more programs (%, preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog4_ep_tot\",\"Population in extreme poor (<$1.25 a day) receiving 4 or more programs (%)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog4_pop_preT_tot\",\"Population receiving 4 or more programs (%, preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog4_pop_rur\",\"Population receiving 4 or more programs (%) -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog4_pop_tot\",\"Population receiving 4 or more programs (%)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog4_pop_urb\",\"Population receiving 4 or more programs (%) -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog4_q1_preT_tot\",\"Population in the poorest quintile receiving 4 or more programs (%, preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog4_q1_rur\",\"Population in the poorest quintile receiving 4 or more programs (%) -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog4_q1_tot\",\"Population in the poorest quintile receiving 4 or more programs (%)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_numprog4_q1_urb\",\"Population in the poorest quintile receiving 4 or more programs (%) -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.adq_ep_preT_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - All Private Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.adq_ep_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - All Private Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.adq_pop_preT_tot\",\"Adequacy of benefits (%) - All Private Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.adq_pop_rur\",\"Adequacy of benefits (%) - All Private Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.adq_pop_tot\",\"Adequacy of benefits (%) - All Private Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.adq_pop_urb\",\"Adequacy of benefits (%) - All Private Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.adq_q1_preT_tot\",\"Adequacy of benefits in poorest quintile (%) - All Private Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.adq_q1_rur\",\"Adequacy of benefits in poorest quintile (%) - All Private Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.adq_q1_tot\",\"Adequacy of benefits in poorest quintile (%) - All Private Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.adq_q1_urb\",\"Adequacy of benefits in poorest quintile (%) - All Private Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.adq_q2_preT_tot\",\"Adequacy of benefits in 2nd quintile (%) - All Private Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.adq_q2_rur\",\"Adequacy of benefits in 2nd quintile (%) - All Private Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.adq_q2_tot\",\"Adequacy of benefits in 2nd quintile (%) - All Private Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.adq_q2_urb\",\"Adequacy of benefits in 2nd quintile (%) - All Private Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.adq_q3_preT_tot\",\"Adequacy of benefits in 3rd quintile (%) - All Private Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.adq_q3_rur\",\"Adequacy of benefits in 3rd quintile (%) - All Private Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.adq_q3_tot\",\"Adequacy of benefits in 3rd quintile (%) - All Private Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.adq_q3_urb\",\"Adequacy of benefits in 3rd quintile (%) - All Private Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.adq_q4_preT_tot\",\"Adequacy of benefits in 4th quintile (%) - All Private Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.adq_q4_rur\",\"Adequacy of benefits in 4th quintile (%) - All Private Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.adq_q4_tot\",\"Adequacy of benefits in 4th quintile (%) - All Private Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.adq_q4_urb\",\"Adequacy of benefits in 4th quintile (%) - All Private Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.adq_q5_preT_tot\",\"Adequacy of benefits in richest quintile (%) - All Private Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.adq_q5_rur\",\"Adequacy of benefits in richest quintile (%) - All Private Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.adq_q5_tot\",\"Adequacy of benefits in richest quintile (%) - All Private Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.adq_q5_urb\",\"Adequacy of benefits in richest quintile (%) - All Private Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.avt_ep_preT_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - All Private Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.avt_ep_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - All Private Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.avt_pop_preT_tot\",\"Average per capita transfer - All Private Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.avt_pop_rur\",\"Average per capita transfer - All Private Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.avt_pop_tot\",\"Average per capita transfer - All Private Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.avt_pop_urb\",\"Average per capita transfer - All Private Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.avt_q1_preT_tot\",\"Average per capita transfer held by poorest quintile - All Private Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.avt_q1_rur\",\"Average per capita transfer held by poorest quintile - All Private Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.avt_q1_tot\",\"Average per capita transfer held by poorest quintile - All Private Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.avt_q1_urb\",\"Average per capita transfer held by poorest quintile - All Private Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.avt_q2_preT_tot\",\"Average per capita transfer held by 2nd quintile - All Private Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.avt_q2_rur\",\"Average per capita transfer held by 2nd quintile - All Private Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.avt_q2_tot\",\"Average per capita transfer held by 2nd quintile - All Private Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.avt_q2_urb\",\"Average per capita transfer held by 2nd quintile - All Private Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.avt_q3_preT_tot\",\"Average per capita transfer held by 3rd quintile - All Private Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.avt_q3_rur\",\"Average per capita transfer held by 3rd quintile - All Private Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.avt_q3_tot\",\"Average per capita transfer held by 3rd quintile - All Private Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.avt_q3_urb\",\"Average per capita transfer held by 3rd quintile - All Private Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.avt_q4_preT_tot\",\"Average per capita transfer held by 4th quintile - All Private Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.avt_q4_rur\",\"Average per capita transfer held by 4th quintile - All Private Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.avt_q4_tot\",\"Average per capita transfer held by 4th quintile - All Private Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.avt_q4_urb\",\"Average per capita transfer held by 4th quintile - All Private Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.avt_q5_preT_tot\",\"Average per capita transfer held by richest quintile - All Private Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.avt_q5_rur\",\"Average per capita transfer held by richest quintile - All Private Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.avt_q5_tot\",\"Average per capita transfer held by richest quintile - All Private Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.avt_q5_urb\",\"Average per capita transfer held by richest quintile - All Private Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.ben_ep_preT_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - All Private Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.ben_ep_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - All Private Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.ben_q1_preT_tot\",\"Benefits incidence in poorest quintile (%) - All Private Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.ben_q1_rur\",\"Benefits incidence in poorest quintile (%) - All Private Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.ben_q1_tot\",\"Benefits incidence in poorest quintile (%) - All Private Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.ben_q1_urb\",\"Benefits incidence in poorest quintile (%) - All Private Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.ben_q2_preT_tot\",\"Benefits incidence in 2nd quintile (%) - All Private Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.ben_q2_rur\",\"Benefits incidence in 2nd quintile (%) - All Private Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.ben_q2_tot\",\"Benefits incidence in 2nd quintile (%) - All Private Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.ben_q2_urb\",\"Benefits incidence in 2nd quintile (%) - All Private Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.ben_q3_preT_tot\",\"Benefits incidence in 3rd quintile (%) - All Private Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.ben_q3_rur\",\"Benefits incidence in 3rd quintile (%) - All Private Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.ben_q3_tot\",\"Benefits incidence in 3rd quintile (%) - All Private Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.ben_q3_urb\",\"Benefits incidence in 3rd quintile (%) - All Private Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.ben_q4_preT_tot\",\"Benefits incidence in 4th quintile (%) - All Private Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.ben_q4_rur\",\"Benefits incidence in 4th quintile (%) - All Private Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.ben_q4_tot\",\"Benefits incidence in 4th quintile (%) - All Private Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.ben_q4_urb\",\"Benefits incidence in 4th quintile (%) - All Private Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.ben_q5_preT_tot\",\"Benefits incidence in richest quintile (%) - All Private Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.ben_q5_rur\",\"Benefits incidence in richest quintile (%) - All Private Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.ben_q5_tot\",\"Benefits incidence in richest quintile (%) - All Private Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.ben_q5_urb\",\"Benefits incidence in richest quintile (%) - All Private Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.bry_ep_preT_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - All Private Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.bry_ep_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - All Private Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.bry_q1_preT_tot\",\"Beneficiary incidence in poorest quintile (%) - All Private Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.bry_q1_rur\",\"Beneficiary incidence in poorest quintile (%) - All Private Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.bry_q1_tot\",\"Beneficiary incidence in poorest quintile (%) - All Private Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.bry_q1_urb\",\"Beneficiary incidence in poorest quintile (%) - All Private Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.bry_q2_preT_tot\",\"Beneficiary incidence in 2nd quintile (%) - All Private Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.bry_q2_rur\",\"Beneficiary incidence in 2nd quintile (%) - All Private Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.bry_q2_tot\",\"Beneficiary incidence in 2nd quintile (%) - All Private Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.bry_q2_urb\",\"Beneficiary incidence in 2nd quintile (%) - All Private Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.bry_q3_preT_tot\",\"Beneficiary incidence in 3rd quintile (%) - All Private Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.bry_q3_rur\",\"Beneficiary incidence in 3rd quintile (%) - All Private Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.bry_q3_tot\",\"Beneficiary incidence in 3rd quintile (%) - All Private Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.bry_q3_urb\",\"Beneficiary incidence in 3rd quintile (%) - All Private Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.bry_q4_preT_tot\",\"Beneficiary incidence in 4th quintile (%) - All Private Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.bry_q4_rur\",\"Beneficiary incidence in 4th quintile (%) - All Private Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.bry_q4_tot\",\"Beneficiary incidence in 4th quintile (%) - All Private Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.bry_q4_urb\",\"Beneficiary incidence in 4th quintile (%) - All Private Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.bry_q5_preT_tot\",\"Beneficiary incidence in richest quintile (%) - All Private Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.bry_q5_rur\",\"Beneficiary incidence in richest quintile (%) - All Private Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.bry_q5_tot\",\"Beneficiary incidence in richest quintile (%) - All Private Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.bry_q5_urb\",\"Beneficiary incidence in richest quintile (%) - All Private Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.cba_ep_preT_tot\",\"Benefit-cost ratio -  All Private Transfers -extreme poor (<$1.25 a day) (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.cba_ep_tot\",\"Benefit-cost ratio -  All Private Transfers -extreme poor (<$1.25 a day)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.cba_q1_preT_tot\",\"Benefit-cost ratio -  All Private Transfers -poorest quintile (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.cba_q1_rur\",\"Benefit-cost ratio -  All Private Transfers -poorest quintile -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.cba_q1_tot\",\"Benefit-cost ratio -  All Private Transfers -poorest quintile\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.cba_q1_urb\",\"Benefit-cost ratio -  All Private Transfers - poorest quintile -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.cov_ep_preT_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - All Private Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.cov_ep_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - All Private Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.cov_pop_preT_tot\",\"Coverage (%) - All Private Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.cov_pop_rur\",\"Coverage (%) - All Private Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.cov_pop_tot\",\"Coverage (%) - All Private Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.cov_pop_urb\",\"Coverage (%) - All Private Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.cov_q1_preT_tot\",\"Coverage in poorest quintile (%) - All Private Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.cov_q1_rur\",\"Coverage in poorest quintile (%) - All Private Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.cov_q1_tot\",\"Coverage in poorest quintile (%) - All Private Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.cov_q1_urb\",\"Coverage in poorest quintile (%) - All Private Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.cov_q2_preT_tot\",\"Coverage in 2nd quintile (%) - All Private Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.cov_q2_rur\",\"Coverage in 2nd quintile (%) - All Private Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.cov_q2_tot\",\"Coverage in 2nd quintile (%) - All Private Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.cov_q2_urb\",\"Coverage in 2nd quintile (%) - All Private Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.cov_q3_preT_tot\",\"Coverage in 3rd quintile (%) - All Private Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.cov_q3_rur\",\"Coverage in 3rd quintile (%) - All Private Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.cov_q3_tot\",\"Coverage in 3rd quintile (%) - All Private Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.cov_q3_urb\",\"Coverage in 3rd quintile (%) - All Private Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.cov_q4_preT_tot\",\"Coverage in 4th quintile (%) - All Private Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.cov_q4_rur\",\"Coverage in 4th quintile (%) - All Private Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.cov_q4_tot\",\"Coverage in 4th quintile (%) - All Private Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.cov_q4_urb\",\"Coverage in 4th quintile (%) - All Private Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.cov_q5_preT_tot\",\"Coverage in richest quintile (%) - All Private Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.cov_q5_rur\",\"Coverage in richest quintile (%) - All Private Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.cov_q5_tot\",\"Coverage in richest quintile (%) - All Private Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr.cov_q5_urb\",\"Coverage in richest quintile (%) - All Private Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr_gini_ep_preT_tot\",\"Gini inequality reduction (%) -  All Private Transfers -extreme poor (<$1.25 a day) (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr_gini_ep_tot\",\"Gini inequality reduction (%) -  All Private Transfers -extreme poor (<$1.25 a day)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr_gini_preT_tot\",\"Gini inequality reduction (%) -  All Private Transfers -poorest quintile (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr_gini_rur\",\"Gini inequality reduction (%) -  All Private Transfers -poorest quintile -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr_gini_tot\",\"Gini inequality reduction (%) -  All Private Transfers -poorest quintile\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr_gini_urb\",\"Gini inequality reduction (%) -  All Private Transfers - poorest quintile -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr_p0_ep_preT_tot\",\"Poverty Headcount reduction (%) -  All Private Transfers -extreme poor (<$1.25 a day) (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr_p0_ep_tot\",\"Poverty Headcount reduction (%) -  All Private Transfers -extreme poor (<$1.25 a day)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr_p0_preT_tot\",\"Poverty Headcount reduction (%) -  All Private Transfers -poorest quintile (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr_p0_rur\",\"Poverty Headcount reduction (%) -  All Private Transfers -poorest quintile -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr_p0_tot\",\"Poverty Headcount reduction (%) -  All Private Transfers -poorest quintile\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr_p0_urb\",\"Poverty Headcount reduction (%) -  All Private Transfers - poorest quintile -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr_p1_ep_preT_tot\",\"Poverty Gap reduction (%) -  All Private Transfers -extreme poor (<$1.25 a day) (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr_p1_ep_tot\",\"Poverty Gap reduction (%) -  All Private Transfers -extreme poor (<$1.25 a day)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr_p1_preT_tot\",\"Poverty Gap reduction (%) -  All Private Transfers -poorest quintile (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr_p1_rur\",\"Poverty Gap reduction (%) -  All Private Transfers -poorest quintile -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr_p1_tot\",\"Poverty Gap reduction (%) -  All Private Transfers -poorest quintile\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_allpr_p1_urb\",\"Poverty Gap reduction (%) -  All Private Transfers - poorest quintile -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_pr_dp.adq_ep_preT_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - Domestic Private Transfers (preT)\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.adq_ep_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - Domestic Private Transfers\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.adq_pop_preT_tot\",\"Adequacy of benefits (%) - Domestic Private Transfers (preT)\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.adq_pop_rur\",\"Adequacy of benefits (%) - Domestic Private Transfers -rural\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.adq_pop_tot\",\"Adequacy of benefits (%) - Domestic Private Transfers\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.adq_pop_urb\",\"Adequacy of benefits (%) - Domestic Private Transfers -urban\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.adq_q1_preT_tot\",\"Adequacy of benefits in poorest quintile (%) - Domestic Private Transfers (preT)\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.adq_q1_rur\",\"Adequacy of benefits in poorest quintile (%) - Domestic Private Transfers -rural\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.adq_q1_tot\",\"Adequacy of benefits in poorest quintile (%) - Domestic Private Transfers\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.adq_q1_urb\",\"Adequacy of benefits in poorest quintile (%) - Domestic Private Transfers -urban\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.adq_q2_preT_tot\",\"Adequacy of benefits in 2nd quintile (%) - Domestic Private Transfers (preT)\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.adq_q2_rur\",\"Adequacy of benefits in 2nd quintile (%) - Domestic Private Transfers -rural\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.adq_q2_tot\",\"Adequacy of benefits in 2nd quintile (%) - Domestic Private Transfers\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.adq_q2_urb\",\"Adequacy of benefits in 2nd quintile (%) - Domestic Private Transfers -urban\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.adq_q3_preT_tot\",\"Adequacy of benefits in 3rd quintile (%) - Domestic Private Transfers (preT)\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.adq_q3_rur\",\"Adequacy of benefits in 3rd quintile (%) - Domestic Private Transfers -rural\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.adq_q3_tot\",\"Adequacy of benefits in 3rd quintile (%) - Domestic Private Transfers\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.adq_q3_urb\",\"Adequacy of benefits in 3rd quintile (%) - Domestic Private Transfers -urban\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.adq_q4_preT_tot\",\"Adequacy of benefits in 4th quintile (%) - Domestic Private Transfers (preT)\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.adq_q4_rur\",\"Adequacy of benefits in 4th quintile (%) - Domestic Private Transfers -rural\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.adq_q4_tot\",\"Adequacy of benefits in 4th quintile (%) - Domestic Private Transfers\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.adq_q4_urb\",\"Adequacy of benefits in 4th quintile (%) - Domestic Private Transfers -urban\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.adq_q5_preT_tot\",\"Adequacy of benefits in richest quintile (%) - Domestic Private Transfers (preT)\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.adq_q5_rur\",\"Adequacy of benefits in richest quintile (%) - Domestic Private Transfers -rural\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.adq_q5_tot\",\"Adequacy of benefits in richest quintile (%) - Domestic Private Transfers\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.adq_q5_urb\",\"Adequacy of benefits in richest quintile (%) - Domestic Private Transfers -urban\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.avt_ep_preT_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - Domestic Private Transfers (preT)\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.avt_ep_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - Domestic Private Transfers\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.avt_pop_preT_tot\",\"Average per capita transfer - Domestic Private Transfers (preT)\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.avt_pop_rur\",\"Average per capita transfer - Domestic Private Transfers -rural\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.avt_pop_tot\",\"Average per capita transfer - Domestic Private Transfers\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.avt_pop_urb\",\"Average per capita transfer - Domestic Private Transfers -urban\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.avt_q1_preT_tot\",\"Average per capita transfer held by poorest quintile - Domestic Private Transfers (preT)\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.avt_q1_rur\",\"Average per capita transfer held by poorest quintile - Domestic Private Transfers -rural\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.avt_q1_tot\",\"Average per capita transfer held by poorest quintile - Domestic Private Transfers\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.avt_q1_urb\",\"Average per capita transfer held by poorest quintile - Domestic Private Transfers -urban\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.avt_q2_preT_tot\",\"Average per capita transfer held by 2nd quintile - Domestic Private Transfers (preT)\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.avt_q2_rur\",\"Average per capita transfer held by 2nd quintile - Domestic Private Transfers -rural\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.avt_q2_tot\",\"Average per capita transfer held by 2nd quintile - Domestic Private Transfers\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.avt_q2_urb\",\"Average per capita transfer held by 2nd quintile - Domestic Private Transfers -urban\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.avt_q3_preT_tot\",\"Average per capita transfer held by 3rd quintile - Domestic Private Transfers (preT)\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.avt_q3_rur\",\"Average per capita transfer held by 3rd quintile - Domestic Private Transfers -rural\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.avt_q3_tot\",\"Average per capita transfer held by 3rd quintile - Domestic Private Transfers\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.avt_q3_urb\",\"Average per capita transfer held by 3rd quintile - Domestic Private Transfers -urban\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.avt_q4_preT_tot\",\"Average per capita transfer held by 4th quintile - Domestic Private Transfers (preT)\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.avt_q4_rur\",\"Average per capita transfer held by 4th quintile - Domestic Private Transfers -rural\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.avt_q4_tot\",\"Average per capita transfer held by 4th quintile - Domestic Private Transfers\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.avt_q4_urb\",\"Average per capita transfer held by 4th quintile - Domestic Private Transfers -urban\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.avt_q5_preT_tot\",\"Average per capita transfer held by richest quintile - Domestic Private Transfers (preT)\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.avt_q5_rur\",\"Average per capita transfer held by richest quintile - Domestic Private Transfers -rural\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.avt_q5_tot\",\"Average per capita transfer held by richest quintile - Domestic Private Transfers\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.avt_q5_urb\",\"Average per capita transfer held by richest quintile - Domestic Private Transfers -urban\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.ben_ep_preT_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - Domestic Private Transfers (preT)\",\"Percentage of benefits going to the extreme poor (those below $125 a day)  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.ben_ep_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - Domestic Private Transfers\",\"Percentage of benefits going to the extreme poor (those below $125 a day)  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.ben_q1_preT_tot\",\"Benefits incidence in poorest quintile (%) - Domestic Private Transfers (preT)\",\"Percentage of benefits going to the poorest quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.ben_q1_rur\",\"Benefits incidence in poorest quintile (%) - Domestic Private Transfers -rural\",\"Percentage of benefits going to the poorest quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.ben_q1_tot\",\"Benefits incidence in poorest quintile (%) - Domestic Private Transfers\",\"Percentage of benefits going to the poorest quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.ben_q1_urb\",\"Benefits incidence in poorest quintile (%) - Domestic Private Transfers -urban\",\"Percentage of benefits going to the poorest quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.ben_q2_preT_tot\",\"Benefits incidence in 2nd quintile (%) - Domestic Private Transfers (preT)\",\"Percentage of benefits going to the second quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.ben_q2_rur\",\"Benefits incidence in 2nd quintile (%) - Domestic Private Transfers -rural\",\"Percentage of benefits going to the second quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.ben_q2_tot\",\"Benefits incidence in 2nd quintile (%) - Domestic Private Transfers\",\"Percentage of benefits going to the second quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.ben_q2_urb\",\"Benefits incidence in 2nd quintile (%) - Domestic Private Transfers -urban\",\"Percentage of benefits going to the second quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.ben_q3_preT_tot\",\"Benefits incidence in 3rd quintile (%) - Domestic Private Transfers (preT)\",\"Percentage of benefits going to the third quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.ben_q3_rur\",\"Benefits incidence in 3rd quintile (%) - Domestic Private Transfers -rural\",\"Percentage of benefits going to the third quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.ben_q3_tot\",\"Benefits incidence in 3rd quintile (%) - Domestic Private Transfers\",\"Percentage of benefits going to the third quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.ben_q3_urb\",\"Benefits incidence in 3rd quintile (%) - Domestic Private Transfers -urban\",\"Percentage of benefits going to the third quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.ben_q4_preT_tot\",\"Benefits incidence in 4th quintile (%) - Domestic Private Transfers (preT)\",\"Percentage of benefits going to the fourth quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.ben_q4_rur\",\"Benefits incidence in 4th quintile (%) - Domestic Private Transfers -rural\",\"Percentage of benefits going to the fourth quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.ben_q4_tot\",\"Benefits incidence in 4th quintile (%) - Domestic Private Transfers\",\"Percentage of benefits going to the fourth quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.ben_q4_urb\",\"Benefits incidence in 4th quintile (%) - Domestic Private Transfers -urban\",\"Percentage of benefits going to the fourth quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.ben_q5_preT_tot\",\"Benefits incidence in richest quintile (%) - Domestic Private Transfers (preT)\",\"Percentage of benefits going to the richestquintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.ben_q5_rur\",\"Benefits incidence in richest quintile (%) - Domestic Private Transfers -rural\",\"Percentage of benefits going to the richestquintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.ben_q5_tot\",\"Benefits incidence in richest quintile (%) - Domestic Private Transfers\",\"Percentage of benefits going to the richestquintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.ben_q5_urb\",\"Benefits incidence in richest quintile (%) - Domestic Private Transfers -urban\",\"Percentage of benefits going to the richestquintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.bry_ep_preT_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - Domestic Private Transfers (preT)\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.bry_ep_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - Domestic Private Transfers\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.bry_q1_preT_tot\",\"Beneficiary incidence in poorest quintile (%) - Domestic Private Transfers (preT)\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.bry_q1_rur\",\"Beneficiary incidence in poorest quintile (%) - Domestic Private Transfers -rural\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.bry_q1_tot\",\"Beneficiary incidence in poorest quintile (%) - Domestic Private Transfers\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.bry_q1_urb\",\"Beneficiary incidence in poorest quintile (%) - Domestic Private Transfers -urban\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.bry_q2_preT_tot\",\"Beneficiary incidence in 2nd quintile (%) - Domestic Private Transfers (preT)\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.bry_q2_rur\",\"Beneficiary incidence in 2nd quintile (%) - Domestic Private Transfers -rural\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.bry_q2_tot\",\"Beneficiary incidence in 2nd quintile (%) - Domestic Private Transfers\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.bry_q2_urb\",\"Beneficiary incidence in 2nd quintile (%) - Domestic Private Transfers -urban\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.bry_q3_preT_tot\",\"Beneficiary incidence in 3rd quintile (%) - Domestic Private Transfers (preT)\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.bry_q3_rur\",\"Beneficiary incidence in 3rd quintile (%) - Domestic Private Transfers -rural\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.bry_q3_tot\",\"Beneficiary incidence in 3rd quintile (%) - Domestic Private Transfers\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.bry_q3_urb\",\"Beneficiary incidence in 3rd quintile (%) - Domestic Private Transfers -urban\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.bry_q4_preT_tot\",\"Beneficiary incidence in 4th quintile (%) - Domestic Private Transfers (preT)\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.bry_q4_rur\",\"Beneficiary incidence in 4th quintile (%) - Domestic Private Transfers -rural\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.bry_q4_tot\",\"Beneficiary incidence in 4th quintile (%) - Domestic Private Transfers\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.bry_q4_urb\",\"Beneficiary incidence in 4th quintile (%) - Domestic Private Transfers -urban\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.bry_q5_preT_tot\",\"Beneficiary incidence in richest quintile (%) - Domestic Private Transfers (preT)\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.bry_q5_rur\",\"Beneficiary incidence in richest quintile (%) - Domestic Private Transfers -rural\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.bry_q5_tot\",\"Beneficiary incidence in richest quintile (%) - Domestic Private Transfers\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.bry_q5_urb\",\"Beneficiary incidence in richest quintile (%) - Domestic Private Transfers -urban\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.cba_ep_preT_tot\",\"Benefit-cost ratio -  Domestic Private Transfers -extreme poor (<$1.25 a day) (preT)\",\"Poverty gap reduction obtained for each $1 spent in SPL programs (%)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.cba_ep_tot\",\"Benefit-cost ratio -  Domestic Private Transfers -extreme poor (<$1.25 a day)\",\"Poverty gap reduction obtained for each $1 spent in SPL programs (%)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.cba_q1_preT_tot\",\"Benefit-cost ratio -  Domestic Private Transfers -poorest quintile (preT)\",\"Poverty gap reduction obtained for each $1 spent in SPL programs (%)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.cba_q1_rur\",\"Benefit-cost ratio -  Domestic Private Transfers -poorest quintile -rural\",\"Poverty gap reduction obtained for each $1 spent in SPL programs (%)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.cba_q1_tot\",\"Benefit-cost ratio -  Domestic Private Transfers -poorest quintile\",\"Poverty gap reduction obtained for each $1 spent in SPL programs (%)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.cba_q1_urb\",\"Benefit-cost ratio -  Domestic Private Transfers - poorest quintile -urban\",\"Poverty gap reduction obtained for each $1 spent in SPL programs (%)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.cov_ep_preT_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - Domestic Private Transfers (preT)\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.cov_ep_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - Domestic Private Transfers\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.cov_pop_preT_tot\",\"Coverage (%) - Domestic Private Transfers (preT)\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.cov_pop_rur\",\"Coverage (%) - Domestic Private Transfers -rural\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.cov_pop_tot\",\"Coverage (%) - Domestic Private Transfers\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.cov_pop_urb\",\"Coverage (%) - Domestic Private Transfers -urban\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.cov_q1_preT_tot\",\"Coverage in poorest quintile (%) - Domestic Private Transfers (preT)\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.cov_q1_rur\",\"Coverage in poorest quintile (%) - Domestic Private Transfers -rural\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.cov_q1_tot\",\"Coverage in poorest quintile (%) - Domestic Private Transfers\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.cov_q1_urb\",\"Coverage in poorest quintile (%) - Domestic Private Transfers -urban\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.cov_q2_preT_tot\",\"Coverage in 2nd quintile (%) - Domestic Private Transfers (preT)\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.cov_q2_rur\",\"Coverage in 2nd quintile (%) - Domestic Private Transfers -rural\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.cov_q2_tot\",\"Coverage in 2nd quintile (%) - Domestic Private Transfers\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.cov_q2_urb\",\"Coverage in 2nd quintile (%) - Domestic Private Transfers -urban\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.cov_q3_preT_tot\",\"Coverage in 3rd quintile (%) - Domestic Private Transfers (preT)\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.cov_q3_rur\",\"Coverage in 3rd quintile (%) - Domestic Private Transfers -rural\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.cov_q3_tot\",\"Coverage in 3rd quintile (%) - Domestic Private Transfers\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.cov_q3_urb\",\"Coverage in 3rd quintile (%) - Domestic Private Transfers -urban\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.cov_q4_preT_tot\",\"Coverage in 4th quintile (%) - Domestic Private Transfers (preT)\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.cov_q4_rur\",\"Coverage in 4th quintile (%) - Domestic Private Transfers -rural\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.cov_q4_tot\",\"Coverage in 4th quintile (%) - Domestic Private Transfers\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.cov_q4_urb\",\"Coverage in 4th quintile (%) - Domestic Private Transfers -urban\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.cov_q5_preT_tot\",\"Coverage in richest quintile (%) - Domestic Private Transfers (preT)\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.cov_q5_rur\",\"Coverage in richest quintile (%) - Domestic Private Transfers -rural\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.cov_q5_tot\",\"Coverage in richest quintile (%) - Domestic Private Transfers\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp.cov_q5_urb\",\"Coverage in richest quintile (%) - Domestic Private Transfers -urban\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp_gini_ep_preT_tot\",\"Gini inequality reduction (%) -  Domestic Private Transfers -extreme poor (<$1.25 a day) (preT)\",\"Gini inequality index reduction due to SPL programs as % of pre-transfer Gini index\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp_gini_ep_tot\",\"Gini inequality reduction (%) -  Domestic Private Transfers -extreme poor (<$1.25 a day)\",\"Gini inequality index reduction due to SPL programs as % of pre-transfer Gini index\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp_gini_preT_tot\",\"Gini inequality reduction (%) -  Domestic Private Transfers -poorest quintile (preT)\",\"Gini inequality index reduction due to SPL programs as % of pre-transfer Gini index\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp_gini_rur\",\"Gini inequality reduction (%) -  Domestic Private Transfers -poorest quintile -rural\",\"Gini inequality index reduction due to SPL programs as % of pre-transfer Gini index\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp_gini_tot\",\"Gini inequality reduction (%) -  Domestic Private Transfers -poorest quintile\",\"Gini inequality index reduction due to SPL programs as % of pre-transfer Gini index\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp_gini_urb\",\"Gini inequality reduction (%) -  Domestic Private Transfers - poorest quintile -urban\",\"Gini inequality index reduction due to SPL programs as % of pre-transfer Gini index\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp_p0_ep_preT_tot\",\"Poverty Headcount reduction (%) -  Domestic Private Transfers -extreme poor (<$1.25 a day) (preT)\",\"Poverty headcount reduction due to SPL programs as % of pre-transfer poverty headcount\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp_p0_ep_tot\",\"Poverty Headcount reduction (%) -  Domestic Private Transfers -extreme poor (<$1.25 a day)\",\"Poverty headcount reduction due to SPL programs as % of pre-transfer poverty headcount\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp_p0_preT_tot\",\"Poverty Headcount reduction (%) -  Domestic Private Transfers -poorest quintile (preT)\",\"Poverty headcount reduction due to SPL programs as % of pre-transfer poverty headcount\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp_p0_rur\",\"Poverty Headcount reduction (%) -  Domestic Private Transfers -poorest quintile -rural\",\"Poverty headcount reduction due to SPL programs as % of pre-transfer poverty headcount\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp_p0_tot\",\"Poverty Headcount reduction (%) -  Domestic Private Transfers -poorest quintile\",\"Poverty headcount reduction due to SPL programs as % of pre-transfer poverty headcount\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp_p0_urb\",\"Poverty Headcount reduction (%) -  Domestic Private Transfers - poorest quintile -urban\",\"Poverty headcount reduction due to SPL programs as % of pre-transfer poverty headcount\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp_p1_ep_preT_tot\",\"Poverty Gap reduction (%) -  Domestic Private Transfers -extreme poor (<$1.25 a day) (preT)\",\"Poverty gap reduction due to SPL programs as % of pre-transfer poverty gap\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp_p1_ep_tot\",\"Poverty Gap reduction (%) -  Domestic Private Transfers -extreme poor (<$1.25 a day)\",\"Poverty gap reduction due to SPL programs as % of pre-transfer poverty gap\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp_p1_preT_tot\",\"Poverty Gap reduction (%) -  Domestic Private Transfers -poorest quintile (preT)\",\"Poverty gap reduction due to SPL programs as % of pre-transfer poverty gap\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp_p1_rur\",\"Poverty Gap reduction (%) -  Domestic Private Transfers -poorest quintile -rural\",\"Poverty gap reduction due to SPL programs as % of pre-transfer poverty gap\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp_p1_tot\",\"Poverty Gap reduction (%) -  Domestic Private Transfers -poorest quintile\",\"Poverty gap reduction due to SPL programs as % of pre-transfer poverty gap\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_dp_p1_urb\",\"Poverty Gap reduction (%) -  Domestic Private Transfers - poorest quintile -urban\",\"Poverty gap reduction due to SPL programs as % of pre-transfer poverty gap\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.adq_ep_preT_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - International Private Transfers (preT)\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.adq_ep_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - International Private Transfers\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.adq_pop_preT_tot\",\"Adequacy of benefits (%) - International Private Transfers (preT)\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.adq_pop_rur\",\"Adequacy of benefits (%) - International Private Transfers -rural\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.adq_pop_tot\",\"Adequacy of benefits (%) - International Private Transfers\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.adq_pop_urb\",\"Adequacy of benefits (%) - International Private Transfers -urban\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.adq_q1_preT_tot\",\"Adequacy of benefits in poorest quintile (%) - International Private Transfers (preT)\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.adq_q1_rur\",\"Adequacy of benefits in poorest quintile (%) - International Private Transfers -rural\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.adq_q1_tot\",\"Adequacy of benefits in poorest quintile (%) - International Private Transfers\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.adq_q1_urb\",\"Adequacy of benefits in poorest quintile (%) - International Private Transfers -urban\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.adq_q2_preT_tot\",\"Adequacy of benefits in 2nd quintile (%) - International Private Transfers (preT)\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.adq_q2_rur\",\"Adequacy of benefits in 2nd quintile (%) - International Private Transfers -rural\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.adq_q2_tot\",\"Adequacy of benefits in 2nd quintile (%) - International Private Transfers\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.adq_q2_urb\",\"Adequacy of benefits in 2nd quintile (%) - International Private Transfers -urban\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.adq_q3_preT_tot\",\"Adequacy of benefits in 3rd quintile (%) - International Private Transfers (preT)\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.adq_q3_rur\",\"Adequacy of benefits in 3rd quintile (%) - International Private Transfers -rural\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.adq_q3_tot\",\"Adequacy of benefits in 3rd quintile (%) - International Private Transfers\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.adq_q3_urb\",\"Adequacy of benefits in 3rd quintile (%) - International Private Transfers -urban\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.adq_q4_preT_tot\",\"Adequacy of benefits in 4th quintile (%) - International Private Transfers (preT)\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.adq_q4_rur\",\"Adequacy of benefits in 4th quintile (%) - International Private Transfers -rural\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.adq_q4_tot\",\"Adequacy of benefits in 4th quintile (%) - International Private Transfers\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.adq_q4_urb\",\"Adequacy of benefits in 4th quintile (%) - International Private Transfers -urban\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.adq_q5_preT_tot\",\"Adequacy of benefits in richest quintile (%) - International Private Transfers (preT)\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.adq_q5_rur\",\"Adequacy of benefits in richest quintile (%) - International Private Transfers -rural\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.adq_q5_tot\",\"Adequacy of benefits in richest quintile (%) - International Private Transfers\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.adq_q5_urb\",\"Adequacy of benefits in richest quintile (%) - International Private Transfers -urban\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.avt_ep_preT_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - International Private Transfers (preT)\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.avt_ep_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - International Private Transfers\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.avt_pop_preT_tot\",\"Average per capita transfer - International Private Transfers (preT)\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.avt_pop_rur\",\"Average per capita transfer - International Private Transfers -rural\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.avt_pop_tot\",\"Average per capita transfer - International Private Transfers\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.avt_pop_urb\",\"Average per capita transfer - International Private Transfers -urban\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.avt_q1_preT_tot\",\"Average per capita transfer held by poorest quintile - International Private Transfers (preT)\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.avt_q1_rur\",\"Average per capita transfer held by poorest quintile - International Private Transfers -rural\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.avt_q1_tot\",\"Average per capita transfer held by poorest quintile - International Private Transfers\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.avt_q1_urb\",\"Average per capita transfer held by poorest quintile - International Private Transfers -urban\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.avt_q2_preT_tot\",\"Average per capita transfer held by 2nd quintile - International Private Transfers (preT)\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.avt_q2_rur\",\"Average per capita transfer held by 2nd quintile - International Private Transfers -rural\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.avt_q2_tot\",\"Average per capita transfer held by 2nd quintile - International Private Transfers\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.avt_q2_urb\",\"Average per capita transfer held by 2nd quintile - International Private Transfers -urban\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.avt_q3_preT_tot\",\"Average per capita transfer held by 3rd quintile - International Private Transfers (preT)\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.avt_q3_rur\",\"Average per capita transfer held by 3rd quintile - International Private Transfers -rural\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.avt_q3_tot\",\"Average per capita transfer held by 3rd quintile - International Private Transfers\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.avt_q3_urb\",\"Average per capita transfer held by 3rd quintile - International Private Transfers -urban\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.avt_q4_preT_tot\",\"Average per capita transfer held by 4th quintile - International Private Transfers (preT)\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.avt_q4_rur\",\"Average per capita transfer held by 4th quintile - International Private Transfers -rural\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.avt_q4_tot\",\"Average per capita transfer held by 4th quintile - International Private Transfers\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.avt_q4_urb\",\"Average per capita transfer held by 4th quintile - International Private Transfers -urban\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.avt_q5_preT_tot\",\"Average per capita transfer held by richest quintile - International Private Transfers (preT)\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.avt_q5_rur\",\"Average per capita transfer held by richest quintile - International Private Transfers -rural\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.avt_q5_tot\",\"Average per capita transfer held by richest quintile - International Private Transfers\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.avt_q5_urb\",\"Average per capita transfer held by richest quintile - International Private Transfers -urban\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.ben_ep_preT_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - International Private Transfers (preT)\",\"Percentage of benefits going to the extreme poor (those below $125 a day)  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.ben_ep_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - International Private Transfers\",\"Percentage of benefits going to the extreme poor (those below $125 a day)  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.ben_q1_preT_tot\",\"Benefits incidence in poorest quintile (%) - International Private Transfers (preT)\",\"Percentage of benefits going to the poorest quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.ben_q1_rur\",\"Benefits incidence in poorest quintile (%) - International Private Transfers -rural\",\"Percentage of benefits going to the poorest quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.ben_q1_tot\",\"Benefits incidence in poorest quintile (%) - International Private Transfers\",\"Percentage of benefits going to the poorest quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.ben_q1_urb\",\"Benefits incidence in poorest quintile (%) - International Private Transfers -urban\",\"Percentage of benefits going to the poorest quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.ben_q2_preT_tot\",\"Benefits incidence in 2nd quintile (%) - International Private Transfers (preT)\",\"Percentage of benefits going to the second quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.ben_q2_rur\",\"Benefits incidence in 2nd quintile (%) - International Private Transfers -rural\",\"Percentage of benefits going to the second quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.ben_q2_tot\",\"Benefits incidence in 2nd quintile (%) - International Private Transfers\",\"Percentage of benefits going to the second quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.ben_q2_urb\",\"Benefits incidence in 2nd quintile (%) - International Private Transfers -urban\",\"Percentage of benefits going to the second quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.ben_q3_preT_tot\",\"Benefits incidence in 3rd quintile (%) - International Private Transfers (preT)\",\"Percentage of benefits going to the third quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.ben_q3_rur\",\"Benefits incidence in 3rd quintile (%) - International Private Transfers -rural\",\"Percentage of benefits going to the third quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.ben_q3_tot\",\"Benefits incidence in 3rd quintile (%) - International Private Transfers\",\"Percentage of benefits going to the third quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.ben_q3_urb\",\"Benefits incidence in 3rd quintile (%) - International Private Transfers -urban\",\"Percentage of benefits going to the third quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.ben_q4_preT_tot\",\"Benefits incidence in 4th quintile (%) - International Private Transfers (preT)\",\"Percentage of benefits going to the fourth quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.ben_q4_rur\",\"Benefits incidence in 4th quintile (%) - International Private Transfers -rural\",\"Percentage of benefits going to the fourth quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.ben_q4_tot\",\"Benefits incidence in 4th quintile (%) - International Private Transfers\",\"Percentage of benefits going to the fourth quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.ben_q4_urb\",\"Benefits incidence in 4th quintile (%) - International Private Transfers -urban\",\"Percentage of benefits going to the fourth quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.ben_q5_preT_tot\",\"Benefits incidence in richest quintile (%) - International Private Transfers (preT)\",\"Percentage of benefits going to the richestquintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.ben_q5_rur\",\"Benefits incidence in richest quintile (%) - International Private Transfers -rural\",\"Percentage of benefits going to the richestquintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.ben_q5_tot\",\"Benefits incidence in richest quintile (%) - International Private Transfers\",\"Percentage of benefits going to the richestquintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.ben_q5_urb\",\"Benefits incidence in richest quintile (%) - International Private Transfers -urban\",\"Percentage of benefits going to the richestquintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.bry_ep_preT_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - International Private Transfers (preT)\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.bry_ep_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - International Private Transfers\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.bry_q1_preT_tot\",\"Beneficiary incidence in poorest quintile (%) - International Private Transfers (preT)\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.bry_q1_rur\",\"Beneficiary incidence in poorest quintile (%) - International Private Transfers -rural\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.bry_q1_tot\",\"Beneficiary incidence in poorest quintile (%) - International Private Transfers\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.bry_q1_urb\",\"Beneficiary incidence in poorest quintile (%) - International Private Transfers -urban\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.bry_q2_preT_tot\",\"Beneficiary incidence in 2nd quintile (%) - International Private Transfers (preT)\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.bry_q2_rur\",\"Beneficiary incidence in 2nd quintile (%) - International Private Transfers -rural\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.bry_q2_tot\",\"Beneficiary incidence in 2nd quintile (%) - International Private Transfers\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.bry_q2_urb\",\"Beneficiary incidence in 2nd quintile (%) - International Private Transfers -urban\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.bry_q3_preT_tot\",\"Beneficiary incidence in 3rd quintile (%) - International Private Transfers (preT)\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.bry_q3_rur\",\"Beneficiary incidence in 3rd quintile (%) - International Private Transfers -rural\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.bry_q3_tot\",\"Beneficiary incidence in 3rd quintile (%) - International Private Transfers\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.bry_q3_urb\",\"Beneficiary incidence in 3rd quintile (%) - International Private Transfers -urban\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.bry_q4_preT_tot\",\"Beneficiary incidence in 4th quintile (%) - International Private Transfers (preT)\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.bry_q4_rur\",\"Beneficiary incidence in 4th quintile (%) - International Private Transfers -rural\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.bry_q4_tot\",\"Beneficiary incidence in 4th quintile (%) - International Private Transfers\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.bry_q4_urb\",\"Beneficiary incidence in 4th quintile (%) - International Private Transfers -urban\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.bry_q5_preT_tot\",\"Beneficiary incidence in richest quintile (%) - International Private Transfers (preT)\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.bry_q5_rur\",\"Beneficiary incidence in richest quintile (%) - International Private Transfers -rural\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.bry_q5_tot\",\"Beneficiary incidence in richest quintile (%) - International Private Transfers\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.bry_q5_urb\",\"Beneficiary incidence in richest quintile (%) - International Private Transfers -urban\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.cba_ep_preT_tot\",\"Benefit-cost ratio -  International Private Transfers -extreme poor (<$1.25 a day) (preT)\",\"Poverty gap reduction obtained for each $1 spent in SPL programs (%)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.cba_ep_tot\",\"Benefit-cost ratio -  International Private Transfers -extreme poor (<$1.25 a day)\",\"Poverty gap reduction obtained for each $1 spent in SPL programs (%)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.cba_q1_preT_tot\",\"Benefit-cost ratio -  International Private Transfers -poorest quintile (preT)\",\"Poverty gap reduction obtained for each $1 spent in SPL programs (%)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.cba_q1_rur\",\"Benefit-cost ratio -  International Private Transfers -poorest quintile -rural\",\"Poverty gap reduction obtained for each $1 spent in SPL programs (%)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.cba_q1_tot\",\"Benefit-cost ratio -  International Private Transfers -poorest quintile\",\"Poverty gap reduction obtained for each $1 spent in SPL programs (%)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.cba_q1_urb\",\"Benefit-cost ratio -  International Private Transfers - poorest quintile -urban\",\"Poverty gap reduction obtained for each $1 spent in SPL programs (%)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.cov_ep_preT_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - International Private Transfers (preT)\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.cov_ep_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - International Private Transfers\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.cov_pop_preT_tot\",\"Coverage (%) - International Private Transfers (preT)\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.cov_pop_rur\",\"Coverage (%) - International Private Transfers -rural\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.cov_pop_tot\",\"Coverage (%) - International Private Transfers\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.cov_pop_urb\",\"Coverage (%) - International Private Transfers -urban\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.cov_q1_preT_tot\",\"Coverage in poorest quintile (%) - International Private Transfers (preT)\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.cov_q1_rur\",\"Coverage in poorest quintile (%) - International Private Transfers -rural\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.cov_q1_tot\",\"Coverage in poorest quintile (%) - International Private Transfers\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.cov_q1_urb\",\"Coverage in poorest quintile (%) - International Private Transfers -urban\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.cov_q2_preT_tot\",\"Coverage in 2nd quintile (%) - International Private Transfers (preT)\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.cov_q2_rur\",\"Coverage in 2nd quintile (%) - International Private Transfers -rural\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.cov_q2_tot\",\"Coverage in 2nd quintile (%) - International Private Transfers\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.cov_q2_urb\",\"Coverage in 2nd quintile (%) - International Private Transfers -urban\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.cov_q3_preT_tot\",\"Coverage in 3rd quintile (%) - International Private Transfers (preT)\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.cov_q3_rur\",\"Coverage in 3rd quintile (%) - International Private Transfers -rural\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.cov_q3_tot\",\"Coverage in 3rd quintile (%) - International Private Transfers\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.cov_q3_urb\",\"Coverage in 3rd quintile (%) - International Private Transfers -urban\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.cov_q4_preT_tot\",\"Coverage in 4th quintile (%) - International Private Transfers (preT)\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.cov_q4_rur\",\"Coverage in 4th quintile (%) - International Private Transfers -rural\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.cov_q4_tot\",\"Coverage in 4th quintile (%) - International Private Transfers\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.cov_q4_urb\",\"Coverage in 4th quintile (%) - International Private Transfers -urban\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.cov_q5_preT_tot\",\"Coverage in richest quintile (%) - International Private Transfers (preT)\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.cov_q5_rur\",\"Coverage in richest quintile (%) - International Private Transfers -rural\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.cov_q5_tot\",\"Coverage in richest quintile (%) - International Private Transfers\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip.cov_q5_urb\",\"Coverage in richest quintile (%) - International Private Transfers -urban\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip_gini_ep_preT_tot\",\"Gini inequality reduction (%) -  International Private Transfers -extreme poor (<$1.25 a day) (preT)\",\"Gini inequality index reduction due to SPL programs as % of pre-transfer Gini index\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip_gini_ep_tot\",\"Gini inequality reduction (%) -  International Private Transfers -extreme poor (<$1.25 a day)\",\"Gini inequality index reduction due to SPL programs as % of pre-transfer Gini index\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip_gini_preT_tot\",\"Gini inequality reduction (%) -  International Private Transfers -poorest quintile (preT)\",\"Gini inequality index reduction due to SPL programs as % of pre-transfer Gini index\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip_gini_rur\",\"Gini inequality reduction (%) -  International Private Transfers -poorest quintile -rural\",\"Gini inequality index reduction due to SPL programs as % of pre-transfer Gini index\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip_gini_tot\",\"Gini inequality reduction (%) -  International Private Transfers -poorest quintile\",\"Gini inequality index reduction due to SPL programs as % of pre-transfer Gini index\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip_gini_urb\",\"Gini inequality reduction (%) -  International Private Transfers - poorest quintile -urban\",\"Gini inequality index reduction due to SPL programs as % of pre-transfer Gini index\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip_p0_ep_preT_tot\",\"Poverty Headcount reduction (%) -  International Private Transfers -extreme poor (<$1.25 a day) (preT)\",\"Poverty headcount reduction due to SPL programs as % of pre-transfer poverty headcount\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip_p0_ep_tot\",\"Poverty Headcount reduction (%) -  International Private Transfers -extreme poor (<$1.25 a day)\",\"Poverty headcount reduction due to SPL programs as % of pre-transfer poverty headcount\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip_p0_preT_tot\",\"Poverty Headcount reduction (%) -  International Private Transfers -poorest quintile (preT)\",\"Poverty headcount reduction due to SPL programs as % of pre-transfer poverty headcount\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip_p0_rur\",\"Poverty Headcount reduction (%) -  International Private Transfers -poorest quintile -rural\",\"Poverty headcount reduction due to SPL programs as % of pre-transfer poverty headcount\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip_p0_tot\",\"Poverty Headcount reduction (%) -  International Private Transfers -poorest quintile\",\"Poverty headcount reduction due to SPL programs as % of pre-transfer poverty headcount\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip_p0_urb\",\"Poverty Headcount reduction (%) -  International Private Transfers - poorest quintile -urban\",\"Poverty headcount reduction due to SPL programs as % of pre-transfer poverty headcount\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip_p1_ep_preT_tot\",\"Poverty Gap reduction (%) -  International Private Transfers -extreme poor (<$1.25 a day) (preT)\",\"Poverty gap reduction due to SPL programs as % of pre-transfer poverty gap\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip_p1_ep_tot\",\"Poverty Gap reduction (%) -  International Private Transfers -extreme poor (<$1.25 a day)\",\"Poverty gap reduction due to SPL programs as % of pre-transfer poverty gap\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip_p1_preT_tot\",\"Poverty Gap reduction (%) -  International Private Transfers -poorest quintile (preT)\",\"Poverty gap reduction due to SPL programs as % of pre-transfer poverty gap\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip_p1_rur\",\"Poverty Gap reduction (%) -  International Private Transfers -poorest quintile -rural\",\"Poverty gap reduction due to SPL programs as % of pre-transfer poverty gap\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip_p1_tot\",\"Poverty Gap reduction (%) -  International Private Transfers -poorest quintile\",\"Poverty gap reduction due to SPL programs as % of pre-transfer poverty gap\",\"Global Social Protection\",\"ASPIRE\"\n\"per_pr_ip_p1_urb\",\"Poverty Gap reduction (%) -  International Private Transfers - poorest quintile -urban\",\"Poverty gap reduction due to SPL programs as % of pre-transfer poverty gap\",\"Global Social Protection\",\"ASPIRE\"\n\"per_rem.adq_ep_preT_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - Private Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.adq_ep_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - Private Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.adq_pop_preT_tot\",\"Adequacy of benefits (%) - Private Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.adq_pop_rur\",\"Adequacy of benefits (%) - Private Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.adq_pop_tot\",\"Adequacy of benefits (%) - Private Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.adq_pop_urb\",\"Adequacy of benefits (%) - Private Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.adq_q1_preT_tot\",\"Adequacy of benefits in poorest quintile (%) - Private Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.adq_q1_rur\",\"Adequacy of benefits in poorest quintile (%) - Private Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.adq_q1_tot\",\"Adequacy of benefits in poorest quintile (%) - Private Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.adq_q1_urb\",\"Adequacy of benefits in poorest quintile (%) - Private Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.adq_q2_preT_tot\",\"Adequacy of benefits in 2nd quintile (%) - Private Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.adq_q2_rur\",\"Adequacy of benefits in 2nd quintile (%) - Private Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.adq_q2_tot\",\"Adequacy of benefits in 2nd quintile (%) - Private Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.adq_q2_urb\",\"Adequacy of benefits in 2nd quintile (%) - Private Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.adq_q3_preT_tot\",\"Adequacy of benefits in 3rd quintile (%) - Private Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.adq_q3_rur\",\"Adequacy of benefits in 3rd quintile (%) - Private Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.adq_q3_tot\",\"Adequacy of benefits in 3rd quintile (%) - Private Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.adq_q3_urb\",\"Adequacy of benefits in 3rd quintile (%) - Private Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.adq_q4_preT_tot\",\"Adequacy of benefits in 4th quintile (%) - Private Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.adq_q4_rur\",\"Adequacy of benefits in 4th quintile (%) - Private Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.adq_q4_tot\",\"Adequacy of benefits in 4th quintile (%) - Private Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.adq_q4_urb\",\"Adequacy of benefits in 4th quintile (%) - Private Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.adq_q5_preT_tot\",\"Adequacy of benefits in richest quintile (%) - Private Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.adq_q5_rur\",\"Adequacy of benefits in richest quintile (%) - Private Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.adq_q5_tot\",\"Adequacy of benefits in richest quintile (%) - Private Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.adq_q5_urb\",\"Adequacy of benefits in richest quintile (%) - Private Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.avt_ep_preT_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - Private Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.avt_ep_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - Private Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.avt_pop_preT_tot\",\"Average per capita transfer - Private Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.avt_pop_rur\",\"Average per capita transfer - Private Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.avt_pop_tot\",\"Average per capita transfer - Private Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.avt_pop_urb\",\"Average per capita transfer - Private Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.avt_q1_preT_tot\",\"Average per capita transfer held by poorest quintile - Private Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.avt_q1_rur\",\"Average per capita transfer held by poorest quintile - Private Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.avt_q1_tot\",\"Average per capita transfer held by poorest quintile - Private Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.avt_q1_urb\",\"Average per capita transfer held by poorest quintile - Private Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.avt_q2_preT_tot\",\"Average per capita transfer held by 2nd quintile - Private Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.avt_q2_rur\",\"Average per capita transfer held by 2nd quintile - Private Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.avt_q2_tot\",\"Average per capita transfer held by 2nd quintile - Private Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.avt_q2_urb\",\"Average per capita transfer held by 2nd quintile - Private Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.avt_q3_preT_tot\",\"Average per capita transfer held by 3rd quintile - Private Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.avt_q3_rur\",\"Average per capita transfer held by 3rd quintile - Private Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.avt_q3_tot\",\"Average per capita transfer held by 3rd quintile - Private Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.avt_q3_urb\",\"Average per capita transfer held by 3rd quintile - Private Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.avt_q4_preT_tot\",\"Average per capita transfer held by 4th quintile - Private Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.avt_q4_rur\",\"Average per capita transfer held by 4th quintile - Private Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.avt_q4_tot\",\"Average per capita transfer held by 4th quintile - Private Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.avt_q4_urb\",\"Average per capita transfer held by 4th quintile - Private Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.avt_q5_preT_tot\",\"Average per capita transfer held by richest quintile - Private Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.avt_q5_rur\",\"Average per capita transfer held by richest quintile - Private Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.avt_q5_tot\",\"Average per capita transfer held by richest quintile - Private Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.avt_q5_urb\",\"Average per capita transfer held by richest quintile - Private Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.ben_ep_preT_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - Private Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.ben_ep_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - Private Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.ben_q1_preT_tot\",\"Benefits incidence in poorest quintile (%) - Private Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.ben_q1_rur\",\"Benefits incidence in poorest quintile (%) - Private Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.ben_q1_tot\",\"Benefits incidence in poorest quintile (%) - Private Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.ben_q1_urb\",\"Benefits incidence in poorest quintile (%) - Private Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.ben_q2_preT_tot\",\"Benefits incidence in 2nd quintile (%) - Private Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.ben_q2_rur\",\"Benefits incidence in 2nd quintile (%) - Private Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.ben_q2_tot\",\"Benefits incidence in 2nd quintile (%) - Private Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.ben_q2_urb\",\"Benefits incidence in 2nd quintile (%) - Private Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.ben_q3_preT_tot\",\"Benefits incidence in 3rd quintile (%) - Private Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.ben_q3_rur\",\"Benefits incidence in 3rd quintile (%) - Private Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.ben_q3_tot\",\"Benefits incidence in 3rd quintile (%) - Private Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.ben_q3_urb\",\"Benefits incidence in 3rd quintile (%) - Private Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.ben_q4_preT_tot\",\"Benefits incidence in 4th quintile (%) - Private Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.ben_q4_rur\",\"Benefits incidence in 4th quintile (%) - Private Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.ben_q4_tot\",\"Benefits incidence in 4th quintile (%) - Private Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.ben_q4_urb\",\"Benefits incidence in 4th quintile (%) - Private Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.ben_q5_preT_tot\",\"Benefits incidence in richest quintile (%) - Private Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.ben_q5_rur\",\"Benefits incidence in richest quintile (%) - Private Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.ben_q5_tot\",\"Benefits incidence in richest quintile (%) - Private Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.ben_q5_urb\",\"Benefits incidence in richest quintile (%) - Private Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.bry_ep_preT_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - Private Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.bry_ep_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - Private Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.bry_q1_preT_tot\",\"Beneficiary incidence in poorest quintile (%) - Private Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.bry_q1_rur\",\"Beneficiary incidence in poorest quintile (%) - Private Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.bry_q1_tot\",\"Beneficiary incidence in poorest quintile (%) - Private Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.bry_q1_urb\",\"Beneficiary incidence in poorest quintile (%) - Private Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.bry_q2_preT_tot\",\"Beneficiary incidence in 2nd quintile (%) - Private Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.bry_q2_rur\",\"Beneficiary incidence in 2nd quintile (%) - Private Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.bry_q2_tot\",\"Beneficiary incidence in 2nd quintile (%) - Private Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.bry_q2_urb\",\"Beneficiary incidence in 2nd quintile (%) - Private Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.bry_q3_preT_tot\",\"Beneficiary incidence in 3rd quintile (%) - Private Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.bry_q3_rur\",\"Beneficiary incidence in 3rd quintile (%) - Private Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.bry_q3_tot\",\"Beneficiary incidence in 3rd quintile (%) - Private Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.bry_q3_urb\",\"Beneficiary incidence in 3rd quintile (%) - Private Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.bry_q4_preT_tot\",\"Beneficiary incidence in 4th quintile (%) - Private Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.bry_q4_rur\",\"Beneficiary incidence in 4th quintile (%) - Private Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.bry_q4_tot\",\"Beneficiary incidence in 4th quintile (%) - Private Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.bry_q4_urb\",\"Beneficiary incidence in 4th quintile (%) - Private Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.bry_q5_preT_tot\",\"Beneficiary incidence in richest quintile (%) - Private Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.bry_q5_rur\",\"Beneficiary incidence in richest quintile (%) - Private Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.bry_q5_tot\",\"Beneficiary incidence in richest quintile (%) - Private Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.bry_q5_urb\",\"Beneficiary incidence in richest quintile (%) - Private Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.cba_ep_preT_tot\",\"Benefit-cost ratio -  Private Transfers -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.cba_ep_tot\",\"Benefit-cost ratio -  Private Transfers -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.cba_q1_preT_tot\",\"Benefit-cost ratio -  Private Transfers -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.cba_q1_rur\",\"Benefit-cost ratio -  Private Transfers -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.cba_q1_tot\",\"Benefit-cost ratio -  Private Transfers -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.cba_q1_urb\",\"Benefit-cost ratio -  Private Transfers - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.cov_ep_preT_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - Private Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.cov_ep_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - Private Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.cov_pop_preT_tot\",\"Coverage (%) - Private Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.cov_pop_rur\",\"Coverage (%) - Private Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.cov_pop_tot\",\"Coverage (%) - Private Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.cov_pop_urb\",\"Coverage (%) - Private Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.cov_q1_preT_tot\",\"Coverage in poorest quintile (%) - Private Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.cov_q1_rur\",\"Coverage in poorest quintile (%) - Private Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.cov_q1_tot\",\"Coverage in poorest quintile (%) - Private Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.cov_q1_urb\",\"Coverage in poorest quintile (%) - Private Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.cov_q2_preT_tot\",\"Coverage in 2nd quintile (%) - Private Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.cov_q2_rur\",\"Coverage in 2nd quintile (%) - Private Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.cov_q2_tot\",\"Coverage in 2nd quintile (%) - Private Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.cov_q2_urb\",\"Coverage in 2nd quintile (%) - Private Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.cov_q3_preT_tot\",\"Coverage in 3rd quintile (%) - Private Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.cov_q3_rur\",\"Coverage in 3rd quintile (%) - Private Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.cov_q3_tot\",\"Coverage in 3rd quintile (%) - Private Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.cov_q3_urb\",\"Coverage in 3rd quintile (%) - Private Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.cov_q4_preT_tot\",\"Coverage in 4th quintile (%) - Private Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.cov_q4_rur\",\"Coverage in 4th quintile (%) - Private Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.cov_q4_tot\",\"Coverage in 4th quintile (%) - Private Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.cov_q4_urb\",\"Coverage in 4th quintile (%) - Private Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.cov_q5_preT_tot\",\"Coverage in richest quintile (%) - Private Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.cov_q5_rur\",\"Coverage in richest quintile (%) - Private Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.cov_q5_tot\",\"Coverage in richest quintile (%) - Private Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem.cov_q5_urb\",\"Coverage in richest quintile (%) - Private Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem_gini_ep_preT_tot\",\"Gini inequality reduction (%) -  Private Transfers -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem_gini_ep_tot\",\"Gini inequality reduction (%) -  Private Transfers -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem_gini_preT_tot\",\"Gini inequality reduction (%) -  Private Transfers -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem_gini_rur\",\"Gini inequality reduction (%) -  Private Transfers -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem_gini_tot\",\"Gini inequality reduction (%) -  Private Transfers -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem_gini_urb\",\"Gini inequality reduction (%) -  Private Transfers - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem_p0_ep_preT_tot\",\"Poverty Headcount reduction (%) -  Private Transfers -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem_p0_ep_tot\",\"Poverty Headcount reduction (%) -  Private Transfers -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem_p0_preT_tot\",\"Poverty Headcount reduction (%) -  Private Transfers -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem_p0_rur\",\"Poverty Headcount reduction (%) -  Private Transfers -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem_p0_tot\",\"Poverty Headcount reduction (%) -  Private Transfers -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem_p0_urb\",\"Poverty Headcount reduction (%) -  Private Transfers - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem_p1_ep_preT_tot\",\"Poverty Gap reduction (%) -  Private Transfers -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem_p1_ep_tot\",\"Poverty Gap reduction (%) -  Private Transfers -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem_p1_preT_tot\",\"Poverty Gap reduction (%) -  Private Transfers -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem_p1_rur\",\"Poverty Gap reduction (%) -  Private Transfers -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem_p1_tot\",\"Poverty Gap reduction (%) -  Private Transfers -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_rem_p1_urb\",\"Poverty Gap reduction (%) -  Private Transfers - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.adq_ep_preT_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - All Social Assistance  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.adq_ep_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - All Social Assistance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.adq_pop_preT_tot\",\"Adequacy of benefits (%) - All Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.adq_pop_rur\",\"Adequacy of benefits (%) - All Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.adq_pop_tot\",\"Adequacy of social safety net programs (% of total welfare of beneficiary households)\",\"Adequacy of social safety net programs is measured by the total transfer amount received by the population participating in social safety net programs as a share of their total welfare. Welfare is defined as the total income or total expenditure of beneficiary households. Social safety net programs include cash transfers and last resort programs, noncontributory social pensions, other cash transfers programs (child, family and orphan allowances, birth and death grants, disability benefits, and other allowances), conditional cash transfers, in-kind food transfers (food stamps and vouchers, food rations, supplementary feeding, and emergency food distribution), school feeding, other social assistance programs (housing allowances, scholarships, fee waivers, health subsidies, and other social assistance) and public works programs (cash for work and food for work). Estimates include both direct and indirect beneficiaries.\",\"World Development Indicators\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.adq_pop_urb\",\"Adequacy of benefits (%) - All Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.adq_q1_preT_tot\",\"Adequacy of benefits in poorest quintile (%) - All Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.adq_q1_rur\",\"Adequacy of benefits in poorest quintile (%) - All Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.adq_q1_tot\",\"Adequacy of benefits in poorest quintile (%) - All Social Assistance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.adq_q1_urb\",\"Adequacy of benefits in poorest quintile (%) - All Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.adq_q2_preT_tot\",\"Adequacy of benefits in 2nd quintile (%) - All Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.adq_q2_rur\",\"Adequacy of benefits in 2nd quintile (%) - All Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.adq_q2_tot\",\"Adequacy of benefits in 2nd quintile (%) - All Social Assistance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.adq_q2_urb\",\"Adequacy of benefits in 2nd quintile (%) - All Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.adq_q3_preT_tot\",\"Adequacy of benefits in 3rd quintile (%) - All Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.adq_q3_rur\",\"Adequacy of benefits in 3rd quintile (%) - All Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.adq_q3_tot\",\"Adequacy of benefits in 3rd quintile (%) - All Social Assistance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.adq_q3_urb\",\"Adequacy of benefits in 3rd quintile (%) - All Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.adq_q4_preT_tot\",\"Adequacy of benefits in 4th quintile (%) - All Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.adq_q4_rur\",\"Adequacy of benefits in 4th quintile (%) - All Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.adq_q4_tot\",\"Adequacy of benefits in 4th quintile (%) - All Social Assistance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.adq_q4_urb\",\"Adequacy of benefits in 4th quintile (%) - All Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.adq_q5_preT_tot\",\"Adequacy of benefits in richest quintile (%) - All Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.adq_q5_rur\",\"Adequacy of benefits in richest quintile (%) - All Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.adq_q5_tot\",\"Adequacy of benefits in richest quintile (%) - All Social Assistance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.adq_q5_urb\",\"Adequacy of benefits in richest quintile (%) - All Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.avt_ep_preT_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - All Social Assistance  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.avt_ep_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - All Social Assistance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.avt_pop_preT_tot\",\"Average per capita transfer - All Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.avt_pop_rur\",\"Average per capita transfer - All Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.avt_pop_tot\",\"Average per capita transfer - All Social Assistance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.avt_pop_urb\",\"Average per capita transfer - All Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.avt_q1_preT_tot\",\"Average per capita transfer held by poorest quintile - All Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.avt_q1_rur\",\"Average per capita transfer held by poorest quintile - All Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.avt_q1_tot\",\"Average per capita transfer held by poorest quintile - All Social Assistance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.avt_q1_urb\",\"Average per capita transfer held by poorest quintile - All Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.avt_q2_preT_tot\",\"Average per capita transfer held by 2nd quintile - All Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.avt_q2_rur\",\"Average per capita transfer held by 2nd quintile - All Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.avt_q2_tot\",\"Average per capita transfer held by 2nd quintile - All Social Assistance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.avt_q2_urb\",\"Average per capita transfer held by 2nd quintile - All Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.avt_q3_preT_tot\",\"Average per capita transfer held by 3rd quintile - All Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.avt_q3_rur\",\"Average per capita transfer held by 3rd quintile - All Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.avt_q3_tot\",\"Average per capita transfer held by 3rd quintile - All Social Assistance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.avt_q3_urb\",\"Average per capita transfer held by 3rd quintile - All Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.avt_q4_preT_tot\",\"Average per capita transfer held by 4th quintile - All Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.avt_q4_rur\",\"Average per capita transfer held by 4th quintile - All Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.avt_q4_tot\",\"Average per capita transfer held by 4th quintile - All Social Assistance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.avt_q4_urb\",\"Average per capita transfer held by 4th quintile - All Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.avt_q5_preT_tot\",\"Average per capita transfer held by richest quintile - All Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.avt_q5_rur\",\"Average per capita transfer held by richest quintile - All Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.avt_q5_tot\",\"Average per capita transfer held by richest quintile - All Social Assistance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.avt_q5_urb\",\"Average per capita transfer held by richest quintile - All Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.ben_ep_preT_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - All Social Assistance  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.ben_ep_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - All Social Assistance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.ben_q1_preT_tot\",\"Benefits incidence in poorest quintile (%) - All Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.ben_q1_rur\",\"Benefits incidence in poorest quintile (%) - All Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.ben_q1_tot\",\"Benefits incidence in poorest quintile (%) - All Social Assistance \",\"NULL\",\"World Development Indicators\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.ben_q1_urb\",\"Benefits incidence in poorest quintile (%) - All Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.ben_q2_preT_tot\",\"Benefits incidence in 2nd quintile (%) - All Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.ben_q2_rur\",\"Benefits incidence in 2nd quintile (%) - All Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.ben_q2_tot\",\"Benefits incidence in 2nd quintile (%) - All Social Assistance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.ben_q2_urb\",\"Benefits incidence in 2nd quintile (%) - All Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.ben_q3_preT_tot\",\"Benefits incidence in 3rd quintile (%) - All Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.ben_q3_rur\",\"Benefits incidence in 3rd quintile (%) - All Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.ben_q3_tot\",\"Benefits incidence in 3rd quintile (%) - All Social Assistance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.ben_q3_urb\",\"Benefits incidence in 3rd quintile (%) - All Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.ben_q4_preT_tot\",\"Benefits incidence in 4th quintile (%) - All Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.ben_q4_rur\",\"Benefits incidence in 4th quintile (%) - All Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.ben_q4_tot\",\"Benefits incidence in 4th quintile (%) - All Social Assistance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.ben_q4_urb\",\"Benefits incidence in 4th quintile (%) - All Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.ben_q5_preT_tot\",\"Benefits incidence in richest quintile (%) - All Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.ben_q5_rur\",\"Benefits incidence in richest quintile (%) - All Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.ben_q5_tot\",\"Benefits incidence in richest quintile (%) - All Social Assistance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.ben_q5_urb\",\"Benefits incidence in richest quintile (%) - All Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.bry_ep_preT_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - All Social Assistance  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.bry_ep_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - All Social Assistance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.bry_q1_preT_tot\",\"Beneficiary incidence in poorest quintile (%) - All Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.bry_q1_rur\",\"Beneficiary incidence in poorest quintile (%) - All Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.bry_q1_tot\",\"Beneficiary incidence in poorest quintile (%) - All Social Assistance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.bry_q1_urb\",\"Beneficiary incidence in poorest quintile (%) - All Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.bry_q2_preT_tot\",\"Beneficiary incidence in 2nd quintile (%) - All Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.bry_q2_rur\",\"Beneficiary incidence in 2nd quintile (%) - All Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.bry_q2_tot\",\"Beneficiary incidence in 2nd quintile (%) - All Social Assistance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.bry_q2_urb\",\"Beneficiary incidence in 2nd quintile (%) - All Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.bry_q3_preT_tot\",\"Beneficiary incidence in 3rd quintile (%) - All Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.bry_q3_rur\",\"Beneficiary incidence in 3rd quintile (%) - All Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.bry_q3_tot\",\"Beneficiary incidence in 3rd quintile (%) - All Social Assistance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.bry_q3_urb\",\"Beneficiary incidence in 3rd quintile (%) - All Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.bry_q4_preT_tot\",\"Beneficiary incidence in 4th quintile (%) - All Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.bry_q4_rur\",\"Beneficiary incidence in 4th quintile (%) - All Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.bry_q4_tot\",\"Beneficiary incidence in 4th quintile (%) - All Social Assistance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.bry_q4_urb\",\"Beneficiary incidence in 4th quintile (%) - All Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.bry_q5_preT_tot\",\"Beneficiary incidence in richest quintile (%) - All Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.bry_q5_rur\",\"Beneficiary incidence in richest quintile (%) - All Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.bry_q5_tot\",\"Beneficiary incidence in richest quintile (%) - All Social Assistance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.bry_q5_urb\",\"Beneficiary incidence in richest quintile (%) - All Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.cba_ep_preT_tot\",\"Benefit-cost ratio -  All Social Assistance -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.cba_ep_tot\",\"Benefit-cost ratio -  All Social Assistance -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.cba_q1_preT_tot\",\"Benefit-cost ratio -  All Social Assistance -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.cba_q1_rur\",\"Benefit-cost ratio -  All Social Assistance -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.cba_q1_tot\",\"Benefit-cost ratio -  All Social Assistance -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.cba_q1_urb\",\"Benefit-cost ratio -  All Social Assistance - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.cov_ep_preT_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - All Social Assistance  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.cov_ep_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - All Social Assistance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.cov_pop_preT_tot\",\"Coverage (%) - All Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.cov_pop_rur\",\"Coverage (%) - All Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.cov_pop_tot\",\"Coverage (%) - All Social Assistance \",\"NULL\",\"World Development Indicators\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.cov_pop_urb\",\"Coverage (%) - All Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.cov_q1_preT_tot\",\"Coverage in poorest quintile (%) - All Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.cov_q1_rur\",\"Coverage in poorest quintile (%) - All Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.cov_q1_tot\",\"Coverage in poorest quintile (%) - All Social Assistance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.cov_q1_urb\",\"Coverage in poorest quintile (%) - All Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.cov_q2_preT_tot\",\"Coverage in 2nd quintile (%) - All Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.cov_q2_rur\",\"Coverage in 2nd quintile (%) - All Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.cov_q2_tot\",\"Coverage in 2nd quintile (%) - All Social Assistance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.cov_q2_urb\",\"Coverage in 2nd quintile (%) - All Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.cov_q3_preT_tot\",\"Coverage in 3rd quintile (%) - All Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.cov_q3_rur\",\"Coverage in 3rd quintile (%) - All Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.cov_q3_tot\",\"Coverage in 3rd quintile (%) - All Social Assistance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.cov_q3_urb\",\"Coverage in 3rd quintile (%) - All Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.cov_q4_preT_tot\",\"Coverage in 4th quintile (%) - All Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.cov_q4_rur\",\"Coverage in 4th quintile (%) - All Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.cov_q4_tot\",\"Coverage in 4th quintile (%) - All Social Assistance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.cov_q4_urb\",\"Coverage in 4th quintile (%) - All Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.cov_q5_preT_tot\",\"Coverage in richest quintile (%) - All Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.cov_q5_rur\",\"Coverage in richest quintile (%) - All Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.cov_q5_tot\",\"Coverage in richest quintile (%) - All Social Assistance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa.cov_q5_urb\",\"Coverage in richest quintile (%) - All Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa_gini_ep_preT_tot\",\"Gini inequality reduction (%) -  All Social Assistance -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa_gini_ep_tot\",\"Gini inequality reduction (%) -  All Social Assistance -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa_gini_preT_tot\",\"Gini inequality reduction (%) -  All Social Assistance -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa_gini_rur\",\"Gini inequality reduction (%) -  All Social Assistance -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa_gini_tot\",\"Gini inequality reduction (%) -  All Social Assistance -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa_gini_urb\",\"Gini inequality reduction (%) -  All Social Assistance - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa_p0_ep_preT_tot\",\"Poverty Headcount reduction (%) -  All Social Assistance -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa_p0_ep_tot\",\"Poverty Headcount reduction (%) -  All Social Assistance -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa_p0_preT_tot\",\"Poverty Headcount reduction (%) -  All Social Assistance -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa_p0_rur\",\"Poverty Headcount reduction (%) -  All Social Assistance -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa_p0_tot\",\"Poverty Headcount reduction (%) -  All Social Assistance -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa_p0_urb\",\"Poverty Headcount reduction (%) -  All Social Assistance - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa_p1_ep_preT_tot\",\"Poverty Gap reduction (%) -  All Social Assistance -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa_p1_ep_tot\",\"Poverty Gap reduction (%) -  All Social Assistance -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa_p1_preT_tot\",\"Poverty Gap reduction (%) -  All Social Assistance -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa_p1_rur\",\"Poverty Gap reduction (%) -  All Social Assistance -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa_p1_tot\",\"Poverty Gap reduction (%) -  All Social Assistance -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_allsa_p1_urb\",\"Poverty Gap reduction (%) -  All Social Assistance - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.adq_ep_preT_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - Conditional Cash Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.adq_ep_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - Conditional Cash Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.adq_pop_preT_tot\",\"Adequacy of benefits (%) - Conditional Cash Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.adq_pop_rur\",\"Adequacy of benefits (%) - Conditional Cash Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.adq_pop_tot\",\"Adequacy of benefits (%) - Conditional Cash Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.adq_pop_urb\",\"Adequacy of benefits (%) - Conditional Cash Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.adq_q1_preT_tot\",\"Adequacy of benefits in poorest quintile (%) - Conditional Cash Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.adq_q1_rur\",\"Adequacy of benefits in poorest quintile (%) - Conditional Cash Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.adq_q1_tot\",\"Adequacy of benefits in poorest quintile (%) - Conditional Cash Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.adq_q1_urb\",\"Adequacy of benefits in poorest quintile (%) - Conditional Cash Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.adq_q2_preT_tot\",\"Adequacy of benefits in 2nd quintile (%) - Conditional Cash Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.adq_q2_rur\",\"Adequacy of benefits in 2nd quintile (%) - Conditional Cash Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.adq_q2_tot\",\"Adequacy of benefits in 2nd quintile (%) - Conditional Cash Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.adq_q2_urb\",\"Adequacy of benefits in 2nd quintile (%) - Conditional Cash Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.adq_q3_preT_tot\",\"Adequacy of benefits in 3rd quintile (%) - Conditional Cash Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.adq_q3_rur\",\"Adequacy of benefits in 3rd quintile (%) - Conditional Cash Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.adq_q3_tot\",\"Adequacy of benefits in 3rd quintile (%) - Conditional Cash Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.adq_q3_urb\",\"Adequacy of benefits in 3rd quintile (%) - Conditional Cash Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.adq_q4_preT_tot\",\"Adequacy of benefits in 4th quintile (%) - Conditional Cash Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.adq_q4_rur\",\"Adequacy of benefits in 4th quintile (%) - Conditional Cash Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.adq_q4_tot\",\"Adequacy of benefits in 4th quintile (%) - Conditional Cash Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.adq_q4_urb\",\"Adequacy of benefits in 4th quintile (%) - Conditional Cash Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.adq_q5_preT_tot\",\"Adequacy of benefits in richest quintile (%) - Conditional Cash Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.adq_q5_rur\",\"Adequacy of benefits in richest quintile (%) - Conditional Cash Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.adq_q5_tot\",\"Adequacy of benefits in richest quintile (%) - Conditional Cash Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.adq_q5_urb\",\"Adequacy of benefits in richest quintile (%) - Conditional Cash Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.avt_ep_preT_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - Conditional Cash Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.avt_ep_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - Conditional Cash Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.avt_pop_preT_tot\",\"Average per capita transfer - Conditional Cash Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.avt_pop_rur\",\"Average per capita transfer - Conditional Cash Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.avt_pop_tot\",\"Average per capita transfer - Conditional Cash Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.avt_pop_urb\",\"Average per capita transfer - Conditional Cash Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.avt_q1_preT_tot\",\"Average per capita transfer held by poorest quintile - Conditional Cash Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.avt_q1_rur\",\"Average per capita transfer held by poorest quintile - Conditional Cash Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.avt_q1_tot\",\"Average per capita transfer held by poorest quintile - Conditional Cash Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.avt_q1_urb\",\"Average per capita transfer held by poorest quintile - Conditional Cash Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.avt_q2_preT_tot\",\"Average per capita transfer held by 2nd quintile - Conditional Cash Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.avt_q2_rur\",\"Average per capita transfer held by 2nd quintile - Conditional Cash Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.avt_q2_tot\",\"Average per capita transfer held by 2nd quintile - Conditional Cash Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.avt_q2_urb\",\"Average per capita transfer held by 2nd quintile - Conditional Cash Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.avt_q3_preT_tot\",\"Average per capita transfer held by 3rd quintile - Conditional Cash Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.avt_q3_rur\",\"Average per capita transfer held by 3rd quintile - Conditional Cash Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.avt_q3_tot\",\"Average per capita transfer held by 3rd quintile - Conditional Cash Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.avt_q3_urb\",\"Average per capita transfer held by 3rd quintile - Conditional Cash Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.avt_q4_preT_tot\",\"Average per capita transfer held by 4th quintile - Conditional Cash Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.avt_q4_rur\",\"Average per capita transfer held by 4th quintile - Conditional Cash Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.avt_q4_tot\",\"Average per capita transfer held by 4th quintile - Conditional Cash Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.avt_q4_urb\",\"Average per capita transfer held by 4th quintile - Conditional Cash Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.avt_q5_preT_tot\",\"Average per capita transfer held by richest quintile - Conditional Cash Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.avt_q5_rur\",\"Average per capita transfer held by richest quintile - Conditional Cash Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.avt_q5_tot\",\"Average per capita transfer held by richest quintile - Conditional Cash Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.avt_q5_urb\",\"Average per capita transfer held by richest quintile - Conditional Cash Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.ben_ep_preT_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - Conditional Cash Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.ben_ep_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - Conditional Cash Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.ben_q1_preT_tot\",\"Benefits incidence in poorest quintile (%) - Conditional Cash Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.ben_q1_rur\",\"Benefits incidence in poorest quintile (%) - Conditional Cash Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.ben_q1_tot\",\"Benefits incidence in poorest quintile (%) - Conditional Cash Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.ben_q1_urb\",\"Benefits incidence in poorest quintile (%) - Conditional Cash Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.ben_q2_preT_tot\",\"Benefits incidence in 2nd quintile (%) - Conditional Cash Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.ben_q2_rur\",\"Benefits incidence in 2nd quintile (%) - Conditional Cash Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.ben_q2_tot\",\"Benefits incidence in 2nd quintile (%) - Conditional Cash Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.ben_q2_urb\",\"Benefits incidence in 2nd quintile (%) - Conditional Cash Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.ben_q3_preT_tot\",\"Benefits incidence in 3rd quintile (%) - Conditional Cash Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.ben_q3_rur\",\"Benefits incidence in 3rd quintile (%) - Conditional Cash Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.ben_q3_tot\",\"Benefits incidence in 3rd quintile (%) - Conditional Cash Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.ben_q3_urb\",\"Benefits incidence in 3rd quintile (%) - Conditional Cash Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.ben_q4_preT_tot\",\"Benefits incidence in 4th quintile (%) - Conditional Cash Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.ben_q4_rur\",\"Benefits incidence in 4th quintile (%) - Conditional Cash Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.ben_q4_tot\",\"Benefits incidence in 4th quintile (%) - Conditional Cash Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.ben_q4_urb\",\"Benefits incidence in 4th quintile (%) - Conditional Cash Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.ben_q5_preT_tot\",\"Benefits incidence in richest quintile (%) - Conditional Cash Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.ben_q5_rur\",\"Benefits incidence in richest quintile (%) - Conditional Cash Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.ben_q5_tot\",\"Benefits incidence in richest quintile (%) - Conditional Cash Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.ben_q5_urb\",\"Benefits incidence in richest quintile (%) - Conditional Cash Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.bry_ep_preT_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - Conditional Cash Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.bry_ep_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - Conditional Cash Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.bry_q1_preT_tot\",\"Beneficiary incidence in poorest quintile (%) - Conditional Cash Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.bry_q1_rur\",\"Beneficiary incidence in poorest quintile (%) - Conditional Cash Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.bry_q1_tot\",\"Beneficiary incidence in poorest quintile (%) - Conditional Cash Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.bry_q1_urb\",\"Beneficiary incidence in poorest quintile (%) - Conditional Cash Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.bry_q2_preT_tot\",\"Beneficiary incidence in 2nd quintile (%) - Conditional Cash Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.bry_q2_rur\",\"Beneficiary incidence in 2nd quintile (%) - Conditional Cash Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.bry_q2_tot\",\"Beneficiary incidence in 2nd quintile (%) - Conditional Cash Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.bry_q2_urb\",\"Beneficiary incidence in 2nd quintile (%) - Conditional Cash Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.bry_q3_preT_tot\",\"Beneficiary incidence in 3rd quintile (%) - Conditional Cash Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.bry_q3_rur\",\"Beneficiary incidence in 3rd quintile (%) - Conditional Cash Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.bry_q3_tot\",\"Beneficiary incidence in 3rd quintile (%) - Conditional Cash Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.bry_q3_urb\",\"Beneficiary incidence in 3rd quintile (%) - Conditional Cash Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.bry_q4_preT_tot\",\"Beneficiary incidence in 4th quintile (%) - Conditional Cash Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.bry_q4_rur\",\"Beneficiary incidence in 4th quintile (%) - Conditional Cash Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.bry_q4_tot\",\"Beneficiary incidence in 4th quintile (%) - Conditional Cash Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.bry_q4_urb\",\"Beneficiary incidence in 4th quintile (%) - Conditional Cash Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.bry_q5_preT_tot\",\"Beneficiary incidence in richest quintile (%) - Conditional Cash Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.bry_q5_rur\",\"Beneficiary incidence in richest quintile (%) - Conditional Cash Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.bry_q5_tot\",\"Beneficiary incidence in richest quintile (%) - Conditional Cash Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.bry_q5_urb\",\"Beneficiary incidence in richest quintile (%) - Conditional Cash Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.cba_ep_preT_tot\",\"Benefit-cost ratio -  Conditional Cash Transfer -extreme poor (<$1.25 a day) (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.cba_ep_tot\",\"Benefit-cost ratio -  Conditional Cash Transfer -extreme poor (<$1.25 a day)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.cba_q1_preT_tot\",\"Benefit-cost ratio -  Conditional Cash Transfer -poorest quintile (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.cba_q1_rur\",\"Benefit-cost ratio -  Conditional Cash Transfer -poorest quintile -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.cba_q1_tot\",\"Benefit-cost ratio -  Conditional Cash Transfer -poorest quintile\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.cba_q1_urb\",\"Benefit-cost ratio -  Conditional Cash Transfer - poorest quintile -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.cov_ep_preT_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - Conditional Cash Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.cov_ep_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - Conditional Cash Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.cov_pop_preT_tot\",\"Coverage (%) - Conditional Cash Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.cov_pop_rur\",\"Coverage (%) - Conditional Cash Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.cov_pop_tot\",\"Coverage (%) - Conditional Cash Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.cov_pop_urb\",\"Coverage (%) - Conditional Cash Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.cov_q1_preT_tot\",\"Coverage in poorest quintile (%) - Conditional Cash Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.cov_q1_rur\",\"Coverage in poorest quintile (%) - Conditional Cash Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.cov_q1_tot\",\"Coverage in poorest quintile (%) - Conditional Cash Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.cov_q1_urb\",\"Coverage in poorest quintile (%) - Conditional Cash Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.cov_q2_preT_tot\",\"Coverage in 2nd quintile (%) - Conditional Cash Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.cov_q2_rur\",\"Coverage in 2nd quintile (%) - Conditional Cash Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.cov_q2_tot\",\"Coverage in 2nd quintile (%) - Conditional Cash Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.cov_q2_urb\",\"Coverage in 2nd quintile (%) - Conditional Cash Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.cov_q3_preT_tot\",\"Coverage in 3rd quintile (%) - Conditional Cash Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.cov_q3_rur\",\"Coverage in 3rd quintile (%) - Conditional Cash Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.cov_q3_tot\",\"Coverage in 3rd quintile (%) - Conditional Cash Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.cov_q3_urb\",\"Coverage in 3rd quintile (%) - Conditional Cash Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.cov_q4_preT_tot\",\"Coverage in 4th quintile (%) - Conditional Cash Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.cov_q4_rur\",\"Coverage in 4th quintile (%) - Conditional Cash Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.cov_q4_tot\",\"Coverage in 4th quintile (%) - Conditional Cash Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.cov_q4_urb\",\"Coverage in 4th quintile (%) - Conditional Cash Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.cov_q5_preT_tot\",\"Coverage in richest quintile (%) - Conditional Cash Transfers (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.cov_q5_rur\",\"Coverage in richest quintile (%) - Conditional Cash Transfers -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.cov_q5_tot\",\"Coverage in richest quintile (%) - Conditional Cash Transfers  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc.cov_q5_urb\",\"Coverage in richest quintile (%) - Conditional Cash Transfers -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc_gini_ep_preT_tot\",\"Gini inequality reduction (%) -  Conditional Cash Transfer -extreme poor (<$1.25 a day) (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc_gini_ep_tot\",\"Gini inequality reduction (%) -  Conditional Cash Transfer -extreme poor (<$1.25 a day)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc_gini_preT_tot\",\"Gini inequality reduction (%) -  Conditional Cash Transfer -poorest quintile (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc_gini_rur\",\"Gini inequality reduction (%) -  Conditional Cash Transfer -poorest quintile -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc_gini_tot\",\"Gini inequality reduction (%) -  Conditional Cash Transfer -poorest quintile\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc_gini_urb\",\"Gini inequality reduction (%) -  Conditional Cash Transfer - poorest quintile -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc_p0_ep_preT_tot\",\"Poverty Headcount reduction (%) -  Conditional Cash Transfer -extreme poor (<$1.25 a day) (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc_p0_ep_tot\",\"Poverty Headcount reduction (%) -  Conditional Cash Transfer -extreme poor (<$1.25 a day)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc_p0_preT_tot\",\"Poverty Headcount reduction (%) -  Conditional Cash Transfer -poorest quintile (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc_p0_rur\",\"Poverty Headcount reduction (%) -  Conditional Cash Transfer -poorest quintile -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc_p0_tot\",\"Poverty Headcount reduction (%) -  Conditional Cash Transfer -poorest quintile\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc_p0_urb\",\"Poverty Headcount reduction (%) -  Conditional Cash Transfer - poorest quintile -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc_p1_ep_preT_tot\",\"Poverty Gap reduction (%) -  Conditional Cash Transfer -extreme poor (<$1.25 a day) (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc_p1_ep_tot\",\"Poverty Gap reduction (%) -  Conditional Cash Transfer -extreme poor (<$1.25 a day)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc_p1_preT_tot\",\"Poverty Gap reduction (%) -  Conditional Cash Transfer -poorest quintile (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc_p1_rur\",\"Poverty Gap reduction (%) -  Conditional Cash Transfer -poorest quintile -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc_p1_tot\",\"Poverty Gap reduction (%) -  Conditional Cash Transfer -poorest quintile\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cc_p1_urb\",\"Poverty Gap reduction (%) -  Conditional Cash Transfer - poorest quintile -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.adq_ep_preT_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - Conditional Cash Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.adq_ep_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - Conditional Cash Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.adq_pop_preT_tot\",\"Adequacy of benefits (%) - Conditional Cash Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.adq_pop_rur\",\"Adequacy of benefits (%) - Conditional Cash Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.adq_pop_tot\",\"Adequacy of benefits (%) - Conditional Cash Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.adq_pop_urb\",\"Adequacy of benefits (%) - Conditional Cash Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.adq_q1_preT_tot\",\"Adequacy of benefits in poorest quintile (%) - Conditional Cash Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.adq_q1_rur\",\"Adequacy of benefits in poorest quintile (%) - Conditional Cash Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.adq_q1_tot\",\"Adequacy of benefits in poorest quintile (%) - Conditional Cash Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.adq_q1_urb\",\"Adequacy of benefits in poorest quintile (%) - Conditional Cash Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.adq_q2_preT_tot\",\"Adequacy of benefits in 2nd quintile (%) - Conditional Cash Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.adq_q2_rur\",\"Adequacy of benefits in 2nd quintile (%) - Conditional Cash Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.adq_q2_tot\",\"Adequacy of benefits in 2nd quintile (%) - Conditional Cash Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.adq_q2_urb\",\"Adequacy of benefits in 2nd quintile (%) - Conditional Cash Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.adq_q3_preT_tot\",\"Adequacy of benefits in 3rd quintile (%) - Conditional Cash Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.adq_q3_rur\",\"Adequacy of benefits in 3rd quintile (%) - Conditional Cash Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.adq_q3_tot\",\"Adequacy of benefits in 3rd quintile (%) - Conditional Cash Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.adq_q3_urb\",\"Adequacy of benefits in 3rd quintile (%) - Conditional Cash Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.adq_q4_preT_tot\",\"Adequacy of benefits in 4th quintile (%) - Conditional Cash Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.adq_q4_rur\",\"Adequacy of benefits in 4th quintile (%) - Conditional Cash Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.adq_q4_tot\",\"Adequacy of benefits in 4th quintile (%) - Conditional Cash Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.adq_q4_urb\",\"Adequacy of benefits in 4th quintile (%) - Conditional Cash Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.adq_q5_preT_tot\",\"Adequacy of benefits in richest quintile (%) - Conditional Cash Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.adq_q5_rur\",\"Adequacy of benefits in richest quintile (%) - Conditional Cash Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.adq_q5_tot\",\"Adequacy of benefits in richest quintile (%) - Conditional Cash Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.adq_q5_urb\",\"Adequacy of benefits in richest quintile (%) - Conditional Cash Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.avt_ep_preT_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - Conditional Cash Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.avt_ep_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - Conditional Cash Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.avt_pop_preT_tot\",\"Average per capita transfer - Conditional Cash Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.avt_pop_rur\",\"Average per capita transfer - Conditional Cash Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.avt_pop_tot\",\"Average per capita transfer - Conditional Cash Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.avt_pop_urb\",\"Average per capita transfer - Conditional Cash Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.avt_q1_preT_tot\",\"Average per capita transfer held by poorest quintile - Conditional Cash Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.avt_q1_rur\",\"Average per capita transfer held by poorest quintile - Conditional Cash Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.avt_q1_tot\",\"Average per capita transfer held by poorest quintile - Conditional Cash Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.avt_q1_urb\",\"Average per capita transfer held by poorest quintile - Conditional Cash Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.avt_q2_preT_tot\",\"Average per capita transfer held by 2nd quintile - Conditional Cash Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.avt_q2_rur\",\"Average per capita transfer held by 2nd quintile - Conditional Cash Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.avt_q2_tot\",\"Average per capita transfer held by 2nd quintile - Conditional Cash Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.avt_q2_urb\",\"Average per capita transfer held by 2nd quintile - Conditional Cash Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.avt_q3_preT_tot\",\"Average per capita transfer held by 3rd quintile - Conditional Cash Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.avt_q3_rur\",\"Average per capita transfer held by 3rd quintile - Conditional Cash Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.avt_q3_tot\",\"Average per capita transfer held by 3rd quintile - Conditional Cash Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.avt_q3_urb\",\"Average per capita transfer held by 3rd quintile - Conditional Cash Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.avt_q4_preT_tot\",\"Average per capita transfer held by 4th quintile - Conditional Cash Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.avt_q4_rur\",\"Average per capita transfer held by 4th quintile - Conditional Cash Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.avt_q4_tot\",\"Average per capita transfer held by 4th quintile - Conditional Cash Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.avt_q4_urb\",\"Average per capita transfer held by 4th quintile - Conditional Cash Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.avt_q5_preT_tot\",\"Average per capita transfer held by richest quintile - Conditional Cash Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.avt_q5_rur\",\"Average per capita transfer held by richest quintile - Conditional Cash Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.avt_q5_tot\",\"Average per capita transfer held by richest quintile - Conditional Cash Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.avt_q5_urb\",\"Average per capita transfer held by richest quintile - Conditional Cash Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.ben_ep_preT_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - Conditional Cash Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.ben_ep_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - Conditional Cash Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.ben_q1_preT_tot\",\"Benefits incidence in poorest quintile (%) - Conditional Cash Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.ben_q1_rur\",\"Benefits incidence in poorest quintile (%) - Conditional Cash Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.ben_q1_tot\",\"Benefits incidence in poorest quintile (%) - Conditional Cash Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.ben_q1_urb\",\"Benefits incidence in poorest quintile (%) - Conditional Cash Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.ben_q2_preT_tot\",\"Benefits incidence in 2nd quintile (%) - Conditional Cash Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.ben_q2_rur\",\"Benefits incidence in 2nd quintile (%) - Conditional Cash Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.ben_q2_tot\",\"Benefits incidence in 2nd quintile (%) - Conditional Cash Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.ben_q2_urb\",\"Benefits incidence in 2nd quintile (%) - Conditional Cash Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.ben_q3_preT_tot\",\"Benefits incidence in 3rd quintile (%) - Conditional Cash Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.ben_q3_rur\",\"Benefits incidence in 3rd quintile (%) - Conditional Cash Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.ben_q3_tot\",\"Benefits incidence in 3rd quintile (%) - Conditional Cash Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.ben_q3_urb\",\"Benefits incidence in 3rd quintile (%) - Conditional Cash Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.ben_q4_preT_tot\",\"Benefits incidence in 4th quintile (%) - Conditional Cash Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.ben_q4_rur\",\"Benefits incidence in 4th quintile (%) - Conditional Cash Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.ben_q4_tot\",\"Benefits incidence in 4th quintile (%) - Conditional Cash Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.ben_q4_urb\",\"Benefits incidence in 4th quintile (%) - Conditional Cash Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.ben_q5_preT_tot\",\"Benefits incidence in richest quintile (%) - Conditional Cash Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.ben_q5_rur\",\"Benefits incidence in richest quintile (%) - Conditional Cash Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.ben_q5_tot\",\"Benefits incidence in richest quintile (%) - Conditional Cash Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.ben_q5_urb\",\"Benefits incidence in richest quintile (%) - Conditional Cash Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.bry_ep_preT_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - Conditional Cash Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.bry_ep_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - Conditional Cash Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.bry_q1_preT_tot\",\"Beneficiary incidence in poorest quintile (%) - Conditional Cash Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.bry_q1_rur\",\"Beneficiary incidence in poorest quintile (%) - Conditional Cash Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.bry_q1_tot\",\"Beneficiary incidence in poorest quintile (%) - Conditional Cash Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.bry_q1_urb\",\"Beneficiary incidence in poorest quintile (%) - Conditional Cash Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.bry_q2_preT_tot\",\"Beneficiary incidence in 2nd quintile (%) - Conditional Cash Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.bry_q2_rur\",\"Beneficiary incidence in 2nd quintile (%) - Conditional Cash Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.bry_q2_tot\",\"Beneficiary incidence in 2nd quintile (%) - Conditional Cash Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.bry_q2_urb\",\"Beneficiary incidence in 2nd quintile (%) - Conditional Cash Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.bry_q3_preT_tot\",\"Beneficiary incidence in 3rd quintile (%) - Conditional Cash Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.bry_q3_rur\",\"Beneficiary incidence in 3rd quintile (%) - Conditional Cash Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.bry_q3_tot\",\"Beneficiary incidence in 3rd quintile (%) - Conditional Cash Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.bry_q3_urb\",\"Beneficiary incidence in 3rd quintile (%) - Conditional Cash Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.bry_q4_preT_tot\",\"Beneficiary incidence in 4th quintile (%) - Conditional Cash Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.bry_q4_rur\",\"Beneficiary incidence in 4th quintile (%) - Conditional Cash Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.bry_q4_tot\",\"Beneficiary incidence in 4th quintile (%) - Conditional Cash Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.bry_q4_urb\",\"Beneficiary incidence in 4th quintile (%) - Conditional Cash Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.bry_q5_preT_tot\",\"Beneficiary incidence in richest quintile (%) - Conditional Cash Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.bry_q5_rur\",\"Beneficiary incidence in richest quintile (%) - Conditional Cash Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.bry_q5_tot\",\"Beneficiary incidence in richest quintile (%) - Conditional Cash Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.bry_q5_urb\",\"Beneficiary incidence in richest quintile (%) - Conditional Cash Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.cba_ep_preT_tot\",\"Benefit-cost ratio -  Conditional Cash Transfer -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.cba_ep_tot\",\"Benefit-cost ratio -  Conditional Cash Transfer -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.cba_q1_preT_tot\",\"Benefit-cost ratio -  Conditional Cash Transfer -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.cba_q1_rur\",\"Benefit-cost ratio -  Conditional Cash Transfer -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.cba_q1_tot\",\"Benefit-cost ratio -  Conditional Cash Transfer -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.cba_q1_urb\",\"Benefit-cost ratio -  Conditional Cash Transfer - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.cov_ep_preT_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - Conditional Cash Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.cov_ep_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - Conditional Cash Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.cov_pop_preT_tot\",\"Coverage (%) - Conditional Cash Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.cov_pop_rur\",\"Coverage (%) - Conditional Cash Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.cov_pop_tot\",\"Coverage (%) - Conditional Cash Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.cov_pop_urb\",\"Coverage (%) - Conditional Cash Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.cov_q1_preT_tot\",\"Coverage in poorest quintile (%) - Conditional Cash Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.cov_q1_rur\",\"Coverage in poorest quintile (%) - Conditional Cash Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.cov_q1_tot\",\"Coverage in poorest quintile (%) - Conditional Cash Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.cov_q1_urb\",\"Coverage in poorest quintile (%) - Conditional Cash Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.cov_q2_preT_tot\",\"Coverage in 2nd quintile (%) - Conditional Cash Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.cov_q2_rur\",\"Coverage in 2nd quintile (%) - Conditional Cash Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.cov_q2_tot\",\"Coverage in 2nd quintile (%) - Conditional Cash Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.cov_q2_urb\",\"Coverage in 2nd quintile (%) - Conditional Cash Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.cov_q3_preT_tot\",\"Coverage in 3rd quintile (%) - Conditional Cash Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.cov_q3_rur\",\"Coverage in 3rd quintile (%) - Conditional Cash Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.cov_q3_tot\",\"Coverage in 3rd quintile (%) - Conditional Cash Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.cov_q3_urb\",\"Coverage in 3rd quintile (%) - Conditional Cash Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.cov_q4_preT_tot\",\"Coverage in 4th quintile (%) - Conditional Cash Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.cov_q4_rur\",\"Coverage in 4th quintile (%) - Conditional Cash Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.cov_q4_tot\",\"Coverage in 4th quintile (%) - Conditional Cash Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.cov_q4_urb\",\"Coverage in 4th quintile (%) - Conditional Cash Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.cov_q5_preT_tot\",\"Coverage in richest quintile (%) - Conditional Cash Transfers (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.cov_q5_rur\",\"Coverage in richest quintile (%) - Conditional Cash Transfers -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.cov_q5_tot\",\"Coverage in richest quintile (%) - Conditional Cash Transfers  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct.cov_q5_urb\",\"Coverage in richest quintile (%) - Conditional Cash Transfers -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct_gini_ep_preT_tot\",\"Gini inequality reduction (%) -  Conditional Cash Transfer -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct_gini_ep_tot\",\"Gini inequality reduction (%) -  Conditional Cash Transfer -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct_gini_preT_tot\",\"Gini inequality reduction (%) -  Conditional Cash Transfer -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct_gini_rur\",\"Gini inequality reduction (%) -  Conditional Cash Transfer -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct_gini_tot\",\"Gini inequality reduction (%) -  Conditional Cash Transfer -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct_gini_urb\",\"Gini inequality reduction (%) -  Conditional Cash Transfer - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct_p0_ep_preT_tot\",\"Poverty Headcount reduction (%) -  Conditional Cash Transfer -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct_p0_ep_tot\",\"Poverty Headcount reduction (%) -  Conditional Cash Transfer -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct_p0_preT_tot\",\"Poverty Headcount reduction (%) -  Conditional Cash Transfer -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct_p0_rur\",\"Poverty Headcount reduction (%) -  Conditional Cash Transfer -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct_p0_tot\",\"Poverty Headcount reduction (%) -  Conditional Cash Transfer -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct_p0_urb\",\"Poverty Headcount reduction (%) -  Conditional Cash Transfer - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct_p1_ep_preT_tot\",\"Poverty Gap reduction (%) -  Conditional Cash Transfer -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct_p1_ep_tot\",\"Poverty Gap reduction (%) -  Conditional Cash Transfer -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct_p1_preT_tot\",\"Poverty Gap reduction (%) -  Conditional Cash Transfer -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct_p1_rur\",\"Poverty Gap reduction (%) -  Conditional Cash Transfer -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct_p1_tot\",\"Poverty Gap reduction (%) -  Conditional Cash Transfer -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_cct_p1_urb\",\"Poverty Gap reduction (%) -  Conditional Cash Transfer - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.adq_ep_preT_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - Cash Transfer  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.adq_ep_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - Cash Transfer \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.adq_pop_preT_tot\",\"Adequacy of benefits (%) - Cash Transfer (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.adq_pop_rur\",\"Adequacy of benefits (%) - Cash Transfer -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.adq_pop_tot\",\"Adequacy of benefits (%) - Cash Transfer \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.adq_pop_urb\",\"Adequacy of benefits (%) - Cash Transfer -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.adq_q1_preT_tot\",\"Adequacy of benefits in poorest quintile (%) - Cash Transfer (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.adq_q1_rur\",\"Adequacy of benefits in poorest quintile (%) - Cash Transfer -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.adq_q1_tot\",\"Adequacy of benefits in poorest quintile (%) - Cash Transfer \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.adq_q1_urb\",\"Adequacy of benefits in poorest quintile (%) - Cash Transfer -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.adq_q2_preT_tot\",\"Adequacy of benefits in 2nd quintile (%) - Cash Transfer (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.adq_q2_rur\",\"Adequacy of benefits in 2nd quintile (%) - Cash Transfer -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.adq_q2_tot\",\"Adequacy of benefits in 2nd quintile (%) - Cash Transfer \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.adq_q2_urb\",\"Adequacy of benefits in 2nd quintile (%) - Cash Transfer -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.adq_q3_preT_tot\",\"Adequacy of benefits in 3rd quintile (%) - Cash Transfer (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.adq_q3_rur\",\"Adequacy of benefits in 3rd quintile (%) - Cash Transfer -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.adq_q3_tot\",\"Adequacy of benefits in 3rd quintile (%) - Cash Transfer \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.adq_q3_urb\",\"Adequacy of benefits in 3rd quintile (%) - Cash Transfer -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.adq_q4_preT_tot\",\"Adequacy of benefits in 4th quintile (%) - Cash Transfer (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.adq_q4_rur\",\"Adequacy of benefits in 4th quintile (%) - Cash Transfer -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.adq_q4_tot\",\"Adequacy of benefits in 4th quintile (%) - Cash Transfer \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.adq_q4_urb\",\"Adequacy of benefits in 4th quintile (%) - Cash Transfer -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.adq_q5_preT_tot\",\"Adequacy of benefits in richest quintile (%) - Cash Transfer (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.adq_q5_rur\",\"Adequacy of benefits in richest quintile (%) - Cash Transfer -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.adq_q5_tot\",\"Adequacy of benefits in richest quintile (%) - Cash Transfer \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.adq_q5_urb\",\"Adequacy of benefits in richest quintile (%) - Cash Transfer -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.avt_ep_preT_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - Cash Transfer  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.avt_ep_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - Cash Transfer \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.avt_pop_preT_tot\",\"Average per capita transfer - Cash Transfer (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.avt_pop_rur\",\"Average per capita transfer - Cash Transfer -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.avt_pop_tot\",\"Average per capita transfer - Cash Transfer \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.avt_pop_urb\",\"Average per capita transfer - Cash Transfer -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.avt_q1_preT_tot\",\"Average per capita transfer held by poorest quintile - Cash Transfer (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.avt_q1_rur\",\"Average per capita transfer held by poorest quintile - Cash Transfer -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.avt_q1_tot\",\"Average per capita transfer held by poorest quintile - Cash Transfer \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.avt_q1_urb\",\"Average per capita transfer held by poorest quintile - Cash Transfer -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.avt_q2_preT_tot\",\"Average per capita transfer held by 2nd quintile - Cash Transfer (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.avt_q2_rur\",\"Average per capita transfer held by 2nd quintile - Cash Transfer -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.avt_q2_tot\",\"Average per capita transfer held by 2nd quintile - Cash Transfer \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.avt_q2_urb\",\"Average per capita transfer held by 2nd quintile - Cash Transfer -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.avt_q3_preT_tot\",\"Average per capita transfer held by 3rd quintile - Cash Transfer (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.avt_q3_rur\",\"Average per capita transfer held by 3rd quintile - Cash Transfer -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.avt_q3_tot\",\"Average per capita transfer held by 3rd quintile - Cash Transfer \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.avt_q3_urb\",\"Average per capita transfer held by 3rd quintile - Cash Transfer -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.avt_q4_preT_tot\",\"Average per capita transfer held by 4th quintile - Cash Transfer (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.avt_q4_rur\",\"Average per capita transfer held by 4th quintile - Cash Transfer -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.avt_q4_tot\",\"Average per capita transfer held by 4th quintile - Cash Transfer \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.avt_q4_urb\",\"Average per capita transfer held by 4th quintile - Cash Transfer -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.avt_q5_preT_tot\",\"Average per capita transfer held by richest quintile - Cash Transfer (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.avt_q5_rur\",\"Average per capita transfer held by richest quintile - Cash Transfer -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.avt_q5_tot\",\"Average per capita transfer held by richest quintile - Cash Transfer \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.avt_q5_urb\",\"Average per capita transfer held by richest quintile - Cash Transfer -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.ben_ep_preT_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - Cash Transfer  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.ben_ep_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - Cash Transfer \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.ben_q1_preT_tot\",\"Benefits incidence in poorest quintile (%) - Cash Transfer (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.ben_q1_rur\",\"Benefits incidence in poorest quintile (%) - Cash Transfer -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.ben_q1_tot\",\"Benefits incidence in poorest quintile (%) - Cash Transfer \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.ben_q1_urb\",\"Benefits incidence in poorest quintile (%) - Cash Transfer -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.ben_q2_preT_tot\",\"Benefits incidence in 2nd quintile (%) - Cash Transfer (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.ben_q2_rur\",\"Benefits incidence in 2nd quintile (%) - Cash Transfer -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.ben_q2_tot\",\"Benefits incidence in 2nd quintile (%) - Cash Transfer \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.ben_q2_urb\",\"Benefits incidence in 2nd quintile (%) - Cash Transfer -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.ben_q3_preT_tot\",\"Benefits incidence in 3rd quintile (%) - Cash Transfer (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.ben_q3_rur\",\"Benefits incidence in 3rd quintile (%) - Cash Transfer -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.ben_q3_tot\",\"Benefits incidence in 3rd quintile (%) - Cash Transfer \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.ben_q3_urb\",\"Benefits incidence in 3rd quintile (%) - Cash Transfer -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.ben_q4_preT_tot\",\"Benefits incidence in 4th quintile (%) - Cash Transfer (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.ben_q4_rur\",\"Benefits incidence in 4th quintile (%) - Cash Transfer -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.ben_q4_tot\",\"Benefits incidence in 4th quintile (%) - Cash Transfer \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.ben_q4_urb\",\"Benefits incidence in 4th quintile (%) - Cash Transfer -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.ben_q5_preT_tot\",\"Benefits incidence in richest quintile (%) - Cash Transfer (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.ben_q5_rur\",\"Benefits incidence in richest quintile (%) - Cash Transfer -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.ben_q5_tot\",\"Benefits incidence in richest quintile (%) - Cash Transfer \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.ben_q5_urb\",\"Benefits incidence in richest quintile (%) - Cash Transfer -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.bry_ep_preT_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - Cash Transfer  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.bry_ep_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - Cash Transfer \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.bry_q1_preT_tot\",\"Beneficiary incidence in poorest quintile (%) - Cash Transfer (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.bry_q1_rur\",\"Beneficiary incidence in poorest quintile (%) - Cash Transfer -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.bry_q1_tot\",\"Beneficiary incidence in poorest quintile (%) - Cash Transfer \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.bry_q1_urb\",\"Beneficiary incidence in poorest quintile (%) - Cash Transfer -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.bry_q2_preT_tot\",\"Beneficiary incidence in 2nd quintile (%) - Cash Transfer (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.bry_q2_rur\",\"Beneficiary incidence in 2nd quintile (%) - Cash Transfer -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.bry_q2_tot\",\"Beneficiary incidence in 2nd quintile (%) - Cash Transfer \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.bry_q2_urb\",\"Beneficiary incidence in 2nd quintile (%) - Cash Transfer -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.bry_q3_preT_tot\",\"Beneficiary incidence in 3rd quintile (%) - Cash Transfer (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.bry_q3_rur\",\"Beneficiary incidence in 3rd quintile (%) - Cash Transfer -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.bry_q3_tot\",\"Beneficiary incidence in 3rd quintile (%) - Cash Transfer \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.bry_q3_urb\",\"Beneficiary incidence in 3rd quintile (%) - Cash Transfer -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.bry_q4_preT_tot\",\"Beneficiary incidence in 4th quintile (%) - Cash Transfer (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.bry_q4_rur\",\"Beneficiary incidence in 4th quintile (%) - Cash Transfer -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.bry_q4_tot\",\"Beneficiary incidence in 4th quintile (%) - Cash Transfer \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.bry_q4_urb\",\"Beneficiary incidence in 4th quintile (%) - Cash Transfer -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.bry_q5_preT_tot\",\"Beneficiary incidence in richest quintile (%) - Cash Transfer (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.bry_q5_rur\",\"Beneficiary incidence in richest quintile (%) - Cash Transfer -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.bry_q5_tot\",\"Beneficiary incidence in richest quintile (%) - Cash Transfer \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.bry_q5_urb\",\"Beneficiary incidence in richest quintile (%) - Cash Transfer -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.cba_ep_preT_tot\",\"Benefit-cost ratio -  Cash Transfer -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.cba_ep_tot\",\"Benefit-cost ratio -  Cash Transfer -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.cba_q1_preT_tot\",\"Benefit-cost ratio -  Cash Transfer -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.cba_q1_rur\",\"Benefit-cost ratio -  Cash Transfer -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.cba_q1_tot\",\"Benefit-cost ratio -  Cash Transfer -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.cba_q1_urb\",\"Benefit-cost ratio -  Cash Transfer - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.cov_ep_preT_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - Cash Transfer  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.cov_ep_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - Cash Transfer \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.cov_pop_preT_tot\",\"Coverage (%) - Cash Transfer (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.cov_pop_rur\",\"Coverage (%) - Cash Transfer -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.cov_pop_tot\",\"Coverage (%) - Cash Transfer \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.cov_pop_urb\",\"Coverage (%) - Cash Transfer -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.cov_q1_preT_tot\",\"Coverage in poorest quintile (%) - Cash Transfer (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.cov_q1_rur\",\"Coverage in poorest quintile (%) - Cash Transfer -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.cov_q1_tot\",\"Coverage in poorest quintile (%) - Cash Transfer \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.cov_q1_urb\",\"Coverage in poorest quintile (%) - Cash Transfer -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.cov_q2_preT_tot\",\"Coverage in 2nd quintile (%) - Cash Transfer (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.cov_q2_rur\",\"Coverage in 2nd quintile (%) - Cash Transfer -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.cov_q2_tot\",\"Coverage in 2nd quintile (%) - Cash Transfer \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.cov_q2_urb\",\"Coverage in 2nd quintile (%) - Cash Transfer -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.cov_q3_preT_tot\",\"Coverage in 3rd quintile (%) - Cash Transfer (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.cov_q3_rur\",\"Coverage in 3rd quintile (%) - Cash Transfer -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.cov_q3_tot\",\"Coverage in 3rd quintile (%) - Cash Transfer \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.cov_q3_urb\",\"Coverage in 3rd quintile (%) - Cash Transfer -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.cov_q4_preT_tot\",\"Coverage in 4th quintile (%) - Cash Transfer (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.cov_q4_rur\",\"Coverage in 4th quintile (%) - Cash Transfer -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.cov_q4_tot\",\"Coverage in 4th quintile (%) - Cash Transfer \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.cov_q4_urb\",\"Coverage in 4th quintile (%) - Cash Transfer -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.cov_q5_preT_tot\",\"Coverage in richest quintile (%) - Cash Transfer (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.cov_q5_rur\",\"Coverage in richest quintile (%) - Cash Transfer -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.cov_q5_tot\",\"Coverage in richest quintile (%) - Cash Transfer \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct.cov_q5_urb\",\"Coverage in richest quintile (%) - Cash Transfer -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct_gini_ep_preT_tot\",\"Gini inequality reduction (%) -  Cash Transfer -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct_gini_ep_tot\",\"Gini inequality reduction (%) -  Cash Transfer -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct_gini_preT_tot\",\"Gini inequality reduction (%) -  Cash Transfer -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct_gini_rur\",\"Gini inequality reduction (%) -  Cash Transfer -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct_gini_tot\",\"Gini inequality reduction (%) -  Cash Transfer -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct_gini_urb\",\"Gini inequality reduction (%) -  Cash Transfer - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct_p0_ep_preT_tot\",\"Poverty Headcount reduction (%) -  Cash Transfer -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct_p0_ep_tot\",\"Poverty Headcount reduction (%) -  Cash Transfer -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct_p0_preT_tot\",\"Poverty Headcount reduction (%) -  Cash Transfer -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct_p0_rur\",\"Poverty Headcount reduction (%) -  Cash Transfer -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct_p0_tot\",\"Poverty Headcount reduction (%) -  Cash Transfer -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct_p0_urb\",\"Poverty Headcount reduction (%) -  Cash Transfer - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct_p1_ep_preT_tot\",\"Poverty Gap reduction (%) -  Cash Transfer -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct_p1_ep_tot\",\"Poverty Gap reduction (%) -  Cash Transfer -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct_p1_preT_tot\",\"Poverty Gap reduction (%) -  Cash Transfer -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct_p1_rur\",\"Poverty Gap reduction (%) -  Cash Transfer -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct_p1_tot\",\"Poverty Gap reduction (%) -  Cash Transfer -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ct_p1_urb\",\"Poverty Gap reduction (%) -  Cash Transfer - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.adq_ep_preT_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - Subsidies (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.adq_ep_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - Subsidies  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.adq_pop_preT_tot\",\"Adequacy of benefits (%) - Subsidies (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.adq_pop_rur\",\"Adequacy of benefits (%) - Subsidies -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.adq_pop_tot\",\"Adequacy of benefits (%) - Subsidies  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.adq_pop_urb\",\"Adequacy of benefits (%) - Subsidies -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.adq_q1_preT_tot\",\"Adequacy of benefits in poorest quintile (%) - Subsidies (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.adq_q1_rur\",\"Adequacy of benefits in poorest quintile (%) - Subsidies -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.adq_q1_tot\",\"Adequacy of benefits in poorest quintile (%) - Subsidies  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.adq_q1_urb\",\"Adequacy of benefits in poorest quintile (%) - Subsidies -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.adq_q2_preT_tot\",\"Adequacy of benefits in 2nd quintile (%) - Subsidies (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.adq_q2_rur\",\"Adequacy of benefits in 2nd quintile (%) - Subsidies -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.adq_q2_tot\",\"Adequacy of benefits in 2nd quintile (%) - Subsidies  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.adq_q2_urb\",\"Adequacy of benefits in 2nd quintile (%) - Subsidies -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.adq_q3_preT_tot\",\"Adequacy of benefits in 3rd quintile (%) - Subsidies (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.adq_q3_rur\",\"Adequacy of benefits in 3rd quintile (%) - Subsidies -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.adq_q3_tot\",\"Adequacy of benefits in 3rd quintile (%) - Subsidies  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.adq_q3_urb\",\"Adequacy of benefits in 3rd quintile (%) - Subsidies -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.adq_q4_preT_tot\",\"Adequacy of benefits in 4th quintile (%) - Subsidies (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.adq_q4_rur\",\"Adequacy of benefits in 4th quintile (%) - Subsidies -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.adq_q4_tot\",\"Adequacy of benefits in 4th quintile (%) - Subsidies  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.adq_q4_urb\",\"Adequacy of benefits in 4th quintile (%) - Subsidies -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.adq_q5_preT_tot\",\"Adequacy of benefits in richest quintile (%) - Subsidies (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.adq_q5_rur\",\"Adequacy of benefits in richest quintile (%) - Subsidies -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.adq_q5_tot\",\"Adequacy of benefits in richest quintile (%) - Subsidies  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.adq_q5_urb\",\"Adequacy of benefits in richest quintile (%) - Subsidies -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.avt_ep_preT_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - Subsidies (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.avt_ep_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - Subsidies  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.avt_pop_preT_tot\",\"Average per capita transfer - Subsidies (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.avt_pop_rur\",\"Average per capita transfer - Subsidies -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.avt_pop_tot\",\"Average per capita transfer - Subsidies  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.avt_pop_urb\",\"Average per capita transfer - Subsidies -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.avt_q1_preT_tot\",\"Average per capita transfer held by poorest quintile - Subsidies (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.avt_q1_rur\",\"Average per capita transfer held by poorest quintile - Subsidies -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.avt_q1_tot\",\"Average per capita transfer held by poorest quintile - Subsidies  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.avt_q1_urb\",\"Average per capita transfer held by poorest quintile - Subsidies -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.avt_q2_preT_tot\",\"Average per capita transfer held by 2nd quintile - Subsidies (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.avt_q2_rur\",\"Average per capita transfer held by 2nd quintile - Subsidies -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.avt_q2_tot\",\"Average per capita transfer held by 2nd quintile - Subsidies  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.avt_q2_urb\",\"Average per capita transfer held by 2nd quintile - Subsidies -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.avt_q3_preT_tot\",\"Average per capita transfer held by 3rd quintile - Subsidies (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.avt_q3_rur\",\"Average per capita transfer held by 3rd quintile - Subsidies -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.avt_q3_tot\",\"Average per capita transfer held by 3rd quintile - Subsidies  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.avt_q3_urb\",\"Average per capita transfer held by 3rd quintile - Subsidies -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.avt_q4_preT_tot\",\"Average per capita transfer held by 4th quintile - Subsidies (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.avt_q4_rur\",\"Average per capita transfer held by 4th quintile - Subsidies -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.avt_q4_tot\",\"Average per capita transfer held by 4th quintile - Subsidies  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.avt_q4_urb\",\"Average per capita transfer held by 4th quintile - Subsidies -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.avt_q5_preT_tot\",\"Average per capita transfer held by richest quintile - Subsidies (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.avt_q5_rur\",\"Average per capita transfer held by richest quintile - Subsidies -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.avt_q5_tot\",\"Average per capita transfer held by richest quintile - Subsidies  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.avt_q5_urb\",\"Average per capita transfer held by richest quintile - Subsidies -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.ben_ep_preT_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - Subsidies (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.ben_ep_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - Subsidies  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.ben_q1_preT_tot\",\"Benefits incidence in poorest quintile (%) - Subsidies (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.ben_q1_rur\",\"Benefits incidence in poorest quintile (%) - Subsidies -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.ben_q1_tot\",\"Benefits incidence in poorest quintile (%) - Subsidies  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.ben_q1_urb\",\"Benefits incidence in poorest quintile (%) - Subsidies -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.ben_q2_preT_tot\",\"Benefits incidence in 2nd quintile (%) - Subsidies (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.ben_q2_rur\",\"Benefits incidence in 2nd quintile (%) - Subsidies -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.ben_q2_tot\",\"Benefits incidence in 2nd quintile (%) - Subsidies  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.ben_q2_urb\",\"Benefits incidence in 2nd quintile (%) - Subsidies -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.ben_q3_preT_tot\",\"Benefits incidence in 3rd quintile (%) - Subsidies (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.ben_q3_rur\",\"Benefits incidence in 3rd quintile (%) - Subsidies -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.ben_q3_tot\",\"Benefits incidence in 3rd quintile (%) - Subsidies  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.ben_q3_urb\",\"Benefits incidence in 3rd quintile (%) - Subsidies -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.ben_q4_preT_tot\",\"Benefits incidence in 4th quintile (%) - Subsidies (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.ben_q4_rur\",\"Benefits incidence in 4th quintile (%) - Subsidies -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.ben_q4_tot\",\"Benefits incidence in 4th quintile (%) - Subsidies  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.ben_q4_urb\",\"Benefits incidence in 4th quintile (%) - Subsidies -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.ben_q5_preT_tot\",\"Benefits incidence in richest quintile (%) - Subsidies (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.ben_q5_rur\",\"Benefits incidence in richest quintile (%) - Subsidies -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.ben_q5_tot\",\"Benefits incidence in richest quintile (%) - Subsidies  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.ben_q5_urb\",\"Benefits incidence in richest quintile (%) - Subsidies -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.bry_ep_preT_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - Subsidies (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.bry_ep_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - Subsidies  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.bry_q1_preT_tot\",\"Beneficiary incidence in poorest quintile (%) - Subsidies (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.bry_q1_rur\",\"Beneficiary incidence in poorest quintile (%) - Subsidies -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.bry_q1_tot\",\"Beneficiary incidence in poorest quintile (%) - Subsidies  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.bry_q1_urb\",\"Beneficiary incidence in poorest quintile (%) - Subsidies -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.bry_q2_preT_tot\",\"Beneficiary incidence in 2nd quintile (%) - Subsidies (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.bry_q2_rur\",\"Beneficiary incidence in 2nd quintile (%) - Subsidies -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.bry_q2_tot\",\"Beneficiary incidence in 2nd quintile (%) - Subsidies  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.bry_q2_urb\",\"Beneficiary incidence in 2nd quintile (%) - Subsidies -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.bry_q3_preT_tot\",\"Beneficiary incidence in 3rd quintile (%) - Subsidies (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.bry_q3_rur\",\"Beneficiary incidence in 3rd quintile (%) - Subsidies -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.bry_q3_tot\",\"Beneficiary incidence in 3rd quintile (%) - Subsidies  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.bry_q3_urb\",\"Beneficiary incidence in 3rd quintile (%) - Subsidies -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.bry_q4_preT_tot\",\"Beneficiary incidence in 4th quintile (%) - Subsidies (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.bry_q4_rur\",\"Beneficiary incidence in 4th quintile (%) - Subsidies -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.bry_q4_tot\",\"Beneficiary incidence in 4th quintile (%) - Subsidies  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.bry_q4_urb\",\"Beneficiary incidence in 4th quintile (%) - Subsidies -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.bry_q5_preT_tot\",\"Beneficiary incidence in richest quintile (%) - Subsidies (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.bry_q5_rur\",\"Beneficiary incidence in richest quintile (%) - Subsidies -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.bry_q5_tot\",\"Beneficiary incidence in richest quintile (%) - Subsidies  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.bry_q5_urb\",\"Beneficiary incidence in richest quintile (%) - Subsidies -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.cba_ep_preT_tot\",\"Benefit-cost ratio -  Subsidies -extreme poor (<$1.25 a day) (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.cba_ep_tot\",\"Benefit-cost ratio -  Subsidies -extreme poor (<$1.25 a day)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.cba_q1_preT_tot\",\"Benefit-cost ratio -  Subsidies -poorest quintile (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.cba_q1_rur\",\"Benefit-cost ratio -  Subsidies -poorest quintile -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.cba_q1_tot\",\"Benefit-cost ratio -  Subsidies -poorest quintile\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.cba_q1_urb\",\"Benefit-cost ratio -  Subsidies - poorest quintile -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.cov_ep_preT_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - Subsidies (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.cov_ep_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - Subsidies  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.cov_pop_preT_tot\",\"Coverage (%) - Subsidies (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.cov_pop_rur\",\"Coverage (%) - Subsidies -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.cov_pop_tot\",\"Coverage (%) - Subsidies  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.cov_pop_urb\",\"Coverage (%) - Subsidies -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.cov_q1_preT_tot\",\"Coverage in poorest quintile (%) - Subsidies (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.cov_q1_rur\",\"Coverage in poorest quintile (%) - Subsidies -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.cov_q1_tot\",\"Coverage in poorest quintile (%) - Subsidies  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.cov_q1_urb\",\"Coverage in poorest quintile (%) - Subsidies -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.cov_q2_preT_tot\",\"Coverage in 2nd quintile (%) - Subsidies (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.cov_q2_rur\",\"Coverage in 2nd quintile (%) - Subsidies -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.cov_q2_tot\",\"Coverage in 2nd quintile (%) - Subsidies  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.cov_q2_urb\",\"Coverage in 2nd quintile (%) - Subsidies -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.cov_q3_preT_tot\",\"Coverage in 3rd quintile (%) - Subsidies (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.cov_q3_rur\",\"Coverage in 3rd quintile (%) - Subsidies -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.cov_q3_tot\",\"Coverage in 3rd quintile (%) - Subsidies  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.cov_q3_urb\",\"Coverage in 3rd quintile (%) - Subsidies -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.cov_q4_preT_tot\",\"Coverage in 4th quintile (%) - Subsidies (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.cov_q4_rur\",\"Coverage in 4th quintile (%) - Subsidies -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.cov_q4_tot\",\"Coverage in 4th quintile (%) - Subsidies  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.cov_q4_urb\",\"Coverage in 4th quintile (%) - Subsidies -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.cov_q5_preT_tot\",\"Coverage in richest quintile (%) - Subsidies (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.cov_q5_rur\",\"Coverage in richest quintile (%) - Subsidies -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.cov_q5_tot\",\"Coverage in richest quintile (%) - Subsidies  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw.cov_q5_urb\",\"Coverage in richest quintile (%) - Subsidies -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw_gini_ep_preT_tot\",\"Gini inequality reduction (%) -  Subsidies -extreme poor (<$1.25 a day) (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw_gini_ep_tot\",\"Gini inequality reduction (%) -  Subsidies -extreme poor (<$1.25 a day)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw_gini_preT_tot\",\"Gini inequality reduction (%) -  Subsidies -poorest quintile (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw_gini_rur\",\"Gini inequality reduction (%) -  Subsidies -poorest quintile -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw_gini_tot\",\"Gini inequality reduction (%) -  Subsidies -poorest quintile\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw_gini_urb\",\"Gini inequality reduction (%) -  Subsidies - poorest quintile -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw_p0_ep_preT_tot\",\"Poverty Headcount reduction (%) -  Subsidies -extreme poor (<$1.25 a day) (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw_p0_ep_tot\",\"Poverty Headcount reduction (%) -  Subsidies -extreme poor (<$1.25 a day)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw_p0_preT_tot\",\"Poverty Headcount reduction (%) -  Subsidies -poorest quintile (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw_p0_rur\",\"Poverty Headcount reduction (%) -  Subsidies -poorest quintile -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw_p0_tot\",\"Poverty Headcount reduction (%) -  Subsidies -poorest quintile\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw_p0_urb\",\"Poverty Headcount reduction (%) -  Subsidies - poorest quintile -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw_p1_ep_preT_tot\",\"Poverty Gap reduction (%) -  Subsidies -extreme poor (<$1.25 a day) (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw_p1_ep_tot\",\"Poverty Gap reduction (%) -  Subsidies -extreme poor (<$1.25 a day)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw_p1_preT_tot\",\"Poverty Gap reduction (%) -  Subsidies -poorest quintile (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw_p1_rur\",\"Poverty Gap reduction (%) -  Subsidies -poorest quintile -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw_p1_tot\",\"Poverty Gap reduction (%) -  Subsidies -poorest quintile\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_fw_p1_urb\",\"Poverty Gap reduction (%) -  Subsidies - poorest quintile -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.adq_ep_preT_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - In-Kind (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.adq_ep_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - In-Kind  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.adq_pop_preT_tot\",\"Adequacy of benefits (%) - In-Kind (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.adq_pop_rur\",\"Adequacy of benefits (%) - In-Kind -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.adq_pop_tot\",\"Adequacy of benefits (%) - In-Kind  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.adq_pop_urb\",\"Adequacy of benefits (%) - In-Kind -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.adq_q1_preT_tot\",\"Adequacy of benefits in poorest quintile (%) - In-Kind (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.adq_q1_rur\",\"Adequacy of benefits in poorest quintile (%) - In-Kind -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.adq_q1_tot\",\"Adequacy of benefits in poorest quintile (%) - In-Kind  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.adq_q1_urb\",\"Adequacy of benefits in poorest quintile (%) - In-Kind -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.adq_q2_preT_tot\",\"Adequacy of benefits in 2nd quintile (%) - In-Kind (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.adq_q2_rur\",\"Adequacy of benefits in 2nd quintile (%) - In-Kind -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.adq_q2_tot\",\"Adequacy of benefits in 2nd quintile (%) - In-Kind  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.adq_q2_urb\",\"Adequacy of benefits in 2nd quintile (%) - In-Kind -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.adq_q3_preT_tot\",\"Adequacy of benefits in 3rd quintile (%) - In-Kind (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.adq_q3_rur\",\"Adequacy of benefits in 3rd quintile (%) - In-Kind -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.adq_q3_tot\",\"Adequacy of benefits in 3rd quintile (%) - In-Kind  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.adq_q3_urb\",\"Adequacy of benefits in 3rd quintile (%) - In-Kind -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.adq_q4_preT_tot\",\"Adequacy of benefits in 4th quintile (%) - In-Kind (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.adq_q4_rur\",\"Adequacy of benefits in 4th quintile (%) - In-Kind -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.adq_q4_tot\",\"Adequacy of benefits in 4th quintile (%) - In-Kind  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.adq_q4_urb\",\"Adequacy of benefits in 4th quintile (%) - In-Kind -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.adq_q5_preT_tot\",\"Adequacy of benefits in richest quintile (%) - In-Kind (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.adq_q5_rur\",\"Adequacy of benefits in richest quintile (%) - In-Kind -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.adq_q5_tot\",\"Adequacy of benefits in richest quintile (%) - In-Kind  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.adq_q5_urb\",\"Adequacy of benefits in richest quintile (%) - In-Kind -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.avt_ep_preT_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - In-Kind (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.avt_ep_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - In-Kind  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.avt_pop_preT_tot\",\"Average per capita transfer - In-Kind (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.avt_pop_rur\",\"Average per capita transfer - In-Kind -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.avt_pop_tot\",\"Average per capita transfer - In-Kind  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.avt_pop_urb\",\"Average per capita transfer - In-Kind -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.avt_q1_preT_tot\",\"Average per capita transfer held by poorest quintile - In-Kind (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.avt_q1_rur\",\"Average per capita transfer held by poorest quintile - In-Kind -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.avt_q1_tot\",\"Average per capita transfer held by poorest quintile - In-Kind  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.avt_q1_urb\",\"Average per capita transfer held by poorest quintile - In-Kind -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.avt_q2_preT_tot\",\"Average per capita transfer held by 2nd quintile - In-Kind (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.avt_q2_rur\",\"Average per capita transfer held by 2nd quintile - In-Kind -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.avt_q2_tot\",\"Average per capita transfer held by 2nd quintile - In-Kind  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.avt_q2_urb\",\"Average per capita transfer held by 2nd quintile - In-Kind -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.avt_q3_preT_tot\",\"Average per capita transfer held by 3rd quintile - In-Kind (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.avt_q3_rur\",\"Average per capita transfer held by 3rd quintile - In-Kind -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.avt_q3_tot\",\"Average per capita transfer held by 3rd quintile - In-Kind  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.avt_q3_urb\",\"Average per capita transfer held by 3rd quintile - In-Kind -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.avt_q4_preT_tot\",\"Average per capita transfer held by 4th quintile - In-Kind (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.avt_q4_rur\",\"Average per capita transfer held by 4th quintile - In-Kind -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.avt_q4_tot\",\"Average per capita transfer held by 4th quintile - In-Kind  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.avt_q4_urb\",\"Average per capita transfer held by 4th quintile - In-Kind -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.avt_q5_preT_tot\",\"Average per capita transfer held by richest quintile - In-Kind (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.avt_q5_rur\",\"Average per capita transfer held by richest quintile - In-Kind -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.avt_q5_tot\",\"Average per capita transfer held by richest quintile - In-Kind  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.avt_q5_urb\",\"Average per capita transfer held by richest quintile - In-Kind -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.ben_ep_preT_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - In-Kind (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.ben_ep_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - In-Kind  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.ben_q1_preT_tot\",\"Benefits incidence in poorest quintile (%) - In-Kind (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.ben_q1_rur\",\"Benefits incidence in poorest quintile (%) - In-Kind -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.ben_q1_tot\",\"Benefits incidence in poorest quintile (%) - In-Kind  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.ben_q1_urb\",\"Benefits incidence in poorest quintile (%) - In-Kind -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.ben_q2_preT_tot\",\"Benefits incidence in 2nd quintile (%) - In-Kind (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.ben_q2_rur\",\"Benefits incidence in 2nd quintile (%) - In-Kind -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.ben_q2_tot\",\"Benefits incidence in 2nd quintile (%) - In-Kind  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.ben_q2_urb\",\"Benefits incidence in 2nd quintile (%) - In-Kind -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.ben_q3_preT_tot\",\"Benefits incidence in 3rd quintile (%) - In-Kind (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.ben_q3_rur\",\"Benefits incidence in 3rd quintile (%) - In-Kind -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.ben_q3_tot\",\"Benefits incidence in 3rd quintile (%) - In-Kind  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.ben_q3_urb\",\"Benefits incidence in 3rd quintile (%) - In-Kind -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.ben_q4_preT_tot\",\"Benefits incidence in 4th quintile (%) - In-Kind (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.ben_q4_rur\",\"Benefits incidence in 4th quintile (%) - In-Kind -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.ben_q4_tot\",\"Benefits incidence in 4th quintile (%) - In-Kind  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.ben_q4_urb\",\"Benefits incidence in 4th quintile (%) - In-Kind -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.ben_q5_preT_tot\",\"Benefits incidence in richest quintile (%) - In-Kind (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.ben_q5_rur\",\"Benefits incidence in richest quintile (%) - In-Kind -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.ben_q5_tot\",\"Benefits incidence in richest quintile (%) - In-Kind  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.ben_q5_urb\",\"Benefits incidence in richest quintile (%) - In-Kind -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.bry_ep_preT_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - In-Kind (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.bry_ep_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - In-Kind  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.bry_q1_preT_tot\",\"Beneficiary incidence in poorest quintile (%) - In-Kind (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.bry_q1_rur\",\"Beneficiary incidence in poorest quintile (%) - In-Kind -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.bry_q1_tot\",\"Beneficiary incidence in poorest quintile (%) - In-Kind  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.bry_q1_urb\",\"Beneficiary incidence in poorest quintile (%) - In-Kind -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.bry_q2_preT_tot\",\"Beneficiary incidence in 2nd quintile (%) - In-Kind (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.bry_q2_rur\",\"Beneficiary incidence in 2nd quintile (%) - In-Kind -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.bry_q2_tot\",\"Beneficiary incidence in 2nd quintile (%) - In-Kind  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.bry_q2_urb\",\"Beneficiary incidence in 2nd quintile (%) - In-Kind -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.bry_q3_preT_tot\",\"Beneficiary incidence in 3rd quintile (%) - In-Kind (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.bry_q3_rur\",\"Beneficiary incidence in 3rd quintile (%) - In-Kind -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.bry_q3_tot\",\"Beneficiary incidence in 3rd quintile (%) - In-Kind  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.bry_q3_urb\",\"Beneficiary incidence in 3rd quintile (%) - In-Kind -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.bry_q4_preT_tot\",\"Beneficiary incidence in 4th quintile (%) - In-Kind (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.bry_q4_rur\",\"Beneficiary incidence in 4th quintile (%) - In-Kind -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.bry_q4_tot\",\"Beneficiary incidence in 4th quintile (%) - In-Kind  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.bry_q4_urb\",\"Beneficiary incidence in 4th quintile (%) - In-Kind -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.bry_q5_preT_tot\",\"Beneficiary incidence in richest quintile (%) - In-Kind (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.bry_q5_rur\",\"Beneficiary incidence in richest quintile (%) - In-Kind -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.bry_q5_tot\",\"Beneficiary incidence in richest quintile (%) - In-Kind  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.bry_q5_urb\",\"Beneficiary incidence in richest quintile (%) - In-Kind -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.cba_ep_preT_tot\",\"Benefit-cost ratio -  In-Kind -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.cba_ep_tot\",\"Benefit-cost ratio -  In-Kind -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.cba_q1_preT_tot\",\"Benefit-cost ratio -  In-Kind -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.cba_q1_rur\",\"Benefit-cost ratio -  In-Kind -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.cba_q1_tot\",\"Benefit-cost ratio -  In-Kind -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.cba_q1_urb\",\"Benefit-cost ratio -  In-Kind - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.cov_ep_preT_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - In-Kind (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.cov_ep_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - In-Kind  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.cov_pop_preT_tot\",\"Coverage (%) - In-Kind (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.cov_pop_rur\",\"Coverage (%) - In-Kind -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.cov_pop_tot\",\"Coverage (%) - In-Kind  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.cov_pop_urb\",\"Coverage (%) - In-Kind -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.cov_q1_preT_tot\",\"Coverage in poorest quintile (%) - In-Kind (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.cov_q1_rur\",\"Coverage in poorest quintile (%) - In-Kind -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.cov_q1_tot\",\"Coverage in poorest quintile (%) - In-Kind  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.cov_q1_urb\",\"Coverage in poorest quintile (%) - In-Kind -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.cov_q2_preT_tot\",\"Coverage in 2nd quintile (%) - In-Kind (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.cov_q2_rur\",\"Coverage in 2nd quintile (%) - In-Kind -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.cov_q2_tot\",\"Coverage in 2nd quintile (%) - In-Kind  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.cov_q2_urb\",\"Coverage in 2nd quintile (%) - In-Kind -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.cov_q3_preT_tot\",\"Coverage in 3rd quintile (%) - In-Kind (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.cov_q3_rur\",\"Coverage in 3rd quintile (%) - In-Kind -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.cov_q3_tot\",\"Coverage in 3rd quintile (%) - In-Kind  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.cov_q3_urb\",\"Coverage in 3rd quintile (%) - In-Kind -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.cov_q4_preT_tot\",\"Coverage in 4th quintile (%) - In-Kind (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.cov_q4_rur\",\"Coverage in 4th quintile (%) - In-Kind -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.cov_q4_tot\",\"Coverage in 4th quintile (%) - In-Kind  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.cov_q4_urb\",\"Coverage in 4th quintile (%) - In-Kind -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.cov_q5_preT_tot\",\"Coverage in richest quintile (%) - In-Kind (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.cov_q5_rur\",\"Coverage in richest quintile (%) - In-Kind -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.cov_q5_tot\",\"Coverage in richest quintile (%) - In-Kind  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik.cov_q5_urb\",\"Coverage in richest quintile (%) - In-Kind -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik_gini_ep_preT_tot\",\"Gini inequality reduction (%) -  In-Kind -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik_gini_ep_tot\",\"Gini inequality reduction (%) -  In-Kind -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik_gini_preT_tot\",\"Gini inequality reduction (%) -  In-Kind -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik_gini_rur\",\"Gini inequality reduction (%) -  In-Kind -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik_gini_tot\",\"Gini inequality reduction (%) -  In-Kind -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik_gini_urb\",\"Gini inequality reduction (%) -  In-Kind - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik_p0_ep_preT_tot\",\"Poverty Headcount reduction (%) -  In-Kind -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik_p0_ep_tot\",\"Poverty Headcount reduction (%) -  In-Kind -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik_p0_preT_tot\",\"Poverty Headcount reduction (%) -  In-Kind -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik_p0_rur\",\"Poverty Headcount reduction (%) -  In-Kind -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik_p0_tot\",\"Poverty Headcount reduction (%) -  In-Kind -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik_p0_urb\",\"Poverty Headcount reduction (%) -  In-Kind - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik_p1_ep_preT_tot\",\"Poverty Gap reduction (%) -  In-Kind -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik_p1_ep_tot\",\"Poverty Gap reduction (%) -  In-Kind -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik_p1_preT_tot\",\"Poverty Gap reduction (%) -  In-Kind -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik_p1_rur\",\"Poverty Gap reduction (%) -  In-Kind -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik_p1_tot\",\"Poverty Gap reduction (%) -  In-Kind -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_ik_p1_urb\",\"Poverty Gap reduction (%) -  In-Kind - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.adq_ep_preT_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - Other Social Assistance (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.adq_ep_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - Other Social Assistance  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.adq_pop_preT_tot\",\"Adequacy of benefits (%) - Other Social Assistance (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.adq_pop_rur\",\"Adequacy of benefits (%) - Other Social Assistance -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.adq_pop_tot\",\"Adequacy of benefits (%) - Other Social Assistance  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.adq_pop_urb\",\"Adequacy of benefits (%) - Other Social Assistance -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.adq_q1_preT_tot\",\"Adequacy of benefits in poorest quintile (%) - Other Social Assistance (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.adq_q1_rur\",\"Adequacy of benefits in poorest quintile (%) - Other Social Assistance -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.adq_q1_tot\",\"Adequacy of benefits in poorest quintile (%) - Other Social Assistance  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.adq_q1_urb\",\"Adequacy of benefits in poorest quintile (%) - Other Social Assistance -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.adq_q2_preT_tot\",\"Adequacy of benefits in 2nd quintile (%) - Other Social Assistance (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.adq_q2_rur\",\"Adequacy of benefits in 2nd quintile (%) - Other Social Assistance -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.adq_q2_tot\",\"Adequacy of benefits in 2nd quintile (%) - Other Social Assistance  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.adq_q2_urb\",\"Adequacy of benefits in 2nd quintile (%) - Other Social Assistance -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.adq_q3_preT_tot\",\"Adequacy of benefits in 3rd quintile (%) - Other Social Assistance (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.adq_q3_rur\",\"Adequacy of benefits in 3rd quintile (%) - Other Social Assistance -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.adq_q3_tot\",\"Adequacy of benefits in 3rd quintile (%) - Other Social Assistance  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.adq_q3_urb\",\"Adequacy of benefits in 3rd quintile (%) - Other Social Assistance -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.adq_q4_preT_tot\",\"Adequacy of benefits in 4th quintile (%) - Other Social Assistance (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.adq_q4_rur\",\"Adequacy of benefits in 4th quintile (%) - Other Social Assistance -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.adq_q4_tot\",\"Adequacy of benefits in 4th quintile (%) - Other Social Assistance  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.adq_q4_urb\",\"Adequacy of benefits in 4th quintile (%) - Other Social Assistance -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.adq_q5_preT_tot\",\"Adequacy of benefits in richest quintile (%) - Other Social Assistance (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.adq_q5_rur\",\"Adequacy of benefits in richest quintile (%) - Other Social Assistance -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.adq_q5_tot\",\"Adequacy of benefits in richest quintile (%) - Other Social Assistance  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.adq_q5_urb\",\"Adequacy of benefits in richest quintile (%) - Other Social Assistance -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.avt_ep_preT_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - Other Social Assistance (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.avt_ep_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - Other Social Assistance  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.avt_pop_preT_tot\",\"Average per capita transfer - Other Social Assistance (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.avt_pop_rur\",\"Average per capita transfer - Other Social Assistance -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.avt_pop_tot\",\"Average per capita transfer - Other Social Assistance  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.avt_pop_urb\",\"Average per capita transfer - Other Social Assistance -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.avt_q1_preT_tot\",\"Average per capita transfer held by poorest quintile - Other Social Assistance (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.avt_q1_rur\",\"Average per capita transfer held by poorest quintile - Other Social Assistance -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.avt_q1_tot\",\"Average per capita transfer held by poorest quintile - Other Social Assistance  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.avt_q1_urb\",\"Average per capita transfer held by poorest quintile - Other Social Assistance -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.avt_q2_preT_tot\",\"Average per capita transfer held by 2nd quintile - Other Social Assistance (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.avt_q2_rur\",\"Average per capita transfer held by 2nd quintile - Other Social Assistance -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.avt_q2_tot\",\"Average per capita transfer held by 2nd quintile - Other Social Assistance  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.avt_q2_urb\",\"Average per capita transfer held by 2nd quintile - Other Social Assistance -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.avt_q3_preT_tot\",\"Average per capita transfer held by 3rd quintile - Other Social Assistance (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.avt_q3_rur\",\"Average per capita transfer held by 3rd quintile - Other Social Assistance -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.avt_q3_tot\",\"Average per capita transfer held by 3rd quintile - Other Social Assistance  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.avt_q3_urb\",\"Average per capita transfer held by 3rd quintile - Other Social Assistance -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.avt_q4_preT_tot\",\"Average per capita transfer held by 4th quintile - Other Social Assistance (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.avt_q4_rur\",\"Average per capita transfer held by 4th quintile - Other Social Assistance -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.avt_q4_tot\",\"Average per capita transfer held by 4th quintile - Other Social Assistance  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.avt_q4_urb\",\"Average per capita transfer held by 4th quintile - Other Social Assistance -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.avt_q5_preT_tot\",\"Average per capita transfer held by richest quintile - Other Social Assistance (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.avt_q5_rur\",\"Average per capita transfer held by richest quintile - Other Social Assistance -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.avt_q5_tot\",\"Average per capita transfer held by richest quintile - Other Social Assistance  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.avt_q5_urb\",\"Average per capita transfer held by richest quintile - Other Social Assistance -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.ben_ep_preT_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - Other Social Assistance (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.ben_ep_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - Other Social Assistance  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.ben_q1_preT_tot\",\"Benefits incidence in poorest quintile (%) - Other Social Assistance (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.ben_q1_rur\",\"Benefits incidence in poorest quintile (%) - Other Social Assistance -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.ben_q1_tot\",\"Benefits incidence in poorest quintile (%) - Other Social Assistance  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.ben_q1_urb\",\"Benefits incidence in poorest quintile (%) - Other Social Assistance -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.ben_q2_preT_tot\",\"Benefits incidence in 2nd quintile (%) - Other Social Assistance (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.ben_q2_rur\",\"Benefits incidence in 2nd quintile (%) - Other Social Assistance -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.ben_q2_tot\",\"Benefits incidence in 2nd quintile (%) - Other Social Assistance  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.ben_q2_urb\",\"Benefits incidence in 2nd quintile (%) - Other Social Assistance -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.ben_q3_preT_tot\",\"Benefits incidence in 3rd quintile (%) - Other Social Assistance (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.ben_q3_rur\",\"Benefits incidence in 3rd quintile (%) - Other Social Assistance -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.ben_q3_tot\",\"Benefits incidence in 3rd quintile (%) - Other Social Assistance  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.ben_q3_urb\",\"Benefits incidence in 3rd quintile (%) - Other Social Assistance -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.ben_q4_preT_tot\",\"Benefits incidence in 4th quintile (%) - Other Social Assistance (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.ben_q4_rur\",\"Benefits incidence in 4th quintile (%) - Other Social Assistance -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.ben_q4_tot\",\"Benefits incidence in 4th quintile (%) - Other Social Assistance  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.ben_q4_urb\",\"Benefits incidence in 4th quintile (%) - Other Social Assistance -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.ben_q5_preT_tot\",\"Benefits incidence in richest quintile (%) - Other Social Assistance (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.ben_q5_rur\",\"Benefits incidence in richest quintile (%) - Other Social Assistance -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.ben_q5_tot\",\"Benefits incidence in richest quintile (%) - Other Social Assistance  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.ben_q5_urb\",\"Benefits incidence in richest quintile (%) - Other Social Assistance -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.bry_ep_preT_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - Other Social Assistance (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.bry_ep_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - Other Social Assistance  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.bry_q1_preT_tot\",\"Beneficiary incidence in poorest quintile (%) - Other Social Assistance (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.bry_q1_rur\",\"Beneficiary incidence in poorest quintile (%) - Other Social Assistance -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.bry_q1_tot\",\"Beneficiary incidence in poorest quintile (%) - Other Social Assistance  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.bry_q1_urb\",\"Beneficiary incidence in poorest quintile (%) - Other Social Assistance -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.bry_q2_preT_tot\",\"Beneficiary incidence in 2nd quintile (%) - Other Social Assistance (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.bry_q2_rur\",\"Beneficiary incidence in 2nd quintile (%) - Other Social Assistance -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.bry_q2_tot\",\"Beneficiary incidence in 2nd quintile (%) - Other Social Assistance  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.bry_q2_urb\",\"Beneficiary incidence in 2nd quintile (%) - Other Social Assistance -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.bry_q3_preT_tot\",\"Beneficiary incidence in 3rd quintile (%) - Other Social Assistance (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.bry_q3_rur\",\"Beneficiary incidence in 3rd quintile (%) - Other Social Assistance -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.bry_q3_tot\",\"Beneficiary incidence in 3rd quintile (%) - Other Social Assistance  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.bry_q3_urb\",\"Beneficiary incidence in 3rd quintile (%) - Other Social Assistance -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.bry_q4_preT_tot\",\"Beneficiary incidence in 4th quintile (%) - Other Social Assistance (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.bry_q4_rur\",\"Beneficiary incidence in 4th quintile (%) - Other Social Assistance -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.bry_q4_tot\",\"Beneficiary incidence in 4th quintile (%) - Other Social Assistance  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.bry_q4_urb\",\"Beneficiary incidence in 4th quintile (%) - Other Social Assistance -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.bry_q5_preT_tot\",\"Beneficiary incidence in richest quintile (%) - Other Social Assistance (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.bry_q5_rur\",\"Beneficiary incidence in richest quintile (%) - Other Social Assistance -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.bry_q5_tot\",\"Beneficiary incidence in richest quintile (%) - Other Social Assistance  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.bry_q5_urb\",\"Beneficiary incidence in richest quintile (%) - Other Social Assistance -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.cba_ep_preT_tot\",\"Benefit-cost ratio -  Other Social Assistance -extreme poor (<$1.25 a day) (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.cba_ep_tot\",\"Benefit-cost ratio -  Other Social Assistance -extreme poor (<$1.25 a day)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.cba_q1_preT_tot\",\"Benefit-cost ratio -  Other Social Assistance -poorest quintile (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.cba_q1_rur\",\"Benefit-cost ratio -  Other Social Assistance -poorest quintile -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.cba_q1_tot\",\"Benefit-cost ratio -  Other Social Assistance -poorest quintile\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.cba_q1_urb\",\"Benefit-cost ratio -  Other Social Assistance - poorest quintile -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.cov_ep_preT_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - Other Social Assistance (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.cov_ep_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - Other Social Assistance  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.cov_pop_preT_tot\",\"Coverage (%) - Other Social Assistance (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.cov_pop_rur\",\"Coverage (%) - Other Social Assistance -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.cov_pop_tot\",\"Coverage (%) - Other Social Assistance  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.cov_pop_urb\",\"Coverage (%) - Other Social Assistance -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.cov_q1_preT_tot\",\"Coverage in poorest quintile (%) - Other Social Assistance (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.cov_q1_rur\",\"Coverage in poorest quintile (%) - Other Social Assistance -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.cov_q1_tot\",\"Coverage in poorest quintile (%) - Other Social Assistance  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.cov_q1_urb\",\"Coverage in poorest quintile (%) - Other Social Assistance -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.cov_q2_preT_tot\",\"Coverage in 2nd quintile (%) - Other Social Assistance (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.cov_q2_rur\",\"Coverage in 2nd quintile (%) - Other Social Assistance -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.cov_q2_tot\",\"Coverage in 2nd quintile (%) - Other Social Assistance  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.cov_q2_urb\",\"Coverage in 2nd quintile (%) - Other Social Assistance -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.cov_q3_preT_tot\",\"Coverage in 3rd quintile (%) - Other Social Assistance (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.cov_q3_rur\",\"Coverage in 3rd quintile (%) - Other Social Assistance -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.cov_q3_tot\",\"Coverage in 3rd quintile (%) - Other Social Assistance  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.cov_q3_urb\",\"Coverage in 3rd quintile (%) - Other Social Assistance -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.cov_q4_preT_tot\",\"Coverage in 4th quintile (%) - Other Social Assistance (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.cov_q4_rur\",\"Coverage in 4th quintile (%) - Other Social Assistance -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.cov_q4_tot\",\"Coverage in 4th quintile (%) - Other Social Assistance  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.cov_q4_urb\",\"Coverage in 4th quintile (%) - Other Social Assistance -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.cov_q5_preT_tot\",\"Coverage in richest quintile (%) - Other Social Assistance (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.cov_q5_rur\",\"Coverage in richest quintile (%) - Other Social Assistance -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.cov_q5_tot\",\"Coverage in richest quintile (%) - Other Social Assistance  \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os.cov_q5_urb\",\"Coverage in richest quintile (%) - Other Social Assistance -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os_gini_ep_preT_tot\",\"Gini inequality reduction (%) -  Other Social Assistance -extreme poor (<$1.25 a day) (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os_gini_ep_tot\",\"Gini inequality reduction (%) -  Other Social Assistance -extreme poor (<$1.25 a day)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os_gini_preT_tot\",\"Gini inequality reduction (%) -  Other Social Assistance -poorest quintile (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os_gini_rur\",\"Gini inequality reduction (%) -  Other Social Assistance -poorest quintile -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os_gini_tot\",\"Gini inequality reduction (%) -  Other Social Assistance -poorest quintile\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os_gini_urb\",\"Gini inequality reduction (%) -  Other Social Assistance - poorest quintile -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os_p0_ep_preT_tot\",\"Poverty Headcount reduction (%) -  Other Social Assistance -extreme poor (<$1.25 a day) (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os_p0_ep_tot\",\"Poverty Headcount reduction (%) -  Other Social Assistance -extreme poor (<$1.25 a day)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os_p0_preT_tot\",\"Poverty Headcount reduction (%) -  Other Social Assistance -poorest quintile (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os_p0_rur\",\"Poverty Headcount reduction (%) -  Other Social Assistance -poorest quintile -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os_p0_tot\",\"Poverty Headcount reduction (%) -  Other Social Assistance -poorest quintile\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os_p0_urb\",\"Poverty Headcount reduction (%) -  Other Social Assistance - poorest quintile -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os_p1_ep_preT_tot\",\"Poverty Gap reduction (%) -  Other Social Assistance -extreme poor (<$1.25 a day) (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os_p1_ep_tot\",\"Poverty Gap reduction (%) -  Other Social Assistance -extreme poor (<$1.25 a day)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os_p1_preT_tot\",\"Poverty Gap reduction (%) -  Other Social Assistance -poorest quintile (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os_p1_rur\",\"Poverty Gap reduction (%) -  Other Social Assistance -poorest quintile -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os_p1_tot\",\"Poverty Gap reduction (%) -  Other Social Assistance -poorest quintile\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_os_p1_urb\",\"Poverty Gap reduction (%) -  Other Social Assistance - poorest quintile -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.adq_ep_preT_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - Other Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.adq_ep_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - Other Social Assistance  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.adq_pop_preT_tot\",\"Adequacy of benefits (%) - Other Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.adq_pop_rur\",\"Adequacy of benefits (%) - Other Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.adq_pop_tot\",\"Adequacy of benefits (%) - Other Social Assistance  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.adq_pop_urb\",\"Adequacy of benefits (%) - Other Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.adq_q1_preT_tot\",\"Adequacy of benefits in poorest quintile (%) - Other Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.adq_q1_rur\",\"Adequacy of benefits in poorest quintile (%) - Other Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.adq_q1_tot\",\"Adequacy of benefits in poorest quintile (%) - Other Social Assistance  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.adq_q1_urb\",\"Adequacy of benefits in poorest quintile (%) - Other Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.adq_q2_preT_tot\",\"Adequacy of benefits in 2nd quintile (%) - Other Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.adq_q2_rur\",\"Adequacy of benefits in 2nd quintile (%) - Other Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.adq_q2_tot\",\"Adequacy of benefits in 2nd quintile (%) - Other Social Assistance  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.adq_q2_urb\",\"Adequacy of benefits in 2nd quintile (%) - Other Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.adq_q3_preT_tot\",\"Adequacy of benefits in 3rd quintile (%) - Other Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.adq_q3_rur\",\"Adequacy of benefits in 3rd quintile (%) - Other Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.adq_q3_tot\",\"Adequacy of benefits in 3rd quintile (%) - Other Social Assistance  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.adq_q3_urb\",\"Adequacy of benefits in 3rd quintile (%) - Other Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.adq_q4_preT_tot\",\"Adequacy of benefits in 4th quintile (%) - Other Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.adq_q4_rur\",\"Adequacy of benefits in 4th quintile (%) - Other Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.adq_q4_tot\",\"Adequacy of benefits in 4th quintile (%) - Other Social Assistance  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.adq_q4_urb\",\"Adequacy of benefits in 4th quintile (%) - Other Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.adq_q5_preT_tot\",\"Adequacy of benefits in richest quintile (%) - Other Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.adq_q5_rur\",\"Adequacy of benefits in richest quintile (%) - Other Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.adq_q5_tot\",\"Adequacy of benefits in richest quintile (%) - Other Social Assistance  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.adq_q5_urb\",\"Adequacy of benefits in richest quintile (%) - Other Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.avt_ep_preT_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - Other Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.avt_ep_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - Other Social Assistance  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.avt_pop_preT_tot\",\"Average per capita transfer - Other Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.avt_pop_rur\",\"Average per capita transfer - Other Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.avt_pop_tot\",\"Average per capita transfer - Other Social Assistance  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.avt_pop_urb\",\"Average per capita transfer - Other Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.avt_q1_preT_tot\",\"Average per capita transfer held by poorest quintile - Other Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.avt_q1_rur\",\"Average per capita transfer held by poorest quintile - Other Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.avt_q1_tot\",\"Average per capita transfer held by poorest quintile - Other Social Assistance  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.avt_q1_urb\",\"Average per capita transfer held by poorest quintile - Other Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.avt_q2_preT_tot\",\"Average per capita transfer held by 2nd quintile - Other Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.avt_q2_rur\",\"Average per capita transfer held by 2nd quintile - Other Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.avt_q2_tot\",\"Average per capita transfer held by 2nd quintile - Other Social Assistance  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.avt_q2_urb\",\"Average per capita transfer held by 2nd quintile - Other Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.avt_q3_preT_tot\",\"Average per capita transfer held by 3rd quintile - Other Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.avt_q3_rur\",\"Average per capita transfer held by 3rd quintile - Other Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.avt_q3_tot\",\"Average per capita transfer held by 3rd quintile - Other Social Assistance  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.avt_q3_urb\",\"Average per capita transfer held by 3rd quintile - Other Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.avt_q4_preT_tot\",\"Average per capita transfer held by 4th quintile - Other Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.avt_q4_rur\",\"Average per capita transfer held by 4th quintile - Other Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.avt_q4_tot\",\"Average per capita transfer held by 4th quintile - Other Social Assistance  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.avt_q4_urb\",\"Average per capita transfer held by 4th quintile - Other Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.avt_q5_preT_tot\",\"Average per capita transfer held by richest quintile - Other Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.avt_q5_rur\",\"Average per capita transfer held by richest quintile - Other Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.avt_q5_tot\",\"Average per capita transfer held by richest quintile - Other Social Assistance  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.avt_q5_urb\",\"Average per capita transfer held by richest quintile - Other Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.ben_ep_preT_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - Other Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.ben_ep_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - Other Social Assistance  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.ben_q1_preT_tot\",\"Benefits incidence in poorest quintile (%) - Other Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.ben_q1_rur\",\"Benefits incidence in poorest quintile (%) - Other Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.ben_q1_tot\",\"Benefits incidence in poorest quintile (%) - Other Social Assistance  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.ben_q1_urb\",\"Benefits incidence in poorest quintile (%) - Other Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.ben_q2_preT_tot\",\"Benefits incidence in 2nd quintile (%) - Other Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.ben_q2_rur\",\"Benefits incidence in 2nd quintile (%) - Other Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.ben_q2_tot\",\"Benefits incidence in 2nd quintile (%) - Other Social Assistance  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.ben_q2_urb\",\"Benefits incidence in 2nd quintile (%) - Other Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.ben_q3_preT_tot\",\"Benefits incidence in 3rd quintile (%) - Other Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.ben_q3_rur\",\"Benefits incidence in 3rd quintile (%) - Other Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.ben_q3_tot\",\"Benefits incidence in 3rd quintile (%) - Other Social Assistance  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.ben_q3_urb\",\"Benefits incidence in 3rd quintile (%) - Other Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.ben_q4_preT_tot\",\"Benefits incidence in 4th quintile (%) - Other Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.ben_q4_rur\",\"Benefits incidence in 4th quintile (%) - Other Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.ben_q4_tot\",\"Benefits incidence in 4th quintile (%) - Other Social Assistance  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.ben_q4_urb\",\"Benefits incidence in 4th quintile (%) - Other Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.ben_q5_preT_tot\",\"Benefits incidence in richest quintile (%) - Other Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.ben_q5_rur\",\"Benefits incidence in richest quintile (%) - Other Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.ben_q5_tot\",\"Benefits incidence in richest quintile (%) - Other Social Assistance  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.ben_q5_urb\",\"Benefits incidence in richest quintile (%) - Other Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.bry_ep_preT_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - Other Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.bry_ep_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - Other Social Assistance  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.bry_q1_preT_tot\",\"Beneficiary incidence in poorest quintile (%) - Other Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.bry_q1_rur\",\"Beneficiary incidence in poorest quintile (%) - Other Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.bry_q1_tot\",\"Beneficiary incidence in poorest quintile (%) - Other Social Assistance  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.bry_q1_urb\",\"Beneficiary incidence in poorest quintile (%) - Other Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.bry_q2_preT_tot\",\"Beneficiary incidence in 2nd quintile (%) - Other Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.bry_q2_rur\",\"Beneficiary incidence in 2nd quintile (%) - Other Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.bry_q2_tot\",\"Beneficiary incidence in 2nd quintile (%) - Other Social Assistance  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.bry_q2_urb\",\"Beneficiary incidence in 2nd quintile (%) - Other Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.bry_q3_preT_tot\",\"Beneficiary incidence in 3rd quintile (%) - Other Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.bry_q3_rur\",\"Beneficiary incidence in 3rd quintile (%) - Other Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.bry_q3_tot\",\"Beneficiary incidence in 3rd quintile (%) - Other Social Assistance  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.bry_q3_urb\",\"Beneficiary incidence in 3rd quintile (%) - Other Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.bry_q4_preT_tot\",\"Beneficiary incidence in 4th quintile (%) - Other Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.bry_q4_rur\",\"Beneficiary incidence in 4th quintile (%) - Other Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.bry_q4_tot\",\"Beneficiary incidence in 4th quintile (%) - Other Social Assistance  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.bry_q4_urb\",\"Beneficiary incidence in 4th quintile (%) - Other Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.bry_q5_preT_tot\",\"Beneficiary incidence in richest quintile (%) - Other Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.bry_q5_rur\",\"Beneficiary incidence in richest quintile (%) - Other Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.bry_q5_tot\",\"Beneficiary incidence in richest quintile (%) - Other Social Assistance  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.bry_q5_urb\",\"Beneficiary incidence in richest quintile (%) - Other Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.cba_ep_preT_tot\",\"Benefit-cost ratio -  Other Social Assistance -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.cba_ep_tot\",\"Benefit-cost ratio -  Other Social Assistance -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.cba_q1_preT_tot\",\"Benefit-cost ratio -  Other Social Assistance -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.cba_q1_rur\",\"Benefit-cost ratio -  Other Social Assistance -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.cba_q1_tot\",\"Benefit-cost ratio -  Other Social Assistance -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.cba_q1_urb\",\"Benefit-cost ratio -  Other Social Assistance - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.cov_ep_preT_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - Other Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.cov_ep_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - Other Social Assistance  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.cov_pop_preT_tot\",\"Coverage (%) - Other Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.cov_pop_rur\",\"Coverage (%) - Other Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.cov_pop_tot\",\"Coverage (%) - Other Social Assistance  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.cov_pop_urb\",\"Coverage (%) - Other Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.cov_q1_preT_tot\",\"Coverage in poorest quintile (%) - Other Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.cov_q1_rur\",\"Coverage in poorest quintile (%) - Other Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.cov_q1_tot\",\"Coverage in poorest quintile (%) - Other Social Assistance  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.cov_q1_urb\",\"Coverage in poorest quintile (%) - Other Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.cov_q2_preT_tot\",\"Coverage in 2nd quintile (%) - Other Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.cov_q2_rur\",\"Coverage in 2nd quintile (%) - Other Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.cov_q2_tot\",\"Coverage in 2nd quintile (%) - Other Social Assistance  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.cov_q2_urb\",\"Coverage in 2nd quintile (%) - Other Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.cov_q3_preT_tot\",\"Coverage in 3rd quintile (%) - Other Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.cov_q3_rur\",\"Coverage in 3rd quintile (%) - Other Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.cov_q3_tot\",\"Coverage in 3rd quintile (%) - Other Social Assistance  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.cov_q3_urb\",\"Coverage in 3rd quintile (%) - Other Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.cov_q4_preT_tot\",\"Coverage in 4th quintile (%) - Other Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.cov_q4_rur\",\"Coverage in 4th quintile (%) - Other Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.cov_q4_tot\",\"Coverage in 4th quintile (%) - Other Social Assistance  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.cov_q4_urb\",\"Coverage in 4th quintile (%) - Other Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.cov_q5_preT_tot\",\"Coverage in richest quintile (%) - Other Social Assistance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.cov_q5_rur\",\"Coverage in richest quintile (%) - Other Social Assistance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.cov_q5_tot\",\"Coverage in richest quintile (%) - Other Social Assistance  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa.cov_q5_urb\",\"Coverage in richest quintile (%) - Other Social Assistance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa_gini_ep_preT_tot\",\"Gini inequality reduction (%) -  Other Social Assistance -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa_gini_ep_tot\",\"Gini inequality reduction (%) -  Other Social Assistance -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa_gini_preT_tot\",\"Gini inequality reduction (%) -  Other Social Assistance -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa_gini_rur\",\"Gini inequality reduction (%) -  Other Social Assistance -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa_gini_tot\",\"Gini inequality reduction (%) -  Other Social Assistance -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa_gini_urb\",\"Gini inequality reduction (%) -  Other Social Assistance - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa_p0_ep_preT_tot\",\"Poverty Headcount reduction (%) -  Other Social Assistance -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa_p0_ep_tot\",\"Poverty Headcount reduction (%) -  Other Social Assistance -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa_p0_preT_tot\",\"Poverty Headcount reduction (%) -  Other Social Assistance -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa_p0_rur\",\"Poverty Headcount reduction (%) -  Other Social Assistance -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa_p0_tot\",\"Poverty Headcount reduction (%) -  Other Social Assistance -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa_p0_urb\",\"Poverty Headcount reduction (%) -  Other Social Assistance - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa_p1_ep_preT_tot\",\"Poverty Gap reduction (%) -  Other Social Assistance -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa_p1_ep_tot\",\"Poverty Gap reduction (%) -  Other Social Assistance -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa_p1_preT_tot\",\"Poverty Gap reduction (%) -  Other Social Assistance -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa_p1_rur\",\"Poverty Gap reduction (%) -  Other Social Assistance -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa_p1_tot\",\"Poverty Gap reduction (%) -  Other Social Assistance -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_osa_p1_urb\",\"Poverty Gap reduction (%) -  Other Social Assistance - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.adq_ep_preT_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - Public Works or Cash for Work (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.adq_ep_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - Public Works or Cash for Work  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.adq_pop_preT_tot\",\"Adequacy of benefits (%) - Public Works or Cash for Work (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.adq_pop_rur\",\"Adequacy of benefits (%) - Public Works or Cash for Work -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.adq_pop_tot\",\"Adequacy of benefits (%) - Public Works or Cash for Work  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.adq_pop_urb\",\"Adequacy of benefits (%) - Public Works or Cash for Work -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.adq_q1_preT_tot\",\"Adequacy of benefits in poorest quintile (%) - Public Works or Cash for Work (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.adq_q1_rur\",\"Adequacy of benefits in poorest quintile (%) - Public Works or Cash for Work -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.adq_q1_tot\",\"Adequacy of benefits in poorest quintile (%) - Public Works or Cash for Work  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.adq_q1_urb\",\"Adequacy of benefits in poorest quintile (%) - Public Works or Cash for Work -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.adq_q2_preT_tot\",\"Adequacy of benefits in 2nd quintile (%) - Public Works or Cash for Work (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.adq_q2_rur\",\"Adequacy of benefits in 2nd quintile (%) - Public Works or Cash for Work -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.adq_q2_tot\",\"Adequacy of benefits in 2nd quintile (%) - Public Works or Cash for Work  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.adq_q2_urb\",\"Adequacy of benefits in 2nd quintile (%) - Public Works or Cash for Work -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.adq_q3_preT_tot\",\"Adequacy of benefits in 3rd quintile (%) - Public Works or Cash for Work (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.adq_q3_rur\",\"Adequacy of benefits in 3rd quintile (%) - Public Works or Cash for Work -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.adq_q3_tot\",\"Adequacy of benefits in 3rd quintile (%) - Public Works or Cash for Work  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.adq_q3_urb\",\"Adequacy of benefits in 3rd quintile (%) - Public Works or Cash for Work -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.adq_q4_preT_tot\",\"Adequacy of benefits in 4th quintile (%) - Public Works or Cash for Work (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.adq_q4_rur\",\"Adequacy of benefits in 4th quintile (%) - Public Works or Cash for Work -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.adq_q4_tot\",\"Adequacy of benefits in 4th quintile (%) - Public Works or Cash for Work  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.adq_q4_urb\",\"Adequacy of benefits in 4th quintile (%) - Public Works or Cash for Work -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.adq_q5_preT_tot\",\"Adequacy of benefits in richest quintile (%) - Public Works or Cash for Work (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.adq_q5_rur\",\"Adequacy of benefits in richest quintile (%) - Public Works or Cash for Work -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.adq_q5_tot\",\"Adequacy of benefits in richest quintile (%) - Public Works or Cash for Work  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.adq_q5_urb\",\"Adequacy of benefits in richest quintile (%) - Public Works or Cash for Work -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.avt_ep_preT_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - Public Works or Cash for Work (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.avt_ep_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - Public Works or Cash for Work  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.avt_pop_preT_tot\",\"Average per capita transfer - Public Works or Cash for Work (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.avt_pop_rur\",\"Average per capita transfer - Public Works or Cash for Work -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.avt_pop_tot\",\"Average per capita transfer - Public Works or Cash for Work  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.avt_pop_urb\",\"Average per capita transfer - Public Works or Cash for Work -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.avt_q1_preT_tot\",\"Average per capita transfer held by poorest quintile - Public Works or Cash for Work (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.avt_q1_rur\",\"Average per capita transfer held by poorest quintile - Public Works or Cash for Work -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.avt_q1_tot\",\"Average per capita transfer held by poorest quintile - Public Works or Cash for Work  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.avt_q1_urb\",\"Average per capita transfer held by poorest quintile - Public Works or Cash for Work -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.avt_q2_preT_tot\",\"Average per capita transfer held by 2nd quintile - Public Works or Cash for Work (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.avt_q2_rur\",\"Average per capita transfer held by 2nd quintile - Public Works or Cash for Work -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.avt_q2_tot\",\"Average per capita transfer held by 2nd quintile - Public Works or Cash for Work  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.avt_q2_urb\",\"Average per capita transfer held by 2nd quintile - Public Works or Cash for Work -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.avt_q3_preT_tot\",\"Average per capita transfer held by 3rd quintile - Public Works or Cash for Work (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.avt_q3_rur\",\"Average per capita transfer held by 3rd quintile - Public Works or Cash for Work -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.avt_q3_tot\",\"Average per capita transfer held by 3rd quintile - Public Works or Cash for Work  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.avt_q3_urb\",\"Average per capita transfer held by 3rd quintile - Public Works or Cash for Work -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.avt_q4_preT_tot\",\"Average per capita transfer held by 4th quintile - Public Works or Cash for Work (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.avt_q4_rur\",\"Average per capita transfer held by 4th quintile - Public Works or Cash for Work -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.avt_q4_tot\",\"Average per capita transfer held by 4th quintile - Public Works or Cash for Work  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.avt_q4_urb\",\"Average per capita transfer held by 4th quintile - Public Works or Cash for Work -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.avt_q5_preT_tot\",\"Average per capita transfer held by richest quintile - Public Works or Cash for Work (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.avt_q5_rur\",\"Average per capita transfer held by richest quintile - Public Works or Cash for Work -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.avt_q5_tot\",\"Average per capita transfer held by richest quintile - Public Works or Cash for Work  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.avt_q5_urb\",\"Average per capita transfer held by richest quintile - Public Works or Cash for Work -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.ben_ep_preT_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - Public Works or Cash for Work (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.ben_ep_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - Public Works or Cash for Work  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.ben_q1_preT_tot\",\"Benefits incidence in poorest quintile (%) - Public Works or Cash for Work (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.ben_q1_rur\",\"Benefits incidence in poorest quintile (%) - Public Works or Cash for Work -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.ben_q1_tot\",\"Benefits incidence in poorest quintile (%) - Public Works or Cash for Work  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.ben_q1_urb\",\"Benefits incidence in poorest quintile (%) - Public Works or Cash for Work -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.ben_q2_preT_tot\",\"Benefits incidence in 2nd quintile (%) - Public Works or Cash for Work (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.ben_q2_rur\",\"Benefits incidence in 2nd quintile (%) - Public Works or Cash for Work -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.ben_q2_tot\",\"Benefits incidence in 2nd quintile (%) - Public Works or Cash for Work  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.ben_q2_urb\",\"Benefits incidence in 2nd quintile (%) - Public Works or Cash for Work -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.ben_q3_preT_tot\",\"Benefits incidence in 3rd quintile (%) - Public Works or Cash for Work (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.ben_q3_rur\",\"Benefits incidence in 3rd quintile (%) - Public Works or Cash for Work -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.ben_q3_tot\",\"Benefits incidence in 3rd quintile (%) - Public Works or Cash for Work  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.ben_q3_urb\",\"Benefits incidence in 3rd quintile (%) - Public Works or Cash for Work -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.ben_q4_preT_tot\",\"Benefits incidence in 4th quintile (%) - Public Works or Cash for Work (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.ben_q4_rur\",\"Benefits incidence in 4th quintile (%) - Public Works or Cash for Work -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.ben_q4_tot\",\"Benefits incidence in 4th quintile (%) - Public Works or Cash for Work  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.ben_q4_urb\",\"Benefits incidence in 4th quintile (%) - Public Works or Cash for Work -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.ben_q5_preT_tot\",\"Benefits incidence in richest quintile (%) - Public Works or Cash for Work (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.ben_q5_rur\",\"Benefits incidence in richest quintile (%) - Public Works or Cash for Work -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.ben_q5_tot\",\"Benefits incidence in richest quintile (%) - Public Works or Cash for Work  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.ben_q5_urb\",\"Benefits incidence in richest quintile (%) - Public Works or Cash for Work -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.bry_ep_preT_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - Public Works or Cash for Work (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.bry_ep_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - Public Works or Cash for Work  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.bry_q1_preT_tot\",\"Beneficiary incidence in poorest quintile (%) - Public Works or Cash for Work (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.bry_q1_rur\",\"Beneficiary incidence in poorest quintile (%) - Public Works or Cash for Work -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.bry_q1_tot\",\"Beneficiary incidence in poorest quintile (%) - Public Works or Cash for Work  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.bry_q1_urb\",\"Beneficiary incidence in poorest quintile (%) - Public Works or Cash for Work -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.bry_q2_preT_tot\",\"Beneficiary incidence in 2nd quintile (%) - Public Works or Cash for Work (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.bry_q2_rur\",\"Beneficiary incidence in 2nd quintile (%) - Public Works or Cash for Work -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.bry_q2_tot\",\"Beneficiary incidence in 2nd quintile (%) - Public Works or Cash for Work  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.bry_q2_urb\",\"Beneficiary incidence in 2nd quintile (%) - Public Works or Cash for Work -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.bry_q3_preT_tot\",\"Beneficiary incidence in 3rd quintile (%) - Public Works or Cash for Work (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.bry_q3_rur\",\"Beneficiary incidence in 3rd quintile (%) - Public Works or Cash for Work -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.bry_q3_tot\",\"Beneficiary incidence in 3rd quintile (%) - Public Works or Cash for Work  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.bry_q3_urb\",\"Beneficiary incidence in 3rd quintile (%) - Public Works or Cash for Work -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.bry_q4_preT_tot\",\"Beneficiary incidence in 4th quintile (%) - Public Works or Cash for Work (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.bry_q4_rur\",\"Beneficiary incidence in 4th quintile (%) - Public Works or Cash for Work -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.bry_q4_tot\",\"Beneficiary incidence in 4th quintile (%) - Public Works or Cash for Work  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.bry_q4_urb\",\"Beneficiary incidence in 4th quintile (%) - Public Works or Cash for Work -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.bry_q5_preT_tot\",\"Beneficiary incidence in richest quintile (%) - Public Works or Cash for Work (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.bry_q5_rur\",\"Beneficiary incidence in richest quintile (%) - Public Works or Cash for Work -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.bry_q5_tot\",\"Beneficiary incidence in richest quintile (%) - Public Works or Cash for Work  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.bry_q5_urb\",\"Beneficiary incidence in richest quintile (%) - Public Works or Cash for Work -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.cba_ep_preT_tot\",\"Benefit-cost ratio -  Public Works -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.cba_ep_tot\",\"Benefit-cost ratio -  Public Works -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.cba_q1_preT_tot\",\"Benefit-cost ratio -  Public Works -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.cba_q1_rur\",\"Benefit-cost ratio -  Public Works -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.cba_q1_tot\",\"Benefit-cost ratio -  Public Works -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.cba_q1_urb\",\"Benefit-cost ratio -  Public Works - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.cov_ep_preT_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - Public Works or Cash for Work (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.cov_ep_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - Public Works or Cash for Work  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.cov_pop_preT_tot\",\"Coverage (%) - Public Works or Cash for Work (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.cov_pop_rur\",\"Coverage (%) - Public Works or Cash for Work -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.cov_pop_tot\",\"Coverage (%) - Public Works or Cash for Work  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.cov_pop_urb\",\"Coverage (%) - Public Works or Cash for Work -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.cov_q1_preT_tot\",\"Coverage in poorest quintile (%) - Public Works or Cash for Work (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.cov_q1_rur\",\"Coverage in poorest quintile (%) - Public Works or Cash for Work -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.cov_q1_tot\",\"Coverage in poorest quintile (%) - Public Works or Cash for Work  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.cov_q1_urb\",\"Coverage in poorest quintile (%) - Public Works or Cash for Work -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.cov_q2_preT_tot\",\"Coverage in 2nd quintile (%) - Public Works or Cash for Work (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.cov_q2_rur\",\"Coverage in 2nd quintile (%) - Public Works or Cash for Work -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.cov_q2_tot\",\"Coverage in 2nd quintile (%) - Public Works or Cash for Work  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.cov_q2_urb\",\"Coverage in 2nd quintile (%) - Public Works or Cash for Work -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.cov_q3_preT_tot\",\"Coverage in 3rd quintile (%) - Public Works or Cash for Work (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.cov_q3_rur\",\"Coverage in 3rd quintile (%) - Public Works or Cash for Work -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.cov_q3_tot\",\"Coverage in 3rd quintile (%) - Public Works or Cash for Work  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.cov_q3_urb\",\"Coverage in 3rd quintile (%) - Public Works or Cash for Work -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.cov_q4_preT_tot\",\"Coverage in 4th quintile (%) - Public Works or Cash for Work (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.cov_q4_rur\",\"Coverage in 4th quintile (%) - Public Works or Cash for Work -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.cov_q4_tot\",\"Coverage in 4th quintile (%) - Public Works or Cash for Work  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.cov_q4_urb\",\"Coverage in 4th quintile (%) - Public Works or Cash for Work -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.cov_q5_preT_tot\",\"Coverage in richest quintile (%) - Public Works or Cash for Work (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.cov_q5_rur\",\"Coverage in richest quintile (%) - Public Works or Cash for Work -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.cov_q5_tot\",\"Coverage in richest quintile (%) - Public Works or Cash for Work  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw.cov_q5_urb\",\"Coverage in richest quintile (%) - Public Works or Cash for Work -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw_gini_ep_preT_tot\",\"Gini inequality reduction (%) -  Public Works -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw_gini_ep_tot\",\"Gini inequality reduction (%) -  Public Works -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw_gini_preT_tot\",\"Gini inequality reduction (%) -  Public Works -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw_gini_rur\",\"Gini inequality reduction (%) -  Public Works -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw_gini_tot\",\"Gini inequality reduction (%) -  Public Works -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw_gini_urb\",\"Gini inequality reduction (%) -  Public Works - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw_p0_ep_preT_tot\",\"Poverty Headcount reduction (%) -  Public Works -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw_p0_ep_tot\",\"Poverty Headcount reduction (%) -  Public Works -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw_p0_preT_tot\",\"Poverty Headcount reduction (%) -  Public Works -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw_p0_rur\",\"Poverty Headcount reduction (%) -  Public Works -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw_p0_tot\",\"Poverty Headcount reduction (%) -  Public Works -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw_p0_urb\",\"Poverty Headcount reduction (%) -  Public Works - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw_p1_ep_preT_tot\",\"Poverty Gap reduction (%) -  Public Works -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw_p1_ep_tot\",\"Poverty Gap reduction (%) -  Public Works -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw_p1_preT_tot\",\"Poverty Gap reduction (%) -  Public Works -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw_p1_rur\",\"Poverty Gap reduction (%) -  Public Works -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw_p1_tot\",\"Poverty Gap reduction (%) -  Public Works -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_pw_p1_urb\",\"Poverty Gap reduction (%) -  Public Works - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.adq_ep_preT_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - School Feeding (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.adq_ep_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - School Feeding  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.adq_pop_preT_tot\",\"Adequacy of benefits (%) - School Feeding (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.adq_pop_rur\",\"Adequacy of benefits (%) - School Feeding -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.adq_pop_tot\",\"Adequacy of benefits (%) - School Feeding  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.adq_pop_urb\",\"Adequacy of benefits (%) - School Feeding -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.adq_q1_preT_tot\",\"Adequacy of benefits in poorest quintile (%) - School Feeding (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.adq_q1_rur\",\"Adequacy of benefits in poorest quintile (%) - School Feeding -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.adq_q1_tot\",\"Adequacy of benefits in poorest quintile (%) - School Feeding  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.adq_q1_urb\",\"Adequacy of benefits in poorest quintile (%) - School Feeding -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.adq_q2_preT_tot\",\"Adequacy of benefits in 2nd quintile (%) - School Feeding (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.adq_q2_rur\",\"Adequacy of benefits in 2nd quintile (%) - School Feeding -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.adq_q2_tot\",\"Adequacy of benefits in 2nd quintile (%) - School Feeding  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.adq_q2_urb\",\"Adequacy of benefits in 2nd quintile (%) - School Feeding -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.adq_q3_preT_tot\",\"Adequacy of benefits in 3rd quintile (%) - School Feeding (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.adq_q3_rur\",\"Adequacy of benefits in 3rd quintile (%) - School Feeding -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.adq_q3_tot\",\"Adequacy of benefits in 3rd quintile (%) - School Feeding  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.adq_q3_urb\",\"Adequacy of benefits in 3rd quintile (%) - School Feeding -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.adq_q4_preT_tot\",\"Adequacy of benefits in 4th quintile (%) - School Feeding (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.adq_q4_rur\",\"Adequacy of benefits in 4th quintile (%) - School Feeding -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.adq_q4_tot\",\"Adequacy of benefits in 4th quintile (%) - School Feeding  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.adq_q4_urb\",\"Adequacy of benefits in 4th quintile (%) - School Feeding -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.adq_q5_preT_tot\",\"Adequacy of benefits in richest quintile (%) - School Feeding (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.adq_q5_rur\",\"Adequacy of benefits in richest quintile (%) - School Feeding -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.adq_q5_tot\",\"Adequacy of benefits in richest quintile (%) - School Feeding  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.adq_q5_urb\",\"Adequacy of benefits in richest quintile (%) - School Feeding -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.avt_ep_preT_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - School Feeding (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.avt_ep_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - School Feeding  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.avt_pop_preT_tot\",\"Average per capita transfer - School Feeding (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.avt_pop_rur\",\"Average per capita transfer - School Feeding -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.avt_pop_tot\",\"Average per capita transfer - School Feeding  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.avt_pop_urb\",\"Average per capita transfer - School Feeding -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.avt_q1_preT_tot\",\"Average per capita transfer held by poorest quintile - School Feeding (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.avt_q1_rur\",\"Average per capita transfer held by poorest quintile - School Feeding -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.avt_q1_tot\",\"Average per capita transfer held by poorest quintile - School Feeding  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.avt_q1_urb\",\"Average per capita transfer held by poorest quintile - School Feeding -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.avt_q2_preT_tot\",\"Average per capita transfer held by 2nd quintile - School Feeding (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.avt_q2_rur\",\"Average per capita transfer held by 2nd quintile - School Feeding -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.avt_q2_tot\",\"Average per capita transfer held by 2nd quintile - School Feeding  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.avt_q2_urb\",\"Average per capita transfer held by 2nd quintile - School Feeding -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.avt_q3_preT_tot\",\"Average per capita transfer held by 3rd quintile - School Feeding (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.avt_q3_rur\",\"Average per capita transfer held by 3rd quintile - School Feeding -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.avt_q3_tot\",\"Average per capita transfer held by 3rd quintile - School Feeding  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.avt_q3_urb\",\"Average per capita transfer held by 3rd quintile - School Feeding -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.avt_q4_preT_tot\",\"Average per capita transfer held by 4th quintile - School Feeding (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.avt_q4_rur\",\"Average per capita transfer held by 4th quintile - School Feeding -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.avt_q4_tot\",\"Average per capita transfer held by 4th quintile - School Feeding  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.avt_q4_urb\",\"Average per capita transfer held by 4th quintile - School Feeding -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.avt_q5_preT_tot\",\"Average per capita transfer held by richest quintile - School Feeding (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.avt_q5_rur\",\"Average per capita transfer held by richest quintile - School Feeding -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.avt_q5_tot\",\"Average per capita transfer held by richest quintile - School Feeding  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.avt_q5_urb\",\"Average per capita transfer held by richest quintile - School Feeding -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.ben_ep_preT_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - School Feeding (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.ben_ep_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - School Feeding  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.ben_q1_preT_tot\",\"Benefits incidence in poorest quintile (%) - School Feeding (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.ben_q1_rur\",\"Benefits incidence in poorest quintile (%) - School Feeding -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.ben_q1_tot\",\"Benefits incidence in poorest quintile (%) - School Feeding  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.ben_q1_urb\",\"Benefits incidence in poorest quintile (%) - School Feeding -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.ben_q2_preT_tot\",\"Benefits incidence in 2nd quintile (%) - School Feeding (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.ben_q2_rur\",\"Benefits incidence in 2nd quintile (%) - School Feeding -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.ben_q2_tot\",\"Benefits incidence in 2nd quintile (%) - School Feeding  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.ben_q2_urb\",\"Benefits incidence in 2nd quintile (%) - School Feeding -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.ben_q3_preT_tot\",\"Benefits incidence in 3rd quintile (%) - School Feeding (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.ben_q3_rur\",\"Benefits incidence in 3rd quintile (%) - School Feeding -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.ben_q3_tot\",\"Benefits incidence in 3rd quintile (%) - School Feeding  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.ben_q3_urb\",\"Benefits incidence in 3rd quintile (%) - School Feeding -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.ben_q4_preT_tot\",\"Benefits incidence in 4th quintile (%) - School Feeding (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.ben_q4_rur\",\"Benefits incidence in 4th quintile (%) - School Feeding -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.ben_q4_tot\",\"Benefits incidence in 4th quintile (%) - School Feeding  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.ben_q4_urb\",\"Benefits incidence in 4th quintile (%) - School Feeding -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.ben_q5_preT_tot\",\"Benefits incidence in richest quintile (%) - School Feeding (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.ben_q5_rur\",\"Benefits incidence in richest quintile (%) - School Feeding -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.ben_q5_tot\",\"Benefits incidence in richest quintile (%) - School Feeding  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.ben_q5_urb\",\"Benefits incidence in richest quintile (%) - School Feeding -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.bry_ep_preT_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - School Feeding (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.bry_ep_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - School Feeding  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.bry_q1_preT_tot\",\"Beneficiary incidence in poorest quintile (%) - School Feeding (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.bry_q1_rur\",\"Beneficiary incidence in poorest quintile (%) - School Feeding -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.bry_q1_tot\",\"Beneficiary incidence in poorest quintile (%) - School Feeding  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.bry_q1_urb\",\"Beneficiary incidence in poorest quintile (%) - School Feeding -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.bry_q2_preT_tot\",\"Beneficiary incidence in 2nd quintile (%) - School Feeding (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.bry_q2_rur\",\"Beneficiary incidence in 2nd quintile (%) - School Feeding -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.bry_q2_tot\",\"Beneficiary incidence in 2nd quintile (%) - School Feeding  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.bry_q2_urb\",\"Beneficiary incidence in 2nd quintile (%) - School Feeding -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.bry_q3_preT_tot\",\"Beneficiary incidence in 3rd quintile (%) - School Feeding (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.bry_q3_rur\",\"Beneficiary incidence in 3rd quintile (%) - School Feeding -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.bry_q3_tot\",\"Beneficiary incidence in 3rd quintile (%) - School Feeding  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.bry_q3_urb\",\"Beneficiary incidence in 3rd quintile (%) - School Feeding -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.bry_q4_preT_tot\",\"Beneficiary incidence in 4th quintile (%) - School Feeding (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.bry_q4_rur\",\"Beneficiary incidence in 4th quintile (%) - School Feeding -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.bry_q4_tot\",\"Beneficiary incidence in 4th quintile (%) - School Feeding  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.bry_q4_urb\",\"Beneficiary incidence in 4th quintile (%) - School Feeding -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.bry_q5_preT_tot\",\"Beneficiary incidence in richest quintile (%) - School Feeding (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.bry_q5_rur\",\"Beneficiary incidence in richest quintile (%) - School Feeding -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.bry_q5_tot\",\"Beneficiary incidence in richest quintile (%) - School Feeding  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.bry_q5_urb\",\"Beneficiary incidence in richest quintile (%) - School Feeding -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.cba_ep_preT_tot\",\"Benefit-cost ratio -  School-feeding -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.cba_ep_tot\",\"Benefit-cost ratio -  School-feeding -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.cba_q1_preT_tot\",\"Benefit-cost ratio -  School-feeding -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.cba_q1_rur\",\"Benefit-cost ratio -  School-feeding -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.cba_q1_tot\",\"Benefit-cost ratio -  School-feeding -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.cba_q1_urb\",\"Benefit-cost ratio -  School-feeding - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.cov_ep_preT_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - School Feeding (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.cov_ep_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - School Feeding  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.cov_pop_preT_tot\",\"Coverage (%) - School Feeding (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.cov_pop_rur\",\"Coverage (%) - School Feeding -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.cov_pop_tot\",\"Coverage (%) - School Feeding  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.cov_pop_urb\",\"Coverage (%) - School Feeding -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.cov_q1_preT_tot\",\"Coverage in poorest quintile (%) - School Feeding (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.cov_q1_rur\",\"Coverage in poorest quintile (%) - School Feeding -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.cov_q1_tot\",\"Coverage in poorest quintile (%) - School Feeding  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.cov_q1_urb\",\"Coverage in poorest quintile (%) - School Feeding -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.cov_q2_preT_tot\",\"Coverage in 2nd quintile (%) - School Feeding (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.cov_q2_rur\",\"Coverage in 2nd quintile (%) - School Feeding -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.cov_q2_tot\",\"Coverage in 2nd quintile (%) - School Feeding  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.cov_q2_urb\",\"Coverage in 2nd quintile (%) - School Feeding -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.cov_q3_preT_tot\",\"Coverage in 3rd quintile (%) - School Feeding (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.cov_q3_rur\",\"Coverage in 3rd quintile (%) - School Feeding -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.cov_q3_tot\",\"Coverage in 3rd quintile (%) - School Feeding  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.cov_q3_urb\",\"Coverage in 3rd quintile (%) - School Feeding -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.cov_q4_preT_tot\",\"Coverage in 4th quintile (%) - School Feeding (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.cov_q4_rur\",\"Coverage in 4th quintile (%) - School Feeding -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.cov_q4_tot\",\"Coverage in 4th quintile (%) - School Feeding  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.cov_q4_urb\",\"Coverage in 4th quintile (%) - School Feeding -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.cov_q5_preT_tot\",\"Coverage in richest quintile (%) - School Feeding (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.cov_q5_rur\",\"Coverage in richest quintile (%) - School Feeding -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.cov_q5_tot\",\"Coverage in richest quintile (%) - School Feeding  \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf.cov_q5_urb\",\"Coverage in richest quintile (%) - School Feeding -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf_gini_ep_preT_tot\",\"Gini inequality reduction (%) -  School-feeding -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf_gini_ep_tot\",\"Gini inequality reduction (%) -  School-feeding -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf_gini_preT_tot\",\"Gini inequality reduction (%) -  School-feeding -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf_gini_rur\",\"Gini inequality reduction (%) -  School-feeding -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf_gini_tot\",\"Gini inequality reduction (%) -  School-feeding -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf_gini_urb\",\"Gini inequality reduction (%) -  School-feeding - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf_p0_ep_preT_tot\",\"Poverty Headcount reduction (%) -  School-feeding -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf_p0_ep_tot\",\"Poverty Headcount reduction (%) -  School-feeding -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf_p0_preT_tot\",\"Poverty Headcount reduction (%) -  School-feeding -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf_p0_rur\",\"Poverty Headcount reduction (%) -  School-feeding -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf_p0_tot\",\"Poverty Headcount reduction (%) -  School-feeding -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf_p0_urb\",\"Poverty Headcount reduction (%) -  School-feeding - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf_p1_ep_preT_tot\",\"Poverty Gap reduction (%) -  School-feeding -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf_p1_ep_tot\",\"Poverty Gap reduction (%) -  School-feeding -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf_p1_preT_tot\",\"Poverty Gap reduction (%) -  School-feeding -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf_p1_rur\",\"Poverty Gap reduction (%) -  School-feeding -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf_p1_tot\",\"Poverty Gap reduction (%) -  School-feeding -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sf_p1_urb\",\"Poverty Gap reduction (%) -  School-feeding - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.adq_ep_preT_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - Social Pensions  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.adq_ep_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - Social Pensions \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.adq_pop_preT_tot\",\"Adequacy of benefits (%) - Social Pensions (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.adq_pop_rur\",\"Adequacy of benefits (%) - Social Pensions -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.adq_pop_tot\",\"Adequacy of benefits (%) - Social Pensions \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.adq_pop_urb\",\"Adequacy of benefits (%) - Social Pensions -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.adq_q1_preT_tot\",\"Adequacy of benefits in poorest quintile (%) - Social Pensions (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.adq_q1_rur\",\"Adequacy of benefits in poorest quintile (%) - Social Pensions -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.adq_q1_tot\",\"Adequacy of benefits in poorest quintile (%) - Social Pensions \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.adq_q1_urb\",\"Adequacy of benefits in poorest quintile (%) - Social Pensions -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.adq_q2_preT_tot\",\"Adequacy of benefits in 2nd quintile (%) - Social Pensions (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.adq_q2_rur\",\"Adequacy of benefits in 2nd quintile (%) - Social Pensions -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.adq_q2_tot\",\"Adequacy of benefits in 2nd quintile (%) - Social Pensions \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.adq_q2_urb\",\"Adequacy of benefits in 2nd quintile (%) - Social Pensions -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.adq_q3_preT_tot\",\"Adequacy of benefits in 3rd quintile (%) - Social Pensions (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.adq_q3_rur\",\"Adequacy of benefits in 3rd quintile (%) - Social Pensions -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.adq_q3_tot\",\"Adequacy of benefits in 3rd quintile (%) - Social Pensions \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.adq_q3_urb\",\"Adequacy of benefits in 3rd quintile (%) - Social Pensions -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.adq_q4_preT_tot\",\"Adequacy of benefits in 4th quintile (%) - Social Pensions (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.adq_q4_rur\",\"Adequacy of benefits in 4th quintile (%) - Social Pensions -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.adq_q4_tot\",\"Adequacy of benefits in 4th quintile (%) - Social Pensions \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.adq_q4_urb\",\"Adequacy of benefits in 4th quintile (%) - Social Pensions -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.adq_q5_preT_tot\",\"Adequacy of benefits in richest quintile (%) - Social Pensions (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.adq_q5_rur\",\"Adequacy of benefits in richest quintile (%) - Social Pensions -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.adq_q5_tot\",\"Adequacy of benefits in richest quintile (%) - Social Pensions \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.adq_q5_urb\",\"Adequacy of benefits in richest quintile (%) - Social Pensions -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.avt_ep_preT_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - Social Pensions  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.avt_ep_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - Social Pensions \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.avt_pop_preT_tot\",\"Average per capita transfer - Social Pensions (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.avt_pop_rur\",\"Average per capita transfer - Social Pensions -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.avt_pop_tot\",\"Average per capita transfer - Social Pensions \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.avt_pop_urb\",\"Average per capita transfer - Social Pensions -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.avt_q1_preT_tot\",\"Average per capita transfer held by poorest quintile - Social Pensions (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.avt_q1_rur\",\"Average per capita transfer held by poorest quintile - Social Pensions -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.avt_q1_tot\",\"Average per capita transfer held by poorest quintile - Social Pensions \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.avt_q1_urb\",\"Average per capita transfer held by poorest quintile - Social Pensions -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.avt_q2_preT_tot\",\"Average per capita transfer held by 2nd quintile - Social Pensions (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.avt_q2_rur\",\"Average per capita transfer held by 2nd quintile - Social Pensions -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.avt_q2_tot\",\"Average per capita transfer held by 2nd quintile - Social Pensions \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.avt_q2_urb\",\"Average per capita transfer held by 2nd quintile - Social Pensions -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.avt_q3_preT_tot\",\"Average per capita transfer held by 3rd quintile - Social Pensions (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.avt_q3_rur\",\"Average per capita transfer held by 3rd quintile - Social Pensions -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.avt_q3_tot\",\"Average per capita transfer held by 3rd quintile - Social Pensions \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.avt_q3_urb\",\"Average per capita transfer held by 3rd quintile - Social Pensions -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.avt_q4_preT_tot\",\"Average per capita transfer held by 4th quintile - Social Pensions (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.avt_q4_rur\",\"Average per capita transfer held by 4th quintile - Social Pensions -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.avt_q4_tot\",\"Average per capita transfer held by 4th quintile - Social Pensions \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.avt_q4_urb\",\"Average per capita transfer held by 4th quintile - Social Pensions -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.avt_q5_preT_tot\",\"Average per capita transfer held by richest quintile - Social Pensions (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.avt_q5_rur\",\"Average per capita transfer held by richest quintile - Social Pensions -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.avt_q5_tot\",\"Average per capita transfer held by richest quintile - Social Pensions \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.avt_q5_urb\",\"Average per capita transfer held by richest quintile - Social Pensions -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.ben_ep_preT_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - Social Pensions  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.ben_ep_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - Social Pensions \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.ben_q1_preT_tot\",\"Benefits incidence in poorest quintile (%) - Social Pensions (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.ben_q1_rur\",\"Benefits incidence in poorest quintile (%) - Social Pensions -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.ben_q1_tot\",\"Benefits incidence in poorest quintile (%) - Social Pensions \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.ben_q1_urb\",\"Benefits incidence in poorest quintile (%) - Social Pensions -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.ben_q2_preT_tot\",\"Benefits incidence in 2nd quintile (%) - Social Pensions (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.ben_q2_rur\",\"Benefits incidence in 2nd quintile (%) - Social Pensions -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.ben_q2_tot\",\"Benefits incidence in 2nd quintile (%) - Social Pensions \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.ben_q2_urb\",\"Benefits incidence in 2nd quintile (%) - Social Pensions -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.ben_q3_preT_tot\",\"Benefits incidence in 3rd quintile (%) - Social Pensions (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.ben_q3_rur\",\"Benefits incidence in 3rd quintile (%) - Social Pensions -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.ben_q3_tot\",\"Benefits incidence in 3rd quintile (%) - Social Pensions \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.ben_q3_urb\",\"Benefits incidence in 3rd quintile (%) - Social Pensions -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.ben_q4_preT_tot\",\"Benefits incidence in 4th quintile (%) - Social Pensions (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.ben_q4_rur\",\"Benefits incidence in 4th quintile (%) - Social Pensions -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.ben_q4_tot\",\"Benefits incidence in 4th quintile (%) - Social Pensions \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.ben_q4_urb\",\"Benefits incidence in 4th quintile (%) - Social Pensions -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.ben_q5_preT_tot\",\"Benefits incidence in richest quintile (%) - Social Pensions (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.ben_q5_rur\",\"Benefits incidence in richest quintile (%) - Social Pensions -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.ben_q5_tot\",\"Benefits incidence in richest quintile (%) - Social Pensions \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.ben_q5_urb\",\"Benefits incidence in richest quintile (%) - Social Pensions -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.bry_ep_preT_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - Social Pensions  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.bry_ep_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - Social Pensions \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.bry_q1_preT_tot\",\"Beneficiary incidence in poorest quintile (%) - Social Pensions (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.bry_q1_rur\",\"Beneficiary incidence in poorest quintile (%) - Social Pensions -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.bry_q1_tot\",\"Beneficiary incidence in poorest quintile (%) - Social Pensions \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.bry_q1_urb\",\"Beneficiary incidence in poorest quintile (%) - Social Pensions -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.bry_q2_preT_tot\",\"Beneficiary incidence in 2nd quintile (%) - Social Pensions (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.bry_q2_rur\",\"Beneficiary incidence in 2nd quintile (%) - Social Pensions -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.bry_q2_tot\",\"Beneficiary incidence in 2nd quintile (%) - Social Pensions \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.bry_q2_urb\",\"Beneficiary incidence in 2nd quintile (%) - Social Pensions -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.bry_q3_preT_tot\",\"Beneficiary incidence in 3rd quintile (%) - Social Pensions (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.bry_q3_rur\",\"Beneficiary incidence in 3rd quintile (%) - Social Pensions -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.bry_q3_tot\",\"Beneficiary incidence in 3rd quintile (%) - Social Pensions \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.bry_q3_urb\",\"Beneficiary incidence in 3rd quintile (%) - Social Pensions -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.bry_q4_preT_tot\",\"Beneficiary incidence in 4th quintile (%) - Social Pensions (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.bry_q4_rur\",\"Beneficiary incidence in 4th quintile (%) - Social Pensions -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.bry_q4_tot\",\"Beneficiary incidence in 4th quintile (%) - Social Pensions \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.bry_q4_urb\",\"Beneficiary incidence in 4th quintile (%) - Social Pensions -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.bry_q5_preT_tot\",\"Beneficiary incidence in richest quintile (%) - Social Pensions (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.bry_q5_rur\",\"Beneficiary incidence in richest quintile (%) - Social Pensions -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.bry_q5_tot\",\"Beneficiary incidence in richest quintile (%) - Social Pensions \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.bry_q5_urb\",\"Beneficiary incidence in richest quintile (%) - Social Pensions -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.cba_ep_preT_tot\",\"Benefit-cost ratio -  Social Pension -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.cba_ep_tot\",\"Benefit-cost ratio -  Social Pension -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.cba_q1_preT_tot\",\"Benefit-cost ratio -  Social Pension -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.cba_q1_rur\",\"Benefit-cost ratio -  Social Pension -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.cba_q1_tot\",\"Benefit-cost ratio -  Social Pension -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.cba_q1_urb\",\"Benefit-cost ratio -  Social Pension - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.cov_ep_preT_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - Social Pensions  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.cov_ep_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - Social Pensions \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.cov_pop_preT_tot\",\"Coverage (%) - Social Pensions (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.cov_pop_rur\",\"Coverage (%) - Social Pensions -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.cov_pop_tot\",\"Coverage (%) - Social Pensions \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.cov_pop_urb\",\"Coverage (%) - Social Pensions -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.cov_q1_preT_tot\",\"Coverage in poorest quintile (%) - Social Pensions (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.cov_q1_rur\",\"Coverage in poorest quintile (%) - Social Pensions -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.cov_q1_tot\",\"Coverage in poorest quintile (%) - Social Pensions \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.cov_q1_urb\",\"Coverage in poorest quintile (%) - Social Pensions -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.cov_q2_preT_tot\",\"Coverage in 2nd quintile (%) - Social Pensions (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.cov_q2_rur\",\"Coverage in 2nd quintile (%) - Social Pensions -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.cov_q2_tot\",\"Coverage in 2nd quintile (%) - Social Pensions \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.cov_q2_urb\",\"Coverage in 2nd quintile (%) - Social Pensions -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.cov_q3_preT_tot\",\"Coverage in 3rd quintile (%) - Social Pensions (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.cov_q3_rur\",\"Coverage in 3rd quintile (%) - Social Pensions -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.cov_q3_tot\",\"Coverage in 3rd quintile (%) - Social Pensions \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.cov_q3_urb\",\"Coverage in 3rd quintile (%) - Social Pensions -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.cov_q4_preT_tot\",\"Coverage in 4th quintile (%) - Social Pensions (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.cov_q4_rur\",\"Coverage in 4th quintile (%) - Social Pensions -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.cov_q4_tot\",\"Coverage in 4th quintile (%) - Social Pensions \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.cov_q4_urb\",\"Coverage in 4th quintile (%) - Social Pensions -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.cov_q5_preT_tot\",\"Coverage in richest quintile (%) - Social Pensions (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.cov_q5_rur\",\"Coverage in richest quintile (%) - Social Pensions -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.cov_q5_tot\",\"Coverage in richest quintile (%) - Social Pensions \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp.cov_q5_urb\",\"Coverage in richest quintile (%) - Social Pensions -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp_gini_ep_preT_tot\",\"Gini inequality reduction (%) -  Social Pension -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp_gini_ep_tot\",\"Gini inequality reduction (%) -  Social Pension -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp_gini_preT_tot\",\"Gini inequality reduction (%) -  Social Pension -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp_gini_rur\",\"Gini inequality reduction (%) -  Social Pension -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp_gini_tot\",\"Gini inequality reduction (%) -  Social Pension -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp_gini_urb\",\"Gini inequality reduction (%) -  Social Pension - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp_p0_ep_preT_tot\",\"Poverty Headcount reduction (%) -  Social Pension -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp_p0_ep_tot\",\"Poverty Headcount reduction (%) -  Social Pension -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp_p0_preT_tot\",\"Poverty Headcount reduction (%) -  Social Pension -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp_p0_rur\",\"Poverty Headcount reduction (%) -  Social Pension -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp_p0_tot\",\"Poverty Headcount reduction (%) -  Social Pension -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp_p0_urb\",\"Poverty Headcount reduction (%) -  Social Pension - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp_p1_ep_preT_tot\",\"Poverty Gap reduction (%) -  Social Pension -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp_p1_ep_tot\",\"Poverty Gap reduction (%) -  Social Pension -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp_p1_preT_tot\",\"Poverty Gap reduction (%) -  Social Pension -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp_p1_rur\",\"Poverty Gap reduction (%) -  Social Pension -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp_p1_tot\",\"Poverty Gap reduction (%) -  Social Pension -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_sp_p1_urb\",\"Poverty Gap reduction (%) -  Social Pension - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sa_su.adq_ep_preT_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - Subsidies (preT)\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.adq_ep_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - Subsidies\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.adq_pop_preT_tot\",\"Adequacy of benefits (%) - Subsidies (preT)\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.adq_pop_rur\",\"Adequacy of benefits (%) - Subsidies -rural\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.adq_pop_tot\",\"Adequacy of benefits (%) - Subsidies\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.adq_pop_urb\",\"Adequacy of benefits (%) - Subsidies -urban\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.adq_q1_preT_tot\",\"Adequacy of benefits in poorest quintile (%) - Subsidies (preT)\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.adq_q1_rur\",\"Adequacy of benefits in poorest quintile (%) - Subsidies -rural\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.adq_q1_tot\",\"Adequacy of benefits in poorest quintile (%) - Subsidies\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.adq_q1_urb\",\"Adequacy of benefits in poorest quintile (%) - Subsidies -urban\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.adq_q2_preT_tot\",\"Adequacy of benefits in 2nd quintile (%) - Subsidies (preT)\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.adq_q2_rur\",\"Adequacy of benefits in 2nd quintile (%) - Subsidies -rural\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.adq_q2_tot\",\"Adequacy of benefits in 2nd quintile (%) - Subsidies\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.adq_q2_urb\",\"Adequacy of benefits in 2nd quintile (%) - Subsidies -urban\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.adq_q3_preT_tot\",\"Adequacy of benefits in 3rd quintile (%) - Subsidies (preT)\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.adq_q3_rur\",\"Adequacy of benefits in 3rd quintile (%) - Subsidies -rural\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.adq_q3_tot\",\"Adequacy of benefits in 3rd quintile (%) - Subsidies\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.adq_q3_urb\",\"Adequacy of benefits in 3rd quintile (%) - Subsidies -urban\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.adq_q4_preT_tot\",\"Adequacy of benefits in 4th quintile (%) - Subsidies (preT)\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.adq_q4_rur\",\"Adequacy of benefits in 4th quintile (%) - Subsidies -rural\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.adq_q4_tot\",\"Adequacy of benefits in 4th quintile (%) - Subsidies\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.adq_q4_urb\",\"Adequacy of benefits in 4th quintile (%) - Subsidies -urban\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.adq_q5_preT_tot\",\"Adequacy of benefits in richest quintile (%) - Subsidies (preT)\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.adq_q5_rur\",\"Adequacy of benefits in richest quintile (%) - Subsidies -rural\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.adq_q5_tot\",\"Adequacy of benefits in richest quintile (%) - Subsidies\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.adq_q5_urb\",\"Adequacy of benefits in richest quintile (%) - Subsidies -urban\",\"Total transfer amount received by all beneficiaries in a population group as a share of the total welfare of beneficiaries in that group\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.avt_ep_preT_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - Subsidies (preT)\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.avt_ep_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - Subsidies\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.avt_pop_preT_tot\",\"Average per capita transfer - Subsidies (preT)\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.avt_pop_rur\",\"Average per capita transfer - Subsidies -rural\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.avt_pop_tot\",\"Average per capita transfer - Subsidies\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.avt_pop_urb\",\"Average per capita transfer - Subsidies -urban\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.avt_q1_preT_tot\",\"Average per capita transfer held by poorest quintile - Subsidies (preT)\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.avt_q1_rur\",\"Average per capita transfer held by poorest quintile - Subsidies -rural\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.avt_q1_tot\",\"Average per capita transfer held by poorest quintile - Subsidies\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.avt_q1_urb\",\"Average per capita transfer held by poorest quintile - Subsidies -urban\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.avt_q2_preT_tot\",\"Average per capita transfer held by 2nd quintile - Subsidies (preT)\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.avt_q2_rur\",\"Average per capita transfer held by 2nd quintile - Subsidies -rural\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.avt_q2_tot\",\"Average per capita transfer held by 2nd quintile - Subsidies\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.avt_q2_urb\",\"Average per capita transfer held by 2nd quintile - Subsidies -urban\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.avt_q3_preT_tot\",\"Average per capita transfer held by 3rd quintile - Subsidies (preT)\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.avt_q3_rur\",\"Average per capita transfer held by 3rd quintile - Subsidies -rural\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.avt_q3_tot\",\"Average per capita transfer held by 3rd quintile - Subsidies\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.avt_q3_urb\",\"Average per capita transfer held by 3rd quintile - Subsidies -urban\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.avt_q4_preT_tot\",\"Average per capita transfer held by 4th quintile - Subsidies (preT)\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.avt_q4_rur\",\"Average per capita transfer held by 4th quintile - Subsidies -rural\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.avt_q4_tot\",\"Average per capita transfer held by 4th quintile - Subsidies\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.avt_q4_urb\",\"Average per capita transfer held by 4th quintile - Subsidies -urban\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.avt_q5_preT_tot\",\"Average per capita transfer held by richest quintile - Subsidies (preT)\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.avt_q5_rur\",\"Average per capita transfer held by richest quintile - Subsidies -rural\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.avt_q5_tot\",\"Average per capita transfer held by richest quintile - Subsidies\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.avt_q5_urb\",\"Average per capita transfer held by richest quintile - Subsidies -urban\",\"Average transfer amount of  Social Protection and Labor programs among program beneficiaries (per capita, daily $ppp)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.ben_ep_preT_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - Subsidies (preT)\",\"Percentage of benefits going to the extreme poor (those below $125 a day)  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.ben_ep_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - Subsidies\",\"Percentage of benefits going to the extreme poor (those below $125 a day)  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.ben_q1_preT_tot\",\"Benefits incidence in poorest quintile (%) - Subsidies (preT)\",\"Percentage of benefits going to the poorest quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.ben_q1_rur\",\"Benefits incidence in poorest quintile (%) - Subsidies -rural\",\"Percentage of benefits going to the poorest quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.ben_q1_tot\",\"Benefits incidence in poorest quintile (%) - Subsidies\",\"Percentage of benefits going to the poorest quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.ben_q1_urb\",\"Benefits incidence in poorest quintile (%) - Subsidies -urban\",\"Percentage of benefits going to the poorest quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.ben_q2_preT_tot\",\"Benefits incidence in 2nd quintile (%) - Subsidies (preT)\",\"Percentage of benefits going to the second quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.ben_q2_rur\",\"Benefits incidence in 2nd quintile (%) - Subsidies -rural\",\"Percentage of benefits going to the second quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.ben_q2_tot\",\"Benefits incidence in 2nd quintile (%) - Subsidies\",\"Percentage of benefits going to the second quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.ben_q2_urb\",\"Benefits incidence in 2nd quintile (%) - Subsidies -urban\",\"Percentage of benefits going to the second quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.ben_q3_preT_tot\",\"Benefits incidence in 3rd quintile (%) - Subsidies (preT)\",\"Percentage of benefits going to the third quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.ben_q3_rur\",\"Benefits incidence in 3rd quintile (%) - Subsidies -rural\",\"Percentage of benefits going to the third quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.ben_q3_tot\",\"Benefits incidence in 3rd quintile (%) - Subsidies\",\"Percentage of benefits going to the third quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.ben_q3_urb\",\"Benefits incidence in 3rd quintile (%) - Subsidies -urban\",\"Percentage of benefits going to the third quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.ben_q4_preT_tot\",\"Benefits incidence in 4th quintile (%) - Subsidies (preT)\",\"Percentage of benefits going to the fourth quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.ben_q4_rur\",\"Benefits incidence in 4th quintile (%) - Subsidies -rural\",\"Percentage of benefits going to the fourth quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.ben_q4_tot\",\"Benefits incidence in 4th quintile (%) - Subsidies\",\"Percentage of benefits going to the fourth quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.ben_q4_urb\",\"Benefits incidence in 4th quintile (%) - Subsidies -urban\",\"Percentage of benefits going to the fourth quintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.ben_q5_preT_tot\",\"Benefits incidence in richest quintile (%) - Subsidies (preT)\",\"Percentage of benefits going to the richestquintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.ben_q5_rur\",\"Benefits incidence in richest quintile (%) - Subsidies -rural\",\"Percentage of benefits going to the richestquintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.ben_q5_tot\",\"Benefits incidence in richest quintile (%) - Subsidies\",\"Percentage of benefits going to the richestquintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.ben_q5_urb\",\"Benefits incidence in richest quintile (%) - Subsidies -urban\",\"Percentage of benefits going to the richestquintile  relative to the total benefits going to the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.bry_ep_preT_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - Subsidies (preT)\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.bry_ep_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - Subsidies\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.bry_q1_preT_tot\",\"Beneficiary incidence in poorest quintile (%) - Subsidies (preT)\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.bry_q1_rur\",\"Beneficiary incidence in poorest quintile (%) - Subsidies -rural\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.bry_q1_tot\",\"Beneficiary incidence in poorest quintile (%) - Subsidies\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.bry_q1_urb\",\"Beneficiary incidence in poorest quintile (%) - Subsidies -urban\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.bry_q2_preT_tot\",\"Beneficiary incidence in 2nd quintile (%) - Subsidies (preT)\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.bry_q2_rur\",\"Beneficiary incidence in 2nd quintile (%) - Subsidies -rural\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.bry_q2_tot\",\"Beneficiary incidence in 2nd quintile (%) - Subsidies\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.bry_q2_urb\",\"Beneficiary incidence in 2nd quintile (%) - Subsidies -urban\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.bry_q3_preT_tot\",\"Beneficiary incidence in 3rd quintile (%) - Subsidies (preT)\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.bry_q3_rur\",\"Beneficiary incidence in 3rd quintile (%) - Subsidies -rural\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.bry_q3_tot\",\"Beneficiary incidence in 3rd quintile (%) - Subsidies\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.bry_q3_urb\",\"Beneficiary incidence in 3rd quintile (%) - Subsidies -urban\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.bry_q4_preT_tot\",\"Beneficiary incidence in 4th quintile (%) - Subsidies (preT)\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.bry_q4_rur\",\"Beneficiary incidence in 4th quintile (%) - Subsidies -rural\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.bry_q4_tot\",\"Beneficiary incidence in 4th quintile (%) - Subsidies\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.bry_q4_urb\",\"Beneficiary incidence in 4th quintile (%) - Subsidies -urban\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.bry_q5_preT_tot\",\"Beneficiary incidence in richest quintile (%) - Subsidies (preT)\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.bry_q5_rur\",\"Beneficiary incidence in richest quintile (%) - Subsidies -rural\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.bry_q5_tot\",\"Beneficiary incidence in richest quintile (%) - Subsidies\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.bry_q5_urb\",\"Beneficiary incidence in richest quintile (%) - Subsidies -urban\",\"Percentage of program beneficiaries in a quintile relative to the total number of beneficiaries in the population\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.cba_ep_preT_tot\",\"Benefit-cost ratio -  Subsidies -extreme poor (<$1.25 a day) (preT)\",\"Poverty gap reduction obtained for each $1 spent in SPL programs (%)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.cba_ep_tot\",\"Benefit-cost ratio -  Subsidies -extreme poor (<$1.25 a day)\",\"Poverty gap reduction obtained for each $1 spent in SPL programs (%)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.cba_q1_preT_tot\",\"Benefit-cost ratio -  Subsidies -poorest quintile (preT)\",\"Poverty gap reduction obtained for each $1 spent in SPL programs (%)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.cba_q1_rur\",\"Benefit-cost ratio -  Subsidies -poorest quintile -rural\",\"Poverty gap reduction obtained for each $1 spent in SPL programs (%)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.cba_q1_tot\",\"Benefit-cost ratio -  Subsidies -poorest quintile\",\"Poverty gap reduction obtained for each $1 spent in SPL programs (%)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.cba_q1_urb\",\"Benefit-cost ratio -  Subsidies - poorest quintile -urban\",\"Poverty gap reduction obtained for each $1 spent in SPL programs (%)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.cov_ep_preT_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - Subsidies (preT)\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.cov_ep_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - Subsidies\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.cov_pop_preT_tot\",\"Coverage (%) - Subsidies (preT)\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.cov_pop_rur\",\"Coverage (%) - Subsidies -rural\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.cov_pop_tot\",\"Coverage (%) - Subsidies\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.cov_pop_urb\",\"Coverage (%) - Subsidies -urban\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.cov_q1_preT_tot\",\"Coverage in poorest quintile (%) - Subsidies (preT)\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.cov_q1_rur\",\"Coverage in poorest quintile (%) - Subsidies -rural\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.cov_q1_tot\",\"Coverage in poorest quintile (%) - Subsidies\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.cov_q1_urb\",\"Coverage in poorest quintile (%) - Subsidies -urban\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.cov_q2_preT_tot\",\"Coverage in 2nd quintile (%) - Subsidies (preT)\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.cov_q2_rur\",\"Coverage in 2nd quintile (%) - Subsidies -rural\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.cov_q2_tot\",\"Coverage in 2nd quintile (%) - Subsidies\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.cov_q2_urb\",\"Coverage in 2nd quintile (%) - Subsidies -urban\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.cov_q3_preT_tot\",\"Coverage in 3rd quintile (%) - Subsidies (preT)\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.cov_q3_rur\",\"Coverage in 3rd quintile (%) - Subsidies -rural\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.cov_q3_tot\",\"Coverage in 3rd quintile (%) - Subsidies\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.cov_q3_urb\",\"Coverage in 3rd quintile (%) - Subsidies -urban\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.cov_q4_preT_tot\",\"Coverage in 4th quintile (%) - Subsidies (preT)\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.cov_q4_rur\",\"Coverage in 4th quintile (%) - Subsidies -rural\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.cov_q4_tot\",\"Coverage in 4th quintile (%) - Subsidies\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.cov_q4_urb\",\"Coverage in 4th quintile (%) - Subsidies -urban\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.cov_q5_preT_tot\",\"Coverage in richest quintile (%) - Subsidies (preT)\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.cov_q5_rur\",\"Coverage in richest quintile (%) - Subsidies -rural\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.cov_q5_tot\",\"Coverage in richest quintile (%) - Subsidies\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su.cov_q5_urb\",\"Coverage in richest quintile (%) - Subsidies -urban\",\"Percentage of population participating in Social Protection and Labor programs (includes direct and indirect beneficiaries)\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su_gini_ep_preT_tot\",\"Gini inequality reduction (%) -  Subsidies -extreme poor (<$1.25 a day) (preT)\",\"Gini inequality index reduction due to SPL programs as % of pre-transfer Gini index\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su_gini_ep_tot\",\"Gini inequality reduction (%) -  Subsidies -extreme poor (<$1.25 a day)\",\"Gini inequality index reduction due to SPL programs as % of pre-transfer Gini index\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su_gini_preT_tot\",\"Gini inequality reduction (%) -  Subsidies -poorest quintile (preT)\",\"Gini inequality index reduction due to SPL programs as % of pre-transfer Gini index\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su_gini_rur\",\"Gini inequality reduction (%) -  Subsidies -poorest quintile -rural\",\"Gini inequality index reduction due to SPL programs as % of pre-transfer Gini index\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su_gini_tot\",\"Gini inequality reduction (%) -  Subsidies -poorest quintile\",\"Gini inequality index reduction due to SPL programs as % of pre-transfer Gini index\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su_gini_urb\",\"Gini inequality reduction (%) -  Subsidies - poorest quintile -urban\",\"Gini inequality index reduction due to SPL programs as % of pre-transfer Gini index\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su_p0_ep_preT_tot\",\"Poverty Headcount reduction (%) -  Subsidies -extreme poor (<$1.25 a day) (preT)\",\"Poverty headcount reduction due to SPL programs as % of pre-transfer poverty headcount\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su_p0_ep_tot\",\"Poverty Headcount reduction (%) -  Subsidies -extreme poor (<$1.25 a day)\",\"Poverty headcount reduction due to SPL programs as % of pre-transfer poverty headcount\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su_p0_preT_tot\",\"Poverty Headcount reduction (%) -  Subsidies -poorest quintile (preT)\",\"Poverty headcount reduction due to SPL programs as % of pre-transfer poverty headcount\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su_p0_rur\",\"Poverty Headcount reduction (%) -  Subsidies -poorest quintile -rural\",\"Poverty headcount reduction due to SPL programs as % of pre-transfer poverty headcount\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su_p0_tot\",\"Poverty Headcount reduction (%) -  Subsidies -poorest quintile\",\"Poverty headcount reduction due to SPL programs as % of pre-transfer poverty headcount\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su_p0_urb\",\"Poverty Headcount reduction (%) -  Subsidies - poorest quintile -urban\",\"Poverty headcount reduction due to SPL programs as % of pre-transfer poverty headcount\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su_p1_ep_preT_tot\",\"Poverty Gap reduction (%) -  Subsidies -extreme poor (<$1.25 a day) (preT)\",\"Poverty gap reduction due to SPL programs as % of pre-transfer poverty gap\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su_p1_ep_tot\",\"Poverty Gap reduction (%) -  Subsidies -extreme poor (<$1.25 a day)\",\"Poverty gap reduction due to SPL programs as % of pre-transfer poverty gap\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su_p1_preT_tot\",\"Poverty Gap reduction (%) -  Subsidies -poorest quintile (preT)\",\"Poverty gap reduction due to SPL programs as % of pre-transfer poverty gap\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su_p1_rur\",\"Poverty Gap reduction (%) -  Subsidies -poorest quintile -rural\",\"Poverty gap reduction due to SPL programs as % of pre-transfer poverty gap\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su_p1_tot\",\"Poverty Gap reduction (%) -  Subsidies -poorest quintile\",\"Poverty gap reduction due to SPL programs as % of pre-transfer poverty gap\",\"Global Social Protection\",\"ASPIRE\"\n\"per_sa_su_p1_urb\",\"Poverty Gap reduction (%) -  Subsidies - poorest quintile -urban\",\"Poverty gap reduction due to SPL programs as % of pre-transfer poverty gap\",\"Global Social Protection\",\"ASPIRE\"\n\"per_saonl.overlap_ep_preT_tot\",\"Population in extreme poor (<$1.25 a day) only receiving All Social Assistance (%, preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_saonl.overlap_ep_tot\",\"Population in extreme poor (<$1.25 a day) only receiving All Social Assistance (%)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_saonl.overlap_pop_preT_tot\",\"Population only receiving All Social Assistance (%, preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_saonl.overlap_pop_rur\",\"Population only receiving All Social Assistance (%) -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_saonl.overlap_pop_tot\",\"Population only receiving All Social Assistance (%)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_saonl.overlap_pop_urb\",\"Population only receiving All Social Assistance (%) -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_saonl.overlap_q1_preT_tot\",\"Population in the poorest quintile only receiving All Social Assistance (%, preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_saonl.overlap_q1_rur\",\"Population in the poorest quintile only receiving All Social Assistance (%) -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_saonl.overlap_q1_tot\",\"Population in the poorest quintile only receiving All Social Assistance (%)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_saonl.overlap_q1_urb\",\"Population in the poorest quintile only receiving All Social Assistance (%) -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_saoth.overlap_ep_preT_tot\",\"Population in extreme poor (<$1.25 a day) receiving Social Assistance and Other (%, preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_saoth.overlap_ep_tot\",\"Population in extreme poor (<$1.25 a day) receiving Social Assistance and Other (%)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_saoth.overlap_pop_preT_tot\",\"Population receiving Social Assistance and Other (%, preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_saoth.overlap_pop_rur\",\"Population receiving Social Assistance and Other (%) -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_saoth.overlap_pop_tot\",\"Population receiving Social Assistance and Other (%)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_saoth.overlap_pop_urb\",\"Population receiving Social Assistance and Other (%) -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_saoth.overlap_q1_preT_tot\",\"Population in the poorest quintile receiving Social Assistance and Other (%, preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_saoth.overlap_q1_rur\",\"Population in the poorest quintile receiving Social Assistance and Other (%) -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_saoth.overlap_q1_tot\",\"Population in the poorest quintile receiving Social Assistance and Other (%)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_saoth.overlap_q1_urb\",\"Population in the poorest quintile receiving Social Assistance and Other (%) -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.adq_ep_preT_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - All Social Insurance  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.adq_ep_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - All Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.adq_pop_preT_tot\",\"Adequacy of benefits (%) - All Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.adq_pop_rur\",\"Adequacy of benefits (%) - All Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.adq_pop_tot\",\"Adequacy of social insurance programs (% of total welfare of beneficiary households)\",\"Adequacy of social insurance programs is measured by the total transfer amount received by the population participating in social insurance programs as a share of their total welfare. Welfare is defined as the total income or total expenditure of beneficiary households. Social insurance programs include old age contributory pensions (including survivors and disability) and social security and health insurance benefits (including occupational injury benefits, paid sick leave, maternity and other social insurance). Estimates include both direct and indirect beneficiaries.\",\"World Development Indicators\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.adq_pop_urb\",\"Adequacy of benefits (%) - All Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.adq_q1_preT_tot\",\"Adequacy of benefits in poorest quintile (%) - All Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.adq_q1_rur\",\"Adequacy of benefits in poorest quintile (%) - All Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.adq_q1_tot\",\"Adequacy of benefits in poorest quintile (%) - All Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.adq_q1_urb\",\"Adequacy of benefits in poorest quintile (%) - All Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.adq_q2_preT_tot\",\"Adequacy of benefits in 2nd quintile (%) - All Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.adq_q2_rur\",\"Adequacy of benefits in 2nd quintile (%) - All Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.adq_q2_tot\",\"Adequacy of benefits in 2nd quintile (%) - All Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.adq_q2_urb\",\"Adequacy of benefits in 2nd quintile (%) - All Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.adq_q3_preT_tot\",\"Adequacy of benefits in 3rd quintile (%) - All Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.adq_q3_rur\",\"Adequacy of benefits in 3rd quintile (%) - All Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.adq_q3_tot\",\"Adequacy of benefits in 3rd quintile (%) - All Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.adq_q3_urb\",\"Adequacy of benefits in 3rd quintile (%) - All Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.adq_q4_preT_tot\",\"Adequacy of benefits in 4th quintile (%) - All Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.adq_q4_rur\",\"Adequacy of benefits in 4th quintile (%) - All Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.adq_q4_tot\",\"Adequacy of benefits in 4th quintile (%) - All Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.adq_q4_urb\",\"Adequacy of benefits in 4th quintile (%) - All Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.adq_q5_preT_tot\",\"Adequacy of benefits in richest quintile (%) - All Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.adq_q5_rur\",\"Adequacy of benefits in richest quintile (%) - All Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.adq_q5_tot\",\"Adequacy of benefits in richest quintile (%) - All Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.adq_q5_urb\",\"Adequacy of benefits in richest quintile (%) - All Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.avt_ep_preT_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - All Social Insurance  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.avt_ep_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - All Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.avt_pop_preT_tot\",\"Average per capita transfer - All Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.avt_pop_rur\",\"Average per capita transfer - All Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.avt_pop_tot\",\"Average per capita transfer - All Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.avt_pop_urb\",\"Average per capita transfer - All Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.avt_q1_preT_tot\",\"Average per capita transfer held by poorest quintile - All Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.avt_q1_rur\",\"Average per capita transfer held by poorest quintile - All Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.avt_q1_tot\",\"Average per capita transfer held by poorest quintile - All Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.avt_q1_urb\",\"Average per capita transfer held by poorest quintile - All Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.avt_q2_preT_tot\",\"Average per capita transfer held by 2nd quintile - All Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.avt_q2_rur\",\"Average per capita transfer held by 2nd quintile - All Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.avt_q2_tot\",\"Average per capita transfer held by 2nd quintile - All Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.avt_q2_urb\",\"Average per capita transfer held by 2nd quintile - All Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.avt_q3_preT_tot\",\"Average per capita transfer held by 3rd quintile - All Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.avt_q3_rur\",\"Average per capita transfer held by 3rd quintile - All Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.avt_q3_tot\",\"Average per capita transfer held by 3rd quintile - All Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.avt_q3_urb\",\"Average per capita transfer held by 3rd quintile - All Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.avt_q4_preT_tot\",\"Average per capita transfer held by 4th quintile - All Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.avt_q4_rur\",\"Average per capita transfer held by 4th quintile - All Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.avt_q4_tot\",\"Average per capita transfer held by 4th quintile - All Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.avt_q4_urb\",\"Average per capita transfer held by 4th quintile - All Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.avt_q5_preT_tot\",\"Average per capita transfer held by richest quintile - All Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.avt_q5_rur\",\"Average per capita transfer held by richest quintile - All Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.avt_q5_tot\",\"Average per capita transfer held by richest quintile - All Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.avt_q5_urb\",\"Average per capita transfer held by richest quintile - All Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.ben_ep_preT_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - All Social Insurance  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.ben_ep_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - All Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.ben_q1_preT_tot\",\"Benefits incidence in poorest quintile (%) - All Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.ben_q1_rur\",\"Benefits incidence in poorest quintile (%) - All Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.ben_q1_tot\",\"Benefits incidence in poorest quintile (%) - All Social Insurance \",\"NULL\",\"World Development Indicators\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.ben_q1_urb\",\"Benefits incidence in poorest quintile (%) - All Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.ben_q2_preT_tot\",\"Benefits incidence in 2nd quintile (%) - All Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.ben_q2_rur\",\"Benefits incidence in 2nd quintile (%) - All Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.ben_q2_tot\",\"Benefits incidence in 2nd quintile (%) - All Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.ben_q2_urb\",\"Benefits incidence in 2nd quintile (%) - All Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.ben_q3_preT_tot\",\"Benefits incidence in 3rd quintile (%) - All Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.ben_q3_rur\",\"Benefits incidence in 3rd quintile (%) - All Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.ben_q3_tot\",\"Benefits incidence in 3rd quintile (%) - All Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.ben_q3_urb\",\"Benefits incidence in 3rd quintile (%) - All Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.ben_q4_preT_tot\",\"Benefits incidence in 4th quintile (%) - All Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.ben_q4_rur\",\"Benefits incidence in 4th quintile (%) - All Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.ben_q4_tot\",\"Benefits incidence in 4th quintile (%) - All Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.ben_q4_urb\",\"Benefits incidence in 4th quintile (%) - All Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.ben_q5_preT_tot\",\"Benefits incidence in richest quintile (%) - All Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.ben_q5_rur\",\"Benefits incidence in richest quintile (%) - All Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.ben_q5_tot\",\"Benefits incidence in richest quintile (%) - All Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.ben_q5_urb\",\"Benefits incidence in richest quintile (%) - All Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.bry_ep_preT_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - All Social Insurance  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.bry_ep_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - All Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.bry_q1_preT_tot\",\"Beneficiary incidence in poorest quintile (%) - All Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.bry_q1_rur\",\"Beneficiary incidence in poorest quintile (%) - All Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.bry_q1_tot\",\"Beneficiary incidence in poorest quintile (%) - All Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.bry_q1_urb\",\"Beneficiary incidence in poorest quintile (%) - All Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.bry_q2_preT_tot\",\"Beneficiary incidence in 2nd quintile (%) - All Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.bry_q2_rur\",\"Beneficiary incidence in 2nd quintile (%) - All Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.bry_q2_tot\",\"Beneficiary incidence in 2nd quintile (%) - All Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.bry_q2_urb\",\"Beneficiary incidence in 2nd quintile (%) - All Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.bry_q3_preT_tot\",\"Beneficiary incidence in 3rd quintile (%) - All Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.bry_q3_rur\",\"Beneficiary incidence in 3rd quintile (%) - All Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.bry_q3_tot\",\"Beneficiary incidence in 3rd quintile (%) - All Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.bry_q3_urb\",\"Beneficiary incidence in 3rd quintile (%) - All Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.bry_q4_preT_tot\",\"Beneficiary incidence in 4th quintile (%) - All Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.bry_q4_rur\",\"Beneficiary incidence in 4th quintile (%) - All Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.bry_q4_tot\",\"Beneficiary incidence in 4th quintile (%) - All Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.bry_q4_urb\",\"Beneficiary incidence in 4th quintile (%) - All Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.bry_q5_preT_tot\",\"Beneficiary incidence in richest quintile (%) - All Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.bry_q5_rur\",\"Beneficiary incidence in richest quintile (%) - All Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.bry_q5_tot\",\"Beneficiary incidence in richest quintile (%) - All Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.bry_q5_urb\",\"Beneficiary incidence in richest quintile (%) - All Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.cba_ep_preT_tot\",\"Benefit-cost ratio -  All Social Insurance -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.cba_ep_tot\",\"Benefit-cost ratio -  All Social Insurance -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.cba_q1_preT_tot\",\"Benefit-cost ratio -  All Social Insurance -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.cba_q1_rur\",\"Benefit-cost ratio -  All Social Insurance -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.cba_q1_tot\",\"Benefit-cost ratio -  All Social Insurance -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.cba_q1_urb\",\"Benefit-cost ratio -  All Social Insurance - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.cov_ep_preT_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - All Social Insurance  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.cov_ep_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - All Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.cov_pop_preT_tot\",\"Coverage (%) - All Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.cov_pop_rur\",\"Coverage (%) - All Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.cov_pop_tot\",\"Coverage (%) - All Social Insurance \",\"NULL\",\"World Development Indicators\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.cov_pop_urb\",\"Coverage (%) - All Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.cov_q1_preT_tot\",\"Coverage in poorest quintile (%) - All Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.cov_q1_rur\",\"Coverage in poorest quintile (%) - All Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.cov_q1_tot\",\"Coverage in poorest quintile (%) - All Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.cov_q1_urb\",\"Coverage in poorest quintile (%) - All Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.cov_q2_preT_tot\",\"Coverage in 2nd quintile (%) - All Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.cov_q2_rur\",\"Coverage in 2nd quintile (%) - All Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.cov_q2_tot\",\"Coverage in 2nd quintile (%) - All Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.cov_q2_urb\",\"Coverage in 2nd quintile (%) - All Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.cov_q3_preT_tot\",\"Coverage in 3rd quintile (%) - All Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.cov_q3_rur\",\"Coverage in 3rd quintile (%) - All Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.cov_q3_tot\",\"Coverage in 3rd quintile (%) - All Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.cov_q3_urb\",\"Coverage in 3rd quintile (%) - All Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.cov_q4_preT_tot\",\"Coverage in 4th quintile (%) - All Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.cov_q4_rur\",\"Coverage in 4th quintile (%) - All Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.cov_q4_tot\",\"Coverage in 4th quintile (%) - All Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.cov_q4_urb\",\"Coverage in 4th quintile (%) - All Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.cov_q5_preT_tot\",\"Coverage in richest quintile (%) - All Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.cov_q5_rur\",\"Coverage in richest quintile (%) - All Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.cov_q5_tot\",\"Coverage in richest quintile (%) - All Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi.cov_q5_urb\",\"Coverage in richest quintile (%) - All Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi_gini_ep_preT_tot\",\"Gini inequality reduction (%) -  All Social Insurance -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi_gini_ep_tot\",\"Gini inequality reduction (%) -  All Social Insurance -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi_gini_preT_tot\",\"Gini inequality reduction (%) -  All Social Insurance -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi_gini_rur\",\"Gini inequality reduction (%) -  All Social Insurance -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi_gini_tot\",\"Gini inequality reduction (%) -  All Social Insurance -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi_gini_urb\",\"Gini inequality reduction (%) -  All Social Insurance - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi_p0_ep_preT_tot\",\"Poverty Headcount reduction (%) -  All Social Insurance -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi_p0_ep_tot\",\"Poverty Headcount reduction (%) -  All Social Insurance -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi_p0_preT_tot\",\"Poverty Headcount reduction (%) -  All Social Insurance -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi_p0_rur\",\"Poverty Headcount reduction (%) -  All Social Insurance -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi_p0_tot\",\"Poverty Headcount reduction (%) -  All Social Insurance -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi_p0_urb\",\"Poverty Headcount reduction (%) -  All Social Insurance - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi_p1_ep_preT_tot\",\"Poverty Gap reduction (%) -  All Social Insurance -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi_p1_ep_tot\",\"Poverty Gap reduction (%) -  All Social Insurance -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi_p1_preT_tot\",\"Poverty Gap reduction (%) -  All Social Insurance -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi_p1_rur\",\"Poverty Gap reduction (%) -  All Social Insurance -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi_p1_tot\",\"Poverty Gap reduction (%) -  All Social Insurance -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_allsi_p1_urb\",\"Poverty Gap reduction (%) -  All Social Insurance - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.adq_ep_preT_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - Contributory Pensions  (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.adq_ep_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - Contributory Pensions \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.adq_pop_preT_tot\",\"Adequacy of benefits (%) - Contributory Pensions (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.adq_pop_rur\",\"Adequacy of benefits (%) - Contributory Pensions -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.adq_pop_tot\",\"Adequacy of benefits (%) - Contributory Pensions \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.adq_pop_urb\",\"Adequacy of benefits (%) - Contributory Pensions -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.adq_q1_preT_tot\",\"Adequacy of benefits in poorest quintile (%) - Contributory Pensions (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.adq_q1_rur\",\"Adequacy of benefits in poorest quintile (%) - Contributory Pensions -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.adq_q1_tot\",\"Adequacy of benefits in poorest quintile (%) - Contributory Pensions \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.adq_q1_urb\",\"Adequacy of benefits in poorest quintile (%) - Contributory Pensions -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.adq_q2_preT_tot\",\"Adequacy of benefits in 2nd quintile (%) - Contributory Pensions (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.adq_q2_rur\",\"Adequacy of benefits in 2nd quintile (%) - Contributory Pensions -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.adq_q2_tot\",\"Adequacy of benefits in 2nd quintile (%) - Contributory Pensions \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.adq_q2_urb\",\"Adequacy of benefits in 2nd quintile (%) - Contributory Pensions -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.adq_q3_preT_tot\",\"Adequacy of benefits in 3rd quintile (%) - Contributory Pensions (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.adq_q3_rur\",\"Adequacy of benefits in 3rd quintile (%) - Contributory Pensions -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.adq_q3_tot\",\"Adequacy of benefits in 3rd quintile (%) - Contributory Pensions \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.adq_q3_urb\",\"Adequacy of benefits in 3rd quintile (%) - Contributory Pensions -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.adq_q4_preT_tot\",\"Adequacy of benefits in 4th quintile (%) - Contributory Pensions (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.adq_q4_rur\",\"Adequacy of benefits in 4th quintile (%) - Contributory Pensions -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.adq_q4_tot\",\"Adequacy of benefits in 4th quintile (%) - Contributory Pensions \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.adq_q4_urb\",\"Adequacy of benefits in 4th quintile (%) - Contributory Pensions -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.adq_q5_preT_tot\",\"Adequacy of benefits in richest quintile (%) - Contributory Pensions (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.adq_q5_rur\",\"Adequacy of benefits in richest quintile (%) - Contributory Pensions -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.adq_q5_tot\",\"Adequacy of benefits in richest quintile (%) - Contributory Pensions \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.adq_q5_urb\",\"Adequacy of benefits in richest quintile (%) - Contributory Pensions -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.avt_ep_preT_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - Contributory Pensions  (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.avt_ep_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - Contributory Pensions \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.avt_pop_preT_tot\",\"Average per capita transfer - Contributory Pensions (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.avt_pop_rur\",\"Average per capita transfer - Contributory Pensions -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.avt_pop_tot\",\"Average per capita transfer - Contributory Pensions \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.avt_pop_urb\",\"Average per capita transfer - Contributory Pensions -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.avt_q1_preT_tot\",\"Average per capita transfer held by poorest quintile - Contributory Pensions (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.avt_q1_rur\",\"Average per capita transfer held by poorest quintile - Contributory Pensions -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.avt_q1_tot\",\"Average per capita transfer held by poorest quintile - Contributory Pensions \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.avt_q1_urb\",\"Average per capita transfer held by poorest quintile - Contributory Pensions -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.avt_q2_preT_tot\",\"Average per capita transfer held by 2nd quintile - Contributory Pensions (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.avt_q2_rur\",\"Average per capita transfer held by 2nd quintile - Contributory Pensions -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.avt_q2_tot\",\"Average per capita transfer held by 2nd quintile - Contributory Pensions \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.avt_q2_urb\",\"Average per capita transfer held by 2nd quintile - Contributory Pensions -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.avt_q3_preT_tot\",\"Average per capita transfer held by 3rd quintile - Contributory Pensions (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.avt_q3_rur\",\"Average per capita transfer held by 3rd quintile - Contributory Pensions -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.avt_q3_tot\",\"Average per capita transfer held by 3rd quintile - Contributory Pensions \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.avt_q3_urb\",\"Average per capita transfer held by 3rd quintile - Contributory Pensions -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.avt_q4_preT_tot\",\"Average per capita transfer held by 4th quintile - Contributory Pensions (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.avt_q4_rur\",\"Average per capita transfer held by 4th quintile - Contributory Pensions -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.avt_q4_tot\",\"Average per capita transfer held by 4th quintile - Contributory Pensions \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.avt_q4_urb\",\"Average per capita transfer held by 4th quintile - Contributory Pensions -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.avt_q5_preT_tot\",\"Average per capita transfer held by richest quintile - Contributory Pensions (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.avt_q5_rur\",\"Average per capita transfer held by richest quintile - Contributory Pensions -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.avt_q5_tot\",\"Average per capita transfer held by richest quintile - Contributory Pensions \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.avt_q5_urb\",\"Average per capita transfer held by richest quintile - Contributory Pensions -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.ben_ep_preT_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - Contributory Pensions  (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.ben_ep_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - Contributory Pensions \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.ben_q1_preT_tot\",\"Benefits incidence in poorest quintile (%) - Contributory Pensions (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.ben_q1_rur\",\"Benefits incidence in poorest quintile (%) - Contributory Pensions -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.ben_q1_tot\",\"Benefits incidence in poorest quintile (%) - Contributory Pensions \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.ben_q1_urb\",\"Benefits incidence in poorest quintile (%) - Contributory Pensions -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.ben_q2_preT_tot\",\"Benefits incidence in 2nd quintile (%) - Contributory Pensions (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.ben_q2_rur\",\"Benefits incidence in 2nd quintile (%) - Contributory Pensions -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.ben_q2_tot\",\"Benefits incidence in 2nd quintile (%) - Contributory Pensions \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.ben_q2_urb\",\"Benefits incidence in 2nd quintile (%) - Contributory Pensions -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.ben_q3_preT_tot\",\"Benefits incidence in 3rd quintile (%) - Contributory Pensions (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.ben_q3_rur\",\"Benefits incidence in 3rd quintile (%) - Contributory Pensions -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.ben_q3_tot\",\"Benefits incidence in 3rd quintile (%) - Contributory Pensions \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.ben_q3_urb\",\"Benefits incidence in 3rd quintile (%) - Contributory Pensions -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.ben_q4_preT_tot\",\"Benefits incidence in 4th quintile (%) - Contributory Pensions (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.ben_q4_rur\",\"Benefits incidence in 4th quintile (%) - Contributory Pensions -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.ben_q4_tot\",\"Benefits incidence in 4th quintile (%) - Contributory Pensions \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.ben_q4_urb\",\"Benefits incidence in 4th quintile (%) - Contributory Pensions -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.ben_q5_preT_tot\",\"Benefits incidence in richest quintile (%) - Contributory Pensions (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.ben_q5_rur\",\"Benefits incidence in richest quintile (%) - Contributory Pensions -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.ben_q5_tot\",\"Benefits incidence in richest quintile (%) - Contributory Pensions \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.ben_q5_urb\",\"Benefits incidence in richest quintile (%) - Contributory Pensions -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.bry_ep_preT_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - Contributory Pensions  (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.bry_ep_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - Contributory Pensions \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.bry_q1_preT_tot\",\"Beneficiary incidence in poorest quintile (%) - Contributory Pensions (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.bry_q1_rur\",\"Beneficiary incidence in poorest quintile (%) - Contributory Pensions -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.bry_q1_tot\",\"Beneficiary incidence in poorest quintile (%) - Contributory Pensions \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.bry_q1_urb\",\"Beneficiary incidence in poorest quintile (%) - Contributory Pensions -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.bry_q2_preT_tot\",\"Beneficiary incidence in 2nd quintile (%) - Contributory Pensions (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.bry_q2_rur\",\"Beneficiary incidence in 2nd quintile (%) - Contributory Pensions -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.bry_q2_tot\",\"Beneficiary incidence in 2nd quintile (%) - Contributory Pensions \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.bry_q2_urb\",\"Beneficiary incidence in 2nd quintile (%) - Contributory Pensions -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.bry_q3_preT_tot\",\"Beneficiary incidence in 3rd quintile (%) - Contributory Pensions (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.bry_q3_rur\",\"Beneficiary incidence in 3rd quintile (%) - Contributory Pensions -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.bry_q3_tot\",\"Beneficiary incidence in 3rd quintile (%) - Contributory Pensions \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.bry_q3_urb\",\"Beneficiary incidence in 3rd quintile (%) - Contributory Pensions -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.bry_q4_preT_tot\",\"Beneficiary incidence in 4th quintile (%) - Contributory Pensions (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.bry_q4_rur\",\"Beneficiary incidence in 4th quintile (%) - Contributory Pensions -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.bry_q4_tot\",\"Beneficiary incidence in 4th quintile (%) - Contributory Pensions \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.bry_q4_urb\",\"Beneficiary incidence in 4th quintile (%) - Contributory Pensions -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.bry_q5_preT_tot\",\"Beneficiary incidence in richest quintile (%) - Contributory Pensions (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.bry_q5_rur\",\"Beneficiary incidence in richest quintile (%) - Contributory Pensions -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.bry_q5_tot\",\"Beneficiary incidence in richest quintile (%) - Contributory Pensions \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.bry_q5_urb\",\"Beneficiary incidence in richest quintile (%) - Contributory Pensions -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.cba_ep_preT_tot\",\"Benefit-cost ratio -  Contributory Pensions -extreme poor (<$1.25 a day) (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.cba_ep_tot\",\"Benefit-cost ratio -  Contributory Pensions -extreme poor (<$1.25 a day)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.cba_q1_preT_tot\",\"Benefit-cost ratio -  Contributory Pensions -poorest quintile (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.cba_q1_rur\",\"Benefit-cost ratio -  Contributory Pensions -poorest quintile -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.cba_q1_tot\",\"Benefit-cost ratio -  Contributory Pensions -poorest quintile\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.cba_q1_urb\",\"Benefit-cost ratio -  Contributory Pensions - poorest quintile -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.cov_ep_preT_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - Contributory Pensions  (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.cov_ep_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - Contributory Pensions \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.cov_pop_preT_tot\",\"Coverage (%) - Contributory Pensions (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.cov_pop_rur\",\"Coverage (%) - Contributory Pensions -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.cov_pop_tot\",\"Coverage (%) - Contributory Pensions \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.cov_pop_urb\",\"Coverage (%) - Contributory Pensions -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.cov_q1_preT_tot\",\"Coverage in poorest quintile (%) - Contributory Pensions (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.cov_q1_rur\",\"Coverage in poorest quintile (%) - Contributory Pensions -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.cov_q1_tot\",\"Coverage in poorest quintile (%) - Contributory Pensions \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.cov_q1_urb\",\"Coverage in poorest quintile (%) - Contributory Pensions -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.cov_q2_preT_tot\",\"Coverage in 2nd quintile (%) - Contributory Pensions (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.cov_q2_rur\",\"Coverage in 2nd quintile (%) - Contributory Pensions -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.cov_q2_tot\",\"Coverage in 2nd quintile (%) - Contributory Pensions \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.cov_q2_urb\",\"Coverage in 2nd quintile (%) - Contributory Pensions -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.cov_q3_preT_tot\",\"Coverage in 3rd quintile (%) - Contributory Pensions (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.cov_q3_rur\",\"Coverage in 3rd quintile (%) - Contributory Pensions -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.cov_q3_tot\",\"Coverage in 3rd quintile (%) - Contributory Pensions \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.cov_q3_urb\",\"Coverage in 3rd quintile (%) - Contributory Pensions -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.cov_q4_preT_tot\",\"Coverage in 4th quintile (%) - Contributory Pensions (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.cov_q4_rur\",\"Coverage in 4th quintile (%) - Contributory Pensions -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.cov_q4_tot\",\"Coverage in 4th quintile (%) - Contributory Pensions \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.cov_q4_urb\",\"Coverage in 4th quintile (%) - Contributory Pensions -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.cov_q5_preT_tot\",\"Coverage in richest quintile (%) - Contributory Pensions (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.cov_q5_rur\",\"Coverage in richest quintile (%) - Contributory Pensions -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.cov_q5_tot\",\"Coverage in richest quintile (%) - Contributory Pensions \",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp.cov_q5_urb\",\"Coverage in richest quintile (%) - Contributory Pensions -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp_gini_ep_preT_tot\",\"Gini inequality reduction (%) -  Contributory Pensions -extreme poor (<$1.25 a day) (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp_gini_ep_tot\",\"Gini inequality reduction (%) -  Contributory Pensions -extreme poor (<$1.25 a day)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp_gini_preT_tot\",\"Gini inequality reduction (%) -  Contributory Pensions -poorest quintile (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp_gini_rur\",\"Gini inequality reduction (%) -  Contributory Pensions -poorest quintile -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp_gini_tot\",\"Gini inequality reduction (%) -  Contributory Pensions -poorest quintile\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp_gini_urb\",\"Gini inequality reduction (%) -  Contributory Pensions - poorest quintile -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp_p0_ep_preT_tot\",\"Poverty Headcount reduction (%) -  Contributory Pensions -extreme poor (<$1.25 a day) (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp_p0_ep_tot\",\"Poverty Headcount reduction (%) -  Contributory Pensions -extreme poor (<$1.25 a day)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp_p0_preT_tot\",\"Poverty Headcount reduction (%) -  Contributory Pensions -poorest quintile (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp_p0_rur\",\"Poverty Headcount reduction (%) -  Contributory Pensions -poorest quintile -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp_p0_tot\",\"Poverty Headcount reduction (%) -  Contributory Pensions -poorest quintile\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp_p0_urb\",\"Poverty Headcount reduction (%) -  Contributory Pensions - poorest quintile -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp_p1_ep_preT_tot\",\"Poverty Gap reduction (%) -  Contributory Pensions -extreme poor (<$1.25 a day) (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp_p1_ep_tot\",\"Poverty Gap reduction (%) -  Contributory Pensions -extreme poor (<$1.25 a day)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp_p1_preT_tot\",\"Poverty Gap reduction (%) -  Contributory Pensions -poorest quintile (preT)\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp_p1_rur\",\"Poverty Gap reduction (%) -  Contributory Pensions -poorest quintile -rural\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp_p1_tot\",\"Poverty Gap reduction (%) -  Contributory Pensions -poorest quintile\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_cp_p1_urb\",\"Poverty Gap reduction (%) -  Contributory Pensions - poorest quintile -urban\",\"\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.adq_ep_preT_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - Old Age Contributory  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.adq_ep_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - Old Age Contributory \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.adq_pop_preT_tot\",\"Adequacy of benefits (%) - Old Age Contributory (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.adq_pop_rur\",\"Adequacy of benefits (%) - Old Age Contributory -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.adq_pop_tot\",\"Adequacy of benefits (%) - Old Age Contributory \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.adq_pop_urb\",\"Adequacy of benefits (%) - Old Age Contributory -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.adq_q1_preT_tot\",\"Adequacy of benefits in poorest quintile (%) - Old Age Contributory (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.adq_q1_rur\",\"Adequacy of benefits in poorest quintile (%) - Old Age Contributory -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.adq_q1_tot\",\"Adequacy of benefits in poorest quintile (%) - Old Age Contributory \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.adq_q1_urb\",\"Adequacy of benefits in poorest quintile (%) - Old Age Contributory -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.adq_q2_preT_tot\",\"Adequacy of benefits in 2nd quintile (%) - Old Age Contributory (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.adq_q2_rur\",\"Adequacy of benefits in 2nd quintile (%) - Old Age Contributory -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.adq_q2_tot\",\"Adequacy of benefits in 2nd quintile (%) - Old Age Contributory \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.adq_q2_urb\",\"Adequacy of benefits in 2nd quintile (%) - Old Age Contributory -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.adq_q3_preT_tot\",\"Adequacy of benefits in 3rd quintile (%) - Old Age Contributory (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.adq_q3_rur\",\"Adequacy of benefits in 3rd quintile (%) - Old Age Contributory -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.adq_q3_tot\",\"Adequacy of benefits in 3rd quintile (%) - Old Age Contributory \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.adq_q3_urb\",\"Adequacy of benefits in 3rd quintile (%) - Old Age Contributory -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.adq_q4_preT_tot\",\"Adequacy of benefits in 4th quintile (%) - Old Age Contributory (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.adq_q4_rur\",\"Adequacy of benefits in 4th quintile (%) - Old Age Contributory -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.adq_q4_tot\",\"Adequacy of benefits in 4th quintile (%) - Old Age Contributory \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.adq_q4_urb\",\"Adequacy of benefits in 4th quintile (%) - Old Age Contributory -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.adq_q5_preT_tot\",\"Adequacy of benefits in richest quintile (%) - Old Age Contributory (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.adq_q5_rur\",\"Adequacy of benefits in richest quintile (%) - Old Age Contributory -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.adq_q5_tot\",\"Adequacy of benefits in richest quintile (%) - Old Age Contributory \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.adq_q5_urb\",\"Adequacy of benefits in richest quintile (%) - Old Age Contributory -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.avt_ep_preT_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - Old Age Contributory  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.avt_ep_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - Old Age Contributory \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.avt_pop_preT_tot\",\"Average per capita transfer - Old Age Contributory (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.avt_pop_rur\",\"Average per capita transfer - Old Age Contributory -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.avt_pop_tot\",\"Average per capita transfer - Old Age Contributory \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.avt_pop_urb\",\"Average per capita transfer - Old Age Contributory -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.avt_q1_preT_tot\",\"Average per capita transfer held by poorest quintile - Old Age Contributory (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.avt_q1_rur\",\"Average per capita transfer held by poorest quintile - Old Age Contributory -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.avt_q1_tot\",\"Average per capita transfer held by poorest quintile - Old Age Contributory \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.avt_q1_urb\",\"Average per capita transfer held by poorest quintile - Old Age Contributory -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.avt_q2_preT_tot\",\"Average per capita transfer held by 2nd quintile - Old Age Contributory (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.avt_q2_rur\",\"Average per capita transfer held by 2nd quintile - Old Age Contributory -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.avt_q2_tot\",\"Average per capita transfer held by 2nd quintile - Old Age Contributory \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.avt_q2_urb\",\"Average per capita transfer held by 2nd quintile - Old Age Contributory -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.avt_q3_preT_tot\",\"Average per capita transfer held by 3rd quintile - Old Age Contributory (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.avt_q3_rur\",\"Average per capita transfer held by 3rd quintile - Old Age Contributory -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.avt_q3_tot\",\"Average per capita transfer held by 3rd quintile - Old Age Contributory \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.avt_q3_urb\",\"Average per capita transfer held by 3rd quintile - Old Age Contributory -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.avt_q4_preT_tot\",\"Average per capita transfer held by 4th quintile - Old Age Contributory (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.avt_q4_rur\",\"Average per capita transfer held by 4th quintile - Old Age Contributory -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.avt_q4_tot\",\"Average per capita transfer held by 4th quintile - Old Age Contributory \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.avt_q4_urb\",\"Average per capita transfer held by 4th quintile - Old Age Contributory -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.avt_q5_preT_tot\",\"Average per capita transfer held by richest quintile - Old Age Contributory (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.avt_q5_rur\",\"Average per capita transfer held by richest quintile - Old Age Contributory -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.avt_q5_tot\",\"Average per capita transfer held by richest quintile - Old Age Contributory \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.avt_q5_urb\",\"Average per capita transfer held by richest quintile - Old Age Contributory -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.ben_ep_preT_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - Old Age Contributory  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.ben_ep_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - Old Age Contributory \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.ben_q1_preT_tot\",\"Benefits incidence in poorest quintile (%) - Old Age Contributory (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.ben_q1_rur\",\"Benefits incidence in poorest quintile (%) - Old Age Contributory -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.ben_q1_tot\",\"Benefits incidence in poorest quintile (%) - Old Age Contributory \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.ben_q1_urb\",\"Benefits incidence in poorest quintile (%) - Old Age Contributory -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.ben_q2_preT_tot\",\"Benefits incidence in 2nd quintile (%) - Old Age Contributory (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.ben_q2_rur\",\"Benefits incidence in 2nd quintile (%) - Old Age Contributory -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.ben_q2_tot\",\"Benefits incidence in 2nd quintile (%) - Old Age Contributory \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.ben_q2_urb\",\"Benefits incidence in 2nd quintile (%) - Old Age Contributory -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.ben_q3_preT_tot\",\"Benefits incidence in 3rd quintile (%) - Old Age Contributory (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.ben_q3_rur\",\"Benefits incidence in 3rd quintile (%) - Old Age Contributory -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.ben_q3_tot\",\"Benefits incidence in 3rd quintile (%) - Old Age Contributory \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.ben_q3_urb\",\"Benefits incidence in 3rd quintile (%) - Old Age Contributory -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.ben_q4_preT_tot\",\"Benefits incidence in 4th quintile (%) - Old Age Contributory (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.ben_q4_rur\",\"Benefits incidence in 4th quintile (%) - Old Age Contributory -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.ben_q4_tot\",\"Benefits incidence in 4th quintile (%) - Old Age Contributory \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.ben_q4_urb\",\"Benefits incidence in 4th quintile (%) - Old Age Contributory -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.ben_q5_preT_tot\",\"Benefits incidence in richest quintile (%) - Old Age Contributory (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.ben_q5_rur\",\"Benefits incidence in richest quintile (%) - Old Age Contributory -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.ben_q5_tot\",\"Benefits incidence in richest quintile (%) - Old Age Contributory \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.ben_q5_urb\",\"Benefits incidence in richest quintile (%) - Old Age Contributory -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.bry_ep_preT_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - Old Age Contributory  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.bry_ep_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - Old Age Contributory \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.bry_q1_preT_tot\",\"Beneficiary incidence in poorest quintile (%) - Old Age Contributory (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.bry_q1_rur\",\"Beneficiary incidence in poorest quintile (%) - Old Age Contributory -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.bry_q1_tot\",\"Beneficiary incidence in poorest quintile (%) - Old Age Contributory \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.bry_q1_urb\",\"Beneficiary incidence in poorest quintile (%) - Old Age Contributory -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.bry_q2_preT_tot\",\"Beneficiary incidence in 2nd quintile (%) - Old Age Contributory (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.bry_q2_rur\",\"Beneficiary incidence in 2nd quintile (%) - Old Age Contributory -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.bry_q2_tot\",\"Beneficiary incidence in 2nd quintile (%) - Old Age Contributory \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.bry_q2_urb\",\"Beneficiary incidence in 2nd quintile (%) - Old Age Contributory -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.bry_q3_preT_tot\",\"Beneficiary incidence in 3rd quintile (%) - Old Age Contributory (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.bry_q3_rur\",\"Beneficiary incidence in 3rd quintile (%) - Old Age Contributory -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.bry_q3_tot\",\"Beneficiary incidence in 3rd quintile (%) - Old Age Contributory \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.bry_q3_urb\",\"Beneficiary incidence in 3rd quintile (%) - Old Age Contributory -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.bry_q4_preT_tot\",\"Beneficiary incidence in 4th quintile (%) - Old Age Contributory (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.bry_q4_rur\",\"Beneficiary incidence in 4th quintile (%) - Old Age Contributory -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.bry_q4_tot\",\"Beneficiary incidence in 4th quintile (%) - Old Age Contributory \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.bry_q4_urb\",\"Beneficiary incidence in 4th quintile (%) - Old Age Contributory -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.bry_q5_preT_tot\",\"Beneficiary incidence in richest quintile (%) - Old Age Contributory (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.bry_q5_rur\",\"Beneficiary incidence in richest quintile (%) - Old Age Contributory -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.bry_q5_tot\",\"Beneficiary incidence in richest quintile (%) - Old Age Contributory \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.bry_q5_urb\",\"Beneficiary incidence in richest quintile (%) - Old Age Contributory -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.cba_ep_preT_tot\",\"Benefit-cost ratio -  Old Age Contributory -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.cba_ep_tot\",\"Benefit-cost ratio -  Old Age Contributory -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.cba_q1_preT_tot\",\"Benefit-cost ratio -  Old Age Contributory -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.cba_q1_rur\",\"Benefit-cost ratio -  Old Age Contributory -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.cba_q1_tot\",\"Benefit-cost ratio -  Old Age Contributory -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.cba_q1_urb\",\"Benefit-cost ratio -  Old Age Contributory - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.cov_ep_preT_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - Old Age Contributory  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.cov_ep_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - Old Age Contributory \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.cov_pop_preT_tot\",\"Coverage (%) - Old Age Contributory (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.cov_pop_rur\",\"Coverage (%) - Old Age Contributory -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.cov_pop_tot\",\"Coverage (%) - Old Age Contributory \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.cov_pop_urb\",\"Coverage (%) - Old Age Contributory -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.cov_q1_preT_tot\",\"Coverage in poorest quintile (%) - Old Age Contributory (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.cov_q1_rur\",\"Coverage in poorest quintile (%) - Old Age Contributory -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.cov_q1_tot\",\"Coverage in poorest quintile (%) - Old Age Contributory \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.cov_q1_urb\",\"Coverage in poorest quintile (%) - Old Age Contributory -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.cov_q2_preT_tot\",\"Coverage in 2nd quintile (%) - Old Age Contributory (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.cov_q2_rur\",\"Coverage in 2nd quintile (%) - Old Age Contributory -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.cov_q2_tot\",\"Coverage in 2nd quintile (%) - Old Age Contributory \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.cov_q2_urb\",\"Coverage in 2nd quintile (%) - Old Age Contributory -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.cov_q3_preT_tot\",\"Coverage in 3rd quintile (%) - Old Age Contributory (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.cov_q3_rur\",\"Coverage in 3rd quintile (%) - Old Age Contributory -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.cov_q3_tot\",\"Coverage in 3rd quintile (%) - Old Age Contributory \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.cov_q3_urb\",\"Coverage in 3rd quintile (%) - Old Age Contributory -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.cov_q4_preT_tot\",\"Coverage in 4th quintile (%) - Old Age Contributory (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.cov_q4_rur\",\"Coverage in 4th quintile (%) - Old Age Contributory -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.cov_q4_tot\",\"Coverage in 4th quintile (%) - Old Age Contributory \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.cov_q4_urb\",\"Coverage in 4th quintile (%) - Old Age Contributory -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.cov_q5_preT_tot\",\"Coverage in richest quintile (%) - Old Age Contributory (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.cov_q5_rur\",\"Coverage in richest quintile (%) - Old Age Contributory -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.cov_q5_tot\",\"Coverage in richest quintile (%) - Old Age Contributory \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa.cov_q5_urb\",\"Coverage in richest quintile (%) - Old Age Contributory -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa_gini_ep_preT_tot\",\"Gini inequality reduction (%) -  Old Age Contributory -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa_gini_ep_tot\",\"Gini inequality reduction (%) -  Old Age Contributory -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa_gini_preT_tot\",\"Gini inequality reduction (%) -  Old Age Contributory -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa_gini_rur\",\"Gini inequality reduction (%) -  Old Age Contributory -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa_gini_tot\",\"Gini inequality reduction (%) -  Old Age Contributory -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa_gini_urb\",\"Gini inequality reduction (%) -  Old Age Contributory - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa_p0_ep_preT_tot\",\"Poverty Headcount reduction (%) -  Old Age Contributory -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa_p0_ep_tot\",\"Poverty Headcount reduction (%) -  Old Age Contributory -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa_p0_preT_tot\",\"Poverty Headcount reduction (%) -  Old Age Contributory -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa_p0_rur\",\"Poverty Headcount reduction (%) -  Old Age Contributory -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa_p0_tot\",\"Poverty Headcount reduction (%) -  Old Age Contributory -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa_p0_urb\",\"Poverty Headcount reduction (%) -  Old Age Contributory - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa_p1_ep_preT_tot\",\"Poverty Gap reduction (%) -  Old Age Contributory -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa_p1_ep_tot\",\"Poverty Gap reduction (%) -  Old Age Contributory -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa_p1_preT_tot\",\"Poverty Gap reduction (%) -  Old Age Contributory -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa_p1_rur\",\"Poverty Gap reduction (%) -  Old Age Contributory -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa_p1_tot\",\"Poverty Gap reduction (%) -  Old Age Contributory -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_oa_p1_urb\",\"Poverty Gap reduction (%) -  Old Age Contributory - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.adq_ep_preT_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - Other Social Insurance  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.adq_ep_tot\",\"Adequacy of benefits in extreme poor (<$1.25 a day) (%) - Other Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.adq_pop_preT_tot\",\"Adequacy of benefits (%) - Other Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.adq_pop_rur\",\"Adequacy of benefits (%) - Other Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.adq_pop_tot\",\"Adequacy of benefits (%) - Other Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.adq_pop_urb\",\"Adequacy of benefits (%) - Other Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.adq_q1_preT_tot\",\"Adequacy of benefits in poorest quintile (%) - Other Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.adq_q1_rur\",\"Adequacy of benefits in poorest quintile (%) - Other Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.adq_q1_tot\",\"Adequacy of benefits in poorest quintile (%) - Other Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.adq_q1_urb\",\"Adequacy of benefits in poorest quintile (%) - Other Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.adq_q2_preT_tot\",\"Adequacy of benefits in 2nd quintile (%) - Other Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.adq_q2_rur\",\"Adequacy of benefits in 2nd quintile (%) - Other Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.adq_q2_tot\",\"Adequacy of benefits in 2nd quintile (%) - Other Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.adq_q2_urb\",\"Adequacy of benefits in 2nd quintile (%) - Other Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.adq_q3_preT_tot\",\"Adequacy of benefits in 3rd quintile (%) - Other Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.adq_q3_rur\",\"Adequacy of benefits in 3rd quintile (%) - Other Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.adq_q3_tot\",\"Adequacy of benefits in 3rd quintile (%) - Other Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.adq_q3_urb\",\"Adequacy of benefits in 3rd quintile (%) - Other Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.adq_q4_preT_tot\",\"Adequacy of benefits in 4th quintile (%) - Other Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.adq_q4_rur\",\"Adequacy of benefits in 4th quintile (%) - Other Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.adq_q4_tot\",\"Adequacy of benefits in 4th quintile (%) - Other Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.adq_q4_urb\",\"Adequacy of benefits in 4th quintile (%) - Other Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.adq_q5_preT_tot\",\"Adequacy of benefits in richest quintile (%) - Other Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.adq_q5_rur\",\"Adequacy of benefits in richest quintile (%) - Other Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.adq_q5_tot\",\"Adequacy of benefits in richest quintile (%) - Other Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.adq_q5_urb\",\"Adequacy of benefits in richest quintile (%) - Other Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.avt_ep_preT_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - Other Social Insurance  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.avt_ep_tot\",\"Average per capita transfer held by extreme poor (<$1.25 a day) - Other Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.avt_pop_preT_tot\",\"Average per capita transfer - Other Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.avt_pop_rur\",\"Average per capita transfer - Other Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.avt_pop_tot\",\"Average per capita transfer - Other Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.avt_pop_urb\",\"Average per capita transfer - Other Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.avt_q1_preT_tot\",\"Average per capita transfer held by poorest quintile - Other Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.avt_q1_rur\",\"Average per capita transfer held by poorest quintile - Other Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.avt_q1_tot\",\"Average per capita transfer held by poorest quintile - Other Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.avt_q1_urb\",\"Average per capita transfer held by poorest quintile - Other Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.avt_q2_preT_tot\",\"Average per capita transfer held by 2nd quintile - Other Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.avt_q2_rur\",\"Average per capita transfer held by 2nd quintile - Other Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.avt_q2_tot\",\"Average per capita transfer held by 2nd quintile - Other Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.avt_q2_urb\",\"Average per capita transfer held by 2nd quintile - Other Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.avt_q3_preT_tot\",\"Average per capita transfer held by 3rd quintile - Other Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.avt_q3_rur\",\"Average per capita transfer held by 3rd quintile - Other Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.avt_q3_tot\",\"Average per capita transfer held by 3rd quintile - Other Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.avt_q3_urb\",\"Average per capita transfer held by 3rd quintile - Other Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.avt_q4_preT_tot\",\"Average per capita transfer held by 4th quintile - Other Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.avt_q4_rur\",\"Average per capita transfer held by 4th quintile - Other Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.avt_q4_tot\",\"Average per capita transfer held by 4th quintile - Other Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.avt_q4_urb\",\"Average per capita transfer held by 4th quintile - Other Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.avt_q5_preT_tot\",\"Average per capita transfer held by richest quintile - Other Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.avt_q5_rur\",\"Average per capita transfer held by richest quintile - Other Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.avt_q5_tot\",\"Average per capita transfer held by richest quintile - Other Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.avt_q5_urb\",\"Average per capita transfer held by richest quintile - Other Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.ben_ep_preT_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - Other Social Insurance  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.ben_ep_tot\",\"Benefits incidence in extreme poor (<$1.25 a day) (%) - Other Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.ben_q1_preT_tot\",\"Benefits incidence in poorest quintile (%) - Other Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.ben_q1_rur\",\"Benefits incidence in poorest quintile (%) - Other Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.ben_q1_tot\",\"Benefits incidence in poorest quintile (%) - Other Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.ben_q1_urb\",\"Benefits incidence in poorest quintile (%) - Other Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.ben_q2_preT_tot\",\"Benefits incidence in 2nd quintile (%) - Other Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.ben_q2_rur\",\"Benefits incidence in 2nd quintile (%) - Other Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.ben_q2_tot\",\"Benefits incidence in 2nd quintile (%) - Other Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.ben_q2_urb\",\"Benefits incidence in 2nd quintile (%) - Other Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.ben_q3_preT_tot\",\"Benefits incidence in 3rd quintile (%) - Other Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.ben_q3_rur\",\"Benefits incidence in 3rd quintile (%) - Other Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.ben_q3_tot\",\"Benefits incidence in 3rd quintile (%) - Other Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.ben_q3_urb\",\"Benefits incidence in 3rd quintile (%) - Other Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.ben_q4_preT_tot\",\"Benefits incidence in 4th quintile (%) - Other Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.ben_q4_rur\",\"Benefits incidence in 4th quintile (%) - Other Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.ben_q4_tot\",\"Benefits incidence in 4th quintile (%) - Other Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.ben_q4_urb\",\"Benefits incidence in 4th quintile (%) - Other Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.ben_q5_preT_tot\",\"Benefits incidence in richest quintile (%) - Other Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.ben_q5_rur\",\"Benefits incidence in richest quintile (%) - Other Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.ben_q5_tot\",\"Benefits incidence in richest quintile (%) - Other Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.ben_q5_urb\",\"Benefits incidence in richest quintile (%) - Other Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.bry_ep_preT_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - Other Social Insurance  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.bry_ep_tot\",\"Beneficiary incidence in extreme poor (<$1.25 a day) (%) - Other Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.bry_q1_preT_tot\",\"Beneficiary incidence in poorest quintile (%) - Other Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.bry_q1_rur\",\"Beneficiary incidence in poorest quintile (%) - Other Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.bry_q1_tot\",\"Beneficiary incidence in poorest quintile (%) - Other Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.bry_q1_urb\",\"Beneficiary incidence in poorest quintile (%) - Other Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.bry_q2_preT_tot\",\"Beneficiary incidence in 2nd quintile (%) - Other Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.bry_q2_rur\",\"Beneficiary incidence in 2nd quintile (%) - Other Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.bry_q2_tot\",\"Beneficiary incidence in 2nd quintile (%) - Other Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.bry_q2_urb\",\"Beneficiary incidence in 2nd quintile (%) - Other Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.bry_q3_preT_tot\",\"Beneficiary incidence in 3rd quintile (%) - Other Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.bry_q3_rur\",\"Beneficiary incidence in 3rd quintile (%) - Other Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.bry_q3_tot\",\"Beneficiary incidence in 3rd quintile (%) - Other Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.bry_q3_urb\",\"Beneficiary incidence in 3rd quintile (%) - Other Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.bry_q4_preT_tot\",\"Beneficiary incidence in 4th quintile (%) - Other Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.bry_q4_rur\",\"Beneficiary incidence in 4th quintile (%) - Other Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.bry_q4_tot\",\"Beneficiary incidence in 4th quintile (%) - Other Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.bry_q4_urb\",\"Beneficiary incidence in 4th quintile (%) - Other Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.bry_q5_preT_tot\",\"Beneficiary incidence in richest quintile (%) - Other Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.bry_q5_rur\",\"Beneficiary incidence in richest quintile (%) - Other Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.bry_q5_tot\",\"Beneficiary incidence in richest quintile (%) - Other Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.bry_q5_urb\",\"Beneficiary incidence in richest quintile (%) - Other Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.cba_ep_preT_tot\",\"Benefit-cost ratio -  Other Social Insurance -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.cba_ep_tot\",\"Benefit-cost ratio -  Other Social Insurance -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.cba_q1_preT_tot\",\"Benefit-cost ratio -  Other Social Insurance -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.cba_q1_rur\",\"Benefit-cost ratio -  Other Social Insurance -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.cba_q1_tot\",\"Benefit-cost ratio -  Other Social Insurance -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.cba_q1_urb\",\"Benefit-cost ratio -  Other Social Insurance - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.cov_ep_preT_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - Other Social Insurance  (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.cov_ep_tot\",\"Coverage in extreme poor (<$1.25 a day) (%) - Other Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.cov_pop_preT_tot\",\"Coverage (%) - Other Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.cov_pop_rur\",\"Coverage (%) - Other Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.cov_pop_tot\",\"Coverage (%) - Other Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.cov_pop_urb\",\"Coverage (%) - Other Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.cov_q1_preT_tot\",\"Coverage in poorest quintile (%) - Other Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.cov_q1_rur\",\"Coverage in poorest quintile (%) - Other Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.cov_q1_tot\",\"Coverage in poorest quintile (%) - Other Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.cov_q1_urb\",\"Coverage in poorest quintile (%) - Other Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.cov_q2_preT_tot\",\"Coverage in 2nd quintile (%) - Other Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.cov_q2_rur\",\"Coverage in 2nd quintile (%) - Other Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.cov_q2_tot\",\"Coverage in 2nd quintile (%) - Other Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.cov_q2_urb\",\"Coverage in 2nd quintile (%) - Other Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.cov_q3_preT_tot\",\"Coverage in 3rd quintile (%) - Other Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.cov_q3_rur\",\"Coverage in 3rd quintile (%) - Other Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.cov_q3_tot\",\"Coverage in 3rd quintile (%) - Other Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.cov_q3_urb\",\"Coverage in 3rd quintile (%) - Other Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.cov_q4_preT_tot\",\"Coverage in 4th quintile (%) - Other Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.cov_q4_rur\",\"Coverage in 4th quintile (%) - Other Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.cov_q4_tot\",\"Coverage in 4th quintile (%) - Other Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.cov_q4_urb\",\"Coverage in 4th quintile (%) - Other Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.cov_q5_preT_tot\",\"Coverage in richest quintile (%) - Other Social Insurance (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.cov_q5_rur\",\"Coverage in richest quintile (%) - Other Social Insurance -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.cov_q5_tot\",\"Coverage in richest quintile (%) - Other Social Insurance \",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss.cov_q5_urb\",\"Coverage in richest quintile (%) - Other Social Insurance -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss_gini_ep_preT_tot\",\"Gini inequality reduction (%) -  Other Social Insurance -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss_gini_ep_tot\",\"Gini inequality reduction (%) -  Other Social Insurance -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss_gini_preT_tot\",\"Gini inequality reduction (%) -  Other Social Insurance -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss_gini_rur\",\"Gini inequality reduction (%) -  Other Social Insurance -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss_gini_tot\",\"Gini inequality reduction (%) -  Other Social Insurance -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss_gini_urb\",\"Gini inequality reduction (%) -  Other Social Insurance - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss_p0_ep_preT_tot\",\"Poverty Headcount reduction (%) -  Other Social Insurance -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss_p0_ep_tot\",\"Poverty Headcount reduction (%) -  Other Social Insurance -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss_p0_preT_tot\",\"Poverty Headcount reduction (%) -  Other Social Insurance -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss_p0_rur\",\"Poverty Headcount reduction (%) -  Other Social Insurance -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss_p0_tot\",\"Poverty Headcount reduction (%) -  Other Social Insurance -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss_p0_urb\",\"Poverty Headcount reduction (%) -  Other Social Insurance - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss_p1_ep_preT_tot\",\"Poverty Gap reduction (%) -  Other Social Insurance -extreme poor (<$1.25 a day) (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss_p1_ep_tot\",\"Poverty Gap reduction (%) -  Other Social Insurance -extreme poor (<$1.25 a day)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss_p1_preT_tot\",\"Poverty Gap reduction (%) -  Other Social Insurance -poorest quintile (preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss_p1_rur\",\"Poverty Gap reduction (%) -  Other Social Insurance -poorest quintile -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss_p1_tot\",\"Poverty Gap reduction (%) -  Other Social Insurance -poorest quintile\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_si_ss_p1_urb\",\"Poverty Gap reduction (%) -  Other Social Insurance - poorest quintile -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_silm.overlap_ep_preT_tot\",\"Population in extreme poor (<$1.25 a day) receiving All Social Insurance and Labor Market (%, preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_silm.overlap_ep_tot\",\"Population in extreme poor (<$1.25 a day) receiving All Social Insurance and Labor Market (%)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_silm.overlap_pop_preT_tot\",\"Population receiving All Social Insurance and Labor Market (%, preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_silm.overlap_pop_rur\",\"Population receiving All Social Insurance and Labor Market (%) -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_silm.overlap_pop_tot\",\"Population receiving All Social Insurance and Labor Market (%)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_silm.overlap_pop_urb\",\"Population receiving All Social Insurance and Labor Market (%) -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_silm.overlap_q1_preT_tot\",\"Population in the poorest quintile receiving All Social Insurance and Labor Market (%, preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_silm.overlap_q1_rur\",\"Population in the poorest quintile receiving All Social Insurance and Labor Market (%) -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_silm.overlap_q1_tot\",\"Population in the poorest quintile receiving All Social Insurance and Labor Market (%)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_silm.overlap_q1_urb\",\"Population in the poorest quintile receiving All Social Insurance and Labor Market (%) -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sionl.overlap_ep_preT_tot\",\"Population in extreme poor (<$1.25 a day) only receiving All Social Insurance (%, preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sionl.overlap_ep_tot\",\"Population in extreme poor (<$1.25 a day) only receiving All Social Insurance (%)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sionl.overlap_pop_preT_tot\",\"Population only receiving All Social Insurance (%, preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sionl.overlap_pop_rur\",\"Population only receiving All Social Insurance (%) -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sionl.overlap_pop_tot\",\"Population only receiving All Social Insurance (%)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sionl.overlap_pop_urb\",\"Population only receiving All Social Insurance (%) -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sionl.overlap_q1_preT_tot\",\"Population in the poorest quintile only receiving All Social Insurance (%, preT)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sionl.overlap_q1_rur\",\"Population in the poorest quintile only receiving All Social Insurance (%) -rural\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sionl.overlap_q1_tot\",\"Population in the poorest quintile only receiving All Social Insurance (%)\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"per_sionl.overlap_q1_urb\",\"Population in the poorest quintile only receiving All Social Insurance (%) -urban\",\"NULL\",\"Global Social Protection\",\"The Atlas of Social Protection: Indicators of Resilience and Equity (ASPIRE)\"\n\"PHOSROCK\",\"Phosphate rock, $/mt, current$\",\"Phosphate rock (Morocco), 70% BPL, contract, f.a.s. Casablanca\",\"Global Economic Monitor (GEM) Commodities\",\"Fertilizer Week; Fertilizer International; World Bank.\"\n\"PLATINUM\",\"Platinum, $/toz, nominal$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"\"\n\"PLMKRNL_OIL\",\"Palmkernal oil, $/mt, current$\",\"Palmkernel Oil (Malaysia), c.I.f. Rotterdam\",\"Global Economic Monitor (GEM) Commodities\",\"ISTA Mielke GmbH, Oil World; US Department of Agriculture; World Bank.\"\n\"PLYWOOD\",\"Plywood, cents/sheets, current$\",\"Plywood (Africa and Southeast Asia), Lauan, 3-ply, extra, 91 cm x 182 cm x 4 mm,  wholesale price, spot Tokyo\",\"Global Economic Monitor (GEM) Commodities\",\"Japan Lumber Journal; International Tropical Timber Organization; Nikkei Newsletter on Commodities; World Bank.\"\n\"POTASH\",\"Potassium Chloride, $/mt, current$\",\"Potassium chloride (muriate of potash), standard grade, spot, f.o.b.  Vancouver\",\"Global Economic Monitor (GEM) Commodities\",\"Fertilizer Week; Fertilizer International; World Bank.\"\n\"PRJ.ATT.1519.1.FE\",\"Projection: Percentage of the population age 15-19 by highest level of educational attainment. Primary. Female\",\"Share of the population of the stated age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.1519.1.MA\",\"Projection: Percentage of the population age 15-19 by highest level of educational attainment. Primary. Male\",\"Share of the population of the stated age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.1519.1.MF\",\"Projection: Percentage of the population age 15-19 by highest level of educational attainment. Primary. Total\",\"Share of the population of the stated age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.1519.2.FE\",\"Projection: Percentage of the population age 15-19 by highest level of educational attainment. Lower Secondary. Female\",\"Share of the population of the stated age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.1519.2.MA\",\"Projection: Percentage of the population age 15-19 by highest level of educational attainment. Lower Secondary. Male\",\"Share of the population of the stated age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.1519.2.MF\",\"Projection: Percentage of the population age 15-19 by highest level of educational attainment. Lower Secondary. Total\",\"Share of the population of the stated age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.1519.3.FE\",\"Projection: Percentage of the population age 15-19 by highest level of educational attainment. Upper Secondary. Female\",\"Share of the population of the stated age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.1519.3.MA\",\"Projection: Percentage of the population age 15-19 by highest level of educational attainment. Upper Secondary. Male\",\"Share of the population of the stated age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.1519.3.MF\",\"Projection: Percentage of the population age 15-19 by highest level of educational attainment. Upper Secondary. Total\",\"Share of the population of the stated age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.1519.4.FE\",\"Projection: Percentage of the population age 15-19 by highest level of educational attainment. Post Secondary. Female\",\"Share of the population of the stated age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.1519.4.MA\",\"Projection: Percentage of the population age 15-19 by highest level of educational attainment. Post Secondary. Male\",\"Share of the population of the stated age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.1519.4.MF\",\"Projection: Percentage of the population age 15-19 by highest level of educational attainment. Post Secondary. Total\",\"Share of the population of the stated age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.1519.NED.FE\",\"Projection: Percentage of the population age 15-19 by highest level of educational attainment. No Education. Female\",\"Share of the population of the stated age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.1519.NED.MA\",\"Projection: Percentage of the population age 15-19 by highest level of educational attainment. No Education. Male\",\"Share of the population of the stated age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.1519.NED.MF\",\"Projection: Percentage of the population age 15-19 by highest level of educational attainment. No Education. Total\",\"Share of the population of the stated age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.1519.S1.FE\",\"Projection: Percentage of the population age 15-19 by highest level of educational attainment. Incomplete Primary. Female\",\"Share of the population of the stated age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.1519.S1.MA\",\"Projection: Percentage of the population age 15-19 by highest level of educational attainment. Incomplete Primary. Male\",\"Share of the population of the stated age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.1519.S1.MF\",\"Projection: Percentage of the population age 15-19 by highest level of educational attainment. Incomplete Primary. Total\",\"Share of the population of the stated age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.15UP.1.FE\",\"Projection: Percentage of the population age 15+ by highest level of educational attainment. Primary. Female\",\"Share of the population of the stated age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.15UP.1.MA\",\"Projection: Percentage of the population age 15+ by highest level of educational attainment. Primary. Male\",\"Share of the population of the stated age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.15UP.1.MF\",\"Projection: Percentage of the population age 15+ by highest level of educational attainment. Primary. Total\",\"Share of the population of the stated age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.15UP.2.FE\",\"Projection: Percentage of the population age 15+ by highest level of educational attainment. Lower Secondary. Female\",\"Share of the population of the stated age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.15UP.2.MA\",\"Projection: Percentage of the population age 15+ by highest level of educational attainment. Lower Secondary. Male\",\"Share of the population of the stated age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.15UP.2.MF\",\"Projection: Percentage of the population age 15+ by highest level of educational attainment. Lower Secondary. Total\",\"Share of the population of the stated age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.15UP.3.FE\",\"Projection: Percentage of the population age 15+ by highest level of educational attainment. Upper Secondary. Female\",\"Share of the population of the stated age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.15UP.3.MA\",\"Projection: Percentage of the population age 15+ by highest level of educational attainment. Upper Secondary. Male\",\"Share of the population of the stated age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.15UP.3.MF\",\"Projection: Percentage of the population age 15+ by highest level of educational attainment. Upper Secondary. Total\",\"Share of the population of the stated age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.15UP.4.FE\",\"Projection: Percentage of the population age 15+ by highest level of educational attainment. Post Secondary. Female\",\"Share of the population of the stated age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.15UP.4.MA\",\"Projection: Percentage of the population age 15+ by highest level of educational attainment. Post Secondary. Male\",\"Share of the population of the stated age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.15UP.4.MF\",\"Projection: Percentage of the population age 15+ by highest level of educational attainment. Post Secondary. Total\",\"Share of the population of the stated age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.15UP.NED.FE\",\"Projection: Percentage of the population age 15+ by highest level of educational attainment. No Education. Female\",\"Share of the population of the stated age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.15UP.NED.MA\",\"Projection: Percentage of the population age 15+ by highest level of educational attainment. No Education. Male\",\"Share of the population of the stated age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.15UP.NED.MF\",\"Projection: Percentage of the population age 15+ by highest level of educational attainment. No Education. Total\",\"Share of the population of the stated age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.15UP.S1.FE\",\"Projection: Percentage of the population age 15+ by highest level of educational attainment. Incomplete Primary. Female\",\"Share of the population of the stated age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.15UP.S1.MA\",\"Projection: Percentage of the population age 15+ by highest level of educational attainment. Incomplete Primary. Male\",\"Share of the population of the stated age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.15UP.S1.MF\",\"Projection: Percentage of the population age 15+ by highest level of educational attainment. Incomplete Primary. Total\",\"Share of the population of the stated age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2024.1.FE\",\"Projection: Percentage of the population age 20-24 by highest level of educational attainment. Primary. Female\",\"Share of the population of the stated age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2024.1.MA\",\"Projection: Percentage of the population age 20-24 by highest level of educational attainment. Primary. Male\",\"Share of the population of the stated age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2024.1.MF\",\"Projection: Percentage of the population age 20-24 by highest level of educational attainment. Primary. Total\",\"Share of the population of the stated age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2024.2.FE\",\"Projection: Percentage of the population age 20-24 by highest level of educational attainment. Lower Secondary. Female\",\"Share of the population of the stated age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2024.2.MA\",\"Projection: Percentage of the population age 20-24 by highest level of educational attainment. Lower Secondary. Male\",\"Share of the population of the stated age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2024.2.MF\",\"Projection: Percentage of the population age 20-24 by highest level of educational attainment. Lower Secondary. Total\",\"Share of the population of the stated age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2024.3.FE\",\"Projection: Percentage of the population age 20-24 by highest level of educational attainment. Upper Secondary. Female\",\"Share of the population of the stated age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2024.3.MA\",\"Projection: Percentage of the population age 20-24 by highest level of educational attainment. Upper Secondary. Male\",\"Share of the population of the stated age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2024.3.MF\",\"Projection: Percentage of the population age 20-24 by highest level of educational attainment. Upper Secondary. Total\",\"Share of the population of the stated age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2024.4.FE\",\"Projection: Percentage of the population age 20-24 by highest level of educational attainment. Post Secondary. Female\",\"Share of the population of the stated age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2024.4.MA\",\"Projection: Percentage of the population age 20-24 by highest level of educational attainment. Post Secondary. Male\",\"Share of the population of the stated age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2024.4.MF\",\"Projection: Percentage of the population age 20-24 by highest level of educational attainment. Post Secondary. Total\",\"Share of the population of the stated age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2024.NED.FE\",\"Projection: Percentage of the population age 20-24 by highest level of educational attainment. No Education. Female\",\"Share of the population of the stated age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2024.NED.MA\",\"Projection: Percentage of the population age 20-24 by highest level of educational attainment. No Education. Male\",\"Share of the population of the stated age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2024.NED.MF\",\"Projection: Percentage of the population age 20-24 by highest level of educational attainment. No Education. Total\",\"Share of the population of the stated age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2024.S1.FE\",\"Projection: Percentage of the population age 20-24 by highest level of educational attainment. Incomplete Primary. Female\",\"Share of the population of the stated age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2024.S1.MA\",\"Projection: Percentage of the population age 20-24 by highest level of educational attainment. Incomplete Primary. Male\",\"Share of the population of the stated age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2024.S1.MF\",\"Projection: Percentage of the population age 20-24 by highest level of educational attainment. Incomplete Primary. Total\",\"Share of the population of the stated age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2039.1.FE\",\"Projection: Percentage of the population age 20-39 by highest level of educational attainment. Primary. Female\",\"Share of the population of the stated age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2039.1.MA\",\"Projection: Percentage of the population age 20-39 by highest level of educational attainment. Primary. Male\",\"Share of the population of the stated age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2039.1.MF\",\"Projection: Percentage of the population age 20-39 by highest level of educational attainment. Primary. Total\",\"Share of the population of the stated age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2039.2.FE\",\"Projection: Percentage of the population age 20-39 by highest level of educational attainment. Lower Secondary. Female\",\"Share of the population of the stated age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2039.2.MA\",\"Projection: Percentage of the population age 20-39 by highest level of educational attainment. Lower Secondary. Male\",\"Share of the population of the stated age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2039.2.MF\",\"Projection: Percentage of the population age 20-39 by highest level of educational attainment. Lower Secondary. Total\",\"Share of the population of the stated age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2039.3.FE\",\"Projection: Percentage of the population age 20-39 by highest level of educational attainment. Upper Secondary. Female\",\"Share of the population of the stated age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2039.3.MA\",\"Projection: Percentage of the population age 20-39 by highest level of educational attainment. Upper Secondary. Male\",\"Share of the population of the stated age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2039.3.MF\",\"Projection: Percentage of the population age 20-39 by highest level of educational attainment. Upper Secondary. Total\",\"Share of the population of the stated age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2039.4.FE\",\"Projection: Percentage of the population age 20-39 by highest level of educational attainment. Post Secondary. Female\",\"Share of the population of the stated age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2039.4.MA\",\"Projection: Percentage of the population age 20-39 by highest level of educational attainment. Post Secondary. Male\",\"Share of the population of the stated age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2039.4.MF\",\"Projection: Percentage of the population age 20-39 by highest level of educational attainment. Post Secondary. Total\",\"Share of the population of the stated age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2039.NED.FE\",\"Projection: Percentage of the population age 20-39 by highest level of educational attainment. No Education. Female\",\"Share of the population of the stated age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2039.NED.MA\",\"Projection: Percentage of the population age 20-39 by highest level of educational attainment. No Education. Male\",\"Share of the population of the stated age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2039.NED.MF\",\"Projection: Percentage of the population age 20-39 by highest level of educational attainment. No Education. Total\",\"Share of the population of the stated age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2039.S1.FE\",\"Projection: Percentage of the population age 20-39 by highest level of educational attainment. Incomplete Primary. Female\",\"Share of the population of the stated age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2039.S1.MA\",\"Projection: Percentage of the population age 20-39 by highest level of educational attainment. Incomplete Primary. Male\",\"Share of the population of the stated age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2039.S1.MF\",\"Projection: Percentage of the population age 20-39 by highest level of educational attainment. Incomplete Primary. Total\",\"Share of the population of the stated age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2064.1.FE\",\"Projection: Percentage of the population age 20-64 by highest level of educational attainment. Primary. Female\",\"Share of the population of the stated age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2064.1.MA\",\"Projection: Percentage of the population age 20-64 by highest level of educational attainment. Primary. Male\",\"Share of the population of the stated age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2064.1.MF\",\"Projection: Percentage of the population age 20-64 by highest level of educational attainment. Primary. Total\",\"Share of the population of the stated age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2064.2.FE\",\"Projection: Percentage of the population age 20-64 by highest level of educational attainment. Lower Secondary. Female\",\"Share of the population of the stated age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2064.2.MA\",\"Projection: Percentage of the population age 20-64 by highest level of educational attainment. Lower Secondary. Male\",\"Share of the population of the stated age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2064.2.MF\",\"Projection: Percentage of the population age 20-64 by highest level of educational attainment. Lower Secondary. Total\",\"Share of the population of the stated age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2064.3.FE\",\"Projection: Percentage of the population age 20-64 by highest level of educational attainment. Upper Secondary. Female\",\"Share of the population of the stated age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2064.3.MA\",\"Projection: Percentage of the population age 20-64 by highest level of educational attainment. Upper Secondary. Male\",\"Share of the population of the stated age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2064.3.MF\",\"Projection: Percentage of the population age 20-64 by highest level of educational attainment. Upper Secondary. Total\",\"Share of the population of the stated age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2064.4.FE\",\"Projection: Percentage of the population age 20-64 by highest level of educational attainment. Post Secondary. Female\",\"Share of the population of the stated age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2064.4.MA\",\"Projection: Percentage of the population age 20-64 by highest level of educational attainment. Post Secondary. Male\",\"Share of the population of the stated age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2064.4.MF\",\"Projection: Percentage of the population age 20-64 by highest level of educational attainment. Post Secondary. Total\",\"Share of the population of the stated age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2064.NED.FE\",\"Projection: Percentage of the population age 20-64 by highest level of educational attainment. No Education. Female\",\"Share of the population of the stated age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2064.NED.MA\",\"Projection: Percentage of the population age 20-64 by highest level of educational attainment. No Education. Male\",\"Share of the population of the stated age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2064.NED.MF\",\"Projection: Percentage of the population age 20-64 by highest level of educational attainment. No Education. Total\",\"Share of the population of the stated age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2064.S1.FE\",\"Projection: Percentage of the population age 20-64 by highest level of educational attainment. Incomplete Primary. Female\",\"Share of the population of the stated age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2064.S1.MA\",\"Projection: Percentage of the population age 20-64 by highest level of educational attainment. Incomplete Primary. Male\",\"Share of the population of the stated age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2064.S1.MF\",\"Projection: Percentage of the population age 20-64 by highest level of educational attainment. Incomplete Primary. Total\",\"Share of the population of the stated age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2529.1.FE\",\"Projection: Percentage of the population age 25-29 by highest level of educational attainment. Primary. Female\",\"Share of the population of the stated age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2529.1.MA\",\"Projection: Percentage of the population age 25-29 by highest level of educational attainment. Primary. Male\",\"Share of the population of the stated age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2529.1.MF\",\"Projection: Percentage of the population age 25-29 by highest level of educational attainment. Primary. Total\",\"Share of the population of the stated age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2529.2.FE\",\"Projection: Percentage of the population age 25-29 by highest level of educational attainment. Lower Secondary. Female\",\"Share of the population of the stated age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2529.2.MA\",\"Projection: Percentage of the population age 25-29 by highest level of educational attainment. Lower Secondary. Male\",\"Share of the population of the stated age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2529.2.MF\",\"Projection: Percentage of the population age 25-29 by highest level of educational attainment. Lower Secondary. Total\",\"Share of the population of the stated age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2529.3.FE\",\"Projection: Percentage of the population age 25-29 by highest level of educational attainment. Upper Secondary. Female\",\"Share of the population of the stated age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2529.3.MA\",\"Projection: Percentage of the population age 25-29 by highest level of educational attainment. Upper Secondary. Male\",\"Share of the population of the stated age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2529.3.MF\",\"Projection: Percentage of the population age 25-29 by highest level of educational attainment. Upper Secondary. Total\",\"Share of the population of the stated age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2529.4.FE\",\"Projection: Percentage of the population age 25-29 by highest level of educational attainment. Post Secondary. Female\",\"Share of the population of the stated age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2529.4.MA\",\"Projection: Percentage of the population age 25-29 by highest level of educational attainment. Post Secondary. Male\",\"Share of the population of the stated age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2529.4.MF\",\"Projection: Percentage of the population age 25-29 by highest level of educational attainment. Post Secondary. Total\",\"Share of the population of the stated age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2529.NED.FE\",\"Projection: Percentage of the population age 25-29 by highest level of educational attainment. No Education. Female\",\"Share of the population of the stated age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2529.NED.MA\",\"Projection: Percentage of the population age 25-29 by highest level of educational attainment. No Education. Male\",\"Share of the population of the stated age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2529.NED.MF\",\"Projection: Percentage of the population age 25-29 by highest level of educational attainment. No Education. Total\",\"Share of the population of the stated age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2529.S1.FE\",\"Projection: Percentage of the population age 25-29 by highest level of educational attainment. Incomplete Primary. Female\",\"Share of the population of the stated age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2529.S1.MA\",\"Projection: Percentage of the population age 25-29 by highest level of educational attainment. Incomplete Primary. Male\",\"Share of the population of the stated age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.2529.S1.MF\",\"Projection: Percentage of the population age 25-29 by highest level of educational attainment. Incomplete Primary. Total\",\"Share of the population of the stated age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.25UP.1.FE\",\"Projection: Percentage of the population age 25+ by highest level of educational attainment. Primary. Female\",\"Share of the population of the stated age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.25UP.1.MA\",\"Projection: Percentage of the population age 25+ by highest level of educational attainment. Primary. Male\",\"Share of the population of the stated age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.25UP.1.MF\",\"Projection: Percentage of the population age 25+ by highest level of educational attainment. Primary. Total\",\"Share of the population of the stated age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.25UP.2.FE\",\"Projection: Percentage of the population age 25+ by highest level of educational attainment. Lower Secondary. Female\",\"Share of the population of the stated age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.25UP.2.MA\",\"Projection: Percentage of the population age 25+ by highest level of educational attainment. Lower Secondary. Male\",\"Share of the population of the stated age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.25UP.2.MF\",\"Projection: Percentage of the population age 25+ by highest level of educational attainment. Lower Secondary. Total\",\"Share of the population of the stated age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.25UP.3.FE\",\"Projection: Percentage of the population age 25+ by highest level of educational attainment. Upper Secondary. Female\",\"Share of the population of the stated age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.25UP.3.MA\",\"Projection: Percentage of the population age 25+ by highest level of educational attainment. Upper Secondary. Male\",\"Share of the population of the stated age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.25UP.3.MF\",\"Projection: Percentage of the population age 25+ by highest level of educational attainment. Upper Secondary. Total\",\"Share of the population of the stated age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.25UP.4.FE\",\"Projection: Percentage of the population age 25+ by highest level of educational attainment. Post Secondary. Female\",\"Share of the population of the stated age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.25UP.4.MA\",\"Projection: Percentage of the population age 25+ by highest level of educational attainment. Post Secondary. Male\",\"Share of the population of the stated age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.25UP.4.MF\",\"Projection: Percentage of the population age 25+ by highest level of educational attainment. Post Secondary. Total\",\"Share of the population of the stated age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.25UP.NED.FE\",\"Projection: Percentage of the population age 25+ by highest level of educational attainment. No Education. Female\",\"Share of the population of the stated age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.25UP.NED.MA\",\"Projection: Percentage of the population age 25+ by highest level of educational attainment. No Education. Male\",\"Share of the population of the stated age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.25UP.NED.MF\",\"Projection: Percentage of the population age 25+ by highest level of educational attainment. No Education. Total\",\"Share of the population of the stated age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.25UP.S1.FE\",\"Projection: Percentage of the population age 25+ by highest level of educational attainment. Incomplete Primary. Female\",\"Share of the population of the stated age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.25UP.S1.MA\",\"Projection: Percentage of the population age 25+ by highest level of educational attainment. Incomplete Primary. Male\",\"Share of the population of the stated age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.25UP.S1.MF\",\"Projection: Percentage of the population age 25+ by highest level of educational attainment. Incomplete Primary. Total\",\"Share of the population of the stated age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.4064.1.FE\",\"Projection: Percentage of the population age 40-64 by highest level of educational attainment. Primary. Female\",\"Share of the population of the stated age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.4064.1.MA\",\"Projection: Percentage of the population age 40-64 by highest level of educational attainment. Primary. Male\",\"Share of the population of the stated age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.4064.1.MF\",\"Projection: Percentage of the population age 40-64 by highest level of educational attainment. Primary. Total\",\"Share of the population of the stated age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.4064.2.FE\",\"Projection: Percentage of the population age 40-64 by highest level of educational attainment. Lower Secondary. Female\",\"Share of the population of the stated age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.4064.2.MA\",\"Projection: Percentage of the population age 40-64 by highest level of educational attainment. Lower Secondary. Male\",\"Share of the population of the stated age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.4064.2.MF\",\"Projection: Percentage of the population age 40-64 by highest level of educational attainment. Lower Secondary. Total\",\"Share of the population of the stated age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.4064.3.FE\",\"Projection: Percentage of the population age 40-64 by highest level of educational attainment. Upper Secondary. Female\",\"Share of the population of the stated age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.4064.3.MA\",\"Projection: Percentage of the population age 40-64 by highest level of educational attainment. Upper Secondary. Male\",\"Share of the population of the stated age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.4064.3.MF\",\"Projection: Percentage of the population age 40-64 by highest level of educational attainment. Upper Secondary. Total\",\"Share of the population of the stated age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.4064.4.FE\",\"Projection: Percentage of the population age 40-64 by highest level of educational attainment. Post Secondary. Female\",\"Share of the population of the stated age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.4064.4.MA\",\"Projection: Percentage of the population age 40-64 by highest level of educational attainment. Post Secondary. Male\",\"Share of the population of the stated age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.4064.4.MF\",\"Projection: Percentage of the population age 40-64 by highest level of educational attainment. Post Secondary. Total\",\"Share of the population of the stated age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.4064.NED.FE\",\"Projection: Percentage of the population age 40-64 by highest level of educational attainment. No Education. Female\",\"Share of the population of the stated age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.4064.NED.MA\",\"Projection: Percentage of the population age 40-64 by highest level of educational attainment. No Education. Male\",\"Share of the population of the stated age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.4064.NED.MF\",\"Projection: Percentage of the population age 40-64 by highest level of educational attainment. No Education. Total\",\"Share of the population of the stated age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.4064.S1.FE\",\"Projection: Percentage of the population age 40-64 by highest level of educational attainment. Incomplete Primary. Female\",\"Share of the population of the stated age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.4064.S1.MA\",\"Projection: Percentage of the population age 40-64 by highest level of educational attainment. Incomplete Primary. Male\",\"Share of the population of the stated age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.4064.S1.MF\",\"Projection: Percentage of the population age 40-64 by highest level of educational attainment. Incomplete Primary. Total\",\"Share of the population of the stated age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.60UP.1.FE\",\"Projection: Percentage of the population age 60+ by highest level of educational attainment. Primary. Female\",\"Share of the population of the stated age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.60UP.1.MA\",\"Projection: Percentage of the population age 60+ by highest level of educational attainment. Primary. Male\",\"Share of the population of the stated age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.60UP.1.MF\",\"Projection: Percentage of the population age 60+ by highest level of educational attainment. Primary. Total\",\"Share of the population of the stated age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.60UP.2.FE\",\"Projection: Percentage of the population age 60+ by highest level of educational attainment. Lower Secondary. Female\",\"Share of the population of the stated age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.60UP.2.MA\",\"Projection: Percentage of the population age 60+ by highest level of educational attainment. Lower Secondary. Male\",\"Share of the population of the stated age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.60UP.2.MF\",\"Projection: Percentage of the population age 60+ by highest level of educational attainment. Lower Secondary. Total\",\"Share of the population of the stated age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.60UP.3.FE\",\"Projection: Percentage of the population age 60+ by highest level of educational attainment. Upper Secondary. Female\",\"Share of the population of the stated age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.60UP.3.MA\",\"Projection: Percentage of the population age 60+ by highest level of educational attainment. Upper Secondary. Male\",\"Share of the population of the stated age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.60UP.3.MF\",\"Projection: Percentage of the population age 60+ by highest level of educational attainment. Upper Secondary. Total\",\"Share of the population of the stated age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.60UP.4.FE\",\"Projection: Percentage of the population age 60+ by highest level of educational attainment. Post Secondary. Female\",\"Share of the population of the stated age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.60UP.4.MA\",\"Projection: Percentage of the population age 60+ by highest level of educational attainment. Post Secondary. Male\",\"Share of the population of the stated age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.60UP.4.MF\",\"Projection: Percentage of the population age 60+ by highest level of educational attainment. Post Secondary. Total\",\"Share of the population of the stated age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.60UP.NED.FE\",\"Projection: Percentage of the population age 60+ by highest level of educational attainment. No Education. Female\",\"Share of the population of the stated age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.60UP.NED.MA\",\"Projection: Percentage of the population age 60+ by highest level of educational attainment. No Education. Male\",\"Share of the population of the stated age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.60UP.NED.MF\",\"Projection: Percentage of the population age 60+ by highest level of educational attainment. No Education. Total\",\"Share of the population of the stated age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.60UP.S1.FE\",\"Projection: Percentage of the population age 60+ by highest level of educational attainment. Incomplete Primary. Female\",\"Share of the population of the stated age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.60UP.S1.MA\",\"Projection: Percentage of the population age 60+ by highest level of educational attainment. Incomplete Primary. Male\",\"Share of the population of the stated age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.60UP.S1.MF\",\"Projection: Percentage of the population age 60+ by highest level of educational attainment. Incomplete Primary. Total\",\"Share of the population of the stated age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.80UP.1.FE\",\"Projection: Percentage of the population age 80+ by highest level of educational attainment. Primary. Female\",\"Share of the population of the stated age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.80UP.1.MA\",\"Projection: Percentage of the population age 80+ by highest level of educational attainment. Primary. Male\",\"Share of the population of the stated age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.80UP.1.MF\",\"Projection: Percentage of the population age 80+ by highest level of educational attainment. Primary. Total\",\"Share of the population of the stated age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.80UP.2.FE\",\"Projection: Percentage of the population age 80+ by highest level of educational attainment. Lower Secondary. Female\",\"Share of the population of the stated age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.80UP.2.MA\",\"Projection: Percentage of the population age 80+ by highest level of educational attainment. Lower Secondary. Male\",\"Share of the population of the stated age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.80UP.2.MF\",\"Projection: Percentage of the population age 80+ by highest level of educational attainment. Lower Secondary. Total\",\"Share of the population of the stated age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.80UP.3.FE\",\"Projection: Percentage of the population age 80+ by highest level of educational attainment. Upper Secondary. Female\",\"Share of the population of the stated age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.80UP.3.MA\",\"Projection: Percentage of the population age 80+ by highest level of educational attainment. Upper Secondary. Male\",\"Share of the population of the stated age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.80UP.3.MF\",\"Projection: Percentage of the population age 80+ by highest level of educational attainment. Upper Secondary. Total\",\"Share of the population of the stated age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.80UP.4.FE\",\"Projection: Percentage of the population age 80+ by highest level of educational attainment. Post Secondary. Female\",\"Share of the population of the stated age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.80UP.4.MA\",\"Projection: Percentage of the population age 80+ by highest level of educational attainment. Post Secondary. Male\",\"Share of the population of the stated age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.80UP.4.MF\",\"Projection: Percentage of the population age 80+ by highest level of educational attainment. Post Secondary. Total\",\"Share of the population of the stated age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.80UP.NED.FE\",\"Projection: Percentage of the population age 80+ by highest level of educational attainment. No Education. Female\",\"Share of the population of the stated age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.80UP.NED.MA\",\"Projection: Percentage of the population age 80+ by highest level of educational attainment. No Education. Male\",\"Share of the population of the stated age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.80UP.NED.MF\",\"Projection: Percentage of the population age 80+ by highest level of educational attainment. No Education. Total\",\"Share of the population of the stated age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.80UP.S1.FE\",\"Projection: Percentage of the population age 80+ by highest level of educational attainment. Incomplete Primary. Female\",\"Share of the population of the stated age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.80UP.S1.MA\",\"Projection: Percentage of the population age 80+ by highest level of educational attainment. Incomplete Primary. Male\",\"Share of the population of the stated age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.80UP.S1.MF\",\"Projection: Percentage of the population age 80+ by highest level of educational attainment. Incomplete Primary. Total\",\"Share of the population of the stated age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.ALL.1.FE\",\"Projection: Percentage of the total population by highest level of educational attainment. Primary. Female\",\"Share of the population of the stated age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.ALL.1.MA\",\"Projection: Percentage of the total population by highest level of educational attainment. Primary. Male\",\"Share of the population of the stated age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.ALL.1.MF\",\"Projection: Percentage of the total population by highest level of educational attainment. Primary. Total\",\"Share of the population of the stated age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.ALL.2.FE\",\"Projection: Percentage of the total population by highest level of educational attainment. Lower Secondary. Female\",\"Share of the population of the stated age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.ALL.2.MA\",\"Projection: Percentage of the total population by highest level of educational attainment. Lower Secondary. Male\",\"Share of the population of the stated age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.ALL.2.MF\",\"Projection: Percentage of the total population by highest level of educational attainment. Lower Secondary. Total\",\"Share of the population of the stated age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.ALL.3.FE\",\"Projection: Percentage of the total population by highest level of educational attainment. Upper Secondary. Female\",\"Share of the population of the stated age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.ALL.3.MA\",\"Projection: Percentage of the total population by highest level of educational attainment. Upper Secondary. Male\",\"Share of the population of the stated age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.ALL.3.MF\",\"Projection: Percentage of the total population by highest level of educational attainment. Upper Secondary. Total\",\"Share of the population of the stated age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.ALL.4.FE\",\"Projection: Percentage of the total population by highest level of educational attainment. Post Secondary. Female\",\"Share of the population of the stated age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.ALL.4.MA\",\"Projection: Percentage of the total population by highest level of educational attainment. Post Secondary. Male\",\"Share of the population of the stated age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.ALL.4.MF\",\"Projection: Percentage of the total population by highest level of educational attainment. Post Secondary. Total\",\"Share of the population of the stated age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.ALL.NED.FE\",\"Projection: Percentage of the total population by highest level of educational attainment. No Education. Female\",\"Share of the population of the stated age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.ALL.NED.MA\",\"Projection: Percentage of the total population by highest level of educational attainment. No Education. Male\",\"Share of the population of the stated age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.ALL.NED.MF\",\"Projection: Percentage of the total population by highest level of educational attainment. No Education. Total\",\"Share of the population of the stated age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.ALL.S1.FE\",\"Projection: Percentage of the total population by highest level of educational attainment. Incomplete Primary. Female\",\"Share of the population of the stated age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.ALL.S1.MA\",\"Projection: Percentage of the total population by highest level of educational attainment. Incomplete Primary. Male\",\"Share of the population of the stated age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.ATT.ALL.S1.MF\",\"Projection: Percentage of the total population by highest level of educational attainment. Incomplete Primary. Total\",\"Share of the population of the stated age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.0T19.FE\",\"Projection: Mean years of schooling. Age 0-19. Female\",\"Mean number of years spent in school by age group and gender. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.0T19.MA\",\"Projection: Mean years of schooling. Age 0-19. Male\",\"Mean number of years spent in school by age group and gender. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.0T19.MF\",\"Projection: Mean years of schooling. Age 0-19. Total\",\"Mean number of years spent in school by age group and gender. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.1519.FE\",\"Projection: Mean years of schooling. Age 15-19. Female\",\"Mean number of years spent in school by age group and gender. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.1519.MA\",\"Projection: Mean years of schooling. Age 15-19. Male\",\"Mean number of years spent in school by age group and gender. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.1519.MF\",\"Projection: Mean years of schooling. Age 15-19. Total\",\"Mean number of years spent in school by age group and gender. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.15UP.FE\",\"Projection: Mean years of schooling. Age 15+. Female\",\"Mean number of years spent in school by age group and gender. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.15UP.GPI\",\"Projection: Mean Years of Schooling. Age 15+. Gender Gap\",\"The difference between male and female mean number of years spent in school by age group. It is calculated by subtracting the female value from the male value. Data can be negative if the mean years of schooling for females is higher than for males. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.15UP.MA\",\"Projection: Mean years of schooling. Age 15+. Male\",\"Mean number of years spent in school by age group and gender. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.15UP.MF\",\"Projection: Mean years of schooling. Age 15+. Total\",\"Mean number of years spent in school by age group and gender. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.2024.FE\",\"Projection: Mean years of schooling. Age 20-24. Female\",\"Mean number of years spent in school by age group and gender. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.2024.MA\",\"Projection: Mean years of schooling. Age 20-24. Male\",\"Mean number of years spent in school by age group and gender. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.2024.MF\",\"Projection: Mean years of schooling. Age 20-24. Total\",\"Mean number of years spent in school by age group and gender. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.2039.FE\",\"Projection: Mean years of schooling. Age 20-39. Female\",\"Mean number of years spent in school by age group and gender. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.2039.MA\",\"Projection: Mean years of schooling. Age 20-39. Male\",\"Mean number of years spent in school by age group and gender. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.2039.MF\",\"Projection: Mean years of schooling. Age 20-39. Total\",\"Mean number of years spent in school by age group and gender. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.2064.FE\",\"Projection: Mean years of schooling. Age 20-64. Female\",\"Mean number of years spent in school by age group and gender. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.2064.MA\",\"Projection: Mean years of schooling. Age 20-64. Male\",\"Mean number of years spent in school by age group and gender. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.2064.MF\",\"Projection: Mean years of schooling. Age 20-64. Total\",\"Mean number of years spent in school by age group and gender. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.2529.FE\",\"Projection: Mean years of schooling. Age 25-29. Female\",\"Mean number of years spent in school by age group and gender. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.2529.MA\",\"Projection: Mean years of schooling. Age 25-29. Male\",\"Mean number of years spent in school by age group and gender. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.2529.MF\",\"Projection: Mean years of schooling. Age 25-29. Total\",\"Mean number of years spent in school by age group and gender. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.25UP.FE\",\"Projection: Mean years of schooling. Age 25+. Female\",\"Mean number of years spent in school by age group and gender. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.25UP.GPI\",\"Projection: Mean Years of Schooling. Age 25+. Gender Gap\",\"The difference between male and female mean number of years spent in school by age group. It is calculated by subtracting the female value from the male value. Data can be negative if the mean years of schooling for females is higher than for males. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.25UP.MA\",\"Projection: Mean years of schooling. Age 25+. Male\",\"Mean number of years spent in school by age group and gender. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.25UP.MF\",\"Projection: Mean years of schooling. Age 25+. Total\",\"Mean number of years spent in school by age group and gender. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.4064.FE\",\"Projection: Mean years of schooling. Age 40-64. Female\",\"Mean number of years spent in school by age group and gender. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.4064.MA\",\"Projection: Mean years of schooling. Age 40-64. Male\",\"Mean number of years spent in school by age group and gender. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.4064.MF\",\"Projection: Mean years of schooling. Age 40-64. Total\",\"Mean number of years spent in school by age group and gender. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.60UP.FE\",\"Projection: Mean years of schooling. Age 60+. Female\",\"Mean number of years spent in school by age group and gender. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.60UP.MA\",\"Projection: Mean years of schooling. Age 60+. Male\",\"Mean number of years spent in school by age group and gender. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.60UP.MF\",\"Projection: Mean years of schooling. Age 60+. Total\",\"Mean number of years spent in school by age group and gender. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.65UP.FE\",\"Projection: Mean years of schooling. Age 65+. Female\",\"Mean number of years spent in school by age group and gender. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.65UP.MA\",\"Projection: Mean years of schooling. Age 65+. Male\",\"Mean number of years spent in school by age group and gender. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.65UP.MF\",\"Projection: Mean years of schooling. Age 65+. Total\",\"Mean number of years spent in school by age group and gender. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.80UP.FE\",\"Projection: Mean years of schooling. Age 80+. Female\",\"Mean number of years spent in school by age group and gender. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.80UP.MA\",\"Projection: Mean years of schooling. Age 80+. Male\",\"Mean number of years spent in school by age group and gender. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.MYS.80UP.MF\",\"Projection: Mean years of schooling. Age 80+. Total\",\"Mean number of years spent in school by age group and gender. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.1519.1.FE\",\"Projection: Population age 15-19 in thousands by highest level of educational attainment. Primary. Female\",\"Total population in thousands in the specified age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.1519.1.MA\",\"Projection: Population age 15-19 in thousands by highest level of educational attainment. Primary. Male\",\"Total population in thousands in the specified age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.1519.1.MF\",\"Projection: Population age 15-19 in thousands by highest level of educational attainment. Primary. Total\",\"Total population in thousands in the specified age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.1519.2.FE\",\"Projection: Population age 15-19 in thousands by highest level of educational attainment. Lower Secondary. Female\",\"Total population in thousands in the specified age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.1519.2.MA\",\"Projection: Population age 15-19 in thousands by highest level of educational attainment. Lower Secondary. Male\",\"Total population in thousands in the specified age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.1519.2.MF\",\"Projection: Population age 15-19 in thousands by highest level of educational attainment. Lower Secondary. Total\",\"Total population in thousands in the specified age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.1519.3.FE\",\"Projection: Population age 15-19 in thousands by highest level of educational attainment. Upper Secondary. Female\",\"Total population in thousands in the specified age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.1519.3.MA\",\"Projection: Population age 15-19 in thousands by highest level of educational attainment. Upper Secondary. Male\",\"Total population in thousands in the specified age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.1519.3.MF\",\"Projection: Population age 15-19 in thousands by highest level of educational attainment. Upper Secondary. Total\",\"Total population in thousands in the specified age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.1519.4.FE\",\"Projection: Population age 15-19 in thousands by highest level of educational attainment. Post Secondary. Female\",\"Total population in thousands in the specified age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.1519.4.MA\",\"Projection: Population age 15-19 in thousands by highest level of educational attainment. Post Secondary. Male\",\"Total population in thousands in the specified age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.1519.4.MF\",\"Projection: Population age 15-19 in thousands by highest level of educational attainment. Post Secondary. Total\",\"Total population in thousands in the specified age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.1519.NED.FE\",\"Projection: Population age 15-19 in thousands by highest level of educational attainment. No Education. Female\",\"Total population in thousands in the specified age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.1519.NED.MA\",\"Projection: Population age 15-19 in thousands by highest level of educational attainment. No Education. Male\",\"Total population in thousands in the specified age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.1519.NED.MF\",\"Projection: Population age 15-19 in thousands by highest level of educational attainment. No Education. Total\",\"Total population in thousands in the specified age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.1519.S1.FE\",\"Projection: Population age 15-19 in thousands by highest level of educational attainment. Incomplete Primary. Female\",\"Total population in thousands in the specified age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.1519.S1.MA\",\"Projection: Population age 15-19 in thousands by highest level of educational attainment. Incomplete Primary. Male\",\"Total population in thousands in the specified age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.1519.S1.MF\",\"Projection: Population age 15-19 in thousands by highest level of educational attainment. Incomplete Primary. Total\",\"Total population in thousands in the specified age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.2024.1.FE\",\"Projection: Population age 20-24 in thousands by highest level of educational attainment. Primary. Female\",\"Total population in thousands in the specified age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.2024.1.MA\",\"Projection: Population age 20-24 in thousands by highest level of educational attainment. Primary. Male\",\"Total population in thousands in the specified age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.2024.1.MF\",\"Projection: Population age 20-24 in thousands by highest level of educational attainment. Primary. Total\",\"Total population in thousands in the specified age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.2024.2.FE\",\"Projection: Population age 20-24 in thousands by highest level of educational attainment. Lower Secondary. Female\",\"Total population in thousands in the specified age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.2024.2.MA\",\"Projection: Population age 20-24 in thousands by highest level of educational attainment. Lower Secondary. Male\",\"Total population in thousands in the specified age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.2024.2.MF\",\"Projection: Population age 20-24 in thousands by highest level of educational attainment. Lower Secondary. Total\",\"Total population in thousands in the specified age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.2024.3.FE\",\"Projection: Population age 20-24 in thousands by highest level of educational attainment. Upper Secondary. Female\",\"Total population in thousands in the specified age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.2024.3.MA\",\"Projection: Population age 20-24 in thousands by highest level of educational attainment. Upper Secondary. Male\",\"Total population in thousands in the specified age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.2024.3.MF\",\"Projection: Population age 20-24 in thousands by highest level of educational attainment. Upper Secondary. Total\",\"Total population in thousands in the specified age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.2024.4.FE\",\"Projection: Population age 20-24 in thousands by highest level of educational attainment. Post Secondary. Female\",\"Total population in thousands in the specified age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.2024.4.MA\",\"Projection: Population age 20-24 in thousands by highest level of educational attainment. Post Secondary. Male\",\"Total population in thousands in the specified age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.2024.4.MF\",\"Projection: Population age 20-24 in thousands by highest level of educational attainment. Post Secondary. Total\",\"Total population in thousands in the specified age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.2024.NED.FE\",\"Projection: Population age 20-24 in thousands by highest level of educational attainment. No Education. Female\",\"Total population in thousands in the specified age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.2024.NED.MA\",\"Projection: Population age 20-24 in thousands by highest level of educational attainment. No Education. Male\",\"Total population in thousands in the specified age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.2024.NED.MF\",\"Projection: Population age 20-24 in thousands by highest level of educational attainment. No Education. Total\",\"Total population in thousands in the specified age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.2024.S1.FE\",\"Projection: Population age 20-24 in thousands by highest level of educational attainment. Incomplete Primary. Female\",\"Total population in thousands in the specified age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.2024.S1.MA\",\"Projection: Population age 20-24 in thousands by highest level of educational attainment. Incomplete Primary. Male\",\"Total population in thousands in the specified age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.2024.S1.MF\",\"Projection: Population age 20-24 in thousands by highest level of educational attainment. Incomplete Primary. Total\",\"Total population in thousands in the specified age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.2529.1.FE\",\"Projection: Population age 25-29 in thousands by highest level of educational attainment. Primary. Female\",\"Total population in thousands in the specified age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.2529.1.MA\",\"Projection: Population age 25-29 in thousands by highest level of educational attainment. Primary. Male\",\"Total population in thousands in the specified age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.2529.1.MF\",\"Projection: Population age 25-29 in thousands by highest level of educational attainment. Primary. Total\",\"Total population in thousands in the specified age group that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.2529.2.FE\",\"Projection: Population age 25-29 in thousands by highest level of educational attainment. Lower Secondary. Female\",\"Total population in thousands in the specified age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.2529.2.MA\",\"Projection: Population age 25-29 in thousands by highest level of educational attainment. Lower Secondary. Male\",\"Total population in thousands in the specified age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.2529.2.MF\",\"Projection: Population age 25-29 in thousands by highest level of educational attainment. Lower Secondary. Total\",\"Total population in thousands in the specified age group that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.2529.3.FE\",\"Projection: Population age 25-29 in thousands by highest level of educational attainment. Upper Secondary. Female\",\"Total population in thousands in the specified age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.2529.3.MA\",\"Projection: Population age 25-29 in thousands by highest level of educational attainment. Upper Secondary. Male\",\"Total population in thousands in the specified age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.2529.3.MF\",\"Projection: Population age 25-29 in thousands by highest level of educational attainment. Upper Secondary. Total\",\"Total population in thousands in the specified age group that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.2529.4.FE\",\"Projection: Population age 25-29 in thousands by highest level of educational attainment. Post Secondary. Female\",\"Total population in thousands in the specified age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.2529.4.MA\",\"Projection: Population age 25-29 in thousands by highest level of educational attainment. Post Secondary. Male\",\"Total population in thousands in the specified age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.2529.4.MF\",\"Projection: Population age 25-29 in thousands by highest level of educational attainment. Post Secondary. Total\",\"Total population in thousands in the specified age group that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.2529.NED.FE\",\"Projection: Population age 25-29 in thousands by highest level of educational attainment. No Education. Female\",\"Total population in thousands in the specified age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.2529.NED.MA\",\"Projection: Population age 25-29 in thousands by highest level of educational attainment. No Education. Male\",\"Total population in thousands in the specified age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.2529.NED.MF\",\"Projection: Population age 25-29 in thousands by highest level of educational attainment. No Education. Total\",\"Total population in thousands in the specified age group that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.2529.S1.FE\",\"Projection: Population age 25-29 in thousands by highest level of educational attainment. Incomplete Primary. Female\",\"Total population in thousands in the specified age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.2529.S1.MA\",\"Projection: Population age 25-29 in thousands by highest level of educational attainment. Incomplete Primary. Male\",\"Total population in thousands in the specified age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.2529.S1.MF\",\"Projection: Population age 25-29 in thousands by highest level of educational attainment. Incomplete Primary. Total\",\"Total population in thousands in the specified age group that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.ALL.1.FE\",\"Projection: Population in thousands by highest level of educational attainment. Primary. Female\",\"Total population in thousands that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.ALL.1.MA\",\"Projection: Population in thousands by highest level of educational attainment. Primary. Male\",\"Total population in thousands that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.ALL.1.MF\",\"Projection: Population in thousands by highest level of educational attainment. Primary. Total\",\"Total population in thousands that has completed primary education or incomplete lower secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.ALL.2.FE\",\"Projection: Population in thousands by highest level of educational attainment. Lower Secondary. Female\",\"Total population in thousands that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.ALL.2.MA\",\"Projection: Population in thousands by highest level of educational attainment. Lower Secondary. Male\",\"Total population in thousands that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.ALL.2.MF\",\"Projection: Population in thousands by highest level of educational attainment. Lower Secondary. Total\",\"Total population in thousands that has completed lower secondary or incomplete upper secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.ALL.3.FE\",\"Projection: Population in thousands by highest level of educational attainment. Upper Secondary. Female\",\"Total population in thousands that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.ALL.3.MA\",\"Projection: Population in thousands by highest level of educational attainment. Upper Secondary. Male\",\"Total population in thousands that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.ALL.3.MF\",\"Projection: Population in thousands by highest level of educational attainment. Upper Secondary. Total\",\"Total population in thousands that has completed upper secondary or incomplete post-secondary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.ALL.4.FE\",\"Projection: Population in thousands by highest level of educational attainment. Post Secondary. Female\",\"Total population in thousands that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.ALL.4.MA\",\"Projection: Population in thousands by highest level of educational attainment. Post Secondary. Male\",\"Total population in thousands that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.ALL.4.MF\",\"Projection: Population in thousands by highest level of educational attainment. Post Secondary. Total\",\"Total population in thousands that has completed post-secondary or tertiary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.ALL.NED.FE\",\"Projection: Population in thousands by highest level of educational attainment. No Education. Female\",\"Total population in thousands that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.ALL.NED.MA\",\"Projection: Population in thousands by highest level of educational attainment. No Education. Male\",\"Total population in thousands that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.ALL.NED.MF\",\"Projection: Population in thousands by highest level of educational attainment. No Education. Total\",\"Total population in thousands that has never attended school. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.ALL.S1.FE\",\"Projection: Population in thousands by highest level of educational attainment. Incomplete Primary. Female\",\"Total population in thousands that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.ALL.S1.MA\",\"Projection: Population in thousands by highest level of educational attainment. Incomplete Primary. Male\",\"Total population in thousands that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRJ.POP.ALL.S1.MF\",\"Projection: Population in thousands by highest level of educational attainment. Incomplete Primary. Total\",\"Total population in thousands that has pre-primary education or incomplete primary education as the highest level of educational attainment. Projections are based on collected census and survey data for the base year (around 2010) and the Medium Shared Socioeconomic Pathways (SSP2) projection model. The SSP2 is a middle-of-the-road scenario that combines medium fertility with medium mortality, medium migration, and the Global Education Trend (GET) education scenario. For more information and other projection models, consult the Wittgenstein Centre for Demography and Global Human Capital's website: http://www.oeaw.ac.at/vid/dataexplorer/\",\"Education Statistics\",\"Wittgenstein Centre for Demography and Global Human Capital: http://www.oeaw.ac.at/vid/dataexplorer/\"\n\"PRT.PDCL.IND1.IDX\",\"PDI-1 Country with operational national development strategies (rating)\",\"Country's national development strategy is linked to medium-term expenditure framework and reflected in annual budgets.  The degree to which governments take the lead in co-ordinating aid-funded activities is the subject of a specific commitment in the Paris Declaration.  It is also a variable that seems to be subject to significant changes over time. Another dimension of ownership is the degree to which countries have development strategies that are clear and well operationalised, so that development efforts are effective and there is a robust basis for the alignment of aid with country policies. This is based on the World Bank's Results-Based National Development Strategies: Assessment and Challenges Ahead Report.  Categorical where \\\"A\\\" assigned a value of 1; \\\"B\\\" assigned a value of 2; \\\"C\\\" assigned a value of 3; \\\"D\\\" assigned a value of 4; \\\"E\\\" assigned a value of 5; and \\\"N/A\\\" assigned a value of 6.  Indicators 3 to 12 (but not Indictor 8) are drawn from the Survey on Monitoring the Paris Declaration for each respective year.  \",\"Africa Development Indicators\",\"Organization for Economic Co-operation and Development (www.oecd.org/dac/effectiveness/monitoring).\"\n\"PRT.PDCL.IND10A.ALLD.ZS\",\"PDI-10a Donor missions co-ordinated (percent)\",\"Encourage shared analysis on field missions work including diagnostic reviews that are joint.  Donor co-ordinated missions focuses only on the proportion of (i) missions undertaken jointly by two or more donors, or (ii) missions undertaken by one donor on behalf of another (delegated co-operation).  Indicators 3 to 12 (but not Indictor 8) are drawn from the Survey on Monitoring the Paris Declaration for each respective year.  \",\"Africa Development Indicators\",\"Organization for Economic Co-operation and Development (www.oecd.org/dac/effectiveness/monitoring).\"\n\"PRT.PDCL.IND10B.ALLD.ZS\",\"PDI-10b Country-analysis co-ordinated (percent)\",\"Encourage shared analysis on country analytic work including diagnostic reviews that are joint.  (i) Country analytic work undertaken by one or more donors jointly; (ii) Country analytic work undertaken by one donor on behalf of another donor (including work undertaken by one and/or used by another when it is co-financed and formally acknowledged in official documentation); (iii) Country analytic work undertaken with substantive involvement from government.  Indicators 3 to 12 (but not Indictor 8) are drawn from the Survey on Monitoring the Paris Declaration for each respective year.  Indicators 3 to 12 (but not Indictor 8) are drawn from the Survey on Monitoring the Paris Declaration for each respective year.  \",\"Africa Development Indicators\",\"Organization for Economic Co-operation and Development (www.oecd.org/dac/effectiveness/monitoring).\"\n\"PRT.PDCL.IND11.IDX\",\"PDI-11 Existence of a monitorable performance assessment framework (rating)\",\"Transparent and monitorable performance assessment frameworks to assess progress against (a) national development strategies and (b) sector programmes.  Categorical where \\\"A\\\" assigned a value of 1; \\\"B\\\" assigned a value of 2; \\\"C\\\" assigned a value of 3; \\\"D\\\" assigned a value of 4; \\\"E\\\" assigned a value of 5; and \\\"N/A\\\" assigned a value of 6.  Indicators 3 to 12 (but not Indictor 8) are drawn from the Survey on Monitoring the Paris Declaration for each respective year.  \",\"Africa Development Indicators\",\"Organization for Economic Co-operation and Development (www.oecd.org/dac/effectiveness/monitoring).\"\n\"PRT.PDCL.IND12.IDX\",\"PDI-12 Existence of a mutual accountability review (rating)\",\"The concept of mutual accountability is an important innovation of the Paris Declaration.  It develops the idea that aid is more effective when both donors and partner governments are accountable to their respective publics for the use of resources to achieve development results, and when they are also accountable to each other. The specific focus of the agreed indicator (Indicator 12) is on mutual accountability for the implementation of the Partnership Commitments included in the Declaration and any local agreements on enhancing aid effectiveness. Specifically, the country survey returns tell us whether there exists a mechanism for mutual review of progress on aid\",\"Africa Development Indicators\",\"Organization for Economic Co-operation and Development (www.oecd.org/dac/effectiveness/monitoring).\"\n\"PRT.PDCL.IND2A.IDX\",\"PDI-2a Country financial management systems reliability (rating)\",\"This rating is the World Bank's annual Country Policy and Institutional Assessment ratings (CPIA sub-component 13) for the quality of budgetary and financial management.  This scale runs from 1 to 5 with 1 the worst and 5 the best.  The focus is on the degree to which existing systems adhere to broadly accepted good practices or there is a reform programme in place to promote improved practices.  \",\"Africa Development Indicators\",\"Organization for Economic Co-operation and Development (www.oecd.org/dac/effectiveness/monitoring).\"\n\"PRT.PDCL.IND2B.IDX\",\"PDI-2b Country procurement systems reliability (rating)\",\"The focus is on the degree to which existing systems adhere to broadly accepted good practices or there is a reform programme in place to promote improved practices. Reliable procurement systems are based on the common benchmarking and assessment methodology for public procurement systems developed and piloted by the Joint Venture on Procurement.  Categorical where \\\"A\\\" assigned a value of 1; \\\"B\\\" assigned a value of 2; \\\"C\\\" assigned a value of 3; \\\"D\\\" assigned a value of 4; \\\"E\\\" assigned a value of 5; and \\\"N/A\\\" assigned a value of 6.  \",\"Africa Development Indicators\",\"Organization for Economic Co-operation and Development (www.oecd.org/dac/effectiveness/monitoring).\"\n\"PRT.PDCL.IND3.ALLD.ZS\",\"PDI-3 Government budget estimates comprehensive and realistic (percent)\",\"The objective of this indicator is to improve transparency and accountability by encouraging partner countries and donors to accurately record aid as much as possible in the national budget, thereby allowing scrutiny by parliaments.  Aid flows to the government sector that is reported in country's national government budgets.  \",\"Africa Development Indicators\",\"Organization for Economic Co-operation and Development (www.oecd.org/dac/effectiveness/monitoring).\"\n\"PRT.PDCL.IND4.ALLD.ZS\",\"PDI-4 Technical assistance aligned and co-ordinated with country programmes (percent)\",\"Donor capacity-development support provided through co-ordinated programmes are consistent with country's development strategies.  Indicators 3 to 12 (but not Indictor 8) are drawn from the Survey on Monitoring the Paris Declaration for each respective year.  \",\"Africa Development Indicators\",\"Organization for Economic Co-operation and Development (www.oecd.org/dac/effectiveness/monitoring).\"\n\"PRT.PDCL.IND5A.ALLD.ZS\",\"PDI-5a Aid for government sectors uses country public finanacial management systems (percent)\",\"Donors and aid flows that use country's public financial management systems that either (a) adhere to broadly good practices or (b) have a reform programme in place to achieve these.  Indicators 3 to 12 (but not Indictor 8) are drawn from the Survey on Monitoring the Paris Declaration for each respective year.  \",\"Africa Development Indicators\",\"Organization for Economic Co-operation and Development (www.oecd.org/dac/effectiveness/monitoring).\"\n\"PRT.PDCL.IND5B.ALLD.ZS\",\"PDI-5b Aid for government sectors uses country procurement systems (percent)\",\"Donors and aid flows that use country's procurement systems that either (a) adhere to broadly good practices or (b) have a reform programme in place to achieve these.  Indicators 3 to 12 (but not Indictor 8) are drawn from the Survey on Monitoring the Paris Declaration for each respective year.  \",\"Africa Development Indicators\",\"Organization for Economic Co-operation and Development (www.oecd.org/dac/effectiveness/monitoring).\"\n\"PRT.PDCL.IND6.ALLD.NUM\",\"PDI-6 Project implementation units parallel to country structures (number)\",\"Indicator 6 is a count of parallel project implementation units (PIUs), where\",\"Africa Development Indicators\",\"Organization for Economic Co-operation and Development (www.oecd.org/dac/effectiveness/monitoring).\"\n\"PRT.PDCL.IND7.ALLD.ZS\",\"PDI-7 Aid disbursements on schedule and recorded by government (percent)\",\"Aid disbursements on schedule and recorded by government.  The objective is two-fold.  First and foremost, it is to encourage disbursements of funds within the year they are scheduled.  Second, it is to encourage accurate recording of disbursements by partner authorities.  Both objectives require strong cooperation between donors and partner authorities. Aid is more predictable and released according to agreed schedules in annual or multi-year frameworks.  Indicators 3 to 12 (but not Indictor 8) are drawn from the Survey on Monitoring the Paris Declaration for each respective year.  \",\"Africa Development Indicators\",\"Organization for Economic Co-operation and Development (www.oecd.org/dac/effectiveness/monitoring).\"\n\"PRT.PDCL.IND8.ALLD.ZS\",\"PDI-8 Bilateral aid that is untied (percent)\",\"Tied aid is aid provided on the condition that the recipient uses it to purchase goods and services from suppliers based in the donor country. The target for this indicator is to increase untied aid over time.  \",\"Africa Development Indicators\",\"Organization for Economic Co-operation and Development (www.oecd.org/dac/effectiveness/monitoring).\"\n\"PRT.PDCL.IND9.ALLD.ZS\",\"PDI-9 Aid provided in the framework of programme-based appproaches (%)\",\"Aid provided in the framework of programme-based approaches (PBAs) are a way of engaging in development co-operation based on the principles of co-ordinated support for  a locally owned programme of development, such as a national development strategy, a sector programme, a thematic programme or a programme of a specific organization.  Programme-based approaches share the following features: (i) Leadership by the host country or organization; (ii) A single comprehensive programme and budget framework; (iii) A formalized process for donor co-ordination and harmonization of donor procedures for reporting, budgeting, financial management and procurement; (iv) Efforts to increase the use of local systems for programme design and implementation, financial management, monitoring and evaluation.  Indicators 3 to 12 (but not Indictor 8) are drawn from the Survey on Monitoring the Paris Declaration for each respective year.  \",\"Africa Development Indicators\",\"Organization for Economic Co-operation and Development (www.oecd.org/dac/effectiveness/monitoring).\"\n\"PV.EST\",\"Political Stability and Absence of Violence/Terrorism: Estimate\",\"Political Stability and Absence of Violence/Terrorism captures perceptions of the likelihood that the government will be destabilized or overthrown by unconstitutional or violent means, including politically-motivated violence and terrorism.\",\"Worldwide Governance Indicators\",\"Worldwide Governance Indicators, The World Bank\"\n\"PV.NO.SRC\",\"Political Stability and Absence of Violence/Terrorism: Number of Sources\",\"Political Stability and Absence of Violence/Terrorism captures perceptions of the likelihood that the government will be destabilized or overthrown by unconstitutional or violent means, including politically-motivated violence and terrorism.\",\"Worldwide Governance Indicators\",\"Worldwide Governance Indicators, The World Bank\"\n\"PV.PER.RNK\",\"Political Stability and Absence of Violence/Terrorism: Percentile Rank\",\"Political Stability and Absence of Violence/Terrorism captures perceptions of the likelihood that the government will be destabilized or overthrown by unconstitutional or violent means, including politically-motivated violence and terrorism.\",\"Worldwide Governance Indicators\",\"Worldwide Governance Indicators, The World Bank\"\n\"PV.PER.RNK.LOWER\",\"Political Stability and Absence of Violence/Terrorism: Percentile Rank, Lower Bound of 90% Confidence Interval\",\"Political Stability and Absence of Violence/Terrorism measures perceptions of the likelihood of political instability and/or politically-motivated violence, including terrorism.  Percentile rank indicates the country's rank among all countries covered by the aggregate indicator, with 0 corresponding to lowest rank, and 100 to highest rank.  Percentile ranks have been adjusted to correct for changes over time in the composition of the countries covered by the WGI.  Percentile Rank Lower refers to lower bound of 90 percent confidence interval for governance, expressed in percentile rank terms.\",\"Worldwide Governance Indicators\",\"Worldwide Governance Indicators, The World Bank\"\n\"PV.PER.RNK.UPPER\",\"Political Stability and Absence of Violence/Terrorism: Percentile Rank, Upper Bound of 90% Confidence Interval\",\"Political Stability and Absence of Violence/Terrorism measures perceptions of the likelihood of political instability and/or politically-motivated violence, including terrorism.  Percentile rank indicates the country's rank among all countries covered by the aggregate indicator, with 0 corresponding to lowest rank, and 100 to highest rank.  Percentile ranks have been adjusted to correct for changes over time in the composition of the countries covered by the WGI.  Percentile Rank Upper refers to upper bound of 90 percent confidence interval for governance, expressed in percentile rank terms.\",\"Worldwide Governance Indicators\",\"Worldwide Governance Indicators, The World Bank\"\n\"PV.STD.ERR\",\"Political Stability and Absence of Violence/Terrorism: Standard Error\",\"Political Stability and Absence of Violence/Terrorism captures perceptions of the likelihood that the government will be destabilized or overthrown by unconstitutional or violent means, including politically-motivated violence and terrorism.\",\"Worldwide Governance Indicators\",\"Worldwide Governance Indicators, The World Bank\"\n\"PX.MUV.TOTL\",\"Manufactures value index\",\"Manufactures unit value index is a weighted unit value index of exports of manufactures by industrial countries. \",\"Africa Development Indicators\",\"World Bank, IECAP\"\n\"PX.MUV.TOTL.XU\",\"Manufactured exports unit value (MUV) index (% change)\",\"Manufactures unit value index (percentage change) is calculated as the annual percentage change of a weighted unit value index of exports of manufactures by industrial countries.  \",\"Africa Development Indicators\",\"World Bank, IECAP.\"\n\"PX.REC.REER\",\"Real effective exchange rate index (line rec, 2005 = 100)\",\"Real effective exchange rate is the nominal effective exchange rate (a measure of the value of a currency against a weighted average of several foreign currencies) divided by a price deflator or index of costs. This indicator corresponds to the IFS's line rec, and is based on a nominal rate adjusted for relative changes in consumer prices.\",\"Africa Development Indicators\",\"International Monetary Fund, International Financial Statistics.\"\n\"PX.REX.REER\",\"Real effective exchange rate index (2010 = 100)\",\"Real effective exchange rate is the nominal effective exchange rate (a measure of the value of a currency against a weighted average of several foreign currencies) divided by a price deflator or index of costs.\",\"World Development Indicators\",\"International Monetary Fund, International Financial Statistics.\"\n\"REER\",\"Real Effective Exchange Rate\",\"Real effective exchange rate is the nominal effective exchange rate (a measure of the value of a currency against a weighted average of several foreign currencies) divided by a price deflator or index of costs.\",\"Global Economic Monitor\",\"World Bank staff calculations based on Datastream and IMF International Finance Statistics data.\"\n\"RES.DPST.CBK\",\"Outstanding Deposits of Commercial Banks owned by Regional Government (Province Level, in IDR Million)\",\"\",\"INDO-DAPOER\",\"Bank Indonesia, Commercial Bank Monthly Report\"\n\"REV.DAK.CR\",\"Total Special Allocation Grant/DAK (in IDR)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, SIKD (Information System for Sub-National Budget)\"\n\"REV.DAU.CR\",\"Total General Allocation Grant/DAU (in IDR)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, SIKD (Information System for Sub-National Budget)\"\n\"REV.NRRV.SHR.CR\",\"Total Natural Resource Revenue Sharing/DBH SDA (in IDR)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, SIKD (Information System for Sub-National Budget)\"\n\"REV.OSRV.CR\",\"Total Own Source Revenue/PAD (in IDR)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, SIKD (Information System for Sub-National Budget)\"\n\"REV.OTHR.CR\",\"Total Other Revenue (in IDR)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, SIKD (Information System for Sub-National Budget)\"\n\"REV.TOTL.CR\",\"Total Revenue (in IDR)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, SIKD (Information System for Sub-National Budget)\"\n\"REV.TXRV.SHR.CR\",\"Total Tax Revenue Sharing/DBH Pajak (in IDR)\",\"\",\"INDO-DAPOER\",\"Ministry of Finance, SIKD (Information System for Sub-National Budget)\"\n\"RICE_05\",\"Rice, Thailand, 5%, $/mt, current$\",\"Rice (Thailand), 5% broken, white rice (WR), milled, indicative price based on  weekly surveys of export transactions, government standard, f.o.b. Bangkok\",\"Global Economic Monitor (GEM) Commodities\",\"US Department of Agricuture; World Bank.\"\n\"RICE_05_VNM\",\"Rice, Vietnamese, 5%, $/mt, current$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"\"\n\"RICE_25\",\"Rice, Thailand, 25%, $/mt, current$\",\"Rice (Thailand), 25% broken, WR, milled indicative survey price, government standard, f.o.b. Bangkok\",\"Global Economic Monitor (GEM) Commodities\",\"US Department of Agricuture; World Bank.\"\n\"RICE_A1\",\"Rice, Thai, A1.Special, $/mt, current$\",\"Rice (Thailand), 100% broken, A.1 Super from 2006 onwards, government standard, f.o.b. Bangkok; prior to 2006, A1 Special, a slightly lower grade than A1 Super.\",\"Global Economic Monitor (GEM) Commodities\",\"US Department of Agricuture; World Bank.\"\n\"RISE.EA.PE\",\"RISE Energy Access - Procedural Efficiency\",\"\",\"Readiness for Investment in Sustainable Energy (RISE)\",\"\"\n\"RISE.EA.PL\",\"RISE Energy Access - Planning\",\"\",\"Readiness for Investment in Sustainable Energy (RISE)\",\"\"\n\"RISE.EA.PR\",\"RISE Energy Access - Policies and Regulations\",\"\",\"Readiness for Investment in Sustainable Energy (RISE)\",\"\"\n\"RISE.EA.PS\",\"RISE Energy Access - Pricing and Subsidies\",\"\",\"Readiness for Investment in Sustainable Energy (RISE)\",\"\"\n\"RISE.EA.TO\",\"RISE Energy Access - Overall country score\",\"\",\"Readiness for Investment in Sustainable Energy (RISE)\",\"\"\n\"RISE.EE.PE\",\"RISE Energy Efficiency - Procedural Efficiency\",\"\",\"Readiness for Investment in Sustainable Energy (RISE)\",\"\"\n\"RISE.EE.PL\",\"RISE Energy Efficiency - Planning\",\"\",\"Readiness for Investment in Sustainable Energy (RISE)\",\"\"\n\"RISE.EE.PR\",\"RISE Energy Efficiency - Policies and Regulations\",\"\",\"Readiness for Investment in Sustainable Energy (RISE)\",\"\"\n\"RISE.EE.PS\",\"RISE Energy Efficiency - Pricing and Subsidies\",\"\",\"Readiness for Investment in Sustainable Energy (RISE)\",\"\"\n\"RISE.EE.TO\",\"RISE Energy Efficiency - Overall country score\",\"\",\"Readiness for Investment in Sustainable Energy (RISE)\",\"\"\n\"RISE.RE.PE\",\"RISE Renewable Energy - Procedural Efficiency\",\"\",\"Readiness for Investment in Sustainable Energy (RISE)\",\"\"\n\"RISE.RE.PL\",\"RISE Renewable Energy - Planning\",\"\",\"Readiness for Investment in Sustainable Energy (RISE)\",\"\"\n\"RISE.RE.PR\",\"RISE Renewable Energy - Policies and Regulations\",\"\",\"Readiness for Investment in Sustainable Energy (RISE)\",\"\"\n\"RISE.RE.PS\",\"RISE Renewable Energy - Pricing and Subsidies\",\"\",\"Readiness for Investment in Sustainable Energy (RISE)\",\"\"\n\"RISE.RE.TO\",\"RISE Renewable Energy - Overall country score\",\"\",\"Readiness for Investment in Sustainable Energy (RISE)\",\"\"\n\"RL.EST\",\"Rule of Law: Estimate\",\"Rule of Law captures perceptions of the extent to which agents have confidence in and abide by the rules of society, and in particular the quality of contract enforcement, property rights, the police, and the courts, as well as the likelihood of crime and violence.\",\"Worldwide Governance Indicators\",\"Worldwide Governance Indicators, The World Bank\"\n\"RL.NO.SRC\",\"Rule of Law: Number of Sources\",\"Rule of Law captures perceptions of the extent to which agents have confidence in and abide by the rules of society, and in particular the quality of contract enforcement, property rights, the police, and the courts, as well as the likelihood of crime and violence.\",\"Worldwide Governance Indicators\",\"Worldwide Governance Indicators, The World Bank\"\n\"RL.PER.RNK\",\"Rule of Law: Percentile Rank\",\"Rule of Law captures perceptions of the extent to which agents have confidence in and abide by the rules of society, and in particular the quality of contract enforcement, property rights, the police, and the courts, as well as the likelihood of crime and violence.\",\"Worldwide Governance Indicators\",\"Worldwide Governance Indicators, The World Bank\"\n\"RL.PER.RNK.LOWER\",\"Rule of Law: Percentile Rank, Lower Bound of 90% Confidence Interval\",\"Rule of Law captures perceptions of the extent to which agents have confidence in and abide by the rules of society, and in particular the quality of contract enforcement, property rights, the police, and the courts, as well as the likelihood of crime and violence. Percentile rank indicates the country's rank among all countries covered by the aggregate indicator, with 0 corresponding to lowest rank, and 100 to highest rank.  Percentile ranks have been adjusted to correct for changes over time in the composition of the countries covered by the WGI.  Percentile Rank Lower refers to lower bound of 90 percent confidence interval for governance, expressed in percentile rank terms.\",\"Worldwide Governance Indicators\",\"Worldwide Governance Indicators, The World Bank\"\n\"RL.PER.RNK.UPPER\",\"Rule of Law: Percentile Rank, Upper Bound of 90% Confidence Interval\",\"Rule of Law captures perceptions of the extent to which agents have confidence in and abide by the rules of society, and in particular the quality of contract enforcement, property rights, the police, and the courts, as well as the likelihood of crime and violence. Percentile rank indicates the country's rank among all countries covered by the aggregate indicator, with 0 corresponding to lowest rank, and 100 to highest rank.  Percentile ranks have been adjusted to correct for changes over time in the composition of the countries covered by the WGI.    Percentile Rank Upper refers to upper bound of 90 percent confidence interval for governance, expressed in percentile rank terms.\",\"Worldwide Governance Indicators\",\"Worldwide Governance Indicators, The World Bank\"\n\"RL.STD.ERR\",\"Rule of Law: Standard Error\",\"Rule of Law captures perceptions of the extent to which agents have confidence in and abide by the rules of society, and in particular the quality of contract enforcement, property rights, the police, and the courts, as well as the likelihood of crime and violence.\",\"Worldwide Governance Indicators\",\"Worldwide Governance Indicators, The World Bank\"\n\"ROD.DIST.ASPH.KM\",\"Length of District Road: Asphalt (in km) (BPS Data, Province only)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"ROD.DIST.BDMG.BM.KM\",\"Length of District Road: Bad Damage (in km) (Bina Marga Data)\",\"\",\"INDO-DAPOER\",\"Ministry of Public Works, Directorate General of Highways (Bina Marga) Statistics\"\n\"ROD.DIST.BDMG.KM\",\"Length of District Road: Bad Damage (in km) (BPS Data, Province only)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"ROD.DIST.DIRT.KM\",\"Length of District Road: Dirt (in km) (BPS Data, Province only)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"ROD.DIST.FAIR.BM.KM\",\"Length of District Road: Fair (in km) (Bina Marga Data)\",\"\",\"INDO-DAPOER\",\"Ministry of Public Works, Directorate General of Highways (Bina Marga) Statistics\"\n\"ROD.DIST.FAIR.KM\",\"Length of District Road: Fair (in km) (BPS Data, Province only)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"ROD.DIST.GOOD.BM.KM\",\"Length of District Road: Good (in km) (Bina Marga Data)\",\"\",\"INDO-DAPOER\",\"Ministry of Public Works, Directorate General of Highways (Bina Marga) Statistics\"\n\"ROD.DIST.GOOD.KM\",\"Length of District Road: Good (in km) (BPS Data, Province only)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"ROD.DIST.GRAVL.KM\",\"Length of District Road: Gravel (in km) (BPS Data, Province only)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"ROD.DIST.LDMG.BM.KM\",\"Length of District Road: Light Damage (in km) (Bina Marga Data)\",\"\",\"INDO-DAPOER\",\"Ministry of Public Works, Directorate General of Highways (Bina Marga) Statistics\"\n\"ROD.DIST.LDMG.KM\",\"Length of District Road: Light Damage (in km) (BPS Data, Province only)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"ROD.DIST.OTHR.KM\",\"Length of District Road: Other (in km) (BPS Data, Province only)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"ROD.NATL.ASPH.KM\",\"Length of National Road: Asphalt (in km) (BPS Data, Province only)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"ROD.NATL.BDMG.KM\",\"Length of National Road: Bad Damage (in km) (BPS Data, Province only)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"ROD.NATL.DIRT.KM\",\"Length of National Road: Dirt (in km) (BPS Data, Province only)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"ROD.NATL.FAIR.KM\",\"Length of National Road: Fair (in km) (BPS Data, Province only)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"ROD.NATL.GOOD.KM\",\"Length of National Road: Good (in km) (BPS Data, Province only)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"ROD.NATL.GRAVL.KM\",\"Length of National Road: Gravel (in km) (BPS Data, Province only)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"ROD.NATL.LDMG.KM\",\"Length of National Road: Light Damage (in km) (BPS Data, Province only)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"ROD.NATL.OTHR.KM\",\"Length of National Road: Other (in km) (BPS Data, Province only)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"ROD.PROV.ASPH.KM\",\"Length of Province Road: Asphalt (in km) (BPS Data, Province only)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"ROD.PROV.BDMG.KM\",\"Length of Province Road: Bad Damage (in km) (BPS Data, Province only)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"ROD.PROV.DIRT.KM\",\"Length of Province Road: Dirt (in km) (BPS Data, Province only)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"ROD.PROV.FAIR.KM\",\"Length of Province Road: Fair (in km) (BPS Data, Province only)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"ROD.PROV.GOOD.KM\",\"Length of Province Road: Good (in km) (BPS Data, Province only)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"ROD.PROV.GRAVL.KM\",\"Length of Province Road: Gravel (in km) (BPS Data, Province only)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"ROD.PROV.LDMG.KM\",\"Length of Province Road: Light Damage (in km) (BPS Data, Province only)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"ROD.PROV.OTHR.KM\",\"Length of Province Road: Other (in km) (BPS Data, Province only)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"ROD.VILG.ASPH.ZS\",\"Villages with road: Asphalt (in % of total villages)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Village Census (PODES)\"\n\"ROD.VILG.DIRT.ZS\",\"Villages with road: Dirt (in % of total villages)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Village Census (PODES)\"\n\"ROD.VILG.GRAVL.ZS\",\"Villages with road: Gravel (in % of total villages)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Village Census (PODES)\"\n\"ROD.VILG.OTHR.ZS\",\"Villages with road: Other (in % of total villages)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Village Census (PODES)\"\n\"RQ.EST\",\"Regulatory Quality: Estimate\",\"Regulatory Quality captures perceptions of the ability of the government to formulate and implement sound policies and regulations that permit and promote private sector development.\",\"Worldwide Governance Indicators\",\"Worldwide Governance Indicators, The World Bank\"\n\"RQ.NO.SRC\",\"Regulatory Quality: Number of Sources\",\"Regulatory Quality captures perceptions of the ability of the government to formulate and implement sound policies and regulations that permit and promote private sector development.\",\"Worldwide Governance Indicators\",\"Worldwide Governance Indicators, The World Bank\"\n\"RQ.PER.RNK\",\"Regulatory Quality: Percentile Rank\",\"Regulatory Quality captures perceptions of the ability of the government to formulate and implement sound policies and regulations that permit and promote private sector development.\",\"Worldwide Governance Indicators\",\"Worldwide Governance Indicators, The World Bank\"\n\"RQ.PER.RNK.LOWER\",\"Regulatory Quality: Percentile Rank, Lower Bound of 90% Confidence Interval\",\"Regulatory Quality captures perceptions of the ability of the government to formulate and implement sound policies and regulations that permit and promote private sector development. Percentile rank indicates the country's rank among all countries covered by the aggregate indicator, with 0 corresponding to lowest rank, and 100 to highest rank.  Percentile ranks have been adjusted to correct for changes over time in the composition of the countries covered by the WGI.  Percentile Rank Lower refers to lower bound of 90 percent confidence interval for governance, expressed in percentile rank terms.\",\"Worldwide Governance Indicators\",\"Worldwide Governance Indicators, The World Bank\"\n\"RQ.PER.RNK.UPPER\",\"Regulatory Quality: Percentile Rank, Upper Bound of 90% Confidence Interval\",\"Regulatory Quality captures perceptions of the ability of the government to formulate and implement sound policies and regulations that permit and promote private sector development. Percentile rank indicates the country's rank among all countries covered by the aggregate indicator, with 0 corresponding to lowest rank, and 100 to highest rank.  Percentile ranks have been adjusted to correct for changes over time in the composition of the countries covered by the WGI.  Percentile Rank Upper refers to upper bound of 90 percent confidence interval for governance, expressed in percentile rank terms.\",\"Worldwide Governance Indicators\",\"Worldwide Governance Indicators, The World Bank\"\n\"RQ.STD.ERR\",\"Regulatory Quality: Standard Error\",\"Regulatory Quality captures perceptions of the ability of the government to formulate and implement sound policies and regulations that permit and promote private sector development.\",\"Worldwide Governance Indicators\",\"Worldwide Governance Indicators, The World Bank\"\n\"RUBBER1_MYSG\",\"Rubber, Singapore, cents/kg, current$\",\"Rubber (Asia), RSS3 grade, Singapore Commodity Exchange Ltd (SICOM) nearby contract beginning 2004; during 2000 to 2003, Singapore RSS1; previously Malaysia RSS1\",\"Global Economic Monitor (GEM) Commodities\",\"Singapore Commodity Exchange Ltd (SICOM); Bloomberg; Rubber Association of Singapore Commodity Exchange (RASCE); International Rubber Study Group; Asian Wall Street Journal; World Bank.\"\n\"RUBBER1_TSR20\",\"Rubber, TSR20, cents/kg, current$\",\"\",\"Global Economic Monitor (GEM) Commodities\",\"\"\n\"s_policyholders_B2_life\",\"Insurance policy holders per 1,000 adults (life)\",\"Denotes the total number of life insurance policy holders (resident) that are resident nonfinancial corporations (public and private) and households for every 1,000 adults in the reporting country. Calculated as (number of life insurance policy holders)*1\",\"G20 Basic Set of Financial Inclusion Indicators\",\"International Monetary Fund, Financial Access Survey.\"\n\"s_policyholders_B2_nonlife\",\"Insurance policy holders per 1,000 adults (non-life)\",\"Denotes the total number of non-life insurance policy holders (resident) that are resident nonfinancial corporations (public and private) and households for every 1,000 adults in the reporting country. Calculated as (number of non-life insurance policy ho\",\"G20 Basic Set of Financial Inclusion Indicators\",\"International Monetary Fund, Financial Access Survey.\"\n\"SABER.EMIS.GOAL1\",\"SABER: (Education Management Information Systems) Policy Goal 1: Enabling Environment\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.EMIS.GOAL1.LVL1\",\"SABER: (Education Management Information Systems) Policy Goal 1 Level 1: Legal Framework\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.EMIS.GOAL1.LVL2\",\"SABER: (Education Management Information Systems) Policy Goal 1 Level 2: Organizational Structure\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.EMIS.GOAL1.LVL3\",\"SABER: (Education Management Information Systems) Policy Goal 1 Level 3: Human Resources\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.EMIS.GOAL1.LVL4\",\"SABER: (Education Management Information Systems) Policy Goal 1 Level 4: Infrastructural capacity\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.EMIS.GOAL1.LVL5\",\"SABER: (Education Management Information Systems) Policy Goal 1 Level 5: Budget\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.EMIS.GOAL1.LVL6\",\"SABER: (Education Management Information Systems) Policy Goal 1 Level 6: Data-driven Culture\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.EMIS.GOAL2\",\"SABER: (Education Management Information Systems) Policy Goal 2: System Soundness\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.EMIS.GOAL2.LVL1\",\"SABER: (Education Management Information Systems) Policy Goal 2 Level 1: Data Architecture\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.EMIS.GOAL2.LVL2\",\"SABER: (Education Management Information Systems) Policy Goal 2 Level 2: Data Coverage\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.EMIS.GOAL2.LVL3\",\"SABER: (Education Management Information Systems) Policy Goal 2 Level 3: Data Analytics\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.EMIS.GOAL2.LVL4\",\"SABER: (Education Management Information Systems) Policy Goal 2 Level 4: Dynamic System\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.EMIS.GOAL2.LVL5\",\"SABER: (Education Management Information Systems) Policy Goal 2 Level 5: Serviceability\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.EMIS.GOAL3\",\"SABER: (Education Management Information Systems) Policy Goal 3: Quality data\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.EMIS.GOAL3.LVL1\",\"SABER: (Education Management Information Systems) Policy Goal 3 Level 1: Methodological Soundness\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.EMIS.GOAL3.LVL2\",\"SABER: (Education Management Information Systems) Policy Goal 3 Level 2: Accuracy and Reliability\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.EMIS.GOAL3.LVL3\",\"SABER: (Education Management Information Systems) Policy Goal 3 Level 3: Integrity\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.EMIS.GOAL3.LVL4\",\"SABER: (Education Management Information Systems) Policy Goal 3 Level 4: Periodicity and Timeliness\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.EMIS.GOAL4\",\"SABER: (Education Management Information Systems) Policy Goal 4: Utilization in decision making\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.EMIS.GOAL4.LVL1\",\"SABER: (Education Management Information Systems) Policy Goal 4 Level 1: Openness\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.EMIS.GOAL4.LVL2\",\"SABER: (Education Management Information Systems) Policy Goal 4 Level 2: Operational Use\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.EMIS.GOAL4.LVL3\",\"SABER: (Education Management Information Systems) Policy Goal 4 Level 3: Accessibility\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.EMIS.GOAL4.LVL4\",\"SABER: (Education Management Information Systems) Policy Goal 4 Level 4: Effectiveness in Disseminating Findings\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.ERL.CHLD.GOAL1\",\"SABER: (Early Childhood Development) Policy Goal 1: Establishing an Enabling Environment\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.ERL.CHLD.GOAL1.LVL1\",\"SABER: (Early Childhood Development) Policy Goal 1 Lever 1: Legal Framework\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.ERL.CHLD.GOAL1.LVL2\",\"SABER: (Early Childhood Development) Policy Goal 1 Lever 2: Inter-sectoral Coordination\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.ERL.CHLD.GOAL1.LVL3\",\"SABER: (Early Childhood Development) Policy Goal 1 Lever 3: Finance\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.ERL.CHLD.GOAL2\",\"SABER: (Early Childhood Development) Policy Goal 2: Scope of Programs\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.ERL.CHLD.GOAL2.LVL1\",\"SABER: (Early Childhood Development) Policy Goal 2 Lever 1: Scope of Programs\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.ERL.CHLD.GOAL2.LVL2\",\"SABER: (Early Childhood Development) Policy Goal 2 Lever 2: Coverage\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.ERL.CHLD.GOAL2.LVL3\",\"SABER: (Early Childhood Development) Policy Goal 2 Lever 3: Equity\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.ERL.CHLD.GOAL3\",\"SABER: (Early Childhood Development) Policy Goal 3: Monitoring and Assuring Quality\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.ERL.CHLD.GOAL3.LVL1\",\"SABER: (Early Childhood Development) Policy Goal 3 Lever 1: Data Availability\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.ERL.CHLD.GOAL3.LVL2\",\"SABER: (Early Childhood Development) Policy Goal 3 Lever 2: Quality Standards\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.ERL.CHLD.GOAL3.LVL3\",\"SABER: (Early Childhood Development) Policy Goal 3 Lever 3: Compliance with Standards\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.HLTH.GOAL1\",\"SABER: (School Health and School Feeding) Policy Goal 1: Policy Frameworks\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.HLTH.GOAL2\",\"SABER: (School Health and School Feeding) Policy Goal 2: Financial Capacity\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.HLTH.GOAL3\",\"SABER: (School Health and School Feeding) Policy Goal 3: Institutional Capacity and Coordination\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.HLTH.GOAL4\",\"SABER: (School Health and School Feeding) Policy Goal 4: Design and Implementation\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.HLTH.GOAL5\",\"SABER: (School Health and School Feeding) Policy Goal 5: Community Roles–Reaching Beyond Schools\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.HLTH.GOAL6\",\"SABER: (School Health and School Feeding) Policy Goal 6: Health-related school policies\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.HLTH.GOAL7\",\"SABER: (School Health and School Feeding) Policy Goal 7: Safe, Supportive School Environments\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.HLTH.GOAL8\",\"SABER: (School Health and School Feeding) Policy Goal 8: School-Based Health and Nutrition Services\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.HLTH.GOAL9\",\"SABER: (School Health and School Feeding) Policy Goal 9: Skills-Based Health Education\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.PRVT.GOAL1\",\"SABER: (Engaging the Private Sector) Policy Goal 1: Encouraging innovation by providers\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.PRVT.GOAL1.LVL1\",\"SABER: (Engaging the Private Sector) Policy Goal 1 Level 1: Teacher standards\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.PRVT.GOAL1.LVL2\",\"SABER: (Engaging the Private Sector) Policy Goal 1 Level 2: Teacher appointment and deployment\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.PRVT.GOAL1.LVL3\",\"SABER: (Engaging the Private Sector) Policy Goal 1 Level 3: Teacher salaries\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.PRVT.GOAL1.LVL4\",\"SABER: (Engaging the Private Sector) Policy Goal 1 Level 4: Teacher dismissal\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.PRVT.GOAL1.LVL5\",\"SABER: (Engaging the Private Sector) Policy Goal 1 Level 5: Curriculum Delivery\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.PRVT.GOAL1.LVL6\",\"SABER: (Engaging the Private Sector) Policy Goal 1 Level 6: Classroom resourcing\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.PRVT.GOAL2\",\"SABER: (Engaging the Private Sector) Policy Goal 2: Holding schools accountable\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.PRVT.GOAL2.LVL1\",\"SABER: (Engaging the Private Sector) Policy Goal 2 Level 1: Student standards\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.PRVT.GOAL2.LVL2\",\"SABER: (Engaging the Private Sector) Policy Goal 2 Level 2: Student assessment\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.PRVT.GOAL2.LVL3\",\"SABER: (Engaging the Private Sector) Policy Goal 2 Level 3: Inspection\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.PRVT.GOAL2.LVL4\",\"SABER: (Engaging the Private Sector) Policy Goal 2 Level 4: Improvement planning \",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.PRVT.GOAL2.LVL5\",\"SABER: (Engaging the Private Sector) Policy Goal 2 Level 5: Sanctions\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.PRVT.GOAL3\",\"SABER: (Engaging the Private Sector) Policy Goal 3: Empowering all parents, students, and communities\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.PRVT.GOAL3.LVL1\",\"SABER: (Engaging the Private Sector) Policy Goal 3 Level 1: Information\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.PRVT.GOAL3.LVL2\",\"SABER: (Engaging the Private Sector) Policy Goal 3 Level 2: Voice\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.PRVT.GOAL3.LVL3\",\"SABER: (Engaging the Private Sector) Policy Goal 3 Level 3: Financial Support\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.PRVT.GOAL4\",\"SABER: (Engaging the Private Sector) Policy Goal 4: Promoting diversity of supply\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.PRVT.GOAL4.LVL1\",\"SABER: (Engaging the Private Sector) Policy Goal 4 Level 1: Tuition fees\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.PRVT.GOAL4.LVL2\",\"SABER: (Engaging the Private Sector) Policy Goal 4 Level 2: Ownership\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.PRVT.GOAL4.LVL3\",\"SABER: (Engaging the Private Sector) Policy Goal 4 Level 3: Certification standards\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.PRVT.GOAL4.LVL4\",\"SABER: (Engaging the Private Sector) Policy Goal 4 Level 4: Market entry\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.PRVT.GOAL4.LVL5\",\"SABER: (Engaging the Private Sector) Policy Goal 4 Level 5: Regulatory fees\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.ATNM.GOAL1\",\"SABER: (School Autonomy Accountability) Policy Goal 1: Level of autonomy in the planning and management of school budget\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.ATNM.GOAL1.LVL1\",\"SABER: (School Autonomy Accountability) Policy Goal 1 Level 1: Legal authority over the management of the operational budget\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.ATNM.GOAL1.LVL2\",\"SABER: (School Autonomy Accountability) Policy Goal 1 Level 2: Legal authority over the management of the non-teaching staff salaries\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.ATNM.GOAL1.LVL3\",\"SABER: (School Autonomy Accountability) Policy Goal 1 Level 3: Legal authority over the management of teacher salaries\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.ATNM.GOAL1.LVL4\",\"SABER: (School Autonomy Accountability) Policy Goal 1 Level 4: Legal authority to raise additional funds for the school\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.ATNM.GOAL1.LVL5\",\"SABER: (School Autonomy Accountability) Policy Goal 1 Level 5: Collaborative budget planning\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.ATNM.GOAL2\",\"SABER: (School Autonomy Accountability) Policy Goal 2: Level of autonomy in personnel management\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.ATNM.GOAL2.LVL1\",\"SABER: (School Autonomy Accountability) Policy Goal 2 Level 1: Autonomy in teacher appointment and deployment decisions\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.ATNM.GOAL2.LVL2\",\"SABER: (School Autonomy Accountability) Policy Goal 2 Level 2: Autonomy in non-teaching staff appointment and deployment decisions\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.ATNM.GOAL2.LVL3\",\"SABER: (School Autonomy Accountability) Policy Goal 2 Level 3: Autonomy in school principal appointment and deployment decisions\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.ATNM.GOAL3\",\"SABER: (School Autonomy Accountability) Policy Goal 3: Role of the school council on school governance\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.ATNM.GOAL3.LVL1\",\"SABER: (School Autonomy Accountability) Policy Goal 3 Level 1: Participation of the school councils in budget preparation\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.ATNM.GOAL3.LVL2\",\"SABER: (School Autonomy Accountability) Policy Goal 3 Level 2: Participation of the school councils in financial oversight\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.ATNM.GOAL3.LVL3\",\"SABER: (School Autonomy Accountability) Policy Goal 3 Level 3: Participation of the school councils in school activities\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.ATNM.GOAL3.LVL4\",\"SABER: (School Autonomy Accountability) Policy Goal 3 Level 4: Participation of the school councils in personnel oversight\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.ATNM.GOAL3.LVL5\",\"SABER: (School Autonomy Accountability) Policy Goal 3 Level 5: Participation of the school councils in learning inputs\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.ATNM.GOAL3.LVL6\",\"SABER: (School Autonomy Accountability) Policy Goal 3 Level 6: Transparency in community participation\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.ATNM.GOAL4\",\"SABER: (School Autonomy Accountability) Policy Goal 4: School and student assessment\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.ATNM.GOAL4.LVL1\",\"SABER: (School Autonomy Accountability) Policy Goal 4 Level 1: Existence and Frequency of school assessments\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.ATNM.GOAL4.LVL2\",\"SABER: (School Autonomy Accountability) Policy Goal 4 Level 2: Use of school assessments for making school adjustments\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.ATNM.GOAL4.LVL3\",\"SABER: (School Autonomy Accountability) Policy Goal 4 Level 3: Existence and Frequency of standardized student assessments\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.ATNM.GOAL4.LVL4\",\"SABER: (School Autonomy Accountability) Policy Goal 4 Level 4: Use of standardized student assessments for pedagogical, operational, and personnel adjustments\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.ATNM.GOAL4.LVL5\",\"SABER: (School Autonomy Accountability) Policy Goal 4 Level 5: Publication of student assessments\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.ATNM.GOAL5\",\"SABER: (School Autonomy Accountability) Policy Goal 5: School Accountability\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.ATNM.GOAL5.LVL1\",\"SABER: (School Autonomy Accountability) Policy Goal 5 Level 1:  Guidelines for the use of results of student assessments\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.ATNM.GOAL5.LVL2\",\"SABER: (School Autonomy Accountability) Policy Goal 5 Level 2:  Analysis of school and student performan\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.ATNM.GOAL5.LVL3\",\"SABER: (School Autonomy Accountability) Policy Goal 5 Level 3:  Degree of Financial accountability at the central level, regional, municipal, local and school level\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.ATNM.GOAL5.LVL4\",\"SABER: (School Autonomy Accountability) Policy Goal 5 Level 4: Degree of Accountability in school operations\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.ATNM.GOAL5.LVL5\",\"SABER: (School Autonomy Accountability) Policy Goal 5 Level 5: Degree of learning accountability\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.FNNC.GOAL1\",\"SABER: (School Finance) Policy Goal 1: Ensuring basic conditions for learning\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.FNNC.GOAL1.LVL1\",\"SABER: (School Finance) Policy Goal 1 Lever 1: Are there policies to ensure basic inputs?\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.FNNC.GOAL1.LVL2\",\"SABER: (School Finance) Policy Goal 1 Lever 2: Are there 3 learning goals?\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.FNNC.GOAL2\",\"SABER: (School Finance) Policy Goal 2: Monitoring learning conditions and outcomes\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.FNNC.GOAL2.LVL1\",\"SABER: (School Finance) Policy Goal 2 Lever 1: Are there systems in place to monitor learning conditions?\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.FNNC.GOAL2.LVL2\",\"SABER: (School Finance) Policy Goal 2 Lever 2: Are there systems in place to assess learning outcomes?\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.FNNC.GOAL3\",\"SABER: (School Finance) Policy Goal 3: Overseeing service delivery\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.FNNC.GOAL3.LVL1\",\"SABER: (School Finance) Policy Goal 3 Lever 1: What mechanisms are in place to verify the availability of physical resources at schools?\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.FNNC.GOAL3.LVL2\",\"SABER: (School Finance) Policy Goal 3 Lever 2: What mechanisms are in place to verify the availability of human resources at schools?\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.FNNC.GOAL4\",\"SABER: (School Finance) Policy Goal 4: Budgeting with adequate and transparent information\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.FNNC.GOAL4.LVL1\",\"SABER: (School Finance) Policy Goal 4 Lever 1: Is there an informed budget process?\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.FNNC.GOAL4.LVL2\",\"SABER: (School Finance) Policy Goal 4 Lever 2: Is the budget comprehensive and transparent?\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.FNNC.GOAL5\",\"SABER: (School Finance) Policy Goal 5: Providing more resources to students who need them\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.FNNC.GOAL5.LVL1\",\"SABER: (School Finance) Policy Goal 5 Lever 1: Are more public resources available to students from disadvantaged backgrounds?\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.FNNC.GOAL5.LVL2\",\"SABER: (School Finance) Policy Goal 5 Lever 2: Do payments for schooling represent a small share of income for low income families?\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.FNNC.GOAL6\",\"SABER: (School Finance) Policy Goal 6: Managing resources efficiently\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.FNNC.GOAL6.LVL1\",\"SABER: (School Finance) Policy Goal 6 Lever 1: Are there systems in place to verify the use of educational resources?\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.SCH.FNNC.GOAL6.LVL2\",\"SABER: (School Finance) Policy Goal 6 Lever 2: Are education expenditures audited?\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.STD.ASS.GOAL1\",\"SABER: (Student Assessment) Policy Goal 1: Classroom Assessment\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.STD.ASS.GOAL1.LVL1\",\"SABER: (Student Assessment) Policy Goal 1 Lever 1: Enabling Context and System Alignment\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.STD.ASS.GOAL1.LVL2\",\"SABER: (Student Assessment) Policy Goal 1 Lever 2: Assessment Quality\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.STD.ASS.GOAL2\",\"SABER: (Student Assessment) Policy Goal 2: Examinations\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.STD.ASS.GOAL2.LVL1\",\"SABER: (Student Assessment) Policy Goal 2 Lever 1: Enabling Context\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.STD.ASS.GOAL2.LVL2\",\"SABER: (Student Assessment) Policy Goal 2 Lever 2: System Alignment\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.STD.ASS.GOAL2.LVL3\",\"SABER: (Student Assessment) Policy Goal 2 Lever 3: Assessment Quality\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.STD.ASS.GOAL3\",\"SABER: (Student Assessment) Policy Goal 3: National Large-Scale Assessment (NLSA)\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.STD.ASS.GOAL3.LVL1\",\"SABER: (Student Assessment) Policy Goal 3 Lever 1: Enabling Context\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.STD.ASS.GOAL3.LVL2\",\"SABER: (Student Assessment) Policy Goal 3 Lever 2: System Alignment\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.STD.ASS.GOAL3.LVL3\",\"SABER: (Student Assessment) Policy Goal 3 Lever 3: Assessment Quality\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.STD.ASS.GOAL4\",\"SABER: (Student Assessment) Policy Goal 4: International Large-Scale Assessment (ILSA)\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.STD.ASS.GOAL4.LVL1\",\"SABER: (Student Assessment) Policy Goal 4 Lever 1: Enabling Context\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.STD.ASS.GOAL4.LVL2\",\"SABER: (Student Assessment) Policy Goal 4 Lever 2: System Alignment\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.STD.ASS.GOAL4.LVL3\",\"SABER: (Student Assessment) Policy Goal 4 Lever 3: Assessment Quality\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.TECH.GOAL1\",\"SABER: (Teachers) Policy Goal 1: Setting clear expectations for teachers\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.TECH.GOAL1.LVL1\",\"SABER: (Teachers) Policy Goal 1 Lever 1: Are there clear expectations for teachers?\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.TECH.GOAL1.LVL2\",\"SABER: (Teachers) Policy Goal 1 Lever 2: Is there useful guidance on the use of teachers' working time?\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.TECH.GOAL2\",\"SABER: (Teachers) Policy Goal 2: Attracting the best into teaching\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.TECH.GOAL2.LVL1\",\"SABER: (Teachers) Policy Goal 2 Lever 1: Are entry requirements set up to attract talented candidates?\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.TECH.GOAL2.LVL2\",\"SABER: (Teachers) Policy Goal 2 Lever 2: Is teacher pay appealing for talented candidates?\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.TECH.GOAL2.LVL3\",\"SABER: (Teachers) Policy Goal 2 Lever 3: Are working conditions appealing for talented applicants?\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.TECH.GOAL2.LVL4\",\"SABER: (Teachers) Policy Goal 2 Lever 4: Are there attractive career opportunities?\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.TECH.GOAL3\",\"SABER: (Teachers) Policy Goal 3: Preparing teachers with useful Training and experience\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.TECH.GOAL3.LVL1\",\"SABER: (Teachers) Policy Goal 3 Lever 1: Are there minimum standards for pre-service teaching education programs?\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.TECH.GOAL3.LVL2\",\"SABER: (Teachers) Policy Goal 3 Lever 2: To what extent are teacher-entrants required to be familiar with classroom practice?\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.TECH.GOAL4\",\"SABER: (Teachers) Policy Goal 4: Matching teachers' skills with students' needs\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.TECH.GOAL4.LVL1\",\"SABER: (Teachers) Policy Goal 4 Lever 1: Are there incentives for teachers to work at hard-to-staff schools?\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.TECH.GOAL4.LVL2\",\"SABER: (Teachers) Policy Goal 4 Lever 2: Are there incentives for teachers to teach critical shortage subjects?\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.TECH.GOAL5\",\"SABER: (Teachers) Policy Goal 5: Leading teachers with strong principals\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.TECH.GOAL5.LVL1\",\"SABER: (Teachers) Policy Goal 5 Lever 1: Does the education system invest in developing qualified school leaders?\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.TECH.GOAL5.LVL2\",\"SABER: (Teachers) Policy Goal 5 Lever 2: Are principals expected to support and improve instructional practice?\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.TECH.GOAL6\",\"SABER: (Teachers) Policy Goal 6: Monitoring teaching and learning\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.TECH.GOAL6.LVL1\",\"SABER: (Teachers) Policy Goal 6 Lever 1: Are there systems in place to assess student learning in order to inform teaching and policy?\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.TECH.GOAL6.LVL2\",\"SABER: (Teachers) Policy Goal 6 Lever 2: Are there systems in place to monitor teacher performance?\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.TECH.GOAL6.LVL3\",\"SABER: (Teachers) Policy Goal 6 Lever 3: Are there multiple mechanisms to evaluate teacher performance?\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.TECH.GOAL7\",\"SABER: (Teachers) Policy Goal 7: Supporting teachers to improve instruction\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.TECH.GOAL7.LVL1\",\"SABER: (Teachers) Policy Goal 7 Lever 1: Are there opportunities for professional development?\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.TECH.GOAL7.LVL2\",\"SABER: (Teachers) Policy Goal 7 Lever 2: Is teacher professional development collaborative and focused on instructional improvement?\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.TECH.GOAL7.LVL3\",\"SABER: (Teachers) Policy Goal 7 Lever 3: Is teacher professional development assigned based on perceived needs?\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.TECH.GOAL8\",\"SABER: (Teachers) Policy Goal 8: Motivating teachers to perform\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.TECH.GOAL8.LVL1\",\"SABER: (Teachers) Policy Goal 8 Lever 1: Are career opportunities linked to performance?\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.TECH.GOAL8.LVL2\",\"SABER: (Teachers) Policy Goal 8 Lever 2: Are there mechanisms to hold teachers accountable?\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.TECH.GOAL8.LVL3\",\"SABER: (Teachers) Policy Goal 8 Lever 3: Is teacher compensation linked to performance?\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.WORK.GOAL1\",\"SABER: (Workforce Development) Policy Goal 1: Strategic Framework\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.WORK.GOAL1.LVL1\",\"SABER: (Workforce Development) Policy Goal 1 Lever 1: Setting a Strategic Direction\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.WORK.GOAL1.LVL2\",\"SABER: (Workforce Development) Policy Goal 1 Lever 2: Fostering a Demand-Driven Approach\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.WORK.GOAL1.LVL3\",\"SABER: (Workforce Development) Policy Goal 1 Lever 3: Strengthening Critical Coordination\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.WORK.GOAL2\",\"SABER: (Workforce Development) Policy Goal 2: System Oversight\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.WORK.GOAL2.LVL1\",\"SABER: (Workforce Development) Policy Goal 2 Lever 1: Ensuring Efficiency and Equity in Funding\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.WORK.GOAL2.LVL2\",\"SABER: (Workforce Development) Policy Goal 2 Lever 2: Assuring Relevant and Reliable Standards\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.WORK.GOAL2.LVL3\",\"SABER: (Workforce Development) Policy Goal 2 Lever 3: Diversifying Pathways for Skills Acquisition\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.WORK.GOAL3\",\"SABER: (Workforce Development) Policy Goal 3: Service Delivery\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.WORK.GOAL3.LVL1\",\"SABER: (Workforce Development) Policy Goal 3 Lever 1: Enabling Diversity and Excellence in Training Provision\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.WORK.GOAL3.LVL2\",\"SABER: (Workforce Development) Policy Goal 3 Lever 2: Fostering Relevance in Public Training Programs\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SABER.WORK.GOAL3.LVL3\",\"SABER: (Workforce Development) Policy Goal 3 Lever 3: Enhancing Evidence-based Accountability for Results\",\"Data Read: 1=Latent; 2=Emerging; 3Established; 4=Advanced\",\"Education Statistics\",\"The Systems Approach for Better Education Results (SABER), World Bank\"\n\"SAWNWD_CMR\",\"Sawnwood, Cameroon, $/cum, current$\",\"Sawnwood (Cameroon), sapele, width 6 inches or more, length 6 feet or more, f.a.s. Cameroonian ports\",\"Global Economic Monitor (GEM) Commodities\",\"International Tropical Timber Organization; Marches Tropicaux et Mediterraneens; World Bank.\"\n\"SAWNWD_MYS\",\"Sawnwood, Malaysia, $/cum, current$\",\"Sawnwood (Malaysia), dark red seraya/meranti, select and better quality, average 7 to 8 inches; length average 12 to 14 inches; thickness 1 to 2 inch(es);  kiln dry, c. & f. UK ports, with 5% agents commission including premium for products of certified sustainable forest beginning January 2005; previously excluding the premium\",\"Global Economic Monitor (GEM) Commodities\",\"International Tropical Timber Market Report; Tropical Timbers; World Bank.\"\n\"SE.ADT.1524.LT.FE.ZS\",\"Literacy rate, youth female (% of females ages 15-24)\",\"Youth literacy rate is the percentage of people ages 15-24 who can both read and write with understanding a short simple statement about their everyday life.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.ADT.1524.LT.FM.ZS\",\"Literacy rate, youth (ages 15-24), gender parity index (GPI)\",\"Gender parity index for youth literacy rate is the ratio of females to males ages 15-24 who can both read and write with understanding a short simple statement about their everyday life.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.ADT.1524.LT.MA.ZS\",\"Literacy rate, youth male (% of males ages 15-24)\",\"Youth literacy rate is the percentage of people ages 15-24 who can both read and write with understanding a short simple statement about their everyday life.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.ADT.1524.LT.ZS\",\"Youth literacy rate, population 15-24 years, both sexes (%)\",\"Number of people age 15 to 24 years who can both read and write with understanding a short simple statement on their everyday life, divided by the population in that age group. Generally, ‘literacy’ also encompasses ‘numeracy’, the ability to make simple arithmetic calculations. Divide the number of people aged 15 to 24 years who are literate by the total population in the same age group and multiply the result by 100.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.ADT.LITR.FE.ZS\",\"Literacy rate, adult female (% of females ages 15 and above)\",\"Adult literacy rate is the percentage of people ages 15 and above who can both read and write with understanding a short simple statement about their everyday life.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.ADT.LITR.MA.ZS\",\"Literacy rate, adult male (% of males ages 15 and above)\",\"Adult literacy rate is the percentage of people ages 15 and above who can both read and write with understanding a short simple statement about their everyday life.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.ADT.LITR.ZS\",\"Adult literacy rate, population 15+ years, both sexes (%)\",\"Percentage of the population age 15 and above who can, with understanding, read and write a short, simple statement on their everyday life. Generally, ‘literacy’ also encompasses ‘numeracy’, the ability to make simple arithmetic calculations. This indicator is calculated by dividing the number of literates aged 15 years and over by the corresponding age group population and multiplying the result by 100.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.COM.DURS\",\"Duration of compulsory education (years)\",\"Number of years that children are legally obliged to attend school.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.ENR.ORPH\",\"Ratio of school attendance of orphans to school attendance of non-orphans ages 10-14\",\"Ratio of school attendance of orphans to school attendance of non orphans is the ratio of school attendance of orphans to school attendance of non orphans ages 10-14.\",\"Health Nutrition and Population Statistics\",\"United Nations Children's Fund (UNICEF) (UN MDG site).\"\n\"SE.ENR.PRIM.FM.ZS\",\"School enrollment, primary (gross), gender parity index (GPI)\",\"Gender parity index for gross enrollment ratio in primary education is the ratio of girls to boys enrolled at primary level in public and private schools.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.ENR.PRSC.FM.ZS\",\"School enrollment, primary and secondary (gross), gender parity index (GPI)\",\"Gender parity index for gross enrollment ratio in primary and secondary education is the ratio of girls to boys enrolled at primary and secondary levels in public and private schools.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.ENR.PRSC.FM.ZS.GL\",\"Ratio of girls to boys in primary and secondary education (%), path to goal\",\"This indicator is created for the use of DDP chart. Values are linear growth \\\"path\\\" to achieving the goal by 2015, given the initial value around 1990.\",\"Millennium Development Goals\",\"World Bank staff estimates\"\n\"SE.ENR.SECO.FM.ZS\",\"School enrollment, secondary (gross), gender parity index (GPI)\",\"Gender parity index for gross enrollment ratio in secondary education is the ratio of girls to boys enrolled at secondary level in public and private schools.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.ENR.TERT.FM.ZS\",\"School enrollment, tertiary (gross), gender parity index (GPI)\",\"Gender parity index for gross enrollment ratio in tertiary education is the ratio of women to men enrolled at tertiary level in public and private schools.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.IPR.HIAT.FE.ZS\",\"Educational attainment, some primary, population 25+ years, female (%)\",\"The percentage of population ages 25 and over that attained some primary education as the highest level of education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.IPR.HIAT.MA.ZS\",\"Educational attainment, some primary, population 25+ years, male (%)\",\"The percentage of population ages 25 and over that attained some primary education as the highest level of education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.IPR.HIAT.ZS\",\"Educational attainment, some primary, population 25+ years, total (%)\",\"The percentage of population ages 25 and over that attained some primary education as the highest level of education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.JRSEC.NENR.ZS\",\"Net Enrollment Ratio: Junior Secondary (in %)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, National Social Economic Survey (SUSENAS)\"\n\"SE.LITR.15UP.ZS\",\"Literacy Rate for Population age 15 and over (in % of total population)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, National Social Economic Survey (SUSENAS)\"\n\"SE.NED.HIAT.FE.ZS\",\"Educational attainment, no schooling, population 25+ years, female (%)\",\"The percentage of population ages 25 and over that have no education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.NED.HIAT.MA.ZS\",\"Educational attainment, no schooling, population 25+ years, male (%)\",\"The percentage of population ages 25 and over that have no education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.NED.HIAT.ZS\",\"Educational attainment, no schooling, population 25+ years, total (%)\",\"The percentage of population ages 25 and over that have no education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.NEXM.SCR.JRSEC\",\"Average National Exam Score: Junior Secondary Level (out of 100, available only in district level for 2009)\",\"\",\"INDO-DAPOER\",\"Ministry of Education\"\n\"SE.NEXM.SCR.PRM\",\"Average National Exam Score: Primary Level (out of 100, available only in district level for 2009)\",\"\",\"INDO-DAPOER\",\"Ministry of Education\"\n\"SE.NEXM.SCR.SRSEC\",\"Average National Exam Score: Senior Secondary Level (out of 100, available only in district level for 2009)\",\"\",\"INDO-DAPOER\",\"Ministry of Education\"\n\"SE.PRE.DURS\",\"Preprimary education, duration (years)\",\"Preprimary duration refers to the number of grades (years) in preprimary school.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRE.ENRL\",\"Enrolment in pre-primary education, both sexes (number)\",\"Total number of students enrolled in public and private pre-primary education institutions regardless of age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.PRE.ENRL.FE\",\"Enrolment in pre-primary education, female (number)\",\"Total number of female students enrolled in public and private pre-primary education institutions regardless of age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.PRE.ENRL.FE.ZS\",\"Percentage of students in pre-primary education who are female (%)\",\"Total number of female students at the pre-primary level expressed as a percentage of the total number of students (male and female) at the pre-primary level in a given school year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.PRE.ENRL.TC.ZS\",\"Pupil-teacher ratio in pre-primary education (headcount basis)\",\"Average number of pupils per teacher at a given level of education, based on headcounts of both pupils and teachers. Divide the total number of pupils enrolled at the specified level of education by the number of teachers at the same level. In computing and interpreting this indicator, one should take into account the existence of part-time teaching, school-shifts, multi-grade classes and other practices that may affect the precision and meaningfulness of pupil-teacher ratios. When feasible, the number of part-time teachers is converted to ‘full-time equivalent’ teachers; a double-shift teacher is counted twice, etc. Teachers are defined as persons whose professional activity involves the transmitting of knowledge, attitudes and skills that are stipulated in a formal curriculum programme to students enrolled in a formal educational institution.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.PRE.ENRR\",\"Gross enrolment ratio, pre-primary, both sexes (%)\",\"Total enrollment in pre-primary education, regardless of age, expressed as a percentage of the total population of official pre-primary education age. GER can exceed 100% due to the inclusion of over-aged and under-aged students because of early or late school entrance and grade repetition.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.PRE.ENRR.FE\",\"Gross enrolment ratio, pre-primary, female (%)\",\"Total female enrollment in pre-primary education, regardless of age, expressed as a percentage of the total female population of official pre-primary education age. GER can exceed 100% due to the inclusion of over-aged and under-aged students because of early or late school entrance and grade repetition.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.PRE.ENRR.MA\",\"Gross enrolment ratio, pre-primary, male (%)\",\"Total male enrollment in pre-primary education, regardless of age, expressed as a percentage of the total male population of official pre-primary education age. GER can exceed 100% due to the inclusion of over-aged and under-aged students because of early or late school entrance and grade repetition.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.PRE.NENR\",\"Net enrolment rate, pre-primary, both sexes (%)\",\"Total number of students in the theoretical age group for pre-primary education enrolled in that level, expressed as a percentage of the total population in that age group. Divide the number of students enrolled who are of the official age group for pre-primary education by the population for the same age group and multiply the result by 100. NER at each level of education should be based on enrolment of the relevant age group in all types of schools and education institutions, including public, private and all other institutions that provide organized educational programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.PRE.NENR.FE\",\"Net enrolment rate, pre-primary, female (%)\",\"Total number of female students in the theoretical age group for pre-primary education enrolled in that level, expressed as a percentage of the total female population in that age group. Divide the number of female students enrolled who are of the official age group for pre-primary education by the female population for the same age group and multiply the result by 100. NER at each level of education should be based on enrolment of the relevant age group in all types of schools and education institutions, including public, private and all other institutions that provide organized educational programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.PRE.NENR.MA\",\"Net enrolment rate, pre-primary, male (%)\",\"Total number of male students in the theoretical age group for pre-primary education enrolled in that level, expressed as a percentage of the total male population in that age group. Divide the number of male students enrolled who are of the official age group for pre-primary education by the male population for the same age group and multiply the result by 100. NER at each level of education should be based on enrolment of the relevant age group in all types of schools and education institutions, including public, private and all other institutions that provide organized educational programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.PRE.PRIV.ZS\",\"Percentage of enrolment in pre-primary education in private institutions (%)\",\"Total number of students in pre-primary education enrolled in institutions that are not operated by a public authority but controlled and managed, whether for profit or not, by a private body (e.g., non-governmental organisation, religious body, special interest group, foundation or business enterprise), expressed as a percentage of total number of students enrolled in pre-primary education.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.PRE.TCAQ.FE.ZS\",\"Trained teachers in preprimary education, female (% of female teachers)\",\"Trained teachers in preprimary education are the percentage of preprimary school teachers who have received the minimum organized teacher training (pre-service or in-service) required for teaching in a given country.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRE.TCAQ.MA.ZS\",\"Trained teachers in preprimary education, male (% of male teachers)\",\"Trained teachers in preprimary education are the percentage of preprimary school teachers who have received the minimum organized teacher training (pre-service or in-service) required for teaching in a given country.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRE.TCAQ.ZS\",\"Trained teachers in preprimary education (% of total teachers)\",\"Trained teachers in preprimary education are the percentage of preprimary school teachers who have received the minimum organized teacher training (pre-service or in-service) required for teaching in a given country.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRE.TCHR\",\"Teachers in pre-primary education, both sexes (number)\",\"Total number of teachers in public and private pre-primary education institutions. Teachers are persons employed full time or part time in an official capacity to guide and direct the learning experience of pupils and students, irrespective of their qualifications or the delivery mechanism, i.e. face-to-face and/or at a distance. This definition excludes educational personnel who have no active teaching duties (e.g. headmasters, headmistresses or principals who do not teach) and persons who work occasionally or in a voluntary capacity in educational institutions.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.PRE.TCHR.FE\",\"Teachers in pre-primary education, female (number)\",\"Total number of female teachers in public and private pre-primary education institutions. Teachers are persons employed full time or part time in an official capacity to guide and direct the learning experience of pupils and students, irrespective of their qualifications or the delivery mechanism, i.e. face-to-face and/or at a distance. This definition excludes educational personnel who have no active teaching duties (e.g. headmasters, headmistresses or principals who do not teach) and persons who work occasionally or in a voluntary capacity in educational institutions.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.PRE.TCHR.FE.ZS\",\"Percentage of teachers in pre-primary education who are female (%)\",\"Number of female teachers at the pre-primary level expressed as a percentage of the total number of teachers (male and female) at the pre-primary level in a given school year. Teachers are persons employed full time or part time in an official capacity to guide and direct the learning experience of pupils and students, irrespective of their qualifications or the delivery mechanism, i.e. face-to-face and/or at a distance. This definition excludes educational personnel who have no active teaching duties (e.g. headmasters, headmistresses or principals who do not teach) and persons who work occasionally or in a voluntary capacity in educational institutions.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.PRM.AGES\",\"Official entrance age to primary education (years)\",\"Age at which students would enter primary education, assuming they had started at the official entrance age for the lowest level of education, had studied full-time throughout and had progressed through the system without repeating or skipping a grade.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.PRM.CMPL.FE.ZS\",\"Primary completion rate, female, based on completers\",\"Primary completion rate is the percentage of students completing the last year of primary school. The rate based on completers is calculated by taking the total number of completers in the last grade of primary school divided by the total number of children of official graduation age.\",\"Education Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRM.CMPL.MA.ZS\",\"Primary completion rate, male, based on completers\",\"Primary completion rate is the percentage of students completing the last year of primary school. The rate based on completers is calculated by taking the total number of completers in the last grade of primary school divided by the total number of children of official graduation age.\",\"Education Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRM.CMPL.ZS\",\"Primary completion rate, total, based on completers\",\"Primary completion rate is the percentage of students completing the last year of primary school. The rate based on completers is calculated by taking the total number of completers in the last grade of primary school divided by the total number of children of official graduation age.\",\"Education Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRM.CMPT.FE.ZS\",\"Primary completion rate, female (% of relevant age group)\",\"Primary completion rate, or gross intake ratio to the last grade of primary education, is the number of new entrants (enrollments minus repeaters) in the last grade of primary education, regardless of age, divided by the population at the entrance age for the last grade of primary education. Data limitations preclude adjusting for students who drop out during the final year of primary education.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRM.CMPT.MA.ZS\",\"Primary completion rate, male (% of relevant age group)\",\"Primary completion rate, or gross intake ratio to the last grade of primary education, is the number of new entrants (enrollments minus repeaters) in the last grade of primary education, regardless of age, divided by the population at the entrance age for the last grade of primary education. Data limitations preclude adjusting for students who drop out during the final year of primary education.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRM.CMPT.ZS\",\"Primary completion rate, total (% of relevant age group)\",\"Primary completion rate, or gross intake ratio to the last grade of primary education, is the number of new entrants (enrollments minus repeaters) in the last grade of primary education, regardless of age, divided by the population at the entrance age for the last grade of primary education. Data limitations preclude adjusting for students who drop out during the final year of primary education.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRM.CMPT.ZS.GL\",\"Primary completion rate, total (% of relevant age group), path to goal\",\"This indicator is created for the use of DDP chart. Values are linear growth \\\"path\\\" to achieving the goal by 2015, given the initial value around 1990.\",\"Millennium Development Goals\",\"World Bank staff estimates\"\n\"SE.PRM.CUAT.FE.ZS\",\"Educational attainment, at least completed primary, population 25+ years, female (%) (cumulative)\",\"The percentage of population ages 25 and over that attained or completed primary education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRM.CUAT.MA.ZS\",\"Educational attainment, at least completed primary, population 25+ years, male (%) (cumulative)\",\"The percentage of population ages 25 and over that attained or completed primary education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRM.CUAT.ZS\",\"Educational attainment, at least completed primary, population 25+ years, total (%) (cumulative)\",\"The percentage of population ages 25 and over that attained or completed primary education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRM.DROP.FE.ZS\",\"Cumulative drop-out rate to the last grade of primary education, female (%)\",\"Proportion of female pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Cumulative dropout rate in primary education is calculated by subtracting the survival rate from 100 at a given grade.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.PRM.DROP.MA.ZS\",\"Cumulative drop-out rate to the last grade of primary education, male (%)\",\"Proportion of male pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Cumulative dropout rate in primary education is calculated by subtracting the survival rate from 100 at a given grade.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.PRM.DROP.ZS\",\"Cumulative drop-out rate to the last grade of primary education, both sexes (%)\",\"Proportion of pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Cumulative dropout rate in primary education is calculated by subtracting the survival rate from 100 at a given grade.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.PRM.DURS\",\"Theoretical duration of primary education (years)\",\"Number of grades (years) in primary education.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.PRM.ENRL\",\"Enrolment in primary education, both sexes (number)\",\"Total number of students enrolled in public and private primary education institutions regardless of age.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.PRM.ENRL.FE\",\"Enrolment in primary education, female (number)\",\"Total number of female students enrolled in public and private primary education institutions regardless of age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.PRM.ENRL.FE.ZS\",\"Primary education, pupils (% female)\",\"Female pupils as a percentage of total pupils at primary level include enrollments in public and private schools.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRM.ENRL.TC.ZS\",\"Pupil-teacher ratio in primary education (headcount basis)\",\"Primary school pupil-teacher ratio is the average number of pupils per teacher in primary school.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.PRM.ENRR\",\"Gross enrollment ratio, primary, both sexes (%)\",\"Total enrollment in primary education, regardless of age, expressed as a percentage of the population of official primary education age. GER can exceed 100% due to the inclusion of over-aged and under-aged students because of early or late school entrance and grade repetition.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.PRM.ENRR.FE\",\"School enrollment, primary, female (% gross)\",\"Gross enrollment ratio is the ratio of total enrollment, regardless of age, to the population of the age group that officially corresponds to the level of education shown. Primary education provides children with basic reading, writing, and mathematics skills along with an elementary understanding of such subjects as history, geography, natural science, social science, art, and music.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRM.ENRR.MA\",\"School enrollment, primary, male (% gross)\",\"Gross enrollment ratio is the ratio of total enrollment, regardless of age, to the population of the age group that officially corresponds to the level of education shown. Primary education provides children with basic reading, writing, and mathematics skills along with an elementary understanding of such subjects as history, geography, natural science, social science, art, and music.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRM.GINT.FE.ZS\",\"Gross intake ratio to Grade 1 of primary education, female (%)\",\"Total number of new female entrants in the first grade of primary education, regardless of age, expressed as a percentage of the population at the official primary school-entrance age. A high GIR indicates a high degree of access to primary education. As this calculation includes all new entrants in Grade 1 (regardless of age), the ratio can exceed 100% due to over-aged and under-aged children entering primary school for the first time.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.PRM.GINT.MA.ZS\",\"Gross intake ratio to Grade 1 of primary education, male (%)\",\"Total number of new male entrants in the first grade of primary education, regardless of age, expressed as a percentage of the population at the official primary school-entrance age. A high GIR indicates a high degree of access to primary education. As this calculation includes all new entrants in Grade 1 (regardless of age), the ratio can exceed 100% due to over-aged and under-aged children entering primary school for the first time.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.PRM.GINT.ZS\",\"Gross intake ratio to Grade 1 of primary education, both sexes (%)\",\"Total number of new entrants in the first grade of primary education, regardless of age, expressed as a percentage of the population at the official primary school-entrance age. A high GIR indicates a high degree of access to primary education. As this calculation includes all new entrants in Grade 1 (regardless of age), the ratio can exceed 100% due to over-aged and under-aged children entering primary school for the first time.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.PRM.HIAT.FE.ZS\",\"Educational attainment, completed primary, population 25+ years, female (%)\",\"The percentage of population ages 25 and over that attained or completed primary education as the highest level of education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRM.HIAT.MA.ZS\",\"Educational attainment, completed primary, population 25+ years, male (%)\",\"The percentage of population ages 25 and over that attained or completed primary education as the highest level of education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRM.HIAT.ZS\",\"Educational attainment, completed primary, population 25+ years, total (%)\",\"The percentage of population ages 25 and over that attained or completed primary education as the highest level of education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRM.NENR\",\"Net enrolment rate, primary, both sexes (%)\",\"Total number of students in the theoretical age group for primary education enrolled in that level, expressed as a percentage of the total population in that age group. Divide the number of students enrolled who are of the official age group for primary education by the population for the same age group and multiply the result by 100. NER at each level of education should be based on enrolment of the relevant age group in all types of schools and education institutions, including public, private and all other institutions that provide organized educational programmes. A high NER denotes a high degree of coverage for the official school-age population. The theoretical maximum value is 100%. Increasing trends can be considered as reflecting improving coverage at the specified level of education. When the NER is compared with the GER, the difference between the two highlights the incidence of under-aged and over-aged enrolment. If the NER is below 100%, then the complement, i.e. the difference with 100%, provides a measure of the proportion of children not enrolled at the specified level of education. However, since some of these children/youth could be enrolled at other levels of education, this difference should in no way be considered as indicating the percentage of students not enrolled. To measure universal primary education, for example, adjusted primary NER is calculated on the basis of the percentage of children in the official primary school age range who are enrolled in either primary or secondary education. A more precise complementary indicator is the Age-specific enrolment ratio (ASER) which shows the participation in education of the population of each particular age, regardless of the level of education.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.PRM.NENR.FE\",\"School enrollment, primary, female (% net)\",\"Net enrollment rate is the ratio of children of official school age who are enrolled in school to the population of the corresponding official school age. Primary education provides children with basic reading, writing, and mathematics skills along with an elementary understanding of such subjects as history, geography, natural science, social science, art, and music.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRM.NENR.MA\",\"School enrollment, primary, male (% net)\",\"Net enrollment rate is the ratio of children of official school age who are enrolled in school to the population of the corresponding official school age. Primary education provides children with basic reading, writing, and mathematics skills along with an elementary understanding of such subjects as history, geography, natural science, social science, art, and music.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRM.NENR.ZS\",\"Net Enrollment Ratio: Primary (in %)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, National Social Economic Survey (SUSENAS)\"\n\"SE.PRM.NINT.FE.ZS\",\"Net intake rate in grade 1, female (% of official school-age population)\",\"Net intake rate in grade 1 is the number of new entrants in the first grade of primary education who are of official primary school entrance age, expressed as a percentage of the population of the corresponding age.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRM.NINT.MA.ZS\",\"Net intake rate in grade 1, male (% of official school-age population)\",\"Net intake rate in grade 1 is the number of new entrants in the first grade of primary education who are of official primary school entrance age, expressed as a percentage of the population of the corresponding age.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRM.NINT.ZS\",\"Net intake rate to Grade 1 of primary education, both sexes (%)\",\"Number of new entrants in the first grade of primary education who are of the official primary school-entrance age, expressed as a percentage of the population of the same age.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.PRM.OENR.FE.ZS\",\"Over-age students, primary, female (% of female enrollment)\",\"Over-age students are the percentage of those enrolled who are older than the official school-age range for primary education.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRM.OENR.MA.ZS\",\"Over-age students, primary, male (% of male enrollment)\",\"Over-age students are the percentage of those enrolled who are older than the official school-age range for primary education.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRM.OENR.ZS\",\"Over-age students, primary (% of enrollment)\",\"Over-age students are the percentage of those enrolled who are older than the official school-age range for primary education.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRM.PRIV.ZS\",\"Percentage of enrolment in primary education in private institutions (%)\",\"Total number of students in primary education enrolled in institutions that are not operated by a public authority but controlled and managed, whether for profit or not, by a private body (e.g., non-governmental organisation, religious body, special interest group, foundation or business enterprise), expressed as a percentage of total number of students enrolled in primary education.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.PRM.PRS5.FE.ZS\",\"Persistence to grade 5, female (% of cohort)\",\"Persistence to grade 5 (percentage of cohort reaching grade 5) is the share of children enrolled in the first grade of primary school who eventually reach grade 5. The estimate is based on the reconstructed cohort method.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRM.PRS5.MA.ZS\",\"Persistence to grade 5, male (% of cohort)\",\"Persistence to grade 5 (percentage of cohort reaching grade 5) is the share of children enrolled in the first grade of primary school who eventually reach grade 5. The estimate is based on the reconstructed cohort method.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRM.PRS5.ZS\",\"Survival rate to Grade 5 of primary education, both sexes (%)\",\"Percentage of a cohort of students enrolled in the first grade of primary education in a given school year who are expected to reach grade 5, regardless of repetition. Divide the total number of students belonging to a school-cohort who reached each successive grade of primary education by the number of students in the school-cohort i.e. those originally enrolled in the first grade of primary education, and multiply the result by 100. The survival rate is calculated on the basis of the reconstructed cohort method, which uses data on enrolment and repeaters for two consecutive years.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.PRM.PRSL.FE.ZS\",\"Survival rate to the last grade of primary education, female (%)\",\"Percentage of a cohort of female students enrolled in the first grade of primary education in a given school year who are expected to reach the last grade of primary education, regardless of repetition. Divide the total number of students belonging to a school-cohort who reached each successive grade of primary education by the number of students in the school-cohort i.e. those originally enrolled in the first grade of primary education, and multiply the result by 100. The survival rate is calculated on the basis of the reconstructed cohort method, which uses data on enrolment and repeaters for two consecutive years.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.PRM.PRSL.MA.ZS\",\"Survival rate to the last grade of primary education, male (%)\",\"Percentage of a cohort of male students enrolled in the first grade of primary education in a given school year who are expected to reach the last grade of primary education, regardless of repetition. Divide the total number of students belonging to a school-cohort who reached each successive grade of primary education by the number of students in the school-cohort i.e. those originally enrolled in the first grade of primary education, and multiply the result by 100. The survival rate is calculated on the basis of the reconstructed cohort method, which uses data on enrolment and repeaters for two consecutive years.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.PRM.PRSL.ZS\",\"Survival rate to the last grade of primary education, both sexes (%)\",\"Percentage of a cohort of students enrolled in the first grade of primary education in a given school year who are expected to reach the last grade of primary education, regardless of repetition. Divide the total number of students belonging to a school-cohort who reached each successive grade of primary education by the number of students in the school-cohort i.e. those originally enrolled in the first grade of primary education, and multiply the result by 100. The survival rate is calculated on the basis of the reconstructed cohort method, which uses data on enrolment and repeaters for two consecutive years.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.PRM.REPT.FE.ZS\",\"Percentage of repeaters in primary education, all grades, female (%)\",\"Total number of female students enrolled in the same grade as in the previous year, expressed as a percentage of all female students enrolled in primary school. It is calculated by dividing the sum of female repeaters in all grades of primary education by the total female enrolment of primary education and multiplying the result by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.PRM.REPT.MA.ZS\",\"Percentage of repeaters in primary education, all grades, male (%)\",\"Total number of male students enrolled in the same grade as in the previous year, expressed as a percentage of all male students enrolled in primary school. It is calculated by dividing the sum of male repeaters in all grades of primary education by the total male enrolment of primary education and multiplying the result by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.PRM.REPT.ZS\",\"Percentage of repeaters in primary education, all grades, both sexes (%)\",\"Total number of students enrolled in the same grade as in the previous year, expressed as a percentage of all students enrolled in primary school. It is calculated by dividing the sum of repeaters in all grades of primary education by the total enrolment of primary education and multiplying the result by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.PRM.TCAQ.FE.ZS\",\"Percentage of female teachers in primary education who are trained, female (%)\",\"Trained teachers in primary education are the percentage of primary school teachers who have received the minimum organized teacher training (pre-service or in-service) required for teaching in a given country.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRM.TCAQ.MA.ZS\",\"Percentage of male teachers in primary education who are trained, male (%)\",\"Trained teachers in primary education are the percentage of primary school teachers who have received the minimum organized teacher training (pre-service or in-service) required for teaching in a given country.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRM.TCAQ.ZS\",\"Percentage of teachers in primary education who are trained, both sexes (%)\",\"Trained teachers in primary education are the percentage of primary school teachers who have received the minimum organized teacher training (pre-service or in-service) required for teaching in a given country.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRM.TCHR\",\"Teachers in primary education, both sexes (number)\",\"Total number of teachers in public and private primary education institutions. Teachers are persons employed full time or part time in an official capacity to guide and direct the learning experience of pupils and students, irrespective of their qualifications or the delivery mechanism, i.e. face-to-face and/or at a distance. This definition excludes educational personnel who have no active teaching duties (e.g. headmasters, headmistresses or principals who do not teach) and persons who work occasionally or in a voluntary capacity in educational institutions.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.PRM.TCHR.FE\",\"Teachers in primary education, female (number)\",\"Total number of female teachers in public and private primary education institutions. Teachers are persons employed full time or part time in an official capacity to guide and direct the learning experience of pupils and students, irrespective of their qualifications or the delivery mechanism, i.e. face-to-face and/or at a distance. This definition excludes educational personnel who have no active teaching duties (e.g. headmasters, headmistresses or principals who do not teach) and persons who work occasionally or in a voluntary capacity in educational institutions.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.PRM.TCHR.FE.ZS\",\"Primary education, teachers (% female)\",\"Female teachers as a percentage of total primary education teachers includes full-time and part-time teachers.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRM.TENR\",\"Adjusted net enrolment rate, primary, both sexes (%)\",\"Total number of students of the official primary school age group who are enrolled at primary or secondary education, expressed as a percentage of the corresponding population. Divide the total number of students in the official primary school age range who are enrolled in primary or secondary education by the population of the same age group and multiply the result by 100. NERA should be based on total enrolment of the official primary school participation age group in primary and secondary education for all types of schools and education institutions, including public, private and all other institutions that provide organized educational programmes (pre-primary education must be excluded). NERA gives more precise measure of the participation of the official primary school age population to the education system (excluding pre-primary education). It reflects the actual level of achievement of the Universal Primary Education (UPE) goal. In fact, while the Net enrolment rate (NER) shows the coverage of pupils in the official primary school age group in the primary education level only, the NERA extends the measure to those of the official primary school age range who have reached secondary education because they might access primary education earlier than the official entrance or they might skip some grades due to their performance. Increasing NERA might mirror improving participation of children in the official primary school age, the decrease of the target population or both. A value of 100% indicates theoretically that the country has accomplished the UPE goal. However, this condition is not sufficient for UPE due to, for example, a high repetition rate, which might lead pupils to dropout after primary school age without completing primary education. The difference between NERA and NER provides a measure of the proportion of children in the official primary age group who are enrolled in secondary education.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.PRM.TENR.FE\",\"Adjusted net enrollment rate, primary, female (% of primary school age children)\",\"Adjusted net enrollment is the number of pupils of the school-age group for primary education, enrolled either in primary or secondary education, expressed as a percentage of the total population in that age group.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRM.TENR.MA\",\"Adjusted net enrollment rate, primary, male (% of primary school age children)\",\"Adjusted net enrollment is the number of pupils of the school-age group for primary education, enrolled either in primary or secondary education, expressed as a percentage of the total population in that age group.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRM.UNER\",\"Out-of-school children of primary school age, both sexes (number)\",\"Children in the official primary school age range who are not enrolled in either primary or secondary schools.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.PRM.UNER.FE\",\"Children out of school, primary, female\",\"Children out of school are the number of primary-school-age children not enrolled in primary or secondary school.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRM.UNER.FE.ZS\",\"Children out of school, female (% of female primary school age)\",\"Children out of school are the percentage of primary-school-age children who are not enrolled in primary or secondary school. Children in the official primary age group that are in preprimary education should be considered out of school.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRM.UNER.MA\",\"Children out of school, primary, male\",\"Children out of school are the number of primary-school-age children not enrolled in primary or secondary school.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRM.UNER.MA.ZS\",\"Children out of school, male (% of male primary school age)\",\"Children out of school are the percentage of primary-school-age children who are not enrolled in primary or secondary school. Children in the official primary age group that are in preprimary education should be considered out of school.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.PRM.UNER.ZS\",\"Children out of school (% of primary school age)\",\"Children out of school are the percentage of primary-school-age children who are not enrolled in primary or secondary school. Children in the official primary age group that are in preprimary education should be considered out of school.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SCH.LIFE\",\"School life expectancy, primary to tertiary, both sexes (years)\",\"Number of years a person of school entrance age can expect to spend within the specified level of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.\",\"Africa Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.SCH.LIFE.FE\",\"Expected years of schooling, female\",\"Expected years of schooling is the number of years a child of school entrance age is expect to spend at school, or university, including years spent on repetition. It is the sum of the age-specific enrolment ratios for primary, secondary, post-secondary non-tertiary and tertiary education.\",\"Africa Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SCH.LIFE.MA\",\"Expected years of schooling, male\",\"Expected years of schooling is the number of years a child of school entrance age is expect to spend at school, or university, including years spent on repetition. It is the sum of the age-specific enrolment ratios for primary, secondary, post-secondary non-tertiary and tertiary education.\",\"Africa Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SCHL.JRSEC\",\"Number of schools at Junior Secondary Level\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Village Census (PODES)\"\n\"SE.SCHL.PRM\",\"Number of schools at Primary Level\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Village Census (PODES)\"\n\"SE.SCHL.SRSEC\",\"Number of schools at Senior Secondary level\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Village Census (PODES)\"\n\"SE.SEC.AGES\",\"Official entrance age to lower secondary education (years)\",\"Age at which students would enter lower secondary education, assuming they had started at the official entrance age for the lowest level of education, had studied full-time throughout and had progressed through the system without repeating or skipping a grade.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.SEC.CMPT.LO.FE.ZS\",\"Lower secondary completion rate, female (% of relevant age group)\",\"Lower secondary education completion rate is measured as the gross intake ratio to the last grade of lower secondary education (general and pre-vocational). It is calculated as the number of new entrants in the last grade of lower secondary education, regardless of age, divided by the population at the entrance age for the last grade of lower secondary education.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.CMPT.LO.MA.ZS\",\"Lower secondary completion rate, male (% of relevant age group)\",\"Lower secondary education completion rate is measured as the gross intake ratio to the last grade of lower secondary education (general and pre-vocational). It is calculated as the number of new entrants in the last grade of lower secondary education, regardless of age, divided by the population at the entrance age for the last grade of lower secondary education.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.CMPT.LO.ZS\",\"Lower secondary completion rate, total (% of relevant age group)\",\"Lower secondary education completion rate is measured as the gross intake ratio to the last grade of lower secondary education (general and pre-vocational). It is calculated as the number of new entrants in the last grade of lower secondary education, regardless of age, divided by the population at the entrance age for the last grade of lower secondary education.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.CUAT.LO.FE.ZS\",\"Educational attainment, at least competed lower secondary, population 25+, female (%) (cumulative)\",\"The percentage of population ages 25 and over that attained or completed lower secondary education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.CUAT.LO.MA.ZS\",\"Educational attainment, at least competed lower secondary, population 25+, male (%) (cumulative)\",\"The percentage of population ages 25 and over that attained or completed lower secondary education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.CUAT.LO.ZS\",\"Educational attainment, at least competed lower secondary, population 25+, total (%) (cumulative)\",\"The percentage of population ages 25 and over that attained or completed lower secondary education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.CUAT.PO.FE.ZS\",\"Educational attainment, at least competed post-secondary, population 25+, female (%) (cumulative)\",\"The percentage of population ages 25 and over that attained or completed post-secondary non-tertiary education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.CUAT.PO.MA.ZS\",\"Educational attainment, at least competed post-secondary, population 25+, male (%) (cumulative)\",\"The percentage of population ages 25 and over that attained or completed post-secondary non-tertiary education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.CUAT.PO.ZS\",\"Educational attainment, at least competed post-secondary, population 25+, total (%) (cumulative)\",\"The percentage of population ages 25 and over that attained or completed post-secondary non-tertiary education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.CUAT.UP.FE.ZS\",\"Educational attainment, at least competed upper secondary, population 25+, female (%) (cumulative)\",\"The percentage of population ages 25 and over that attained or completed upper secondary education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.CUAT.UP.MA.ZS\",\"Educational attainment, at least competed upper secondary, population 25+, male (%) (cumulative)\",\"The percentage of population ages 25 and over that attained or completed upper secondary education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.CUAT.UP.ZS\",\"Educational attainment, at least competed upper secondary, population 25+, total (%) (cumulative)\",\"The percentage of population ages 25 and over that attained or completed upper secondary education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.DURS\",\"Theoretical duration of secondary education (years)\",\"Number of grades (years) in secondary education (ISCED 2 and 3).\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.SEC.DURS.LO\",\"Theoretical duration of lower secondary education (years)\",\"Number of grades (years) in lower secondary education.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.SEC.DURS.UP\",\"Theoretical duration of upper secondary education (years)\",\"Number of grades (years) in upper secondary education.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.SEC.ENRL\",\"Enrolment in secondary education, both sexes (number)\",\"Total number of students enrolled at public and private secondary education institutions regardless of age.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.SEC.ENRL.FE\",\"Enrolment in secondary education, female (number)\",\"Total number of female students enrolled at public and private secondary education institutions regardless of age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.SEC.ENRL.FE.VO.ZS\",\"Percentage of female students in secondary education enrolled in vocational programmes, female (%)\",\"Total number of female students enrolled in vocational programmes at the secondary education level, expressed as a percentage of the total number of female students enrolled in all programmes (vocational and general) at the secondary level. Vocational education is designed for learners to acquire the knowledge, skills and competencies specific to a particular occupation or trade or class of occupations or trades. Vocational education may have work-based components (e.g. apprenticeships). Successful completion of such programmes leads to labour-market relevant vocational qualifications acknowledged as occupationally-oriented by the relevant national authorities and/or the labour market.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.SEC.ENRL.FE.ZS\",\"Secondary education, pupils (% female)\",\"Female pupils as a percentage of total pupils at secondary level includes enrollments in public and private schools.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.ENRL.GC\",\"Enrolment in secondary general, both sexes (number)\",\"Total number of students enrolled in general programmes at public and private secondary education institutions regardless of age.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.SEC.ENRL.GC.FE\",\"Enrolment in secondary general, female (number)\",\"Total number of female students enrolled in general programmes at public and private secondary education institutions regardless of age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.SEC.ENRL.GC.FE.ZS\",\"Percentage of students in secondary general education who are female (%)\",\"Number of female students enrolled in general programmes at the secondary education level expressed as a percentage of the total number of students (male and female) enrolled in general programmes at the secondary education level in a given school year.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.SEC.ENRL.LO.TC.ZS\",\"Pupil-teacher ratio, lower secondary\",\"Lower secondary school pupil-teacher ratio is the average number of pupils per teacher in lower secondary school.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.ENRL.MA.VO.ZS\",\"Percentage of male students in secondary education enrolled in vocational programmes, male (%)\",\"Total number of male students enrolled in vocational programmes at the secondary education level, expressed as a percentage of the total number of male students enrolled in all programmes (vocational and general) at the secondary level. Vocational education is designed for learners to acquire the knowledge, skills and competencies specific to a particular occupation or trade or class of occupations or trades. Vocational education may have work-based components (e.g. apprenticeships). Successful completion of such programmes leads to labour-market relevant vocational qualifications acknowledged as occupationally-oriented by the relevant national authorities and/or the labour market.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.SEC.ENRL.TC.ZS\",\"Pupil-teacher ratio in secondary education (headcount basis)\",\"Average number of pupils per teacher at a given level of education, based on headcounts of both pupils and teachers. Divide the total number of pupils enrolled at the specified level of education by the number of teachers at the same level. In computing and interpreting this indicator, one should take into account the existence of part-time teaching, school-shifts, multi-grade classes and other practices that may affect the precision and meaningfulness of pupil-teacher ratios. When feasible, the number of part-time teachers is converted to ‘full-time equivalent’ teachers; a double-shift teacher is counted twice, etc. Teachers are defined as persons whose professional activity involves the transmitting of knowledge, attitudes and skills that are stipulated in a formal curriculum programme to students enrolled in a formal educational institution.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.SEC.ENRL.UP.TC.ZS\",\"Pupil-teacher ratio, upper secondary\",\"Upper secondary school pupil-teacher ratio is the average number of pupils per teacher in upper secondary school.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.ENRL.VO\",\"Enrolment in secondary vocational, both sexes (number)\",\"Total number of students enrolled in vocational programmes at public and private secondary education institutions. Vocational education is designed for learners to acquire the knowledge, skills and competencies specific to a particular occupation or trade or class of occupations or trades. Vocational education may have work-based components (e.g. apprenticeships). Successful completion of such programmes leads to labour-market relevant vocational qualifications acknowledged as occupationally-oriented by the relevant national authorities and/or the labour market.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.SEC.ENRL.VO.FE\",\"Enrolment in secondary vocational, female (number)\",\"Total number of female students enrolled in vocational programmes at public and private secondary education institutions. Vocational education is designed for learners to acquire the knowledge, skills and competencies specific to a particular occupation or trade or class of occupations or trades. Vocational education may have work-based components (e.g. apprenticeships). Successful completion of such programmes leads to labour-market relevant vocational qualifications acknowledged as occupationally-oriented by the relevant national authorities and/or the labour market.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.SEC.ENRL.VO.FE.ZS\",\"Percentage of students in secondary vocational education who are female (%)\",\"Number of female students enrolled in vocational programmes at the secondary education level expressed as a percentage of the total number of students (male and female) enrolled in vocational programmes at the secondary education level in a given school year.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.SEC.ENRL.VO.ZS\",\"Percentage of students in secondary education enrolled in vocational programmes, both sexes (%)\",\"Total number of students enrolled in vocational programmes at the secondary education level, expressed as a percentage of the total number of students enrolled in all programmes (vocational and general) at the secondary level. Vocational education is designed for learners to acquire the knowledge, skills and competencies specific to a particular occupation or trade or class of occupations or trades. Vocational education may have work-based components (e.g. apprenticeships). Successful completion of such programmes leads to labour-market relevant vocational qualifications acknowledged as occupationally-oriented by the relevant national authorities and/or the labour market.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.SEC.ENRR\",\"Gross enrolment ratio, secondary, both sexes (%)\",\"Total enrollment in secondary education, regardless of age, expressed as a percentage of the population of official secondary education age. GER can exceed 100% due to the inclusion of over-aged and under-aged students because of early or late school entrance and grade repetition.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.SEC.ENRR.FE\",\"School enrollment, secondary, female (% gross)\",\"Gross enrollment ratio is the ratio of total enrollment, regardless of age, to the population of the age group that officially corresponds to the level of education shown. Secondary education completes the provision of basic education that began at the primary level, and aims at laying the foundations for lifelong learning and human development, by offering more subject- or skill-oriented instruction using more specialized teachers.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.ENRR.LO\",\"Gross enrolment ratio, lower secondary, both sexes (%)\",\"Total enrollment in lower secondary education, regardless of age, expressed as a percentage of the total population of official lower secondary education age. GER can exceed 100% due to the inclusion of over-aged and under-aged students because of early or late school entrance and grade repetition.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.SEC.ENRR.LO.FE\",\"Gross enrolment ratio, lower secondary, female (%)\",\"Total female enrollment in lower secondary education, regardless of age, expressed as a percentage of the total female population of official lower secondary education age. GER can exceed 100% due to the inclusion of over-aged and under-aged students because of early or late school entrance and grade repetition.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.SEC.ENRR.LO.MA\",\"Gross enrolment ratio, lower secondary, male (%)\",\"Total male enrollment in lower secondary education, regardless of age, expressed as a percentage of the total male population of official lower secondary education age. GER can exceed 100% due to the inclusion of over-aged and under-aged students because of early or late school entrance and grade repetition.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.SEC.ENRR.MA\",\"School enrollment, secondary, male (% gross)\",\"Gross enrollment ratio is the ratio of total enrollment, regardless of age, to the population of the age group that officially corresponds to the level of education shown. Secondary education completes the provision of basic education that began at the primary level, and aims at laying the foundations for lifelong learning and human development, by offering more subject- or skill-oriented instruction using more specialized teachers.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.ENRR.UP\",\"Gross enrolment ratio, upper secondary, both sexes (%)\",\"Total enrollment in upper secondary education, regardless of age, expressed as a percentage of the total population of official upper secondary education age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.SEC.ENRR.UP.FE\",\"Gross enrolment ratio, upper secondary, female (%)\",\"Total female enrollment in upper secondary education, regardless of age, expressed as a percentage of the female population of official upper secondary education age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.SEC.ENRR.UP.MA\",\"Gross enrolment ratio, upper secondary, male (%)\",\"Total male enrollment in upper secondary education, regardless of age, expressed as a percentage of the male population of official upper secondary education age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.SEC.HIAT.LO.FE.ZS\",\"Educational attainment, completed lower secondary, population 25+ years, female (%)\",\"The percentage of population ages 25 and over that attained or completed lower secondary education as the highest level of education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.HIAT.LO.MA.ZS\",\"Educational attainment, completed lower secondary, population 25+ years, male (%)\",\"The percentage of population ages 25 and over that attained or completed lower secondary education as the highest level of education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.HIAT.LO.ZS\",\"Educational attainment, completed lower secondary, population 25+ years, total (%)\",\"The percentage of population ages 25 and over that attained or completed lower secondary education as the highest level of education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.HIAT.PO.FE.ZS\",\"Educational attainment, completed post-secondary, population 25+ years, female (%)\",\"The percentage of population ages 25 and over that attained or completed post-secondary non-tertiary education as the highest level of education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.HIAT.PO.MA.ZS\",\"Educational attainment, completed post-secondary, population 25+ years, male (%)\",\"The percentage of population ages 25 and over that attained or completed post-secondary non-tertiary education as the highest level of education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.HIAT.PO.ZS\",\"Educational attainment, completed post-secondary, population 25+ years, total (%)\",\"The percentage of population ages 25 and over that attained or completed post-secondary non-tertiary education as the highest level of education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.HIAT.UP.FE.ZS\",\"Educational attainment, completed upper secondary, population 25+ years, female (%)\",\"The percentage of population ages 25 and over that attained or completed upper secondary education as the highest level of education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.HIAT.UP.MA.ZS\",\"Educational attainment, completed upper secondary, population 25+ years, male (%)\",\"The percentage of population ages 25 and over that attained or completed upper secondary education as the highest level of education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.HIAT.UP.ZS\",\"Educational attainment, completed upper secondary, population 25+ years, total (%)\",\"The percentage of population ages 25 and over that attained or completed upper secondary education as the highest level of education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.NENR\",\"Net enrolment rate, secondary, both sexes (%)\",\"Total number of students in the theoretical age group for secondary education enrolled in that level, expressed as a percentage of the total population in that age group. Divide the number of students enrolled who are of the official age group for secondary education by the population for the same age group and multiply the result by 100. NER at each level of education should be based on enrolment of the relevant age group in all types of schools and education institutions, including public, private and all other institutions that provide organized educational programmes.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.SEC.NENR.FE\",\"School enrollment, secondary, female (% net)\",\"Net enrollment rate is the ratio of children of official school age who are enrolled in school to the population of the corresponding official school age. Secondary education completes the provision of basic education that began at the primary level, and aims at laying the foundations for lifelong learning and human development, by offering more subject- or skill-oriented instruction using more specialized teachers.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.NENR.MA\",\"School enrollment, secondary, male (% net)\",\"Net enrollment rate is the ratio of children of official school age who are enrolled in school to the population of the corresponding official school age. Secondary education completes the provision of basic education that began at the primary level, and aims at laying the foundations for lifelong learning and human development, by offering more subject- or skill-oriented instruction using more specialized teachers.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.PRIV.ZS\",\"Percentage of enrolment in secondary education in private institutions (%)\",\"Total number of students in secondary education enrolled in institutions that are not operated by a public authority but controlled and managed, whether for profit or not, by a private body (e.g., non-governmental organisation, religious body, special interest group, foundation or business enterprise), expressed as a percentage of total number of students enrolled in secondary education.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.SEC.PROG.FE.ZS\",\"Progression to secondary school, female (%)\",\"Progression to secondary school refers to the number of new entrants to the first grade of secondary school in a given year as a percentage of the number of students enrolled in the final grade of primary school in the previous year (minus the number of repeaters from the last grade of primary education in the given year).\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.PROG.MA.ZS\",\"Progression to secondary school, male (%)\",\"Progression to secondary school refers to the number of new entrants to the first grade of secondary school in a given year as a percentage of the number of students enrolled in the final grade of primary school in the previous year (minus the number of repeaters from the last grade of primary education in the given year).\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.PROG.ZS\",\"Effective transition rate from primary to lower secondary general education, both sexes (%)\\r\\n\",\"Number of students admitted to the first grade of a higher level of education in a given year, expressed as a percentage of the number of students enrolled in the final grade of the lower level of education in the previous year. Divide the number of new entrants in the first grade of the specified higher cycle or level of education by the number of pupils who were enrolled in the final grade of the preceding cycle or level of education in the previous school year, and multiply by 100. High transition rates indicate a high level of access or transition from one level of education to the next. They also reflect the intake capacity of the next level of education. Inversely, low transition rates can signal problems in the bridging between two cycles or levels of education, due to either deficiencies in the examination system, or inadequate admission capacity in the higher cycle or level of education, or both. This indicator can be distorted by incorrect distinction between new entrants and repeaters, especially in the first grade of the specified higher level of education. Students who interrupted their studies for one or more years after having completed the lower level of education, together with the migrant students, could also affect the quality of this indicator.\\r\\n\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.SEC.TCAQ.FE.ZS\",\"Percentage of female teachers in secondary education who are trained, female (%)\",\"Number of female teachers who have received the minimum organized teacher training (pre-service or in-service) required for teaching at the secondary level in the given country, expressed as a percentage of the total number of female teachers at the secondary level.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.SEC.TCAQ.LO.FE.ZS\",\"Trained teachers in lower secondary education, female (% of female teachers)\",\"Trained teachers in lower secondary education are the percentage of lower secondary school teachers who have received the minimum organized teacher training (pre-service or in-service) required for teaching in a given country.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.TCAQ.LO.MA.ZS\",\"Trained teachers in lower secondary education, male (% of male teachers)\",\"Trained teachers in lower secondary education are the percentage of lower secondary school teachers who have received the minimum organized teacher training (pre-service or in-service) required for teaching in a given country.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.TCAQ.LO.ZS\",\"Trained teachers in lower secondary education (% of total teachers)\",\"Trained teachers in lower secondary education are the percentage of lower secondary school teachers who have received the minimum organized teacher training (pre-service or in-service) required for teaching in a given country.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.TCAQ.MA.ZS\",\"Percentage of male teachers in secondary education who are trained, male (%)\",\"Number of male teachers who have received the minimum organized teacher training (pre-service or in-service) required for teaching at the secondary level in the given country, expressed as a percentage of the total number of male teachers at the secondary level.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.SEC.TCAQ.MA.ZS\",\"Percentage of male teachers in secondary education who are trained, male (%)\",\"Number of male teachers who have received the minimum organized teacher training (pre-service or in-service) required for teaching at the secondary level in the given country, expressed as a percentage of the total number of male teachers at the secondary level.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.SEC.TCAQ.UP.FE.ZS\",\"Trained teachers in upper secondary education, female (% of female teachers)\",\"Trained teachers in upper secondary education are the percentage of upper secondary school teachers who have received the minimum organized teacher training (pre-service or in-service) required for teaching in a given country.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.TCAQ.UP.MA.ZS\",\"Trained teachers in upper secondary education, male (% of male teachers)\",\"Trained teachers in upper secondary education are the percentage of upper secondary school teachers who have received the minimum organized teacher training (pre-service or in-service) required for teaching in a given country.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.TCAQ.UP.ZS\",\"Trained teachers in upper secondary education (% of total teachers)\",\"Trained teachers in upper secondary education are the percentage of upper secondary school teachers who have received the minimum organized teacher training (pre-service or in-service) required for teaching in a given country.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.TCAQ.ZS\",\"Percentage of teachers in secondary education who are trained, both sexes (%)\",\"Number of teachers who have received the minimum organized teacher training (pre-service or in-service) required for teaching at the secondary level in the given country, expressed as a percentage of the total number of teachers at the secondary level.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.SEC.TCHR\",\"Teachers in secondary education, both sexes (number)\",\"Total number of teachers in public and private secondary education institutions (ISCED 2 and 3). Teachers are persons employed full time or part time in an official capacity to guide and direct the learning experience of pupils and students, irrespective of their qualifications or the delivery mechanism, i.e. face-to-face and/or at a distance. This definition excludes educational personnel who have no active teaching duties (e.g. headmasters, headmistresses or principals who do not teach) and persons who work occasionally or in a voluntary capacity in educational institutions.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.SEC.TCHR.FE\",\"Teachers in secondary education, female (number)\",\"Total number of female teachers in public and private secondary education institutions (ISCED 2 and 3). Teachers are persons employed full time or part time in an official capacity to guide and direct the learning experience of pupils and students, irrespective of their qualifications or the delivery mechanism, i.e. face-to-face and/or at a distance. This definition excludes educational personnel who have no active teaching duties (e.g. headmasters, headmistresses or principals who do not teach) and persons who work occasionally or in a voluntary capacity in educational institutions.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.SEC.TCHR.FE.ZS\",\"Secondary education, teachers (% female)\",\"Female teachers as a percentage of total secondary education teachers includes full-time and part-time teachers.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.UNER.LO.FE.ZS\",\"Adolescents out of school, female (% of female lower secondary school age)\",\"Adolescents out of school are the percentage of lower secondary school age adolescents who are not enrolled in school.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.UNER.LO.MA.ZS\",\"Adolescents out of school, male (% of male lower secondary school age)\",\"Adolescents out of school are the percentage of lower secondary school age adolescents who are not enrolled in school.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SEC.UNER.LO.ZS\",\"Adolescents out of school (% of lower secondary school age)\",\"Adolescents out of school are the percentage of lower secondary school age adolescents who are not enrolled in school.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.SRSEC.NENR.ZS\",\"Net Enrollment Ratio: Senior Secondary (in %)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, National Social Economic Survey (SUSENAS)\"\n\"SE.STUD.JRSEC\",\"Number of Student: Junior Secondary Level (in number of people, 2009 data only)\",\"\",\"INDO-DAPOER\",\"Ministry of Education\"\n\"SE.STUD.PRM\",\"Number of Student: Primary Level (in number of people, 2009 data only)\",\"\",\"INDO-DAPOER\",\"Ministry of Education\"\n\"SE.STUD.SRSEC\",\"Number of Student: Senior Secondary Level (in number of people, 2009 data only)\",\"\",\"INDO-DAPOER\",\"Ministry of Education\"\n\"SE.TCHR.JRSEC\",\"Number of Teacher: Junior Secondary Level (in number of people, 2009 data only)\",\"\",\"INDO-DAPOER\",\"Ministry of Education\"\n\"SE.TCHR.PRM\",\"Number of Teacher: Primary Level (in number of people, 2009 data only)\",\"\",\"INDO-DAPOER\",\"Ministry of Education\"\n\"SE.TCHR.SRSEC\",\"Number of Teacher: Senior Secondary Level (in number of people, 2009 data only)\",\"\",\"INDO-DAPOER\",\"Ministry of Education\"\n\"SE.TER.CMPL.FE.ZS\",\"Gross graduation ratio, tertiary, first degree programmes (ISCED 6 and 7), female (%)\",\"Number of graduates from first degree programmes (at ISCED 6 and 7) expressed as a percentage of the population of the theoretical graduation age of the most common first degree programme.\",\"Education Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.CMPL.MA.ZS\",\"Gross graduation ratio, tertiary, first degree programmes (ISCED 6 and 7), male (%)\",\"Number of graduates from first degree programmes (at ISCED 6 and 7) expressed as a percentage of the population of the theoretical graduation age of the most common first degree programme.\",\"Education Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.CMPL.ZS\",\"Gross graduation ratio from first degree programmes (ISCED 6 and 7) in tertiary education, both sexes (%)\",\"Number of graduates from first degree programmes (at ISCED 6 and 7) expressed as a percentage of the population of the theoretical graduation age of the most common first degree programme.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.TER.CUAT.BA.FE.ZS\",\"Educational attainment, competed at least Bachelor's or equivalent, population 25+, female (%) (cumulative)\",\"The percentage of population ages 25 and over that attained or completed Bachelor's or equivalent.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.CUAT.BA.MA.ZS\",\"Educational attainment, competed at least Bachelor's or equivalent, population 25+, male (%) (cumulative)\",\"The percentage of population ages 25 and over that attained or completed Bachelor's or equivalent.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.CUAT.BA.ZS\",\"Educational attainment, competed at least Bachelor's or equivalent, population 25+, total (%) (cumulative)\",\"The percentage of population ages 25 and over that attained or completed Bachelor's or equivalent.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.CUAT.DO.FE.ZS\",\"Educational attainment, competed Doctoral or equivalent, population 25+, female (%) (cumulative)\",\"The percentage of population ages 25 and over that attained or completed Doctoral or equivalent.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.CUAT.DO.MA.ZS\",\"Educational attainment, competed Doctoral or equivalent, population 25+, male (%) (cumulative)\",\"The percentage of population ages 25 and over that attained or completed Doctoral or equivalent.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.CUAT.DO.ZS\",\"Educational attainment, competed Doctoral or equivalent, population 25+, total (%) (cumulative)\",\"The percentage of population ages 25 and over that attained or completed Doctoral or equivalent.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.CUAT.MS.FE.ZS\",\"Educational attainment, competed at least Master's or equivalent, population 25+, female (%) (cumulative)\",\"The percentage of population ages 25 and over that attained or completed Master's or equivalent.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.CUAT.MS.MA.ZS\",\"Educational attainment, competed at least Master's or equivalent, population 25+, male (%) (cumulative)\",\"The percentage of population ages 25 and over that attained or completed Master's or equivalent.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.CUAT.MS.ZS\",\"Educational attainment, competed at least Master's or equivalent, population 25+, total (%) (cumulative)\",\"The percentage of population ages 25 and over that attained or completed Master's or equivalent.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.CUAT.ST.FE.ZS\",\"Educational attainment, competed at least short-cycle tertiary, population 25+, female (%) (cumulative)\",\"The percentage of population ages 25 and over that attained or completed short-cycle tertiary education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.CUAT.ST.MA.ZS\",\"Educational attainment, competed at least short-cycle tertiary, population 25+, male (%) (cumulative)\",\"The percentage of population ages 25 and over that attained or completed short-cycle tertiary education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.CUAT.ST.ZS\",\"Educational attainment, competed at least short-cycle tertiary, population 25+, total (%) (cumulative)\",\"The percentage of population ages 25 and over that attained or completed short-cycle tertiary education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.ENRL\",\"Enrolment in tertiary education, all programmes, both sexes (number)\",\"The total number of students enrolled at public and private tertiary education institutions.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.TER.ENRL.FE\",\"Enrolment in tertiary education, all programmes, female (number)\",\"The total number of female students enrolled at public and private tertiary education institutions.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.TER.ENRL.FE.ZS\",\"Percentage of students in tertiary education who are female (%)\",\"Number of female students at the tertiary education level (ISCED 5 to 8) expressed as a percentage of the total number of students (male and female) at the tertiary education level (ISCED 5 to 8) in a given school year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.TER.ENRL.TC.ZS\",\"Pupil-teacher ratio, tertiary\",\"Tertiary school pupil-teacher ratio is the average number of pupils per teacher in tertiary school.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.ENRR\",\"Gross enrolment ratio, tertiary, both sexes (%)\",\"Total enrollment in tertiary education (ISCED 5 to 8), regardless of age, expressed as a percentage of the total population of the five-year age group following on from secondary school leaving.\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.TER.ENRR.FE\",\"School enrollment, tertiary, female (% gross)\",\"Gross enrollment ratio is the ratio of total enrollment, regardless of age, to the population of the age group that officially corresponds to the level of education shown. Tertiary education, whether or not to an advanced research qualification, normally requires, as a minimum condition of admission, the successful completion of education at the secondary level.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.ENRR.MA\",\"School enrollment, tertiary, male (% gross)\",\"Gross enrollment ratio is the ratio of total enrollment, regardless of age, to the population of the age group that officially corresponds to the level of education shown. Tertiary education, whether or not to an advanced research qualification, normally requires, as a minimum condition of admission, the successful completion of education at the secondary level.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.GRAD\",\"Graduates from tertiary education, both sexes (number)\",\"Total number of students successfully completing tertiary education programmes (ISCED 5 to 8) in public and private tertiary education institutions during the reference academic year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.TER.GRAD.AG.FE.ZS\",\"Percentage of female graduates from tertiary education graduating from Agriculture programmes, female (%)\",\"Share of all female tertiary graduates who completed agriculture programmes in the reference year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.TER.GRAD.AG.ZS\",\"Percentage of graduates from tertiary education graduating from Agriculture programmes, both sexes (%)\",\"Share of all tertiary graduates who completed agriculture programmes in the reference year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.TER.GRAD.ED.FE.ZS\",\"Percentage of female graduates from tertiary education graduating from Education programmes, female (%)\",\"Share of all female tertiary graduates who completed education programmes in the reference year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.TER.GRAD.ED.ZS\",\"Percentage of graduates from tertiary education graduating from Education programmes, both sexes (%)\",\"Share of all tertiary graduates who completed education programmes in the reference year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.TER.GRAD.EN.FE.ZS\",\"Percentage of female graduates from tertiary education graduating from Engineering, Manufacturing and Construction programmes, female (%)\",\"Share of all female tertiary graduates who completed engineering, manufacturing and construction programmes in the reference year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.TER.GRAD.EN.ZS\",\"Percentage of graduates from tertiary education graduating from Engineering, Manufacturing and Construction programmes, both sexes (%)\",\"Share of all tertiary graduates who completed engineering, manufacturing and construction programmes in the reference year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.TER.GRAD.FE\",\"Graduates from tertiary education, female (number)\",\"Total number of female students successfully completing tertiary education programmes (ISCED 5 to 8) in public and private tertiary education institutions during the reference academic year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.TER.GRAD.FE.AG.ZS\",\"Female share of graduates in agriculture (%, tertiary)\",\"Female share of graduates in the given field of education, tertiary is the number of female graduates expressed as a percentage of the total number of graduates in the given field of education from tertiary education.\",\"Education Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.GRAD.FE.ED.ZS\",\"Female share of graduates in education (%, tertiary)\",\"Female share of graduates in the given field of education, tertiary is the number of female graduates expressed as a percentage of the total number of graduates in the given field of education from tertiary education.\",\"Education Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.GRAD.FE.EN.ZS\",\"Female share of graduates in engineering, manufacturing and construction (%, tertiary)\",\"Female share of graduates in the given field of education, tertiary is the number of female graduates expressed as a percentage of the total number of graduates in the given field of education from tertiary education.\",\"Education Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.GRAD.FE.HL.ZS\",\"Female share of graduates in health and welfare (%, tertiary)\",\"Female share of graduates in the given field of education, tertiary is the number of female graduates expressed as a percentage of the total number of graduates in the given field of education from tertiary education.\",\"Education Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.GRAD.FE.HU.ZS\",\"Female share of graduates in humanities and arts (%, tertiary)\",\"Female share of graduates in the given field of education, tertiary is the number of female graduates expressed as a percentage of the total number of graduates in the given field of education from tertiary education.\",\"Education Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.GRAD.FE.OT.ZS\",\"Female share of graduates in unknown or unspecified fields (%, tertiary)\",\"Female share of graduates in the given field of education, tertiary is the number of female graduates expressed as a percentage of the total number of graduates in the given field of education from tertiary education.\",\"Education Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.GRAD.FE.SC.ZS\",\"Female share of graduates in science (%, tertiary)\",\"Female share of graduates in the given field of education, tertiary is the number of female graduates expressed as a percentage of the total number of graduates in the given field of education from tertiary education.\",\"Education Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.GRAD.FE.SS.ZS\",\"Female share of graduates in social science, business and law (%, tertiary)\",\"Female share of graduates in the given field of education, tertiary is the number of female graduates expressed as a percentage of the total number of graduates in the given field of education from tertiary education.\",\"Education Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.GRAD.FE.SV.ZS\",\"Female share of graduates in services (%, tertiary)\",\"Female share of graduates in the given field of education, tertiary is the number of female graduates expressed as a percentage of the total number of graduates in the given field of education from tertiary education.\",\"Education Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.GRAD.FE.ZS\",\"Percentage of graduates from tertiary education who are female (%)\",\"Number of females completing tertiary education programmes (ISCED 5 to 8) expressed as a percentage of the total number of students (male and female) completing tertiary education programmes (ISCED 5 to 8) in the reference year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.TER.GRAD.HL.FE.ZS\",\"Percentage of female graduates from tertiary education graduating from Health and Welfare programmes, female (%)\",\"Share of all female tertiary graduates who completed health and welfare programmes in the reference year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.TER.GRAD.HL.ZS\",\"Percentage of graduates from tertiary education graduating from Health and Welfare programmes, both sexes (%)\",\"Share of all tertiary graduates who completed health and welfare programmes in the reference year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.TER.GRAD.HU.FE.ZS\",\"Percentage of female graduates from tertiary education graduating from Humanities and Arts programmes, female (%)\",\"Share of all female tertiary graduates who completed humanities and arts programmes in the reference year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.TER.GRAD.HU.ZS\",\"Percentage of graduates from tertiary education graduating from Humanities and Arts programmes, both sexes (%)\",\"Share of all tertiary graduates who completed humanities and arts programmes in the reference year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.TER.GRAD.OT.FE.ZS\",\"Percentage of female graduates from tertiary education graduating from programmes in unspecified fields, female (%)\",\"Share of all female tertiary graduates who completed programmes in unspecified fields in the reference year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.TER.GRAD.OT.ZS\",\"Percentage of graduates from tertiary education graduating from programmes in unspecified fields, both sexes (%)\",\"Share of all tertiary graduates who completed programmes in unspecified fields in the reference year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.TER.GRAD.SC.FE.ZS\",\"Percentage of female graduates from tertiary education graduating from Science programmes, female (%)\",\"Share of all female tertiary graduates who completed science programmes in the reference year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.TER.GRAD.SC.ZS\",\"Percentage of graduates from tertiary education graduating from Science programmes, both sexes (%)\",\"Share of all tertiary graduates who completed science programmes in the reference year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.TER.GRAD.SS.FE.ZS\",\"Percentage of female graduates from tertiary education graduating from Social Sciences, Business and Law programmes, female (%)\",\"Share of all female tertiary graduates who completed social sciences, business and law programmes in the reference year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.TER.GRAD.SS.ZS\",\"Percentage of graduates from tertiary education graduating from Social Sciences, Business and Law programmes, both sexes (%)\",\"Share of all tertiary graduates who completed social sciences, business and law programmes in the reference year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.TER.GRAD.SV.FE.ZS\",\"Percentage of female graduates from tertiary education graduating from Services programmes, female (%)\",\"Share of all female tertiary graduates who completed services programmes in the reference year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.TER.GRAD.SV.ZS\",\"Percentage of graduates from tertiary education graduating from Services programmes, both sexes (%)\",\"Share of all tertiary graduates who completed services programmes in the reference year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.TER.HIAT.BA.FE.ZS\",\"Educational attainment, completed Bachelor's or equivalent, population 25+ years, female (%)\",\"The percentage of population ages 25 and over that attained or completed Bachelor's or equivalent as the highest level of education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.HIAT.BA.MA.ZS\",\"Educational attainment, completed Bachelor's or equivalent, population 25+ years, male (%)\",\"The percentage of population ages 25 and over that attained or completed Bachelor's or equivalent as the highest level of education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.HIAT.BA.ZS\",\"Educational attainment, completed Bachelor's or equivalent, population 25+ years, total (%)\",\"The percentage of population ages 25 and over that attained or completed Bachelor's or equivalent as the highest level of education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.HIAT.DO.FE.ZS\",\"Educational attainment, completed Doctoral or equivalent, population 25+ years, female (%)\",\"The percentage of population ages 25 and over that attained or completed Doctoral or equivalent as the highest level of education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.HIAT.DO.MA.ZS\",\"Educational attainment, completed Doctoral or equivalent, population 25+ years, male (%)\",\"The percentage of population ages 25 and over that attained or completed Doctoral or equivalent as the highest level of education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.HIAT.DO.ZS\",\"Educational attainment, completed Doctoral or equivalent, population 25+ years, total (%)\",\"The percentage of population ages 25 and over that attained or completed Doctoral or equivalent as the highest level of education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.HIAT.MS.FE.ZS\",\"Educational attainment, completed Master's or equivalent, population 25+ years, female (%)\",\"The percentage of population ages 25 and over that attained or completed Master's or equivalent as the highest level of education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.HIAT.MS.MA.ZS\",\"Educational attainment, completed Master's or equivalent, population 25+ years, male (%)\",\"The percentage of population ages 25 and over that attained or completed Master's or equivalent as the highest level of education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.HIAT.MS.ZS\",\"Educational attainment, completed Master's or equivalent, population 25+ years, total (%)\",\"The percentage of population ages 25 and over that attained or completed Master's or equivalent as the highest level of education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.HIAT.ST.FE.ZS\",\"Educational attainment, completed short-cycle tertiary, population 25+ years, female (%)\",\"The percentage of population ages 25 and over that attained or completed short-cycle tertiary education as the highest level of education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.HIAT.ST.MA.ZS\",\"Educational attainment, completed short-cycle tertiary, population 25+ years, male (%)\",\"The percentage of population ages 25 and over that attained or completed short-cycle tertiary education as the highest level of education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.HIAT.ST.ZS\",\"Educational attainment, completed short-cycle tertiary, population 25+ years, total (%)\",\"The percentage of population ages 25 and over that attained or completed short-cycle tertiary education as the highest level of education.\",\"Gender Statistics\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TER.PRIV.ZS\",\"Percentage of enrolment in tertiary education in private institutions (%)\",\"Total number of students in tertiary education enrolled in institutions that are not operated by a public authority but controlled and managed, whether for profit or not, by a private body (e.g., non-governmental organisation, religious body, special interest group, foundation or business enterprise), expressed as a percentage of total number of students enrolled in tertiary education.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.TER.TCHR\",\"Teachers in tertiary education, both sexes (number)\",\"Total number of teachers in public and private tertiary education institutions (ISCED 5-8). Teachers are persons employed full time or part time in an official capacity to guide and direct the learning experience of pupils and students, irrespective of their qualifications or the delivery mechanism, i.e. face-to-face and/or at a distance. This definition excludes educational personnel who have no active teaching duties (e.g. headmasters, headmistresses or principals who do not teach) and persons who work occasionally or in a voluntary capacity in educational institutions.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.TER.TCHR.FE\",\"Teachers in tertiary education programmes, female (number)\\r\\n\",\"Total number of female teachers in public and private tertiary education institutions (ISCED 5-8). Teachers are persons employed full time or part time in an official capacity to guide and direct the learning experience of pupils and students, irrespective of their qualifications or the delivery mechanism, i.e. face-to-face and/or at a distance. This definition excludes educational personnel who have no active teaching duties (e.g. headmasters, headmistresses or principals who do not teach) and persons who work occasionally or in a voluntary capacity in educational institutions.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.TER.TCHR.FE.ZS\",\"Tertiary education, academic staff (% female)\",\"Tertiary education, academic staff (% female) is the share of female academic staff in tertiary education.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.TOT.ENRR\",\"Gross enrolment ratio, primary to tertiary, both sexes (%)\",\"Total enrollment in primary, secondary and tertiary education, regardless of age, expressed as a percentage of the total population of primary school age, secondary school age, and the five-year age group following on from secondary school leaving. GER can exceed 100% due to the inclusion of over-aged and under-aged students because of early or late school entrance and grade repetition.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.XPD.CPRM.ZS\",\"Current education expenditure, primary (% of total expenditure in primary public institutions)\",\"Current expenditure is expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional) of the specified level of education. Financial aid to students and other transfers are excluded from direct expenditure. Current expenditure is consumed within the current year and would have to be renewed if needed in the following year. It includes staff compensation and current expenditure other than for staff compensation (ex. on teaching materials, ancillary services and administration).\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.XPD.CSEC.ZS\",\"Current education expenditure, secondary (% of total expenditure in secondary public institutions)\",\"Current expenditure is expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional) of the specified level of education. Financial aid to students and other transfers are excluded from direct expenditure. Current expenditure is consumed within the current year and would have to be renewed if needed in the following year. It includes staff compensation and current expenditure other than for staff compensation (ex. on teaching materials, ancillary services and administration).\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.XPD.CTER.ZS\",\"Current education expenditure, tertiary (% of total expenditure in tertiary public institutions)\",\"Current expenditure is expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional) of the specified level of education. Financial aid to students and other transfers are excluded from direct expenditure. Current expenditure is consumed within the current year and would have to be renewed if needed in the following year. It includes staff compensation and current expenditure other than for staff compensation (ex. on teaching materials, ancillary services and administration).\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.XPD.CTOT.ZS\",\"Current education expenditure, total (% of total expenditure in public institutions)\",\"Current expenditure is expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional) of the specified level of education. Financial aid to students and other transfers are excluded from direct expenditure. Current expenditure is consumed within the current year and would have to be renewed if needed in the following year. It includes staff compensation and current expenditure other than for staff compensation (ex. on teaching materials, ancillary services and administration).\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.XPD.CUR.TOTL.ZS\",\"Current expenditure as % of total expenditure in public institutions (%)\",\"Current expenditure expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional). Financial aid to students and other transfers are excluded from direct expenditure. Current expenditure is consumed within the current year and would have to be renewed if needed in the following year. It includes staff compensation and current expenditure other than for staff compensation (ex. on teaching materials, ancillary services and administration). Divide all current expenditure in public institutions by total expenditure (current and capital) in public institutions, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SE.XPD.MPRM.ZS\",\"All education staff compensation, primary (% of total expenditure in primary public institutions)\",\"All staff (teacher and non-teachers) compensation is expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional) of the specified level of education. Financial aid to students and other transfers are excluded from direct expenditure. Staff compensation includes salaries, contributions by employers for staff retirement programs, and other allowances and benefits.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.XPD.MSEC.ZS\",\"All education staff compensation, secondary (% of total expenditure in secondary public institutions)\",\"All staff (teacher and non-teachers) compensation is expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional) of the specified level of education. Financial aid to students and other transfers are excluded from direct expenditure. Staff compensation includes salaries, contributions by employers for staff retirement programs, and other allowances and benefits.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.XPD.MTER.ZS\",\"All education staff compensation, tertiary (% of total expenditure in tertiary public institutions)\",\"All staff (teacher and non-teachers) compensation is expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional) of the specified level of education. Financial aid to students and other transfers are excluded from direct expenditure. Staff compensation includes salaries, contributions by employers for staff retirement programs, and other allowances and benefits.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.XPD.MTOT.ZS\",\"All education staff compensation, total (% of total expenditure in public institutions)\",\"All staff (teacher and non-teachers) compensation is expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional) of the specified level of education. Financial aid to students and other transfers are excluded from direct expenditure. Staff compensation includes salaries, contributions by employers for staff retirement programs, and other allowances and benefits.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.XPD.PRIM.PC.ZS\",\"Government expenditure per student, primary (% of GDP per capita)\",\"Government expenditure per student is the average general government expenditure (current, capital, and transfers) per student in the given level of education, expressed as a percentage of GDP per capita.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.XPD.PRIM.ZS\",\"Expenditure on primary as % of government expenditure on education (%)\",\"Expenditure on education by level of education, expressed as a percentage of total general government expenditure on education. Divide government expenditure on a given level of education (ex. primary, secondary) by total government expenditure on education (all levels combined), and multiply by 100. A high percentage of government expenditure on education spent on a given level denotes a high priority given to that level compared to others. When interpreting this indicator, one should take into account enrolment at that level, and the relative costs per student between different levels of education. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.XPD.PTCH.ZS\",\"Spending on teaching materials, primary (% of primary expenditure)\",\"\",\"Africa Development Indicators\",\"\"\n\"SE.XPD.SECO.PC.ZS\",\"Government expenditure per student, secondary (% of GDP per capita)\",\"Government expenditure per student is the average general government expenditure (current, capital, and transfers) per student in the given level of education, expressed as a percentage of GDP per capita.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SE.XPD.SECO.ZS\",\"Expenditure on secondary as % of government expenditure on education (%)\",\"Expenditure on education by level of education, expressed as a percentage of total general government expenditure on education. Divide government expenditure on a given level of education (ex. primary, secondary) by total government expenditure on education (all levels combined), and multiply by 100. A high percentage of government expenditure on education spent on a given level denotes a high priority given to that level compared to others. When interpreting this indicator, one should take into account enrolment at that level, and the relative costs per student between different levels of education. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.XPD.STCH.ZS\",\"Spending on teaching materials, secondary (% of secondary expenditure)\",\"\",\"Africa Development Indicators\",\"\"\n\"SE.XPD.TCHR.XC.ZS\",\"Teachers' salaries (% of current education expenditure)\",\"\",\"Africa Development Indicators\",\"\"\n\"SE.XPD.TERT.PC.ZS\",\"Government expenditure per tertiary student as % of GDP per capita (%)\",\"Average total (current, capital and transfers) general government expenditure per student in the given level of education, expressed as a percentage of GDP per capita. Divide total government expenditure for a given level of education (ex. primary, secondary) by total enrolment in that same level, divide again by GDP per capita, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.XPD.TERT.ZS\",\"Expenditure on tertiary as % of government expenditure on education (%)\",\"Expenditure on education by level of education, expressed as a percentage of total general government expenditure on education. Divide government expenditure on a given level of education (ex. primary, secondary) by total government expenditure on education (all levels combined), and multiply by 100. A high percentage of government expenditure on education spent on a given level denotes a high priority given to that level compared to others. When interpreting this indicator, one should take into account enrolment at that level, and the relative costs per student between different levels of education. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.XPD.TOTL.GB.ZS\",\"Expenditure on education as % of total government expenditure (%)\",\"Total general (local, regional and central) government expenditure on education (current, capital, and transfers), expressed as a percentage of total general government expenditure on all sectors (including health, education, social services, etc.). It includes expenditure funded by transfers from international sources to government. Public education expenditure includes spending by local/municipal, regional and national governments (excluding household contributions) on educational institutions (both public and private), education administration, and subsidies for private entities (students/households and other privates entities). In some instances data on total public expenditure on education refers only to the ministry of education and can exclude other ministries that spend a part of their budget on educational activities. The indicator is calculated by dividing total public expenditure on education incurred by all government agencies/departments by the total government expenditure and multiplying by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"World Development Indicators\",\"UNESCO Institute for Statistics\"\n\"SE.XPD.TOTL.GD.ZS\",\"Government expenditure on education, total (% of GDP)\",\"General government expenditure on education (current, capital, and transfers) is expressed as a percentage of GDP. It includes expenditure funded by transfers from international sources to government. General government usually refers to local, regional and central governments.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SG.COK.CHCO.ZS\",\"Main cooking fuel: charcoal (% of households)\",\"Percentage of households who use charcoal as thier main cooking fuel\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.COK.CROP.ZS\",\"Main cooking fuel: agricultural crop (% of households)\",\"Percentage of households who use agricultural crop as thier main cooking fuel\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.COK.DUNG.ZS\",\"Main cooking fuel: dung (% of households)\",\"Percentage of households who use dung as thier main cooking fuel\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.COK.ELEC.ZS\",\"Main cooking fuel: electricity  (% of households)\",\"Percentage of households who use electricity as thier main cooking fuel\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.COK.HOUS.ZS\",\"Location of cooking: inside the house (% of households)\",\"Percentage of households who do their cooking inside the house\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.COK.LPGN.ZS\",\"Main cooking fuel: LPG/natural gas/biogas (% of households)\",\"Percentage of households who use Liquified Petroleum Gas (LPG) or natural gas or biogas as thier main cooking fuel\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.COK.OTHR.ZS\",\"Location of cooking: other places (% of households)\",\"Percentage of households who do their cooking in other places\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.COK.OUTD.ZS\",\"Location of cooking: outdoors (% of households)\",\"Percentage of households who do their cooking outdoors\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.COK.SBLD.ZS\",\"Location of cooking: separate building (% of households)\",\"Percentage of households who do their cooking in a separate building\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.COK.STRW.ZS\",\"Main cooking fuel: straw/shrubs/grass (% of households)\",\"Percentage of households who use straw/shrubs/grass as thier main cooking fuel\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.COK.WOOD.ZS\",\"Main cooking fuel: wood (% of households)\",\"Percentage of households who use wood as thier main cooking fuel\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.DMK.ALLD.FN.ZS\",\"Women participating in the three decisions (own health care, major household purchases, and visiting family) (% of women age 15-49)\",\"Women participating in the three decisions (own health care, major household purchases, and visiting family) is Percentage of currently married women aged 15-49 who say that they alone or jointly have the final say in all of the three decisions (Own health care, large purchases and visits to family, relatives, friends)\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.DMK.DPCH.FN.ZS\",\"Women participating in making daily purchase decisions (% of women age 15-49)\",\"Women participating in making daily purchase decisions is Percentage of currently married women aged 15-49 who say that they alone or jointly have the final say in making daily purchases\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.DMK.FOOD.FN.ZS\",\"Women participating in decision of what food to cook daily (% of women age 15-49)\",\"Women participating in decision of what food to cook daily is Percentage of currently married women aged 15-49 who say that they alone or jointly have the final say in what food to cook daily\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.DMK.HLTH.FN.ZS\",\"Women participating in own health care decisions (% of women age 15-49)\",\"Women Participating in own health care decisions is Percentage of currently married women aged 15-49 who say that they alone or jointly have the final say in own health care\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.DMK.HLTH.HB.ZS\",\"Decision maker about a woman's own health care: mainly husband (% of women age 15-49)\",\"Decision maker about women own health care: mainly husband is Percentage of currently married women aged 15-49 for whom the decision maker for their own health care is mainly the husband\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.DMK.HLTH.OT.ZS\",\"Decision maker about a woman's own health care: other (% of women age 15-49)\",\"Decision maker about women own health care: other is Percentage of currently married women aged 15-49 for whom the decision maker for their own health care is recorded as 'other'\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.DMK.HLTH.SE.ZS\",\"Decision maker about a woman's own health care: someone else (% of women age 15-49)\",\"Decision maker about women own health care: someone else is Percentage of currently married women aged 15-49 for whom the decision maker for their own health care is mainly someone else\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.DMK.HLTH.WF.ZS\",\"Decision maker about a woman's own health care: mainly wife  (% of women age 15-49)\",\"Decision maker about women own health care: mainly wife  is Percentage of currently married women aged 15-49 for whom the decision maker for their own health care is mainly the respondent\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.DMK.HLTH.WH.ZS\",\"Decision maker about a woman's own health care: wife and husband jointly (% of women age 15-49)\",\"Decision maker about women own health care: wife and husband jointly is Percentage of currently married women aged 15-49 for whom the decision maker for their own health care is mainly the respondent and her husband\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.DMK.NONE.FN.ZS\",\"Women participating in none of the three decisions (own health care, major household purchases, and visiting family) (% of women age 15-49)\",\"Women participating in none of the three decisions (own health care, major household purchases, and visiting family) is Percentage of currently married women aged 15-49 who say that they alone or jointly have the final say in none of the three decisions (own health care, major household purchases, and visiting family)\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.DMK.PRCH.FN.ZS\",\"Women participating in making major household purchase decisions (% of women age 15-49)\",\"Women participating in making major household purchase decisions is Percentage of currently married women aged 15-49 who say that they alone or jointly have the final say in making major household purchases\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.DMK.PRCH.HB.ZS\",\"Decision maker about major household purchases: mainly husband (% of women age 15-49)\",\"Decision maker about ajor household purchases: mainly husband is Percentage of currently married women aged 15-49 for whom the decision maker for major household purchases is mainly the husband\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.DMK.PRCH.OT.ZS\",\"Decision maker about major household purchases: other (% of women age 15-49)\",\"Decision maker about major household purchases: other is Percentage of currently married women aged 15-49 for whom the decision maker for major household purchases is recorded as 'other'\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.DMK.PRCH.SE.ZS\",\"Decision maker about major household purchases: someone else (% of women age 15-49)\",\"Decision maker about Major household purchases: someone else is Percentage of currently married women aged 15-49 for whom the decision maker for major household purchases is mainly someone else\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.DMK.PRCH.WF.ZS\",\"Decision maker about major household purchases: mainly wife (% of women age 15-49)\",\"Decision maker about major household purchases: mainly wife is Percentage of currently married women aged 15-49 for whom the decision maker for major household purchases is mainly the respondent\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.DMK.PRCH.WH.ZS\",\"Decision maker about major household purchases: wife and husband jointly (% of women age 15-49)\",\"Decision maker about major household purchases: wife and husband jointly is Percentage of currently married women aged 15-49 for whom the decision maker for major household purchases is mainly the respondent and her husband\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.DMK.VISI.FN.ZS\",\"Women participating in decision of visits to family, relatives, friends (% of women age 15-49)\",\"Women participating in decision of visits to family, relatives, friends is Percentage of currently married women aged 15-49 who say that they alone or jointly have the final say in visits to family, relatives, friends\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.DMK.VISI.HB.ZS\",\"Decision maker about a woman's visits to her family or relatives: mainly husband (% of women age 15-49)\",\"Decision maker about a woman's visits to her family or relatives: mainly husband is Percentage of currently married women aged 15-49 for whom the decision maker for visits to her family or relatives is mainly the husband\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.DMK.VISI.OT.ZS\",\"Decision maker about a woman's visits to her family or relatives: other (% of women age 15-49)\",\"Decision maker about a woman's visits to her family or relatives: other is Percentage of currently married women aged 15-49 for whom the decision maker for visits to her family or relatives is recorded as 'other'\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.DMK.VISI.SE.ZS\",\"Decision maker about a woman's visits to her family or relatives: someone else (% of women age 15-49)\",\"Decision maker about a woman's visits to her family or relatives: someone else is Percentage of currently married women aged 15-49 for whom the decision maker for visits to her family or relatives is mainly someone else\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.DMK.VISI.WF.ZS\",\"Decision maker about a woman's visits to her family or relatives: mainly wife (% of women age 15-49)\",\"Decision maker about a woman's visits to her family or relatives: mainly wife is Percentage of currently married women aged 15-49 for whom the decision maker for visits to her family or relatives is mainly the respondent\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.DMK.VISI.WH.ZS\",\"Decision maker about Visits to her family or relatives: wife and husband jointly (% of women age 15-49)\",\"Decision maker about Visits to her family or relatives: wife and husband jointly is Percentage of currently married women aged 15-49 for whom the decision maker for visits to her family or relatives is mainly the respondent and her husband\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.GEN.LSOM.ZS\",\"Female legislators, senior officials and managers (% of total)\",\"Female legislators, senior officials and managers (% of total) refers to the share of legislators, senior officials and managers who are female.\",\"World Development Indicators\",\"ILO Key Indicators of the Labour Market (KILM).\"\n\"SG.GEN.MNST.ZS\",\"Proportion of women in ministerial level positions (%)\",\"Women in ministerial level positions is the proportion of women in ministerial or equivalent positions (including deputy prime ministers) in the government. Prime Ministers/Heads of Government are included when they hold ministerial portfolios. Vice-Presidents and heads of governmental or public agencies are excluded.\",\"Gender Statistics\",\"Inter-Parliamentary Union (IPU). Women in Politics.\"\n\"SG.GEN.PARL.ZS\",\"Proportion of seats held by women in national parliaments (%)\",\"Women in parliaments are the percentage of parliamentary seats in a single or lower chamber held by women.\",\"World Development Indicators\",\"Inter-Parliamentary Union (IPU) (www.ipu.org).\"\n\"SG.GEN.TECH.ZS\",\"Female professional and technical workers (% of total)\",\"Female professional and technical workers refers to the share of professionals and technical workers who are female. Women's share of positions are defined according to the International Standard Classification of Occupations (ISCO-88) to include physical, mathematical and engineering science professionals (and associate professionals), life science and health professionals (and associate professionals), teaching professionals (and associate professionals) and other professionals and associate professionals.\",\"Gender Statistics\",\"Gender, Institutions and Development Database, Organization for Economic Co-operation and Development (OECD), web site: http://www.oecd.org/document/16/0,3343,en_2649_33935_39323280_1_1_1_1,00.html.\"\n\"SG.H2O.PRMS.HH.ZS\",\"Households with water on the premises (%)\",\"Percentage of households who have a water source on their premises\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.H2O.TL30.HH.ZS\",\"Households with water less than 30 minutes away round trip (%)\",\"Percentage of households who have a water source in less than 30 minutes away round trip\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.H2O.TM30.HH.ZS\",\"Households with water 30 minutes or longer away round trip (%)\",\"Percentage of households who have a water source 30 minutes or longer away round trip\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.JOB.NOPN.EQ\",\"Nonpregnant and nonnursing women can do the same jobs as men (1=yes; 0=no)\",\"Non-pregnant and non-nursing women can do the same jobs as men indicates whether there are specific jobs that women explicitly or implicitly cannot perform except in limited circumstances. Both partial and full restrictions on women’s work are counted as restrictions. For example, if women are only allowed to work in certain jobs within the mining industry, e.g., as health care professionals within mines but not as miners, this is a restriction.\",\"World Development Indicators\",\"World Bank: Women, Business and the Law.\"\n\"SG.LAW.CHMR\",\"Law prohibits or invalidates child or early marriage (1=yes; 0=no)\",\"Law prohibits or invalidates child or early marriage is whether there are provisions that prevent the marriage of girls, boys, or both before they reach the legal age of marriage or the age of marriage with consent, including, for example, a prohibition on registering the marriage or provisions stating that such a marriage is null and void.\",\"World Development Indicators\",\"World Bank: Women, Business and the Law.\"\n\"SG.LAW.EQRM.WK\",\"Law mandates equal remuneration for females and males for work of equal value (1=yes; 0=no)\",\"Law mandates equal remuneration for females and males for work of equal value is whether there is a law that obligates employers to pay equal remuneration to male and female employees who do work of equal value.“Remuneration” refers to the ordinary, basic or minimum wage or salary and any additional emoluments payable directly or indirectly, whether in cash or in kind, by the employer to the worker and arising out of the worker’s employment. “Work of equal value” refers not only to the same or similar jobs but also to different jobs of the same value.\",\"World Development Indicators\",\"World Bank: Women, Business and the Law.\"\n\"SG.LAW.LEVE.PU\",\"Law mandates paid or unpaid maternity leave (1=yes; 0=no)\",\"Law mandates paid or unpaid maternity leave is whether there is a law mandating paid or unpaid maternity leave available only to the mother. Provisions for circumstantial leave by which an employee is entitled to a certain number of days of paid leave (usually fewer than five days) upon the birth of a child are considered paternity leave; even if the law is gender-neutral, such leave is not considered maternity leave if the law covers maternity leave elsewhere.\",\"World Development Indicators\",\"World Bank: Women, Business and the Law.\"\n\"SG.LAW.NODC.HR\",\"Law mandates nondiscrimination based on gender in hiring (1=yes; 0=no)\",\"Law mandates nondiscrimination based on gender in hiring is whether the law specifically prevents or penalizes gender-based discrimination in the hiring process; the law may prohibit discrimination in employment on the basis of gender but be silent about whether job applicants are protected from discrimination. Hiring refers to the process of employing a person for wages and making a selection by presenting a candidate with a job offer. Job advertisements, selection criteria and recruitment, although equally important, are not considered “hiring” for purposes of this question.\",\"World Development Indicators\",\"World Bank: Women, Business and the Law.\"\n\"SG.LAW.OBHB.MR\",\"Married women are required by law to obey their husbands (1=yes; 0=no)\",\"Married women are required by law to obey their husbands is whether there is an explicit provision stating that a married woman must obey her husband, or a provision states that disobedience toward her husband has legal ramifications for the wife, such as loss of maintenance.\",\"Gender Statistics\",\"World Bank, Women, Business and the Law.\"\n\"SG.LEG.DVAW\",\"Legislation exists on domestic violence (1=yes; 0=no)\",\"Legislation exists on domestic violence is whether there is legislation addressing domestic violence: violence between spouses, within the family or members of the same household, or in interpersonal relationships, including intimate partner violence that is subject to criminal sanctions or provides for protection orders for domestic violence, or the legislation addresses “cruel, inhuman or degrading treatment” or “harassment” that clearly affects physical or mental health, and it is implied that such behavior is considered domestic violence.\",\"World Development Indicators\",\"World Bank: Women, Business and the Law.\"\n\"SG.LEG.MRRP\",\"Legislation explicitly criminalizes marital rape (1=yes; 0=no)\",\"Legislation explicitly criminalizes marital rape is whether there is legislation that explicitly criminalizes the act of marital rape by providing that rape or sexual assault provisions apply “irrespective of the nature of the relationship” between the perpetrator and complainant or by stating that “no marriage or other relationship shall constitute a defense to a charge of rape or sexual assault under the legislation”.\",\"Gender Statistics\",\"World Bank, Women, Business and the Law.\"\n\"SG.LEG.SXHR\",\"Legislation specifically addresses sexual harassment (1=yes; 0=no)\",\"Legislation specifically addresses sexual harassment is whether there is a law or specific provisions on sexual harassment; provisions may be general or apply only to employment. Legislation specifically addresses and protects against sexual harassment, including unwelcome sexual advances; requests for sexual favors; verbal or physical conduct or gestures of a sexual nature; annoyance, if understood to include harassment with sexual content; or any other behavior of a sexual nature that might reasonably be expected or be perceived to cause offense or humiliation to another, or sexual harassment is considered “discrimination,” and legislation protects against discrimination, or there is a provision protecting against sexual harassment in employment, including provisions on inducing indecent or lewd behavior coupled with financial or official dependence or authority, abuse of position or authority, or language that can be clearly interpreted to mean such dependence or abuse.\",\"Gender Statistics\",\"World Bank, Women, Business and the Law.\"\n\"SG.MMR.LEVE.EP\",\"Mothers are guaranteed an equivalent position after maternity leave (1=yes; 0=no)\",\"Mothers are guaranteed an equivalent position after maternity leave is whether employers of women returning from maternity leave are legally obligated to provide them with an equivalent position after maternity leave. It takes into account paid and unpaid maternity leave and captures whether the employer has a legal obligation to reinstate the returning employee in an equivalent or better position and salary than the employee had pre-leave. Where the maternity leave regime explicitly states that the employee may not be indefinitely replaced, the answer is assumed to be “Yes.” Where the maternity leave regime explicitly establishes a suspension of the employee’s contract, the answer is assumed to be “Yes.” In economies that also have parental leave and the law guarantees return after the leave to the same or an equivalent position paid at the same rate but is silent on guaranteeing the same position after maternity leave, the answer is “Yes.” The answer is “N/A” if no paid or unpaid maternity leave is available.\",\"World Development Indicators\",\"World Bank: Women, Business and the Law.\"\n\"SG.NOD.CONS\",\"Nondiscrimination clause mentions gender in the constitution (1=yes; 0=no)\",\"Nondiscrimination clause mentions gender in the constitution is whether there is a nondiscrimination clause in the constitution which mentions gender. For the answer to be “Yes,” the constitution must use either the word discrimination or the word nondiscrimination or even when there is a “clawback” provision granting exceptions to the nondiscrimination clause for certain areas of the law, such as inheritance, family and customary law. The answer is “No” if there is no nondiscrimination provision, or the nondiscrimination language is present in the preamble but not in an article of the constitution, or there is a provision that merely stipulates that the sexes are equal, or the sexes have equal rights and obligations. The answer is \\\"N/A\\\" if there is no nondiscrimination provision.\",\"World Development Indicators\",\"World Bank: Women, Business and the Law.\"\n\"SG.OBT.IDCD.MR\",\"Married women can obtain a national ID card in the same way as married men (1=yes; 0=no)\",\"Married women can obtain a national ID card in the same way as married men is equality in the process for obtaining a national identity card by married woman compared to married man. The answer is “Yes” if there are no inequalities in the process for obtaining a national identity card. If married men must provide a marriage certificate or birth certificate as proof of name, whereas married women must provide a marriage certificate, the answer is still “Yes.” The answer is “No” if a married woman must provide a marriage certificate, but a married man need not, or a married woman, but not a married man, must provide additional signatures, such as those of the husband, father or guardian, or a married woman must indicate the name of her spouse, but a married man is not so required, or identity cards are optional for women, but required for men, or the identity card of a married woman displays the name of her spouse, but the identity card of a married man does not. The answer is “N/A” if there is no national identity card.\",\"Gender Statistics\",\"World Bank, Women, Business and the Law.\"\n\"SG.OWN.HSAJ.FE.Q1.ZS\",\"Women who own house both alone and jointly (% of women age 15-49): Q1 (lowest)\",\"Women who own house both alone and jointly (% of women age 15-49): Q1 (lowest) is the percentage of women age 15-49 who alone as well as jointly with someone else own a house which is legally registered with their name or cannot be sold without their signature. \\\"Both alone and jointly\\\" Implies a woman owns a house alone and another house jointly with someone else. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSAJ.FE.Q2.ZS\",\"Women who own house both alone and jointly (% of women age 15-49): Q2\",\"Women who own house both alone and jointly (% of women age 15-49): Q2 is the percentage of women age 15-49 who alone as well as jointly with someone else own a house which is legally registered with their name or cannot be sold without their signature. \\\"Both alone and jointly\\\" Implies a woman owns a house alone and another house jointly with someone else. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSAJ.FE.Q3.ZS\",\"Women who own house both alone and jointly (% of women age 15-49): Q3\",\"Women who own house both alone and jointly (% of women age 15-49): Q3 is the percentage of women age 15-49 who alone as well as jointly with someone else own a house which is legally registered with their name or cannot be sold without their signature. \\\"Both alone and jointly\\\" Implies a woman owns a house alone and another house jointly with someone else. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSAJ.FE.Q4.ZS\",\"Women who own house both alone and jointly (% of women age 15-49): Q4\",\"Women who own house both alone and jointly (% of women age 15-49): Q4 is the percentage of women age 15-49 who alone as well as jointly with someone else own a house which is legally registered with their name or cannot be sold without their signature. \\\"Both alone and jointly\\\" Implies a woman owns a house alone and another house jointly with someone else. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSAJ.FE.Q5.ZS\",\"Women who own house both alone and jointly (% of women age 15-49): Q5 (highest)\",\"Women who own house both alone and jointly (% of women age 15-49): Q5 (highest) is the percentage of women age 15-49 who alone as well as jointly with someone else own a house which is legally registered with their name or cannot be sold without their signature. \\\"Both alone and jointly\\\" Implies a woman owns a house alone and another house jointly with someone else. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSAJ.FE.ZS\",\"Women who own house both alone and jointly (% of women age 15-49)\",\"Women who own house both alone and jointly (% of women age 15-49) is the percentage of women age 15-49 who alone as well as jointly with someone else own a house which is legally registered with their name or cannot be sold without their signature. \\\"Both alone and jointly\\\" Implies a woman owns a house alone and another house jointly with someone else.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSAJ.MA.Q1.ZS\",\"Men who own house both alone and jointly (% of men): Q1 (lowest)\",\"Men who own house both alone and jointly (% of men): Q1 (lowest) is the percentage of men who both solely and jointly with someone else own a house which is legally registered with their name or cannot be sold without their signature. \\\"Both alone and jointly\\\" Implies a man owns a house alone and another house jointly with someone else.Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSAJ.MA.Q2.ZS\",\"Men who own house both alone and jointly (% of men): Q2\",\"Men who own house both alone and jointly (% of men): Q2 is the percentage of men who both solely and jointly with someone else own a house which is legally registered with their name or cannot be sold without their signature. \\\"Both alone and jointly\\\" Implies a man owns a house alone and another house jointly with someone else.Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSAJ.MA.Q3.ZS\",\"Men who own house both alone and jointly (% of men): Q3\",\"Men who own house both alone and jointly (% of men): Q3 is the percentage of men who both solely and jointly with someone else own a house which is legally registered with their name or cannot be sold without their signature. \\\"Both alone and jointly\\\" Implies a man owns a house alone and another house jointly with someone else.Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSAJ.MA.Q4.ZS\",\"Men who own house both alone and jointly (% of men): Q4\",\"Men who own house both alone and jointly (% of men): Q4 is the percentage of men who both solely and jointly with someone else own a house which is legally registered with their name or cannot be sold without their signature. \\\"Both alone and jointly\\\" Implies a man owns a house alone and another house jointly with someone else.Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSAJ.MA.Q5.ZS\",\"Men who own house both alone and jointly (% of men): Q5 (highest)\",\"Men who own house both alone and jointly (% of men): Q5 (highest) is the percentage of men who both solely and jointly with someone else own a house which is legally registered with their name or cannot be sold without their signature. \\\"Both alone and jointly\\\" Implies a man owns a house alone and another house jointly with someone else.Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSAJ.MA.ZS\",\"Men who own house both alone and jointly (% of men)\",\"Men who own house both alone and jointly (% of men) is the percentage of men who both solely and jointly with someone else own a house which is legally registered with their name or cannot be sold without their signature. \\\"Both alone and jointly\\\" Implies a man owns a house alone and another house jointly with someone else.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSAL.FE.Q1.ZS\",\"Women who own house alone (% of women age 15-49): Q1 (lowest)\",\"Women who own house alone (% of women age 15-49): Q1 (lowest) is the percentage of women age 15-49 who only own a house, which legally registered with their name or cannot be sold without their signature, alone (don't share ownership with anyone). Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSAL.FE.Q2.ZS\",\"Women who own house alone (% of women age 15-49): Q2\",\"Women who own house alone (% of women age 15-49): Q2 is the percentage of women age 15-49 who only own a house, which legally registered with their name or cannot be sold without their signature, alone (don't share ownership with anyone). Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSAL.FE.Q3.ZS\",\"Women who own house alone (% of women age 15-49): Q3\",\"Women who own house alone (% of women age 15-49): Q3 is the percentage of women age 15-49 who only own a house, which legally registered with their name or cannot be sold without their signature, alone (don't share ownership with anyone). Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSAL.FE.Q4.ZS\",\"Women who own house alone (% of women age 15-49): Q4\",\"Women who own house alone (% of women age 15-49): Q4 is the percentage of women age 15-49 who only own a house, which legally registered with their name or cannot be sold without their signature, alone (don't share ownership with anyone). Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSAL.FE.Q5.ZS\",\"Women who own house alone (% of women age 15-49): Q5 (highest)\",\"Women who own house alone (% of women age 15-49): Q5 (highest) is the percentage of women age 15-49 who only own a house, which legally registered with their name or cannot be sold without their signature, alone (don't share ownership with anyone). Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSAL.FE.ZS\",\"Women who own house alone (% of women age 15-49)\",\"Women who own house alone (% of women age 15-49) is the percentage of women age 15-49 who only own a house, which legally registered with their name or cannot be sold without their signature, alone (don't share ownership with anyone).\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSAL.MA.Q1.ZS\",\"Men who own house alone (% of men): Q1 (lowest)\",\"Men who own house alone (% of men): Q1 (lowest) is the percentage of men who only solely own a house which is legally registered with their name or cannot be sold without their signature. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSAL.MA.Q2.ZS\",\"Men who own house alone (% of men): Q2\",\"Men who own house alone (% of men): Q2 is the percentage of men who only solely own a house which is legally registered with their name or cannot be sold without their signature. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSAL.MA.Q3.ZS\",\"Men who own house alone (% of men): Q3\",\"Men who own house alone (% of men): Q3 is the percentage of men who only solely own a house which is legally registered with their name or cannot be sold without their signature. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSAL.MA.Q4.ZS\",\"Men who own house alone (% of men): Q4\",\"Men who own house alone (% of men): Q4 is the percentage of men who only solely own a house which is legally registered with their name or cannot be sold without their signature. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSAL.MA.Q5.ZS\",\"Men who own house alone (% of men): Q5 (highest)\",\"Men who own house alone (% of men): Q5 (highest) is the percentage of men who only solely own a house which is legally registered with their name or cannot be sold without their signature. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSAL.MA.ZS\",\"Men who own house alone (% of men)\",\"Men who own house alone (% of men) is the percentage of men who only solely own a house which is legally registered with their name or cannot be sold without their signature.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSJT.FE.Q1.ZS\",\"Women who own house jointly (% of women age 15-49): Q1 (lowest)\",\"Women who own house jointly (% of women age 15-49): Q1 (lowest) is the percentage of women age 15-49 who only jointly own a house, which is legally registered with their name or cannot be sold without their signature, with someone else. \\\"Only jointly\\\" implies the woman doesn’t own a house on her own, but instead jointly owns one with someone else. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSJT.FE.Q2.ZS\",\"Women who own house jointly (% of women age 15-49): Q2\",\"Women who own house jointly (% of women age 15-49): Q2 is the percentage of women age 15-49 who only jointly own a house, which is legally registered with their name or cannot be sold without their signature, with someone else. \\\"Only jointly\\\" implies the woman doesn’t own a house on her own, but instead jointly owns one with someone else. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSJT.FE.Q3.ZS\",\"Women who own house jointly (% of women age 15-49): Q3\",\"Women who own house jointly (% of women age 15-49): Q3 is the percentage of women age 15-49 who only jointly own a house, which is legally registered with their name or cannot be sold without their signature, with someone else. \\\"Only jointly\\\" implies the woman doesn’t own a house on her own, but instead jointly owns one with someone else. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSJT.FE.Q4.ZS\",\"Women who own house jointly (% of women age 15-49): Q4\",\"Women who own house jointly (% of women age 15-49): Q4 is the percentage of women age 15-49 who only jointly own a house, which is legally registered with their name or cannot be sold without their signature, with someone else. \\\"Only jointly\\\" implies the woman doesn’t own a house on her own, but instead jointly owns one with someone else. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSJT.FE.Q5.ZS\",\"Women who own house jointly (% of women age 15-49): Q5 (highest)\",\"Women who own house jointly (% of women age 15-49): Q5 (highest) is the percentage of women age 15-49 who only jointly own a house, which is legally registered with their name or cannot be sold without their signature, with someone else. \\\"Only jointly\\\" implies the woman doesn’t own a house on her own, but instead jointly owns one with someone else. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSJT.FE.ZS\",\"Women who own house jointly (% of women age 15-49)\",\"Women who own house jointly (% of women age 15-49) is the percentage of women age 15-49 who only jointly own a house, which is legally registered with their name or cannot be sold without their signature, with someone else.  \\\"Only jointly\\\" implies the woman doesn’t own a house on her own, but instead jointly owns one with someone else.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSJT.MA.Q1.ZS\",\"Men who own house jointly (% of men): Q1 (lowest)\",\"Men who own house jointly (% of men): Q1 (lowest) is the percentage of men who only jointly own a house, which legally registered with their name or cannot be sold without their signature, with someone else. \\\"Only jointly\\\" implies the man doesn’t own a house on his own, but instead jointly owns one with someone else. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSJT.MA.Q2.ZS\",\"Men who own house jointly (% of men): Q2\",\"Men who own house jointly (% of men): Q2 is the percentage of men who only jointly own a house, which legally registered with their name or cannot be sold without their signature, with someone else. \\\"Only jointly\\\" implies the man doesn’t own a house on his own, but instead jointly owns one with someone else. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSJT.MA.Q3.ZS\",\"Men who own house jointly (% of men): Q3\",\"Men who own house jointly (% of men): Q3 is the percentage of men who only jointly own a house, which legally registered with their name or cannot be sold without their signature, with someone else. \\\"Only jointly\\\" implies the man doesn’t own a house on his own, but instead jointly owns one with someone else. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSJT.MA.Q4.ZS\",\"Men who own house jointly (% of men): Q4\",\"Men who own house jointly (% of men): Q4 is the percentage of men who only jointly own a house, which legally registered with their name or cannot be sold without their signature, with someone else. \\\"Only jointly\\\" implies the man doesn’t own a house on his own, but instead jointly owns one with someone else. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSJT.MA.Q5.ZS\",\"Men who own house jointly (% of men): Q5 (highest)\",\"Men who own house jointly (% of men): Q5 (highest) is the percentage of men who only jointly own a house, which legally registered with their name or cannot be sold without their signature, with someone else. \\\"Only jointly\\\" implies the man doesn’t own a house on his own, but instead jointly owns one with someone else. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSJT.MA.ZS\",\"Men who own house jointly (% of men)\",\"Men who own house jointly (% of men) is the percentage of men who only jointly own a house, which legally registered with their name or cannot be sold without their signature, with someone else. \\\"Only jointly\\\" implies the man doesn’t own a house on his own, but instead jointly owns one with someone else.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSNO.FE.Q1.ZS\",\"Women who do not own house (% of women age 15-49): Q1 (lowest)\",\"Women who do not own house (% of women age 15-49): Q1 (lowest) is the percentage of women age 15-49 who don’t own any house, which legally registered with their name or cannot be sold without their signature, either solely or jointly with someone else or both. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSNO.FE.Q2.ZS\",\"Women who do not own house (% of women age 15-49): Q2\",\"Women who do not own house (% of women age 15-49): Q2 is the percentage of women age 15-49 who don’t own any house, which legally registered with their name or cannot be sold without their signature, either solely or jointly with someone else or both. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSNO.FE.Q3.ZS\",\"Women who do not own house (% of women age 15-49): Q3\",\"Women who do not own house (% of women age 15-49): Q3 is the percentage of women age 15-49 who don’t own any house, which legally registered with their name or cannot be sold without their signature, either solely or jointly with someone else or both. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSNO.FE.Q4.ZS\",\"Women who do not own house (% of women age 15-49): Q4\",\"Women who do not own house (% of women age 15-49): Q4 is the percentage of women age 15-49 who don’t own any house, which legally registered with their name or cannot be sold without their signature, either solely or jointly with someone else or both. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSNO.FE.Q5.ZS\",\"Women who do not own house (% of women age 15-49): Q5 (highest)\",\"Women who do not own house (% of women age 15-49): Q5 (highest) is the percentage of women age 15-49 who don’t own any house, which legally registered with their name or cannot be sold without their signature, either solely or jointly with someone else or both. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSNO.FE.ZS\",\"Women who do not own house (% of women age 15-49)\",\"Women who do not own house (% of women age 15-49) is the percentage of women age 15-49 who don’t own any house, which legally registered with their name or cannot be sold without their signature, either solely or jointly with someone else or both.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSNO.MA.Q1.ZS\",\"Men who do not own house (% of men): Q1 (lowest)\",\"Men who do not own house (% of men): Q1 (lowest) is the percentage of men who don’t own any house, which legally registered with their name or cannot be sold without their signature, either solely or jointly with someone else or both. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSNO.MA.Q2.ZS\",\"Men who do not own house (% of men): Q2\",\"Men who do not own house (% of men): Q2 is the percentage of men who don’t own any house, which legally registered with their name or cannot be sold without their signature, either solely or jointly with someone else or both. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSNO.MA.Q3.ZS\",\"Men who do not own house (% of men): Q3\",\"Men who do not own house (% of men): Q3 is the percentage of men who don’t own any house, which legally registered with their name or cannot be sold without their signature, either solely or jointly with someone else or both. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSNO.MA.Q4.ZS\",\"Men who do not own house (% of men): Q4\",\"Men who do not own house (% of men): Q4 is the percentage of men who don’t own any house, which legally registered with their name or cannot be sold without their signature, either solely or jointly with someone else or both. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSNO.MA.Q5.ZS\",\"Men who do not own house (% of men): Q5 (highest)\",\"Men who do not own house (% of men): Q5 (highest) is the percentage of men who don’t own any house, which legally registered with their name or cannot be sold without their signature, either solely or jointly with someone else or both. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.HSNO.MA.ZS\",\"Men who do not own house (% of men)\",\"Men who do not own house (% of men) is the percentage of men who don’t own any house, which legally registered with their name or cannot be sold without their signature, either solely or jointly with someone else or both.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDAJ.FE.Q1.ZS\",\"Women who own land both alone and jointly (% of women age 15-49): Q1 (lowest)\",\"Women who own land both alone and jointly (% of women age 15-49): Q1 (lowest) is the percentage of women age 15-49 who both solely and jointly with someone else own a land which is legally registered with their name or cannot be sold without their signature. \\\"Both alone and jointly\\\" Implies a woman owns a land alone and another land jointly with someone else. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDAJ.FE.Q2.ZS\",\"Women who own land both alone and jointly (% of women age 15-49): Q2\",\"Women who own land both alone and jointly (% of women age 15-49): Q2 is the percentage of women age 15-49 who both solely and jointly with someone else own a land which is legally registered with their name or cannot be sold without their signature. \\\"Both alone and jointly\\\" Implies a woman owns a land alone and another land jointly with someone else. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDAJ.FE.Q3.ZS\",\"Women who own land both alone and jointly (% of women age 15-49): Q3\",\"Women who own land both alone and jointly (% of women age 15-49): Q3 is the percentage of women age 15-49 who both solely and jointly with someone else own a land which is legally registered with their name or cannot be sold without their signature. \\\"Both alone and jointly\\\" Implies a woman owns a land alone and another land jointly with someone else. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDAJ.FE.Q4.ZS\",\"Women who own land both alone and jointly (% of women age 15-49): Q4\",\"Women who own land both alone and jointly (% of women age 15-49): Q4 is the percentage of women age 15-49 who both solely and jointly with someone else own a land which is legally registered with their name or cannot be sold without their signature. \\\"Both alone and jointly\\\" Implies a woman owns a land alone and another land jointly with someone else. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDAJ.FE.Q5.ZS\",\"Women who own land both alone and jointly (% of women age 15-49): Q5 (highest)\",\"Women who own land both alone and jointly (% of women age 15-49): Q5 (highest) is the percentage of women age 15-49 who both solely and jointly with someone else own a land which is legally registered with their name or cannot be sold without their signature. \\\"Both alone and jointly\\\" Implies a woman owns a land alone and another land jointly with someone else. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDAJ.FE.ZS\",\"Women who own land both alone and jointly (% of women age 15-49)\",\"Women who own land both alone and jointly (% of women age 15-49) is the percentage of women age 15-49 who both solely and jointly with someone else own a land which is legally registered with their name or cannot be sold without their signature. \\\"Both alone and jointly\\\" Implies a woman owns a land alone and another land jointly with someone else.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDAJ.MA.Q1.ZS\",\"Men who own land both alone and jointly (% of men): Q1 (lowest)\",\"Men who own land both alone and jointly (% of men): Q1 (lowest) is the percentage of men who both solely and jointly with someone else own a land which is legally registered with their name or cannot be sold without their signature. \\\"Both alone and jointly\\\" Implies a man owns a land alone and another land jointly with someone else. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDAJ.MA.Q2.ZS\",\"Men who own land both alone and jointly (% of men): Q2\",\"Men who own land both alone and jointly (% of men): Q2 is the percentage of men who both solely and jointly with someone else own a land which is legally registered with their name or cannot be sold without their signature. \\\"Both alone and jointly\\\" Implies a man owns a land alone and another land jointly with someone else. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDAJ.MA.Q3.ZS\",\"Men who own land both alone and jointly (% of men): Q3\",\"Men who own land both alone and jointly (% of men): Q3 is the percentage of men who both solely and jointly with someone else own a land which is legally registered with their name or cannot be sold without their signature. \\\"Both alone and jointly\\\" Implies a man owns a land alone and another land jointly with someone else. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDAJ.MA.Q4.ZS\",\"Men who own land both alone and jointly (% of men): Q4\",\"Men who own land both alone and jointly (% of men): Q4 is the percentage of men who both solely and jointly with someone else own a land which is legally registered with their name or cannot be sold without their signature. \\\"Both alone and jointly\\\" Implies a man owns a land alone and another land jointly with someone else. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDAJ.MA.Q5.ZS\",\"Men who own land both alone and jointly (% of men): Q5 (highest)\",\"Men who own land both alone and jointly (% of men): Q5 (highest) is the percentage of men who both solely and jointly with someone else own a land which is legally registered with their name or cannot be sold without their signature. \\\"Both alone and jointly\\\" Implies a man owns a land alone and another land jointly with someone else. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDAJ.MA.ZS\",\"Men who own land both alone and jointly (% of men)\",\"Men who own land both alone and jointly (% of men) is the percentage of men who both solely and jointly with someone else own a land which is legally registered with their name or cannot be sold without their signature. \\\"Both alone and jointly\\\" Implies a man owns a land alone and another land jointly with someone else.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDAL.FE.Q1.ZS\",\"Women who own land alone (% of women age 15-49): Q1 (lowest)\",\"Women who own land alone (% of women age 15-49): Q1 (lowest) is the percentage of women age 15-49 who only solely own a land which is legally registered with their name or cannot be sold without their signature. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDAL.FE.Q2.ZS\",\"Women who own land alone (% of women age 15-49): Q2\",\"Women who own land alone (% of women age 15-49): Q2 is the percentage of women age 15-49 who only solely own a land which is legally registered with their name or cannot be sold without their signature. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDAL.FE.Q3.ZS\",\"Women who own land alone (% of women age 15-49): Q3\",\"Women who own land alone (% of women age 15-49): Q3 is the percentage of women age 15-49 who only solely own a land which is legally registered with their name or cannot be sold without their signature. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDAL.FE.Q4.ZS\",\"Women who own land alone (% of women age 15-49): Q4\",\"Women who own land alone (% of women age 15-49): Q4 is the percentage of women age 15-49 who only solely own a land which is legally registered with their name or cannot be sold without their signature. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDAL.FE.Q5.ZS\",\"Women who own land alone (% of women age 15-49): Q5 (highest)\",\"Women who own land alone (% of women age 15-49): Q5 (highest) is the percentage of women age 15-49 who only solely own a land which is legally registered with their name or cannot be sold without their signature. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDAL.FE.ZS\",\"Women who own land alone (% of women age 15-49)\",\"Women who own land alone (% of women age 15-49) is the percentage of women age 15-49 who only solely own a land which is legally registered with their name or cannot be sold without their signature.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDAL.MA.Q1.ZS\",\"Men who own land alone (% of men): Q1 (lowest)\",\"Men who own land alone (% of men): Q1 (lowest) is the percentage of men who solely own a land which is legally registered with their name or cannot be sold without their signature. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDAL.MA.Q2.ZS\",\"Men who own land alone (% of men): Q2\",\"Men who own land alone (% of men): Q2 is the percentage of men who solely own a land which is legally registered with their name or cannot be sold without their signature. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDAL.MA.Q3.ZS\",\"Men who own land alone (% of men): Q3\",\"Men who own land alone (% of men): Q3 is the percentage of men who solely own a land which is legally registered with their name or cannot be sold without their signature. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDAL.MA.Q4.ZS\",\"Men who own land alone (% of men): Q4\",\"Men who own land alone (% of men): Q4 is the percentage of men who solely own a land which is legally registered with their name or cannot be sold without their signature. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDAL.MA.Q5.ZS\",\"Men who own land alone (% of men): Q5 (highest)\",\"Men who own land alone (% of men): Q5 (highest) is the percentage of men who solely own a land which is legally registered with their name or cannot be sold without their signature. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDAL.MA.ZS\",\"Men who own land alone (% of men)\",\"Men who own land alone (% of men) is the percentage of men who solely own a land which is legally registered with their name or cannot be sold without their signature.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDJT.FE.Q1.ZS\",\"Women who own land jointly (% of women age 15-49): Q1 (lowest)\",\"Women who own land jointly (% of women age 15-49): Q1 (lowest) is the percentage of women age 15-49 who only jointly own a land, which legally registered with their name or cannot be sold without their signature, with someone else. \\\"Only jointly\\\" implies the woman doesn’t own a land on her own, but instead jointly owns one with someone else. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDJT.FE.Q2.ZS\",\"Women who own land jointly (% of women age 15-49): Q2\",\"Women who own land jointly (% of women age 15-49): Q2 is the percentage of women age 15-49 who only jointly own a land, which legally registered with their name or cannot be sold without their signature, with someone else. \\\"Only jointly\\\" implies the woman doesn’t own a land on her own, but instead jointly owns one with someone else. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDJT.FE.Q3.ZS\",\"Women who own land jointly (% of women age 15-49): Q3\",\"Women who own land jointly (% of women age 15-49): Q3 is the percentage of women age 15-49 who only jointly own a land, which legally registered with their name or cannot be sold without their signature, with someone else. \\\"Only jointly\\\" implies the woman doesn’t own a land on her own, but instead jointly owns one with someone else. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDJT.FE.Q4.ZS\",\"Women who own land jointly (% of women age 15-49): Q4\",\"Women who own land jointly (% of women age 15-49): Q4 is the percentage of women age 15-49 who only jointly own a land, which legally registered with their name or cannot be sold without their signature, with someone else. \\\"Only jointly\\\" implies the woman doesn’t own a land on her own, but instead jointly owns one with someone else. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDJT.FE.Q5.ZS\",\"Women who own land jointly (% of women age 15-49): Q5 (highest)\",\"Women who own land jointly (% of women age 15-49): Q5 (highest) is the percentage of women age 15-49 who only jointly own a land, which legally registered with their name or cannot be sold without their signature, with someone else. \\\"Only jointly\\\" implies the woman doesn’t own a land on her own, but instead jointly owns one with someone else. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDJT.FE.ZS\",\"Women who own land jointly (% of women age 15-49)\",\"Women who own land jointly (% of women age 15-49) is the percentage of women age 15-49 who only jointly own a land, which legally registered with their name or cannot be sold without their signature, with someone else. \\\"Only jointly\\\" implies the woman doesn’t own a land on her own, but instead jointly owns one with someone else.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDJT.MA.Q1.ZS\",\"Men who own land jointly (% of men): Q1 (lowest)\",\"Men who own land jointly (% of men): Q1 (lowest) is the percentage of men who only jointly own a land, which legally registered with their name or cannot be sold without their signature, with someone else. \\\"Only jointly\\\" implies the man doesn’t own a land on his own, but instead jointly owns one with someone else. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDJT.MA.Q2.ZS\",\"Men who own land jointly (% of men): Q2\",\"Men who own land jointly (% of men): Q2 is the percentage of men who only jointly own a land, which legally registered with their name or cannot be sold without their signature, with someone else. \\\"Only jointly\\\" implies the man doesn’t own a land on his own, but instead jointly owns one with someone else. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDJT.MA.Q3.ZS\",\"Men who own land jointly (% of men): Q3\",\"Men who own land jointly (% of men): Q3 is the percentage of men who only jointly own a land, which legally registered with their name or cannot be sold without their signature, with someone else. \\\"Only jointly\\\" implies the man doesn’t own a land on his own, but instead jointly owns one with someone else. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDJT.MA.Q4.ZS\",\"Men who own land jointly (% of men): Q4\",\"Men who own land jointly (% of men): Q4 is the percentage of men who only jointly own a land, which legally registered with their name or cannot be sold without their signature, with someone else. \\\"Only jointly\\\" implies the man doesn’t own a land on his own, but instead jointly owns one with someone else. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDJT.MA.Q5.ZS\",\"Men who own land jointly (% of men): Q5 (highest)\",\"Men who own land jointly (% of men): Q5 (highest) is the percentage of men who only jointly own a land, which legally registered with their name or cannot be sold without their signature, with someone else. \\\"Only jointly\\\" implies the man doesn’t own a land on his own, but instead jointly owns one with someone else. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDJT.MA.ZS\",\"Men who own land jointly (% of men)\",\"Men who own land jointly (% of men) is the percentage of men who only jointly own a land, which legally registered with their name or cannot be sold without their signature, with someone else. \\\"Only jointly\\\" implies the man doesn’t own a land on his own, but instead jointly owns one with someone else.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDNO.FE.Q1.ZS\",\"Women who do not own land (% of women age 15-49): Q1 (lowest)\",\"Women who do not own land (% of women age 15-49): Q1 (lowest) is the percentage of women age 15-49 who don’t own any land, which legally registered with their name or cannot be sold without their signature, either solely or jointly with someone else or both. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDNO.FE.Q2.ZS\",\"Women who do not own land (% of women age 15-49): Q2\",\"Women who do not own land (% of women age 15-49): Q2 is the percentage of women age 15-49 who don’t own any land, which legally registered with their name or cannot be sold without their signature, either solely or jointly with someone else or both. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDNO.FE.Q3.ZS\",\"Women who do not own land (% of women age 15-49): Q3\",\"Women who do not own land (% of women age 15-49): Q3 is the percentage of women age 15-49 who don’t own any land, which legally registered with their name or cannot be sold without their signature, either solely or jointly with someone else or both. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDNO.FE.Q4.ZS\",\"Women who do not own land (% of women age 15-49): Q4\",\"Women who do not own land (% of women age 15-49): Q4 is the percentage of women age 15-49 who don’t own any land, which legally registered with their name or cannot be sold without their signature, either solely or jointly with someone else or both. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDNO.FE.Q5.ZS\",\"Women who do not own land (% of women age 15-49): Q5 (highest)\",\"Women who do not own land (% of women age 15-49): Q5 (highest) is the percentage of women age 15-49 who don’t own any land, which legally registered with their name or cannot be sold without their signature, either solely or jointly with someone else or both. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDNO.FE.ZS\",\"Women who do not own land (% of women age 15-49)\",\"Women who do not own land (% of women age 15-49) is the percentage of women age 15-49 who don’t own any land, which legally registered with their name or cannot be sold without their signature, either solely or jointly with someone else or both.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDNO.MA.Q1.ZS\",\"Men who do not own land (% of men): Q1 (lowest)\",\"Men who do not own land (% of men): Q1 (lowest) is the percentage of men who don’t own any land, which legally registered with their name or cannot be sold without their signature, either solely or jointly with someone else or both. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDNO.MA.Q2.ZS\",\"Men who do not own land (% of men): Q2\",\"Men who do not own land (% of men): Q2 is the percentage of men who don’t own any land, which legally registered with their name or cannot be sold without their signature, either solely or jointly with someone else or both. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDNO.MA.Q3.ZS\",\"Men who do not own land (% of men): Q3\",\"Men who do not own land (% of men): Q3 is the percentage of men who don’t own any land, which legally registered with their name or cannot be sold without their signature, either solely or jointly with someone else or both. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDNO.MA.Q4.ZS\",\"Men who do not own land (% of men): Q4\",\"Men who do not own land (% of men): Q4 is the percentage of men who don’t own any land, which legally registered with their name or cannot be sold without their signature, either solely or jointly with someone else or both. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDNO.MA.Q5.ZS\",\"Men who do not own land (% of men): Q5 (highest)\",\"Men who do not own land (% of men): Q5 (highest) is the percentage of men who don’t own any land, which legally registered with their name or cannot be sold without their signature, either solely or jointly with someone else or both. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.LDNO.MA.ZS\",\"Men who do not own land (% of men)\",\"Men who do not own land (% of men) is the percentage of men who don’t own any land, which legally registered with their name or cannot be sold without their signature, either solely or jointly with someone else or both.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.OWN.PRRT.MR\",\"Married men and married women have equal ownership rights to property (1=yes; 0=no)\",\"Married men and married women have equal ownership rights to property is whether both married men and married women have the same ownership rights to property. Ownership rights as used here covers the ability to manage, control, administer, access, encumber, receive, dispose of and transfer property. The answer is “Yes” when there is no specific legal restriction related to property applied to married women or men based on gender. The answer is “No” when there are gender differences in the legal treatment of spousal property, for example, if husbands are granted administrative control over marital property.\",\"Gender Statistics\",\"World Bank, Women, Business and the Law.\"\n\"SG.POP.MIGR.FE.ZS\",\"Female migrants (% of international migrant stock)\",\"Percentage of female migrants out of total international migrant stock. International migrant stock is the number of people born in a country other than that in which they live. It also includes refugees.\",\"Gender Statistics\",\"United Nations Population Division, Trends in International Migrant Stock: 2015 Revision.\"\n\"SG.RSX.BRTH.Q1.ZS\",\"Women who believe a wife is justified refusing sex with her husband if she has recently given birth (%): Q1 (lowest)\",\"Percentage of women aged 15-49 who believe that a wife is justified in refusing to have sex with her husband if she has recently given birth. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.RSX.BRTH.Q2.ZS\",\"Women who believe a wife is justified refusing sex with her husband if she has recently given birth (%): Q2\",\"Percentage of women aged 15-49 who believe that a wife is justified in refusing to have sex with her husband if she has recently given birth. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.RSX.BRTH.Q3.ZS\",\"Women who believe a wife is justified refusing sex with her husband if she has recently given birth (%): Q3\",\"Percentage of women aged 15-49 who believe that a wife is justified in refusing to have sex with her husband if she has recently given birth. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.RSX.BRTH.Q4.ZS\",\"Women who believe a wife is justified refusing sex with her husband if she has recently given birth (%): Q4\",\"Percentage of women aged 15-49 who believe that a wife is justified in refusing to have sex with her husband if she has recently given birth. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.RSX.BRTH.Q5.ZS\",\"Women who believe a wife is justified refusing sex with her husband if she has recently given birth (%): Q5 (highest)\",\"Percentage of women aged 15-49 who believe that a wife is justified in refusing to have sex with her husband if she has recently given birth. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.RSX.BRTH.ZS\",\"Women who believe a wife is justified refusing sex with her husband if she has recently given birth (%)\",\"Percentage of women aged 15-49 who believe that a wife is justified in refusing to have sex with her husband if she has recently given birth.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.RSX.NORS.Q1.ZS\",\"Women who believe a wife is justified refusing sex with her husband for none of the reasons (%): Q1 (lowest)\",\"Percentage of women aged 15-49 who believe that a wife is justified in refusing to have sex with her husband for none of the reasons: husband has sexually transmitted disease, husband has sex with other women, recently given birth, tired or not in the mood. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.RSX.NORS.Q2.ZS\",\"Women who believe a wife is justified refusing sex with her husband for none of the reasons (%): Q2\",\"Percentage of women aged 15-49 who believe that a wife is justified in refusing to have sex with her husband for none of the reasons: husband has sexually transmitted disease, husband has sex with other women, recently given birth, tired or not in the mood. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.RSX.NORS.Q3.ZS\",\"Women who believe a wife is justified refusing sex with her husband for none of the reasons (%): Q3\",\"Percentage of women aged 15-49 who believe that a wife is justified in refusing to have sex with her husband for none of the reasons: husband has sexually transmitted disease, husband has sex with other women, recently given birth, tired or not in the mood. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.RSX.NORS.Q4.ZS\",\"Women who believe a wife is justified refusing sex with her husband for none of the reasons (%): Q4\",\"Percentage of women aged 15-49 who believe that a wife is justified in refusing to have sex with her husband for none of the reasons: husband has sexually transmitted disease, husband has sex with other women, recently given birth, tired or not in the mood. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.RSX.NORS.Q5.ZS\",\"Women who believe a wife is justified refusing sex with her husband for none of the reasons (%): Q5 (highest)\",\"Percentage of women aged 15-49 who believe that a wife is justified in refusing to have sex with her husband for none of the reasons: husband has sexually transmitted disease, husband has sex with other women, recently given birth, tired or not in the mood. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.RSX.NORS.ZS\",\"Women who believe a wife is justified refusing sex with her husband for none of the reasons (%)\",\"Percentage of women aged 15-49 who believe that a wife is justified in refusing to have sex with her husband for none of the reasons: husband has sexually transmitted disease, husband has sex with other women, recently given birth, tired or not in the mood.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.RSX.REAS.Q1.ZS\",\"Women who believe a wife is justified refusing sex with her husband for all of the reasons (%): Q1 (lowest)\",\"Percentage of women aged 15-49 who believe that a wife is justified in refusing to have sex with her husband for all of the reasons: husband has sexually transmitted disease, husband has sex with other women, recently given birth, tired or not in the mood. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.RSX.REAS.Q2.ZS\",\"Women who believe a wife is justified refusing sex with her husband for all of the reasons (%): Q2\",\"Percentage of women aged 15-49 who believe that a wife is justified in refusing to have sex with her husband for all of the reasons: husband has sexually transmitted disease, husband has sex with other women, recently given birth, tired or not in the mood. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.RSX.REAS.Q3.ZS\",\"Women who believe a wife is justified refusing sex with her husband for all of the reasons (%): Q3\",\"Percentage of women aged 15-49 who believe that a wife is justified in refusing to have sex with her husband for all of the reasons: husband has sexually transmitted disease, husband has sex with other women, recently given birth, tired or not in the mood. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.RSX.REAS.Q4.ZS\",\"Women who believe a wife is justified refusing sex with her husband for all of the reasons (%): Q4\",\"Percentage of women aged 15-49 who believe that a wife is justified in refusing to have sex with her husband for all of the reasons: husband has sexually transmitted disease, husband has sex with other women, recently given birth, tired or not in the mood. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.RSX.REAS.Q5.ZS\",\"Women who believe a wife is justified refusing sex with her husband for all of the reasons (%): Q5 (highest)\",\"Percentage of women aged 15-49 who believe that a wife is justified in refusing to have sex with her husband for all of the reasons: husband has sexually transmitted disease, husband has sex with other women, recently given birth, tired or not in the mood. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.RSX.REAS.ZS\",\"Women who believe a wife is justified refusing sex with her husband for all of the reasons (%)\",\"Percentage of women aged 15-49 who believe that a wife is justified in refusing to have sex with her husband for all of the reasons: husband has sexually transmitted disease, husband has sex with other women, recently given birth, tired or not in the mood.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.RSX.SXOT.Q1.ZS\",\"Women who believe a wife is justified refusing sex with her husband if she knows he has sex with other women (%): Q1 (lowest)\",\"Percentage of women aged 15-49 who believe that a wife is justified in refusing to have sex with her husband if she knows husband has sex with other women. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.RSX.SXOT.Q2.ZS\",\"Women who believe a wife is justified refusing sex with her husband if she knows he has sex with other women (%): Q2\",\"Percentage of women aged 15-49 who believe that a wife is justified in refusing to have sex with her husband if she knows husband has sex with other women. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.RSX.SXOT.Q3.ZS\",\"Women who believe a wife is justified refusing sex with her husband if she knows he has sex with other women (%): Q3\",\"Percentage of women aged 15-49 who believe that a wife is justified in refusing to have sex with her husband if she knows husband has sex with other women. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.RSX.SXOT.Q4.ZS\",\"Women who believe a wife is justified refusing sex with her husband if she knows he has sex with other women (%): Q4\",\"Percentage of women aged 15-49 who believe that a wife is justified in refusing to have sex with her husband if she knows husband has sex with other women. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.RSX.SXOT.Q5.ZS\",\"Women who believe a wife is justified refusing sex with her husband if she knows he has sex with other women (%): Q5 (highest)\",\"Percentage of women aged 15-49 who believe that a wife is justified in refusing to have sex with her husband if she knows husband has sex with other women. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.RSX.SXOT.ZS\",\"Women who believe a wife is justified refusing sex with her husband if she knows he has sex with other women (%)\",\"Percentage of women aged 15-49 who believe that a wife is justified in refusing to have sex with her husband if she knows husband has sex with other women.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.RSX.TIRD.Q1.ZS\",\"Women who believe a wife is justified refusing sex with her husband if she is tired or not in the mood (%): Q1 (lowest)\",\"Percentage of women aged 15-49 who believe that a wife is justified in refusing to have sex with her husband if she is tired or not in the mood. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.RSX.TIRD.Q2.ZS\",\"Women who believe a wife is justified refusing sex with her husband if she is tired or not in the mood (%): Q2\",\"Percentage of women aged 15-49 who believe that a wife is justified in refusing to have sex with her husband if she is tired or not in the mood. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.RSX.TIRD.Q3.ZS\",\"Women who believe a wife is justified refusing sex with her husband if she is tired or not in the mood (%): Q3\",\"Percentage of women aged 15-49 who believe that a wife is justified in refusing to have sex with her husband if she is tired or not in the mood. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.RSX.TIRD.Q4.ZS\",\"Women who believe a wife is justified refusing sex with her husband if she is tired or not in the mood (%): Q4\",\"Percentage of women aged 15-49 who believe that a wife is justified in refusing to have sex with her husband if she is tired or not in the mood. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.RSX.TIRD.Q5.ZS\",\"Women who believe a wife is justified refusing sex with her husband if she is tired or not in the mood (%): Q5 (highest)\",\"Percentage of women aged 15-49 who believe that a wife is justified in refusing to have sex with her husband if she is tired or not in the mood. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.RSX.TIRD.ZS\",\"Women who believe a wife is justified refusing sex with her husband if she is tired or not in the mood (%)\",\"Percentage of women aged 15-49 who believe that a wife is justified in refusing to have sex with her husband if she is tired or not in the mood.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.RSX.TMDS.Q1.ZS\",\"Women who believe a wife is justified refusing sex with her husband if she knows he has sexually transmitted disease (%): Q1 (lowest)\",\"Percentage of women aged 15-49 who believe that a wife is justified in refusing to have sex with her husband if she knows husband has sexually transmitted disease. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.RSX.TMDS.Q2.ZS\",\"Women who believe a wife is justified refusing sex with her husband if she knows he has sexually transmitted disease (%): Q2\",\"Percentage of women aged 15-49 who believe that a wife is justified in refusing to have sex with her husband if she knows husband has sexually transmitted disease. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.RSX.TMDS.Q3.ZS\",\"Women who believe a wife is justified refusing sex with her husband if she knows he has sexually transmitted disease (%): Q3\",\"Percentage of women aged 15-49 who believe that a wife is justified in refusing to have sex with her husband if she knows husband has sexually transmitted disease. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.RSX.TMDS.Q4.ZS\",\"Women who believe a wife is justified refusing sex with her husband if she knows he has sexually transmitted disease (%): Q4\",\"Percentage of women aged 15-49 who believe that a wife is justified in refusing to have sex with her husband if she knows husband has sexually transmitted disease. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.RSX.TMDS.Q5.ZS\",\"Women who believe a wife is justified refusing sex with her husband if she knows he has sexually transmitted disease (%): Q5 (highest)\",\"Percentage of women aged 15-49 who believe that a wife is justified in refusing to have sex with her husband if she knows husband has sexually transmitted disease. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.RSX.TMDS.ZS\",\"Women who believe a wife is justified refusing sex with her husband if she knows he has sexually transmitted disease (%)\",\"Percentage of women aged 15-49 who believe that a wife is justified in refusing to have sex with her husband if she knows husband has sexually transmitted disease.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS)\"\n\"SG.VAW.ARGU.Q1.ZS\",\"Women who believe a husband is justified in beating his wife when she argues with him (%): Q1 (lowest)\",\"Percentage of women ages 15-49 who believe a husband/partner is justified in hitting or beating his wife/partner when she argues with him. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of November 2015.\\nMICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SG.VAW.ARGU.Q2.ZS\",\"Women who believe a husband is justified in beating his wife when she argues with him (%): Q2\",\"Percentage of women ages 15-49 who believe a husband/partner is justified in hitting or beating his wife/partner when she argues with him. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of November 2015.\\nMICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SG.VAW.ARGU.Q3.ZS\",\"Women who believe a husband is justified in beating his wife when she argues with him (%): Q3\",\"Percentage of women ages 15-49 who believe a husband/partner is justified in hitting or beating his wife/partner when she argues with him. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of November 2015.\\nMICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SG.VAW.ARGU.Q4.ZS\",\"Women who believe a husband is justified in beating his wife when she argues with him (%): Q4\",\"Percentage of women ages 15-49 who believe a husband/partner is justified in hitting or beating his wife/partner when she argues with him. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of November 2015.\\nMICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SG.VAW.ARGU.Q5.ZS\",\"Women who believe a husband is justified in beating his wife when she argues with him (%): Q5 (highest)\",\"Percentage of women ages 15-49 who believe a husband/partner is justified in hitting or beating his wife/partner when she argues with him. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of November 2015.\\nMICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SG.VAW.ARGU.ZS\",\"Women who believe a husband is justified in beating his wife when she argues with him (%)\",\"Percentage of women ages 15-49 who believe a husband/partner is justified in hitting or beating his wife/partner when she argues with him.\",\"World Development Indicators\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of November 2015.\\nMICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SG.VAW.BURN.Q1.ZS\",\"Women who believe a husband is justified in beating his wife when she burns the food (%): Q1 (lowest)\",\"Percentage of women ages 15-49 who believe a husband/partner is justified in hitting or beating his wife/partner when she burns the food. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of November 2015.\\nMICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SG.VAW.BURN.Q2.ZS\",\"Women who believe a husband is justified in beating his wife when she burns the food (%): Q2\",\"Percentage of women ages 15-49 who believe a husband/partner is justified in hitting or beating his wife/partner when she burns the food. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of November 2015.\\nMICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SG.VAW.BURN.Q3.ZS\",\"Women who believe a husband is justified in beating his wife when she burns the food (%): Q3\",\"Percentage of women ages 15-49 who believe a husband/partner is justified in hitting or beating his wife/partner when she burns the food. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of November 2015.\\nMICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SG.VAW.BURN.Q4.ZS\",\"Women who believe a husband is justified in beating his wife when she burns the food (%): Q4\",\"Percentage of women ages 15-49 who believe a husband/partner is justified in hitting or beating his wife/partner when she burns the food. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of November 2015.\\nMICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SG.VAW.BURN.Q5.ZS\",\"Women who believe a husband is justified in beating his wife when she burns the food (%): Q5 (highest)\",\"Percentage of women ages 15-49 who believe a husband/partner is justified in hitting or beating his wife/partner when she burns the food. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of November 2015.\\nMICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SG.VAW.BURN.ZS\",\"Women who believe a husband is justified in beating his wife when she burns the food (%)\",\"Percentage of women ages 15-49 who believe a husband/partner is justified in hitting or beating his wife/partner when she burns the food.\",\"World Development Indicators\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of November 2015.\\nMICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SG.VAW.GOES.Q1.ZS\",\"Women who believe a husband is justified in beating his wife when she goes out without telling him (%): Q1 (lowest)\",\"Percentage of women ages 15-49 who believe a husband/partner is justified in hitting or beating his wife/partner when she goes out without telling him. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of November 2015.\\nMICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SG.VAW.GOES.Q2.ZS\",\"Women who believe a husband is justified in beating his wife when she goes out without telling him (%): Q2\",\"Percentage of women ages 15-49 who believe a husband/partner is justified in hitting or beating his wife/partner when she goes out without telling him. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of November 2015.\\nMICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SG.VAW.GOES.Q3.ZS\",\"Women who believe a husband is justified in beating his wife when she goes out without telling him (%): Q3\",\"Percentage of women ages 15-49 who believe a husband/partner is justified in hitting or beating his wife/partner when she goes out without telling him. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of November 2015.\\nMICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SG.VAW.GOES.Q4.ZS\",\"Women who believe a husband is justified in beating his wife when she goes out without telling him (%): Q4\",\"Percentage of women ages 15-49 who believe a husband/partner is justified in hitting or beating his wife/partner when she goes out without telling him. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of November 2015.\\nMICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SG.VAW.GOES.Q5.ZS\",\"Women who believe a husband is justified in beating his wife when she goes out without telling him (%): Q5 (highest)\",\"Percentage of women ages 15-49 who believe a husband/partner is justified in hitting or beating his wife/partner when she goes out without telling him. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of November 2015.\\nMICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SG.VAW.GOES.ZS\",\"Women who believe a husband is justified in beating his wife when she goes out without telling him (%)\",\"Percentage of women ages 15-49 who believe a husband/partner is justified in hitting or beating his wife/partner when she goes out without telling him.\",\"World Development Indicators\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of November 2015.\\nMICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SG.VAW.MARR.ZS\",\"Spousal physical or sexual violence in last 12 months (%)\",\"Spousal physical or sexual violence is the percentage of ever-married women aged 15-49 who have experienced physical or sexual violence in the last 12 months committed by their husband or partner.\",\"Sustainable Development Goals \",\"Demographic and Health Surveys (DHS).\"\n\"SG.VAW.NEGL.Q1.ZS\",\"Women who believe a husband is justified in beating his wife when she neglects the children (%): Q1 (lowest)\",\"Percentage of women ages 15-49 who believe a husband/partner is justified in hitting or beating his wife/partner when she neglects the children. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of November 2015.\\nMICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SG.VAW.NEGL.Q2.ZS\",\"Women who believe a husband is justified in beating his wife when she neglects the children (%): Q2\",\"Percentage of women ages 15-49 who believe a husband/partner is justified in hitting or beating his wife/partner when she neglects the children. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of November 2015.\\nMICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SG.VAW.NEGL.Q3.ZS\",\"Women who believe a husband is justified in beating his wife when she neglects the children (%): Q3\",\"Percentage of women ages 15-49 who believe a husband/partner is justified in hitting or beating his wife/partner when she neglects the children. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of November 2015.\\nMICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SG.VAW.NEGL.Q4.ZS\",\"Women who believe a husband is justified in beating his wife when she neglects the children (%): Q4\",\"Percentage of women ages 15-49 who believe a husband/partner is justified in hitting or beating his wife/partner when she neglects the children. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of November 2015.\\nMICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SG.VAW.NEGL.Q5.ZS\",\"Women who believe a husband is justified in beating his wife when she neglects the children (%): Q5 (highest)\",\"Percentage of women ages 15-49 who believe a husband/partner is justified in hitting or beating his wife/partner when she neglects the children. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of November 2015.\\nMICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SG.VAW.NEGL.ZS\",\"Women who believe a husband is justified in beating his wife when she neglects the children (%)\",\"Percentage of women ages 15-49 who believe a husband/partner is justified in hitting or beating his wife/partner when she neglects the children.\",\"World Development Indicators\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of November 2015.\\nMICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SG.VAW.REAS.Q1.ZS\",\"Women who believe a husband is justified in beating his wife (any of five reasons) (%): Q1 (lowest)\",\"Percentage of women ages 15-49 who believe a husband/partner is justified in hitting or beating his wife/partner for any of the following five reasons: argues with him; refuses to have sex; burns the food; goes out without telling him; or when she neglects the children. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of November 2015.\\nMICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SG.VAW.REAS.Q2.ZS\",\"Women who believe a husband is justified in beating his wife (any of five reasons) (%): Q2\",\"Percentage of women ages 15-49 who believe a husband/partner is justified in hitting or beating his wife/partner for any of the following five reasons: argues with him; refuses to have sex; burns the food; goes out without telling him; or when she neglects the children. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of November 2015.\\nMICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SG.VAW.REAS.Q3.ZS\",\"Women who believe a husband is justified in beating his wife (any of five reasons) (%): Q3\",\"Percentage of women ages 15-49 who believe a husband/partner is justified in hitting or beating his wife/partner for any of the following five reasons: argues with him; refuses to have sex; burns the food; goes out without telling him; or when she neglects the children. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of November 2015.\\nMICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SG.VAW.REAS.Q4.ZS\",\"Women who believe a husband is justified in beating his wife (any of five reasons) (%): Q4\",\"Percentage of women ages 15-49 who believe a husband/partner is justified in hitting or beating his wife/partner for any of the following five reasons: argues with him; refuses to have sex; burns the food; goes out without telling him; or when she neglects the children. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of November 2015.\\nMICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SG.VAW.REAS.Q5.ZS\",\"Women who believe a husband is justified in beating his wife (any of five reasons) (%): Q5 (highest)\",\"Percentage of women ages 15-49 who believe a husband/partner is justified in hitting or beating his wife/partner for any of the following five reasons: argues with him; refuses to have sex; burns the food; goes out without telling him; or when she neglects the children. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of November 2015.\\nMICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SG.VAW.REAS.ZS\",\"Women who believe a husband is justified in beating his wife (any of five reasons) (%)\",\"Percentage of women ages 15-49 who believe a husband/partner is justified in hitting or beating his wife/partner for any of the following five reasons: argues with him; refuses to have sex; burns the food; goes out without telling him; or when she neglects the children.\",\"World Development Indicators\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of November 2015.\\nMICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SG.VAW.REFU.Q1.ZS\",\"Women who believe a husband is justified in beating his wife when she refuses sex with him (%): Q1 (lowest)\",\"Percentage of women ages 15-49 who believe a husband/partner is justified in hitting or beating his wife/partner when she refuses sex with him. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of November 2015.\\nMICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SG.VAW.REFU.Q2.ZS\",\"Women who believe a husband is justified in beating his wife when she refuses sex with him (%): Q2\",\"Percentage of women ages 15-49 who believe a husband/partner is justified in hitting or beating his wife/partner when she refuses sex with him. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of November 2015.\\nMICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SG.VAW.REFU.Q3.ZS\",\"Women who believe a husband is justified in beating his wife when she refuses sex with him (%): Q3\",\"Percentage of women ages 15-49 who believe a husband/partner is justified in hitting or beating his wife/partner when she refuses sex with him. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of November 2015.\\nMICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SG.VAW.REFU.Q4.ZS\",\"Women who believe a husband is justified in beating his wife when she refuses sex with him (%): Q4\",\"Percentage of women ages 15-49 who believe a husband/partner is justified in hitting or beating his wife/partner when she refuses sex with him. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of November 2015.\\nMICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SG.VAW.REFU.Q5.ZS\",\"Women who believe a husband is justified in beating his wife when she refuses sex with him (%): Q5 (highest)\",\"Percentage of women ages 15-49 who believe a husband/partner is justified in hitting or beating his wife/partner when she refuses sex with him. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of November 2015.\\nMICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SG.VAW.REFU.ZS\",\"Women who believe a husband is justified in beating his wife when she refuses sex with him (%)\",\"Percentage of women ages 15-49 who believe a husband/partner is justified in hitting or beating his wife/partner when she refuses sex with him.\",\"World Development Indicators\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of November 2015.\\nMICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SH.ACS.ALON.Q1.ZS\",\"Problems in accessing health care (not wanting to go alone) (% of women): Q1 (lowest)\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.ALON.Q2.ZS\",\"Problems in accessing health care (not wanting to go alone) (% of women): Q2\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.ALON.Q3.ZS\",\"Problems in accessing health care (not wanting to go alone) (% of women): Q3\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.ALON.Q4.ZS\",\"Problems in accessing health care (not wanting to go alone) (% of women): Q4\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.ALON.Q5.ZS\",\"Problems in accessing health care (not wanting to go alone) (% of women): Q5 (highest)\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.DIST.Q1.ZS\",\"Problems in accessing health care (distance to health facility) (% of women): Q1 (lowest)\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.DIST.Q2.ZS\",\"Problems in accessing health care (distance to health facility) (% of women): Q2\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.DIST.Q3.ZS\",\"Problems in accessing health care (distance to health facility) (% of women): Q3\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.DIST.Q4.ZS\",\"Problems in accessing health care (distance to health facility) (% of women): Q4\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.DIST.Q5.ZS\",\"Problems in accessing health care (distance to health facility) (% of women): Q5 (highest)\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.MONY.Q1.ZS\",\"Problems in accessing health care (getting money for treatment) (% of women): Q1 (lowest)\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.MONY.Q2.ZS\",\"Problems in accessing health care (getting money for treatment) (% of women): Q2\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.MONY.Q3.ZS\",\"Problems in accessing health care (getting money for treatment) (% of women): Q3\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.MONY.Q4.ZS\",\"Problems in accessing health care (getting money for treatment) (% of women): Q4\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.MONY.Q5.ZS\",\"Problems in accessing health care (getting money for treatment) (% of women): Q5 (highest)\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.NOFP.Q1.ZS\",\"Problems in accessing health care (concern there may not be a female provider) (% of women): Q1 (lowest)\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.NOFP.Q2.ZS\",\"Problems in accessing health care (concern there may not be a female provider) (% of women): Q2\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.NOFP.Q3.ZS\",\"Problems in accessing health care (concern there may not be a female provider) (% of women): Q3\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.NOFP.Q4.ZS\",\"Problems in accessing health care (concern there may not be a female provider) (% of women): Q4\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.NOFP.Q5.ZS\",\"Problems in accessing health care (concern there may not be a female provider) (% of women): Q5 (highest)\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.PERM.Q1.ZS\",\"Problems in accessing health care (getting permission to go for treatment) (% of women): Q1 (lowest)\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.PERM.Q2.ZS\",\"Problems in accessing health care (getting permission to go for treatment) (% of women): Q2\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.PERM.Q3.ZS\",\"Problems in accessing health care (getting permission to go for treatment) (% of women): Q3\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.PERM.Q4.ZS\",\"Problems in accessing health care (getting permission to go for treatment) (% of women): Q4\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.PERM.Q5.ZS\",\"Problems in accessing health care (getting permission to go for treatment) (% of women): Q5 (highest)\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.PROB.Q1.ZS\",\"Problems in accessing health care (any of the specified problems) (% of women): Q1 (lowest)\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.PROB.Q2.ZS\",\"Problems in accessing health care (any of the specified problems) (% of women): Q2\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.PROB.Q3.ZS\",\"Problems in accessing health care (any of the specified problems) (% of women): Q3\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.PROB.Q4.ZS\",\"Problems in accessing health care (any of the specified problems) (% of women): Q4\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.PROB.Q5.ZS\",\"Problems in accessing health care (any of the specified problems) (% of women): Q5 (highest)\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.TRAN.Q1.ZS\",\"Problems in accessing health care (having to take transport) (% of women): Q1 (lowest)\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.TRAN.Q2.ZS\",\"Problems in accessing health care (having to take transport) (% of women): Q2\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.TRAN.Q3.ZS\",\"Problems in accessing health care (having to take transport) (% of women): Q3\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.TRAN.Q4.ZS\",\"Problems in accessing health care (having to take transport) (% of women): Q4\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.TRAN.Q5.ZS\",\"Problems in accessing health care (having to take transport) (% of women): Q5 (highest)\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.WHER.Q1.ZS\",\"Problems in accessing health care (knowing where to go for treatment) (% of women): Q1 (lowest)\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.WHER.Q2.ZS\",\"Problems in accessing health care (knowing where to go for treatment) (% of women): Q2\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.WHER.Q3.ZS\",\"Problems in accessing health care (knowing where to go for treatment) (% of women): Q3\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.WHER.Q4.ZS\",\"Problems in accessing health care (knowing where to go for treatment) (% of women): Q4\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ACS.WHER.Q5.ZS\",\"Problems in accessing health care (knowing where to go for treatment) (% of women): Q5 (highest)\",\"Problems in accessing health care: Percentage of women who report they have big problems in accessing health care for themselves when they are sick, by type of problem. The types of problem specified are; knowing where to go for treatment, getting permission to go for treatment, getting money for treatment, distance to health facility, having to take transport, not wanting to go alone, and concern there may not be a female provider.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.ANM.ALLW.ZS\",\"Prevalence of anemia among women of reproductive age (% of women ages 15-49)\",\"Prevalence of anemia among women of reproductive age refers to the combined prevalence of both non-pregnant with haemoglobin levels below 12 g/dL and pregnant women with haemoglobin levels below 11 g/dL.\",\"World Development Indicators\",\"Stevens GA et al. Global, regional, and national trends in hemoglobin concentration and prevalence of total and severe anemia in children and pregnant and non-pregnant women for 1995-2011: a systematic analysis of population-representative data. The Lancet Global Health 2013;1:e16-e25.\"\n\"SH.ANM.CHLD.ZS\",\"Prevalence of anemia among children (% of children under 5)\",\"Prevalence of anemia, children under age 5, is the percentage of children under age 5 whose hemoglobin level is less than 110 grams per liter at sea level.\",\"World Development Indicators\",\"1. WHO. Global anemia prevalence and trends 1995-2011. Geneva: World Health Organization; forthcoming.  2. Stevens GA, Finucane MM, De-Regil LM, et al. Global, regional, and national trends in hemoglobin concentration and prevalence of total and severe anemia in children and pregnant and non-pregnant women for 1995-2011: a systematic analysis of population-representative data. The Lancet Global Health 2013; 1(1): e16-e25.\"\n\"SH.ANM.NPRG.ZS\",\"Prevalence of anemia among non-pregnant women (% of women ages 15-49)\",\"Prevalence of anemia, non-pregnant women, is the percentage of non-pregnant women whose hemoglobin level is less than 120 grams per liter at sea level.\",\"World Development Indicators\",\"Stevens GA, Finucane MM, De-Regil LM, et al. Global, regional, and national trends in hemoglobin concentration and prevalence of total and severe anemia in children and pregnant and non-pregnant women for 1995-2011: a systematic analysis of population-representative data. The Lancet Global Health 2013; 1(1): e16-e25.\"\n\"SH.CON.1524.FE.ZS\",\"Condom use, population ages 15-24, female (% of females ages 15-24)\",\"Condom use is the percentage of the population ages 15-24 who used a condom at last intercourse in the last 12 months.\",\"World Development Indicators\",\"Demographic and Health Surveys, and UNAIDS.\"\n\"SH.CON.1524.MA.ZS\",\"Condom use, population ages 15-24, male (% of males ages 15-24)\",\"Condom use is the percentage of the population ages 15-24 who used a condom at last intercourse in the last 12 months.\",\"World Development Indicators\",\"Demographic and Health Surveys, and UNAIDS.\"\n\"SH.CON.AIDS.FE.ZS\",\"Condom use with non regular partner, % adults(15-49), female\",\"Demographic and Health Surveys, and UNAIDS.\",\"Health Nutrition and Population Statistics\",\"Demographic and Health Surveys, and UNAIDS.\"\n\"SH.CON.AIDS.MA.ZS\",\"Condom use with non regular partner, % adults(15-49), male\",\"Demographic and Health Surveys, and UNAIDS.\",\"Health Nutrition and Population Statistics\",\"Demographic and Health Surveys, and UNAIDS.\"\n\"SH.DR.TOTL\",\"Number of Doctors\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Village Census (PODES)\"\n\"SH.DTH.COMM.1534.FE.ZS\",\"Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 15-34, female (% relevant age)\",\"Cause of death refers to the share of all deaths for the relevant age by underlying causes. Communicable diseases and maternal, prenatal and nutrition conditions include infectious and parasitic diseases, respiratory infections, and nutritional deficiencies such as underweight and stunting.\",\"Gender Statistics\",\"Derived based on the data from WHO's World Health Statistics.\"\n\"SH.DTH.COMM.1534.MA.ZS\",\"Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 15-34, male (% relevant age)\",\"Cause of death refers to the share of all deaths for the relevant age by underlying causes. Communicable diseases and maternal, prenatal and nutrition conditions include infectious and parasitic diseases, respiratory infections, and nutritional deficiencies such as underweight and stunting.\",\"Gender Statistics\",\"Derived based on the data from WHO's World Health Statistics.\"\n\"SH.DTH.COMM.3559.FE.ZS\",\"Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 35-59, female (% relevant age)\",\"Cause of death refers to the share of all deaths for the relevant age by underlying causes. Communicable diseases and maternal, prenatal and nutrition conditions include infectious and parasitic diseases, respiratory infections, and nutritional deficiencies such as underweight and stunting.\",\"Gender Statistics\",\"Derived based on the data from WHO's World Health Statistics.\"\n\"SH.DTH.COMM.3559.MA.ZS\",\"Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 35-59, male (% relevant age)\",\"Cause of death refers to the share of all deaths for the relevant age by underlying causes. Communicable diseases and maternal, prenatal and nutrition conditions include infectious and parasitic diseases, respiratory infections, and nutritional deficiencies such as underweight and stunting.\",\"Gender Statistics\",\"Derived based on the data from WHO's World Health Statistics.\"\n\"SH.DTH.COMM.ZS\",\"Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions (% of total)\",\"Cause of death refers to the share of all deaths for all ages by underlying causes. Communicable diseases and maternal, prenatal and nutrition conditions include infectious and parasitic diseases, respiratory infections, and nutritional deficiencies such as underweight and stunting.\",\"World Development Indicators\",\"Derived based on the data from WHO's World Health Statistics.\"\n\"SH.DTH.IMRT\",\"Number of infant deaths\",\"Number of infants dying before reaching one year of age.\",\"World Development Indicators\",\"Estimates developed by the UN Inter-agency Group for Child Mortality Estimation (UNICEF, WHO, World Bank, UN DESA Population Division) at www.childmortality.org.\"\n\"SH.DTH.INJR.1534.FE.ZS\",\"Cause of death, by injury, ages 15-34, female (% relevant age)\",\"Cause of death refers to the share of all deaths for the relevant age by underlying causes. Injuries include unintentional and intentional injuries.\",\"Gender Statistics\",\"Derived based on the data from WHO's World Health Statistics.\"\n\"SH.DTH.INJR.1534.MA.ZS\",\"Cause of death, by injury, ages 15-34, male (% relevant age)\",\"Cause of death refers to the share of all deaths for the relevant age by underlying causes. Injuries include unintentional and intentional injuries.\",\"Gender Statistics\",\"Derived based on the data from WHO's World Health Statistics.\"\n\"SH.DTH.INJR.3559.FE.ZS\",\"Cause of death, by injury, ages 35-59, female (% relevant age)\",\"Cause of death refers to the share of all deaths for the relevant age by underlying causes. Injuries include unintentional and intentional injuries.\",\"Gender Statistics\",\"Derived based on the data from WHO's World Health Statistics.\"\n\"SH.DTH.INJR.3559.MA.ZS\",\"Cause of death, by injury, ages 35-59, male (% relevant age)\",\"Cause of death refers to the share of all deaths for the relevant age by underlying causes. Injuries include unintentional and intentional injuries.\",\"Gender Statistics\",\"Derived based on the data from WHO's World Health Statistics.\"\n\"SH.DTH.INJR.ZS\",\"Cause of death, by injury (% of total)\",\"Cause of death refers to the share of all deaths for all ages by underlying causes. Injuries include unintentional and intentional injuries.\",\"World Development Indicators\",\"Derived based on the data from WHO's World Health Statistics.\"\n\"SH.DTH.MORT\",\"Number of under-five deaths\",\"Number of children dying before reaching age five.\",\"World Development Indicators\",\"Estimates developed by the UN Inter-agency Group for Child Mortality Estimation (UNICEF, WHO, World Bank, UN DESA Population Division) at www.childmortality.org.\"\n\"SH.DTH.NCOM.1534.FE.ZS\",\"Cause of death, by non-communicable diseases, ages 15-34, female (% relevant age)\",\"Cause of death refers to the share of all deaths for the relevant age by underlying causes. Non-communicable diseases include cancer, diabetes mellitus, cardiovascular diseases, digestive diseases, skin diseases, musculoskeletal diseases, and congenital anomalies.\",\"Gender Statistics\",\"Derived based on the data from WHO's World Health Statistics.\"\n\"SH.DTH.NCOM.1534.MA.ZS\",\"Cause of death, by non-communicable diseases, ages 15-34, male (% relevant age)\",\"Cause of death refers to the share of all deaths for the relevant age by underlying causes. Non-communicable diseases include cancer, diabetes mellitus, cardiovascular diseases, digestive diseases, skin diseases, musculoskeletal diseases, and congenital anomalies.\",\"Gender Statistics\",\"Derived based on the data from WHO's World Health Statistics.\"\n\"SH.DTH.NCOM.3559.FE.ZS\",\"Cause of death, by non-communicable diseases, ages 35-59, female (% relevant age)\",\"Cause of death refers to the share of all deaths for the relevant age by underlying causes. Non-communicable diseases include cancer, diabetes mellitus, cardiovascular diseases, digestive diseases, skin diseases, musculoskeletal diseases, and congenital anomalies.\",\"Gender Statistics\",\"Derived based on the data from WHO's World Health Statistics.\"\n\"SH.DTH.NCOM.3559.MA.ZS\",\"Cause of death, by non-communicable diseases, ages 35-59, male (% relevant age)\",\"Cause of death refers to the share of all deaths for the relevant age by underlying causes. Non-communicable diseases include cancer, diabetes mellitus, cardiovascular diseases, digestive diseases, skin diseases, musculoskeletal diseases, and congenital anomalies.\",\"Gender Statistics\",\"Derived based on the data from WHO's World Health Statistics.\"\n\"SH.DTH.NCOM.ZS\",\"Cause of death, by non-communicable diseases (% of total)\",\"Cause of death refers to the share of all deaths for all ages by underlying causes. Non-communicable diseases include cancer, diabetes mellitus, cardiovascular diseases, digestive diseases, skin diseases, musculoskeletal diseases, and congenital anomalies.\",\"World Development Indicators\",\"Derived based on the data from WHO's World Health Statistics.\"\n\"SH.DTH.NMRT\",\"Number of neonatal deaths\",\"Number of neonates dying before reaching 28 days of age.\",\"World Development Indicators\",\"Estimates developed by the UN Inter-agency Group for Child Mortality Estimation (UNICEF, WHO, World Bank, UN DESA Population Division) at www.childmortality.org.\"\n\"SH.DYN.AIDS\",\"Adults (ages 15+) living with HIV\",\"Adults living with HIV refers to the number of people ages 15-49 who are infected with HIV.\",\"Health Nutrition and Population Statistics\",\"UNAIDS estimates.\"\n\"SH.DYN.AIDS.DH\",\"AIDS estimated deaths (UNAIDS estimates)\",\"AIDS deaths are the estimated number of adults and children who died due to AIDS-related causes.\",\"Health Nutrition and Population Statistics\",\"UNAIDS estimates.\"\n\"SH.DYN.AIDS.FE.ZS\",\"Women's share of population ages 15+ living with HIV (%)\",\"Prevalence of HIV is the percentage of people who are infected with HIV. Female rate is as a percentage of the total population ages 15+ who are living with HIV.\",\"World Development Indicators\",\"UNAIDS estimates.\"\n\"SH.DYN.AIDS.HG.ZS\",\"HIV prevalence rate, adult 15-49 years (%; high estimate)\",\"Prevalence of HIV refers to the percentage of people ages 15-49 who are infected with HIV based on a high estimate. \",\"Africa Development Indicators\",\"UNAIDS and the WHO's Report on the Global AIDS Epidemic.\"\n\"SH.DYN.AIDS.LW.ZS\",\"HIV prevalence rate, adult 15-49 years (%; low estimate)\",\"Prevalence of HIV refers to the percentage of people ages 15-49 who are infected with HIV based on a low estimate.  \",\"Africa Development Indicators\",\"UNAIDS and the WHO's Report on the Global AIDS Epidemic.\"\n\"SH.DYN.AIDS.ZS\",\"Prevalence of HIV, total (% of population ages 15-49)\",\"Prevalence of HIV refers to the percentage of people ages 15-49 who are infected with HIV.\",\"World Development Indicators\",\"UNAIDS estimates.\"\n\"SH.DYN.CHLD.FE\",\"Mortality rate, female child (per 1,000 female children age one)\",\"Child mortality rate is the probability of dying between the exact ages of one and five, if subject to current age-specific mortality rates. The probability is expressed as a rate per 1,000.\",\"Africa Development Indicators\",\"Demographic and Health Surveys by ICF International, Multiple Indicators Cluster Surveys by UNICEF, Reproductive Health Surveys by U.S. Center for Disease Control, and Family Health Surveys by Pan Arab Project for Family Health. See footnotes for a source.\"\n\"SH.DYN.CHLD.MA\",\"Mortality rate, male child (per 1,000 male children age one)\",\"Child mortality rate is the probability of dying between the exact ages of one and five, if subject to current age-specific mortality rates. The probability is expressed as a rate per 1,000.\",\"Africa Development Indicators\",\"Demographic and Health Surveys by ICF International, Multiple Indicators Cluster Surveys by UNICEF, Reproductive Health Surveys by U.S. Center for Disease Control, and Family Health Surveys by Pan Arab Project for Family Health. See footnotes for a source.\"\n\"SH.DYN.MORT\",\"Mortality rate, under-5 (per 1,000 live births)\",\"Under-five mortality rate is the probability per 1,000 that a newborn baby will die before reaching age five, if subject to age-specific mortality rates of the specified year.\",\"World Development Indicators\",\"Estimates Developed by the UN Inter-agency Group for Child Mortality Estimation (UNICEF, WHO, World Bank, UN DESA Population Division) at www.childmortality.org. Projected data are from the United Nations Population Division's World Population Prospects; and may in some cases not be consistent with data before the current year.\"\n\"SH.DYN.MORT.FE\",\"Mortality rate, under-5, female (per 1,000 live births)\",\"Under-five mortality rate, female is the probability per 1,000 that a newborn female baby will die before reaching age five, if subject to female age-specific mortality rates of the specified year.\",\"World Development Indicators\",\"Estimates developed by the UN Inter-agency Group for Child Mortality Estimation (UNICEF, WHO, World Bank, UN DESA Population Division) at www.childmortality.org.\"\n\"SH.DYN.MORT.MA\",\"Mortality rate, under-5, male (per 1,000 live births)\",\"Under-five mortality rate, male is the probability per 1,000 that a newborn male baby will die before reaching age five, if subject to male age-specific mortality rates of the specified year.\",\"World Development Indicators\",\"Estimates developed by the UN Inter-agency Group for Child Mortality Estimation (UNICEF, WHO, World Bank, UN DESA Population Division) at www.childmortality.org.\"\n\"SH.DYN.MORT.Q1\",\"Under-5 mortality rate (per 1,000 live births): Q1 (lowest)\",\"Under-5 mortality rate: Number of deaths to children under age five years per 1000 live births, based on experience during the reference period before the survey. The reference period is ten years preceding the survey for DHS surveys, and the reference period varies for MICS surveys (often three to five years preceding the survey).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.DYN.MORT.Q2\",\"Under-5 mortality rate (per 1,000 live births): Q2\",\"Under-5 mortality rate: Number of deaths to children under age five years per 1000 live births, based on experience during the reference period before the survey. The reference period is ten years preceding the survey for DHS surveys, and the reference period varies for MICS surveys (often three to five years preceding the survey).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.DYN.MORT.Q3\",\"Under-5 mortality rate (per 1,000 live births): Q3\",\"Under-5 mortality rate: Number of deaths to children under age five years per 1000 live births, based on experience during the reference period before the survey. The reference period is ten years preceding the survey for DHS surveys, and the reference period varies for MICS surveys (often three to five years preceding the survey).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.DYN.MORT.Q4\",\"Under-5 mortality rate (per 1,000 live births): Q4\",\"Under-5 mortality rate: Number of deaths to children under age five years per 1000 live births, based on experience during the reference period before the survey. The reference period is ten years preceding the survey for DHS surveys, and the reference period varies for MICS surveys (often three to five years preceding the survey).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.DYN.MORT.Q5\",\"Under-5 mortality rate (per 1,000 live births): Q5 (highest)\",\"Under-5 mortality rate: Number of deaths to children under age five years per 1000 live births, based on experience during the reference period before the survey. The reference period is ten years preceding the survey for DHS surveys, and the reference period varies for MICS surveys (often three to five years preceding the survey).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.DYN.NMRT\",\"Mortality rate, neonatal (per 1,000 live births)\",\"Neonatal mortality rate is the number of neonates dying before reaching 28 days of age, per 1,000 live births in a given year.\",\"World Development Indicators\",\"Estimates developed by the UN Inter-agency Group for Child Mortality Estimation (UNICEF, WHO, World Bank, UN DESA Population Division) at www.childmortality.org.\"\n\"SH.FPL.ACPT.Q1.ZS\",\"Acceptability of media messages on family planning (% of women): Q1 (lowest)\",\"Acceptability of media messages on family planning: Percentage of all women who believe that it is acceptable to have messages about family planning on the radio or television.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.ACPT.Q2.ZS\",\"Acceptability of media messages on family planning (% of women): Q2\",\"Acceptability of media messages on family planning: Percentage of all women who believe that it is acceptable to have messages about family planning on the radio or television.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.ACPT.Q3.ZS\",\"Acceptability of media messages on family planning (% of women): Q3\",\"Acceptability of media messages on family planning: Percentage of all women who believe that it is acceptable to have messages about family planning on the radio or television.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.ACPT.Q4.ZS\",\"Acceptability of media messages on family planning (% of women): Q4\",\"Acceptability of media messages on family planning: Percentage of all women who believe that it is acceptable to have messages about family planning on the radio or television.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.ACPT.Q5.ZS\",\"Acceptability of media messages on family planning (% of women): Q5 (highest)\",\"Acceptability of media messages on family planning: Percentage of all women who believe that it is acceptable to have messages about family planning on the radio or television.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.APRV.HB.Q1.ZS\",\"Attitudes of couples toward family planning (husband approves) (% of married non-sterilized women): Q1 (lowest)\",\"Attitudes of couples toward family planning: Percentage of currently married non-sterilized women with knowledge of contraceptive method who approve family planning and who have perception that their husbands approve family planning.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.APRV.HB.Q2.ZS\",\"Attitudes of couples toward family planning (husband approves) (% of married non-sterilized women): Q2\",\"Attitudes of couples toward family planning: Percentage of currently married non-sterilized women with knowledge of contraceptive method who approve family planning and who have perception that their husbands approve family planning.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.APRV.HB.Q3.ZS\",\"Attitudes of couples toward family planning (husband approves) (% of married non-sterilized women): Q3\",\"Attitudes of couples toward family planning: Percentage of currently married non-sterilized women with knowledge of contraceptive method who approve family planning and who have perception that their husbands approve family planning.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.APRV.HB.Q4.ZS\",\"Attitudes of couples toward family planning (husband approves) (% of married non-sterilized women): Q4\",\"Attitudes of couples toward family planning: Percentage of currently married non-sterilized women with knowledge of contraceptive method who approve family planning and who have perception that their husbands approve family planning.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.APRV.HB.Q5.ZS\",\"Attitudes of couples toward family planning (husband approves) (% of married non-sterilized women): Q5 (highest)\",\"Attitudes of couples toward family planning: Percentage of currently married non-sterilized women with knowledge of contraceptive method who approve family planning and who have perception that their husbands approve family planning.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.APRV.RS.Q1.ZS\",\"Attitudes of couples toward family planning (respondent approves) (% of married non-sterilized women): Q1 (lowest)\",\"Attitudes of couples toward family planning: Percentage of currently married non-sterilized women with knowledge of contraceptive method who approve family planning and who have perception that their husbands approve family planning.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.APRV.RS.Q2.ZS\",\"Attitudes of couples toward family planning (respondent approves) (% of married non-sterilized women): Q2\",\"Attitudes of couples toward family planning: Percentage of currently married non-sterilized women with knowledge of contraceptive method who approve family planning and who have perception that their husbands approve family planning.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.APRV.RS.Q3.ZS\",\"Attitudes of couples toward family planning (respondent approves) (% of married non-sterilized women): Q3\",\"Attitudes of couples toward family planning: Percentage of currently married non-sterilized women with knowledge of contraceptive method who approve family planning and who have perception that their husbands approve family planning.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.APRV.RS.Q4.ZS\",\"Attitudes of couples toward family planning (respondent approves) (% of married non-sterilized women): Q4\",\"Attitudes of couples toward family planning: Percentage of currently married non-sterilized women with knowledge of contraceptive method who approve family planning and who have perception that their husbands approve family planning.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.APRV.RS.Q5.ZS\",\"Attitudes of couples toward family planning (respondent approves) (% of married non-sterilized women): Q5 (highest)\",\"Attitudes of couples toward family planning: Percentage of currently married non-sterilized women with knowledge of contraceptive method who approve family planning and who have perception that their husbands approve family planning.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.FBRT.Q1.ZS\",\"Median age at first birth (women ages 25-49): Q1 (lowest)\",\"Median age at first birth: Median age at first birth among women aged 25-49 years.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.FBRT.Q2.ZS\",\"Median age at first birth (women ages 25-49): Q2\",\"Median age at first birth: Median age at first birth among women aged 25-49 years.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.FBRT.Q3.ZS\",\"Median age at first birth (women ages 25-49): Q3\",\"Median age at first birth: Median age at first birth among women aged 25-49 years.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.FBRT.Q4.ZS\",\"Median age at first birth (women ages 25-49): Q4\",\"Median age at first birth: Median age at first birth among women aged 25-49 years.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.FBRT.Q5.ZS\",\"Median age at first birth (women ages 25-49): Q5 (highest)\",\"Median age at first birth: Median age at first birth among women aged 25-49 years.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.FMAR.Q1.ZS\",\"Median age at first marriage (women ages 25-49): Q1 (lowest)\",\"Median age at first marriage: Median age at first marriage among women aged 25-49 years.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.FMAR.Q2.ZS\",\"Median age at first marriage (women ages 25-49): Q2\",\"Median age at first marriage: Median age at first marriage among women aged 25-49 years.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.FMAR.Q3.ZS\",\"Median age at first marriage (women ages 25-49): Q3\",\"Median age at first marriage: Median age at first marriage among women aged 25-49 years.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.FMAR.Q4.ZS\",\"Median age at first marriage (women ages 25-49): Q4\",\"Median age at first marriage: Median age at first marriage among women aged 25-49 years.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.FMAR.Q5.ZS\",\"Median age at first marriage (women ages 25-49): Q5 (highest)\",\"Median age at first marriage: Median age at first marriage among women aged 25-49 years.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.FSEX.Q1.ZS\",\"Median age at first sexual intercourse (women ages 25-49): Q1 (lowest)\",\"Median age at first sexual intercourse: Median age at first sexual intercourse among women aged 25-49 years.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.FSEX.Q2.ZS\",\"Median age at first sexual intercourse (women ages 25-49): Q2\",\"Median age at first sexual intercourse: Median age at first sexual intercourse among women aged 25-49 years.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.FSEX.Q3.ZS\",\"Median age at first sexual intercourse (women ages 25-49): Q3\",\"Median age at first sexual intercourse: Median age at first sexual intercourse among women aged 25-49 years.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.FSEX.Q4.ZS\",\"Median age at first sexual intercourse (women ages 25-49): Q4\",\"Median age at first sexual intercourse: Median age at first sexual intercourse among women aged 25-49 years.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.FSEX.Q5.ZS\",\"Median age at first sexual intercourse (women ages 25-49): Q5 (highest)\",\"Median age at first sexual intercourse: Median age at first sexual intercourse among women aged 25-49 years.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.HEAR.Q1.ZS\",\"Heard family planning on radio and television (% of women): Q1 (lowest)\",\"Heard family planning on radio and television: Percentage of all women who have heard a radio or television message about family planning in the last few months prior to the interview.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.HEAR.Q2.ZS\",\"Heard family planning on radio and television (% of women): Q2\",\"Heard family planning on radio and television: Percentage of all women who have heard a radio or television message about family planning in the last few months prior to the interview.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.HEAR.Q3.ZS\",\"Heard family planning on radio and television (% of women): Q3\",\"Heard family planning on radio and television: Percentage of all women who have heard a radio or television message about family planning in the last few months prior to the interview.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.HEAR.Q4.ZS\",\"Heard family planning on radio and television (% of women): Q4\",\"Heard family planning on radio and television: Percentage of all women who have heard a radio or television message about family planning in the last few months prior to the interview.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.HEAR.Q5.ZS\",\"Heard family planning on radio and television (% of women): Q5 (highest)\",\"Heard family planning on radio and television: Percentage of all women who have heard a radio or television message about family planning in the last few months prior to the interview.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.IDLC.Q1\",\"Mean ideal number of children (per woman): Q1 (lowest)\",\"Mean ideal number of children: Mean ideal number of children for all women.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.IDLC.Q2\",\"Mean ideal number of children (per woman): Q2\",\"Mean ideal number of children: Mean ideal number of children for all women.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.IDLC.Q3\",\"Mean ideal number of children (per woman): Q3\",\"Mean ideal number of children: Mean ideal number of children for all women.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.IDLC.Q4\",\"Mean ideal number of children (per woman): Q4\",\"Mean ideal number of children: Mean ideal number of children for all women.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.IDLC.Q5\",\"Mean ideal number of children (per woman): Q5 (highest)\",\"Mean ideal number of children: Mean ideal number of children for all women.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.KNOW.Q1.ZS\",\"Knowledge of contraception (any method) (% of married women): Q1 (lowest)\",\"Knowledge of contraception: Percentage of currently married women who know at least one contraceptive method and at least one modern contraceptive method.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.KNOW.Q2.ZS\",\"Knowledge of contraception (any method) (% of married women): Q2\",\"Knowledge of contraception: Percentage of currently married women who know at least one contraceptive method and at least one modern contraceptive method.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.KNOW.Q3.ZS\",\"Knowledge of contraception (any method) (% of married women): Q3\",\"Knowledge of contraception: Percentage of currently married women who know at least one contraceptive method and at least one modern contraceptive method.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.KNOW.Q4.ZS\",\"Knowledge of contraception (any method) (% of married women): Q4\",\"Knowledge of contraception: Percentage of currently married women who know at least one contraceptive method and at least one modern contraceptive method.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.KNOW.Q5.ZS\",\"Knowledge of contraception (any method) (% of married women): Q5 (highest)\",\"Knowledge of contraception: Percentage of currently married women who know at least one contraceptive method and at least one modern contraceptive method.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.KWMD.Q1.ZS\",\"Knowledge of contraception (modern method) (% of married women): Q1 (lowest)\",\"Knowledge of contraception: Percentage of currently married women who know at least one contraceptive method and at least one modern contraceptive method.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.KWMD.Q2.ZS\",\"Knowledge of contraception (modern method) (% of married women): Q2\",\"Knowledge of contraception: Percentage of currently married women who know at least one contraceptive method and at least one modern contraceptive method.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.KWMD.Q3.ZS\",\"Knowledge of contraception (modern method) (% of married women): Q3\",\"Knowledge of contraception: Percentage of currently married women who know at least one contraceptive method and at least one modern contraceptive method.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.KWMD.Q4.ZS\",\"Knowledge of contraception (modern method) (% of married women): Q4\",\"Knowledge of contraception: Percentage of currently married women who know at least one contraceptive method and at least one modern contraceptive method.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.KWMD.Q5.ZS\",\"Knowledge of contraception (modern method) (% of married women): Q5 (highest)\",\"Knowledge of contraception: Percentage of currently married women who know at least one contraceptive method and at least one modern contraceptive method.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.LIMT.Q1.ZS\",\"Desire to stop (limit) childbearing (% of married women): Q1 (lowest)\",\"Desire to stop (limit) childbearing: Percentage of currently married women who want no more children. Women who have been sterilized or whose spouses are sterilized, are considered to want no more children.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.LIMT.Q2.ZS\",\"Desire to stop (limit) childbearing (% of married women): Q2\",\"Desire to stop (limit) childbearing: Percentage of currently married women who want no more children. Women who have been sterilized or whose spouses are sterilized, are considered to want no more children.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.LIMT.Q3.ZS\",\"Desire to stop (limit) childbearing (% of married women): Q3\",\"Desire to stop (limit) childbearing: Percentage of currently married women who want no more children. Women who have been sterilized or whose spouses are sterilized, are considered to want no more children.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.LIMT.Q4.ZS\",\"Desire to stop (limit) childbearing (% of married women): Q4\",\"Desire to stop (limit) childbearing: Percentage of currently married women who want no more children. Women who have been sterilized or whose spouses are sterilized, are considered to want no more children.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.LIMT.Q5.ZS\",\"Desire to stop (limit) childbearing (% of married women): Q5 (highest)\",\"Desire to stop (limit) childbearing: Percentage of currently married women who want no more children. Women who have been sterilized or whose spouses are sterilized, are considered to want no more children.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.MBRI.Q1\",\"Median birth interval (months): Q1 (lowest)\",\"Median birth interval: Median duration of the birth interval in months for non-first births in the five years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.MBRI.Q2\",\"Median birth interval (months): Q2\",\"Median birth interval: Median duration of the birth interval in months for non-first births in the five years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.MBRI.Q3\",\"Median birth interval (months): Q3\",\"Median birth interval: Median duration of the birth interval in months for non-first births in the five years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.MBRI.Q4\",\"Median birth interval (months): Q4\",\"Median birth interval: Median duration of the birth interval in months for non-first births in the five years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.MBRI.Q5\",\"Median birth interval (months): Q5 (highest)\",\"Median birth interval: Median duration of the birth interval in months for non-first births in the five years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.MSTM.Q1.ZS\",\"Fertility planning status (wanted later) (% of births): Q1 (lowest)\",\"Fertility planning status: Percentage of births in the five years preceding the survey which are planned (wanted then), mistimed (wanted later), and unplanned (wanted no more).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.MSTM.Q2.ZS\",\"Fertility planning status (wanted later) (% of births): Q2\",\"Fertility planning status: Percentage of births in the five years preceding the survey which are planned (wanted then), mistimed (wanted later), and unplanned (wanted no more).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.MSTM.Q3.ZS\",\"Fertility planning status (wanted later) (% of births): Q3\",\"Fertility planning status: Percentage of births in the five years preceding the survey which are planned (wanted then), mistimed (wanted later), and unplanned (wanted no more).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.MSTM.Q4.ZS\",\"Fertility planning status (wanted later) (% of births): Q4\",\"Fertility planning status: Percentage of births in the five years preceding the survey which are planned (wanted then), mistimed (wanted later), and unplanned (wanted no more).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.MSTM.Q5.ZS\",\"Fertility planning status (wanted later) (% of births): Q5 (highest)\",\"Fertility planning status: Percentage of births in the five years preceding the survey which are planned (wanted then), mistimed (wanted later), and unplanned (wanted no more).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.READ.Q1.ZS\",\"Family planning messages in print (% of women): Q1 (lowest)\",\"Family planning messages in print: Percentage of all women who have received a message about family planning from printed media in the last few months prior to the interview.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.READ.Q2.ZS\",\"Family planning messages in print (% of women): Q2\",\"Family planning messages in print: Percentage of all women who have received a message about family planning from printed media in the last few months prior to the interview.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.READ.Q3.ZS\",\"Family planning messages in print (% of women): Q3\",\"Family planning messages in print: Percentage of all women who have received a message about family planning from printed media in the last few months prior to the interview.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.READ.Q4.ZS\",\"Family planning messages in print (% of women): Q4\",\"Family planning messages in print: Percentage of all women who have received a message about family planning from printed media in the last few months prior to the interview.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.READ.Q5.ZS\",\"Family planning messages in print (% of women): Q5 (highest)\",\"Family planning messages in print: Percentage of all women who have received a message about family planning from printed media in the last few months prior to the interview.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.SATM.ZS\",\"Demand for family planning satisfied by modern methods (% of married women with demand for family planning)\",\"Demand for family planning satisfied by modern methods refers to the percentage of married women ages 15-49 years whose need for family planning is satisfied with modern methods.\",\"World Development Indicators\",\"Demographic and Health Surveys (DHS).\"\n\"SH.FPL.UWTD.Q1.ZS\",\"Fertility planning status (wanted no more) (% of births): Q1 (lowest)\",\"Fertility planning status: Percentage of births in the five years preceding the survey which are planned (wanted then), mistimed (wanted later), and unplanned (wanted no more).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.UWTD.Q2.ZS\",\"Fertility planning status (wanted no more) (% of births): Q2\",\"Fertility planning status: Percentage of births in the five years preceding the survey which are planned (wanted then), mistimed (wanted later), and unplanned (wanted no more).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.UWTD.Q3.ZS\",\"Fertility planning status (wanted no more) (% of births): Q3\",\"Fertility planning status: Percentage of births in the five years preceding the survey which are planned (wanted then), mistimed (wanted later), and unplanned (wanted no more).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.UWTD.Q4.ZS\",\"Fertility planning status (wanted no more) (% of births): Q4\",\"Fertility planning status: Percentage of births in the five years preceding the survey which are planned (wanted then), mistimed (wanted later), and unplanned (wanted no more).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.UWTD.Q5.ZS\",\"Fertility planning status (wanted no more) (% of births): Q5 (highest)\",\"Fertility planning status: Percentage of births in the five years preceding the survey which are planned (wanted then), mistimed (wanted later), and unplanned (wanted no more).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.WNTD.Q1.ZS\",\"Fertility planning status (wanted then) (% of births): Q1 (lowest)\",\"Fertility planning status: Percentage of births in the five years preceding the survey which are planned (wanted then), mistimed (wanted later), and unplanned (wanted no more).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.WNTD.Q2.ZS\",\"Fertility planning status (wanted then) (% of births): Q2\",\"Fertility planning status: Percentage of births in the five years preceding the survey which are planned (wanted then), mistimed (wanted later), and unplanned (wanted no more).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.WNTD.Q3.ZS\",\"Fertility planning status (wanted then) (% of births): Q3\",\"Fertility planning status: Percentage of births in the five years preceding the survey which are planned (wanted then), mistimed (wanted later), and unplanned (wanted no more).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.WNTD.Q4.ZS\",\"Fertility planning status (wanted then) (% of births): Q4\",\"Fertility planning status: Percentage of births in the five years preceding the survey which are planned (wanted then), mistimed (wanted later), and unplanned (wanted no more).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.FPL.WNTD.Q5.ZS\",\"Fertility planning status (wanted then) (% of births): Q5 (highest)\",\"Fertility planning status: Percentage of births in the five years preceding the survey which are planned (wanted then), mistimed (wanted later), and unplanned (wanted no more).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.H2O.SAFE.RU.ZS\",\"Improved water source, rural (% of rural population with access)\",\"Access to an improved water source refers to the percentage of the population using an improved drinking water source. The improved drinking water source includes piped water on premises (piped household water connection located inside the user’s dwelling, plot or yard), and other improved drinking water sources (public taps or standpipes, tube wells or boreholes, protected dug wells, protected springs, and rainwater collection).\",\"World Development Indicators\",\"WHO/UNICEF Joint Monitoring Programme (JMP) for Water Supply and Sanitation (http://www.wssinfo.org/).\"\n\"SH.H2O.SAFE.UR.ZS\",\"Improved water source, urban (% of urban population with access)\",\"Access to an improved water source refers to the percentage of the population using an improved drinking water source. The improved drinking water source includes piped water on premises (piped household water connection located inside the user’s dwelling, plot or yard), and other improved drinking water sources (public taps or standpipes, tube wells or boreholes, protected dug wells, protected springs, and rainwater collection).\",\"World Development Indicators\",\"WHO/UNICEF Joint Monitoring Programme (JMP) for Water Supply and Sanitation (http://www.wssinfo.org/).\"\n\"SH.H2O.SAFE.ZS\",\"Improved water source (% of population with access)\",\"Access to an improved water source refers to the percentage of the population using an improved drinking water source. The improved drinking water source includes piped water on premises (piped household water connection located inside the user’s dwelling, plot or yard), and other improved drinking water sources (public taps or standpipes, tube wells or boreholes, protected dug wells, protected springs, and rainwater collection).\",\"World Development Indicators\",\"WHO/UNICEF Joint Monitoring Programme (JMP) for Water Supply and Sanitation (http://www.wssinfo.org/).\"\n\"SH.HIV.0014\",\"Children (0-14) living with HIV\",\"Children living with HIV refers to the number of children ages 0-14 who are infected with HIV.\",\"World Development Indicators\",\"UNAIDS estimates.\"\n\"SH.HIV.1524.FE.HG.ZS\",\"Prevalence of HIV, young women 15-24 years (%; high estimate)\",\"Prevalence of HIV, female refers to the percentage of females ages 15-24 who are infected with HIV based the high estimate.  \",\"Africa Development Indicators\",\"UNAIDS and the WHO's Report on the Global AIDS Epidemic.\"\n\"SH.HIV.1524.FE.LW.ZS\",\"Prevalence of HIV, young women 15-24 years (%; low estimate)\",\"Prevalence of HIV, female refers to the percentage of females ages 15-24 who are infected with HIV based the low estimate.  \",\"Africa Development Indicators\",\"UNAIDS and the WHO's Report on the Global AIDS Epidemic.\"\n\"SH.HIV.1524.FE.ZS\",\"Prevalence of HIV, female (% ages 15-24)\",\"Prevalence of HIV is the percentage of people who are infected with HIV. Youth rates are as a percentage of the relevant age group.\",\"World Development Indicators\",\"UNAIDS estimates.\"\n\"SH.HIV.1524.KW.FE.ZS\",\"Comprehensive correct knowledge of HIV/AIDS, ages 15-24, female (2 prevent ways and reject 3 misconceptions)\",\"The percent of female respondents ages 15-24 who correctly identify the two major ways of preventing the sexual transmission of HIV (using condoms and limiting sex to one faithful, uninfected partner), who reject the two most common local misconceptions about HIV transmission, and who know that a healthy-looking person can have HIV.\",\"Health Nutrition and Population Statistics\",\"Household surveys such as Demographic and Health Surveys and Multiple Indicator Cluster Surveys.  Largely compiled by UNICEF.\"\n\"SH.HIV.1524.KW.MA.ZS\",\"Comprehensive correct knowledge of HIV/AIDS, ages 15-24, male (2 prevent ways and reject 3 misconceptions)\",\"The percent of male respondents ages 15-24 who correctly identify the two major ways of preventing the sexual transmission of HIV (using condoms and limiting sex to one faithful, uninfected partner), who reject the two most common local misconceptions about HIV transmission, and who know that a healthy-looking person can have HIV.\",\"Health Nutrition and Population Statistics\",\"Household surveys such as Demographic and Health Surveys and Multiple Indicator Cluster Surveys.  Largely compiled by UNICEF.\"\n\"SH.HIV.1524.MA.HG.ZS\",\"Prevalence of HIV, young men 15-24 years (%; high estimate)\",\"Prevalence of HIV, male refers to the percentage of females ages 15-24 who are infected with HIV based the high estimate.  \",\"Africa Development Indicators\",\"UNAIDS and the WHO's Report on the Global AIDS Epidemic.\"\n\"SH.HIV.1524.MA.LW.ZS\",\"Prevalence of HIV, young men 15-24 years (%; low estimate)\",\"Prevalence of HIV, male refers to the percentage of females ages 15-24 who are infected with HIV based the low estimate.  \",\"Africa Development Indicators\",\"UNAIDS and the WHO's Report on the Global AIDS Epidemic.\"\n\"SH.HIV.1524.MA.ZS\",\"Prevalence of HIV, male (% ages 15-24)\",\"Prevalence of HIV is the percentage of people who are infected with HIV. Youth rates are as a percentage of the relevant age group.\",\"World Development Indicators\",\"UNAIDS estimates.\"\n\"SH.HIV.ARTC.FE.ZS\",\"Antiretroviral therapy coverage (% of adult females living with HIV)\",\"The percentage of adult females living with HIV who are receiving antiretroviral therapy.\",\"Gender Statistics\",\"UNAIDS estimates.\"\n\"SH.HIV.ARTC.MA.ZS\",\"Antiretroviral therapy coverage (% of adult males living with HIV)\",\"The percentage of adult males living with HIV who are receiving antiretroviral therapy.\",\"Gender Statistics\",\"UNAIDS estimates.\"\n\"SH.HIV.ARTC.ZS\",\"Antiretroviral therapy coverage (% of people living with HIV)\",\"Antiretroviral therapy coverage indicates the percentage of all people living with HIV who are receiving antiretroviral therapy.\",\"World Development Indicators\",\"UNAIDS estimates.\"\n\"SH.HIV.DTS.HG.NUM\",\"AIDS deaths in adults and children (high estimate)\",\"Deaths due to HIV/AIDS are the estimated number of adults and children that have died in a specific year based in the modeling of HIV surveillance data using standard and appropriate tools.  \",\"Africa Development Indicators\",\"UNAIDS and the WHO's Report on the Global AIDS Epidemic.\"\n\"SH.HIV.DTS.LW.NUM\",\"AIDS deaths in adults and children (low estimate)\",\"Deaths due to HIV/AIDS are the estimated number of adults and children that have died in a specific year based in the modeling of HIV surveillance data using standard and appropriate tools.  \",\"Africa Development Indicators\",\"UNAIDS and the WHO's Report on the Global AIDS Epidemic.\"\n\"SH.HIV.DTS.NUM\",\"AIDS deaths in adults and children\",\"Deaths due to HIV/AIDS are the estimated number of adults and children that have died in a specific year based in the modeling of HIV surveillance data using standard and appropriate tools.  \",\"Africa Development Indicators\",\"UNAIDS and the WHO's Report on the Global AIDS Epidemic.\"\n\"SH.HIV.KNOW.FE.ZS\",\"% of females ages 15-49 having comprehensive correct knowledge about HIV (2 prevent ways and reject 3 misconceptions)\",\"Knowledge of HIV is the percentage of respondents who correctly identify the two major ways of preventing the sexual transmission of HIV (using condoms and limiting sex to one faithful, uninfected partner), who reject the two most common local misconceptions about HIV transmission, and who know that a healthy-looking person can have HIV.\",\"Health Nutrition and Population Statistics\",\"Household surveys such as Demographic and Health Surveys and Multiple Indicator Cluster Surveys.  Largely compiled by UNICEF.\"\n\"SH.HIV.KNOW.MA.ZS\",\"% of males ages 15-49 having comprehensive correct knowledge about HIV (2 prevent ways and reject 3 misconceptions)\",\"Knowledge of HIV is the percentage of respondents who correctly identify the two major ways of preventing the sexual transmission of HIV (using condoms and limiting sex to one faithful, uninfected partner), who reject the two most common local misconceptions about HIV transmission, and who know that a healthy-looking person can have HIV.\",\"Health Nutrition and Population Statistics\",\"Household surveys such as Demographic and Health Surveys and Multiple Indicator Cluster Surveys.  Largely compiled by UNICEF.\"\n\"SH.HIV.NEW.0014.HG.NUM\",\"New HIV infections (0-14 years), high estimate\",\"Estimated number of children (0-14 years) newly infected with HIV, high estimate.\",\"Africa Development Indicators\",\"UNAIDS and the WHO's Report on the Global AIDS Epidemic.\"\n\"SH.HIV.NEW.0014.LW.NUM\",\"New HIV infections (0-14 years), low estimate\",\"Estimated number of children (0-14 years) newly infected with HIV, low estimate.\",\"Africa Development Indicators\",\"UNAIDS and the WHO's Report on the Global AIDS Epidemic.\"\n\"SH.HIV.NEW.0014.NUM\",\"New HIV infections (0-14 years)\",\"Estimated number of children (0-14 years) newly infected with HIV.\",\"Africa Development Indicators\",\"UNAIDS and the WHO's Report on the Global AIDS Epidemic.\"\n\"SH.HIV.NEW.TOTL.HG.NUM\",\"New HIV infections, high estimate\",\"Estimated number of people newly infected with HIV, high estimate.\",\"Africa Development Indicators\",\"UNAIDS and the WHO's Report on the Global AIDS Epidemic.\"\n\"SH.HIV.NEW.TOTL.LW.NUM\",\"New HIV infections, low estimate\",\"Estimated number of people newly infected with HIV, low estimate.\",\"Africa Development Indicators\",\"UNAIDS and the WHO's Report on the Global AIDS Epidemic.\"\n\"SH.HIV.NEW.TOTL.NUM\",\"New HIV infections\",\"Estimated number of people newly infected with HIV.\",\"Africa Development Indicators\",\"UNAIDS and the WHO's Report on the Global AIDS Epidemic.\"\n\"SH.HIV.ORP.HG.NUM\",\"Orphans 0-17 years currently living (high estimate)\",\"AIDS orphans are the estimated number of children who have lost their mother or both parents to AIDS before age 17 since the epidemic began in 1990. Some of the orphaned children included in this cumulative total are no longer alive; others are no longer under age 17.  \",\"Africa Development Indicators\",\"UNAIDS and the WHO's Report on the Global AIDS Epidemic.\"\n\"SH.HIV.ORP.LW.NUM\",\"Orphans 0-17 years currently living (low estimate)\",\"AIDS orphans are the estimated number of children who have lost their mother or both parents to AIDS before age 17 since the epidemic began in 1990. Some of the orphaned children included in this cumulative total are no longer alive; others are no longer under age 17.  \",\"Africa Development Indicators\",\"UNAIDS and the WHO's Report on the Global AIDS Epidemic.\"\n\"SH.HIV.ORP.NUM\",\"Orphans 0-17 years currently living\",\"AIDS orphans are the estimated number of children who have lost their mother or both parents to AIDS before age 17 since the epidemic began in 1990. Some of the orphaned children included in this cumulative total are no longer alive; others are no longer under age 17.  \",\"Africa Development Indicators\",\"UNAIDS and the WHO's Report on the Global AIDS Epidemic.\"\n\"SH.HIV.ORPH\",\"Children orphaned by HIV/AIDS\",\"Number of children orphaned by HIV/AIDS is the estimated number of children who have lost their mother or both parents to AIDS before age 15 since the epidemic began. Some of the orphaned children included in this cumulative total are no longer alive; others are no longer under age 15.\",\"Health Nutrition and Population Statistics\",\"UNAIDS estimates.\"\n\"SH.HIV.PREG.VIRALS.HG.ZS\",\"HIV positive pregnant women receiving antiretrovirals, using WHO/UNAIDS methodology (%; high estimate)\",\"Percentage of HIV-infected pregnant women who received antiretrovirals to reduce the risk of mother-to-child transmission.  Numerator: Number of HIV-infected pregnant women who received antiretrovirals during the last 12 months to reduce mother-to-child transmission.  Denominator: Estimated number of HIV-infected pregnant women in the last 12 months.  Ranges are presented for countries with low and concentrated epidemics.  The purpose of this indicator is to assess progress in preventing vertical transmission of HIV.  All data reflect values representing 12 month period ending December 2007 which have been reconciled between reporting country and UNAIDS/WHO/UNICEF, unless otherwise noted.  All analysis of this indicator, including quoted country figures, reflect numerators which have gone through a tri agency reconciliation (UNAIDS/WHO/UNICEF) process and denominators which have been estimated directly from the UNAIDS/WHO Reference group on Estimates, Modelling and Projections methodology (Spectrum).  The reconciliation process ensured all agencies reported the same country endorsed figure which was the most recent and met the definition of HIV-infected women receiving antiretroviral drugs over the last 12 months, and thus reflect a full year. Every effort was made in cases of discrepancy across the three agencies to obtain approval from the country on a final indicator value.  \",\"Africa Development Indicators\",\"http://data.unaids.org/pub/GlobalReport/2008/\"\n\"SH.HIV.PREG.VIRALS.LW.ZS\",\"HIV positive pregnant women receiving antiretrovirals, using WHO/UNAIDS methodology (%; low estimate)\",\"Percentage of HIV-infected pregnant women who received antiretrovirals to reduce the risk of mother-to-child transmission.  Numerator: Number of HIV-infected pregnant women who received antiretrovirals during the last 12 months to reduce mother-to-child transmission.  Denominator: Estimated number of HIV-infected pregnant women in the last 12 months.  Ranges are presented for countries with low and concentrated epidemics.  The purpose of this indicator is to assess progress in preventing vertical transmission of HIV.  All data reflect values representing 12 month period ending December 2007 which have been reconciled between reporting country and UNAIDS/WHO/UNICEF, unless otherwise noted.  All analysis of this indicator, including quoted country figures, reflect numerators which have gone through a tri agency reconciliation (UNAIDS/WHO/UNICEF) process and denominators which have been estimated directly from the UNAIDS/WHO Reference group on Estimates, Modelling and Projections methodology (Spectrum).  The reconciliation process ensured all agencies reported the same country endorsed figure which was the most recent and met the definition of HIV-infected women receiving antiretroviral drugs over the last 12 months, and thus reflect a full year. Every effort was made in cases of discrepancy across the three agencies to obtain approval from the country on a final indicator value.  \",\"Africa Development Indicators\",\"http://data.unaids.org/pub/GlobalReport/2008/\"\n\"SH.HIV.PREG.VIRALS.NUM\",\"Number of HIV positive pregnant women receiving antiretrovirals \",\"Number of HIV-infected pregnant women who received antiretrovirals during the last 12 months to reduce mother-to-child transmission.  The purpose of this indicator is to assess progress in preventing vertical transmission of HIV. \",\"Africa Development Indicators\",\"http://data.unaids.org/pub/GlobalReport/2008/\"\n\"SH.HIV.PREG.VIRALS.ZS\",\"HIV positive pregnant women receiving antiretrovirals, using WHO/UNAIDS methodology (%)\",\"Percentage of HIV-infected pregnant women who received antiretrovirals to reduce the risk of mother-to-child transmission.  Numerator: Number of HIV-infected pregnant women who received antiretrovirals during the last 12 months to reduce mother-to-child transmission.  Denominator: Estimated number of HIV-infected pregnant women in the last 12 months.  The purpose of this indicator is to assess progress in preventing vertical transmission of HIV.  All data reflect values representing 12 month period ending December 2007 which have been reconciled between reporting country and UNAIDS/WHO/UNICEF, unless otherwise noted.  All analysis of this indicator, including quoted country figures, reflect numerators which have gone through a tri agency reconciliation (UNAIDS/WHO/UNICEF) process and denominators which have been estimated directly from the UNAIDS/WHO Reference group on Estimates, Modelling and Projections methodology (Spectrum).  The reconciliation process ensured all agencies reported the same country endorsed figure which was the most recent and met the definition of HIV-infected women receiving antiretroviral drugs over the last 12 months, and thus reflect a full year. Every effort was made in cases of discrepancy across the three agencies to obtain approval from the country on a final indicator value.  \",\"Africa Development Indicators\",\"http://data.unaids.org/pub/GlobalReport/2008/\"\n\"SH.HIV.TOTL\",\"Adults (ages 15+) and children (0-14 years) living with HIV\",\"Adults and children living with HIV refers to the number of people ages 0-49 (adult ages 15-49 and children ages 0-14) who are infected with HIV.\",\"Health Nutrition and Population Statistics\",\"UNAIDS estimates.\"\n\"SH.HIV.TOTL.HG.NUM\",\"People living with HIV/AIDS, total (high estimate)\",\"Estimated total number of people with HIV/AIDS is the number of people living with HIV. Depending on the reliability of the data available, there may be more or less uncertainty surrounding each estimate.  \",\"Africa Development Indicators\",\"UNAIDS and the WHO's Report on the Global AIDS Epidemic.\"\n\"SH.HIV.TOTL.LW.NUM\",\"People living with HIV/AIDS, total (low estimate)\",\"Estimated total number of people with HIV/AIDS is the number of people living with HIV. Depending on the reliability of the data available, there may be more or less uncertainty surrounding each estimate.  \",\"Africa Development Indicators\",\"UNAIDS and the WHO's Report on the Global AIDS Epidemic.\"\n\"SH.HIV.TOTL.NUM\",\"People living with HIV/AIDS, total\",\"Estimated total number of people with HIV/AIDS is the number of people living with HIV. Depending on the reliability of the data available, there may be more or less uncertainty surrounding each estimate.  \",\"Africa Development Indicators\",\"UNAIDS and the WHO's Report on the Global AIDS Epidemic.\"\n\"SH.HOSP.TOTL\",\"Number of hospitals\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Village Census (PODES)\"\n\"SH.IMM.ALLV.Q1.ZS\",\"Vaccinations (all vaccinations) (% of children ages 12-23 months): Q1 (lowest)\",\"Vaccinations: Percentage of children 12-23 months who have received specific vaccines by the time of the survey (according to the vaccination card or the mother's report). Children with all vaccinations refer children who have received BCG, measles, and three doses each of DPT and polio vaccine (excluding polio 0). Some MICS surveys refer children in different age groups (e.g. 18-29 months, or 15-26 months).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.IMM.ALLV.Q2.ZS\",\"Vaccinations (all vaccinations) (% of children ages 12-23 months): Q2\",\"Vaccinations: Percentage of children 12-23 months who have received specific vaccines by the time of the survey (according to the vaccination card or the mother's report). Children with all vaccinations refer children who have received BCG, measles, and three doses each of DPT and polio vaccine (excluding polio 0). Some MICS surveys refer children in different age groups (e.g. 18-29 months, or 15-26 months).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.IMM.ALLV.Q3.ZS\",\"Vaccinations (all vaccinations) (% of children ages 12-23 months): Q3\",\"Vaccinations: Percentage of children 12-23 months who have received specific vaccines by the time of the survey (according to the vaccination card or the mother's report). Children with all vaccinations refer children who have received BCG, measles, and three doses each of DPT and polio vaccine (excluding polio 0). Some MICS surveys refer children in different age groups (e.g. 18-29 months, or 15-26 months).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.IMM.ALLV.Q4.ZS\",\"Vaccinations (all vaccinations) (% of children ages 12-23 months): Q4\",\"Vaccinations: Percentage of children 12-23 months who have received specific vaccines by the time of the survey (according to the vaccination card or the mother's report). Children with all vaccinations refer children who have received BCG, measles, and three doses each of DPT and polio vaccine (excluding polio 0). Some MICS surveys refer children in different age groups (e.g. 18-29 months, or 15-26 months).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.IMM.ALLV.Q5.ZS\",\"Vaccinations (all vaccinations) (% of children ages 12-23 months): Q5 (highest)\",\"Vaccinations: Percentage of children 12-23 months who have received specific vaccines by the time of the survey (according to the vaccination card or the mother's report). Children with all vaccinations refer children who have received BCG, measles, and three doses each of DPT and polio vaccine (excluding polio 0). Some MICS surveys refer children in different age groups (e.g. 18-29 months, or 15-26 months).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.IMM.CHLD.ZS\",\"Immunization Coverage for Children under 5 years old (in % of children population under 5 years old)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, National Social Economic Survey (SUSENAS)\"\n\"SH.IMM.HEPB\",\"Immunization, HepB3 (% of one-year-old children)\",\"Child immunization rate, hepatitis B is the percentage of children ages 12-23 months who received vaccinations before 12 months or at any time before the survey. A child is considered adequately immunized after three doses.\",\"Health Nutrition and Population Statistics\",\"WHO and UNICEF (http://www.who.int/immunization_monitoring/routine/en/).\"\n\"SH.IMM.HIB3\",\"Immunization, Hib3 (% of children ages 12-23 months)\",\"Child immunization measures the percentage of children ages 12-23 months who received vaccinations before 12 months or at any time before the survey. A child is considered adequately immunized against Hib3 after receiving three doses of Haemophilus influenzae type b vaccine.\",\"Health Nutrition and Population Statistics\",\"WHO and UNICEF (http://www.who.int/immunization_monitoring/routine/en/\"\n\"SH.IMM.IBCG\",\"Immunization, BCG (% of one-year-old children)\",\"Child immunization rate, BCG is the percentage of children ages 12-23 months who received vaccinations before 12 months or at any time before the survey for BCG. A child is considered adequately immunized after one dose.\",\"Health Nutrition and Population Statistics\",\"WHO and UNICEF (http://www.who.int/immunization_monitoring/routine/en/).\"\n\"SH.IMM.IBCG.Q1.ZS\",\"Vaccinations (BCG) (% of children ages 12-23 months): Q1 (lowest)\",\"Vaccinations: Percentage of children 12-23 months who have received specific vaccines by the time of the survey (according to the vaccination card or the mother's report). Children with all vaccinations refer children who have received BCG, measles, and three doses each of DPT and polio vaccine (excluding polio 0). Some MICS surveys refer children in different age groups (e.g. 18-29 months, or 15-26 months).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.IMM.IBCG.Q2.ZS\",\"Vaccinations (BCG) (% of children ages 12-23 months): Q2\",\"Vaccinations: Percentage of children 12-23 months who have received specific vaccines by the time of the survey (according to the vaccination card or the mother's report). Children with all vaccinations refer children who have received BCG, measles, and three doses each of DPT and polio vaccine (excluding polio 0). Some MICS surveys refer children in different age groups (e.g. 18-29 months, or 15-26 months).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.IMM.IBCG.Q3.ZS\",\"Vaccinations (BCG) (% of children ages 12-23 months): Q3\",\"Vaccinations: Percentage of children 12-23 months who have received specific vaccines by the time of the survey (according to the vaccination card or the mother's report). Children with all vaccinations refer children who have received BCG, measles, and three doses each of DPT and polio vaccine (excluding polio 0). Some MICS surveys refer children in different age groups (e.g. 18-29 months, or 15-26 months).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.IMM.IBCG.Q4.ZS\",\"Vaccinations (BCG) (% of children ages 12-23 months): Q4\",\"Vaccinations: Percentage of children 12-23 months who have received specific vaccines by the time of the survey (according to the vaccination card or the mother's report). Children with all vaccinations refer children who have received BCG, measles, and three doses each of DPT and polio vaccine (excluding polio 0). Some MICS surveys refer children in different age groups (e.g. 18-29 months, or 15-26 months).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.IMM.IBCG.Q5.ZS\",\"Vaccinations (BCG) (% of children ages 12-23 months): Q5 (highest)\",\"Vaccinations: Percentage of children 12-23 months who have received specific vaccines by the time of the survey (according to the vaccination card or the mother's report). Children with all vaccinations refer children who have received BCG, measles, and three doses each of DPT and polio vaccine (excluding polio 0). Some MICS surveys refer children in different age groups (e.g. 18-29 months, or 15-26 months).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.IMM.IDPT\",\"Immunization, DPT (% of children ages 12-23 months)\",\"Child immunization measures the percentage of children ages 12-23 months who received vaccinations before 12 months or at any time before the survey. A child is considered adequately immunized against diphtheria, pertussis (or whooping cough), and tetanus (DPT) after receiving three doses of vaccine.\",\"World Development Indicators\",\"WHO and UNICEF (http://www.who.int/immunization/monitoring_surveillance/en/).\"\n\"SH.IMM.IDPT.Q1.ZS\",\"Vaccinations (DPT 3) (% of children ages 12-23 months): Q1 (lowest)\",\"Vaccinations: Percentage of children 12-23 months who have received specific vaccines by the time of the survey (according to the vaccination card or the mother's report). Children with all vaccinations refer children who have received BCG, measles, and three doses each of DPT and polio vaccine (excluding polio 0). Some MICS surveys refer children in different age groups (e.g. 18-29 months, or 15-26 months).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.IMM.IDPT.Q2.ZS\",\"Vaccinations (DPT 3) (% of children ages 12-23 months): Q2\",\"Vaccinations: Percentage of children 12-23 months who have received specific vaccines by the time of the survey (according to the vaccination card or the mother's report). Children with all vaccinations refer children who have received BCG, measles, and three doses each of DPT and polio vaccine (excluding polio 0). Some MICS surveys refer children in different age groups (e.g. 18-29 months, or 15-26 months).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.IMM.IDPT.Q3.ZS\",\"Vaccinations (DPT 3) (% of children ages 12-23 months): Q3\",\"Vaccinations: Percentage of children 12-23 months who have received specific vaccines by the time of the survey (according to the vaccination card or the mother's report). Children with all vaccinations refer children who have received BCG, measles, and three doses each of DPT and polio vaccine (excluding polio 0). Some MICS surveys refer children in different age groups (e.g. 18-29 months, or 15-26 months).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.IMM.IDPT.Q4.ZS\",\"Vaccinations (DPT 3) (% of children ages 12-23 months): Q4\",\"Vaccinations: Percentage of children 12-23 months who have received specific vaccines by the time of the survey (according to the vaccination card or the mother's report). Children with all vaccinations refer children who have received BCG, measles, and three doses each of DPT and polio vaccine (excluding polio 0). Some MICS surveys refer children in different age groups (e.g. 18-29 months, or 15-26 months).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.IMM.IDPT.Q5.ZS\",\"Vaccinations (DPT 3) (% of children ages 12-23 months): Q5 (highest)\",\"Vaccinations: Percentage of children 12-23 months who have received specific vaccines by the time of the survey (according to the vaccination card or the mother's report). Children with all vaccinations refer children who have received BCG, measles, and three doses each of DPT and polio vaccine (excluding polio 0). Some MICS surveys refer children in different age groups (e.g. 18-29 months, or 15-26 months).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.IMM.MEAS\",\"Immunization, measles (% of children ages 12-23 months)\",\"Child immunization measures the percentage of children ages 12-23 months who received vaccinations before 12 months or at any time before the survey. A child is considered adequately immunized against measles after receiving one dose of vaccine.\",\"World Development Indicators\",\"WHO and UNICEF (http://www.who.int/immunization/monitoring_surveillance/en/).\"\n\"SH.IMM.MEAS.Q1.ZS\",\"Vaccinations (Measles) (% of children ages 12-23 months): Q1 (lowest)\",\"Vaccinations: Percentage of children 12-23 months who have received specific vaccines by the time of the survey (according to the vaccination card or the mother's report). Children with all vaccinations refer children who have received BCG, measles, and three doses each of DPT and polio vaccine (excluding polio 0). Some MICS surveys refer children in different age groups (e.g. 18-29 months, or 15-26 months).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.IMM.MEAS.Q2.ZS\",\"Vaccinations (Measles) (% of children ages 12-23 months): Q2\",\"Vaccinations: Percentage of children 12-23 months who have received specific vaccines by the time of the survey (according to the vaccination card or the mother's report). Children with all vaccinations refer children who have received BCG, measles, and three doses each of DPT and polio vaccine (excluding polio 0). Some MICS surveys refer children in different age groups (e.g. 18-29 months, or 15-26 months).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.IMM.MEAS.Q3.ZS\",\"Vaccinations (Measles) (% of children ages 12-23 months): Q3\",\"Vaccinations: Percentage of children 12-23 months who have received specific vaccines by the time of the survey (according to the vaccination card or the mother's report). Children with all vaccinations refer children who have received BCG, measles, and three doses each of DPT and polio vaccine (excluding polio 0). Some MICS surveys refer children in different age groups (e.g. 18-29 months, or 15-26 months).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.IMM.MEAS.Q4.ZS\",\"Vaccinations (Measles) (% of children ages 12-23 months): Q4\",\"Vaccinations: Percentage of children 12-23 months who have received specific vaccines by the time of the survey (according to the vaccination card or the mother's report). Children with all vaccinations refer children who have received BCG, measles, and three doses each of DPT and polio vaccine (excluding polio 0). Some MICS surveys refer children in different age groups (e.g. 18-29 months, or 15-26 months).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.IMM.MEAS.Q5.ZS\",\"Vaccinations (Measles) (% of children ages 12-23 months): Q5 (highest)\",\"Vaccinations: Percentage of children 12-23 months who have received specific vaccines by the time of the survey (according to the vaccination card or the mother's report). Children with all vaccinations refer children who have received BCG, measles, and three doses each of DPT and polio vaccine (excluding polio 0). Some MICS surveys refer children in different age groups (e.g. 18-29 months, or 15-26 months).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.IMM.NONE.Q1.ZS\",\"Vaccinations (no vaccinations) (% of children ages 12-23 months): Q1 (lowest)\",\"Vaccinations: Percentage of children 12-23 months who have received specific vaccines by the time of the survey (according to the vaccination card or the mother's report). Children with all vaccinations refer children who have received BCG, measles, and three doses each of DPT and polio vaccine (excluding polio 0). Some MICS surveys refer children in different age groups (e.g. 18-29 months, or 15-26 months).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.IMM.NONE.Q2.ZS\",\"Vaccinations (no vaccinations) (% of children ages 12-23 months): Q2\",\"Vaccinations: Percentage of children 12-23 months who have received specific vaccines by the time of the survey (according to the vaccination card or the mother's report). Children with all vaccinations refer children who have received BCG, measles, and three doses each of DPT and polio vaccine (excluding polio 0). Some MICS surveys refer children in different age groups (e.g. 18-29 months, or 15-26 months).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.IMM.NONE.Q3.ZS\",\"Vaccinations (no vaccinations) (% of children ages 12-23 months): Q3\",\"Vaccinations: Percentage of children 12-23 months who have received specific vaccines by the time of the survey (according to the vaccination card or the mother's report). Children with all vaccinations refer children who have received BCG, measles, and three doses each of DPT and polio vaccine (excluding polio 0). Some MICS surveys refer children in different age groups (e.g. 18-29 months, or 15-26 months).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.IMM.NONE.Q4.ZS\",\"Vaccinations (no vaccinations) (% of children ages 12-23 months): Q4\",\"Vaccinations: Percentage of children 12-23 months who have received specific vaccines by the time of the survey (according to the vaccination card or the mother's report). Children with all vaccinations refer children who have received BCG, measles, and three doses each of DPT and polio vaccine (excluding polio 0). Some MICS surveys refer children in different age groups (e.g. 18-29 months, or 15-26 months).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.IMM.NONE.Q5.ZS\",\"Vaccinations (no vaccinations) (% of children ages 12-23 months): Q5 (highest)\",\"Vaccinations: Percentage of children 12-23 months who have received specific vaccines by the time of the survey (according to the vaccination card or the mother's report). Children with all vaccinations refer children who have received BCG, measles, and three doses each of DPT and polio vaccine (excluding polio 0). Some MICS surveys refer children in different age groups (e.g. 18-29 months, or 15-26 months).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.IMM.POL3\",\"Immunization, Pol3 (% of one-year-old children)\",\"Child immunization rate, Polio is the percentage of children ages 12-23 months who received vaccinations before 12 months or at any time before the survey. A child is considered adequately immunized after three doses.\",\"Health Nutrition and Population Statistics\",\"WHO and UNICEF (http://www.who.int/immunization_monitoring/routine/en/).\"\n\"SH.MED.BEDS.ZS\",\"Hospital beds (per 1,000 people)\",\"Hospital beds include inpatient beds available in public, private, general, and specialized hospitals and rehabilitation centers. In most cases beds for both acute and chronic care are included.\",\"World Development Indicators\",\"Data are from the World Health Organization, supplemented by country data.\"\n\"SH.MED.CMHW.P3\",\"Community health workers (per 1,000 people)\",\"Community health workers include various types of community health aides, many with country-specific occupational titles such as community health officers, community health-education workers, family health workers, lady health visitors and health extension package workers.\",\"World Development Indicators\",\"World Health Organization's Global Health Workforce Statistics, OECD, supplemented by country data.\"\n\"SH.MED.MWIV.TOTL\",\"Number of Midwives\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Village Census (PODES)\"\n\"SH.MED.NUMW.P3\",\"Nurses and midwives (per 1,000 people)\",\"Nurses and midwives include professional nurses, professional midwives, auxiliary nurses, auxiliary midwives, enrolled nurses, enrolled midwives and other associated personnel, such as dental nurses and primary care nurses.\",\"World Development Indicators\",\"World Health Organization's Global Health Workforce Statistics, OECD, supplemented by country data.\"\n\"SH.MED.PHYS.ZS\",\"Physicians (per 1,000 people)\",\"Physicians include generalist and specialist medical practitioners.\",\"World Development Indicators\",\"World Health Organization's Global Health Workforce Statistics, OECD, supplemented by country data.\"\n\"SH.MED.SAOP.P5\",\"Specialist surgical workforce (per 100,000 population)\",\"Specialist surgical workforce is the number of specialist surgical, anaesthetic, and obstetric (SAO) providers who are working in each country per 100,000 population.\",\"World Development Indicators\",\"The Lancet Commission on Global Surgery (www.lancetglobalsurgery.org).\"\n\"SH.MLR.CSES.TOTL\",\"Reported clinical malaria cases (total)\",\"Number of clinical malaria cases reported are the sum of cases confirmed by slide examination or RDT and probable and unconfirmed cases (cases that were not tested but treated as malaria). NMCPs often collect data on the number of suspected cases, those t\",\"Africa Development Indicators\",\"World Health Organization Global Malaria Programme (http://www.who.int/malaria/world_malaria_report_2009/all_mal2009_annexes.pdf)\"\n\"SH.MLR.DTHS.CHLD.ZS\",\"Deaths among children under five years of age due to malaria (%)\",\"\\\"Malaria mortality is the percentage of deaths due to malaria among children under five years.  Malaria was the underlying cause of death, that is, the disease which initiated the train of morbid events leading directly to death. This is the distribution of main causes of death among children aged < 5 years, expressed as percentage of total deaths.\\r \\\"\",\"Africa Development Indicators\",\"World Health Organisation.\"\n\"SH.MLR.DTHS.TOTL\",\"Reported malaria deaths (total)\",\"Reported malaria deaths include all deaths in health facilities that are attributed to malaria, whether or not confirmed by microscopy or by RDT.   Deaths reported before 2000 can be probable and confirmed or only confirmed deaths depending on the country\",\"Africa Development Indicators\",\"World Health Organization Global Malaria Programme (http://www.who.int/malaria/world_malaria_report_2009/all_mal2009_annexes.pdf)\"\n\"SH.MLR.ITN.1HH.ZS\",\"Households with one or more insect-treated mosquito net (%)\",\"Percentage of households owning at least one insecticide-treated bednet (ITN).  \",\"Africa Development Indicators\",\"DHS, MICS, MIS or MoH surveys.\"\n\"SH.MLR.NETA.Q1.ZS\",\"Mosquito net use by children (any mosquito net) (% of children under 5): Q1 (lowest)\",\"Mosquito net use by children: Percentage of children under age five years who slept under any mosquito net (treated or untreated), and an insecticide-treated net (ITN) the night before the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.NETA.Q2.ZS\",\"Mosquito net use by children (any mosquito net) (% of children under 5): Q2\",\"Mosquito net use by children: Percentage of children under age five years who slept under any mosquito net (treated or untreated), and an insecticide-treated net (ITN) the night before the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.NETA.Q3.ZS\",\"Mosquito net use by children (any mosquito net) (% of children under 5): Q3\",\"Mosquito net use by children: Percentage of children under age five years who slept under any mosquito net (treated or untreated), and an insecticide-treated net (ITN) the night before the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.NETA.Q4.ZS\",\"Mosquito net use by children (any mosquito net) (% of children under 5): Q4\",\"Mosquito net use by children: Percentage of children under age five years who slept under any mosquito net (treated or untreated), and an insecticide-treated net (ITN) the night before the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.NETA.Q5.ZS\",\"Mosquito net use by children (any mosquito net) (% of children under 5): Q5 (highest)\",\"Mosquito net use by children: Percentage of children under age five years who slept under any mosquito net (treated or untreated), and an insecticide-treated net (ITN) the night before the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.NETH.Q1.ZS\",\"Household posession of mosquito nets (any type of mosquito net) (% of households): Q1 (lowest)\",\"Household possession of mosquito nets: Percentage of households with at least one any type of mosquito net (treated or untreated), and insecticide-treated net (ITN).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.NETH.Q2.ZS\",\"Household posession of mosquito nets (any type of mosquito net) (% of households): Q2\",\"Household possession of mosquito nets: Percentage of households with at least one any type of mosquito net (treated or untreated), and insecticide-treated net (ITN).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.NETH.Q3.ZS\",\"Household posession of mosquito nets (any type of mosquito net) (% of households): Q3\",\"Household possession of mosquito nets: Percentage of households with at least one any type of mosquito net (treated or untreated), and insecticide-treated net (ITN).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.NETH.Q4.ZS\",\"Household posession of mosquito nets (any type of mosquito net) (% of households): Q4\",\"Household possession of mosquito nets: Percentage of households with at least one any type of mosquito net (treated or untreated), and insecticide-treated net (ITN).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.NETH.Q5.ZS\",\"Household posession of mosquito nets (any type of mosquito net) (% of households): Q5 (highest)\",\"Household possession of mosquito nets: Percentage of households with at least one any type of mosquito net (treated or untreated), and insecticide-treated net (ITN).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.NETP.Q1.ZS\",\"Mosquito net use by pregnant women (any mosquito net) (% of pregnant women): Q1 (lowest)\",\"Mosquito net use by pregnant women: Percentage of pregnant women who slept under any mosquito net (treated or untreated), and an insecticide-treated net (ITN) the night before the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.NETP.Q2.ZS\",\"Mosquito net use by pregnant women (any mosquito net) (% of pregnant women): Q2\",\"Mosquito net use by pregnant women: Percentage of pregnant women who slept under any mosquito net (treated or untreated), and an insecticide-treated net (ITN) the night before the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.NETP.Q3.ZS\",\"Mosquito net use by pregnant women (any mosquito net) (% of pregnant women): Q3\",\"Mosquito net use by pregnant women: Percentage of pregnant women who slept under any mosquito net (treated or untreated), and an insecticide-treated net (ITN) the night before the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.NETP.Q4.ZS\",\"Mosquito net use by pregnant women (any mosquito net) (% of pregnant women): Q4\",\"Mosquito net use by pregnant women: Percentage of pregnant women who slept under any mosquito net (treated or untreated), and an insecticide-treated net (ITN) the night before the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.NETP.Q5.ZS\",\"Mosquito net use by pregnant women (any mosquito net) (% of pregnant women): Q5 (highest)\",\"Mosquito net use by pregnant women: Percentage of pregnant women who slept under any mosquito net (treated or untreated), and an insecticide-treated net (ITN) the night before the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.NETS.Q2.ZS\",\"Mosquito net use by children (insecticide-treated net) (% of children under 5): Q2\",\"Mosquito net use by children: Percentage of children under age five years who slept under any mosquito net (treated or untreated), and an insecticide-treated net (ITN) the night before the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.NETS.Q3.ZS\",\"Mosquito net use by children (insecticide-treated net) (% of children under 5): Q3\",\"Mosquito net use by children: Percentage of children under age five years who slept under any mosquito net (treated or untreated), and an insecticide-treated net (ITN) the night before the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.NETS.Q4.ZS\",\"Mosquito net use by children (insecticide-treated net) (% of children under 5): Q4\",\"Mosquito net use by children: Percentage of children under age five years who slept under any mosquito net (treated or untreated), and an insecticide-treated net (ITN) the night before the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.NETS.ZS\",\"Use of insecticide-treated bed nets (% of under-5 population)\",\"Use of insecticide-treated bed nets refers to the percentage of children under age five who slept under an insecticide-treated bednet to prevent malaria.\",\"World Development Indicators\",\"UNICEF, State of the World's Children, Childinfo, and Demographic and Health Surveys.\"\n\"SH.MLR.NTHI.Q1.ZS\",\"Household posession of mosquito nets (insecticide-treated net) (% of households): Q1 (lowest)\",\"Household possession of mosquito nets: Percentage of households with at least one any type of mosquito net (treated or untreated), and insecticide-treated net (ITN).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.NTHI.Q2.ZS\",\"Household posession of mosquito nets (insecticide-treated net) (% of households): Q2\",\"Household possession of mosquito nets: Percentage of households with at least one any type of mosquito net (treated or untreated), and insecticide-treated net (ITN).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.NTHI.Q3.ZS\",\"Household posession of mosquito nets (insecticide-treated net) (% of households): Q3\",\"Household possession of mosquito nets: Percentage of households with at least one any type of mosquito net (treated or untreated), and insecticide-treated net (ITN).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.NTHI.Q4.ZS\",\"Household posession of mosquito nets (insecticide-treated net) (% of households): Q4\",\"Household possession of mosquito nets: Percentage of households with at least one any type of mosquito net (treated or untreated), and insecticide-treated net (ITN).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.NTHI.Q5.ZS\",\"Household posession of mosquito nets (insecticide-treated net) (% of households): Q5 (highest)\",\"Household possession of mosquito nets: Percentage of households with at least one any type of mosquito net (treated or untreated), and insecticide-treated net (ITN).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.NTPI.Q1.ZS\",\"Mosquito net use by pregnant women (insecticide-treated net) (% of pregnant women): Q1 (lowest)\",\"Mosquito net use by pregnant women: Percentage of pregnant women who slept under any mosquito net (treated or untreated), and an insecticide-treated net (ITN) the night before the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.NTPI.Q2.ZS\",\"Mosquito net use by pregnant women (insecticide-treated net) (% of pregnant women): Q2\",\"Mosquito net use by pregnant women: Percentage of pregnant women who slept under any mosquito net (treated or untreated), and an insecticide-treated net (ITN) the night before the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.NTPI.Q3.ZS\",\"Mosquito net use by pregnant women (insecticide-treated net) (% of pregnant women): Q3\",\"Mosquito net use by pregnant women: Percentage of pregnant women who slept under any mosquito net (treated or untreated), and an insecticide-treated net (ITN) the night before the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.NTPI.Q4.ZS\",\"Mosquito net use by pregnant women (insecticide-treated net) (% of pregnant women): Q4\",\"Mosquito net use by pregnant women: Percentage of pregnant women who slept under any mosquito net (treated or untreated), and an insecticide-treated net (ITN) the night before the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.NTPI.Q5.ZS\",\"Mosquito net use by pregnant women (insecticide-treated net) (% of pregnant women): Q5 (highest)\",\"Mosquito net use by pregnant women: Percentage of pregnant women who slept under any mosquito net (treated or untreated), and an insecticide-treated net (ITN) the night before the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.PREG.2IPT.ZS\",\"Pregnant women who took at least 2 doses of intermittent preventative treatment (%)\",\"Percentage of pregnant women reporting to have received IPT (intermittent preventive treatment; 2 or more doses).  \",\"Africa Development Indicators\",\"DHS, MICS, MIS or MoH surveys.\"\n\"SH.MLR.PREG.Q1.ZS\",\"Anti-malarial drug use by pregnant women (any antimalarial drug) (% of women with a birth): Q1 (lowest)\",\"Anti-malarial drug use by pregnant women: Percentage of women with a live birth in the two years preceding the survey who during the pregnancy took any antimalarial drug for prevention, and who took SP/Fansidar two or more doses.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.PREG.Q2.ZS\",\"Anti-malarial drug use by pregnant women (any antimalarial drug) (% of women with a birth): Q2\",\"Anti-malarial drug use by pregnant women: Percentage of women with a live birth in the two years preceding the survey who during the pregnancy took any antimalarial drug for prevention, and who took SP/Fansidar two or more doses.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.PREG.Q3.ZS\",\"Anti-malarial drug use by pregnant women (any antimalarial drug) (% of women with a birth): Q3\",\"Anti-malarial drug use by pregnant women: Percentage of women with a live birth in the two years preceding the survey who during the pregnancy took any antimalarial drug for prevention, and who took SP/Fansidar two or more doses.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.PREG.Q4.ZS\",\"Anti-malarial drug use by pregnant women (any antimalarial drug) (% of women with a birth): Q4\",\"Anti-malarial drug use by pregnant women: Percentage of women with a live birth in the two years preceding the survey who during the pregnancy took any antimalarial drug for prevention, and who took SP/Fansidar two or more doses.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.PREG.Q5.ZS\",\"Anti-malarial drug use by pregnant women (any antimalarial drug) (% of women with a birth): Q5 (highest)\",\"Anti-malarial drug use by pregnant women: Percentage of women with a live birth in the two years preceding the survey who during the pregnancy took any antimalarial drug for prevention, and who took SP/Fansidar two or more doses.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.PREG.ZS\",\"Use of any antimalarial drug\",\"Demographic and Health Surveys.\",\"Health Nutrition and Population Statistics\",\"Demographic and Health Surveys.\"\n\"SH.MLR.SPF2.ZS\",\"Use of Intermittent Preventive Treatment of malaria, 2+ doses of SP/Fansidar (% of pregnant women)\",\"Percentage of women with a live birth in the recent years preceding the survey who received 2+ doses of sulfadoxine-pyrimethamine (SP/Fansidar), at least one during an antenatal care visit. Intermittent Preventive Treatment (IPT) is preventive treatment with SP/Fansidar during an antenatal care (ANC) visit treatment with a dose of sulfadoxine-pyrimethamine (SP/Fansidar) to pregnant women at each scheduled antenatal visit after the first trimester, but not more frequently than once a month.\",\"Health Nutrition and Population Statistics\",\"UNICEF Childinfo, Multiple Indicator Cluster Surveys, Demographic and Health Surveys.\"\n\"SH.MLR.SPFN.Q1.ZS\",\"Anti-malarial drug use by pregnant women (SP/Fansidar two or more doses) (% of women with a birth): Q1 (lowest)\",\"Anti-malarial drug use by pregnant women: Percentage of women with a live birth in the two years preceding the survey who during the pregnancy took any antimalarial drug for prevention, and who took SP/Fansidar two or more doses.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.SPFN.Q2.ZS\",\"Anti-malarial drug use by pregnant women (SP/Fansidar two or more doses) (% of women with a birth): Q2\",\"Anti-malarial drug use by pregnant women: Percentage of women with a live birth in the two years preceding the survey who during the pregnancy took any antimalarial drug for prevention, and who took SP/Fansidar two or more doses.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.SPFN.Q3.ZS\",\"Anti-malarial drug use by pregnant women (SP/Fansidar two or more doses) (% of women with a birth): Q3\",\"Anti-malarial drug use by pregnant women: Percentage of women with a live birth in the two years preceding the survey who during the pregnancy took any antimalarial drug for prevention, and who took SP/Fansidar two or more doses.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.SPFN.Q4.ZS\",\"Anti-malarial drug use by pregnant women (SP/Fansidar two or more doses) (% of women with a birth): Q4\",\"Anti-malarial drug use by pregnant women: Percentage of women with a live birth in the two years preceding the survey who during the pregnancy took any antimalarial drug for prevention, and who took SP/Fansidar two or more doses.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.SPFN.Q5.ZS\",\"Anti-malarial drug use by pregnant women (SP/Fansidar two or more doses) (% of women with a birth): Q5 (highest)\",\"Anti-malarial drug use by pregnant women: Percentage of women with a live birth in the two years preceding the survey who during the pregnancy took any antimalarial drug for prevention, and who took SP/Fansidar two or more doses.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.TRET.Q1.ZS\",\"Treatment of fever (% of children under 5 with fever): Q1 (lowest)\",\"Treatment of fever: Percentage of children under age five years with fever in the two weeks preceding the survey who took antimalarial drugs.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.TRET.Q2.ZS\",\"Treatment of fever (% of children under 5 with fever): Q2\",\"Treatment of fever: Percentage of children under age five years with fever in the two weeks preceding the survey who took antimalarial drugs.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.TRET.Q3.ZS\",\"Treatment of fever (% of children under 5 with fever): Q3\",\"Treatment of fever: Percentage of children under age five years with fever in the two weeks preceding the survey who took antimalarial drugs.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.TRET.Q4.ZS\",\"Treatment of fever (% of children under 5 with fever): Q4\",\"Treatment of fever: Percentage of children under age five years with fever in the two weeks preceding the survey who took antimalarial drugs.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.TRET.Q5.ZS\",\"Treatment of fever (% of children under 5 with fever): Q5 (highest)\",\"Treatment of fever: Percentage of children under age five years with fever in the two weeks preceding the survey who took antimalarial drugs.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.MLR.TRET.ZS\",\"Children with fever receiving antimalarial drugs (% of children under age 5 with fever)\",\"Malaria treatment refers to the percentage of children under age five who were ill with fever in the last two weeks and received any appropriate (locally defined) anti-malarial drugs.\",\"World Development Indicators\",\"UNICEF, State of the World's Children, Childinfo, and Demographic and Health Surveys.\"\n\"SH.MMR.DTHS\",\"Number of maternal deaths\",\"A maternal death refers to the death of a woman while pregnant or within 42 days of termination of pregnancy, irrespective of the duration and site of the pregnancy, from any cause related to or aggravated by the pregnancy or its management but not from accidental or incidental causes.\",\"World Development Indicators\",\"WHO, UNICEF, UNFPA, World Bank Group, and the United Nations Population Division. Trends in Maternal Mortality: 1990 to 2015. Geneva, World Health Organization, 2015\"\n\"SH.MMR.RISK\",\"Lifetime risk of maternal death (1 in: rate varies by country)\",\"Life time risk of maternal death is the probability that a 15-year-old female will die eventually from a maternal cause assuming that current levels of fertility and mortality (including maternal mortality) do not change in the future, taking into account competing causes of death. \",\"World Development Indicators\",\"WHO, UNICEF, UNFPA, The World Bank, and the United Nations Population Division. Trends in Maternal Mortality: 1990 to 2015. Geneva, World Health Organization, 2015\"\n\"SH.MMR.RISK.ZS\",\"Lifetime risk of maternal death (%)\",\"Life time risk of maternal death is the probability that a 15-year-old female will die eventually from a maternal cause assuming that current levels of fertility and mortality (including maternal mortality) do not change in the future, taking into account competing causes of death. \",\"World Development Indicators\",\"WHO, UNICEF, UNFPA, The World Bank, and the United Nations Population Division. Trends in Maternal Mortality: 1990 to 2015. Geneva, World Health Organization, 2015\"\n\"SH.MORB.ZS\",\"Morbidity Rate (in %)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, National Social Economic Survey (SUSENAS)\"\n\"SH.POLINDES.TOTL\",\"Number of Polindes (Poliklinik Desa/Village Polyclinic)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Village Census (PODES)\"\n\"SH.PRG.ANEM\",\"Prevalence of anemia among pregnant women (%)\",\"Prevalence of anemia, pregnant women, is the percentage of pregnant women whose hemoglobin level is less than 110 grams per liter at sea level.\",\"World Development Indicators\",\"1. WHO. Global anemia prevalence and trends 1995-2011. Geneva: World Health Organization; forthcoming.  2. Stevens GA, Finucane MM, De-Regil LM, et al. Global, regional, and national trends in hemoglobin concentration and prevalence of total and severe anemia in children and pregnant and non-pregnant women for 1995-2011: a systematic analysis of population-representative data. The Lancet Global Health 2013; 1(1): e16-e25.\"\n\"SH.PRG.ARTC.ZS\",\"Antiretroviral therapy coverage (% of pregnant women living with HIV)\",\"The percentage of HIV-positive pregnant women who received antiretroviral medicine during the past 12 months to reduce the risk of mother-to-child transmission during pregnancy and delivery.\",\"Health Nutrition and Population Statistics\",\"UNAIDS estimates.\"\n\"SH.PRG.SYPH.ZS\",\"Prevalence of syphilis (% of women attending antenatal care)\",\"Percentage of women attending antenatal care seropositive for syphilis\",\"Health Nutrition and Population Statistics\",\"World Health Organization\"\n\"SH.PRV.SMOK.FE\",\"Smoking prevalence, females (% of adults)\",\"Prevalence of smoking, female is the percentage of women ages 15 and over who smoke any form of tobacco, including cigarettes, cigars, pipes or any other smoked tobacco products. Data include daily and non-daily or occasional smoking.\",\"World Development Indicators\",\"World Health Organization, Global Health Observatory Data Repository (http://apps.who.int/ghodata/).\"\n\"SH.PRV.SMOK.FE.Q1.ZS\",\"Smoking (% of women): Q1 (lowest)\",\"Smoking: Percentage of all women who smoke cigarettes, pipe or other tobacco.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.PRV.SMOK.FE.Q2.ZS\",\"Smoking (% of women): Q2\",\"Smoking: Percentage of all women who smoke cigarettes, pipe or other tobacco.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.PRV.SMOK.FE.Q3.ZS\",\"Smoking (% of women): Q3\",\"Smoking: Percentage of all women who smoke cigarettes, pipe or other tobacco.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.PRV.SMOK.FE.Q4.ZS\",\"Smoking (% of women): Q4\",\"Smoking: Percentage of all women who smoke cigarettes, pipe or other tobacco.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.PRV.SMOK.FE.Q5.ZS\",\"Smoking (% of women): Q5 (highest)\",\"Smoking: Percentage of all women who smoke cigarettes, pipe or other tobacco.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.PRV.SMOK.MA\",\"Smoking prevalence, males (% of adults)\",\"Prevalence of smoking, male is the percentage of men ages 15 and over who smoke any form of tobacco, including cigarettes, cigars, pipes or any other smoked tobacco products. Data include daily and non-daily or occasional smoking.\",\"World Development Indicators\",\"World Health Organization, Global Health Observatory Data Repository (http://apps.who.int/ghodata/).\"\n\"SH.PUSKESMAS.TOTL\",\"Number of Puskesmas and its line services\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Village Census (PODES)\"\n\"SH.SGR.CRSK.ZS\",\"Risk of catastrophic expenditure for surgical care (% of people at risk)\",\"The proportion of population at risk of catastrophic expenditure when surgical care is required. Catastrophic expenditure is definined as direct out of pocket payments for surgical and anaesthesia care exceeding 10% of total income.\",\"World Development Indicators\",\"The Lancet Commission on Global Surgery (www.lancetglobalsurgery.org).\"\n\"SH.SGR.IRSK.ZS\",\"Risk of impoverishing expenditure for surgical care (% of people at risk)\",\"The proportion of population at risk of impoverishing expenditure when surgical care is required. Impoverishing expenditure is definined as direct out of pocket payments for surgical and anaesthesia care which drive people below a poverty threshold (using a threshold of $1.25 PPP/day).\",\"World Development Indicators\",\"The Lancet Commission on Global Surgery (www.lancetglobalsurgery.org).\"\n\"SH.SGR.PROC.P5\",\"Number of surgical procedures (per 100,000 population)\",\"The number of procedures undertaken in an operating theatre per 100,000 population per year in each country. A procedure is defined as the incision, excision, or manipulation of tissue that needs regional or general anaesthesia, or profound sedation to control pain.\",\"World Development Indicators\",\"The Lancet Commission on Global Surgery (www.lancetglobalsurgery.org).\"\n\"SH.STA.ACSN\",\"Improved sanitation facilities (% of population with access)\",\"Access to improved sanitation facilities refers to the percentage of the population using improved sanitation facilities. Improved sanitation facilities are likely to ensure hygienic separation of human excreta from human contact. They include flush/pour flush (to piped sewer system, septic tank, pit latrine), ventilated improved pit (VIP) latrine, pit latrine with slab, and composting toilet.\",\"World Development Indicators\",\"WHO/UNICEF Joint Monitoring Programme (JMP) for Water Supply and Sanitation (http://www.wssinfo.org/).\"\n\"SH.STA.ACSN.RU\",\"Improved sanitation facilities, rural (% of rural population with access)\",\"Access to improved sanitation facilities refers to the percentage of the population using improved sanitation facilities. Improved sanitation facilities are likely to ensure hygienic separation of human excreta from human contact. They include flush/pour flush (to piped sewer system, septic tank, pit latrine), ventilated improved pit (VIP) latrine, pit latrine with slab, and composting toilet.\",\"World Development Indicators\",\"WHO/UNICEF Joint Monitoring Programme (JMP) for Water Supply and Sanitation (http://www.wssinfo.org/).\"\n\"SH.STA.ACSN.UR\",\"Improved sanitation facilities, urban (% of urban population with access)\",\"Access to improved sanitation facilities refers to the percentage of the population using improved sanitation facilities. Improved sanitation facilities are likely to ensure hygienic separation of human excreta from human contact. They include flush/pour flush (to piped sewer system, septic tank, pit latrine), ventilated improved pit (VIP) latrine, pit latrine with slab, and composting toilet.\",\"World Development Indicators\",\"WHO/UNICEF Joint Monitoring Programme (JMP) for Water Supply and Sanitation (http://www.wssinfo.org/).\"\n\"SH.STA.ANCP.Q1.ZS\",\"Components of antenatal care (received iron tablets or syrup) (% of women with a birth): Q1 (lowest)\",\"Components of antenatal care: Percentage of women with a live birth in the three years preceding the survey who received iron tablets or syrup during pregnancy before the most recent birth.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ANCP.Q2.ZS\",\"Components of antenatal care (received iron tablets or syrup) (% of women with a birth): Q2\",\"Components of antenatal care: Percentage of women with a live birth in the three years preceding the survey who received iron tablets or syrup during pregnancy before the most recent birth.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ANCP.Q3.ZS\",\"Components of antenatal care (received iron tablets or syrup) (% of women with a birth): Q3\",\"Components of antenatal care: Percentage of women with a live birth in the three years preceding the survey who received iron tablets or syrup during pregnancy before the most recent birth.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ANCP.Q4.ZS\",\"Components of antenatal care (received iron tablets or syrup) (% of women with a birth): Q4\",\"Components of antenatal care: Percentage of women with a live birth in the three years preceding the survey who received iron tablets or syrup during pregnancy before the most recent birth.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ANCP.Q5.ZS\",\"Components of antenatal care (received iron tablets or syrup) (% of women with a birth): Q5 (highest)\",\"Components of antenatal care: Percentage of women with a live birth in the three years preceding the survey who received iron tablets or syrup during pregnancy before the most recent birth.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ANV4.ZS\",\"Pregnant women receiving prenatal care of at least four visits (% of pregnant women)\",\"UNICEF, State of the World's Children, Childinfo, and Demographic and Health Surveys.\",\"Health Nutrition and Population Statistics\",\"UNICEF, State of the World's Children, Childinfo, and Demographic and Health Surveys.\"\n\"SH.STA.ANVC.Q1.ZS\",\"Antenatal care (any skilled personnel) (% of women with a birth): Q1 (lowest)\",\"Antenatal care: Percentage of women with one or more live births in the three (one, two) years preceding the survey who have received at least one antenatal care during pregnancy before the most recent birth from any skilled personnel and from a doctor. If the respondent mentioned more than one provider, only the most qualified provider is considered. The DHS surveys refer births in the three years preceding the survey, the MICS2 surveys refer births in the one year preceding the survey, and the MICS3 surveys refer births in the two years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ANVC.Q2.ZS\",\"Antenatal care (any skilled personnel) (% of women with a birth): Q2\",\"Antenatal care: Percentage of women with one or more live births in the three (one, two) years preceding the survey who have received at least one antenatal care during pregnancy before the most recent birth from any skilled personnel and from a doctor. If the respondent mentioned more than one provider, only the most qualified provider is considered. The DHS surveys refer births in the three years preceding the survey, the MICS2 surveys refer births in the one year preceding the survey, and the MICS3 surveys refer births in the two years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ANVC.Q3.ZS\",\"Antenatal care (any skilled personnel) (% of women with a birth): Q3\",\"Antenatal care: Percentage of women with one or more live births in the three (one, two) years preceding the survey who have received at least one antenatal care during pregnancy before the most recent birth from any skilled personnel and from a doctor. If the respondent mentioned more than one provider, only the most qualified provider is considered. The DHS surveys refer births in the three years preceding the survey, the MICS2 surveys refer births in the one year preceding the survey, and the MICS3 surveys refer births in the two years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ANVC.Q4.ZS\",\"Antenatal care (any skilled personnel) (% of women with a birth): Q4\",\"Antenatal care: Percentage of women with one or more live births in the three (one, two) years preceding the survey who have received at least one antenatal care during pregnancy before the most recent birth from any skilled personnel and from a doctor. If the respondent mentioned more than one provider, only the most qualified provider is considered. The DHS surveys refer births in the three years preceding the survey, the MICS2 surveys refer births in the one year preceding the survey, and the MICS3 surveys refer births in the two years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ANVC.Q5.ZS\",\"Antenatal care (any skilled personnel) (% of women with a birth): Q5 (highest)\",\"Antenatal care: Percentage of women with one or more live births in the three (one, two) years preceding the survey who have received at least one antenatal care during pregnancy before the most recent birth from any skilled personnel and from a doctor. If the respondent mentioned more than one provider, only the most qualified provider is considered. The DHS surveys refer births in the three years preceding the survey, the MICS2 surveys refer births in the one year preceding the survey, and the MICS3 surveys refer births in the two years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ANVC.ZS\",\"Pregnant women receiving prenatal care (%)\",\"Pregnant women receiving prenatal care are the percentage of women attended at least once during pregnancy by skilled health personnel for reasons related to pregnancy.\",\"World Development Indicators\",\"UNICEF, State of the World's Children, Childinfo, and Demographic and Health Surveys.\"\n\"SH.STA.ANVP.Q1.ZS\",\"Antenatal care (doctor) (% of women with a birth): Q1 (lowest)\",\"Antenatal care: Percentage of women with one or more live births in the three (one, two) years preceding the survey who have received at least one antenatal care during pregnancy before the most recent birth from any skilled personnel and from a doctor. If the respondent mentioned more than one provider, only the most qualified provider is considered. The DHS surveys refer births in the three years preceding the survey, the MICS2 surveys refer births in the one year preceding the survey, and the MICS3 surveys refer births in the two years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ANVP.Q2.ZS\",\"Antenatal care (doctor) (% of women with a birth): Q2\",\"Antenatal care: Percentage of women with one or more live births in the three (one, two) years preceding the survey who have received at least one antenatal care during pregnancy before the most recent birth from any skilled personnel and from a doctor. If the respondent mentioned more than one provider, only the most qualified provider is considered. The DHS surveys refer births in the three years preceding the survey, the MICS2 surveys refer births in the one year preceding the survey, and the MICS3 surveys refer births in the two years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ANVP.Q3.ZS\",\"Antenatal care (doctor) (% of women with a birth): Q3\",\"Antenatal care: Percentage of women with one or more live births in the three (one, two) years preceding the survey who have received at least one antenatal care during pregnancy before the most recent birth from any skilled personnel and from a doctor. If the respondent mentioned more than one provider, only the most qualified provider is considered. The DHS surveys refer births in the three years preceding the survey, the MICS2 surveys refer births in the one year preceding the survey, and the MICS3 surveys refer births in the two years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ANVP.Q4.ZS\",\"Antenatal care (doctor) (% of women with a birth): Q4\",\"Antenatal care: Percentage of women with one or more live births in the three (one, two) years preceding the survey who have received at least one antenatal care during pregnancy before the most recent birth from any skilled personnel and from a doctor. If the respondent mentioned more than one provider, only the most qualified provider is considered. The DHS surveys refer births in the three years preceding the survey, the MICS2 surveys refer births in the one year preceding the survey, and the MICS3 surveys refer births in the two years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ANVP.Q5.ZS\",\"Antenatal care (doctor) (% of women with a birth): Q5 (highest)\",\"Antenatal care: Percentage of women with one or more live births in the three (one, two) years preceding the survey who have received at least one antenatal care during pregnancy before the most recent birth from any skilled personnel and from a doctor. If the respondent mentioned more than one provider, only the most qualified provider is considered. The DHS surveys refer births in the three years preceding the survey, the MICS2 surveys refer births in the one year preceding the survey, and the MICS3 surveys refer births in the two years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ARIC.Q1.ZS\",\"Treatment of acute respiratory infection (ARI) (% of children under 5 taken to a health provider): Q1 (lowest)\",\"Treatment of acute respiratory infection (ARI): Percentage of children under age five years with acute respiratory infection (ARI) in the two weeks preceding the survey who were taken to a health facility.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ARIC.Q2.ZS\",\"Treatment of acute respiratory infection (ARI) (% of children under 5 taken to a health provider): Q2\",\"Treatment of acute respiratory infection (ARI): Percentage of children under age five years with acute respiratory infection (ARI) in the two weeks preceding the survey who were taken to a health facility.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ARIC.Q3.ZS\",\"Treatment of acute respiratory infection (ARI) (% of children under 5 taken to a health provider): Q3\",\"Treatment of acute respiratory infection (ARI): Percentage of children under age five years with acute respiratory infection (ARI) in the two weeks preceding the survey who were taken to a health facility.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ARIC.Q4.ZS\",\"Treatment of acute respiratory infection (ARI) (% of children under 5 taken to a health provider): Q4\",\"Treatment of acute respiratory infection (ARI): Percentage of children under age five years with acute respiratory infection (ARI) in the two weeks preceding the survey who were taken to a health facility.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ARIC.Q5.ZS\",\"Treatment of acute respiratory infection (ARI) (% of children under 5 taken to a health provider): Q5 (highest)\",\"Treatment of acute respiratory infection (ARI): Percentage of children under age five years with acute respiratory infection (ARI) in the two weeks preceding the survey who were taken to a health facility.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ARIC.ZS\",\"ARI treatment (% of children under 5 taken to a health provider)\",\"Children with acute respiratory infection (ARI) who are taken to a health provider refers to the percentage of children under age five with ARI in the last two weeks who were taken to an appropriate health provider, including hospital, health center, dispensary, village health worker, clinic, and private physician.\",\"World Development Indicators\",\"UNICEF, State of the World's Children, Childinfo, and Demographic and Health Surveys.\"\n\"SH.STA.ARIF.Q1.ZS\",\"Prevalence of acute respiratory infection (ARI) (% of children under 5): Q1 (lowest)\",\"Prevalence of acute respiratory infection (ARI): Percentage of children under age five years who were ill with a cough accompanied with rapid breathing in the two weeks preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ARIF.Q2.ZS\",\"Prevalence of acute respiratory infection (ARI) (% of children under 5): Q2\",\"Prevalence of acute respiratory infection (ARI): Percentage of children under age five years who were ill with a cough accompanied with rapid breathing in the two weeks preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ARIF.Q3.ZS\",\"Prevalence of acute respiratory infection (ARI) (% of children under 5): Q3\",\"Prevalence of acute respiratory infection (ARI): Percentage of children under age five years who were ill with a cough accompanied with rapid breathing in the two weeks preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ARIF.Q4.ZS\",\"Prevalence of acute respiratory infection (ARI) (% of children under 5): Q4\",\"Prevalence of acute respiratory infection (ARI): Percentage of children under age five years who were ill with a cough accompanied with rapid breathing in the two weeks preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ARIF.Q5.ZS\",\"Prevalence of acute respiratory infection (ARI) (% of children under 5): Q5 (highest)\",\"Prevalence of acute respiratory infection (ARI): Percentage of children under age five years who were ill with a cough accompanied with rapid breathing in the two weeks preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.BFED.Q1.ZS\",\"Breastfeeding (% of children under 6 months): Q1 (lowest)\",\"Breastfeeding: The percentage of children under age 6 months who were breastfed six or more times in the 24 hours preceding the interview.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.BFED.Q2.ZS\",\"Breastfeeding (% of children under 6 months): Q2\",\"Breastfeeding: The percentage of children under age 6 months who were breastfed six or more times in the 24 hours preceding the interview.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.BFED.Q3.ZS\",\"Breastfeeding (% of children under 6 months): Q3\",\"Breastfeeding: The percentage of children under age 6 months who were breastfed six or more times in the 24 hours preceding the interview.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.BFED.Q4.ZS\",\"Breastfeeding (% of children under 6 months): Q4\",\"Breastfeeding: The percentage of children under age 6 months who were breastfed six or more times in the 24 hours preceding the interview.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.BFED.Q5.ZS\",\"Breastfeeding (% of children under 6 months): Q5 (highest)\",\"Breastfeeding: The percentage of children under age 6 months who were breastfed six or more times in the 24 hours preceding the interview.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.BFED.ZS\",\"Exclusive breastfeeding (% of children under 6 months)\",\"Exclusive breastfeeding refers to the percentage of children less than six months old who are fed breast milk alone (no other liquids) in the past 24 hours.\",\"World Development Indicators\",\"UNICEF, State of the World's Children, Childinfo, and Demographic and Health Surveys.\"\n\"SH.STA.BRTC.Q1.ZS\",\"Assistance during delivery (any skilled personnel) (% of births): Q1 (lowest)\",\"Assistance during delivery (Assisted births): Percentage of live births in the three (one, two) years preceding the survey attended by any skilled personnel and by a doctor.  The DHS surveys refer births in the three years preceding the survey, the MICS2 surveys refer births in the one year preceding the survey, and the MICS3 surveys refer births in the two years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.BRTC.Q2.ZS\",\"Assistance during delivery (any skilled personnel) (% of births): Q2\",\"Assistance during delivery (Assisted births): Percentage of live births in the three (one, two) years preceding the survey attended by any skilled personnel and by a doctor.  The DHS surveys refer births in the three years preceding the survey, the MICS2 surveys refer births in the one year preceding the survey, and the MICS3 surveys refer births in the two years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.BRTC.Q3.ZS\",\"Assistance during delivery (any skilled personnel) (% of births): Q3\",\"Assistance during delivery (Assisted births): Percentage of live births in the three (one, two) years preceding the survey attended by any skilled personnel and by a doctor.  The DHS surveys refer births in the three years preceding the survey, the MICS2 surveys refer births in the one year preceding the survey, and the MICS3 surveys refer births in the two years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.BRTC.Q4.ZS\",\"Assistance during delivery (any skilled personnel) (% of births): Q4\",\"Assistance during delivery (Assisted births): Percentage of live births in the three (one, two) years preceding the survey attended by any skilled personnel and by a doctor.  The DHS surveys refer births in the three years preceding the survey, the MICS2 surveys refer births in the one year preceding the survey, and the MICS3 surveys refer births in the two years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.BRTC.Q5.ZS\",\"Assistance during delivery (any skilled personnel) (% of births): Q5 (highest)\",\"Assistance during delivery (Assisted births): Percentage of live births in the three (one, two) years preceding the survey attended by any skilled personnel and by a doctor.  The DHS surveys refer births in the three years preceding the survey, the MICS2 surveys refer births in the one year preceding the survey, and the MICS3 surveys refer births in the two years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.BRTC.ZS\",\"Births attended by skilled health staff (% of total)\",\"Births attended by skilled health staff are the percentage of deliveries attended by personnel trained to give the necessary supervision, care, and advice to women during pregnancy, labor, and the postpartum period; to conduct deliveries on their own; and to care for newborns.\",\"World Development Indicators\",\"UNICEF, State of the World's Children, Childinfo, and Demographic and Health Surveys.\"\n\"SH.STA.BRTF.Q1.ZS\",\"Place of delivery (births at health facility) (% of births): Q1 (lowest)\",\"Place of delivery (Births at health facility): Percentage of live births in the three years preceding the survey which took place at health facility.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.BRTF.Q2.ZS\",\"Place of delivery (births at health facility) (% of births): Q2\",\"Place of delivery (Births at health facility): Percentage of live births in the three years preceding the survey which took place at health facility.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.BRTF.Q3.ZS\",\"Place of delivery (births at health facility) (% of births): Q3\",\"Place of delivery (Births at health facility): Percentage of live births in the three years preceding the survey which took place at health facility.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.BRTF.Q4.ZS\",\"Place of delivery (births at health facility) (% of births): Q4\",\"Place of delivery (Births at health facility): Percentage of live births in the three years preceding the survey which took place at health facility.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.BRTF.Q5.ZS\",\"Place of delivery (births at health facility) (% of births): Q5 (highest)\",\"Place of delivery (Births at health facility): Percentage of live births in the three years preceding the survey which took place at health facility.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.BRTP.Q1.ZS\",\"Assistance during delivery (doctor) (% of births): Q1 (lowest)\",\"Assistance during delivery (Assisted births): Percentage of live births in the three (one, two) years preceding the survey attended by any skilled personnel and by a doctor.  The DHS surveys refer births in the three years preceding the survey, the MICS2 surveys refer births in the one year preceding the survey, and the MICS3 surveys refer births in the two years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.BRTP.Q2.ZS\",\"Assistance during delivery (doctor) (% of births): Q2\",\"Assistance during delivery (Assisted births): Percentage of live births in the three (one, two) years preceding the survey attended by any skilled personnel and by a doctor.  The DHS surveys refer births in the three years preceding the survey, the MICS2 surveys refer births in the one year preceding the survey, and the MICS3 surveys refer births in the two years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.BRTP.Q3.ZS\",\"Assistance during delivery (doctor) (% of births): Q3\",\"Assistance during delivery (Assisted births): Percentage of live births in the three (one, two) years preceding the survey attended by any skilled personnel and by a doctor.  The DHS surveys refer births in the three years preceding the survey, the MICS2 surveys refer births in the one year preceding the survey, and the MICS3 surveys refer births in the two years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.BRTP.Q4.ZS\",\"Assistance during delivery (doctor) (% of births): Q4\",\"Assistance during delivery (Assisted births): Percentage of live births in the three (one, two) years preceding the survey attended by any skilled personnel and by a doctor.  The DHS surveys refer births in the three years preceding the survey, the MICS2 surveys refer births in the one year preceding the survey, and the MICS3 surveys refer births in the two years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.BRTP.Q5.ZS\",\"Assistance during delivery (doctor) (% of births): Q5 (highest)\",\"Assistance during delivery (Assisted births): Percentage of live births in the three (one, two) years preceding the survey attended by any skilled personnel and by a doctor.  The DHS surveys refer births in the three years preceding the survey, the MICS2 surveys refer births in the one year preceding the survey, and the MICS3 surveys refer births in the two years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.BRTW.ZS\",\"Low-birthweight babies (% of births)\",\"Low-birthweight babies are newborns weighing less than 2,500 grams, with the measurement taken within the first hours of life, before significant postnatal weight loss has occurred.\",\"World Development Indicators\",\"UNICEF, State of the World's Children, Childinfo, and Demographic and Health Surveys.\"\n\"SH.STA.DIAB.ZS\",\"Diabetes prevalence (% of population ages 20 to 79)\",\"Diabetes prevalence refers to the percentage of people ages 20-79 who have type 1 or type 2 diabetes.\",\"World Development Indicators\",\"International Diabetes Federation, Diabetes Atlas.\"\n\"SH.STA.DIRH.Q1.ZS\",\"Prevalence of diarrhea (% of children under 5): Q1 (lowest)\",\"Prevalence of diarrhea: Percentage of children under age five years who had diarrhea in the two weeks preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.DIRH.Q2.ZS\",\"Prevalence of diarrhea (% of children under 5): Q2\",\"Prevalence of diarrhea: Percentage of children under age five years who had diarrhea in the two weeks preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.DIRH.Q3.ZS\",\"Prevalence of diarrhea (% of children under 5): Q3\",\"Prevalence of diarrhea: Percentage of children under age five years who had diarrhea in the two weeks preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.DIRH.Q4.ZS\",\"Prevalence of diarrhea (% of children under 5): Q4\",\"Prevalence of diarrhea: Percentage of children under age five years who had diarrhea in the two weeks preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.DIRH.Q5.ZS\",\"Prevalence of diarrhea (% of children under 5): Q5 (highest)\",\"Prevalence of diarrhea: Percentage of children under age five years who had diarrhea in the two weeks preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.FEVR.Q1.ZS\",\"Prevalence of children with fever (% of children under 5): Q1 (lowest)\",\"Prevalence of children with fever: Percentage of children under age five years with fever in the two weeks preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.FEVR.Q2.ZS\",\"Prevalence of children with fever (% of children under 5): Q2\",\"Prevalence of children with fever: Percentage of children under age five years with fever in the two weeks preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.FEVR.Q3.ZS\",\"Prevalence of children with fever (% of children under 5): Q3\",\"Prevalence of children with fever: Percentage of children under age five years with fever in the two weeks preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.FEVR.Q4.ZS\",\"Prevalence of children with fever (% of children under 5): Q4\",\"Prevalence of children with fever: Percentage of children under age five years with fever in the two weeks preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.FEVR.Q5.ZS\",\"Prevalence of children with fever (% of children under 5): Q5 (highest)\",\"Prevalence of children with fever: Percentage of children under age five years with fever in the two weeks preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.FGMS.Q1.ZS\",\"Female genital mutilation prevalence (%): Q1 (lowest)\",\"Percentage of women aged 15–49 who have gone through partial or total removal of the female external genitalia or other injury to the female genital organs for cultural or other non-therapeutic reasons. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of February 2016, and MICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SH.STA.FGMS.Q2.ZS\",\"Female genital mutilation prevalence (%): Q2\",\"Percentage of women aged 15–49 who have gone through partial or total removal of the female external genitalia or other injury to the female genital organs for cultural or other non-therapeutic reasons. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of February 2016, and MICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SH.STA.FGMS.Q3.ZS\",\"Female genital mutilation prevalence (%): Q3\",\"Percentage of women aged 15–49 who have gone through partial or total removal of the female external genitalia or other injury to the female genital organs for cultural or other non-therapeutic reasons. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of February 2016, and MICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SH.STA.FGMS.Q4.ZS\",\"Female genital mutilation prevalence (%): Q4\",\"Percentage of women aged 15–49 who have gone through partial or total removal of the female external genitalia or other injury to the female genital organs for cultural or other non-therapeutic reasons. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of February 2016, and MICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SH.STA.FGMS.Q5.ZS\",\"Female genital mutilation prevalence (%): Q5 (highest)\",\"Percentage of women aged 15–49 who have gone through partial or total removal of the female external genitalia or other injury to the female genital organs for cultural or other non-therapeutic reasons. Each wealth quintile represents one fifth of households with quintile 1 being the poorest 20 percent of households and quintile 5 being the richest 20 percent of households.\",\"Gender Statistics\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and other surveys: STATcompiler (http://www.statcompiler.com/) as of June 9, 2016, UNICEF global databases (http://www.data.unicef.org/) as of February 2016, and MICS Compiler (http://www.micscompiler.org/) as of June 12, 2016.\"\n\"SH.STA.FGMS.ZS\",\"Female genital mutilation prevalence (%)\",\"Percentage of women aged 15–49 who have gone through partial or total removal of the female external genitalia or other injury to the female genital organs for cultural or other non-therapeutic reasons.\",\"World Development Indicators\",\"UNICEF Childinfo (childinfo.org).\"\n\"SH.STA.IYCF.ZS\",\"Infant and young child feeding practices, all 3 IYCF (% children ages 6-23 months)\",\"Percentage of children age 6-23 months fed in accordance with all three infant and young child feeding (IYCF) practices (food diversity, feeding frequency, and consumption of breast milk or milk)\",\"Health Nutrition and Population Statistics\",\"Demographic and Health Surveys.\"\n\"SH.STA.LBMI.Q1.ZS\",\"Malnourished women (BMI is less than 18.5) (% of women): Q1 (lowest)\",\"Malnourished women (BMI is less than 18.5): Percentage of women whose body mass index (BMI) is less than 18.5 for women with births in the three years preceding the survey. The BMI is the ratio of the weight in kilograms to the square of the height in meters (kg/m2). The BMI excludes pregnant women and those who are less than three months postpartum.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.LBMI.Q2.ZS\",\"Malnourished women (BMI is less than 18.5) (% of women): Q2\",\"Malnourished women (BMI is less than 18.5): Percentage of women whose body mass index (BMI) is less than 18.5 for women with births in the three years preceding the survey. The BMI is the ratio of the weight in kilograms to the square of the height in meters (kg/m2). The BMI excludes pregnant women and those who are less than three months postpartum.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.LBMI.Q3.ZS\",\"Malnourished women (BMI is less than 18.5) (% of women): Q3\",\"Malnourished women (BMI is less than 18.5): Percentage of women whose body mass index (BMI) is less than 18.5 for women with births in the three years preceding the survey. The BMI is the ratio of the weight in kilograms to the square of the height in meters (kg/m2). The BMI excludes pregnant women and those who are less than three months postpartum.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.LBMI.Q4.ZS\",\"Malnourished women (BMI is less than 18.5) (% of women): Q4\",\"Malnourished women (BMI is less than 18.5): Percentage of women whose body mass index (BMI) is less than 18.5 for women with births in the three years preceding the survey. The BMI is the ratio of the weight in kilograms to the square of the height in meters (kg/m2). The BMI excludes pregnant women and those who are less than three months postpartum.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.LBMI.Q5.ZS\",\"Malnourished women (BMI is less than 18.5) (% of women): Q5 (highest)\",\"Malnourished women (BMI is less than 18.5): Percentage of women whose body mass index (BMI) is less than 18.5 for women with births in the three years preceding the survey. The BMI is the ratio of the weight in kilograms to the square of the height in meters (kg/m2). The BMI excludes pregnant women and those who are less than three months postpartum.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.MALN.FE.ZS\",\"Prevalence of underweight, weight for age, female (% of children under 5)\",\"Prevalence of underweight children is the percentage of children under age 5 whose weight for age is more than two standard deviations below the median for the international reference population ages 0-59 months. The data are based on the WHO's new child growth standards released in 2006.\",\"World Development Indicators\",\"World Health Organization, Global Database on Child Growth and Malnutrition. Country-level data are unadjusted data from national surveys, and thus may not be comparable across countries.\"\n\"SH.STA.MALN.MA.ZS\",\"Prevalence of underweight, weight for age, male (% of children under 5)\",\"Prevalence of underweight children is the percentage of children under age 5 whose weight for age is more than two standard deviations below the median for the international reference population ages 0-59 months. The data are based on the WHO's new child growth standards released in 2006.\",\"World Development Indicators\",\"World Health Organization, Global Database on Child Growth and Malnutrition. Country-level data are unadjusted data from national surveys, and thus may not be comparable across countries.\"\n\"SH.STA.MALN.Q1.ZS\",\"Malnourished children (underweight, -2SD) (% of children under 5): Q1 (lowest)\",\"Malnourished children: Percentage of children under age five years who are classified as undernourished according to three anthropometric indices of nutritional status: height-for-age (stunting), weight-for-age (underweight) and weight-for-height (wasting). Each index is expressed in terms of the number of standard deviation (SD) units from the median of the WHO Child Growth Standards. Children are classified as malnourished if their z-scores are below minus two or minus three standard deviations (-2 SD or -3 SD) from the median of the WHO Child Growth Standards. The percentage below -2 SD includes children who are below -3 SD.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.MALN.Q2.ZS\",\"Malnourished children (underweight, -2SD) (% of children under 5): Q2\",\"Malnourished children: Percentage of children under age five years who are classified as undernourished according to three anthropometric indices of nutritional status: height-for-age (stunting), weight-for-age (underweight) and weight-for-height (wasting). Each index is expressed in terms of the number of standard deviation (SD) units from the median of the WHO Child Growth Standards. Children are classified as malnourished if their z-scores are below minus two or minus three standard deviations (-2 SD or -3 SD) from the median of the WHO Child Growth Standards. The percentage below -2 SD includes children who are below -3 SD.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.MALN.Q3.ZS\",\"Malnourished children (underweight, -2SD) (% of children under 5): Q3\",\"Malnourished children: Percentage of children under age five years who are classified as undernourished according to three anthropometric indices of nutritional status: height-for-age (stunting), weight-for-age (underweight) and weight-for-height (wasting). Each index is expressed in terms of the number of standard deviation (SD) units from the median of the WHO Child Growth Standards. Children are classified as malnourished if their z-scores are below minus two or minus three standard deviations (-2 SD or -3 SD) from the median of the WHO Child Growth Standards. The percentage below -2 SD includes children who are below -3 SD.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.MALN.Q4.ZS\",\"Malnourished children (underweight, -2SD) (% of children under 5): Q4\",\"Malnourished children: Percentage of children under age five years who are classified as undernourished according to three anthropometric indices of nutritional status: height-for-age (stunting), weight-for-age (underweight) and weight-for-height (wasting). Each index is expressed in terms of the number of standard deviation (SD) units from the median of the WHO Child Growth Standards. Children are classified as malnourished if their z-scores are below minus two or minus three standard deviations (-2 SD or -3 SD) from the median of the WHO Child Growth Standards. The percentage below -2 SD includes children who are below -3 SD.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.MALN.Q5.ZS\",\"Malnourished children (underweight, -2SD) (% of children under 5): Q5 (highest)\",\"Malnourished children: Percentage of children under age five years who are classified as undernourished according to three anthropometric indices of nutritional status: height-for-age (stunting), weight-for-age (underweight) and weight-for-height (wasting). Each index is expressed in terms of the number of standard deviation (SD) units from the median of the WHO Child Growth Standards. Children are classified as malnourished if their z-scores are below minus two or minus three standard deviations (-2 SD or -3 SD) from the median of the WHO Child Growth Standards. The percentage below -2 SD includes children who are below -3 SD.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.MALN.ZS\",\"Prevalence of underweight, weight for age (% of children under 5)\",\"Prevalence of underweight children is the percentage of children under age 5 whose weight for age is more than two standard deviations below the median for the international reference population ages 0-59 months. The data are based on the WHO's new child growth standards released in 2006.\",\"World Development Indicators\",\"World Health Organization, Global Database on Child Growth and Malnutrition. Country-level data are unadjusted data from national surveys, and thus may not be comparable across countries. Adjusted, comparable data are available at http://www.who.int/nutgrowthdb/en. Aggregation is based on UNICEF, WHO, and the World Bank harmonized dataset (adjusted, comparable data) and methodology.\"\n\"SH.STA.MALR\",\"Malaria cases reported\",\"Reported cases of malaria are the sum of confirmed cases of malaria (confirmed by slide examination or RDT) and probable (unconfirmed) cases of malaria (cases that were not tested but treated as malaria). Predominant type of statistics: unadjusted.\\n\\n\",\"Health Nutrition and Population Statistics\",\"\"\n\"SH.STA.MLN3.Q1.ZS\",\"Malnourished children (underweight, -3SD) (% of children under 5): Q1 (lowest)\",\"Malnourished children: Percentage of children under age five years who are classified as undernourished according to three anthropometric indices of nutritional status: height-for-age (stunting), weight-for-age (underweight) and weight-for-height (wasting). Each index is expressed in terms of the number of standard deviation (SD) units from the median of the WHO Child Growth Standards. Children are classified as malnourished if their z-scores are below minus two or minus three standard deviations (-2 SD or -3 SD) from the median of the WHO Child Growth Standards. The percentage below -2 SD includes children who are below -3 SD.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.MLN3.Q2.ZS\",\"Malnourished children (underweight, -3SD) (% of children under 5): Q2\",\"Malnourished children: Percentage of children under age five years who are classified as undernourished according to three anthropometric indices of nutritional status: height-for-age (stunting), weight-for-age (underweight) and weight-for-height (wasting). Each index is expressed in terms of the number of standard deviation (SD) units from the median of the WHO Child Growth Standards. Children are classified as malnourished if their z-scores are below minus two or minus three standard deviations (-2 SD or -3 SD) from the median of the WHO Child Growth Standards. The percentage below -2 SD includes children who are below -3 SD.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.MLN3.Q3.ZS\",\"Malnourished children (underweight, -3SD) (% of children under 5): Q3\",\"Malnourished children: Percentage of children under age five years who are classified as undernourished according to three anthropometric indices of nutritional status: height-for-age (stunting), weight-for-age (underweight) and weight-for-height (wasting). Each index is expressed in terms of the number of standard deviation (SD) units from the median of the WHO Child Growth Standards. Children are classified as malnourished if their z-scores are below minus two or minus three standard deviations (-2 SD or -3 SD) from the median of the WHO Child Growth Standards. The percentage below -2 SD includes children who are below -3 SD.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.MLN3.Q4.ZS\",\"Malnourished children (underweight, -3SD) (% of children under 5): Q4\",\"Malnourished children: Percentage of children under age five years who are classified as undernourished according to three anthropometric indices of nutritional status: height-for-age (stunting), weight-for-age (underweight) and weight-for-height (wasting). Each index is expressed in terms of the number of standard deviation (SD) units from the median of the WHO Child Growth Standards. Children are classified as malnourished if their z-scores are below minus two or minus three standard deviations (-2 SD or -3 SD) from the median of the WHO Child Growth Standards. The percentage below -2 SD includes children who are below -3 SD.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.MLN3.Q5.ZS\",\"Malnourished children (underweight, -3SD) (% of children under 5): Q5 (highest)\",\"Malnourished children: Percentage of children under age five years who are classified as undernourished according to three anthropometric indices of nutritional status: height-for-age (stunting), weight-for-age (underweight) and weight-for-height (wasting). Each index is expressed in terms of the number of standard deviation (SD) units from the median of the WHO Child Growth Standards. Children are classified as malnourished if their z-scores are below minus two or minus three standard deviations (-2 SD or -3 SD) from the median of the WHO Child Growth Standards. The percentage below -2 SD includes children who are below -3 SD.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.MMRT\",\"Maternal mortality ratio (modeled estimate, per 100,000 live births)\",\"Maternal mortality ratio is the number of women who die from pregnancy-related causes while pregnant or within 42 days of pregnancy termination per 100,000 live births. The data are estimated with a regression model using information on the proportion of maternal deaths among non-AIDS deaths in women ages 15-49, fertility, birth attendants, and GDP.\",\"World Development Indicators\",\"WHO, UNICEF, UNFPA, World Bank Group, and the United Nations Population Division. Trends in Maternal Mortality: 1990 to 2015. Geneva, World Health Organization, 2015\"\n\"SH.STA.MMRT.NE\",\"Maternal mortality ratio (national estimate, per 100,000 live births)\",\"Maternal mortality ratio is the number of women who die from pregnancy-related causes while pregnant or within 42 days of pregnancy termination per 100,000 live births.\",\"World Development Indicators\",\"UNICEF, State of the World's Children, Childinfo, and Demographic and Health Surveys.\"\n\"SH.STA.OB18.FE.ZS\",\"Prevalence of obesity, female (% of female population ages 18+)\",\"Prevalence of obesity adult is the percentage of adults ages 18 and over whose Body Mass Index (BMI) is 30 kg/m² or higher. Body Mass Index (BMI) is a simple index of weight-for-height, or the weight in kilograms divided by the square of the height in meters.\",\"Gender Statistics\",\"World Health Organization (WHO):Global Health Observatory Data Repository\"\n\"SH.STA.OB18.MA.ZS\",\"Prevalence of obesity, male (% of male population ages 18+)\",\"Prevalence of obesity adult is the percentage of adults ages 18 and over whose Body Mass Index (BMI) is 30 kg/m² or higher. Body Mass Index (BMI) is a simple index of weight-for-height, or the weight in kilograms divided by the square of the height in meters.\",\"Gender Statistics\",\"World Health Organization (WHO): Global Health Observatory Data Repository\"\n\"SH.STA.ODFC.RU.ZS\",\"People practicing open defecation, rural (% of rural population)\",\"People practicing open defecation refers to the percentage of the population defecating in the open, such as in fields, forest, bushes, open bodies of water, on beaches, in other open spaces or disposed of with solid waste.\",\"World Development Indicators\",\"WHO/UNICEF Joint Monitoring Programme (JMP) for Water Supply and Sanitation (http://www.wssinfo.org/).\"\n\"SH.STA.ODFC.UR.ZS\",\"People practicing open defecation, urban (% of urban population)\",\"People practicing open defecation refers to the percentage of the population defecating in the open, such as in fields, forest, bushes, open bodies of water, on beaches, in other open spaces or disposed of with solid waste.\",\"World Development Indicators\",\"WHO/UNICEF Joint Monitoring Programme (JMP) for Water Supply and Sanitation (http://www.wssinfo.org/).\"\n\"SH.STA.ODFC.ZS\",\"People practicing open defecation (% of population)\",\"People practicing open defecation refers to the percentage of the population defecating in the open, such as in fields, forest, bushes, open bodies of water, on beaches, in other open spaces or disposed of with solid waste.\",\"World Development Indicators\",\"WHO/UNICEF Joint Monitoring Programme (JMP) for Water Supply and Sanitation (http://www.wssinfo.org/).\"\n\"SH.STA.ORCF.ZS\",\"Diarrhea treatment (% of children under 5 receiving oral rehydration and continued feeding)\",\"Children with diarrhea who received oral rehydration and continued feeding refer to the percentage of children under age five with diarrhea in the two weeks prior to the survey who received either oral rehydration therapy or increased fluids, with continued feeding.\",\"World Development Indicators\",\"UNICEF, State of the World's Children, Childinfo, and Demographic and Health Surveys.\"\n\"SH.STA.ORHF.Q1.ZS\",\"Treatment of diarrhea (ORS, RHS or increased fluids) (% of children under 5): Q1 (lowest)\",\"Treatment of diarrhea (ORS, RHS or increased fluids): Percentage of children under age five years with diarrhea in the two weeks preceding the survey who received oral rehydration solution (ORS), recommended home solution (RHS) or increased fluids.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ORHF.Q2.ZS\",\"Treatment of diarrhea (ORS, RHS or increased fluids) (% of children under 5): Q2\",\"Treatment of diarrhea (ORS, RHS or increased fluids): Percentage of children under age five years with diarrhea in the two weeks preceding the survey who received oral rehydration solution (ORS), recommended home solution (RHS) or increased fluids.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ORHF.Q3.ZS\",\"Treatment of diarrhea (ORS, RHS or increased fluids) (% of children under 5): Q3\",\"Treatment of diarrhea (ORS, RHS or increased fluids): Percentage of children under age five years with diarrhea in the two weeks preceding the survey who received oral rehydration solution (ORS), recommended home solution (RHS) or increased fluids.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ORHF.Q4.ZS\",\"Treatment of diarrhea (ORS, RHS or increased fluids) (% of children under 5): Q4\",\"Treatment of diarrhea (ORS, RHS or increased fluids): Percentage of children under age five years with diarrhea in the two weeks preceding the survey who received oral rehydration solution (ORS), recommended home solution (RHS) or increased fluids.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ORHF.Q5.ZS\",\"Treatment of diarrhea (ORS, RHS or increased fluids) (% of children under 5): Q5 (highest)\",\"Treatment of diarrhea (ORS, RHS or increased fluids): Percentage of children under age five years with diarrhea in the two weeks preceding the survey who received oral rehydration solution (ORS), recommended home solution (RHS) or increased fluids.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ORHK.Q1.ZS\",\"Knowledge of diarrhea care (% of mothers): Q1 (lowest)\",\"Knowledge of diarrhea care: Percentage of mothers with births in the three years preceding the survey who know about oral rehydration salts (ORS) packets.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ORHK.Q2.ZS\",\"Knowledge of diarrhea care (% of mothers): Q2\",\"Knowledge of diarrhea care: Percentage of mothers with births in the three years preceding the survey who know about oral rehydration salts (ORS) packets.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ORHK.Q3.ZS\",\"Knowledge of diarrhea care (% of mothers): Q3\",\"Knowledge of diarrhea care: Percentage of mothers with births in the three years preceding the survey who know about oral rehydration salts (ORS) packets.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ORHK.Q4.ZS\",\"Knowledge of diarrhea care (% of mothers): Q4\",\"Knowledge of diarrhea care: Percentage of mothers with births in the three years preceding the survey who know about oral rehydration salts (ORS) packets.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ORHK.Q5.ZS\",\"Knowledge of diarrhea care (% of mothers): Q5 (highest)\",\"Knowledge of diarrhea care: Percentage of mothers with births in the three years preceding the survey who know about oral rehydration salts (ORS) packets.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ORHS.Q1ZS\",\"Treatment of diarrhea (either ORS or RHS) (% of children under 5): Q1 (lowest)\",\"Treatment of diarrhea (either ORS or RHS): Percentage of children under age five years with diarrhea in the two weeks preceding the survey who received either oral rehydration solution (ORS) or recommended home solution (RHS).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ORHS.Q2ZS\",\"Treatment of diarrhea (either ORS or RHS) (% of children under 5): Q2\",\"Treatment of diarrhea (either ORS or RHS): Percentage of children under age five years with diarrhea in the two weeks preceding the survey who received either oral rehydration solution (ORS) or recommended home solution (RHS).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ORHS.Q3ZS\",\"Treatment of diarrhea (either ORS or RHS) (% of children under 5): Q3\",\"Treatment of diarrhea (either ORS or RHS): Percentage of children under age five years with diarrhea in the two weeks preceding the survey who received either oral rehydration solution (ORS) or recommended home solution (RHS).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ORHS.Q4ZS\",\"Treatment of diarrhea (either ORS or RHS) (% of children under 5): Q4\",\"Treatment of diarrhea (either ORS or RHS): Percentage of children under age five years with diarrhea in the two weeks preceding the survey who received either oral rehydration solution (ORS) or recommended home solution (RHS).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ORHS.Q5ZS\",\"Treatment of diarrhea (either ORS or RHS) (% of children under 5): Q5 (highest)\",\"Treatment of diarrhea (either ORS or RHS): Percentage of children under age five years with diarrhea in the two weeks preceding the survey who received either oral rehydration solution (ORS) or recommended home solution (RHS).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.ORTH\",\"Diarrhea treatment (% of children under 5 who received ORS packet)\",\"Percentage of children under age 5 with diarrhea in the two weeks preceding the survey who received oral rehydration salts (ORS packets or pre-packaged ORS fluids).\",\"World Development Indicators\",\"UNICEF, State of the World's Children, Childinfo, and Demographic and Health Surveys.\"\n\"SH.STA.OW15.FE.ZS\",\"Prevalence of overweight, female (% of female adults)\",\"Prevalence of overweight adult is the percentage of adults ages 18 and over whose Body Mass Index (BMI) is more than 25 kg/m2. Body Mass Index (BMI) is a simple index of weight-for-height, or the weight in kilograms divided by the square of the height in meters.\",\"Health Nutrition and Population Statistics\",\"World Health Organization, Global Health Observatory Data Repository (http://apps.who.int/ghodata/).\"\n\"SH.STA.OW15.MA.ZS\",\"Prevalence of overweight, male (% of male adults)\",\"Prevalence of overweight adult is the percentage of adults ages 18 and over whose Body Mass Index (BMI) is more than 25 kg/m2. Body Mass Index (BMI) is a simple index of weight-for-height, or the weight in kilograms divided by the square of the height in meters.\",\"Health Nutrition and Population Statistics\",\"World Health Organization, Global Health Observatory Data Repository (http://apps.who.int/ghodata/).\"\n\"SH.STA.OW15.ZS\",\"Prevalence of overweight (% of adults)\",\"Prevalence of overweight adult is the percentage of adults ages 18 and over whose Body Mass Index (BMI) is more than 25 kg/m². Body Mass Index (BMI) is a simple index of weight-for-height, or the weight in kilograms divided by the square of the height in meters.\",\"Health Nutrition and Population Statistics\",\"World Health Organization\"\n\"SH.STA.OWGH.FE.ZS\",\"Prevalence of overweight, weight for height, female (% of children under 5)\",\"Prevalence of overweight children is the percentage of children under age 5 whose weight for height is more than two standard deviations above the median for the international reference population of the corresponding age as established by the WHO's new child growth standards released in 2006.\",\"World Development Indicators\",\"World Health Organization, Global Database on Child Growth and Malnutrition. Country-level data are unadjusted data from national surveys, and thus may not be comparable across countries.\"\n\"SH.STA.OWGH.MA.ZS\",\"Prevalence of overweight, weight for height, male (% of children under 5)\",\"Prevalence of overweight children is the percentage of children under age 5 whose weight for height is more than two standard deviations above the median for the international reference population of the corresponding age as established by the WHO's new child growth standards released in 2006.\",\"World Development Indicators\",\"World Health Organization, Global Database on Child Growth and Malnutrition. Country-level data are unadjusted data from national surveys, and thus may not be comparable across countries.\"\n\"SH.STA.OWGH.ZS\",\"Prevalence of overweight, weight for height (% of children under 5)\",\"Prevalence of overweight children is the percentage of children under age 5 whose weight for height is more than two standard deviations above the median for the international reference population of the corresponding age as established by the WHO's new child growth standards released in 2006.\",\"World Development Indicators\",\"World Health Organization, Global Database on Child Growth and Malnutrition. Country-level data are unadjusted data from national surveys, and thus may not be comparable across countries. Adjusted, comparable data are available at http://www.who.int/nutgrowthdb/en. Aggregation is based on UNICEF, WHO, and the World Bank harmonized dataset (adjusted, comparable data) and methodology.\"\n\"SH.STA.PNVC.ZS\",\"Postnatal care coverage (% mothers)\",\"Percentage of women with a postnatal checkup in the first two days after birth\",\"Health Nutrition and Population Statistics\",\"Demographic and Health Surveys.\"\n\"SH.STA.STN3.Q1.ZS\",\"Malnourished children (stunting, -3SD) (% of children under 5): Q1 (lowest)\",\"Malnourished children: Percentage of children under age five years who are classified as undernourished according to three anthropometric indices of nutritional status: height-for-age (stunting), weight-for-age (underweight) and weight-for-height (wasting). Each index is expressed in terms of the number of standard deviation (SD) units from the median of the WHO Child Growth Standards. Children are classified as malnourished if their z-scores are below minus two or minus three standard deviations (-2 SD or -3 SD) from the median of the WHO Child Growth Standards. The percentage below -2 SD includes children who are below -3 SD.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.STN3.Q2.ZS\",\"Malnourished children (stunting, -3SD) (% of children under 5): Q2\",\"Malnourished children: Percentage of children under age five years who are classified as undernourished according to three anthropometric indices of nutritional status: height-for-age (stunting), weight-for-age (underweight) and weight-for-height (wasting). Each index is expressed in terms of the number of standard deviation (SD) units from the median of the WHO Child Growth Standards. Children are classified as malnourished if their z-scores are below minus two or minus three standard deviations (-2 SD or -3 SD) from the median of the WHO Child Growth Standards. The percentage below -2 SD includes children who are below -3 SD.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.STN3.Q3.ZS\",\"Malnourished children (stunting, -3SD) (% of children under 5): Q3\",\"Malnourished children: Percentage of children under age five years who are classified as undernourished according to three anthropometric indices of nutritional status: height-for-age (stunting), weight-for-age (underweight) and weight-for-height (wasting). Each index is expressed in terms of the number of standard deviation (SD) units from the median of the WHO Child Growth Standards. Children are classified as malnourished if their z-scores are below minus two or minus three standard deviations (-2 SD or -3 SD) from the median of the WHO Child Growth Standards. The percentage below -2 SD includes children who are below -3 SD.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.STN3.Q4.ZS\",\"Malnourished children (stunting, -3SD) (% of children under 5): Q4\",\"Malnourished children: Percentage of children under age five years who are classified as undernourished according to three anthropometric indices of nutritional status: height-for-age (stunting), weight-for-age (underweight) and weight-for-height (wasting). Each index is expressed in terms of the number of standard deviation (SD) units from the median of the WHO Child Growth Standards. Children are classified as malnourished if their z-scores are below minus two or minus three standard deviations (-2 SD or -3 SD) from the median of the WHO Child Growth Standards. The percentage below -2 SD includes children who are below -3 SD.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.STN3.Q5.ZS\",\"Malnourished children (stunting, -3SD) (% of children under 5): Q5 (highest)\",\"Malnourished children: Percentage of children under age five years who are classified as undernourished according to three anthropometric indices of nutritional status: height-for-age (stunting), weight-for-age (underweight) and weight-for-height (wasting). Each index is expressed in terms of the number of standard deviation (SD) units from the median of the WHO Child Growth Standards. Children are classified as malnourished if their z-scores are below minus two or minus three standard deviations (-2 SD or -3 SD) from the median of the WHO Child Growth Standards. The percentage below -2 SD includes children who are below -3 SD.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.STNT.FE.ZS\",\"Prevalence of stunting, height for age, female (% of children under 5)\",\"Prevalence of stunting is the percentage of children under age 5 whose height for age is more than two standard deviations below the median for the international reference population ages 0-59 months. For children up to two years old height is measured by recumbent length. For older children height is measured by stature while standing. The data are based on the WHO's new child growth standards released in 2006.\",\"World Development Indicators\",\"World Health Organization, Global Database on Child Growth and Malnutrition. Country-level data are unadjusted data from national surveys, and thus may not be comparable across countries.\"\n\"SH.STA.STNT.MA.ZS\",\"Prevalence of stunting, height for age, male (% of children under 5)\",\"Prevalence of stunting is the percentage of children under age 5 whose height for age is more than two standard deviations below the median for the international reference population ages 0-59 months. For children up to two years old height is measured by recumbent length. For older children height is measured by stature while standing. The data are based on the WHO's new child growth standards released in 2006.\",\"World Development Indicators\",\"World Health Organization, Global Database on Child Growth and Malnutrition. Country-level data are unadjusted data from national surveys, and thus may not be comparable across countries.\"\n\"SH.STA.STNT.Q1.ZS\",\"Malnourished children (stunting, -2SD) (% of children under 5): Q1 (lowest)\",\"Malnourished children: Percentage of children under age five years who are classified as undernourished according to three anthropometric indices of nutritional status: height-for-age (stunting), weight-for-age (underweight) and weight-for-height (wasting). Each index is expressed in terms of the number of standard deviation (SD) units from the median of the WHO Child Growth Standards. Children are classified as malnourished if their z-scores are below minus two or minus three standard deviations (-2 SD or -3 SD) from the median of the WHO Child Growth Standards. The percentage below -2 SD includes children who are below -3 SD.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.STNT.Q2.ZS\",\"Malnourished children (stunting, -2SD) (% of children under 5): Q2\",\"Malnourished children: Percentage of children under age five years who are classified as undernourished according to three anthropometric indices of nutritional status: height-for-age (stunting), weight-for-age (underweight) and weight-for-height (wasting). Each index is expressed in terms of the number of standard deviation (SD) units from the median of the WHO Child Growth Standards. Children are classified as malnourished if their z-scores are below minus two or minus three standard deviations (-2 SD or -3 SD) from the median of the WHO Child Growth Standards. The percentage below -2 SD includes children who are below -3 SD.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.STNT.Q3.ZS\",\"Malnourished children (stunting, -2SD) (% of children under 5): Q3\",\"Malnourished children: Percentage of children under age five years who are classified as undernourished according to three anthropometric indices of nutritional status: height-for-age (stunting), weight-for-age (underweight) and weight-for-height (wasting). Each index is expressed in terms of the number of standard deviation (SD) units from the median of the WHO Child Growth Standards. Children are classified as malnourished if their z-scores are below minus two or minus three standard deviations (-2 SD or -3 SD) from the median of the WHO Child Growth Standards. The percentage below -2 SD includes children who are below -3 SD.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.STNT.Q4.ZS\",\"Malnourished children (stunting, -2SD) (% of children under 5): Q4\",\"Malnourished children: Percentage of children under age five years who are classified as undernourished according to three anthropometric indices of nutritional status: height-for-age (stunting), weight-for-age (underweight) and weight-for-height (wasting). Each index is expressed in terms of the number of standard deviation (SD) units from the median of the WHO Child Growth Standards. Children are classified as malnourished if their z-scores are below minus two or minus three standard deviations (-2 SD or -3 SD) from the median of the WHO Child Growth Standards. The percentage below -2 SD includes children who are below -3 SD.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.STNT.Q5.ZS\",\"Malnourished children (stunting, -2SD) (% of children under 5): Q5 (highest)\",\"Malnourished children: Percentage of children under age five years who are classified as undernourished according to three anthropometric indices of nutritional status: height-for-age (stunting), weight-for-age (underweight) and weight-for-height (wasting). Each index is expressed in terms of the number of standard deviation (SD) units from the median of the WHO Child Growth Standards. Children are classified as malnourished if their z-scores are below minus two or minus three standard deviations (-2 SD or -3 SD) from the median of the WHO Child Growth Standards. The percentage below -2 SD includes children who are below -3 SD.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.STNT.ZS\",\"Prevalence of stunting, height for age (% of children under 5)\",\"Prevalence of stunting is the percentage of children under age 5 whose height for age is more than two standard deviations below the median for the international reference population ages 0-59 months. For children up to two years old height is measured by recumbent length. For older children height is measured by stature while standing. The data are based on the WHO's new child growth standards released in 2006.\",\"World Development Indicators\",\"World Health Organization, Global Database on Child Growth and Malnutrition. Country-level data are unadjusted data from national surveys, and thus may not be comparable across countries. Adjusted, comparable data are available at http://www.who.int/nutgrowthdb/en. Aggregation is based on UNICEF, WHO, and the World Bank harmonized dataset (adjusted, comparable data) and methodology.\"\n\"SH.STA.TRAF.P5\",\"Mortality caused by road traffic injury (per 100,000 people)\",\"Mortality caused by road traffic injury is estimated road traffic fatal injury deaths per 100,000 population.\",\"World Development Indicators\",\"World Health Organization, Global Status Report on Road Safety.\"\n\"SH.STA.WAST.FE.ZS\",\"Prevalence of wasting, weight for height, female (% of children under 5)\",\"Wasting prevalence is the proportion of children under five whose weight for height is more than two standard deviations below the median for the international reference population ages 0-59.\",\"World Development Indicators\",\"World Health Organization, Global Database on Child Growth and Malnutrition. Country-level data are unadjusted data from national surveys, and thus may not be comparable across countries.\"\n\"SH.STA.WAST.MA.ZS\",\"Prevalence of wasting, weight for height, male (% of children under 5)\",\"Wasting prevalence is the proportion of children under five whose weight for height is more than two standard deviations below the median for the international reference population ages 0-59.\",\"World Development Indicators\",\"World Health Organization, Global Database on Child Growth and Malnutrition. Country-level data are unadjusted data from national surveys, and thus may not be comparable across countries.\"\n\"SH.STA.WAST.Q1.ZS\",\"Malnourished children (wasting, -2SD) (% of children under 5): Q1 (lowest)\",\"Malnourished children: Percentage of children under age five years who are classified as undernourished according to three anthropometric indices of nutritional status: height-for-age (stunting), weight-for-age (underweight) and weight-for-height (wasting). Each index is expressed in terms of the number of standard deviation (SD) units from the median of the WHO Child Growth Standards. Children are classified as malnourished if their z-scores are below minus two or minus three standard deviations (-2 SD or -3 SD) from the median of the WHO Child Growth Standards. The percentage below -2 SD includes children who are below -3 SD.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.WAST.Q2.ZS\",\"Malnourished children (wasting, -2SD) (% of children under 5): Q2\",\"Malnourished children: Percentage of children under age five years who are classified as undernourished according to three anthropometric indices of nutritional status: height-for-age (stunting), weight-for-age (underweight) and weight-for-height (wasting). Each index is expressed in terms of the number of standard deviation (SD) units from the median of the WHO Child Growth Standards. Children are classified as malnourished if their z-scores are below minus two or minus three standard deviations (-2 SD or -3 SD) from the median of the WHO Child Growth Standards. The percentage below -2 SD includes children who are below -3 SD.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.WAST.Q3.ZS\",\"Malnourished children (wasting, -2SD) (% of children under 5): Q3\",\"Malnourished children: Percentage of children under age five years who are classified as undernourished according to three anthropometric indices of nutritional status: height-for-age (stunting), weight-for-age (underweight) and weight-for-height (wasting). Each index is expressed in terms of the number of standard deviation (SD) units from the median of the WHO Child Growth Standards. Children are classified as malnourished if their z-scores are below minus two or minus three standard deviations (-2 SD or -3 SD) from the median of the WHO Child Growth Standards. The percentage below -2 SD includes children who are below -3 SD.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.WAST.Q4.ZS\",\"Malnourished children (wasting, -2SD) (% of children under 5): Q4\",\"Malnourished children: Percentage of children under age five years who are classified as undernourished according to three anthropometric indices of nutritional status: height-for-age (stunting), weight-for-age (underweight) and weight-for-height (wasting). Each index is expressed in terms of the number of standard deviation (SD) units from the median of the WHO Child Growth Standards. Children are classified as malnourished if their z-scores are below minus two or minus three standard deviations (-2 SD or -3 SD) from the median of the WHO Child Growth Standards. The percentage below -2 SD includes children who are below -3 SD.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.WAST.Q5.ZS\",\"Malnourished children (wasting, -2SD) (% of children under 5): Q5 (highest)\",\"Malnourished children: Percentage of children under age five years who are classified as undernourished according to three anthropometric indices of nutritional status: height-for-age (stunting), weight-for-age (underweight) and weight-for-height (wasting). Each index is expressed in terms of the number of standard deviation (SD) units from the median of the WHO Child Growth Standards. Children are classified as malnourished if their z-scores are below minus two or minus three standard deviations (-2 SD or -3 SD) from the median of the WHO Child Growth Standards. The percentage below -2 SD includes children who are below -3 SD.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.WAST.ZS\",\"Prevalence of wasting, weight for height (% of children under 5)\",\"Wasting prevalence is the proportion of children under five whose weight for height is more than two standard deviations below the median for the international reference population ages 0-59.\",\"World Development Indicators\",\"World Health Organization, Global Database on Child Growth and Malnutrition. Country-level data are unadjusted data from national surveys, and thus may not be comparable across countries. Adjusted, comparable data are available at http://www.who.int/nutgrowthdb/en. Aggregation is based on UNICEF, WHO, and the World Bank harmonized dataset (adjusted, comparable data) and methodology.\"\n\"SH.STA.WST3.Q1.ZS\",\"Malnourished children (wasting, -3SD) (% of children under 5): Q1 (lowest)\",\"Malnourished children: Percentage of children under age five years who are classified as undernourished according to three anthropometric indices of nutritional status: height-for-age (stunting), weight-for-age (underweight) and weight-for-height (wasting). Each index is expressed in terms of the number of standard deviation (SD) units from the median of the WHO Child Growth Standards. Children are classified as malnourished if their z-scores are below minus two or minus three standard deviations (-2 SD or -3 SD) from the median of the WHO Child Growth Standards. The percentage below -2 SD includes children who are below -3 SD.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.WST3.Q2.ZS\",\"Malnourished children (wasting, -3SD) (% of children under 5): Q2\",\"Malnourished children: Percentage of children under age five years who are classified as undernourished according to three anthropometric indices of nutritional status: height-for-age (stunting), weight-for-age (underweight) and weight-for-height (wasting). Each index is expressed in terms of the number of standard deviation (SD) units from the median of the WHO Child Growth Standards. Children are classified as malnourished if their z-scores are below minus two or minus three standard deviations (-2 SD or -3 SD) from the median of the WHO Child Growth Standards. The percentage below -2 SD includes children who are below -3 SD.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.WST3.Q3.ZS\",\"Malnourished children (wasting, -3SD) (% of children under 5): Q3\",\"Malnourished children: Percentage of children under age five years who are classified as undernourished according to three anthropometric indices of nutritional status: height-for-age (stunting), weight-for-age (underweight) and weight-for-height (wasting). Each index is expressed in terms of the number of standard deviation (SD) units from the median of the WHO Child Growth Standards. Children are classified as malnourished if their z-scores are below minus two or minus three standard deviations (-2 SD or -3 SD) from the median of the WHO Child Growth Standards. The percentage below -2 SD includes children who are below -3 SD.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.WST3.Q4.ZS\",\"Malnourished children (wasting, -3SD) (% of children under 5): Q4\",\"Malnourished children: Percentage of children under age five years who are classified as undernourished according to three anthropometric indices of nutritional status: height-for-age (stunting), weight-for-age (underweight) and weight-for-height (wasting). Each index is expressed in terms of the number of standard deviation (SD) units from the median of the WHO Child Growth Standards. Children are classified as malnourished if their z-scores are below minus two or minus three standard deviations (-2 SD or -3 SD) from the median of the WHO Child Growth Standards. The percentage below -2 SD includes children who are below -3 SD.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.STA.WST3.Q5.ZS\",\"Malnourished children (wasting, -3SD) (% of children under 5): Q5 (highest)\",\"Malnourished children: Percentage of children under age five years who are classified as undernourished according to three anthropometric indices of nutritional status: height-for-age (stunting), weight-for-age (underweight) and weight-for-height (wasting). Each index is expressed in terms of the number of standard deviation (SD) units from the median of the WHO Child Growth Standards. Children are classified as malnourished if their z-scores are below minus two or minus three standard deviations (-2 SD or -3 SD) from the median of the WHO Child Growth Standards. The percentage below -2 SD includes children who are below -3 SD.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SH.SVR.WAST.FE.ZS\",\"Prevalence of severe wasting, weight for height, female (% of children under 5)\",\"Severe wasting prevalence is the proportion of children under five whose weight for height is more than three standard deviations below the median for the international reference population ages 0-59.\",\"World Development Indicators\",\"World Health Organization, Global Database on Child Growth and Malnutrition. Country-level data are unadjusted data from national surveys, and thus may not be comparable across countries.\"\n\"SH.SVR.WAST.MA.ZS\",\"Prevalence of severe wasting, weight for height, male (% of children under 5)\",\"Severe wasting prevalence is the proportion of children under five whose weight for height is more than three standard deviations below the median for the international reference population ages 0-59.\",\"World Development Indicators\",\"World Health Organization, Global Database on Child Growth and Malnutrition. Country-level data are unadjusted data from national surveys, and thus may not be comparable across countries.\"\n\"SH.SVR.WAST.ZS\",\"Prevalence of severe wasting, weight for height (% of children under 5)\",\"Severe wasting prevalence is the proportion of children under five whose weight for height is more than three standard deviations below the median for the international reference population ages 0-59.\",\"World Development Indicators\",\"World Health Organization, Global Database on Child Growth and Malnutrition. Country-level data are unadjusted data from national surveys, and thus may not be comparable across countries. Adjusted, comparable data are available at http://www.who.int/nutgrowthdb/en. Aggregation is based on UNICEF, WHO, and the World Bank harmonized dataset (adjusted, comparable data) and methodology.\"\n\"SH.TBS.CURE.ZS\",\"Tuberculosis treatment success rate (% of new cases)\",\"Tuberculosis treatment success rate is the percentage of all new tuberculosis cases (or new and relapse cases for some countries) registered under a national tuberculosis control programme in a given year that successfully completed treatment, with or without bacteriological evidence of success (\\\"cured\\\" and \\\"treatment completed\\\" respectively).\",\"World Development Indicators\",\"World Health Organization, Global Tuberculosis Control Report.\"\n\"SH.TBS.DTEC.ZS\",\"Tuberculosis case detection rate (%, all forms)\",\"Tuberculosis case detection rate (all forms) is the number of new and relapse tuberculosis cases notified to WHO in a given year, divided by WHO's estimate of the number of incident tuberculosis cases for the same year, expressed as a percentage. Estimates for all years are recalculated as new information becomes available and techniques are refined, so they may differ from those published previously.\",\"World Development Indicators\",\"World Health Organization, Global Tuberculosis Report.\"\n\"SH.TBS.INCD\",\"Incidence of tuberculosis (per 100,000 people)\",\"Incidence of tuberculosis is the estimated number of new and relapse tuberculosis cases arising in a given year, expressed as the rate per 100,000 population. All forms of TB are included, including cases in people living with HIV. Estimates for all years are recalculated as new information becomes available and techniques are refined, so they may differ from those published previously.\",\"World Development Indicators\",\"World Health Organization, Global Tuberculosis Report.\"\n\"SH.TBS.INCD.HG\",\"Incidence of tuberculosis, high uncertainty bound (per 100,000 people)\",\"Incidence of tuberculosis is the estimated number of new pulmonary, smear positive, and extra-pulmonary tuberculosis cases.\",\"Africa Development Indicators\",\"World Health Organization, Global Tuberculosis Control Report.\"\n\"SH.TBS.INCD.LW\",\"Incidence of tuberculosis, low uncertainty bound (per 100,000 people)\",\"Incidence of tuberculosis is the estimated number of new pulmonary, smear positive, and extra-pulmonary tuberculosis cases.\",\"Africa Development Indicators\",\"World Health Organization, Global Tuberculosis Control Report.\"\n\"SH.TBS.MORT\",\"Tuberculosis death rate (per 100,000 people)\",\"Tuberculosis death rate is the estimated number of deaths from tuberculosis among HIV-negative people, expressed as the rate per 100,000 population.  Estimates for all years are recalculated as new information becomes available and techniques are refined, so they may differ from those published previously.\",\"Health Nutrition and Population Statistics\",\"World Health Organization, Global Tuberculosis Report.\"\n\"SH.TBS.MORT.HG\",\"Deaths due to tuberculosis among HIV-negative people, high uncertainty bound (per 100,000 population)\",\"The estimated number of deaths attributable to tuberculosis (TB) in a given time period.\",\"Africa Development Indicators\",\"World Health Organization, Global Tuberculosis Control Report.\"\n\"SH.TBS.MORT.LW\",\"Deaths due to tuberculosis among HIV-negative people, low uncertainty bound (per 100,000 population)\",\"The estimated number of deaths attributable to tuberculosis (TB) in a given time period.\",\"Africa Development Indicators\",\"World Health Organization, Global Tuberculosis Control Report.\"\n\"SH.TBS.PREV\",\"Prevalence of tuberculosis (per 100,000 population)\",\"Prevalence of tuberculosis is the estimated number of TB cases (all forms) at a given point in time, expressed as the rate per 100,000 population. Estimates for all years are recalculated as new information becomes available and techniques are refined, so they may differ from those published previously.\",\"Health Nutrition and Population Statistics\",\"World Health Organization, Global Tuberculosis Report.\"\n\"SH.TBS.PREV.HG\",\"Tuberculosis prevalence rate, high uncertainty bound (per 1000,000 population, WHO)\",\"The number of cases of tuberculosis (all forms) in a population at a given point in time (the middle of the calendar year), expressed as the rate per 100 000 population. It is sometimes referred to as \\\"point prevalence\\\" high uncertainty bound. Estimates include cases of TB in people with HIV.  Published values are rounded to three significant figures. Uncertainty bounds are provided in addition to best estimates.  \",\"Africa Development Indicators\",\"World Health Organization, Global Tuberculosis Control Report.\"\n\"SH.TBS.PREV.LW\",\"Tuberculosis prevalence rate, low uncertainty bound (per 1000,000 population, WHO)\",\"The number of cases of tuberculosis (all forms) in a population at a given point in time (the middle of the calendar year), expressed as the rate per 100 000 population. It is sometimes referred to as \\\"point prevalence\\\" low uncertainty bound. Estimates include cases of TB in people with HIV.  Published values are rounded to three significant figures. Uncertainty bounds are provided in addition to best estimates.  \",\"Africa Development Indicators\",\"World Health Organization, Global Tuberculosis Control Report.\"\n\"SH.VAC.TTNS.Q1.ZS\",\"Tetanus toxoid vaccination (% of live births): Q1 (lowest)\",\"Percent distribution of last live births in the last three years preceding the survey for tetanus toxoid injections (two doses or more) given to the mother during pregnancy.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"\"\n\"SH.VAC.TTNS.Q2.ZS\",\"Tetanus toxoid vaccination (% of live births): Q2\",\"Percent distribution of last live births in the last three years preceding the survey for tetanus toxoid injections (two doses or more) given to the mother during pregnancy.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"\"\n\"SH.VAC.TTNS.Q3.ZS\",\"Tetanus toxoid vaccination (% of live births): Q3\",\"Percent distribution of last live births in the last three years preceding the survey for tetanus toxoid injections (two doses or more) given to the mother during pregnancy.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"\"\n\"SH.VAC.TTNS.Q4.ZS\",\"Tetanus toxoid vaccination (% of live births): Q4\",\"Percent distribution of last live births in the last three years preceding the survey for tetanus toxoid injections (two doses or more) given to the mother during pregnancy.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"\"\n\"SH.VAC.TTNS.Q5.ZS\",\"Tetanus toxoid vaccination (% of live births): Q5 (highest)\",\"Percent distribution of last live births in the last three years preceding the survey for tetanus toxoid injections (two doses or more) given to the mother during pregnancy.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"\"\n\"SH.VAC.TTNS.ZS\",\"Newborns protected against tetanus (%)\",\"Newborns protected against tetanus are the percentage of births by women of child-bearing age who are immunized against tetanus.\",\"World Development Indicators\",\"WHO and UNICEF (http://www.who.int/immunization/monitoring_surveillance/en/).\"\n\"SH.XPD.EXTR.ZS\",\"External resources for health (% of total expenditure on health)\",\"External resources for health are funds or services in kind that are provided by entities not part of the country in question. The resources may come from international organizations, other countries through bilateral arrangements, or foreign nongovernmental organizations. These resources are part of total health expenditure.\",\"World Development Indicators\",\"World Health Organization Global Health Expenditure database (see http://apps.who.int/nha/database for the most recent updates).\"\n\"SH.XPD.OOPC.TO.ZS\",\"Out-of-pocket health expenditure (% of total expenditure on health)\",\"Out of pocket expenditure is any direct outlay by households, including gratuities and in-kind payments, to health practitioners and suppliers of pharmaceuticals, therapeutic appliances, and other goods and services whose primary intent is to contribute to the restoration or enhancement of the health status of individuals or population groups. It is a part of private health expenditure.\",\"World Development Indicators\",\"World Health Organization Global Health Expenditure database (see http://apps.who.int/nha/database for the most recent updates).\"\n\"SH.XPD.OOPC.ZS\",\"Out-of-pocket health expenditure (% of private expenditure on health)\",\"Out of pocket expenditure is any direct outlay by households, including gratuities and in-kind payments, to health practitioners and suppliers of pharmaceuticals, therapeutic appliances, and other goods and services whose primary intent is to contribute to the restoration or enhancement of the health status of individuals or population groups. It is a part of private health expenditure.\",\"World Development Indicators\",\"World Health Organization Global Health Expenditure database (see http://apps.who.int/nha/database for the most recent updates).\"\n\"SH.XPD.PCAP\",\"Health expenditure per capita (current US$)\",\"Total health expenditure is the sum of public and private health expenditures as a ratio of total population. It covers the provision of health services (preventive and curative), family planning activities, nutrition activities, and emergency aid designated for health but does not include provision of water and sanitation. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Health Organization Global Health Expenditure database (see http://apps.who.int/nha/database for the most recent updates).\"\n\"SH.XPD.PCAP.GX\",\"Government health expenditure per capita (current US$)\",\"General government expenditure corresponds to the consolidated outlays of all levels of government: territorial authorities (Central/Federal Government, Provincial/Regional/State/District authorities, Municipal/ Local governments), social security institutions and extra budgetary funds, including capital outlays. It is provided by the Central Bank/Ministry of Finance to the International Monetary Fund or by the United Nations Statistics Department.   \",\"Africa Development Indicators\",\"World Health Organization (http://www.who.int/nha/country/en/)\"\n\"SH.XPD.PCAP.PP.KD\",\"Health expenditure per capita, PPP (constant 2011 international $)\",\"Total health expenditure is the sum of public and private health expenditures as a ratio of total population. It covers the provision of health services (preventive and curative), family planning activities, nutrition activities, and emergency aid designated for health but does not include provision of water and sanitation. Data are in international dollars converted using 2011 purchasing power parity (PPP) rates.\",\"World Development Indicators\",\"World Health Organization Global Health Expenditure database (see http://apps.who.int/nha/database for the most recent updates).\"\n\"SH.XPD.PRIV.PRPP.ZS\",\"Private prepaid plans (% of private expenditure on health)\",\"Prepaid and risk-pooling plans are the expenditure on health by private insurance institutions.  Private insurance enrolment may be contractual or voluntary, and conditions and benefits or basket of benefits are agreed on a voluntary basis between the insurance agent and the beneficiaries.  They are thus not controlled by government units for the purpose of providing social benefits to members.  \",\"Africa Development Indicators\",\"World Health Organization (http://www.who.int/nha/country/en/)\"\n\"SH.XPD.PRIV.ZS\",\"Health expenditure, private (% of GDP)\",\"Private health expenditure includes direct household (out-of-pocket) spending, private insurance, charitable donations, and direct service payments by private corporations.\",\"World Development Indicators\",\"World Health Organization Global Health Expenditure database (see http://apps.who.int/nha/database for the most recent updates).\"\n\"SH.XPD.PUBL\",\"Health expenditure, public (% of total health expenditure)\",\"Public health expenditure consists of recurrent and capital spending from government (central and local) budgets, external borrowings and grants (including donations from international agencies and nongovernmental organizations), and social (or compulsory) health insurance funds. Total health expenditure is the sum of public and private health expenditure. It covers the provision of health services (preventive and curative), family planning activities, nutrition activities, and emergency aid designated for health but does not include provision of water and sanitation.\",\"World Development Indicators\",\"World Health Organization Global Health Expenditure database (see http://apps.who.int/nha/database for the most recent updates).\"\n\"SH.XPD.PUBL.GX.ZS\",\"Health expenditure, public (% of government expenditure)\",\"Public health expenditure consists of recurrent and capital spending from government (central and local) budgets, external borrowings and grants (including donations from international agencies and nongovernmental organizations), and social (or compulsory) health insurance funds.\",\"World Development Indicators\",\"World Health Organization Global Health Expenditure database (see http://apps.who.int/nha/database for the most recent updates).\"\n\"SH.XPD.PUBL.ZS\",\"Health expenditure, public (% of GDP)\",\"Public health expenditure consists of recurrent and capital spending from government (central and local) budgets, external borrowings and grants (including donations from international agencies and nongovernmental organizations), and social (or compulsory) health insurance funds.\",\"World Development Indicators\",\"World Health Organization Global Health Expenditure database (see http://apps.who.int/nha/database for the most recent updates).\"\n\"SH.XPD.SOSE.GX.ZS\",\"Social Security expenditure on health (% government expenditure on health)\",\"Social security funds comprise the expenditure on health by social security institutions. Social security or national health insurance schemes are imposed and controlled by government units for the purpose of providing social benefits to members of the community as a whole or to particular segments of the community. They include direct outlays to medical care providers and to suppliers of medical goods as well as reimbursements to households and the supply of services in kind to the enrollees.  \",\"Africa Development Indicators\",\"World Health Organization (http://www.who.int/nha/country/en/)\"\n\"SH.XPD.TOTL.CD\",\"Health expenditure (current US$)\",\"World Health Organization Global Health Expenditure database (see http://apps.who.int/nha/database for the most recent updates).\",\"Africa Development Indicators\",\"World Health Organization Global Health Expenditure database (see http://apps.who.int/nha/database for the most recent updates).\"\n\"SH.XPD.TOTL.ZS\",\"Health expenditure, total (% of GDP)\",\"Total health expenditure is the sum of public and private health expenditure. It covers the provision of health services (preventive and curative), family planning activities, nutrition activities, and emergency aid designated for health but does not include provision of water and sanitation.\",\"World Development Indicators\",\"World Health Organization Global Health Expenditure database (see http://apps.who.int/nha/database for the most recent updates).\"\n\"SHRIMP_MEX\",\"Shrimp, Mexico, cents/kg, current$\",\"Shrimp , (Mexico), west coast, frozen, white, No. 1,  shell-on, headless, 26 to 30 count per pound, wholesale price at New York\",\"Global Economic Monitor (GEM) Commodities\",\"US Department of Commerce, NOAA, Fishery Market News; World Bank.\"\n\"SI.DST.02ND.20\",\"Income share held by second 20%\",\"Percentage share of income or consumption is the share that accrues to subgroups of population indicated by deciles or quintiles. Percentage shares by quintile may not sum to 100 because of rounding.\",\"World Development Indicators\",\"World Bank, Development Research Group. Data are based on primary household survey data obtained from government statistical agencies and World Bank country departments. Data for high-income economies are from the Luxembourg Income Study database. For more information and methodology, please see PovcalNet (http://iresearch.worldbank.org/PovcalNet/index.htm).\"\n\"SI.DST.03RD.20\",\"Income share held by third 20%\",\"Percentage share of income or consumption is the share that accrues to subgroups of population indicated by deciles or quintiles. Percentage shares by quintile may not sum to 100 because of rounding.\",\"World Development Indicators\",\"World Bank, Development Research Group. Data are based on primary household survey data obtained from government statistical agencies and World Bank country departments. Data for high-income economies are from the Luxembourg Income Study database. For more information and methodology, please see PovcalNet (http://iresearch.worldbank.org/PovcalNet/index.htm).\"\n\"SI.DST.04TH.20\",\"Income share held by fourth 20%\",\"Percentage share of income or consumption is the share that accrues to subgroups of population indicated by deciles or quintiles. Percentage shares by quintile may not sum to 100 because of rounding.\",\"World Development Indicators\",\"World Bank, Development Research Group. Data are based on primary household survey data obtained from government statistical agencies and World Bank country departments. Data for high-income economies are from the Luxembourg Income Study database. For more information and methodology, please see PovcalNet (http://iresearch.worldbank.org/PovcalNet/index.htm).\"\n\"SI.DST.05TH.20\",\"Income share held by highest 20%\",\"Percentage share of income or consumption is the share that accrues to subgroups of population indicated by deciles or quintiles. Percentage shares by quintile may not sum to 100 because of rounding.\",\"World Development Indicators\",\"World Bank, Development Research Group. Data are based on primary household survey data obtained from government statistical agencies and World Bank country departments. Data for high-income economies are from the Luxembourg Income Study database. For more information and methodology, please see PovcalNet (http://iresearch.worldbank.org/PovcalNet/index.htm).\"\n\"SI.DST.10TH.10\",\"Income share held by highest 10%\",\"Percentage share of income or consumption is the share that accrues to subgroups of population indicated by deciles or quintiles.\",\"World Development Indicators\",\"World Bank, Development Research Group. Data are based on primary household survey data obtained from government statistical agencies and World Bank country departments. Data for high-income economies are from the Luxembourg Income Study database. For more information and methodology, please see PovcalNet (http://iresearch.worldbank.org/PovcalNet/index.htm).\"\n\"SI.DST.FRST.10\",\"Income share held by lowest 10%\",\"Percentage share of income or consumption is the share that accrues to subgroups of population indicated by deciles or quintiles.\",\"World Development Indicators\",\"World Bank, Development Research Group. Data are based on primary household survey data obtained from government statistical agencies and World Bank country departments. Data for high-income economies are from the Luxembourg Income Study database. For more information and methodology, please see PovcalNet (http://iresearch.worldbank.org/PovcalNet/index.htm).\"\n\"SI.DST.FRST.20\",\"Income share held by lowest 20%\",\"Percentage share of income or consumption is the share that accrues to subgroups of population indicated by deciles or quintiles. Percentage shares by quintile may not sum to 100 because of rounding.\",\"World Development Indicators\",\"World Bank, Development Research Group. Data are based on primary household survey data obtained from government statistical agencies and World Bank country departments. Data for high-income economies are from the Luxembourg Income Study database. For more information and methodology, please see PovcalNet (http://iresearch.worldbank.org/PovcalNet/index.htm).\"\n\"SI.POV.25DAY\",\"Poverty headcount ratio at $2.5 a day (PPP) (% of population)\",\"Population below $2.5 a day is the percentage of the population living on less than $2.5 a day at 2005 international prices. \",\"Povstats\",\"World Bank, Development Research Group. Data are based on primary household survey data obtained from government statistical agencies and World Bank country departments. For more information and methodology, please see PovcalNet (http://iresearch.worldbank.org/PovcalNet/index.htm).\"\n\"SI.POV.2DAY\",\"Poverty headcount ratio at $3.10 a day (2011 PPP) (% of population)\",\"Poverty headcount ratio at $3.10 a day is the percentage of the population living on less than $3.10 a day at 2011 international prices. As a result of revisions in PPP exchange rates, poverty rates for individual countries cannot be compared with poverty rates reported in earlier editions. Note: five countries -- Bangladesh, Cabo Verde, Cambodia, Jordan, and Lao PDR -- use the 2005 PPP conversion factors and corresponding $1.25 a day and $2 a day poverty lines. This is due to the large deviations in the rate of change in PPP factors relative to the rate of change in domestic consumer price indexes. See Box 1.1 in the Global Monitoring Report 2015/2016 (http://www.worldbank.org/en/publication/global-monitoring-report) for a detailed explanation.\",\"World Development Indicators\",\"World Bank, Development Research Group. Data are based on primary household survey data obtained from government statistical agencies and World Bank country departments. Data for high-income economies are from the Luxembourg Income Study database. For more information and methodology, please see PovcalNet (http://iresearch.worldbank.org/PovcalNet/index.htm).\"\n\"SI.POV.4DAY\",\"Poverty headcount ratio at $4 a day (PPP) (% of population)\",\"Population below $4 a day is the percentage of the population living on less than $4 a day at 2005 international prices. \",\"Povstats\",\"World Bank, Development Research Group. Data are based on primary household survey data obtained from government statistical agencies and World Bank country departments. For more information and methodology, please see PovcalNet (http://iresearch.worldbank.org/PovcalNet/index.htm).\"\n\"SI.POV.5DAY\",\"Poverty headcount ratio at $5 a day (PPP) (% of population)\",\"Population below $5 a day is the percentage of the population living on less than $5 a day at 2005 international prices. \",\"Povstats\",\"World Bank, Development Research Group. Data are based on primary household survey data obtained from government statistical agencies and World Bank country departments. For more information and methodology, please see PovcalNet (http://iresearch.worldbank.org/PovcalNet/index.htm).\"\n\"SI.POV.BPL\",\"Number of people live below the poverty line (in number of people)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"SI.POV.DDAY\",\"Poverty headcount ratio at $1.90 a day (2011 PPP) (% of population)\",\"Poverty headcount ratio at $1.90 a day is the percentage of the population living on less than $1.90 a day at 2011 international prices. As a result of revisions in PPP exchange rates, poverty rates for individual countries cannot be compared with poverty rates reported in earlier editions. Note: five countries -- Bangladesh, Cabo Verde, Cambodia, Jordan, and Lao PDR -- use the 2005 PPP conversion factors and corresponding $1.25 a day and $2 a day poverty lines. This is due to the large deviations in the rate of change in PPP factors relative to the rate of change in domestic consumer price indexes. See Box 1.1 in the Global Monitoring Report 2015/2016 (http://www.worldbank.org/en/publication/global-monitoring-report) for a detailed explanation.\",\"World Development Indicators\",\"World Bank, Development Research Group. Data are based on primary household survey data obtained from government statistical agencies and World Bank country departments. Data for high-income economies are from the Luxembourg Income Study database. For more information and methodology, please see PovcalNet (http://iresearch.worldbank.org/PovcalNet/index.htm).\"\n\"SI.POV.GAP2\",\"Poverty gap at $3.10 a day (2011 PPP) (%)\",\"Poverty gap at $3.10 a day (2011 PPP) is the mean shortfall in income or consumption from the poverty line $3.10 a day (counting the nonpoor as having zero shortfall), expressed as a percentage of the poverty line. This measure reflects the depth of poverty as well as its incidence. As a result of revisions in PPP exchange rates, poverty rates for individual countries cannot be compared with poverty rates reported in earlier editions. Note: five countries -- Bangladesh, Cabo Verde, Cambodia, Jordan, and Lao PDR -- use the 2005 PPP conversion factors and corresponding $1.25 a day and $2 a day poverty lines. This is due to the large deviations in the rate of change in PPP factors relative to the rate of change in domestic consumer price indexes. See Box 1.1 in the Global Monitoring Report 2015/2016 (http://www.worldbank.org/en/publication/global-monitoring-report) for a detailed explanation.\",\"World Development Indicators\",\"World Bank, Development Research Group. Data are based on primary household survey data obtained from government statistical agencies and World Bank country departments. Data for high-income economies are from the Luxembourg Income Study database. For more information and methodology, please see PovcalNet (http://iresearch.worldbank.org/PovcalNet/index.htm).\"\n\"SI.POV.GAP25\",\"Poverty gap at $2.5 a day (PPP) (%)\",\"The mean shortfall from the $2.5 a day poverty line (counting the nonpoor as having zero shortfall), expressed as a percentage of the poverty line. This measure reflects the depth of poverty as well as its incidence.\",\"Povstats\",\"World Bank, Development Research Group. Data are based on primary household survey data obtained from government statistical agencies and World Bank country departments. For more information and methodology, please see PovcalNet (http://iresearch.worldbank.org/PovcalNet/index.htm).\"\n\"SI.POV.GAP4\",\"Poverty gap at $4 a day (PPP) (%)\",\"The mean shortfall from the $4 a day poverty line (counting the nonpoor as having zero shortfall), expressed as a percentage of the poverty line. This measure reflects the depth of poverty as well as its incidence.\",\"Povstats\",\"World Bank, Development Research Group. Data are based on primary household survey data obtained from government statistical agencies and World Bank country departments. For more information and methodology, please see PovcalNet (http://iresearch.worldbank.org/PovcalNet/index.htm).\"\n\"SI.POV.GAP5\",\"Poverty gap at $5 a day (PPP) (%)\",\"The mean shortfall from the $5 a day poverty line (counting the nonpoor as having zero shortfall), expressed as a percentage of the poverty line. This measure reflects the depth of poverty as well as its incidence.\",\"Povstats\",\"World Bank, Development Research Group. Data are based on primary household survey data obtained from government statistical agencies and World Bank country departments. For more information and methodology, please see PovcalNet (http://iresearch.worldbank.org/PovcalNet/index.htm).\"\n\"SI.POV.GAPS\",\"Poverty gap at $1.90 a day (2011 PPP) (%)\",\"Poverty gap at $1.90 a day (2011 PPP) is the mean shortfall in income or consumption from the poverty line $1.90 a day (counting the nonpoor as having zero shortfall), expressed as a percentage of the poverty line. This measure reflects the depth of poverty as well as its incidence. As a result of revisions in PPP exchange rates, poverty rates for individual countries cannot be compared with poverty rates reported in earlier editions. Note: five countries -- Bangladesh, Cabo Verde, Cambodia, Jordan, and Lao PDR -- use the 2005 PPP conversion factors and corresponding $1.25 a day and $2 a day poverty lines. This is due to the large deviations in the rate of change in PPP factors relative to the rate of change in domestic consumer price indexes. See Box 1.1 in the Global Monitoring Report 2015/2016 (http://www.worldbank.org/en/publication/global-monitoring-report) for a detailed explanation.\",\"World Development Indicators\",\"World Bank, Development Research Group. Data are based on primary household survey data obtained from government statistical agencies and World Bank country departments. Data for high-income economies are from the Luxembourg Income Study database. For more information and methodology, please see PovcalNet (http://iresearch.worldbank.org/PovcalNet/index.htm).\"\n\"SI.POV.GINI\",\"GINI index (World Bank estimate)\",\"Gini index measures the extent to which the distribution of income (or, in some cases, consumption expenditure) among individuals or households within an economy deviates from a perfectly equal distribution. A Lorenz curve plots the cumulative percentages of total income received against the cumulative number of recipients, starting with the poorest individual or household. The Gini index measures the area between the Lorenz curve and a hypothetical line of absolute equality, expressed as a percentage of the maximum area under the line. Thus a Gini index of 0 represents perfect equality, while an index of 100 implies perfect inequality.\",\"World Development Indicators\",\"World Bank, Development Research Group. Data are based on primary household survey data obtained from government statistical agencies and World Bank country departments. For more information and methodology, please see PovcalNet (http://iresearch.worldbank.org/PovcalNet/index.htm).\"\n\"SI.POV.NAGP\",\"Poverty gap at national poverty lines (%)\",\"Poverty gap at national poverty lines is the mean shortfall from the poverty lines (counting the nonpoor as having zero shortfall) as a percentage of the poverty lines. This measure reflects the depth of poverty as well as its incidence.\",\"World Development Indicators\",\"World Bank, Global Poverty Working Group. Data are compiled from official government sources or are computed by World Bank staff using national (i.e. country–specific) poverty lines.\"\n\"SI.POV.NAHC\",\"Poverty headcount ratio at national poverty lines (% of population)\",\"National poverty headcount ratio is the percentage of the population living below the national poverty lines. National estimates are based on population-weighted subgroup estimates from household surveys.\",\"World Development Indicators\",\"World Bank, Global Poverty Working Group. Data are compiled from official government sources or are computed by World Bank staff using national (i.e. country–specific) poverty lines.\"\n\"SI.POV.NAPL\",\"Poverty Line (in IDR)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"SI.POV.NAPR.ZS\",\"Poverty Rate (in % of population)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"SI.POV.NGAP\",\"Poverty Gap (index)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"SI.POV.NOP1\",\"Number of poor at $1.90 a day (2011 PPP) (millions)\",\"The number of people (millions) living on less than $1.90 a day (2011 PPP) \",\"Povstats\",\"World Bank, Development Research Group. Data are based on primary household survey data obtained from government statistical agencies and World Bank country departments. For more information and methodology, please see PovcalNet (http://iresearch.worldbank.org/PovcalNet/index.htm).\"\n\"SI.POV.NOP2\",\"Number of poor at $3.10 a day (2011 PPP) (millions)\",\"The number of people (millions) living on less than $3.10 a day (2011 PPP) \",\"Povstats\",\"World Bank, Development Research Group. Data are based on primary household survey data obtained from government statistical agencies and World Bank country departments. For more information and methodology, please see PovcalNet (http://iresearch.worldbank.org/PovcalNet/index.htm).\"\n\"SI.POV.NOP25\",\"Number of poor at $2.5 a day (PPP) (millions)\",\"The number of people (millions) living on less than $2.5 a day (PPP) \",\"Povstats\",\"World Bank, Development Research Group. Data are based on primary household survey data obtained from government statistical agencies and World Bank country departments. For more information and methodology, please see PovcalNet (http://iresearch.worldbank.org/PovcalNet/index.htm).\"\n\"SI.POV.NOP4\",\"Number of poor at $4 a day (PPP) (millions)\",\"The number of people (millions) livinge on less than $4 a day (PPP) \",\"Povstats\",\"World Bank, Development Research Group. Data are based on primary household survey data obtained from government statistical agencies and World Bank country departments. For more information and methodology, please see PovcalNet (http://iresearch.worldbank.org/PovcalNet/index.htm).\"\n\"SI.POV.NOP5\",\"Number of poor at $5 a day (PPP) (millions)\",\"The number of people (millions) living on less than $5 a day (PPP) \",\"Povstats\",\"World Bank, Development Research Group. Data are based on primary household survey data obtained from government statistical agencies and World Bank country departments. For more information and methodology, please see PovcalNet (http://iresearch.worldbank.org/PovcalNet/index.htm).\"\n\"SI.POV.RUGP\",\"Rural poverty gap at national poverty lines (%)\",\"Rural poverty gap at national poverty lines is the rural population's mean shortfall from the poverty lines (counting the nonpoor as having zero shortfall) as a percentage of the poverty lines. This measure reflects the depth of poverty as well as its incidence.\",\"World Development Indicators\",\"World Bank, Global Poverty Working Group. Data are compiled from official government sources or are computed by World Bank staff using national (i.e. country–specific) poverty lines.\"\n\"SI.POV.RUHC\",\"Rural poverty headcount ratio at national poverty lines (% of rural population)\",\"Rural poverty headcount ratio is the percentage of the rural population living below the national poverty lines.\",\"World Development Indicators\",\"World Bank, Global Poverty Working Group. Data are compiled from official government sources or are computed by World Bank staff using national (i.e. country–specific) poverty lines.\"\n\"SI.POV.URGP\",\"Urban poverty gap at national poverty lines (%)\",\"Urban poverty gap at national poverty lines is the urban population's mean shortfall from the poverty lines (counting the nonpoor as having zero shortfall) as a percentage of the poverty lines. This measure reflects the depth of poverty as well as its incidence.\",\"World Development Indicators\",\"World Bank, Global Poverty Working Group. Data are compiled from official government sources or are computed by World Bank staff using national (i.e. country–specific) poverty lines.\"\n\"SI.POV.URHC\",\"Urban poverty headcount ratio at national poverty lines (% of urban population)\",\"Urban poverty headcount ratio is the percentage of the urban population living below the national poverty lines.\",\"World Development Indicators\",\"World Bank, Global Poverty Working Group. Data are based on World Bank's country poverty assessments and country Poverty Reduction Strategies.\"\n\"SI.RMT.COST.ZS\",\"Average transaction cost of remittances (%)\",\"Average transaction cost of remittances is the average of the total transaction cost in percentage for sending the local currency equivalent of US$ 200 charged by each single remittance service provider.\",\"World Development Indicators\",\"World Bank, Remittance Prices Worldwide, available at http://remittanceprices.worldbank.org\"\n\"SI.SPR.PC40\",\"Survey mean consumption or income per capita, bottom 40% of population (2011 PPP $ per day)\",\"Mean consumption or income per capita (2011 PPP $ per day) used in calculating the growth rate in the welfare aggregate of the bottom 40% of the population in the income distribution in a country.\",\"World Development Indicators\",\"World Bank, Global Database of Shared Prosperity (GDSP) circa 2007 - 2012 (http://www.worldbank.org/en/topic/poverty/brief/global-database-of-shared-prosperity).\"\n\"SI.SPR.PC40.05\",\"Survey mean consumption or income per capita, bottom 40% of population (2005 PPP $ per day)\",\"Mean consumption or income per capita (2005 PPP $ per day) used in calculating the growth rate in the welfare aggregate of the bottom 40% of the population in the income distribution in a country.\",\"World Development Indicators\",\"World Bank, Global Database of Shared Prosperity (GDSP) circa 2007 - 2012 (http://www.worldbank.org/en/topic/poverty/brief/global-database-of-shared-prosperity).\"\n\"SI.SPR.PC40.ZG\",\"Annualized average growth rate in per capita real survey mean consumption or income, bottom 40% of population (%)\",\"The growth rate in the welfare aggregate of the bottom 40% is computed as the annualized average growth rate in per capita real consumption or income of the bottom 40% of the population in the income distribution in a country from household surveys over a roughly 5-year period. Mean per capita real consumption or income is measured at 2011 and 2005 Purchasing Power Parity (PPP) using the PovcalNet (http://iresearch.worldbank.org/PovcalNet). For some countries means are not reported due to grouped and/or confidential data. The annualized growth rate is computed as (Mean in final year/Mean in initial year)^(1/(Final year - Initial year)) - 1. The reference year is the year in which the underlying household survey data was collected. In cases where the data collection period bridged two calendar years, the first year in which data were collected is reported. The final year refers to the most recent survey available between 2010 and 2014. The initial year refers to the nearest survey collected 5 years before the most recent survey available, only surveys collected between 3 and 7 years before the most recent survey are considered. Growth rates for four countries – Bangladesh, Cambodia, Jordan, and Lao PDR – are based on survey means of 2005 PPP$. This is due to the large deviations in the rate of change in PPP factors relative to the rate of change in domestic consumer price indexes. See Box 1.1 in the Global Monitoring Report 2015/2016 (http://www.worldbank.org/en/publication/global-monitoring-report) for a detailed explanation.\",\"World Development Indicators\",\"World Bank, Global Database of Shared Prosperity (GDSP) circa 2007 - 2012 (http://www.worldbank.org/en/topic/poverty/brief/global-database-of-shared-prosperity).\"\n\"SI.SPR.PCAP\",\"Survey mean consumption or income per capita, total population (2011 PPP $ per day)\",\"Mean consumption or income per capita (2011 PPP $ per day) used in calculating the growth rate in the welfare aggregate of total population.\",\"World Development Indicators\",\"World Bank, Global Database of Shared Prosperity (GDSP) circa 2007 - 2012 (http://www.worldbank.org/en/topic/poverty/brief/global-database-of-shared-prosperity).\"\n\"SI.SPR.PCAP.05\",\"Survey mean consumption or income per capita, total population (2005 PPP $ per day)\",\"Mean consumption or income per capita (2005 PPP $ per day) used in calculating the growth rate in the welfare aggregate of total population.\",\"World Development Indicators\",\"World Bank, Global Database of Shared Prosperity (GDSP) circa 2007 - 2012 (http://www.worldbank.org/en/topic/poverty/brief/global-database-of-shared-prosperity).\"\n\"SI.SPR.PCAP.ZG\",\"Annualized average growth rate in per capita real survey mean consumption or income, total population (%)\",\"The growth rate in the welfare aggregate of the total population is computed as the annualized average growth rate in per capita real consumption or income of the total population in the income distribution in a country from household surveys over a roughly 5-year period. Mean per capita real consumption or income is measured at 2011 and 2005 Purchasing Power Parity (PPP) using the PovcalNet (http://iresearch.worldbank.org/PovcalNet). For some countries means are not reported due to grouped and/or confidential data. The annualized growth rate is computed as (Mean in final year/Mean in initial year)^(1/(Final year - Initial year)) - 1. The reference year is the year in which the underlying household survey data was collected. In cases where the data collection period bridged two calendar years, the first year in which data were collected is reported. The final year refers to the most recent survey available between 2010 and 2014. The initial year refers to the nearest survey collected 5 years before the most recent survey available, only surveys collected between 3 and 7 years before the most recent survey are considered. Growth rates for four countries – Bangladesh, Cambodia, Jordan, and Lao PDR – are based on survey means of 2005 PPP$. This is due to the large deviations in the rate of change in PPP factors relative to the rate of change in domestic consumer price indexes. See Box 1.1 in the Global Monitoring Report 2015/2016 (http://www.worldbank.org/en/publication/global-monitoring-report) for a detailed explanation.\",\"World Development Indicators\",\"World Bank, Global Database of Shared Prosperity (GDSP) circa 2007 - 2012 (http://www.worldbank.org/en/topic/poverty/brief/global-database-of-shared-prosperity).\"\n\"SILVER\",\"Silver, cents/toz, current$\",\"Silver (Handy & Harman), 99.9% grade refined, New York\",\"Global Economic Monitor (GEM) Commodities\",\"Platts Metasl Week; Australian Minerals Economics Pty, Ltd., Silver World Supply & Demand, Thomson Reuters Datastream; World Bank.\"\n\"SL.AGR.0714.FE.ZS\",\"Child employment in agriculture, female (% of female economically active children ages 7-14)\",\"Employment by economic activity refers to the distribution of economically active children by the major industrial categories (ISIC revision 2 or revision 3). Agriculture corresponds to division 1 (ISIC revision 2) or categories A and B (ISIC revision 3) and includes agriculture and hunting, forestry and logging, and fishing. Economically active children refer to children involved in economic activity for at least one hour in the reference week of the survey.\",\"World Development Indicators\",\"Understanding Children's Work project based on data from ILO, UNICEF and the World Bank.\"\n\"SL.AGR.0714.MA.ZS\",\"Child employment in agriculture, male (% of male economically active children ages 7-14)\",\"Employment by economic activity refers to the distribution of economically active children by the major industrial categories (ISIC revision 2 or revision 3). Agriculture corresponds to division 1 (ISIC revision 2) or categories A and B (ISIC revision 3) and includes agriculture and hunting, forestry and logging, and fishing. Economically active children refer to children involved in economic activity for at least one hour in the reference week of the survey.\",\"World Development Indicators\",\"Understanding Children's Work project based on data from ILO, UNICEF and the World Bank.\"\n\"SL.AGR.0714.ZS\",\"Child employment in agriculture (% of economically active children ages 7-14)\",\"Employment by economic activity refers to the distribution of economically active children by the major industrial categories (ISIC revision 2 or revision 3). Agriculture corresponds to division 1 (ISIC revision 2) or categories A and B (ISIC revision 3) and includes agriculture and hunting, forestry and logging, and fishing. Economically active children refer to children involved in economic activity for at least one hour in the reference week of the survey.\",\"World Development Indicators\",\"Understanding Children's Work project based on data from ILO, UNICEF and the World Bank.\"\n\"SL.AGR.EMPL.FE.ZS\",\"Employment in agriculture, female (% of female employment)\",\"Employment is defined as persons of working age who were engaged in any activity to produce goods or provide services for pay or profit, whether at work during the reference period or not at work due to temporary absence from a job, or to working-time arrangement. The agriculture sector consists of activities in agriculture, hunting, forestry and fishing, in accordance with division 1 (ISIC 2) or categories A-B (ISIC 3) or category A (ISIC 4).\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.AGR.EMPL.MA.ZS\",\"Employment in agriculture, male (% of male employment)\",\"Employment is defined as persons of working age who were engaged in any activity to produce goods or provide services for pay or profit, whether at work during the reference period or not at work due to temporary absence from a job, or to working-time arrangement. The agriculture sector consists of activities in agriculture, hunting, forestry and fishing, in accordance with division 1 (ISIC 2) or categories A-B (ISIC 3) or category A (ISIC 4).\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.AGR.EMPL.ZS\",\"Employment in agriculture (% of total employment)\",\"Employment is defined as persons of working age who were engaged in any activity to produce goods or provide services for pay or profit, whether at work during the reference period or not at work due to temporary absence from a job, or to working-time arrangement. The agriculture sector consists of activities in agriculture, hunting, forestry and fishing, in accordance with division 1 (ISIC 2) or categories A-B (ISIC 3) or category A (ISIC 4).\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.EMP.1524.SP.FE.NE.ZS\",\"Employment to population ratio, ages 15-24, female (%) (national estimate)\",\"Employment to population ratio is the proportion of a country's population that is employed. Ages 15-24 are generally considered the youth population.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.EMP.1524.SP.FE.ZS\",\"Employment to population ratio, ages 15-24, female (%) (modeled ILO estimate)\",\"Employment to population ratio is the proportion of a country's population that is employed. Ages 15-24 are generally considered the youth population.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.EMP.1524.SP.MA.NE.ZS\",\"Employment to population ratio, ages 15-24, male (%) (national estimate)\",\"Employment to population ratio is the proportion of a country's population that is employed. Ages 15-24 are generally considered the youth population.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.EMP.1524.SP.MA.ZS\",\"Employment to population ratio, ages 15-24, male (%) (modeled ILO estimate)\",\"Employment to population ratio is the proportion of a country's population that is employed. Ages 15-24 are generally considered the youth population.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.EMP.1524.SP.NE.ZS\",\"Employment to population ratio, ages 15-24, total (%) (national estimate)\",\"Employment to population ratio is the proportion of a country's population that is employed. Ages 15-24 are generally considered the youth population.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.EMP.1524.SP.ZS\",\"Employment to population ratio, ages 15-24, total (%) (modeled ILO estimate)\",\"Employment to population ratio is the proportion of a country's population that is employed. Ages 15-24 are generally considered the youth population.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.EMP.AGR.FRST.FSH\",\"Number of people employed in agriculture, forestry and fishery\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Labor Survey (SAKERNAS)\"\n\"SL.EMP.CNST\",\"Number of people employed in construction sector\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Labor Survey (SAKERNAS)\"\n\"SL.EMP.ELC\",\"Number of people employed in electricity and utilities sector\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Labor Survey (SAKERNAS)\"\n\"SL.EMP.FINS\",\"Number of people employed in financial services sector\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Labor Survey (SAKERNAS)\"\n\"SL.EMP.IND\",\"Number of people employed in industrial sector\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Labor Survey (SAKERNAS)\"\n\"SL.EMP.INSV.FE.ZS\",\"Share of women in wage employment in the nonagricultural sector (% of total nonagricultural employment)\",\"Share of women in wage employment in the nonagricultural sector is the share of female workers in wage employment in the nonagricultural sector (industry and services), expressed as a percentage of total employment in the nonagricultural sector. Industry includes mining and quarrying (including oil production), manufacturing, construction, electricity, gas, and water, corresponding to divisions 2-5 (ISIC revision 2) or tabulation categories C-F (ISIC revision 3). Services include wholesale and retail trade and restaurants and hotels; transport, storage, and communications; financing, insurance, real estate, and business services; and community, social, and personal services-corresponding to divisions 6-9 (ISIC revision 2) or tabulation categories G-P (ISIC revision 3).\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.EMP.MINQ\",\"Number of people employed in mining and quarrying sector\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Labor Survey (SAKERNAS)\"\n\"SL.EMP.MPYR.FE.ZS\",\"Employers, female (% of employment)\",\"Employers refers are those workers who, working on their own account or with one or a few partners, hold the type of jobs defined as a \\\"self-employment jobs\\\" i.e. jobs where the remuneration is directly dependent upon the profits derived from the goods and services produced), and, in this capacity, have engaged, on a continuous basis, one or more persons to work for them as employee(s).\",\"World Development Indicators\",\"ILO Key Indicators of the Labour Market (KILM).\"\n\"SL.EMP.MPYR.MA.ZS\",\"Employers, male (% of employment)\",\"Employers refers are those workers who, working on their own account or with one or a few partners, hold the type of jobs defined as a \\\"self-employment jobs\\\" i.e. jobs where the remuneration is directly dependent upon the profits derived from the goods and services produced), and, in this capacity, have engaged, on a continuous basis, one or more persons to work for them as employee(s).\",\"World Development Indicators\",\"ILO Key Indicators of the Labour Market (KILM).\"\n\"SL.EMP.MPYR.ZS\",\"Employers, total (% of employment)\",\"Employers refers are those workers who, working on their own account or with one or a few partners, hold the type of jobs defined as a \\\"self-employment jobs\\\" i.e. jobs where the remuneration is directly dependent upon the profits derived from the goods and services produced), and, in this capacity, have engaged, on a continuous basis, one or more persons to work for them as employee(s).\",\"World Development Indicators\",\"ILO Key Indicators of the Labour Market (KILM).\"\n\"SL.EMP.OWAC.FE.ZS\",\"Own-account workers, female (% of total female employment)\",\"Own-account workers are workers who, working on their own account or with one or more more partners, hold the types of jobs defined as \\\"self-employment jobs\\\" and have not engaged on a continuous basis any employees to work for them. Own account workers are a subcategory of \\\"self-employed\\\".\",\"Gender Statistics\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.EMP.OWAC.MA.ZS\",\"Own-account workers, male (% of total male employment)\",\"Own-account workers are workers who, working on their own account or with one or more more partners, hold the types of jobs defined as \\\"self-employment jobs\\\" and have not engaged on a continuous basis any employees to work for them. Own account workers are a subcategory of \\\"self-employed\\\".\",\"Gender Statistics\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.EMP.SELF.FE.ZS\",\"Self-employed, female (% of females employed)\",\"Self-employed workers are those workers who, working on their own account or with one or a few partners or in cooperative, hold the type of jobs defined as a \\\"self-employment jobs.\\\" i.e. jobs where the remuneration is directly dependent upon the profits derived from the goods and services produced. Self-employed workers include four sub-categories of employers, own-account workers, members of producers' cooperatives, and contributing family workers.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.EMP.SELF.MA.ZS\",\"Self-employed, male (% of males employed)\",\"Self-employed workers are those workers who, working on their own account or with one or a few partners or in cooperative, hold the type of jobs defined as a \\\"self-employment jobs.\\\" i.e. jobs where the remuneration is directly dependent upon the profits derived from the goods and services produced. Self-employed workers include four sub-categories of employers, own-account workers, members of producers' cooperatives, and contributing family workers.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.EMP.SELF.ZS\",\"Self-employed, total (% of total employed)\",\"Self-employed workers are those workers who, working on their own account or with one or a few partners or in cooperative, hold the type of jobs defined as a \\\"self-employment jobs.\\\"  i.e. jobs where the remuneration is directly dependent upon the profits derived from the goods and services produced. Self-employed workers include four sub-categories of employers, own-account workers, members of producers' cooperatives, and contributing family workers.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.EMP.SOCL\",\"Number of people employed in social services sector\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Labor Survey (SAKERNAS)\"\n\"SL.EMP.TOTL\",\"Number of people employed\",\"Total employment shows the total number employed ages 15 and over.\",\"Africa Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.EMP.TOTL.FE\",\"Total employment, female (ages 15+)\",\"Total employment shows the total number employed ages 15 and over.\",\"Africa Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.EMP.TOTL.MA\",\"Total employment, male (ages 15+)\",\"Total employment shows the total number employed ages 15 and over.\",\"Africa Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.EMP.TOTL.SP.FE.NE.ZS\",\"Employment to population ratio, 15+, female (%) (national estimate)\",\"Employment to population ratio is the proportion of a country's population that is employed. Ages 15 and older are generally considered the working-age population.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.EMP.TOTL.SP.FE.ZS\",\"Employment to population ratio, 15+, female (%) (modeled ILO estimate)\",\"Employment to population ratio is the proportion of a country's population that is employed. Ages 15 and older are generally considered the working-age population.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.EMP.TOTL.SP.MA.NE.ZS\",\"Employment to population ratio, 15+, male (%) (national estimate)\",\"Employment to population ratio is the proportion of a country's population that is employed. Ages 15 and older are generally considered the working-age population.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.EMP.TOTL.SP.MA.ZS\",\"Employment to population ratio, 15+, male (%) (modeled ILO estimate)\",\"Employment to population ratio is the proportion of a country's population that is employed. Ages 15 and older are generally considered the working-age population.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.EMP.TOTL.SP.NE.ZS\",\"Employment to population ratio, 15+, total (%) (national estimate)\",\"Employment to population ratio is the proportion of a country's population that is employed. Ages 15 and older are generally considered the working-age population.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.EMP.TOTL.SP.ZS\",\"Employment to population ratio, 15+, total (%) (modeled ILO estimate)\",\"Employment to population ratio is the proportion of a country's population that is employed. Ages 15 and older are generally considered the working-age population.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.EMP.TRAD\",\"Number of people employed in trade, hotel and restaurant sector\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Labor Survey (SAKERNAS)\"\n\"SL.EMP.TRAN\",\"Number of people employed in transportation and telecommunication sector\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Labor Survey (SAKERNAS)\"\n\"SL.EMP.UNDR\",\"Number of people underemployed\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Labor Survey (SAKERNAS)\"\n\"SL.EMP.UNDR.FE.ZS\",\"Time-related underemployment, female (% of employment)\",\"Time-related underemployment refers to all persons in employment who (i) wanted to work additional hours, (ii) had worked less than a specified hours threshold (working time in all jobs), and (iii) were available to work additional hours given an opportunity for more work.\",\"Gender Statistics\",\"ILO Key Indicators of the Labour Market (KILM).\"\n\"SL.EMP.UNDR.MA.ZS\",\"Time-related underemployment, male (% of employment)\",\"Time-related underemployment refers to all persons in employment who (i) wanted to work additional hours, (ii) had worked less than a specified hours threshold (working time in all jobs), and (iii) were available to work additional hours given an opportunity for more work.\",\"Gender Statistics\",\"ILO Key Indicators of the Labour Market (KILM).\"\n\"SL.EMP.UNDR.ZS\",\"Time-related underemployment, total (% of employment)\",\"Time-related underemployment refers to all persons in employment who (i) wanted to work additional hours, (ii) had worked less than a specified hours threshold (working time in all jobs), and (iii) were available to work additional hours given an opportunity for more work.\",\"Gender Statistics\",\"ILO Key Indicators of the Labour Market (KILM).\"\n\"SL.EMP.UNMB.ZS\",\"Union members (% of total paid employees)\",\"Union members (% of total paid employees)\",\"Jobs for Knowledge Platform\",\"International Labour Organization, (http://laborsta.ilo.org/xls_data_E.html).\"\n\"SL.EMP.VULN.FE.ZS\",\"Vulnerable employment, female (% of female employment)\",\"Vulnerable employment is unpaid family workers and own-account workers as a percentage of total employment.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.EMP.VULN.MA.ZS\",\"Vulnerable employment, male (% of male employment)\",\"Vulnerable employment is unpaid family workers and own-account workers as a percentage of total employment.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.EMP.VULN.ZS\",\"Vulnerable employment, total (% of total employment)\",\"Vulnerable employment is unpaid family workers and own-account workers as a percentage of total employment.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.EMP.WORK.FE.ZS\",\"Wage and salaried workers, female (% of females employed)\",\"Wage and salaried workers (employees) are those workers who hold the type of jobs defined as \\\"paid employment jobs,\\\" where the incumbents hold explicit (written or oral) or implicit employment contracts that give them a basic remuneration that is not directly dependent upon the revenue of the unit for which they work.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.EMP.WORK.MA.ZS\",\"Wage and salary workers, male (% of males employed)\",\"Wage and salaried workers (employees) are those workers who hold the type of jobs defined as \\\"paid employment jobs,\\\" where the incumbents hold explicit (written or oral) or implicit employment contracts that give them a basic remuneration that is not directly dependent upon the revenue of the unit for which they work.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.EMP.WORK.ZS\",\"Wage and salaried workers, total (% of total employed)\",\"Wage and salaried workers (employees) are those workers who hold the type of jobs defined as \\\"paid employment jobs,\\\" where the incumbents hold explicit (written or oral) or implicit employment contracts that give them a basic remuneration that is not directly dependent upon the revenue of the unit for which they work.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.FAM.0714.FE.ZS\",\"Children in employment, unpaid family workers, female (% of female children in employment, ages 7-14)\",\"Unpaid family workers are people who work without pay in a market-oriented establishment operated by a related person living in the same household.\",\"World Development Indicators\",\"Understanding Children's Work project based on data from ILO, UNICEF and the World Bank.\"\n\"SL.FAM.0714.MA.ZS\",\"Children in employment, unpaid family workers, male (% of male children in employment, ages 7-14)\",\"Unpaid family workers are people who work without pay in a market-oriented establishment operated by a related person living in the same household.\",\"World Development Indicators\",\"Understanding Children's Work project based on data from ILO, UNICEF and the World Bank.\"\n\"SL.FAM.0714.ZS\",\"Children in employment, unpaid family workers (% of children in employment, ages 7-14)\",\"Unpaid family workers are people who work without pay in a market-oriented establishment operated by a related person living in the same household.\",\"World Development Indicators\",\"Understanding Children's Work project based on data from ILO, UNICEF and the World Bank.\"\n\"SL.FAM.WORK.FE.ZS\",\"Contributing family workers, female (% of females employed)\",\"Contributing family workers are those workers who hold \\\"self-employment jobs\\\" as own-account workers in a market-oriented establishment operated by a related person living in the same household.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.FAM.WORK.MA.ZS\",\"Contributing family workers, male (% of males employed)\",\"Contributing family workers are those workers who hold \\\"self-employment jobs\\\" as own-account workers in a market-oriented establishment operated by a related person living in the same household.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.FAM.WORK.ZS\",\"Contributing family workers, total (% of total employed)\",\"Contributing family workers are those workers who hold \\\"self-employment jobs\\\" as own-account workers in a market-oriented establishment operated by a related person living in the same household.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.GDP.PCAP.EM.KD\",\"GDP per person employed (constant 2011 PPP $)\",\"GDP per person employed is gross domestic product (GDP) divided by total employment in the economy. Purchasing power parity (PPP) GDP is GDP converted to 2011 constant international dollars using PPP rates. An international dollar has the same purchasing power over GDP that a U.S. dollar has in the United States.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.GDP.PCAP.EM.KD.ZG\",\"GDP per person employed (annual % growth)\",\"GDP per person employed is gross domestic product (GDP) divided by total employment in the economy.\",\"Africa Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.IND.EMPL.FE.ZS\",\"Employment in industry, female (% of female employment)\",\"Employment is defined as persons of working age who were engaged in any activity to produce goods or provide services for pay or profit, whether at work during the reference period or not at work due to temporary absence from a job, or to working-time arrangement. The industry sector consists of mining and quarrying, manufacturing, construction, and public utilities (electricity, gas, and water), in accordance with divisions 2-5 (ISIC 2) or categories C-F (ISIC 3) or categories B-F (ISIC 4).\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.IND.EMPL.MA.ZS\",\"Employment in industry, male (% of male employment)\",\"Employment is defined as persons of working age who were engaged in any activity to produce goods or provide services for pay or profit, whether at work during the reference period or not at work due to temporary absence from a job, or to working-time arrangement. The industry sector consists of mining and quarrying, manufacturing, construction, and public utilities (electricity, gas, and water), in accordance with divisions 2-5 (ISIC 2) or categories C-F (ISIC 3) or categories B-F (ISIC 4).\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.IND.EMPL.ZS\",\"Employment in industry (% of total employment)\",\"Employment is defined as persons of working age who were engaged in any activity to produce goods or provide services for pay or profit, whether at work during the reference period or not at work due to temporary absence from a job, or to working-time arrangement. The industry sector consists of mining and quarrying, manufacturing, construction, and public utilities (electricity, gas, and water), in accordance with divisions 2-5 (ISIC 2) or categories C-F (ISIC 3) or categories B-F (ISIC 4).\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.ISV.IFRM.FE.ZS\",\"Informal employment, female (% of total non-agricultural employment)\",\"Employment in the informal economy as a percentage of total non-agricultural employment. It basically includes all jobs in unregistered and/or small-scale private unincorporated enterprises that produce goods or services meant for sale or barter. Self-employed street vendors, taxi drivers and home-base workers, regardless of size, are all considered enterprises. However, agricultural and related activities, households producing goods exclusively for their own use (e.g. subsistence farming, domestic housework, care work, and employment of paid domestic workers), and volunteer services rendered to the community are excluded.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.ISV.IFRM.MA.ZS\",\"Informal employment, male (% of total non-agricultural employment)\",\"Employment in the informal economy as a percentage of total non-agricultural employment. It basically includes all jobs in unregistered and/or small-scale private unincorporated enterprises that produce goods or services meant for sale or barter. Self-employed street vendors, taxi drivers and home-base workers, regardless of size, are all considered enterprises. However, agricultural and related activities, households producing goods exclusively for their own use (e.g. subsistence farming, domestic housework, care work, and employment of paid domestic workers), and volunteer services rendered to the community are excluded.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.ISV.IFRM.ZS\",\"Informal employment (% of total non-agricultural employment)\",\"Employment in the informal economy as a percentage of total non-agricultural employment. It basically includes all jobs in unregistered and/or small-scale private unincorporated enterprises that produce goods or services meant for sale or barter. Self-employed street vendors, taxi drivers and home-base workers, regardless of size, are all considered enterprises. However, agricultural and related activities, households producing goods exclusively for their own use (e.g. subsistence farming, domestic housework, care work, and employment of paid domestic workers), and volunteer services rendered to the community are excluded.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.MNF.0714.FE.ZS\",\"Child employment in manufacturing, female (% of female economically active children ages 7-14)\",\"Employment by economic activity refers to the distribution of economically active children by the major industrial categories (ISIC revision 2 or revision 3). Manufacturing corresponds to division 3 (ISIC revision 2) or category D (ISIC revision 3). Economically active children refer to children involved in economic activity for at least one hour in the reference week of the survey.\",\"World Development Indicators\",\"Understanding Children's Work project based on data from ILO, UNICEF and the World Bank.\"\n\"SL.MNF.0714.MA.ZS\",\"Child employment in manufacturing, male (% of male economically active children ages 7-14)\",\"Employment by economic activity refers to the distribution of economically active children by the major industrial categories (ISIC revision 2 or revision 3). Manufacturing corresponds to division 3 (ISIC revision 2) or category D (ISIC revision 3). Economically active children refer to children involved in economic activity for at least one hour in the reference week of the survey.\",\"World Development Indicators\",\"Understanding Children's Work project based on data from ILO, UNICEF and the World Bank.\"\n\"SL.MNF.0714.ZS\",\"Child employment in manufacturing (% of economically active children ages 7-14)\",\"Employment by economic activity refers to the distribution of economically active children by the major industrial categories (ISIC revision 2 or revision 3). Manufacturing corresponds to division 3 (ISIC revision 2) or category D (ISIC revision 3). Economically active children refer to children involved in economic activity for at least one hour in the reference week of the survey.\",\"World Development Indicators\",\"Understanding Children's Work project based on data from ILO, UNICEF and the World Bank.\"\n\"SL.MNF.WAGE.FM\",\"Ratio of female to male wages in manufacturing (%)\",\"Ratio of female to male wages in manufacturing refers to female to male wages and salaries in manufacturing.\",\"Jobs for Knowledge Platform\",\"International Labour Organization, Key Indicators of the Labour market (KILM).\"\n\"SL.SLF.0714.FE.ZS\",\"Children in employment, self-employed, female (% of female children in employment, ages 7-14)\",\"Self-employed workers are people whose remuneration depends directly on the profits derived from the goods and services they produce, with or without other employees, and include employers, own-account workers, and members of producers cooperatives.\",\"World Development Indicators\",\"Understanding Children's Work project based on data from ILO, UNICEF and the World Bank.\"\n\"SL.SLF.0714.MA.ZS\",\"Children in employment, self-employed, male (% of male children in employment, ages 7-14)\",\"Self-employed workers are people whose remuneration depends directly on the profits derived from the goods and services they produce, with or without other employees, and include employers, own-account workers, and members of producers cooperatives.\",\"World Development Indicators\",\"Understanding Children's Work project based on data from ILO, UNICEF and the World Bank.\"\n\"SL.SLF.0714.ZS\",\"Children in employment, self-employed (% of children in employment, ages 7-14)\",\"Self-employed workers are people whose remuneration depends directly on the profits derived from the goods and services they produce, with or without other employees, and include employers, own-account workers, and members of producers cooperatives.\",\"World Development Indicators\",\"Understanding Children's Work project based on data from ILO, UNICEF and the World Bank.\"\n\"SL.SRV.0714.FE.ZS\",\"Child employment in services, female (% of female economically active children ages 7-14)\",\"Employment by economic activity refers to the distribution of economically active children by the major industrial categories (ISIC revision 2 or revision 3). Services correspond to divisions 6-9 (ISIC revision 2) or categories G-P (ISIC revision 3) and include wholesale and retail trade, hotels and restaurants, transport, financial intermediation, real estate, public administration, education, health and social work, other community services, and private household activity. Economically active children refer to children involved in economic activity for at least one hour in the reference week of the survey.\",\"World Development Indicators\",\"Understanding Children's Work project based on data from ILO, UNICEF and the World Bank.\"\n\"SL.SRV.0714.MA.ZS\",\"Child employment in services, male (% of male economically active children ages 7-14)\",\"Employment by economic activity refers to the distribution of economically active children by the major industrial categories (ISIC revision 2 or revision 3). Services correspond to divisions 6-9 (ISIC revision 2) or categories G-P (ISIC revision 3) and include wholesale and retail trade, hotels and restaurants, transport, financial intermediation, real estate, public administration, education, health and social work, other community services, and private household activity. Economically active children refer to children involved in economic activity for at least one hour in the reference week of the survey.\",\"World Development Indicators\",\"Understanding Children's Work project based on data from ILO, UNICEF and the World Bank.\"\n\"SL.SRV.0714.ZS\",\"Child employment in services (% of economically active children ages 7-14)\",\"Employment by economic activity refers to the distribution of economically active children by the major industrial categories (ISIC revision 2 or revision 3). Services correspond to divisions 6-9 (ISIC revision 2) or categories G-P (ISIC revision 3) and include wholesale and retail trade, hotels and restaurants, transport, financial intermediation, real estate, public administration, education, health and social work, other community services, and private household activity. Economically active children refer to children involved in economic activity for at least one hour in the reference week of the survey.\",\"World Development Indicators\",\"Understanding Children's Work project based on data from ILO, UNICEF and the World Bank.\"\n\"SL.SRV.EMPL.FE.ZS\",\"Employment in services, female (% of female employment)\",\"Employment is defined as persons of working age who were engaged in any activity to produce goods or provide services for pay or profit, whether at work during the reference period or not at work due to temporary absence from a job, or to working-time arrangement. The services sector consists of wholesale and retail trade and restaurants and hotels; transport, storage, and communications; financing, insurance, real estate, and business services; and community, social, and personal services, in accordance with divisions 6-9 (ISIC 2) or categories G-Q (ISIC 3) or categories G-U (ISIC 4).\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.SRV.EMPL.MA.ZS\",\"Employment in services, male (% of male employment)\",\"Employment is defined as persons of working age who were engaged in any activity to produce goods or provide services for pay or profit, whether at work during the reference period or not at work due to temporary absence from a job, or to working-time arrangement. The services sector consists of wholesale and retail trade and restaurants and hotels; transport, storage, and communications; financing, insurance, real estate, and business services; and community, social, and personal services, in accordance with divisions 6-9 (ISIC 2) or categories G-Q (ISIC 3) or categories G-U (ISIC 4).\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.SRV.EMPL.ZS\",\"Employment in services (% of total employment)\",\"Employment is defined as persons of working age who were engaged in any activity to produce goods or provide services for pay or profit, whether at work during the reference period or not at work due to temporary absence from a job, or to working-time arrangement. The services sector consists of wholesale and retail trade and restaurants and hotels; transport, storage, and communications; financing, insurance, real estate, and business services; and community, social, and personal services, in accordance with divisions 6-9 (ISIC 2) or categories G-Q (ISIC 3) or categories G-U (ISIC 4).\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TIM.DWRK.FE\",\"Time spent in domestic work, female (hours)\",\"Time spent in domestic work, female refers to average hours per day that women ages 20-74 spent on housework, child and adult care, gardening and pet care, construction and repairs, shopping and services, and household management.\",\"Gender Statistics\",\"United Nations Economic Commission for Europe (UNECE) Statistical Database. Website: http://w3.unece.org/pxweb/DATABASE/STAT/Gender.stat.asp\"\n\"SL.TIM.DWRK.MA\",\"Time spent in domestic work, male (hours)\",\"Time spent in domestic work, male refers to average hours per day that men ages 20-74 spent on housework, child and adult care, gardening and pet care, construction and repairs, shopping and services, and household management.\",\"Gender Statistics\",\"United Nations Economic Commission for Europe (UNECE) Statistical Database. Website: http://w3.unece.org/pxweb/DATABASE/STAT/Gender.stat.asp\"\n\"SL.TLF\",\"Number of people in labor force\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Labor Survey (SAKERNAS)\"\n\"SL.TLF.0714.FE.ZS\",\"Children in employment, female (% of female children ages 7-14)\",\"Children in employment refer to children involved in economic activity for at least one hour in the reference week of the survey.\",\"World Development Indicators\",\"Understanding Children's Work project based on data from ILO, UNICEF and the World Bank.\"\n\"SL.TLF.0714.MA.ZS\",\"Children in employment, male (% of male children ages 7-14)\",\"Children in employment refer to children involved in economic activity for at least one hour in the reference week of the survey.\",\"World Development Indicators\",\"Understanding Children's Work project based on data from ILO, UNICEF and the World Bank.\"\n\"SL.TLF.0714.SW.FE.TM\",\"Average working hours of children, study and work, female, ages 7-14 (hours per week)\",\"Average working hours of children studying and working refer to the average weekly working hours of those children who are attending school in combination with economic activity.\",\"World Development Indicators\",\"Understanding Children's Work project based on data from ILO, UNICEF and the World Bank.\"\n\"SL.TLF.0714.SW.FE.ZS\",\"Children in employment, study and work, female (% of female children in employment, ages 7-14)\",\"Children in employment refer to children involved in economic activity for at least one hour in the reference week of the survey. Study and work refer to children attending school in combination with economic activity.\",\"World Development Indicators\",\"Understanding Children's Work project based on data from ILO, UNICEF and the World Bank.\"\n\"SL.TLF.0714.SW.MA.TM\",\"Average working hours of children, study and work, male, ages 7-14 (hours per week)\",\"Average working hours of children studying and working refer to the average weekly working hours of those children who are attending school in combination with economic activity.\",\"World Development Indicators\",\"Understanding Children's Work project based on data from ILO, UNICEF and the World Bank.\"\n\"SL.TLF.0714.SW.MA.ZS\",\"Children in employment, study and work, male (% of male children in employment, ages 7-14)\",\"Children in employment refer to children involved in economic activity for at least one hour in the reference week of the survey. Study and work refer to children attending school in combination with economic activity.\",\"World Development Indicators\",\"Understanding Children's Work project based on data from ILO, UNICEF and the World Bank.\"\n\"SL.TLF.0714.SW.TM\",\"Average working hours of children, study and work, ages 7-14 (hours per week)\",\"Average working hours of children studying and working refer to the average weekly working hours of those children who are attending school in combination with economic activity.\",\"World Development Indicators\",\"Understanding Children's Work project based on data from ILO, UNICEF and the World Bank.\"\n\"SL.TLF.0714.SW.ZS\",\"Children in employment, study and work (% of children in employment, ages 7-14)\",\"Children in employment refer to children involved in economic activity for at least one hour in the reference week of the survey. Study and work refer to children attending school in combination with economic activity.\",\"World Development Indicators\",\"Understanding Children's Work project based on data from ILO, UNICEF and the World Bank.\"\n\"SL.TLF.0714.WK.FE.TM\",\"Average working hours of children, working only, female, ages 7-14 (hours per week)\",\"Average working hours of children working only refers to the average weekly working hours of those children who are involved in economic activity and not attending school.\",\"World Development Indicators\",\"Understanding Children's Work project based on data from ILO, UNICEF and the World Bank.\"\n\"SL.TLF.0714.WK.FE.ZS\",\"Children in employment, work only, female (% of female children in employment, ages 7-14)\",\"Children in employment refer to children involved in economic activity for at least one hour in the reference week of the survey. Work only refers to children involved in economic activity and not attending school.\",\"World Development Indicators\",\"Understanding Children's Work project based on data from ILO, UNICEF and the World Bank.\"\n\"SL.TLF.0714.WK.MA.TM\",\"Average working hours of children, working only, male, ages 7-14 (hours per week)\",\"Average working hours of children working only refers to the average weekly working hours of those children who are involved in economic activity and not attending school.\",\"World Development Indicators\",\"Understanding Children's Work project based on data from ILO, UNICEF and the World Bank.\"\n\"SL.TLF.0714.WK.MA.ZS\",\"Children in employment, work only, male (% of male children in employment, ages 7-14)\",\"Children in employment refer to children involved in economic activity for at least one hour in the reference week of the survey. Work only refers to children involved in economic activity and not attending school.\",\"World Development Indicators\",\"Understanding Children's Work project based on data from ILO, UNICEF and the World Bank.\"\n\"SL.TLF.0714.WK.TM\",\"Average working hours of children, working only, ages 7-14 (hours per week)\",\"Average working hours of children working only refers to the average weekly working hours of those children who are involved in economic activity and not attending school.\",\"World Development Indicators\",\"Understanding Children's Work project based on data from ILO, UNICEF and the World Bank.\"\n\"SL.TLF.0714.WK.ZS\",\"Children in employment, work only (% of children in employment, ages 7-14)\",\"Children in employment refer to children involved in economic activity for at least one hour in the reference week of the survey. Work only refers to children involved in economic activity and not attending school.\",\"World Development Indicators\",\"Understanding Children's Work project based on data from ILO, UNICEF and the World Bank.\"\n\"SL.TLF.0714.ZS\",\"Children in employment, total (% of children ages 7-14)\",\"Children in employment refer to children involved in economic activity for at least one hour in the reference week of the survey.\",\"World Development Indicators\",\"Understanding Children's Work project based on data from ILO, UNICEF and the World Bank.\"\n\"SL.TLF.1524.FE.IN\",\"Labor force (15-24 years), female\",\"Total labor force comprises people ages 15 to 24 who meet the International Labour Organization definition of the economically active population: all people who supply labor for the production of goods and services during a specified period. It includes both the employed and the unemployed. While national practices vary in the treatment of such groups as the armed forces and seasonal or part-time workers, in general the labor force includes the armed forces, the unemployed, and first-time job-seekers, but excludes homemakers and other unpaid caregivers and workers in the informal sector.\",\"Africa Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.1524.FE.ZS\",\"Labor force (15-24 years), female (% of total labor force 15-24 years)\",\"Labor participation rate, female (% of female population ages 15-24)\",\"Africa Development Indicators\",\"ILO Key Indicators of the Labour Market (KILM).\"\n\"SL.TLF.1524.IN\",\"Labor force (15-24 years), total\",\"Total labor force comprises people ages 15-24 who meet the International Labour Organization definition of the economically active population: all people who supply labor for the production of goods and services during a specified period. It includes both the employed and the unemployed. While national practices vary in the treatment of such groups as the armed forces and seasonal or part-time workers, in general the labor force includes the armed forces, the unemployed, and first-time job-seekers, but excludes homemakers and other unpaid caregivers and workers in the informal sector.\",\"Africa Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.1524.MA.IN\",\"Labor force (15-24 years), male\",\"Total labor force comprises people ages 15 to 24 who meet the International Labour Organization definition of the economically active population: all people who supply labor for the production of goods and services during a specified period. It includes both the employed and the unemployed. While national practices vary in the treatment of such groups as the armed forces and seasonal or part-time workers, in general the labor force includes the armed forces, the unemployed, and first-time job-seekers, but excludes homemakers and other unpaid caregivers and workers in the informal sector.\",\"Africa Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.1524.MA.ZS\",\"Labor force (15-24 years), male (% of total labor force 15-24 years)\",\"Labor participation rate, male (% of male population ages 15-24)\",\"Africa Development Indicators\",\"ILO Key Indicators of the Labour Market (KILM).\"\n\"SL.TLF.1564.FE.IN\",\"Labor force (15-64 years), female\",\"The labor force comprising people ages 15 to 64 who meet the International Labour Organization definition of the economically active population: all people who supply labor for the production of goods and services during a specified period. It includes both the employed and the unemployed. While national practices vary in the treatment of such groups as the armed forces and seasonal or part-time workers, in general the labor force includes the armed forces, the unemployed, and first-time job-seekers, but excludes homemakers and other unpaid caregivers and workers in the informal sector.\",\"Africa Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.1564.FE.ZS\",\"Labor force (15-64 years), female (% of total labor force 15-64 years)\",\"The labor force comprising people ages 15 to 64 who meet the International Labour Organization definition of the economically active population: all people who supply labor for the production of goods and services during a specified period. It includes both the employed and the unemployed. While national practices vary in the treatment of such groups as the armed forces and seasonal or part-time workers, in general the labor force includes the armed forces, the unemployed, and first-time job-seekers, but excludes homemakers and other unpaid caregivers and workers in the informal sector.\",\"Africa Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.1564.IN\",\"Labor force (15-64 years), total\",\"The labor force comprising people ages 15 to 64 who meet the International Labour Organization definition of the economically active population: all people who supply labor for the production of goods and services during a specified period. It includes both the employed and the unemployed. While national practices vary in the treatment of such groups as the armed forces and seasonal or part-time workers, in general the labor force includes the armed forces, the unemployed, and first-time job-seekers, but excludes homemakers and other unpaid caregivers and workers in the informal sector.\",\"Africa Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.1564.MA.IN\",\"Labor force (15-64 years), male\",\"The labor force comprising people ages 15 to 64 who meet the International Labour Organization definition of the economically active population: all people who supply labor for the production of goods and services during a specified period. It includes both the employed and the unemployed. While national practices vary in the treatment of such groups as the armed forces and seasonal or part-time workers, in general the labor force includes the armed forces, the unemployed, and first-time job-seekers, but excludes homemakers and other unpaid caregivers and workers in the informal sector.\",\"Africa Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.1564.MA.ZS\",\"Labor force (15-64 years), male (% of total labor force 15-64 years)\",\"The labor force comprising people ages 15 to 64 who meet the International Labour Organization definition of the economically active population: all people who supply labor for the production of goods and services during a specified period. It includes both the employed and the unemployed. While national practices vary in the treatment of such groups as the armed forces and seasonal or part-time workers, in general the labor force includes the armed forces, the unemployed, and first-time job-seekers, but excludes homemakers and other unpaid caregivers and workers in the informal sector.\",\"Africa Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.ACTI.1524.FE.NE.ZS\",\"Labor force participation rate for ages 15-24, female (%) (national estimate)\",\"Labor force participation rate for ages 15-24 is the proportion of the population ages 15-24 that is economically active: all people who supply labor for the production of goods and services during a specified period.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.ACTI.1524.FE.ZS\",\"Labor force participation rate for ages 15-24, female (%) (modeled ILO estimate)\",\"Labor force participation rate for ages 15-24 is the proportion of the population ages 15-24 that is economically active: all people who supply labor for the production of goods and services during a specified period.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.ACTI.1524.MA.NE.ZS\",\"Labor force participation rate for ages 15-24, male (%) (national estimate)\",\"Labor force participation rate for ages 15-24 is the proportion of the population ages 15-24 that is economically active: all people who supply labor for the production of goods and services during a specified period.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.ACTI.1524.MA.ZS\",\"Labor force participation rate for ages 15-24, male (%) (modeled ILO estimate)\",\"Labor force participation rate for ages 15-24 is the proportion of the population ages 15-24 that is economically active: all people who supply labor for the production of goods and services during a specified period.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.ACTI.1524.NE.ZS\",\"Labor force participation rate for ages 15-24, total (%) (national estimate)\",\"Labor force participation rate for ages 15-24 is the proportion of the population ages 15-24 that is economically active: all people who supply labor for the production of goods and services during a specified period.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.ACTI.1524.ZS\",\"Labor force participation rate for ages 15-24, total (%) (modeled ILO estimate)\",\"Labor force participation rate for ages 15-24 is the proportion of the population ages 15-24 that is economically active: all people who supply labor for the production of goods and services during a specified period.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.ACTI.FE.ZS\",\"Labor force participation rate, female (% of female population ages 15-64) (modeled ILO estimate)\",\"Labor force participation rate is the proportion of the population ages 15-64 that is economically active: all people who supply labor for the production of goods and services during a specified period.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.ACTI.MA.ZS\",\"Labor force participation rate, male (% of male population ages 15-64) (modeled ILO estimate)\",\"Labor force participation rate is the proportion of the population ages 15-64 that is economically active: all people who supply labor for the production of goods and services during a specified period.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.ACTI.ZS\",\"Labor force participation rate, total (% of total population ages 15-64) (modeled ILO estimate)\",\"Labor force participation rate is the proportion of the population ages 15-64 that is economically active: all people who supply labor for the production of goods and services during a specified period.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.CACT.2534.FE.ZS\",\"Labor participation rate, female (% of female population ages 25-34)\",\"Labor force participation rate is the proportion of the population ages 25-34 that is economically active: all people who supply labor for the production of goods and services during a specified period.  The participation rates are harmonized to account for differences in national data collection and tabulation methodologies as well as for other country-specific factors such as military service requirements. The series includes both nationally reported and imputed data and only estimates that are national, meaning there are no geographic limitations in coverage.\",\"Africa Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.CACT.2534.MA.ZS\",\"Labor participation rate, male (% of male population ages 25-34)\",\"Labor force participation rate is the proportion of the population ages 25-34 that is economically active: all people who supply labor for the production of goods and services during a specified period.  The participation rates are harmonized to account for differences in national data collection and tabulation methodologies as well as for other country-specific factors such as military service requirements. The series includes both nationally reported and imputed data and only estimates that are national, meaning there are no geographic limitations in coverage.\",\"Africa Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.CACT.2534.ZS\",\"Labor participation rate, total (% of total population ages 25-34)\",\"Labor force participation rate is the proportion of the population ages 25-34 that is economically active: all people who supply labor for the production of goods and services during a specified period.  The participation rates are harmonized to account for differences in national data collection and tabulation methodologies as well as for other country-specific factors such as military service requirements. The series includes both nationally reported and imputed data and only estimates that are national, meaning there are no geographic limitations in coverage.\",\"Africa Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.CACT.2554.FE.ZS\",\"Labor participation rate, female (% of female population ages 25-54)\",\"Labor force participation rate is the proportion of the population ages 25-54 that is economically active: all people who supply labor for the production of goods and services during a specified period.  The participation rates are harmonized to account for differences in national data collection and tabulation methodologies as well as for other country-specific factors such as military service requirements. The series includes both nationally reported and imputed data and only estimates that are national, meaning there are no geographic limitations in coverage.\",\"Africa Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.CACT.2554.MA.ZS\",\"Labor participation rate, male (% of male population ages 25-54)\",\"Labor force participation rate is the proportion of the population ages 25-54 that is economically active: all people who supply labor for the production of goods and services during a specified period.  The participation rates are harmonized to account for differences in national data collection and tabulation methodologies as well as for other country-specific factors such as military service requirements. The series includes both nationally reported and imputed data and only estimates that are national, meaning there are no geographic limitations in coverage.\",\"Africa Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.CACT.2554.ZS\",\"Labor participation rate, total (% of total population ages 25-54)\",\"Labor force participation rate is the proportion of the population ages 25-54 that is economically active: all people who supply labor for the production of goods and services during a specified period.  The participation rates are harmonized to account for differences in national data collection and tabulation methodologies as well as for other country-specific factors such as military service requirements. The series includes both nationally reported and imputed data and only estimates that are national, meaning there are no geographic limitations in coverage.\",\"Africa Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.CACT.3554.FE.ZS\",\"Labor participation rate, female (% of female population ages 35-54)\",\"Labor force participation rate is the proportion of the population ages 35-54 that is economically active: all people who supply labor for the production of goods and services during a specified period.  The participation rates are harmonized to account for differences in national data collection and tabulation methodologies as well as for other country-specific factors such as military service requirements. The series includes both nationally reported and imputed data and only estimates that are national, meaning there are no geographic limitations in coverage.\",\"Africa Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.CACT.3554.MA.ZS\",\"Labor participation rate, male (% of male population ages 35-54)\",\"Labor force participation rate is the proportion of the population ages 35-54 that is economically active: all people who supply labor for the production of goods and services during a specified period.  The participation rates are harmonized to account for differences in national data collection and tabulation methodologies as well as for other country-specific factors such as military service requirements. The series includes both nationally reported and imputed data and only estimates that are national, meaning there are no geographic limitations in coverage.\",\"Africa Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.CACT.3554.ZS\",\"Labor participation rate, total (% of total population ages 35-54)\",\"Labor force participation rate is the proportion of the population ages 35-54 that is economically active: all people who supply labor for the production of goods and services during a specified period.  The participation rates are harmonized to account for differences in national data collection and tabulation methodologies as well as for other country-specific factors such as military service requirements. The series includes both nationally reported and imputed data and only estimates that are national, meaning there are no geographic limitations in coverage.\",\"Africa Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.CACT.5564.FE.ZS\",\"Labor participation rate, female (% of female population ages 55-64)\",\"Labor force participation rate is the proportion of the population ages 55-64 that is economically active: all people who supply labor for the production of goods and services during a specified period.  The participation rates are harmonized to account for differences in national data collection and tabulation methodologies as well as for other country-specific factors such as military service requirements. The series includes both nationally reported and imputed data and only estimates that are national, meaning there are no geographic limitations in coverage.\",\"Africa Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.CACT.5564.MA.ZS\",\"Labor participation rate, male (% of male population ages 55-64)\",\"Labor force participation rate is the proportion of the population ages 55-64 that is economically active: all people who supply labor for the production of goods and services during a specified period.  The participation rates are harmonized to account for differences in national data collection and tabulation methodologies as well as for other country-specific factors such as military service requirements. The series includes both nationally reported and imputed data and only estimates that are national, meaning there are no geographic limitations in coverage.\",\"Africa Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.CACT.5564.ZS\",\"Labor participation rate, total (% of total population ages 55-64)\",\"Labor force participation rate is the proportion of the population ages 55-64 that is economically active: all people who supply labor for the production of goods and services during a specified period.  The participation rates are harmonized to account for differences in national data collection and tabulation methodologies as well as for other country-specific factors such as military service requirements. The series includes both nationally reported and imputed data and only estimates that are national, meaning there are no geographic limitations in coverage.\",\"Africa Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.CACT.65UP.FE.ZS\",\"Labor participation rate, female (% of female population ages 65+)\",\"Labor force participation rate is the proportion of the population ages 65 and older that is economically active: all people who supply labor for the production of goods and services during a specified period.  The participation rates are harmonized to account for differences in national data collection and tabulation methodologies as well as for other country-specific factors such as military service requirements. The series includes both nationally reported and imputed data and only estimates that are national, meaning there are no geographic limitations in coverage.\",\"Africa Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.CACT.65UP.MA.ZS\",\"Labor participation rate, male (% of male population ages 65+)\",\"Labor force participation rate is the proportion of the population ages 65 and older that is economically active: all people who supply labor for the production of goods and services during a specified period.  The participation rates are harmonized to account for differences in national data collection and tabulation methodologies as well as for other country-specific factors such as military service requirements. The series includes both nationally reported and imputed data and only estimates that are national, meaning there are no geographic limitations in coverage.\",\"Africa Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.CACT.65UP.ZS\",\"Labor participation rate, total (% of total population ages 65+)\",\"Labor force participation rate is the proportion of the population ages 65 and older that is economically active: all people who supply labor for the production of goods and services during a specified period.  The participation rates are harmonized to account for differences in national data collection and tabulation methodologies as well as for other country-specific factors such as military service requirements. The series includes both nationally reported and imputed data and only estimates that are national, meaning there are no geographic limitations in coverage.\",\"Africa Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.CACT.FE.NE.ZS\",\"Labor force participation rate, female (% of female population ages 15+) (national estimate)\",\"Labor force participation rate is the proportion of the population ages 15 and older that is economically active: all people who supply labor for the production of goods and services during a specified period.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.CACT.FE.ZS\",\"Labor force participation rate, female (% of female population ages 15+) (modeled ILO estimate)\",\"Labor force participation rate is the proportion of the population ages 15 and older that is economically active: all people who supply labor for the production of goods and services during a specified period.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.CACT.FM.NE.ZS\",\"Ratio of female to male labor force participation rate (%) (national estimate)\",\"Labor force participation rate is the proportion of the population ages 15 and older that is economically active: all people who supply labor for the production of goods and services during a specified period.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.CACT.FM.ZS\",\"Ratio of female to male labor force participation rate (%) (modeled ILO estimate)\",\"Labor force participation rate is the proportion of the population ages 15 and older that is economically active: all people who supply labor for the production of goods and services during a specified period.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.CACT.MA.NE.ZS\",\"Labor force participation rate, male (% of male population ages 15+) (national estimate)\",\"Labor force participation rate is the proportion of the population ages 15 and older that is economically active: all people who supply labor for the production of goods and services during a specified period.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.CACT.MA.ZS\",\"Labor force participation rate, male (% of male population ages 15+) (modeled ILO estimate)\",\"Labor force participation rate is the proportion of the population ages 15 and older that is economically active: all people who supply labor for the production of goods and services during a specified period.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.CACT.NE.ZS\",\"Labor force participation rate, total (% of total population ages 15+) (national estimate)\",\"Labor force participation rate is the proportion of the population ages 15 and older that is economically active: all people who supply labor for the production of goods and services during a specified period.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.CACT.ZS\",\"Labor force participation rate, total (% of total population ages 15+) (modeled ILO estimate)\",\"Labor force participation rate is the proportion of the population ages 15 and older that is economically active: all people who supply labor for the production of goods and services during a specified period.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.PART.FE.ZS\",\"Part time employment, female (% of total female employment)\",\"Part time employment refers to regular employment in which working time is substantially less than normal. Definitions of part time employment differ by country.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.PART.MA.ZS\",\"Part time employment, male (% of total male employment)\",\"Part time employment refers to regular employment in which working time is substantially less than normal. Definitions of part time employment differ by country.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.PART.TL.FE.ZS\",\"Part time employment, female (% of total part time employment)\",\"Part time employment refers to regular employment in which working time is substantially less than normal. Definitions of part time employment differ by country.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.PART.ZS\",\"Part time employment, total (% of total employment)\",\"Part time employment refers to regular employment in which working time is substantially less than normal. Definitions of part time employment differ by country.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.PRIM.FE.ZS\",\"Labor force with primary education, female (% of female labor force)\",\"Female labor force with primary education is the share of the female labor force that attained or completed primary education as the highest level of education.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.PRIM.MA.ZS\",\"Labor force with primary education, male (% of male labor force)\",\"Male labor force with primary education is the share of the male labor force that attained or completed primary education as the highest level of education.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.PRIM.ZS\",\"Labor force with primary education (% of total)\",\"Labor force with primary education is the share of the total labor force that attained or completed primary education as the highest level of education.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.SECO.FE.ZS\",\"Labor force with secondary education, female (% of female labor force)\",\"Female labor force with secondary education is the share of the female labor force that attained or completed secondary education as the highest level of education.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.SECO.MA.ZS\",\"Labor force with secondary education, male (% of male labor force)\",\"Male labor force with secondary education is the share of the male labor force that attained or completed secondary education as the highest level of education.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.SECO.ZS\",\"Labor force with secondary education (% of total)\",\"Labor force with secondary education is the share of the total labor force that attained or completed secondary education as the highest level of education.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.TERT.FE.ZS\",\"Labor force with tertiary education, female (% of female labor force)\",\"Female labor force with tertiary education is the share of the female labor force that attained or completed tertiary education as the highest level of education.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.TERT.MA.ZS\",\"Labor force with tertiary education, male (% of male labor force)\",\"Male labor force with tertiary education is the share of the male labor force that attained or completed tertiary education as the highest level of education.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.TERT.ZS\",\"Labor force with tertiary education (% of total)\",\"Labor force with tertiary education is the share of the total labor force that attained or completed tertiary education as the highest level of education.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.TLF.TOTL.FE.ZS\",\"Labor force, female (% of total labor force)\",\"Female labor force as a percentage of the total show the extent to which women are active in the labor force. Labor force comprises people ages 15 and older who meet the International Labour Organization's definition of the economically active population.\",\"World Development Indicators\",\"International Labour Organization, using World Bank population estimates.\"\n\"SL.TLF.TOTL.IN\",\"Labor force, total\",\"Total labor force comprises people ages 15 and older who meet the International Labour Organization definition of the economically active population: all people who supply labor for the production of goods and services during a specified period. It includes both the employed and the unemployed. While national practices vary in the treatment of such groups as the armed forces and seasonal or part-time workers, in general the labor force includes the armed forces, the unemployed, and first-time job-seekers, but excludes homemakers and other unpaid caregivers and workers in the informal sector.\",\"World Development Indicators\",\"International Labour Organization, using World Bank population estimates.\"\n\"SL.TLF.TOTL.MA.IN\",\"Labor force, male\",\"Male labor force comprises all males who meet the International Labour Organization's definition of the economically active population.\",\"Africa Development Indicators\",\"International Labour Organization, using World Bank population estimates.\"\n\"SL.TLF.TOTL.MA.ZS\",\"Labor force, male (% of total labor force)\",\"Male labor force as a percentage of the total show the extent to which men are active in the labor force. Labor force comprises people ages 15 and older who meet the International Labour Organization's definition of the economically active population.\",\"Africa Development Indicators\",\"International Labour Organization, using World Bank population estimates.\"\n\"SL.UEM.1524.FE.NE.ZS\",\"Unemployment, youth female (% of female labor force ages 15-24) (national estimate)\",\"Youth unemployment refers to the share of the labor force ages 15-24 without work but available for and seeking employment. Definitions of labor force and unemployment differ by country.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.UEM.1524.FE.ZS\",\"Unemployment, youth female (% of female labor force ages 15-24) (modeled ILO estimate)\",\"Youth unemployment refers to the share of the labor force ages 15-24 without work but available for and seeking employment.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.UEM.1524.FM.NE.ZS\",\"Ratio of female to male youth unemployment rate (% ages 15-24) (national estimate)\",\"Ratio of female to male youth unemployment is the percentage of female to male youth unemployment rates.\",\"Gender Statistics\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.UEM.1524.FM.ZS\",\"Ratio of female to male youth unemployment rate (% ages 15-24) (modeled ILO estimate)\",\"Ratio of female to male youth unemployment is the percentage of female to male youth unemployment rates.\",\"Gender Statistics\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.UEM.1524.MA.NE.ZS\",\"Unemployment, youth male (% of male labor force ages 15-24) (national estimate)\",\"Youth unemployment refers to the share of the labor force ages 15-24 without work but available for and seeking employment. Definitions of labor force and unemployment differ by country.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.UEM.1524.MA.ZS\",\"Unemployment, youth male (% of male labor force ages 15-24) (modeled ILO estimate)\",\"Youth unemployment refers to the share of the labor force ages 15-24 without work but available for and seeking employment.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.UEM.1524.NE.ZS\",\"Unemployment, youth total (% of total labor force ages 15-24) (national estimate)\",\"Youth unemployment refers to the share of the labor force ages 15-24 without work but available for and seeking employment. Definitions of labor force and unemployment differ by country.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.UEM.1524.ZS\",\"Unemployment, youth total (% of total labor force ages 15-24) (modeled ILO estimate)\",\"Youth unemployment refers to the share of the labor force ages 15-24 without work but available for and seeking employment.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.UEM.LTRM.FE.ZS\",\"Long-term unemployment, female (% of female unemployment)\",\"Long-term unemployment refers to the number of people with continuous periods of unemployment extending for a year or longer, expressed as a percentage of the total unemployed.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.UEM.LTRM.MA.ZS\",\"Long-term unemployment, male (% of male unemployment)\",\"Long-term unemployment refers to the number of people with continuous periods of unemployment extending for a year or longer, expressed as a percentage of the total unemployed.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.UEM.LTRM.ZS\",\"Long-term unemployment (% of total unemployment)\",\"Long-term unemployment refers to the number of people with continuous periods of unemployment extending for a year or longer, expressed as a percentage of the total unemployed.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.UEM.NEET.FE.ZS\",\"Share of youth not in education, employment, or training, female (% of female youth population)\",\"Share of youth not in education, employment or training (NEET) is the proportion of young people who are not in education, employment, or training  to the population of the corresponding age group: youth (ages 15 to 24); persons ages 15 to 29; or both age groups.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.UEM.NEET.MA.ZS\",\"Share of youth not in education, employment, or training, male (% of male youth population)\",\"Share of youth not in education, employment or training (NEET) is the proportion of young people who are not in education, employment, or training  to the population of the corresponding age group: youth (ages 15 to 24); persons ages 15 to 29; or both age groups.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.UEM.NEET.ZS\",\"Share of youth not in education, employment, or training, total (% of youth population)\",\"Share of youth not in education, employment or training (NEET) is the proportion of young people who are not in education, employment, or training  to the population of the corresponding age group: youth (ages 15 to 24); persons ages 15 to 29; or both age groups.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.UEM.PRIM.FE.ZS\",\"Unemployment with primary education, female (% of female unemployment)\",\"Female unemployment with primary education is the share of the female unemployed who attained or completed primary education as the highest level.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.UEM.PRIM.MA.ZS\",\"Unemployment with primary education, male (% of male unemployment)\",\"Male unemployment with primary education is the share of the male unemployed who attained or completed primary education as the highest level.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.UEM.PRIM.ZS\",\"Unemployment with primary education (% of total unemployment)\",\"Unemployment with primary education is the share of the total unemployed who attained or completed primary education as the highest level.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.UEM.SECO.FE.ZS\",\"Unemployment with secondary education, female (% of female unemployment)\",\"Female unemployment with secondary education is the share of the female unemployed who attained or completed secondary education as the highest level.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.UEM.SECO.MA.ZS\",\"Unemployment with secondary education, male (% of male unemployment)\",\"Male unemployment with secondary education is the share of the male unemployed who attained or completed secondary education as the highest level.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.UEM.SECO.ZS\",\"Unemployment with secondary education (% of total unemployment)\",\"Unemployment with secondary education is the share of the total unemployed who attained or completed secondary education as the highest level.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.UEM.TERT.FE.ZS\",\"Unemployment with tertiary education, female (% of female unemployment)\",\"Female unemployment with tertiary education is the share of the female unemployed who attained or completed tertiary education as the highest level.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.UEM.TERT.MA.ZS\",\"Unemployment with tertiary education, male (% of male unemployment)\",\"Male unemployment with tertiary education is the share of the male unemployed who attained or completed tertiary education as the highest level.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.UEM.TERT.ZS\",\"Unemployment with tertiary education (% of total unemployment)\",\"Unemployment with tertiary education is the share of the total unemployed who attained or completed tertiary education as the highest level.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.UEM.TOTL\",\"Number of people unemployed\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Labor Survey (SAKERNAS)\"\n\"SL.UEM.TOTL.FE.NE.ZS\",\"Unemployment, female (% of female labor force) (national estimate)\",\"Unemployment refers to the share of the labor force that is without work but available for and seeking employment. Definitions of labor force and unemployment differ by country.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.UEM.TOTL.FE.ZS\",\"Unemployment, female (% of female labor force) (modeled ILO estimate)\",\"Unemployment refers to the share of the labor force that is without work but available for and seeking employment.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.UEM.TOTL.MA.NE.ZS\",\"Unemployment, male (% of male labor force) (national estimate)\",\"Unemployment refers to the share of the labor force that is without work but available for and seeking employment. Definitions of labor force and unemployment differ by country.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.UEM.TOTL.MA.ZS\",\"Unemployment, male (% of male labor force) (modeled ILO estimate)\",\"Unemployment refers to the share of the labor force that is without work but available for and seeking employment.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.UEM.TOTL.NE.ZS\",\"Unemployment, total (% of total labor force) (national estimate)\",\"Unemployment refers to the share of the labor force that is without work but available for and seeking employment. Definitions of labor force and unemployment differ by country.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.UEM.TOTL.ZS\",\"Unemployment, total (% of total labor force) (modeled ILO estimate)\",\"Unemployment refers to the share of the labor force that is without work but available for and seeking employment.\",\"World Development Indicators\",\"International Labour Organization, Key Indicators of the Labour Market database.\"\n\"SL.WAG.0714.FE.ZS\",\"Children in employment, wage workers, female (% of female children in employment, ages 7-14)\",\"Wage workers (also known as employees) are people who hold explicit (written or oral) or implicit employment contracts that provide basic remuneration that does not depend directly on the revenue of the unit for which they work.\",\"World Development Indicators\",\"Understanding Children's Work project based on data from ILO, UNICEF and the World Bank.\"\n\"SL.WAG.0714.MA.ZS\",\"Children in employment, wage workers, male (% of male children in employment, ages 7-14)\",\"Wage workers (also known as employees) are people who hold explicit (written or oral) or implicit employment contracts that provide basic remuneration that does not depend directly on the revenue of the unit for which they work.\",\"World Development Indicators\",\"Understanding Children's Work project based on data from ILO, UNICEF and the World Bank.\"\n\"SL.WAG.0714.ZS\",\"Children in employment, wage workers (% of children in employment, ages 7-14)\",\"Wage workers (also known as employees) are people who hold explicit (written or oral) or implicit employment contracts that provide basic remuneration that does not depend directly on the revenue of the unit for which they work.\",\"World Development Indicators\",\"Understanding Children's Work project based on data from ILO, UNICEF and the World Bank.\"\n\"SM.EMI.TERT.ZS\",\"Emigration rate of tertiary educated (% of total tertiary educated population)\",\"Emigration rate of tertiary educated shows the stock of emigrants ages 25 and older, residing in an OECD country other than that in which they were born, with at least one year of tertiary education as a percentage of the population age 25 and older with tertiary education.\",\"World Development Indicators\",\"Frédéric Docquier, B. Lindsay Lowell, and Abdeslam Marfouk's , \\\"A Gendered Assessment of Highly Skilled Emigration\\\" (2009).\"\n\"SM.POP.NETM\",\"Net migration\",\"Net migration is the net total of migrants during the period, that is, the total number of immigrants less the annual number of emigrants, including both citizens and noncitizens. Data are five-year estimates.\",\"World Development Indicators\",\"United Nations Population Division, World Population Prospects.\"\n\"SM.POP.REFG\",\"Refugee population by country or territory of asylum\",\"Refugees are people who are recognized as refugees under the 1951 Convention Relating to the Status of Refugees or its 1967 Protocol, the 1969 Organization of African Unity Convention Governing the Specific Aspects of Refugee Problems in Africa, people recognized as refugees in accordance with the UNHCR statute, people granted refugee-like humanitarian status, and people provided temporary protection. Asylum seekers--people who have applied for asylum or refugee status and who have not yet received a decision or who are registered as asylum seekers--are excluded. Palestinian refugees are people (and their descendants) whose residence was Palestine between June 1946 and May 1948 and who lost their homes and means of livelihood as a result of the 1948 Arab-Israeli conflict. Country of asylum is the country where an asylum claim was filed and granted.\",\"World Development Indicators\",\"United Nations High Commissioner for Refugees (UNHCR), Statistical Yearbook and data files, complemented by statistics on Palestinian refugees under the mandate of the UNRWA as published on its website. Data from UNHCR are available online at: www.unhcr.org/statistics/populationdatabase.\"\n\"SM.POP.REFG.OR\",\"Refugee population by country or territory of origin\",\"Refugees are people who are recognized as refugees under the 1951 Convention Relating to the Status of Refugees or its 1967 Protocol, the 1969 Organization of African Unity Convention Governing the Specific Aspects of Refugee Problems in Africa, people recognized as refugees in accordance with the UNHCR statute, people granted refugee-like humanitarian status, and people provided temporary protection. Asylum seekers--people who have applied for asylum or refugee status and who have not yet received a decision or who are registered as asylum seekers--are excluded. Palestinian refugees are people (and their descendants) whose residence was Palestine between June 1946 and May 1948 and who lost their homes and means of livelihood as a result of the 1948 Arab-Israeli conflict. Country of origin generally refers to the nationality or country of citizenship of a claimant.\",\"World Development Indicators\",\"United Nations High Commissioner for Refugees (UNHCR), Statistical Yearbook and data files, complemented by statistics on Palestinian refugees under the mandate of the UNRWA as published on its website. Data from UNHCR are available online at: www.unhcr.org/statistics/populationdatabase.\"\n\"SM.POP.TOTL\",\"International migrant stock, total\",\"International migrant stock is the number of people born in a country other than that in which they live. It also includes refugees. The data used to estimate the international migrant stock at a particular time are obtained mainly from population censuses. The estimates are derived from the data on foreign-born population--people who have residence in one country but were born in another country. When data on the foreign-born population are not available, data on foreign population--that is, people who are citizens of a country other than the country in which they reside--are used as estimates. After the breakup of the Soviet Union in 1991 people living in one of the newly independent countries who were born in another were classified as international migrants. Estimates of migrant stock in the newly independent states from 1990 on are based on the 1989 census of the Soviet Union. For countries with information on the international migrant stock for at least two points in time, interpolation or extrapolation was used to estimate the international migrant stock on July 1 of the reference years. For countries with only one observation, estimates for the reference years were derived using rates of change in the migrant stock in the years preceding or following the single observation available. A model was used to estimate migrants for countries that had no data.\",\"World Development Indicators\",\"United Nations Population Division, Trends in Total Migrant Stock: 2012 Revision.\"\n\"SM.POP.TOTL.ZS\",\"International migrant stock (% of population)\",\"International migrant stock is the number of people born in a country other than that in which they live. It also includes refugees. The data used to estimate the international migrant stock at a particular time are obtained mainly from population censuses. The estimates are derived from the data on foreign-born population--people who have residence in one country but were born in another country. When data on the foreign-born population are not available, data on foreign population--that is, people who are citizens of a country other than the country in which they reside--are used as estimates. After the breakup of the Soviet Union in 1991 people living in one of the newly independent countries who were born in another were classified as international migrants. Estimates of migrant stock in the newly independent states from 1990 on are based on the 1989 census of the Soviet Union. For countries with information on the international migrant stock for at least two points in time, interpolation or extrapolation was used to estimate the international migrant stock on July 1 of the reference years. For countries with only one observation, estimates for the reference years were derived using rates of change in the migrant stock in the years preceding or following the single observation available. A model was used to estimate migrants for countries that had no data.\",\"World Development Indicators\",\"United Nations Population Division, Trends in Total Migrant Stock: 2008 Revision.\"\n\"SN.ITK.DEFC\",\"Number of people who are undernourished\",\"Food and Agriculture Organization (http://www.fao.org/publications/en/).\",\"Health Nutrition and Population Statistics\",\"Food and Agriculture Organization (http://www.fao.org/publications/en/).\"\n\"SN.ITK.DEFC.POP\",\"Prevalence of undernourishment (population)\",\"Population below minimum dietary energy consumption is the population whose food intake is insufficient to meet dietary energy requirements continuously. \",\"Africa Development Indicators\",\"Food and Agriculture Organization (http://www.fao.org/faostat/foodsecurity/index_en.htm).\"\n\"SN.ITK.DEFC.ZS\",\"Prevalence of undernourishment (% of population)\",\"Population below minimum level of dietary energy consumption (also referred to as prevalence of undernourishment) shows the percentage of the population whose food intake is insufficient to meet dietary energy requirements continuously. Data showing as 2.5 signifies a prevalence of undernourishment below 2.5%.\",\"World Development Indicators\",\"Food and Agriculture Organization (http://www.fao.org/publications/en/).\"\n\"SN.ITK.DFCT\",\"Depth of the food deficit (kilocalories per person per day)\",\"The depth of the food deficit indicates how many calories would be needed to lift the undernourished from their status, everything else being constant. The average intensity of food deprivation of the undernourished, estimated as the difference between the average dietary energy requirement and the average dietary energy consumption of the undernourished population (food-deprived), is multiplied by the number of undernourished to provide an estimate of the total food deficit in the country, which is then normalized by the total population.\",\"World Development Indicators\",\"Food and Agriculture Organization, Food Security Statistics.\"\n\"SN.ITK.DPTH\",\"Depth of hunger (kilocalories per person per day)\",\"Depth of hunger or the intensity of food deprivation, indicates how much food-deprived people fall short of minimum food needs in terms of dietary energy. The food deficit, in kilocalories per person per day, is measured by comparing the average amount of dietary energy that undernourished people get from the foods they eat with the minimum amount of dietary energy they need to maintain body weight and undertake light activity. The depth of hunger is low when it is less than 200 kilocalories per person per day, and high when it is higher than 300 kilocalories per person per day.\",\"Africa Development Indicators\",\"Food and Agriculture Organization, Food Security Statistics (http://www.fao.org/economic/ess/food-security-statistics/en/).\"\n\"SN.ITK.SALT.ZS\",\"Consumption of iodized salt (% of households)\",\"Consumption of iodized salt refers to the percentage of households that use edible salt fortified with iodine.\",\"World Development Indicators\",\"United Nations Children's Fund, State of the World's Children.\"\n\"SN.ITK.VAPP.Q1.ZS\",\"Vitamin A supplements for postpartum women (% of women with a birth): Q1 (lowest)\",\"Vitamin A supplements for postpartum women: Percentage of women with a birth in the five (two) years preceding the survey who received a vitamin A dose in the first two months after delivery. The DHS surveys refer births in the five years preceding the survey, and the MICS surveys refer births in the two years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SN.ITK.VAPP.Q2.ZS\",\"Vitamin A supplements for postpartum women (% of women with a birth): Q2\",\"Vitamin A supplements for postpartum women: Percentage of women with a birth in the five (two) years preceding the survey who received a vitamin A dose in the first two months after delivery. The DHS surveys refer births in the five years preceding the survey, and the MICS surveys refer births in the two years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SN.ITK.VAPP.Q3.ZS\",\"Vitamin A supplements for postpartum women (% of women with a birth): Q3\",\"Vitamin A supplements for postpartum women: Percentage of women with a birth in the five (two) years preceding the survey who received a vitamin A dose in the first two months after delivery. The DHS surveys refer births in the five years preceding the survey, and the MICS surveys refer births in the two years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SN.ITK.VAPP.Q4.ZS\",\"Vitamin A supplements for postpartum women (% of women with a birth): Q4\",\"Vitamin A supplements for postpartum women: Percentage of women with a birth in the five (two) years preceding the survey who received a vitamin A dose in the first two months after delivery. The DHS surveys refer births in the five years preceding the survey, and the MICS surveys refer births in the two years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SN.ITK.VAPP.Q5.ZS\",\"Vitamin A supplements for postpartum women (% of women with a birth): Q5 (highest)\",\"Vitamin A supplements for postpartum women: Percentage of women with a birth in the five (two) years preceding the survey who received a vitamin A dose in the first two months after delivery. The DHS surveys refer births in the five years preceding the survey, and the MICS surveys refer births in the two years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SN.ITK.VITA.Q1.ZS\",\"Vitamin A supplements for children (% of children ages 6-59 months): Q1 (lowest)\",\"Vitamin A supplements for children: Percentage of children aged 6-59 months who received vitamin A supplements in the six months preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SN.ITK.VITA.Q2.ZS\",\"Vitamin A supplements for children (% of children ages 6-59 months): Q2\",\"Vitamin A supplements for children: Percentage of children aged 6-59 months who received vitamin A supplements in the six months preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SN.ITK.VITA.Q3.ZS\",\"Vitamin A supplements for children (% of children ages 6-59 months): Q3\",\"Vitamin A supplements for children: Percentage of children aged 6-59 months who received vitamin A supplements in the six months preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SN.ITK.VITA.Q4.ZS\",\"Vitamin A supplements for children (% of children ages 6-59 months): Q4\",\"Vitamin A supplements for children: Percentage of children aged 6-59 months who received vitamin A supplements in the six months preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SN.ITK.VITA.Q5.ZS\",\"Vitamin A supplements for children (% of children ages 6-59 months): Q5 (highest)\",\"Vitamin A supplements for children: Percentage of children aged 6-59 months who received vitamin A supplements in the six months preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SN.ITK.VITA.ZS\",\"Vitamin A supplementation coverage rate (% of children ages 6-59 months)\",\"Vitamin A supplementation refers to the percentage of children ages 6-59 months old who received at least two doses of vitamin A in the previous year.\",\"World Development Indicators\",\"United Nations Children's Fund, State of the World's Children.\"\n\"SN.SH.STA.MALN.ZS\",\"Sub-National Malnutrition prevalence, weight for age (% of children under 5)\",\"Prevalence of child malnutrition is the percentage of children under age 5 whose weight for age is more than two standard deviations below the median for the international reference population ages 0-59 months. The data are based on the WHO's new child growth standards released in 2006.\",\"Subnational Malnutrition Database\",\"World Health Organization, Global Database on Child Growth and Malnutrition. Country-level data are unadjusted data from national surveys, and thus may not be comparable across countries. Adjusted, comparable data are available at http://www.who.int/nutgrowthdb/en. Aggregation is based on UNICEF, WHO, and the World Bank harmonized dataset (adjusted, comparable data) and methodology.\"\n\"SN.SH.STA.OWGH.ZS\",\"Sub-National Prevalence of overweight (% of children under 5)\",\"Prevalence of overweight children is the percentage of children under age 5 whose weight for height is more than two standard deviations above the median for the international reference population of the corresponding age as established by the WHO's new child growth standards released in 2006.\",\"Subnational Malnutrition Database\",\"World Health Organization, Global Database on Child Growth and Malnutrition. Country-level data are unadjusted data from national surveys, and thus may not be comparable across countries. Adjusted, comparable data are available at http://www.who.int/nutgrowthdb/en. Aggregation is based on UNICEF, WHO, and the World Bank harmonized dataset (adjusted, comparable data) and methodology.\"\n\"SN.SH.STA.STNT.ZS\",\"Sub-National Malnutrition prevalence, height for age (% of children under 5)\",\"Prevalence of child malnutrition is the percentage of children under age 5 whose height for age (stunting) is more than two standard deviations below the median for the international reference population ages 0-59 months. For children up to two years old height is measured by recumbent length. For older children height is measured by stature while standing. The data are based on the WHO's new child growth standards released in 2006.\",\"Subnational Malnutrition Database\",\"World Health Organization, Global Database on Child Growth and Malnutrition. Country-level data are unadjusted data from national surveys, and thus may not be comparable across countries. Adjusted, comparable data are available at http://www.who.int/nutgrowthdb/en. Aggregation is based on UNICEF, WHO, and the World Bank harmonized dataset (adjusted, comparable data) and methodology.\"\n\"SN.SH.STA.WAST.ZS\",\"Sub-National Prevalence of wasting (% of children under 5)\",\"Wasting prevalence is the proportion of children under five whose weight for height is more than two standard deviations below the median for the international reference population ages 0-59.\",\"Subnational Malnutrition Database\",\"World Health Organization, Global Database on Child Growth and Malnutrition. Country-level data are unadjusted data from national surveys, and thus may not be comparable across countries. Adjusted, comparable data are available at http://www.who.int/nutgrowthdb/en. Aggregation is based on UNICEF, WHO, and the World Bank harmonized dataset (adjusted, comparable data) and methodology.\"\n\"SN.SH.SVR.WAST.ZS\",\"Sub-National Prevalence of severe wasting, weight for height (% of children under 5)\",\"Yet to receive metadata\",\"Subnational Malnutrition Database\",\"Yet to receive metadata\"\n\"SORGHUM\",\"Sorghum, $/mt, current$\",\"Sorghum (US), no. 2 milo yellow, f.o.b. Gulf ports\",\"Global Economic Monitor (GEM) Commodities\",\"US Department of Agriculture; World Bank.\"\n\"SOYBEAN_MEAL\",\"Soybean meal, $/mt, current$\",\"Soybean meal (any origin), Argentine 45/46% extraction, c.i.f. Rotterdam beginning 1990; previously US 44%\",\"Global Economic Monitor (GEM) Commodities\",\"ISTA Mielke GmbH, Oil World; US Department of Agriculture; World Bank.\"\n\"SOYBEAN_OIL\",\"Soybean oil, $/mt, current$\",\"Soybean oil (Any origin), crude, f.o.b. ex-mill Netherlands\",\"Global Economic Monitor (GEM) Commodities\",\"ISTA Mielke GmbH, Oil World; US Department of Agriculture; World Bank.\"\n\"SOYBEANS\",\"Soybeans, $/mt, current$\",\"Soybeans (US), c.i.f. Rotterdam\",\"Global Economic Monitor (GEM) Commodities\",\"ISTA Mielke GmbH, Oil World; US Department of Agriculture; World Bank.\"\n\"SP.ADO.TFRT\",\"Adolescent fertility rate (births per 1,000 women ages 15-19)\",\"Adolescent fertility rate is the number of births per 1,000 women ages 15-19.\",\"World Development Indicators\",\"United Nations Population Division, World Population Prospects.\"\n\"SP.DTH.INFR.ZS\",\"Completeness of infant death reporting (% of reported infant deaths to estimated infant deaths)\",\"Completeness of infant death reporting is the number of infant deaths reported by national statistics authorities to the United Nations Statistics Division's Demography Yearbook divided by the number of infant deaths estimated by the United Nations Population Division.\",\"World Development Indicators\",\"The United Nations Statistics Division's Population and Vital Statistics Report and the United Nations Population Division's World Population Prospects.\"\n\"SP.DTH.REPT.ZS\",\"Completeness of total death reporting (% of reported total deaths to estimated total deaths)\",\"Completeness of total death reporting is the number of total deaths reported by national statistics authorities to the United Nations Statistics Division's Demography Yearbook divided by the number of total deaths estimated by the United Nations Population Division.\",\"World Development Indicators\",\"The United Nations Statistics Division's Population and Vital Statistics Report and the United Nations Population Division's World Population Prospects.\"\n\"SP.DYN.1ANTE.ZS\",\"Antenatal care coverage provided by a skilled health provider, at least one visit (%)\",\"Antenatal care coverage (at least one visit) is the percentage of women aged 15-49 with a live birth in a given time period that received antenatal care provided by skilled health personnel (doctors, nurses, or midwives) at least once during pregnancy, as a percentage of women age 15-49 years with a live birth in a given time period. A skilled health worker/attendant is an accredited health professional - such as a midwife, doctor or nurse - who has been educated and trained to proficiency in the skills needed to manage normal (uncomplicated) pregnancies, childbirth and the immediate postnatal period, and in the identification, management and referral of complications in women and newborns. Both trained and untrained traditional birth attendants (TBA) are excluded. \",\"Africa Development Indicators\",\"http://www.who.int/reproductive-health/global_monitoring/index.html\"\n\"SP.DYN.4ANTE.ZS\",\"Antenatal care coverage provided by any provider (skilled or unskilled), at least four visits (%)\",\"Antenatal care coverage (at least four visits) is the percentage of women aged 15-49 with a live birth in a given time period that received antenatal care four or more times with ANY provider (whether skilled or unskilled), as a percentage of women age 15-49 years with a live birth in a given time period. \",\"Africa Development Indicators\",\"http://www.who.int/reproductive-health/global_monitoring/index.html\"\n\"SP.DYN.AMRT.FE\",\"Mortality rate, adult, female (per 1,000 female adults)\",\"Adult mortality rate is the probability of dying between the ages of 15 and 60--that is, the probability of a 15-year-old dying before reaching age 60, if subject to age-specific mortality rates of the specified year between those ages.\",\"World Development Indicators\",\"(1) United Nations Population Division. World Population Prospects. New York, United Nations, Department of Economic and Social Affairs (advanced Excel tables). Available at http://esa.un.org/wpp/unpp/panel_population.htm, (2) University of California, Berkeley, and Max Planck Institute for Demographic Research. Human Mortality Database. [ www.mortality.org or www.humanmortality.de].\"\n\"SP.DYN.AMRT.MA\",\"Mortality rate, adult, male (per 1,000 male adults)\",\"Adult mortality rate is the probability of dying between the ages of 15 and 60--that is, the probability of a 15-year-old dying before reaching age 60, if subject to age-specific mortality rates of the specified year between those ages.\",\"World Development Indicators\",\"(1) United Nations Population Division. World Population Prospects. New York, United Nations, Department of Economic and Social Affairs (advanced Excel tables). Available at http://esa.un.org/wpp/unpp/panel_population.htm, (2) University of California, Berkeley, and Max Planck Institute for Demographic Research. Human Mortality Database. [ www.mortality.org or www.humanmortality.de].\"\n\"SP.DYN.CBRT.IN\",\"Birth rate, crude (per 1,000 people)\",\"Crude birth rate indicates the number of live births occurring during the year, per 1,000 population estimated at midyear. Subtracting the crude death rate from the crude birth rate provides the rate of natural increase, which is equal to the rate of population change in the absence of migration.\",\"World Development Indicators\",\"(1) United Nations Population Division. World Population Prospects, (2) Census reports and other statistical publications from national statistical offices, (3) Eurostat: Demographic Statistics, (4) United Nations Statistical Division. Population and Vital Statistics Reprot (various years), (5) U.S. Census Bureau: International Database, and (6) Secretariat of the Pacific Community: Statistics and Demography Programme.\"\n\"SP.DYN.CDRT.IN\",\"Death rate, crude (per 1,000 people)\",\"Crude death rate indicates the number of deaths occurring during the year, per 1,000 population estimated at midyear. Subtracting the crude death rate from the crude birth rate provides the rate of natural increase, which is equal to the rate of population change in the absence of migration.\",\"World Development Indicators\",\"(1) United Nations Population Division. World Population Prospects, (2) Census reports and other statistical publications from national statistical offices, (3) Eurostat: Demographic Statistics, (4) United Nations Statistical Division. Population and Vital Statistics Reprot (various years), (5) U.S. Census Bureau: International Database, and (6) Secretariat of the Pacific Community: Statistics and Demography Programme.\"\n\"SP.DYN.CEBN.Q1\",\"Mean number of children ever born to women aged 40-49: Q1 (lowest)\",\"Mean number of children ever born to women aged 40-49: Mean number of children ever born (CEB) to women aged 40-49 years.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.DYN.CEBN.Q2\",\"Mean number of children ever born to women aged 40-49: Q2\",\"Mean number of children ever born to women aged 40-49: Mean number of children ever born (CEB) to women aged 40-49 years.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.DYN.CEBN.Q3\",\"Mean number of children ever born to women aged 40-49: Q3\",\"Mean number of children ever born to women aged 40-49: Mean number of children ever born (CEB) to women aged 40-49 years.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.DYN.CEBN.Q4\",\"Mean number of children ever born to women aged 40-49: Q4\",\"Mean number of children ever born to women aged 40-49: Mean number of children ever born (CEB) to women aged 40-49 years.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.DYN.CEBN.Q5\",\"Mean number of children ever born to women aged 40-49: Q5 (highest)\",\"Mean number of children ever born to women aged 40-49: Mean number of children ever born (CEB) to women aged 40-49 years.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.DYN.CONM.Q1.ZS\",\"Current use of contraception (modern method) (% of married women): Q1 (lowest)\",\"Current use of contraception: Percentage of currently married women who are using or whose partners are using any method of contraception and modern method of contraception. Modern method includes female sterilization, male sterilization, pill, IUD, injections, implants, male condom, female condom, diaphragm, foam, and jelly. Traditional method includes periodic abstinence, withdrawal, long term abstinence, folk method, and others.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.DYN.CONM.Q2.ZS\",\"Current use of contraception (modern method) (% of married women): Q2\",\"Current use of contraception: Percentage of currently married women who are using or whose partners are using any method of contraception and modern method of contraception. Modern method includes female sterilization, male sterilization, pill, IUD, injections, implants, male condom, female condom, diaphragm, foam, and jelly. Traditional method includes periodic abstinence, withdrawal, long term abstinence, folk method, and others.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.DYN.CONM.Q3.ZS\",\"Current use of contraception (modern method) (% of married women): Q3\",\"Current use of contraception: Percentage of currently married women who are using or whose partners are using any method of contraception and modern method of contraception. Modern method includes female sterilization, male sterilization, pill, IUD, injections, implants, male condom, female condom, diaphragm, foam, and jelly. Traditional method includes periodic abstinence, withdrawal, long term abstinence, folk method, and others.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.DYN.CONM.Q4.ZS\",\"Current use of contraception (modern method) (% of married women): Q4\",\"Current use of contraception: Percentage of currently married women who are using or whose partners are using any method of contraception and modern method of contraception. Modern method includes female sterilization, male sterilization, pill, IUD, injections, implants, male condom, female condom, diaphragm, foam, and jelly. Traditional method includes periodic abstinence, withdrawal, long term abstinence, folk method, and others.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.DYN.CONM.Q5.ZS\",\"Current use of contraception (modern method) (% of married women): Q5 (highest)\",\"Current use of contraception: Percentage of currently married women who are using or whose partners are using any method of contraception and modern method of contraception. Modern method includes female sterilization, male sterilization, pill, IUD, injections, implants, male condom, female condom, diaphragm, foam, and jelly. Traditional method includes periodic abstinence, withdrawal, long term abstinence, folk method, and others.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.DYN.CONM.ZS\",\"Contraceptive prevalence, modern methods (% of women ages 15-49)\",\"Contraceptive prevalence rate is the percentage of women who are practicing, or whose sexual partners are practicing, at least one modern method of contraception. It is usually measured for women ages 15-49 who are married or in union. Modern methods of contraception include female and male sterilization, oral hormonal pills, the intra-uterine device (IUD), the male condom, injectables, the implant (including Norplant), vaginal barrier methods, the female condom and emergency contraception.\",\"World Development Indicators\",\"Household surveys, including Demographic and Health Surveys and Multiple Indicator Cluster Surveys. Largely compiled by United Nations Population Division.\"\n\"SP.DYN.CONU.CDM.ZS\",\"Contraceptive use among married women 15-49 years old, condom (%)\",\"Contraceptive prevalence, condom use is the percentage of women married or in-union aged 15 to 49, whose sexual partner is currently using a male condom for contraceptive purposes. \",\"Africa Development Indicators\",\"Household surveys, including Demographic and Health Surveys by Macro International and Multiple Indicator Cluster Surveys by UNICEF.\"\n\"SP.DYN.CONU.MDN.ZS\",\"Contraceptive use among married women 15-49 years old, modern method (%)\",\"Contraceptive prevalence, modern methods is the percentage of women married or in-union aged 15 to 49 who are currently using, or whose sexual partner is using, at least one modern method of contraception, regardless of the method used. Modern methods of contraception include female and male sterilization, oral hormonal pills, the intra-uterine device (IUD), the male condom, injectables, the implant (including Norplant), vaginal barrier methods, the female condom and emergency contraception. \",\"Africa Development Indicators\",\"Household surveys, including Demographic and Health Surveys by Macro International and Multiple Indicator Cluster Surveys by UNICEF.\"\n\"SP.DYN.CONU.Q1.ZS\",\"Current use of contraception (any method) (% of married women): Q1 (lowest)\",\"Current use of contraception: Percentage of currently married women who are using or whose partners are using any method of contraception and modern method of contraception. Modern method includes female sterilization, male sterilization, pill, IUD, injections, implants, male condom, female condom, diaphragm, foam, and jelly. Traditional method includes periodic abstinence, withdrawal, long term abstinence, folk method, and others.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.DYN.CONU.Q2.ZS\",\"Current use of contraception (any method) (% of married women): Q2\",\"Current use of contraception: Percentage of currently married women who are using or whose partners are using any method of contraception and modern method of contraception. Modern method includes female sterilization, male sterilization, pill, IUD, injections, implants, male condom, female condom, diaphragm, foam, and jelly. Traditional method includes periodic abstinence, withdrawal, long term abstinence, folk method, and others.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.DYN.CONU.Q3.ZS\",\"Current use of contraception (any method) (% of married women): Q3\",\"Current use of contraception: Percentage of currently married women who are using or whose partners are using any method of contraception and modern method of contraception. Modern method includes female sterilization, male sterilization, pill, IUD, injections, implants, male condom, female condom, diaphragm, foam, and jelly. Traditional method includes periodic abstinence, withdrawal, long term abstinence, folk method, and others.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.DYN.CONU.Q4.ZS\",\"Current use of contraception (any method) (% of married women): Q4\",\"Current use of contraception: Percentage of currently married women who are using or whose partners are using any method of contraception and modern method of contraception. Modern method includes female sterilization, male sterilization, pill, IUD, injections, implants, male condom, female condom, diaphragm, foam, and jelly. Traditional method includes periodic abstinence, withdrawal, long term abstinence, folk method, and others.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.DYN.CONU.Q5.ZS\",\"Current use of contraception (any method) (% of married women): Q5 (highest)\",\"Current use of contraception: Percentage of currently married women who are using or whose partners are using any method of contraception and modern method of contraception. Modern method includes female sterilization, male sterilization, pill, IUD, injections, implants, male condom, female condom, diaphragm, foam, and jelly. Traditional method includes periodic abstinence, withdrawal, long term abstinence, folk method, and others.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.DYN.CONU.ZS\",\"Contraceptive prevalence, any methods (% of women ages 15-49)\",\"Contraceptive prevalence rate is the percentage of women who are practicing, or whose sexual partners are practicing, any form of contraception. It is usually measured for women ages 15-49 who are married or in union.\",\"World Development Indicators\",\"UNICEF's State of the World's Children and Childinfo, United Nations Population Division's World Contraceptive Use, household surveys including Demographic and Health Surveys and Multiple Indicator Cluster Surveys.\"\n\"SP.DYN.IMRT.FE.IN\",\"Mortality rate, infant, female (per 1,000 live births)\",\"Infant mortality rate, female is the number of female infants dying before reaching one year of age, per 1,000 female live births in a given year.\",\"World Development Indicators\",\"Estimates developed by the UN Inter-agency Group for Child Mortality Estimation (UNICEF, WHO, World Bank, UN DESA Population Division) at www.childmortality.org.\"\n\"SP.DYN.IMRT.IN\",\"Mortality rate, infant (per 1,000 live births)\",\"Infant mortality rate is the number of infants dying before reaching one year of age, per 1,000 live births in a given year.\",\"World Development Indicators\",\"Estimates Developed by the UN Inter-agency Group for Child Mortality Estimation (UNICEF, WHO, World Bank, UN DESA Population Division) at www.childmortality.org. Projected data are from the United Nations Population Division's World Population Prospects; and may in some cases not be consistent with data before the current year.\"\n\"SP.DYN.IMRT.MA.IN\",\"Mortality rate, infant, male (per 1,000 live births)\",\"Infant mortality rate, male is the number of male infants dying before reaching one year of age, per 1,000 male live births in a given year.\",\"World Development Indicators\",\"Estimates developed by the UN Inter-agency Group for Child Mortality Estimation (UNICEF, WHO, World Bank, UN DESA Population Division) at www.childmortality.org.\"\n\"SP.DYN.IMRT.Q1\",\"Infant mortality rate (per 1,000 live births): Q1 (lowest)\",\"Infant mortality rate: Number of deaths to children under age twelve months per 1000 live births, based on experience during the reference period before the survey. The reference period is ten years preceding the survey for DHS surveys, and the reference period varies for MICS surveys (often three to five years preceding the survey).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.DYN.IMRT.Q2\",\"Infant mortality rate (per 1,000 live births): Q2\",\"Infant mortality rate: Number of deaths to children under age twelve months per 1000 live births, based on experience during the reference period before the survey. The reference period is ten years preceding the survey for DHS surveys, and the reference period varies for MICS surveys (often three to five years preceding the survey).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.DYN.IMRT.Q3\",\"Infant mortality rate (per 1,000 live births): Q3\",\"Infant mortality rate: Number of deaths to children under age twelve months per 1000 live births, based on experience during the reference period before the survey. The reference period is ten years preceding the survey for DHS surveys, and the reference period varies for MICS surveys (often three to five years preceding the survey).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.DYN.IMRT.Q4\",\"Infant mortality rate (per 1,000 live births): Q4\",\"Infant mortality rate: Number of deaths to children under age twelve months per 1000 live births, based on experience during the reference period before the survey. The reference period is ten years preceding the survey for DHS surveys, and the reference period varies for MICS surveys (often three to five years preceding the survey).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.DYN.IMRT.Q5\",\"Infant mortality rate (per 1,000 live births): Q5 (highest)\",\"Infant mortality rate: Number of deaths to children under age twelve months per 1000 live births, based on experience during the reference period before the survey. The reference period is ten years preceding the survey for DHS surveys, and the reference period varies for MICS surveys (often three to five years preceding the survey).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.DYN.LE00.FE.IN\",\"Life expectancy at birth, female (years)\",\"Life expectancy at birth indicates the number of years a newborn infant would live if prevailing patterns of mortality at the time of its birth were to stay the same throughout its life.\",\"World Development Indicators\",\"(1) United Nations Population Division. World Population Prospects, (2) Census reports and other statistical publications from national statistical offices, (3) Eurostat: Demographic Statistics, (4) United Nations Statistical Division. Population and Vital Statistics Reprot (various years), (5) U.S. Census Bureau: International Database, and (6) Secretariat of the Pacific Community: Statistics and Demography Programme.\"\n\"SP.DYN.LE00.IN\",\"Life expectancy at birth, total (years)\",\"Life expectancy at birth indicates the number of years a newborn infant would live if prevailing patterns of mortality at the time of its birth were to stay the same throughout its life.\",\"World Development Indicators\",\"Derived from male and female life expectancy at birth from sources such as: (1) United Nations Population Division. World Population Prospects, (2) Census reports and other statistical publications from national statistical offices, (3) Eurostat: Demographic Statistics, (4) United Nations Statistical Division. Population and Vital Statistics Reprot (various years), (5) U.S. Census Bureau: International Database, and (6) Secretariat of the Pacific Community: Statistics and Demography Programme.\"\n\"SP.DYN.LE00.MA.IN\",\"Life expectancy at birth, male (years)\",\"Life expectancy at birth indicates the number of years a newborn infant would live if prevailing patterns of mortality at the time of its birth were to stay the same throughout its life.\",\"World Development Indicators\",\"(1) United Nations Population Division. World Population Prospects, (2) Census reports and other statistical publications from national statistical offices, (3) Eurostat: Demographic Statistics, (4) United Nations Statistical Division. Population and Vital Statistics Reprot (various years), (5) U.S. Census Bureau: International Database, and (6) Secretariat of the Pacific Community: Statistics and Demography Programme.\"\n\"SP.DYN.LE60.FE.IN\",\"Life expectancy at age 60, female\",\"Life expectancy at age 60, female is the average number of years that a female at age 60 would live if prevailing patterns of mortality at the time of age 60 were to stay the same throughout her life.\",\"Gender Statistics\",\"United Nations Population Division World Population Prospects\"\n\"SP.DYN.LE60.MA.IN\",\"Life expectancy at age 60, male\",\"Life expectancy at age 60, male is the average number of years that a male at age 60 would live if prevailing patterns of mortality at the time of age 60 were to stay the same throughout his life.\",\"Gender Statistics\",\"United Nations Population Division World Population Prospects\"\n\"SP.DYN.TFRT.IN\",\"Fertility rate, total (births per woman)\",\"Total fertility rate represents the number of children that would be born to a woman if she were to live to the end of her childbearing years and bear children in accordance with age-specific fertility rates of the specified year.\",\"World Development Indicators\",\"(1) United Nations Population Division. World Population Prospects, (2) Census reports and other statistical publications from national statistical offices, (3) Eurostat: Demographic Statistics, (4) United Nations Statistical Division. Population and Vital Statistics Reprot (various years), (5) U.S. Census Bureau: International Database, and (6) Secretariat of the Pacific Community: Statistics and Demography Programme.\"\n\"SP.DYN.TFRT.Q1\",\" Total fertility rate (TFR) (births per woman): Q1 (lowest)\",\"Total fertility rate (TFR): The number of children that would be born to a woman if she were to live to the end of her childbearing years and bear children in accordance with age-specific fertility rates currently observed. The reference period is three years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.DYN.TFRT.Q2\",\" Total fertility rate (TFR) (births per woman): Q2\",\"Total fertility rate (TFR): The number of children that would be born to a woman if she were to live to the end of her childbearing years and bear children in accordance with age-specific fertility rates currently observed. The reference period is three years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.DYN.TFRT.Q3\",\" Total fertility rate (TFR) (births per woman): Q3\",\"Total fertility rate (TFR): The number of children that would be born to a woman if she were to live to the end of her childbearing years and bear children in accordance with age-specific fertility rates currently observed. The reference period is three years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.DYN.TFRT.Q4\",\" Total fertility rate (TFR) (births per woman): Q4\",\"Total fertility rate (TFR): The number of children that would be born to a woman if she were to live to the end of her childbearing years and bear children in accordance with age-specific fertility rates currently observed. The reference period is three years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.DYN.TFRT.Q5\",\" Total fertility rate (TFR) (births per woman): Q5 (highest)\",\"Total fertility rate (TFR): The number of children that would be born to a woman if she were to live to the end of her childbearing years and bear children in accordance with age-specific fertility rates currently observed. The reference period is three years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.DYN.TO65.FE.ZS\",\"Survival to age 65, female (% of cohort)\",\"Survival to age 65 refers to the percentage of a cohort of newborn infants that would survive to age 65, if subject to age specific mortality rates of the specified year.\",\"World Development Indicators\",\"United Nations Population Division. World Population Prospects. New York, United Nations, Department of Economic and Social Affairs (advanced Excel tables). Available at http://esa.un.org/wpp/unpp/panel_population.htm.\"\n\"SP.DYN.TO65.MA.ZS\",\"Survival to age 65, male (% of cohort)\",\"Survival to age 65 refers to the percentage of a cohort of newborn infants that would survive to age 65, if subject to age specific mortality rates of the specified year.\",\"World Development Indicators\",\"United Nations Population Division. World Population Prospects. New York, United Nations, Department of Economic and Social Affairs (advanced Excel tables). Available at http://esa.un.org/wpp/unpp/panel_population.htm.\"\n\"SP.DYN.WFRT\",\"Wanted fertility rate (births per woman)\",\"Wanted fertility rate is an estimate of what the total fertility rate would be if all unwanted births were avoided.\",\"World Development Indicators\",\"Demographic and Health Surveys.\"\n\"SP.DYN.WFRT.Q1\",\"Total wanted fertility rate (births per woman): Q1 (lowest)\",\"Total wanted fertility rate: Total wanted fertility rate is an estimate what the total fertility rate would be if all unwanted births were avoided. The reference period is three years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.DYN.WFRT.Q2\",\"Total wanted fertility rate (births per woman): Q2\",\"Total wanted fertility rate: Total wanted fertility rate is an estimate what the total fertility rate would be if all unwanted births were avoided. The reference period is three years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.DYN.WFRT.Q3\",\"Total wanted fertility rate (births per woman): Q3\",\"Total wanted fertility rate: Total wanted fertility rate is an estimate what the total fertility rate would be if all unwanted births were avoided. The reference period is three years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.DYN.WFRT.Q4\",\"Total wanted fertility rate (births per woman): Q4\",\"Total wanted fertility rate: Total wanted fertility rate is an estimate what the total fertility rate would be if all unwanted births were avoided. The reference period is three years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.DYN.WFRT.Q5\",\"Total wanted fertility rate (births per woman): Q5 (highest)\",\"Total wanted fertility rate: Total wanted fertility rate is an estimate what the total fertility rate would be if all unwanted births were avoided. The reference period is three years preceding the survey.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.HOU.FEMA.ZS\",\"Female headed households (% of households with a female head)\",\"Female headed households shows the percentage of households with a female head.\",\"World Development Indicators\",\"Demographic and Health Surveys.\"\n\"SP.M18.2024.FE.ZS\",\"Women who were first married by age 18 (% of women ages 20-24)\",\"Women who were first married by age 18 refers to the percentage of women ages 20-24 who were first married by age 18.\",\"World Development Indicators\",\"Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), AIDS Indicator Surveys(AIS), Reproductive Health Survey(RHS), and other household surveys.\"\n\"SP.MTR.1519.Q1.ZS\",\"Teenage pregnancy and motherhood (% of women ages 15-19 who have had children or are currently pregnant): Q1 (lowest)\",\"Teenage pregnancy and motherhood: Percentage of women aged 15-19 years who are mothers or pregnant with their first child.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.MTR.1519.Q2.ZS\",\"Teenage pregnancy and motherhood (% of women ages 15-19 who have had children or are currently pregnant): Q2\",\"Teenage pregnancy and motherhood: Percentage of women aged 15-19 years who are mothers or pregnant with their first child.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.MTR.1519.Q3.ZS\",\"Teenage pregnancy and motherhood (% of women ages 15-19 who have had children or are currently pregnant): Q3\",\"Teenage pregnancy and motherhood: Percentage of women aged 15-19 years who are mothers or pregnant with their first child.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.MTR.1519.Q4.ZS\",\"Teenage pregnancy and motherhood (% of women ages 15-19 who have had children or are currently pregnant): Q4\",\"Teenage pregnancy and motherhood: Percentage of women aged 15-19 years who are mothers or pregnant with their first child.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.MTR.1519.Q5.ZS\",\"Teenage pregnancy and motherhood (% of women ages 15-19 who have had children or are currently pregnant): Q5 (highest)\",\"Teenage pregnancy and motherhood: Percentage of women aged 15-19 years who are mothers or pregnant with their first child.\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.MTR.1519.ZS\",\"Teenage mothers (% of women ages 15-19 who have had children or are currently pregnant)\",\"Teenage mothers are the percentage of women ages 15-19 who already have children or are currently pregnant.\",\"World Development Indicators\",\"Demographic and Health Surveys.\"\n\"SP.POP.0004.FE\",\"Female population 00-04\",\"Female population between the ages 0 to 4.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates using the World Bank's total population and age distributions of the United Nations Population Division's World Population Prospects.\"\n\"SP.POP.0004.FE.5Y\",\"Population ages 0-4, female (% of female population)\",\"Female population between the ages 0 to 4 as a percentage of the total female population.\",\"Africa Development Indicators\",\"World Bank staff estimates based on United Nations Population Division, World Population Prospects.\"\n\"SP.POP.0004.MA\",\"Male population 00-04\",\"Male population between the ages 0 to 4.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates using the World Bank's total population and age distributions of the United Nations Population Division's World Population Prospects.\"\n\"SP.POP.0004.MA.5Y\",\"Population ages 0-4, male (% of male population)\",\"Male population between the ages 0 to 4 as a percentage of the total male population.\",\"Africa Development Indicators\",\"World Bank staff estimates based on United Nations Population Division, World Population Prospects.\"\n\"SP.POP.0014.FE.IN\",\"Population ages 0-14, female\",\"Female population between the ages 0 to 14. Population is based on the de facto definition of population, which counts all residents regardless of legal status or citizenship.\",\"Africa Development Indicators\",\"World Bank staff estimates using the World Bank's population and age distributions of the United Nations Population Division's World Population Prospects. The World Bank's population estimates are from various sources including the United Nations Population Division's World Population Prospects; census reports and statistical publications from national statistical offices; Eurostat's Demographic Statistics; United Nations Statistical Division, Population and Vital Statistics Report (various years); U.S. Census Bureau: International Database; and Secretariat of the Pacific Community, Statistics and Demography Programme.\"\n\"SP.POP.0014.FE.ZS\",\"Population ages 0-14, female (% of total)\",\"Female population between the ages 0 to 14 as a percentage of the total female population. Population is based on the de facto definition of population.\",\"Africa Development Indicators\",\"The United Nations Population Division's World Population Prospects.\"\n\"SP.POP.0014.MA.IN\",\"Population, ages 0-14, male\",\"Male population between the ages 0 to 14. Population is based on the de facto definition of population, which counts all residents regardless of legal status or citizenship--except for refugees not permanently settled in the country of asylum, who are generally considered part of the population of the country of origin.\",\"Africa Development Indicators\",\"World Bank staff estimates using the World Bank's population and the United Nations Population Division's World Population Prospects. The World Bank's population estimates are from various sources including the United Nations Population Division's World P\"\n\"SP.POP.0014.MA.ZS\",\"Population ages 0-14, male (% of total)\",\"Male population between the ages 0 to 14 as a percentage of the total male population. Population is based on the de facto definition of population.\",\"Africa Development Indicators\",\"The United Nations Population Division's World Population Prospects.\"\n\"SP.POP.0014.TO\",\"Population, ages 0-14, total\",\"Total population between the ages 0 to 14. Population is based on the de facto definition of population, which counts all residents regardless of legal status or citizenship--except for refugees not permanently settled in the country of asylum, who are generally considered part of the population of the country of origin.\",\"Africa Development Indicators\",\"World Bank staff estimates using the World Bank's population and the United Nations Population Division's World Population Prospects. The World Bank's population estimates are from various sources including the United Nations Population Division's World P\"\n\"SP.POP.0014.TO.ZS\",\"Population ages 0-14 (% of total)\",\"Population between the ages 0 to 14 as a percentage of the total population. Population is based on the de facto definition of population.\",\"World Development Indicators\",\"World Bank staff estimates based on age distributions of United Nations Population Division's World Population Prospects.\"\n\"SP.POP.0024.TO.ZS\",\"Population 0-24 (% of total population)\",\"Population ages 0 to 24 is the percentage of the total population that is in the age group 0 to 24. \",\"Africa Development Indicators\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.0305.FE.UN\",\"Population, ages 3-5, female\",\"Population, ages 3-5, female is the total number of females age 3-5.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0305.MA.UN\",\"Population, ages 3-5, male\",\"Population, ages 3-5, male is the total number of males age 3-5.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0305.TO.UN\",\"Population, ages 3-5, total\",\"Population, ages 3-5, total is the total population age 3-5.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0406.FE.UN\",\"Population, ages 4-6, female\",\"Population, ages 4-6, female is the total number of females age 4-6.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0406.MA.UN\",\"Population, ages 4-6, male\",\"Population, ages 4-6, male is the total number of males age 4-6.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0406.TO.UN\",\"Population, ages 4-6, total\",\"Population, ages 4-6, total is the total population age 4-6.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0509.FE\",\"Female population 05-09\",\"Female population between the ages 5 to 9.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates using the World Bank's total population and age distributions of the United Nations Population Division's World Population Prospects.\"\n\"SP.POP.0509.FE.5Y\",\"Population ages 5-9, female (% of female population)\",\"Female population between the ages 5 to 9 as a percentage of the total female population.\",\"Africa Development Indicators\",\"World Bank staff estimates based on United Nations Population Division, World Population Prospects.\"\n\"SP.POP.0509.FE.UN\",\"Population, ages 5-9, female\",\"Population, ages 5-9, female is the total number of females age 5-9.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0509.MA\",\"Male population 05-09\",\"Male population between the ages 5 to 9.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates using the World Bank's total population and age distributions of the United Nations Population Division's World Population Prospects.\"\n\"SP.POP.0509.MA.5Y\",\"Population ages 5-9, male (% of male population)\",\"Male population between the ages 5 to 9 as a percentage of the total male population.\",\"Africa Development Indicators\",\"World Bank staff estimates based on United Nations Population Division, World Population Prospects.\"\n\"SP.POP.0509.MA.UN\",\"Population, ages 5-9, male\",\"Population, ages 5-9, male is the total number of males age 5-9.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0509.TO.UN\",\"Population, ages 5-9, total\",\"Population, ages 5-9, total is the total population age 5-9.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0510.FE.UN\",\"Population, ages 5-10, female\",\"Population, ages 5-10, female is the total number of females age 5-10.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0510.MA.UN\",\"Population, ages 5-10, male\",\"Population, ages 5-10, male is the total number of males age 5-10.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0510.TO.UN\",\"Population, ages 5-10, total\",\"Population, ages 5-10, total is the total population age 5-10.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0511.FE.UN\",\"Population, ages 5-11, female\",\"Population, ages 5-11, female is the total number of females age 5-11.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0511.MA.UN\",\"Population, ages 5-11, male\",\"Population, ages 5-11, male is the total number of males age 5-11.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0511.TO.UN\",\"Population, ages 5-11, total\",\"Population, ages 5-11, total is the total population age 5-11.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0609.FE.UN\",\"Population, ages 6-9, female\",\"Population, ages 6-9, male is the total number of males age 6-9.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0609.MA.UN\",\"Population, ages 6-9, male\",\"Population, ages 6-9, total is the total population age 6-9.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0609.TO.UN\",\"Population, ages 6-9, total\",\"Population, ages 6-9, female is the total number of females age 6-9.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0610.FE.UN\",\"Population, ages 6-10, female\",\"Population, ages 6-10, female is the total number of females age 6-10.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0610.MA.UN\",\"Population, ages 6-10, male\",\"Population, ages 6-10, male is the total number of males age 6-10.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0610.TO.UN\",\"Population, ages 6-10, total\",\"Population, ages 6-10, total is the total population age 6-10.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0611.FE.UN\",\"Population, ages 6-11, female\",\"Population, ages 6-11, female is the total number of females age 6-11.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0611.MA.UN\",\"Population, ages 6-11, male\",\"Population, ages 6-11, male is the total number of males age 6-11.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0611.TO.UN\",\"Population, ages 6-11, total\",\"Population, ages 6-11, total is the total population age 6-11.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0612.FE.UN\",\"Population, ages 6-12, female\",\"Population, ages 6-12, female is the total number of females age 6-12.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0612.MA.UN\",\"Population, ages 6-12, male\",\"Population, ages 6-12, male is the total number of males age 6-12.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0612.TO.UN\",\"Population, ages 6-12, total\",\"Population, ages 6-12, total is the total population age 6-12.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0709.FE.UN\",\"Population, ages 7-9, female\",\"Population, ages 7-9, female is the total number of females age 7-9.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0709.MA.UN\",\"Population, ages 7-9, male\",\"Population, ages 7-9, male is the total number of males age 7-9.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0709.TO.UN\",\"Population, ages 7-9, total\",\"Population, ages 7-9, total is the total population age 7-9.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0710.FE.UN\",\"Population, ages 7-10, female\",\"Population, ages 7-10, female is the total number of females age 7-10.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0710.MA.UN\",\"Population, ages 7-10, male\",\"Population, ages 7-10, male is the total number of males age 7-10.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0710.TO.UN\",\"Population, ages 7-10, total\",\"Population, ages 7-10, total is the total population age 7-10.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0711.FE.UN\",\"Population, ages 7-11, female\",\"Population, ages 7-11, female is the total number of females age 7-11.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0711.MA.UN\",\"Population, ages 7-11, male\",\"Population, ages 7-11, male is the total number of males age 7-11.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0711.TO.UN\",\"Population, ages 7-11, total\",\"Population, ages 7-11, total is the total population age 7-11.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0712.FE.UN\",\"Population, ages 7-12, female\",\"Population, ages 7-12, female is the total number of females age 7-12.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0712.MA.UN\",\"Population, ages 7-12, male\",\"Population, ages 7-12, male is the total number of males age 7-12.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0712.TO.UN\",\"Population, ages 7-12, total\",\"Population, ages 7-12, total is the total population age 7-12.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0713.FE.UN\",\"Population, ages 7-13, female\",\"Population, ages 7-13, female is the total number of females age 7-13.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0713.MA.UN\",\"Population, ages 7-13, male\",\"Population, ages 7-13, male is the total number of males age 7-13.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.0713.TO.UN\",\"Population, ages 7-13, total\",\"Population, ages 7-13, total is the total population age 7-13.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1014.FE\",\"Female population 10-14\",\"Female population between the ages 10 to 14.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates using the World Bank's total population and age distributions of the United Nations Population Division's World Population Prospects.\"\n\"SP.POP.1014.FE.5Y\",\"Population ages 10-14, female (% of female population)\",\"Female population between the ages 10 to 14 as a percentage of the total female population.\",\"Africa Development Indicators\",\"World Bank staff estimates based on United Nations Population Division, World Population Prospects.\"\n\"SP.POP.1014.FE.UN\",\"Population, ages 10-14, female\",\"Population, ages 10-14, female is the total number of females age 10-14.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1014.MA\",\"Male population 10-14\",\"Male population between the ages 10 to 14.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates using the World Bank's total population and age distributions of the United Nations Population Division's World Population Prospects.\"\n\"SP.POP.1014.MA.5Y\",\"Population ages 10-14, male (% of male population)\",\"Male population between the ages 10 to 14 as a percentage of the total male population.\",\"Africa Development Indicators\",\"World Bank staff estimates based on United Nations Population Division, World Population Prospects.\"\n\"SP.POP.1014.MA.UN\",\"Population, ages 10-14, male\",\"Population, ages 10-14, male is the total number of males age 10-14.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1014.TO.UN\",\"Population, ages 10-14, total\",\"Population, ages 10-14, total is the total population age 10-14.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1015.FE.UN\",\"Population, ages 10-15, female\",\"Population, ages 10-15, female is the total number of females age 10-15.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1015.MA.UN\",\"Population, ages 10-15, male\",\"Population, ages 10-15, male is the total number of males age 10-15.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1015.TO.UN\",\"Population, ages 10-15, total\",\"Population, ages 10-15, total is the total population age 10-15.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1016.FE.UN\",\"Population, ages 10-16, female\",\"Population, ages 10-16, female is the total number of females age 10-16.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1016.MA.UN\",\"Population, ages 10-16, male\",\"Population, ages 10-16, male is the total number of males age 10-16.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1016.TO.UN\",\"Population, ages 10-16, total\",\"Population, ages 10-16, total is the total population age 10-16.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1017.FE.UN\",\"Population, ages 10-17, female\",\"Population, ages 10-17, female is the total number of females age 10-17.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1017.MA.UN\",\"Population, ages 10-17, male\",\"Population, ages 10-17, male is the total number of males age 10-17.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1017.TO.UN\",\"Population, ages 10-17, total\",\"Population, ages 10-17, total is the total population age 10-17.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1018.FE.UN\",\"Population, ages 10-18, female\",\"Population, ages 10-18, female is the total number of females age 10-18.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1018.MA.UN\",\"Population, ages 10-18, male\",\"Population, ages 10-18, male is the total number of males age 10-18.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1018.TO.UN\",\"Population, ages 10-18, total\",\"Population, ages 10-18, total is the total population age 10-18.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1115.FE.UN\",\"Population, ages 11-15, female\",\"Population, ages 11-15, female is the total number of females age 11-15.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1115.MA.UN\",\"Population, ages 11-15, male\",\"Population, ages 11-15, male is the total number of males age 11-15.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1115.TO.UN\",\"Population, ages 11-15, total\",\"Population, ages 11-15, total is the total population age 11-15.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1116.FE.UN\",\"Population, ages 11-16, female\",\"Population, ages 11-16, female is the total number of females age 11-16.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1116.MA.UN\",\"Population, ages 11-16, male\",\"Population, ages 11-16, male is the total number of males age 11-16.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1116.TO.UN\",\"Population, ages 11-16, total\",\"Population, ages 11-16, total is the total population age 11-16.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1117.FE.UN\",\"Population, ages 11-17, female\",\"Population, ages 11-17, female is the total number of females age 11-17.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1117.MA.UN\",\"Population, ages 11-17, male\",\"Population, ages 11-17, male is the total number of males age 11-17.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1117.TO.UN\",\"Population, ages 11-17, total\",\"Population, ages 11-17, total is the total population age 11-17.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1118.FE.UN\",\"Population, ages 11-18, female\",\"Population, ages 11-18, female is the total number of females age 11-18.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1118.MA.UN\",\"Population, ages 11-18, male\",\"Population, ages 11-18, male is the total number of males age 11-18.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1118.TO.UN\",\"Population, ages 11-18, total\",\"Population, ages 11-18, total is the total population age 11-18.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1215.FE.UN\",\"Population, ages 12-15, female\",\"Population, ages 12-15, female is the total number of females age 12-15.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1215.MA.UN\",\"Population, ages 12-15, male\",\"Population, ages 12-15, male is the total number of males age 12-15.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1215.TO.UN\",\"Population, ages 12-15, total\",\"Population, ages 12-15, total is the total population age 12-15.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1216.FE.UN\",\"Population, ages 12-16, female\",\"Population, ages 12-16, female is the total number of females age 12-16.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1216.MA.UN\",\"Population, ages 12-16, male\",\"Population, ages 12-16, male is the total number of males age 12-16.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1216.TO.UN\",\"Population, ages 12-16, total\",\"Population, ages 12-16, total is the total population age 12-16.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1217.FE.UN\",\"Population, ages 12-17, female\",\"Population, ages 12-17, female is the total number of females age 12-17.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1217.MA.UN\",\"Population, ages 12-17, male\",\"Population, ages 12-17, male is the total number of males age 12-17.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1217.TO.UN\",\"Population, ages 12-17, total\",\"Population, ages 12-17, total is the total population age 12-17.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1218.FE.UN\",\"Population, ages 12-18, female\",\"Population, ages 12-18, female is the total number of females age 12-18.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1218.MA.UN\",\"Population, ages 12-18, male\",\"Population, ages 12-18, male is the total number of males age 12-18.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1218.TO.UN\",\"Population, ages 12-18, total\",\"Population, ages 12-18, total is the total population age 12-18.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1316.FE.UN\",\"Population, ages 13-16, female\",\"Population, ages 13-16, female is the total number of females age 13-16.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1316.MA.UN\",\"Population, ages 13-16, male\",\"Population, ages 13-16, male is the total number of males age 13-16.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1316.TO.UN\",\"Population, ages 13-16, total\",\"Population, ages 13-16, total is the total population age 13-16.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1317.FE.UN\",\"Population, ages 13-17, female\",\"Population, ages 13-17, female is the total number of females age 13-17.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1317.MA.UN\",\"Population, ages 13-17, male\",\"Population, ages 13-17, male is the total number of males age 13-17.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1317.TO.UN\",\"Population, ages 13-17, total\",\"Population, ages 13-17, total is the total population age 13-17.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1318.FE.UN\",\"Population, ages 13-18, female\",\"Population, ages 13-18, female is the total number of females age 13-18.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1318.MA.UN\",\"Population, ages 13-18, male\",\"Population, ages 13-18, male is the total number of males age 13-18.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1318.TO.UN\",\"Population, ages 13-18, total\",\"Population, ages 13-18, total is the total population age 13-18.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1319.FE.UN\",\"Population, ages 13-19, female\",\"Population, ages 13-19, female is the total number of females age 13-19.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1319.MA.UN\",\"Population, ages 13-19, male\",\"Population, ages 13-19, male is the total number of males age 13-19.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1319.TO.UN\",\"Population, ages 13-19, total\",\"Population, ages 13-19, total is the total population age 13-19.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1418.FE.UN\",\"Population, ages 14-18, female\",\"Population, ages 14-18, female is the total number of females age 14-18.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1418.MA.UN\",\"Population, ages 14-18, male\",\"Population, ages 14-18, male is the total number of males age 14-18.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1418.TO.UN\",\"Population, ages 14-18, total\",\"Population, ages 14-18, total is the total population age 14-18.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1419.FE.UN\",\"Population, ages 14-19, female\",\"Population, ages 14-19, female is the total number of females age 14-19.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1419.MA.UN\",\"Population, ages 14-19, male\",\"Population, ages 14-19, male is the total number of males age 14-19.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1419.TO.UN\",\"Population, ages 14-19, total\",\"Population, ages 14-19, total is the total population age 14-19.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1519.FE\",\"Female population 15-19\",\"Female population between the ages 15-19.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates using the World Bank's total population and age distributions of the United Nations Population Division's World Population Prospects.\"\n\"SP.POP.1519.FE.5Y\",\"Population ages 15-19, female (% of female population)\",\"Female population between the ages 15 to 19 as a percentage of the total female population.\",\"Africa Development Indicators\",\"World Bank staff estimates based on United Nations Population Division, World Population Prospects.\"\n\"SP.POP.1519.MA\",\"Male population 15-19\",\"Male population between the ages 15-19.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates using the World Bank's total population and age distributions of the United Nations Population Division's World Population Prospects.\"\n\"SP.POP.1519.MA.5Y\",\"Population ages 15-19, male (% of male population)\",\"Male population between the ages 15 to 19 as a percentage of the total male population.\",\"Africa Development Indicators\",\"World Bank staff estimates based on United Nations Population Division, World Population Prospects.\"\n\"SP.POP.1524.FE.UN\",\"Population, ages 15-24, female\",\"Population, ages 15-24, female is the total number of females age 15-24.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1524.MA.UN\",\"Population, ages 15-24, male\",\"Population, ages 15-24, male is the total number of males age 15-24.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1524.TO.UN\",\"Population, ages 15-24, total\",\"Population, ages 15-24, total is the total population age 15-24.\",\"Education Statistics\",\"UNESCO Institute for Statistics (Derived)\"\n\"SP.POP.1564.FE.IN\",\"Population ages 15-64, female\",\"Female population between the ages 15 to 64. Population is based on the de facto definition of population, which counts all residents regardless of legal status or citizenship.\",\"Africa Development Indicators\",\"World Bank staff estimates using the World Bank's population and age distributions of the United Nations Population Division's World Population Prospects. The World Bank's population estimates are from various sources including the United Nations Population Division's World Population Prospects; census reports and statistical publications from national statistical offices; Eurostat's Demographic Statistics; United Nations Statistical Division, Population and Vital Statistics Report (various years); U.S. Census Bureau: International Database; and Secretariat of the Pacific Community, Statistics and Demography Programme.\"\n\"SP.POP.1564.FE.ZS\",\"Population ages 15-64, female (% of total)\",\"Female population between the ages 15 to 64 is the number of females who could potentially be economically active. Population is based on the de facto definition of population, which counts all residents regardless of legal status or citizenship--except for refugees not permanently settled in the country of asylum, who are generally considered part of the population of the country of origin.\",\"Africa Development Indicators\",\"The United Nations Population Division's World Population Prospects.\"\n\"SP.POP.1564.MA.IN\",\"Population ages 15-64, male\",\"Male population between the ages 15 to 64. Population is based on the de facto definition of population, which counts all residents regardless of legal status or citizenship.\",\"Africa Development Indicators\",\"World Bank staff estimates using the World Bank's population and age distributions of the United Nations Population Division's World Population Prospects. The World Bank's population estimates are from various sources including the United Nations Population Division's World Population Prospects; census reports and statistical publications from national statistical offices; Eurostat's Demographic Statistics; United Nations Statistical Division, Population and Vital Statistics Report (various years); U.S. Census Bureau: International Database; and Secretariat of the Pacific Community, Statistics and Demography Programme.\"\n\"SP.POP.1564.MA.ZS\",\"Population ages 15-64, male (% of total)\",\"Male population between the ages 15 to 64 is the number of males who could potentially be economically active. Population is based on the de facto definition of population, which counts all residents regardless of legal status or citizenship--except for refugees not permanently settled in the country of asylum, who are generally considered part of the population of the country of origin.\",\"Africa Development Indicators\",\"The United Nations Population Division's World Population Prospects.\"\n\"SP.POP.1564.TO\",\"Population ages 15-64, total\",\"Total population between the ages 15 to 64. Population is based on the de facto definition of population, which counts all residents regardless of legal status or citizenship.\",\"Africa Development Indicators\",\"World Bank staff estimates using the World Bank's population and age distributions of the United Nations Population Division's World Population Prospects. The World Bank's population estimates are from various sources including the United Nations Population Division's World Population Prospects; census reports and statistical publications from national statistical offices; Eurostat's Demographic Statistics; United Nations Statistical Division, Population and Vital Statistics Report (various years); U.S. Census Bureau: International Database; and Secretariat of the Pacific Community, Statistics and Demography Programme.\"\n\"SP.POP.1564.TO.ZS\",\"Population ages 15-64 (% of total)\",\"Total population between the ages 15 to 64 as a percentage of the total population. Population is based on the de facto definition of population, which counts all residents regardless of legal status or citizenship.\",\"World Development Indicators\",\"World Bank staff estimates based on age distributions of United Nations Population Division's World Population Prospects.\"\n\"SP.POP.2024.FE\",\"Female population 20-24\",\"Female population between the ages 20-24.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates using the World Bank's total population and age distributions of the United Nations Population Division's World Population Prospects.\"\n\"SP.POP.2024.FE.5Y\",\"Population ages 20-24, female (% of female population)\",\"Female population between the ages 20 to 24 as a percentage of the total female population.\",\"Africa Development Indicators\",\"World Bank staff estimates based on United Nations Population Division, World Population Prospects.\"\n\"SP.POP.2024.MA\",\"Male population 20-24\",\"Male population between the ages 20-24.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates using the World Bank's total population and age distributions of the United Nations Population Division's World Population Prospects.\"\n\"SP.POP.2024.MA.5Y\",\"Population ages 20-24, male (% of male population)\",\"Male population between the ages 20 to 24 as a percentage of the total male population.\",\"Africa Development Indicators\",\"World Bank staff estimates based on United Nations Population Division, World Population Prospects.\"\n\"SP.POP.2529.FE\",\"Female population 25-29\",\"Female population between the ages 25-29.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates using the World Bank's total population and age distributions of the United Nations Population Division's World Population Prospects.\"\n\"SP.POP.2529.FE.5Y\",\"Population ages 25-29, female (% of female population)\",\"Female population between the ages 25 to 29 as a percentage of the total female population.\",\"Africa Development Indicators\",\"World Bank staff estimates based on United Nations Population Division, World Population Prospects.\"\n\"SP.POP.2529.MA\",\"Male population 25-29\",\"Male population between the ages 25-29.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates using the World Bank's total population and age distributions of the United Nations Population Division's World Population Prospects.\"\n\"SP.POP.2529.MA.5Y\",\"Population ages 25-29, male (% of male population)\",\"Male population between the ages 25 to 29 as a percentage of the total male population.\",\"Africa Development Indicators\",\"World Bank staff estimates based on United Nations Population Division, World Population Prospects.\"\n\"SP.POP.2DAY.TO\",\"Number of people living on less than $2.00 a day (PPP)\",\"Number of people living on less than $2.00 a day (PPP) is the population living on less than $2.00 a day at 2005 international prices.\",\"Millennium Development Goals\",\"World Bank, Development Research Group. Data are based on primary household survey data obtained from government statistical agencies and World Bank country departments. Data for high-income economies are from the Luxembourg Income Study database. For more information and methodology, please see PovcalNet (http://iresearch.worldbank.org/PovcalNet/index.htm).\"\n\"SP.POP.3034.FE\",\"Female population 30-34\",\"Female population between the ages 30-34.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates using the World Bank's total population and age distributions of the United Nations Population Division's World Population Prospects.\"\n\"SP.POP.3034.FE.5Y\",\"Population ages 30-34, female (% of female population)\",\"Female population between the ages 30 to 34 as a percentage of the total female population.\",\"Africa Development Indicators\",\"World Bank staff estimates based on United Nations Population Division, World Population Prospects.\"\n\"SP.POP.3034.MA\",\"Male population 30-34\",\"Male population between the ages 30-34.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates using the World Bank's total population and age distributions of the United Nations Population Division's World Population Prospects.\"\n\"SP.POP.3034.MA.5Y\",\"Population ages 30-34, male (% of male population)\",\"Male population between the ages 30 to 34 as a percentage of the total male population.\",\"Africa Development Indicators\",\"World Bank staff estimates based on United Nations Population Division, World Population Prospects.\"\n\"SP.POP.3539.FE\",\"Female population 35-39\",\"Female population between the ages 35-39.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates using the World Bank's total population and age distributions of the United Nations Population Division's World Population Prospects.\"\n\"SP.POP.3539.FE.5Y\",\"Population ages 35-39, female (% of female population)\",\"Female population between the ages 35 to 39 as a percentage of the total female population.\",\"Africa Development Indicators\",\"World Bank staff estimates based on United Nations Population Division, World Population Prospects.\"\n\"SP.POP.3539.MA\",\"Male population 35-39\",\"Male population between the ages 35-39.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates using the World Bank's total population and age distributions of the United Nations Population Division's World Population Prospects.\"\n\"SP.POP.3539.MA.5Y\",\"Population ages 35-39, male (% of male population)\",\"Male population between the ages 35 to 39 as a percentage of the total male population.\",\"Africa Development Indicators\",\"World Bank staff estimates based on United Nations Population Division, World Population Prospects.\"\n\"SP.POP.4044.FE\",\"Female population 40-44\",\"Female population between the ages 40-44.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates using the World Bank's total population and age distributions of the United Nations Population Division's World Population Prospects.\"\n\"SP.POP.4044.FE.5Y\",\"Population ages 40-44, female (% of female population)\",\"Female population between the ages 40 to 44 as a percentage of the total female population.\",\"Africa Development Indicators\",\"World Bank staff estimates based on United Nations Population Division, World Population Prospects.\"\n\"SP.POP.4044.MA\",\"Male population 40-44\",\"Male population between the ages 40-44.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates using the World Bank's total population and age distributions of the United Nations Population Division's World Population Prospects.\"\n\"SP.POP.4044.MA.5Y\",\"Population ages 40-44, male (% of male population)\",\"Male population between the ages 40 to 44 as a percentage of the total male population.\",\"Africa Development Indicators\",\"World Bank staff estimates based on United Nations Population Division, World Population Prospects.\"\n\"SP.POP.4549.FE\",\"Female population 45-49\",\"Female population between the ages 45-49.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates using the World Bank's total population and age distributions of the United Nations Population Division's World Population Prospects.\"\n\"SP.POP.4549.FE.5Y\",\"Population ages 45-49, female (% of female population)\",\"Female population between the ages 45 to 49 as a percentage of the total female population.\",\"Africa Development Indicators\",\"World Bank staff estimates based on United Nations Population Division, World Population Prospects.\"\n\"SP.POP.4549.MA\",\"Male population 45-49\",\"Male population between the ages 45-49.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates using the World Bank's total population and age distributions of the United Nations Population Division's World Population Prospects.\"\n\"SP.POP.4549.MA.5Y\",\"Population ages 45-49, male (% of male population)\",\"Male population between the ages 45 to 49 as a percentage of the total male population.\",\"Africa Development Indicators\",\"World Bank staff estimates based on United Nations Population Division, World Population Prospects.\"\n\"SP.POP.5054.FE\",\"Female population 50-54\",\"Female population between the ages 50-54.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates using the World Bank's total population and age distributions of the United Nations Population Division's World Population Prospects.\"\n\"SP.POP.5054.FE.5Y\",\"Population ages 50-54, female (% of female population)\",\"Female population between the ages 50 to 54 as a percentage of the total female population.\",\"Africa Development Indicators\",\"World Bank staff estimates based on United Nations Population Division, World Population Prospects.\"\n\"SP.POP.5054.MA\",\"Male population 50-54\",\"Male population between the ages 50-54.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates using the World Bank's total population and age distributions of the United Nations Population Division's World Population Prospects.\"\n\"SP.POP.5054.MA.5Y\",\"Population ages 50-54, male (% of male population)\",\"Male population between the ages 50 to 54 as a percentage of the total male population.\",\"Africa Development Indicators\",\"World Bank staff estimates based on United Nations Population Division, World Population Prospects.\"\n\"SP.POP.5559.FE\",\"Female population 55-59\",\"Female population between the ages 55-59.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates using the World Bank's total population and age distributions of the United Nations Population Division's World Population Prospects.\"\n\"SP.POP.5559.FE.5Y\",\"Population ages 55-59, female (% of female population)\",\"Female population between the ages 55 to 59 as a percentage of the total female population.\",\"Africa Development Indicators\",\"World Bank staff estimates based on United Nations Population Division, World Population Prospects.\"\n\"SP.POP.5559.MA\",\"Male population 55-59\",\"Male population between the ages 55-59.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates using the World Bank's total population and age distributions of the United Nations Population Division's World Population Prospects.\"\n\"SP.POP.5559.MA.5Y\",\"Population ages 55-59, male (% of male population)\",\"Male population between the ages 55 to 59 as a percentage of the total male population.\",\"Africa Development Indicators\",\"World Bank staff estimates based on United Nations Population Division, World Population Prospects.\"\n\"SP.POP.6064.FE\",\"Female population 60-64\",\"Female population between the ages 60-64.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates using the World Bank's total population and age distributions of the United Nations Population Division's World Population Prospects.\"\n\"SP.POP.6064.FE.5Y\",\"Population ages 50-64, female (% of female population)\",\"Female population between the ages 60 to 64 as a percentage of the total female population.\",\"Africa Development Indicators\",\"World Bank staff estimates based on United Nations Population Division, World Population Prospects.\"\n\"SP.POP.6064.MA\",\"Male population 60-64\",\"Male population between the ages 60-64.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates using the World Bank's total population and age distributions of the United Nations Population Division's World Population Prospects.\"\n\"SP.POP.6064.MA.5Y\",\"Population ages 50-64, male (% of male population)\",\"Male population between the ages 60 to 64 as a percentage of the total male population.\",\"Africa Development Indicators\",\"World Bank staff estimates based on United Nations Population Division, World Population Prospects.\"\n\"SP.POP.6569.FE\",\"Female population 65-69\",\"Female population between the ages 65-69.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates using the World Bank's total population and age distributions of the United Nations Population Division's World Population Prospects.\"\n\"SP.POP.6569.FE.5Y\",\"Population ages 65-69, female (% of female population)\",\"Female population between the ages 65 to 69 as a percentage of the total female population.\",\"Africa Development Indicators\",\"World Bank staff estimates based on United Nations Population Division, World Population Prospects.\"\n\"SP.POP.6569.MA\",\"Male population 65-69\",\"Male population between the ages 65-69.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates using the World Bank's total population and age distributions of the United Nations Population Division's World Population Prospects.\"\n\"SP.POP.6569.MA.5Y\",\"Population ages 65-69, male (% of male population)\",\"Male population between the ages 65 to 69 as a percentage of the total male population.\",\"Africa Development Indicators\",\"World Bank staff estimates based on United Nations Population Division, World Population Prospects.\"\n\"SP.POP.65UP.FE.IN\",\"Population ages 65 and above, female\",\"Female population 65 years of age or older. Population is based on the de facto definition of population, which counts all residents regardless of legal status or citizenship.\",\"Africa Development Indicators\",\"World Bank staff estimates using the World Bank's population and age distributions of the United Nations Population Division's World Population Prospects. The World Bank's population estimates are from various sources including the United Nations Population Division's World Population Prospects; census reports and statistical publications from national statistical offices; Eurostat's Demographic Statistics; United Nations Statistical Division, Population and Vital Statistics Report (various years); U.S. Census Bureau: International Database; and Secretariat of the Pacific Community, Statistics and Demography Programme.\"\n\"SP.POP.65UP.FE.ZS\",\"Population ages 65 and above, female (% of total)\",\"Female population 65 years of age or older as a percentage of the total female population. Population is based on the de facto definition of population, which counts all residents regardless of legal status or citizenship--except for refugees not permanently settled in the country of asylum, who are generally considered part of the population of the country of origin.\",\"Africa Development Indicators\",\"The United Nations Population Division's World Population Prospects.\"\n\"SP.POP.65UP.MA.IN\",\"Population ages 65 and above, male\",\"Male population 65 years of age or older. Population is based on the de facto definition of population, which counts all residents regardless of legal status or citizenship--except for refugees not permanently settled in the country of asylum, who are generally considered part of the population of the country of origin.\",\"Africa Development Indicators\",\"World Bank staff estimates using the World Bank's population and the United Nations Population Division's World Population Prospects. The World Bank's population estimates are from various sources including the United Nations Population Division's World Population Prospects; census reports and statistical publications from national statistical offices; household surveys conducted by national agencies, Macro International, and the U.S. Conters for Disease Control and Prevention; Eurostat's Demographic Statistics; Secretariat of the Pacific Community, Statistics and Demography Programme; and U.S. Bureau of the Census, International Data Base.\"\n\"SP.POP.65UP.MA.ZS\",\"Population ages 65 and above, male (% of total)\",\"Male population 65 years of age or older as a percentage of the total male population. Population is based on the de facto definition of population, which counts all residents regardless of legal status or citizenship--except for refugees not permanently settled in the country of asylum, who are generally considered part of the population of the country of origin.\",\"Africa Development Indicators\",\"The United Nations Population Division's World Population Prospects.\"\n\"SP.POP.65UP.TO\",\"Total Population for Age 65 and above (only 2005 and 2010) (in number of people)\",\"Total population 65 years of age or older. Population is based on the de facto definition of population, which counts all residents regardless of legal status or citizenship--except for refugees not permanently settled in the country of asylum, who are generally considered part of the population of the country of origin.\",\"Africa Development Indicators\",\"World Bank staff estimates using the World Bank's population and the United Nations Population Division's World Population Prospects. The World Bank's population estimates are from various sources including the United Nations Population Division's World Population Prospects; census reports and statistical publications from national statistical offices; household surveys conducted by national agencies, Macro International, and the U.S. Conters for Disease Control and Prevention; Eurostat's Demographic Statistics; Secretariat of the Pacific Community, Statistics and Demography Programme; and U.S. Bureau of the Census, International Data Base.\"\n\"SP.POP.65UP.TO.ZS\",\"Population ages 65 and above (% of total)\",\"Population ages 65 and above as a percentage of the total population. Population is based on the de facto definition of population, which counts all residents regardless of legal status or citizenship.\",\"World Development Indicators\",\"World Bank staff estimates based on age distributions of United Nations Population Division's World Population Prospects.\"\n\"SP.POP.7074.FE\",\"Female population 70-74 \",\"Female population between the ages 70-74 .\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates using the World Bank's total population and age distributions of the United Nations Population Division's World Population Prospects.\"\n\"SP.POP.7074.FE.5Y\",\"Population ages 70-74, female (% of female population)\",\"Female population between the ages 70 to 74 as a percentage of the total female population.\",\"Africa Development Indicators\",\"World Bank staff estimates based on United Nations Population Division, World Population Prospects.\"\n\"SP.POP.7074.MA\",\"Male population 70-74\",\"Male population between the ages 70-74.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates using the World Bank's total population and age distributions of the United Nations Population Division's World Population Prospects.\"\n\"SP.POP.7074.MA.5Y\",\"Population ages 70-74, male (% of male population)\",\"Male population between the ages 70 to 74 as a percentage of the total male population.\",\"Africa Development Indicators\",\"World Bank staff estimates based on United Nations Population Division, World Population Prospects.\"\n\"SP.POP.7579.FE\",\"Female population 75-79\",\"Female population between the ages 75-79.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates using the World Bank's total population and age distributions of the United Nations Population Division's World Population Prospects.\"\n\"SP.POP.7579.FE.5Y\",\"Population ages 75-79, female (% of female population)\",\"Female population between the ages 75 to 79 as a percentage of the total female population.\",\"Africa Development Indicators\",\"World Bank staff estimates based on United Nations Population Division, World Population Prospects.\"\n\"SP.POP.7579.MA\",\"Male population 75-79\",\"Male population between the ages 75-79.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates using the World Bank's total population and age distributions of the United Nations Population Division's World Population Prospects.\"\n\"SP.POP.7579.MA.5Y\",\"Population ages 75-79, male (% of male population)\",\"Male population between the ages 75 to 79 as a percentage of the total male population.\",\"Africa Development Indicators\",\"World Bank staff estimates based on United Nations Population Division, World Population Prospects.\"\n\"SP.POP.80UP.FE\",\"Population ages 80 and above, female\",\"Female population between the ages 80 and above.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates based on United Nations Population Division, World Population Prospects.\"\n\"SP.POP.80UP.FE.5Y\",\"Population ages 80 and above, female (% of female population)\",\"Female population between the ages 80 and above as a percentage of the total female population.\",\"Africa Development Indicators\",\"World Bank staff estimates based on United Nations Population Division, World Population Prospects.\"\n\"SP.POP.80UP.MA\",\"Male population 80+ \",\"Male population between the ages 80+ .\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates using the World Bank's total population and age distributions of the United Nations Population Division's World Population Prospects.\"\n\"SP.POP.80UP.MA.5Y\",\"Population ages 80 and above, male (% of male population)\",\"Male population between the ages 80 and above as a percentage of the total male population.\",\"Africa Development Indicators\",\"World Bank staff estimates based on United Nations Population Division, World Population Prospects.\"\n\"SP.POP.AG00.FE.UN\",\"Population, age 0, female\",\"Age population, female refers to female population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG00.MA.UN\",\"Population, age 0, male\",\"Population, age 0, male refers to the male population at the specified age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.POP.AG00.TO.UN\",\"Population, age 0, total\",\"Age population, total refers to total population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG01.FE.UN\",\"Population, age 1, female\",\"Age population, female refers to female population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG01.MA.UN\",\"Population, age 1, male\",\"Population, age 1, male refers to the male population at the specified age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.POP.AG01.TO.UN\",\"Population, age 1, total\",\"Age population, total refers to total population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG02.FE.UN\",\"Population, age 2, female\",\"Age population, female refers to female population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG02.MA.UN\",\"Population, age 2, male\",\"Population, age 2, male refers to the male population at the specified age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.POP.AG02.TO.UN\",\"Population, age 2, total\",\"Age population, total refers to total population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG03.FE.UN\",\"Population, age 3, female\",\"Age population, female refers to female population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG03.MA.UN\",\"Population, age 3, male\",\"Population, age 3, male refers to the male population at the specified age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.POP.AG03.TO.UN\",\"Population, age 3, total\",\"Age population, total refers to total population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG04.FE.UN\",\"Population, age 4, female\",\"Age population, female refers to female population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG04.MA.UN\",\"Population, age 4, male\",\"Population, age 4, male refers to the male population at the specified age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.POP.AG04.TO.UN\",\"Population, age 4, total\",\"Age population, total refers to total population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG05.FE.UN\",\"Population, age 5, female\",\"Age population, female refers to female population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG05.MA.UN\",\"Population, age 5, male\",\"Population, age 5, male refers to the male population at the specified age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.POP.AG05.TO.UN\",\"Population, age 5, total\",\"Age population, total refers to total population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG06.FE.IN\",\"Age population, age 06, female, interpolated\",\"Age population, female refers to female population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG06.FE.UN\",\"Population, age 6, female\",\"Age population, female refers to female population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG06.MA.IN\",\"Age population, age 06, male, interpolated\",\"Age population, male refers to male population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG06.MA.UN\",\"Population, age 6, male\",\"Population, age 6, male refers to the male population at the specified age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.POP.AG06.TO.UN\",\"Population, age 6, total\",\"Age population, total refers to total population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG07.FE.IN\",\"Age population, age 07, female, interpolated\",\"Age population, female refers to female population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG07.FE.UN\",\"Population, age 7, female\",\"Age population, female refers to female population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG07.MA.IN\",\"Age population, age 07, male, interpolated\",\"Age population, male refers to male population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG07.MA.UN\",\"Population, age 7, male\",\"Population, age 7, male refers to the male population at the specified age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.POP.AG07.TO.UN\",\"Population, age 7, total\",\"Age population, total refers to total population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG08.FE.IN\",\"Age population, age 08, female, interpolated\",\"Age population, female refers to female population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG08.FE.UN\",\"Population, age 8, female\",\"Age population, female refers to female population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG08.MA.IN\",\"Age population, age 08, male, interpolated\",\"Age population, male refers to male population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG08.MA.UN\",\"Population, age 8, male\",\"Population, age 8, male refers to the male population at the specified age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.POP.AG08.TO.UN\",\"Population, age 8, total\",\"Age population, total refers to total population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG09.FE.IN\",\"Age population, age 09, female, interpolated\",\"Age population, female refers to female population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG09.FE.UN\",\"Population, age 9, female\",\"Age population, female refers to female population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG09.MA.IN\",\"Age population, age 09, male, interpolated\",\"Age population, male refers to male population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG09.MA.UN\",\"Population, age 9, male\",\"Population, age 9, male refers to the male population at the specified age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.POP.AG09.TO.UN\",\"Population, age 9, total\",\"Age population, total refers to total population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG10.FE.IN\",\"Age population, age 10, female, interpolated\",\"Age population, female refers to female population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG10.FE.UN\",\"Population, age 10, female\",\"Age population, female refers to female population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG10.MA.IN\",\"Age population, age 10, male\",\"Age population, male refers to male population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG10.MA.UN\",\"Population, age 10, male\",\"Population, age 10, male refers to the male population at the specified age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.POP.AG10.TO.UN\",\"Population, age 10, total\",\"Age population, total refers to total population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG11.FE.IN\",\"Age population, age 11, female, interpolated\",\"Age population, female refers to female population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG11.FE.UN\",\"Population, age 11, female\",\"Age population, female refers to female population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG11.MA.IN\",\"Age population, age 11, male\",\"Age population, male refers to male population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG11.MA.UN\",\"Population, age 11, male\",\"Population, age 11, male refers to the male population at the specified age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.POP.AG11.TO.UN\",\"Population, age 11, total\",\"Age population, total refers to total population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG12.FE.IN\",\"Age population, age 12, female, interpolated\",\"Age population, female refers to female population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG12.FE.UN\",\"Population, age 12, female\",\"Age population, female refers to female population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG12.MA.IN\",\"Age population, age 12, male\",\"Age population, male refers to male population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG12.MA.UN\",\"Population, age 12, male\",\"Population, age 12, male refers to the male population at the specified age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.POP.AG12.TO.UN\",\"Population, age 12, total\",\"Age population, total refers to total population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG13.FE.IN\",\"Age population, age 13, female, interpolated\",\"Age population, female refers to female population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG13.FE.UN\",\"Population, age 13, female\",\"Age population, female refers to female population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG13.MA.IN\",\"Age population, age 13, male\",\"Age population, male refers to male population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG13.MA.UN\",\"Population, age 13, male\",\"Population, age 13, male refers to the male population at the specified age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.POP.AG13.TO.UN\",\"Population, age 13, total\",\"Age population, total refers to total population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG14.FE.IN\",\"Age population, age 14, female, interpolated\",\"Age population, female refers to female population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG14.FE.UN\",\"Population, age 14, female\",\"Age population, female refers to female population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG14.MA.IN\",\"Age population, age 14, male\",\"Age population, male refers to male population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG14.MA.UN\",\"Population, age 14, male\",\"Population, age 14, male refers to the male population at the specified age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.POP.AG14.TO.UN\",\"Population, age 14, total\",\"Age population, total refers to total population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG15.FE.IN\",\"Age population, age 15, female, interpolated\",\"Age population, female refers to female population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG15.FE.UN\",\"Population, age 15, female\",\"Age population, female refers to female population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG15.MA.IN\",\"Age population, age 15, male, interpolated\",\"Age population, male refers to male population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG15.MA.UN\",\"Population, age 15, male\",\"Population, age 15, male refers to the male population at the specified age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.POP.AG15.TO.UN\",\"Population, age 15, total\",\"Age population, total refers to total population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG16.FE.IN\",\"Age population, age 16, female, interpolated\",\"Age population, female refers to female population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG16.FE.UN\",\"Population, age 16, female\",\"Age population, female refers to female population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG16.MA.IN\",\"Age population, age 16, male, interpolated\",\"Age population, male refers to male population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG16.MA.UN\",\"Population, age 16, male\",\"Population, age 16, male refers to the male population at the specified age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.POP.AG16.TO.UN\",\"Population, age 16, total\",\"Age population, total refers to total population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG17.FE.IN\",\"Age population, age 17, female, interpolated\",\"Age population, female refers to female population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG17.FE.UN\",\"Population, age 17, female\",\"Age population, female refers to female population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG17.MA.IN\",\"Age population, age 17, male, interpolated\",\"Age population, male refers to male population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG17.MA.UN\",\"Population, age 17, male\",\"Population, age 17, male refers to the male population at the specified age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.POP.AG17.TO.UN\",\"Population, age 17, total\",\"Age population, total refers to total population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG18.FE.IN\",\"Age population, age 18, female, interpolated\",\"Age population, female refers to female population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG18.FE.UN\",\"Population, age 18, female\",\"Age population, female refers to female population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG18.MA.IN\",\"Age population, age 18, male, interpolated\",\"Age population, male refers to male population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG18.MA.UN\",\"Population, age 18, male\",\"Population, age 18, male refers to the male population at the specified age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.POP.AG18.TO.UN\",\"Population, age 18, total\",\"Age population, total refers to total population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG19.FE.IN\",\"Age population, age 19, female, interpolated\",\"Age population, female refers to female population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG19.FE.UN\",\"Population, age 19, female\",\"Age population, female refers to female population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG19.MA.IN\",\"Age population, age 19, male, interpolated\",\"Age population, male refers to male population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG19.MA.UN\",\"Population, age 19, male\",\"Population, age 19, male refers to the male population at the specified age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.POP.AG19.TO.UN\",\"Population, age 19, total\",\"Age population, total refers to total population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG20.FE.IN\",\"Age population, age 20, female, interpolated\",\"Age population, female refers to female population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG20.FE.UN\",\"Population, age 20, female\",\"Age population, female refers to female population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG20.MA.IN\",\"Age population, age 20, male, interpolated\",\"Age population, male refers to male population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG20.MA.UN\",\"Population, age 20, male\",\"Population, age 20, male refers to the male population at the specified age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.POP.AG20.TO.UN\",\"Population, age 20, total\",\"Age population, total refers to total population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG21.FE.IN\",\"Age population, age 21, female, interpolated\",\"Age population, female refers to female population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG21.FE.UN\",\"Population, age 21, female\",\"Age population, female refers to female population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG21.MA.IN\",\"Age population, age 21, male, interpolated\",\"Age population, male refers to male population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG21.MA.UN\",\"Population, age 21, male\",\"Population, age 21, male refers to the male population at the specified age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.POP.AG21.TO.UN\",\"Population, age 21, total\",\"Age population, total refers to total population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG22.FE.IN\",\"Age population, age 22, female, interpolated\",\"Age population, female refers to female population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG22.FE.UN\",\"Population, age 22, female\",\"Age population, female refers to female population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG22.MA.IN\",\"Age population, age 22, male, interpolated\",\"Age population, male refers to male population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG22.MA.UN\",\"Population, age 22, male\",\"Population, age 22, male refers to the male population at the specified age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.POP.AG22.TO.UN\",\"Population, age 22, total\",\"Age population, total refers to total population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG23.FE.IN\",\"Age population, age 23, female, interpolated\",\"Age population, female refers to female population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG23.FE.UN\",\"Population, age 23, female\",\"Age population, female refers to female population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG23.MA.IN\",\"Age population, age 23, male, interpolated\",\"Age population, male refers to male population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG23.MA.UN\",\"Population, age 23, male\",\"Population, age 23, male refers to the male population at the specified age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.POP.AG23.TO.UN\",\"Population, age 23, total\",\"Age population, total refers to total population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG24.FE.IN\",\"Age population, age 24, female, interpolated\",\"Age population, female refers to female population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG24.FE.UN\",\"Population, age 24, female\",\"Age population, female refers to female population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG24.MA.IN\",\"Age population, age 24, male, interpolated\",\"Age population, male refers to male population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG24.MA.UN\",\"Population, age 24, male\",\"Population, age 24, male refers to the male population at the specified age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.POP.AG24.TO.UN\",\"Population, age 24, total\",\"Age population, total refers to total population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG25.FE.IN\",\"Age population, age 25, female, interpolated\",\"Age population, female refers to female population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG25.FE.UN\",\"Population, age 25, female\",\"Age population, female refers to female population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.AG25.MA.IN\",\"Age population, age 25, male, interpolated\",\"Age population, male refers to male population at the specified age level, as estimated by World Bank staff.\",\"Health Nutrition and Population Statistics\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and Macro International.\"\n\"SP.POP.AG25.MA.UN\",\"Population, age 25, male\",\"Population, age 25, male refers to the male population at the specified age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.POP.AG25.TO.UN\",\"Population, age 25, total\",\"Age population, total refers to total population at the specified age level, as estimated by the UNESCO Institute for Statistics.\",\"Education Statistics\",\"UNESCO Institute for Statistics.\"\n\"SP.POP.BRTH.MF\",\"Sex ratio at birth (male births per female births)\",\"Sex ratio at birth refers to male births per female births. The data are 5 year averages.\",\"Health Nutrition and Population Statistics\",\"United Nations Population Division, World Population Prospects.\"\n\"SP.POP.DDAY.TO\",\"Number of people living on less than $1.25 a day (PPP)\",\"Number of people living on less than $1.25 a day (PPP) is the population living on less than $1.25 a day at 2005 international prices.\",\"Millennium Development Goals\",\"World Bank, Development Research Group. Data are based on primary household survey data obtained from government statistical agencies and World Bank country departments. Data for high-income economies are from the Luxembourg Income Study database. For more information and methodology, please see PovcalNet (http://iresearch.worldbank.org/PovcalNet/index.htm).\"\n\"SP.POP.DPND\",\"Age dependency ratio (% of working-age population)\",\"Age dependency ratio is the ratio of dependents--people younger than 15 or older than 64--to the working-age population--those ages 15-64. Data are shown as the proportion of dependents per 100 working-age population.\",\"World Development Indicators\",\"World Bank staff estimates using the World Bank's population and age distributions of the United Nations Population Division's World Population Prospects. The World Bank's population estimates are from various sources including the United Nations Population Division's World Population Prospects; census reports and statistical publications from national statistical offices; Eurostat's Demographic Statistics; United Nations Statistical Division, Population and Vital Statistics Report (various years); U.S. Census Bureau: International Database; and Secretariat of the Pacific Community, Statistics and Demography Programme.\"\n\"SP.POP.DPND.OL\",\"Age dependency ratio, old (% of working-age population)\",\"Age dependency ratio, old, is the ratio of older dependents--people older than 64--to the working-age population--those ages 15-64. Data are shown as the proportion of dependents per 100 working-age population.\",\"World Development Indicators\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and ICF International.\"\n\"SP.POP.DPND.YG\",\"Age dependency ratio, young (% of working-age population)\",\"Age dependency ratio, young, is the ratio of younger dependents--people younger than 15--to the working-age population--those ages 15-64. Data are shown as the proportion of dependents per 100 working-age population.\",\"World Development Indicators\",\"World Bank staff estimates from various sources including census reports, the United Nations Population Division's World Population Prospects, national statistical offices, household surveys conducted by national agencies, and ICF International.\"\n\"SP.POP.GROW\",\"Population growth (annual %)\",\"Annual population growth rate for year t is the exponential rate of growth of midyear population from year t-1 to t, expressed as a percentage . Population is based on the de facto definition of population, which counts all residents regardless of legal status or citizenship.\",\"World Development Indicators\",\"Derived from total population. Population source: (1) United Nations Population Division. World Population Prospects, (2) United Nations Statistical Division. Population and Vital Statistics Report (various years), (3) Census reports and other statistical\"\n\"SP.POP.SCIE.RD.P6\",\"Researchers in R&D (per million people)\",\"Researchers in R&D are professionals engaged in the conception or creation of new knowledge, products, processes, methods, or systems and in the management of the projects concerned. Postgraduate PhD students (ISCED97 level 6) engaged in R&D are included.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SP.POP.TECH.RD.P6\",\"Technicians in R&D (per million people)\",\"Technicians in R&D and equivalent staff are people whose main tasks require technical knowledge and experience in engineering, physical and life sciences (technicians), or social sciences and humanities (equivalent staff). They participate in R&D by performing scientific and technical tasks involving the application of concepts and operational methods, normally under the supervision of researchers.\",\"World Development Indicators\",\"United Nations Educational, Scientific, and Cultural Organization (UNESCO) Institute for Statistics.\"\n\"SP.POP.TOTL\",\"Population, total\",\"Total population is based on the de facto definition of population, which counts all residents regardless of legal status or citizenship. The values shown are midyear estimates.\",\"World Development Indicators\",\"(1) United Nations Population Division. World Population Prospects, (2) Census reports and other statistical publications from national statistical offices, (3) Eurostat: Demographic Statistics, (4) United Nations Statistical Division. Population and Vital Statistics Report (various years), (5) U.S. Census Bureau: International Database, and (6) Secretariat of the Pacific Community: Statistics and Demography Programme.\"\n\"SP.POP.TOTL.FE.IN\",\"Population, female\",\"Female population is based on the de facto definition of population, which counts all female residents regardless of legal status or citizenship.\",\"Africa Development Indicators\",\"World Bank staff estimates using the World Bank's population and distributions of the United Nations Population Division's World Population Prospects. The World Bank's population estimates are from various sources including the United Nations Population Division's World Population Prospects; census reports and statistical publications from national statistical offices; Eurostat's Demographic Statistics; United Nations Statistical Division, Population and Vital Statistics Report (various years); U.S. Census Bureau: International Database; and Secretariat of the Pacific Community, Statistics and Demography Programme.\"\n\"SP.POP.TOTL.FE.ZS\",\"Population, female (% of total)\",\"Female population is the percentage of the population that is female. Population is based on the de facto definition of population, which counts all residents regardless of legal status or citizenship.\",\"World Development Indicators\",\"World Bank staff estimates based on male/female distributions of United Nations Population Division's World Population Prospects.\"\n\"SP.POP.TOTL.MA.IN\",\"Population, male\",\"Male population is based on the de facto definition of population, which counts all male residents regardless of legal status or citizenship. Refugees not permanently settled in the country of asylum are generally considered to be part of the population of their country of origin.\",\"Africa Development Indicators\",\"World Bank staff estimates using the World Bank's population and the United Nations Population Division's World Population Prospects. The World Bank's population estimates are from various sources including the United Nations Population Division's World P\"\n\"SP.POP.TOTL.MA.ZS\",\"Population, male (% of total)\",\"Male population is the percentage of the population that is male. Population is based on the de facto definition of population, which counts all residents regardless of legal status or citizenship--except for refugees not permanently settled in the country of asylum, who are generally considered part of the population of the country of origin.\",\"Africa Development Indicators\",\"The United Nations Population Division's World Population Prospects.\"\n\"SP.POP.TOTL.ZS\",\"Population (% of total)\",\"Population Percentage of total is the share of first level administrative division (Admin 1 level) de facto mid-year population to total population.\",\"Subnational Population\",\"1. Census reports and statistical databases from national statistical offices 2. Estimates from the Center for International Earth Science Information Network (CIESIN), The Earth Institute at Columbia University\"\n\"SP.PRE.TOTL.FE.IN\",\"Population of the official age for pre-primary education, female (number)\",\"Female population of the age-group theoretically corresponding to pre-primary education as indicated by theoretical entrance age and duration.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.PRE.TOTL.IN\",\"Population of the official age for pre-primary education, both sexes (number)\",\"Population of the age-group theoretically corresponding to pre-primary education as indicated by theoretical entrance age and duration.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.PRE.TOTL.MA.IN\",\"Population of the official age for pre-primary education, male (number)\",\"Male population of the age-group theoretically corresponding to pre-primary education as indicated by theoretical entrance age and duration.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.PRM.GRAD.FE\",\"Population of the official age for the last grade of primary education, female (number)\",\"Female population of the age-group theoretically corresponding to the last grade of primary school as indicated by theoretical entrance age and duration.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.PRM.GRAD.MA\",\"Population of the official age for the last grade of primary education, male (number)\",\"Male population of the age-group theoretically corresponding to the last grade of primary school as indicated by theoretical entrance age and duration.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.PRM.GRAD.TO\",\"Population of the official age for the last grade of primary education, both sexes (number)\",\"Population of the age-group theoretically corresponding to the last grade of primary school as indicated by theoretical entrance age and duration.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.PRM.TOTL.FE.IN\",\"Population of the official age for primary education, female (number)\",\"Female population of the age-group theoretically corresponding to primary education as indicated by theoretical entrance age and duration.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.PRM.TOTL.IN\",\"Population of the official age for primary education, both sexes (number)\",\"Population of the age-group theoretically corresponding to primary education as indicated by theoretical entrance age and duration.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.PRM.TOTL.MA.IN\",\"Population of the official age for primary education, male (number)\",\"Male population of the age-group theoretically corresponding to primary education as indicated by theoretical entrance age and duration.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.REG.BRTH.RU.ZS\",\"Completeness of birth registration, rural (%)\",\"Completeness of birth registration is the percentage of children under age 5 whose births were registered at the time of the survey. The numerator of completeness of birth registration includes children whose birth certificate was seen by the interviewer or whose mother or caretaker says the birth has been registered.\",\"World Development Indicators\",\"UNICEF's State of the World's Children based mostly on household surveys and ministry of health data.\"\n\"SP.REG.BRTH.UR.ZS\",\"Completeness of birth registration, urban (%)\",\"Completeness of birth registration is the percentage of children under age 5 whose births were registered at the time of the survey. The numerator of completeness of birth registration includes children whose birth certificate was seen by the interviewer or whose mother or caretaker says the birth has been registered.\",\"World Development Indicators\",\"UNICEF's State of the World's Children based mostly on household surveys and ministry of health data.\"\n\"SP.REG.BRTH.ZS\",\"Completeness of birth registration (%)\",\"Completeness of birth registration is the percentage of children under age 5 whose births were registered at the time of the survey. The numerator of completeness of birth registration includes children whose birth certificate was seen by the interviewer or whose mother or caretaker says the birth has been registered.\",\"World Development Indicators\",\"UNICEF's State of the World's Children based mostly on household surveys and ministry of health data.\"\n\"SP.REG.DTHS.ZS\",\"Completeness of death registration with cause-of-death information (%)\\r\\n\",\"Completeness of death registration is the estimated percentage of deaths that are registered with their cause of death information in the vital registration system of a country.\\r\\n\",\"World Development Indicators\",\"World Health Organization, Global Health Observatory Data Repository/World Health Statistics (http://apps.who.int/gho/data/node.main.1?lang=en).\\r\\n\"\n\"SP.RUR.TOTL\",\"Rural population\",\"Rural population refers to people living in rural areas as defined by national statistical offices. It is calculated as the difference between total population and urban population. Aggregation of urban and rural population may not add up to total population because of different country coverages.\",\"World Development Indicators\",\"The data on urban population shares used to estimate rural population come from the United Nations, World Urbanization Prospects. Total population figures are World Bank estimates.\"\n\"SP.RUR.TOTL.FE.ZS\",\"Rural population, female (% of total)\",\"Female rural population is the percentage of females who live in rural areas to total population.\",\"Gender Statistics\",\"The United Nations Population Division's World Urbanization Prospects.\"\n\"SP.RUR.TOTL.MA.ZS\",\"Rural population, male (% of total)\",\"Male rural population is the percentage males who live in rural areas to total population.\",\"Gender Statistics\",\"The United Nations Population Division's World Urbanization Prospects.\"\n\"SP.RUR.TOTL.ZG\",\"Rural population growth (annual %)\",\"Rural population refers to people living in rural areas as defined by national statistical offices. It is calculated as the difference between total population and urban population.\",\"World Development Indicators\",\"World Bank Staff estimates based on United Nations, World Urbanization Prospects. \"\n\"SP.RUR.TOTL.ZS\",\"Rural population (% of total population)\",\"Rural population refers to people living in rural areas as defined by national statistical offices. It is calculated as the difference between total population and urban population.\",\"World Development Indicators\",\"World Bank Staff estimates based on United Nations, World Urbanization Prospects. \"\n\"SP.SEC.LTOT.FE.IN\",\"Population of the official age for lower secondary education, female (number)\",\"Female population of the age-group theoretically corresponding to lower secondary education as indicated by theoretical entrance age and duration.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.SEC.LTOT.IN\",\"Population of the official age for lower secondary education, both sexes (number)\",\"Population of the age-group theoretically corresponding to lower secondary education as indicated by theoretical entrance age and duration.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.SEC.LTOT.MA.IN\",\"Population of the official age for lower secondary education, male (number)\",\"Male population of the age-group theoretically corresponding to lower secondary education as indicated by theoretical entrance age and duration.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.SEC.TOTL.FE.IN\",\"Population of the official age for secondary education, female (number)\",\"Female population of the age-group theoretically corresponding to secondary education as indicated by theoretical entrance age and duration.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.SEC.TOTL.IN\",\"Population of the official age for secondary education, both sexes (number)\",\"Population of the age-group theoretically corresponding to secondary education as indicated by theoretical entrance age and duration.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.SEC.TOTL.MA.IN\",\"Population of the official age for secondary education, male (number)\",\"Male population of the age-group theoretically corresponding to secondary education as indicated by theoretical entrance age and duration.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.SEC.UTOT.FE.IN\",\"Population of the official age for upper secondary education, female (number)\",\"Female population of the age-group theoretically corresponding to upper secondary education as indicated by theoretical entrance age and duration.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.SEC.UTOT.IN\",\"Population of the official age for upper secondary education, both sexes (number)\",\"Population of the age-group theoretically corresponding to upper secondary education as indicated by theoretical entrance age and duration.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.SEC.UTOT.MA.IN\",\"Population of the official age for upper secondary education, male (number)\",\"Male population of the age-group theoretically corresponding to upper secondary education as indicated by theoretical entrance age and duration.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.TER.TOTL.FE.IN\",\"Population of the official age for tertiary education, female (number)\",\"Female population of the age-group theoretically corresponding to tertiary education as indicated by theoretical entrance age and duration.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.TER.TOTL.IN\",\"Population of the official age for tertiary education, both sexes (number)\",\"Population of the age-group theoretically corresponding to tertiary education as indicated by theoretical entrance age and duration.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.TER.TOTL.MA.IN\",\"Population of the official age for tertiary education, male (number)\",\"Male population of the age-group theoretically corresponding to tertiary education as indicated by theoretical entrance age and duration.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"SP.URB.GROW\",\"Urban population growth (annual %)\",\"Urban population refers to people living in urban areas as defined by national statistical offices. It is calculated using World Bank population estimates and urban ratios from the United Nations World Urbanization Prospects.\",\"World Development Indicators\",\"World Bank Staff estimates based on United Nations, World Urbanization Prospects. \"\n\"SP.URB.TOTL\",\"Urban population\",\"Urban population refers to people living in urban areas as defined by national statistical offices. It is calculated using World Bank population estimates and urban ratios from the United Nations World Urbanization Prospects. Aggregation of urban and rural population may not add up to total population because of different country coverages.\",\"World Development Indicators\",\"World Bank Staff estimates based on United Nations, World Urbanization Prospects. \"\n\"SP.URB.TOTL.FE.ZS\",\"Urban population, female (% of total)\",\"Female urban population is the percentage of females who live in urban areas to total population.\",\"Gender Statistics\",\"The United Nations Population Division's World Urbanization Prospects.\"\n\"SP.URB.TOTL.IN.ZS\",\"Urban population (% of total)\",\"Urban population refers to people living in urban areas as defined by national statistical offices. The data are collected and smoothed by United Nations Population Division.\",\"World Development Indicators\",\"United Nations, World Urbanization Prospects.\"\n\"SP.URB.TOTL.MA.ZS\",\"Urban population, male (% of total)\",\"Male urban population is the percentage of males who live in urban areas to total population.\",\"Gender Statistics\",\"The United Nations Population Division's World Urbanization Prospects.\"\n\"SP.URB.TOTL.ZS\",\"Percentage of Population in Urban Areas (in % of Total Population)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia\"\n\"SP.UWT.LMTG.Q1.ZS\",\"Unmet need for family planning (for limiting) (% of married women): Q1 (lowest)\",\"Unmet need for family planning: Percentage of currently married women with unmet need for family planning for spacing, for limiting, and the sum of these two (total). Unmet need for spacing includes pregnant women whose pregnancy was mistimed, amenorrheic women who are not using family planning and whose last birth was mistimed, and fecund women who are neither pregnant nor amenorrheic and who are not using any method of family planning and say they want to wait 2 or more years for their next birth. Also included in unmet need for spacing are fecund women who are not using any method of family planning and say they are unsure whether they want another child or who want another child but are unsure when to have the birth unless they say it would not be a problem if they discovered they were pregnant in the next few weeks. Unmet need for limiting refers to pregnant women whose pregnancy was unwanted, amenorrheic women whose last child was unwanted, and fecund women who are neither pregnant nor amenorrheic and who are not using any method of family planning and who want no more children. Excluded from the unmet need category are pregnant and amenorrheic women who became pregnant while using a method (these women are in need of a better method of contraception).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.UWT.LMTG.Q2.ZS\",\"Unmet need for family planning (for limiting) (% of married women): Q2\",\"Unmet need for family planning: Percentage of currently married women with unmet need for family planning for spacing, for limiting, and the sum of these two (total). Unmet need for spacing includes pregnant women whose pregnancy was mistimed, amenorrheic women who are not using family planning and whose last birth was mistimed, and fecund women who are neither pregnant nor amenorrheic and who are not using any method of family planning and say they want to wait 2 or more years for their next birth. Also included in unmet need for spacing are fecund women who are not using any method of family planning and say they are unsure whether they want another child or who want another child but are unsure when to have the birth unless they say it would not be a problem if they discovered they were pregnant in the next few weeks. Unmet need for limiting refers to pregnant women whose pregnancy was unwanted, amenorrheic women whose last child was unwanted, and fecund women who are neither pregnant nor amenorrheic and who are not using any method of family planning and who want no more children. Excluded from the unmet need category are pregnant and amenorrheic women who became pregnant while using a method (these women are in need of a better method of contraception).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.UWT.LMTG.Q3.ZS\",\"Unmet need for family planning (for limiting) (% of married women): Q3\",\"Unmet need for family planning: Percentage of currently married women with unmet need for family planning for spacing, for limiting, and the sum of these two (total). Unmet need for spacing includes pregnant women whose pregnancy was mistimed, amenorrheic women who are not using family planning and whose last birth was mistimed, and fecund women who are neither pregnant nor amenorrheic and who are not using any method of family planning and say they want to wait 2 or more years for their next birth. Also included in unmet need for spacing are fecund women who are not using any method of family planning and say they are unsure whether they want another child or who want another child but are unsure when to have the birth unless they say it would not be a problem if they discovered they were pregnant in the next few weeks. Unmet need for limiting refers to pregnant women whose pregnancy was unwanted, amenorrheic women whose last child was unwanted, and fecund women who are neither pregnant nor amenorrheic and who are not using any method of family planning and who want no more children. Excluded from the unmet need category are pregnant and amenorrheic women who became pregnant while using a method (these women are in need of a better method of contraception).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.UWT.LMTG.Q4.ZS\",\"Unmet need for family planning (for limiting) (% of married women): Q4\",\"Unmet need for family planning: Percentage of currently married women with unmet need for family planning for spacing, for limiting, and the sum of these two (total). Unmet need for spacing includes pregnant women whose pregnancy was mistimed, amenorrheic women who are not using family planning and whose last birth was mistimed, and fecund women who are neither pregnant nor amenorrheic and who are not using any method of family planning and say they want to wait 2 or more years for their next birth. Also included in unmet need for spacing are fecund women who are not using any method of family planning and say they are unsure whether they want another child or who want another child but are unsure when to have the birth unless they say it would not be a problem if they discovered they were pregnant in the next few weeks. Unmet need for limiting refers to pregnant women whose pregnancy was unwanted, amenorrheic women whose last child was unwanted, and fecund women who are neither pregnant nor amenorrheic and who are not using any method of family planning and who want no more children. Excluded from the unmet need category are pregnant and amenorrheic women who became pregnant while using a method (these women are in need of a better method of contraception).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.UWT.LMTG.Q5.ZS\",\"Unmet need for family planning (for limiting) (% of married women): Q5 (highest)\",\"Unmet need for family planning: Percentage of currently married women with unmet need for family planning for spacing, for limiting, and the sum of these two (total). Unmet need for spacing includes pregnant women whose pregnancy was mistimed, amenorrheic women who are not using family planning and whose last birth was mistimed, and fecund women who are neither pregnant nor amenorrheic and who are not using any method of family planning and say they want to wait 2 or more years for their next birth. Also included in unmet need for spacing are fecund women who are not using any method of family planning and say they are unsure whether they want another child or who want another child but are unsure when to have the birth unless they say it would not be a problem if they discovered they were pregnant in the next few weeks. Unmet need for limiting refers to pregnant women whose pregnancy was unwanted, amenorrheic women whose last child was unwanted, and fecund women who are neither pregnant nor amenorrheic and who are not using any method of family planning and who want no more children. Excluded from the unmet need category are pregnant and amenorrheic women who became pregnant while using a method (these women are in need of a better method of contraception).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.UWT.SPCG.Q1.ZS\",\"Unmet need for family planning (for spacing) (% of married women): Q1 (lowest)\",\"Unmet need for family planning: Percentage of currently married women with unmet need for family planning for spacing, for limiting, and the sum of these two (total). Unmet need for spacing includes pregnant women whose pregnancy was mistimed, amenorrheic women who are not using family planning and whose last birth was mistimed, and fecund women who are neither pregnant nor amenorrheic and who are not using any method of family planning and say they want to wait 2 or more years for their next birth. Also included in unmet need for spacing are fecund women who are not using any method of family planning and say they are unsure whether they want another child or who want another child but are unsure when to have the birth unless they say it would not be a problem if they discovered they were pregnant in the next few weeks. Unmet need for limiting refers to pregnant women whose pregnancy was unwanted, amenorrheic women whose last child was unwanted, and fecund women who are neither pregnant nor amenorrheic and who are not using any method of family planning and who want no more children. Excluded from the unmet need category are pregnant and amenorrheic women who became pregnant while using a method (these women are in need of a better method of contraception).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.UWT.SPCG.Q2.ZS\",\"Unmet need for family planning (for spacing) (% of married women): Q2\",\"Unmet need for family planning: Percentage of currently married women with unmet need for family planning for spacing, for limiting, and the sum of these two (total). Unmet need for spacing includes pregnant women whose pregnancy was mistimed, amenorrheic women who are not using family planning and whose last birth was mistimed, and fecund women who are neither pregnant nor amenorrheic and who are not using any method of family planning and say they want to wait 2 or more years for their next birth. Also included in unmet need for spacing are fecund women who are not using any method of family planning and say they are unsure whether they want another child or who want another child but are unsure when to have the birth unless they say it would not be a problem if they discovered they were pregnant in the next few weeks. Unmet need for limiting refers to pregnant women whose pregnancy was unwanted, amenorrheic women whose last child was unwanted, and fecund women who are neither pregnant nor amenorrheic and who are not using any method of family planning and who want no more children. Excluded from the unmet need category are pregnant and amenorrheic women who became pregnant while using a method (these women are in need of a better method of contraception).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.UWT.SPCG.Q3.ZS\",\"Unmet need for family planning (for spacing) (% of married women): Q3\",\"Unmet need for family planning: Percentage of currently married women with unmet need for family planning for spacing, for limiting, and the sum of these two (total). Unmet need for spacing includes pregnant women whose pregnancy was mistimed, amenorrheic women who are not using family planning and whose last birth was mistimed, and fecund women who are neither pregnant nor amenorrheic and who are not using any method of family planning and say they want to wait 2 or more years for their next birth. Also included in unmet need for spacing are fecund women who are not using any method of family planning and say they are unsure whether they want another child or who want another child but are unsure when to have the birth unless they say it would not be a problem if they discovered they were pregnant in the next few weeks. Unmet need for limiting refers to pregnant women whose pregnancy was unwanted, amenorrheic women whose last child was unwanted, and fecund women who are neither pregnant nor amenorrheic and who are not using any method of family planning and who want no more children. Excluded from the unmet need category are pregnant and amenorrheic women who became pregnant while using a method (these women are in need of a better method of contraception).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.UWT.SPCG.Q4.ZS\",\"Unmet need for family planning (for spacing) (% of married women): Q4\",\"Unmet need for family planning: Percentage of currently married women with unmet need for family planning for spacing, for limiting, and the sum of these two (total). Unmet need for spacing includes pregnant women whose pregnancy was mistimed, amenorrheic women who are not using family planning and whose last birth was mistimed, and fecund women who are neither pregnant nor amenorrheic and who are not using any method of family planning and say they want to wait 2 or more years for their next birth. Also included in unmet need for spacing are fecund women who are not using any method of family planning and say they are unsure whether they want another child or who want another child but are unsure when to have the birth unless they say it would not be a problem if they discovered they were pregnant in the next few weeks. Unmet need for limiting refers to pregnant women whose pregnancy was unwanted, amenorrheic women whose last child was unwanted, and fecund women who are neither pregnant nor amenorrheic and who are not using any method of family planning and who want no more children. Excluded from the unmet need category are pregnant and amenorrheic women who became pregnant while using a method (these women are in need of a better method of contraception).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.UWT.SPCG.Q5.ZS\",\"Unmet need for family planning (for spacing) (% of married women): Q5 (highest)\",\"Unmet need for family planning: Percentage of currently married women with unmet need for family planning for spacing, for limiting, and the sum of these two (total). Unmet need for spacing includes pregnant women whose pregnancy was mistimed, amenorrheic women who are not using family planning and whose last birth was mistimed, and fecund women who are neither pregnant nor amenorrheic and who are not using any method of family planning and say they want to wait 2 or more years for their next birth. Also included in unmet need for spacing are fecund women who are not using any method of family planning and say they are unsure whether they want another child or who want another child but are unsure when to have the birth unless they say it would not be a problem if they discovered they were pregnant in the next few weeks. Unmet need for limiting refers to pregnant women whose pregnancy was unwanted, amenorrheic women whose last child was unwanted, and fecund women who are neither pregnant nor amenorrheic and who are not using any method of family planning and who want no more children. Excluded from the unmet need category are pregnant and amenorrheic women who became pregnant while using a method (these women are in need of a better method of contraception).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.UWT.TFRT\",\"Unmet need for contraception (% of married women ages 15-49)\",\"Unmet need for contraception is the percentage of fertile, married women of reproductive age who do not want to become pregnant and are not using contraception.\",\"World Development Indicators\",\"Household surveys, including Demographic and Health Surveys and Multiple Indicator Cluster Surveys. Largely compiled by United Nations Population Division.\"\n\"SP.UWT.TFRT.Q1.ZS\",\"Unmet need for family planning (total) (% of married women): Q1 (lowest)\",\"Unmet need for family planning: Percentage of currently married women with unmet need for family planning for spacing, for limiting, and the sum of these two (total). Unmet need for spacing includes pregnant women whose pregnancy was mistimed, amenorrheic women who are not using family planning and whose last birth was mistimed, and fecund women who are neither pregnant nor amenorrheic and who are not using any method of family planning and say they want to wait 2 or more years for their next birth. Also included in unmet need for spacing are fecund women who are not using any method of family planning and say they are unsure whether they want another child or who want another child but are unsure when to have the birth unless they say it would not be a problem if they discovered they were pregnant in the next few weeks. Unmet need for limiting refers to pregnant women whose pregnancy was unwanted, amenorrheic women whose last child was unwanted, and fecund women who are neither pregnant nor amenorrheic and who are not using any method of family planning and who want no more children. Excluded from the unmet need category are pregnant and amenorrheic women who became pregnant while using a method (these women are in need of a better method of contraception).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.UWT.TFRT.Q2.ZS\",\"Unmet need for family planning (total) (% of married women): Q2\",\"Unmet need for family planning: Percentage of currently married women with unmet need for family planning for spacing, for limiting, and the sum of these two (total). Unmet need for spacing includes pregnant women whose pregnancy was mistimed, amenorrheic women who are not using family planning and whose last birth was mistimed, and fecund women who are neither pregnant nor amenorrheic and who are not using any method of family planning and say they want to wait 2 or more years for their next birth. Also included in unmet need for spacing are fecund women who are not using any method of family planning and say they are unsure whether they want another child or who want another child but are unsure when to have the birth unless they say it would not be a problem if they discovered they were pregnant in the next few weeks. Unmet need for limiting refers to pregnant women whose pregnancy was unwanted, amenorrheic women whose last child was unwanted, and fecund women who are neither pregnant nor amenorrheic and who are not using any method of family planning and who want no more children. Excluded from the unmet need category are pregnant and amenorrheic women who became pregnant while using a method (these women are in need of a better method of contraception).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.UWT.TFRT.Q3.ZS\",\"Unmet need for family planning (total) (% of married women): Q3\",\"Unmet need for family planning: Percentage of currently married women with unmet need for family planning for spacing, for limiting, and the sum of these two (total). Unmet need for spacing includes pregnant women whose pregnancy was mistimed, amenorrheic women who are not using family planning and whose last birth was mistimed, and fecund women who are neither pregnant nor amenorrheic and who are not using any method of family planning and say they want to wait 2 or more years for their next birth. Also included in unmet need for spacing are fecund women who are not using any method of family planning and say they are unsure whether they want another child or who want another child but are unsure when to have the birth unless they say it would not be a problem if they discovered they were pregnant in the next few weeks. Unmet need for limiting refers to pregnant women whose pregnancy was unwanted, amenorrheic women whose last child was unwanted, and fecund women who are neither pregnant nor amenorrheic and who are not using any method of family planning and who want no more children. Excluded from the unmet need category are pregnant and amenorrheic women who became pregnant while using a method (these women are in need of a better method of contraception).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.UWT.TFRT.Q4.ZS\",\"Unmet need for family planning (total) (% of married women): Q4\",\"Unmet need for family planning: Percentage of currently married women with unmet need for family planning for spacing, for limiting, and the sum of these two (total). Unmet need for spacing includes pregnant women whose pregnancy was mistimed, amenorrheic women who are not using family planning and whose last birth was mistimed, and fecund women who are neither pregnant nor amenorrheic and who are not using any method of family planning and say they want to wait 2 or more years for their next birth. Also included in unmet need for spacing are fecund women who are not using any method of family planning and say they are unsure whether they want another child or who want another child but are unsure when to have the birth unless they say it would not be a problem if they discovered they were pregnant in the next few weeks. Unmet need for limiting refers to pregnant women whose pregnancy was unwanted, amenorrheic women whose last child was unwanted, and fecund women who are neither pregnant nor amenorrheic and who are not using any method of family planning and who want no more children. Excluded from the unmet need category are pregnant and amenorrheic women who became pregnant while using a method (these women are in need of a better method of contraception).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SP.UWT.TFRT.Q5.ZS\",\"Unmet need for family planning (total) (% of married women): Q5 (highest)\",\"Unmet need for family planning: Percentage of currently married women with unmet need for family planning for spacing, for limiting, and the sum of these two (total). Unmet need for spacing includes pregnant women whose pregnancy was mistimed, amenorrheic women who are not using family planning and whose last birth was mistimed, and fecund women who are neither pregnant nor amenorrheic and who are not using any method of family planning and say they want to wait 2 or more years for their next birth. Also included in unmet need for spacing are fecund women who are not using any method of family planning and say they are unsure whether they want another child or who want another child but are unsure when to have the birth unless they say it would not be a problem if they discovered they were pregnant in the next few weeks. Unmet need for limiting refers to pregnant women whose pregnancy was unwanted, amenorrheic women whose last child was unwanted, and fecund women who are neither pregnant nor amenorrheic and who are not using any method of family planning and who want no more children. Excluded from the unmet need category are pregnant and amenorrheic women who became pregnant while using a method (these women are in need of a better method of contraception).\",\"Health Nutrition and Population Statistics by Wealth Quintile\",\"Household Surveys (DHS, MICS)\"\n\"SS.H2O.FAIL.DY\",\"Water supply failure for firms receiving water (average days/year)\",\"Water supply failure for firms receiving water is the average number of days per year that firms experienced insufficient water supply for production. \",\"Africa Development Indicators\",\"World Bank Investment Climate Surveys.\"\n\"ST.INT.ARVL\",\"International tourism, number of arrivals\",\"International inbound tourists (overnight visitors) are the number of tourists who travel to a country other than that in which they have their usual residence, but outside their usual environment, for a period not exceeding 12 months and whose main purpose in visiting is other than an activity remunerated from within the country visited. When data on number of tourists are not available, the number of visitors, which includes tourists, same-day visitors, cruise passengers, and crew members, is shown instead. Sources and collection methods for arrivals differ across countries. In some cases data are from border statistics (police, immigration, and the like) and supplemented by border surveys. In other cases data are from tourism accommodation establishments. For some countries number of arrivals is limited to arrivals by air and for others to arrivals staying in hotels. Some countries include arrivals of nationals residing abroad while others do not. Caution should thus be used in comparing arrivals across countries. The data on inbound tourists refer to the number of arrivals, not to the number of people traveling. Thus a person who makes several trips to a country during a given period is counted each time as a new arrival.\",\"World Development Indicators\",\"World Tourism Organization, Yearbook of Tourism Statistics, Compendium of Tourism Statistics and data files.\"\n\"ST.INT.DPRT\",\"International tourism, number of departures\",\"International outbound tourists are the number of departures that people make from their country of usual residence to any other country for any purpose other than a remunerated activity in the country visited. The data on outbound tourists refer to the number of departures, not to the number of people traveling. Thus a person who makes several trips from a country during a given period is counted each time as a new departure.\",\"World Development Indicators\",\"World Tourism Organization, Yearbook of Tourism Statistics, Compendium of Tourism Statistics and data files.\"\n\"ST.INT.RCPT.CD\",\"International tourism, receipts (current US$)\",\"International tourism receipts are expenditures by international inbound visitors, including payments to national carriers for international transport. These receipts include any other prepayment made for goods or services received in the destination country. They also may include receipts from same-day visitors, except when these are important enough to justify separate classification. For some countries they do not include receipts for passenger transport items. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Tourism Organization, Yearbook of Tourism Statistics, Compendium of Tourism Statistics and data files.\"\n\"ST.INT.RCPT.XP.ZS\",\"International tourism, receipts (% of total exports)\",\"International tourism receipts are expenditures by international inbound visitors, including payments to national carriers for international transport. These receipts include any other prepayment made for goods or services received in the destination country. They also may include receipts from same-day visitors, except when these are important enough to justify separate classification. For some countries they do not include receipts for passenger transport items. Their share in exports is calculated as a ratio to exports of goods and services, which comprise all transactions between residents of a country and the rest of the world involving a change of ownership from residents to nonresidents of general merchandise, goods sent for processing and repairs, nonmonetary gold, and services.\",\"World Development Indicators\",\"World Tourism Organization, Yearbook of Tourism Statistics, Compendium of Tourism Statistics and data files, and IMF and World Bank exports estimates.\"\n\"ST.INT.TRNR.CD\",\"International tourism, receipts for passenger transport items (current US$)\",\"International tourism receipts for passenger transport items are expenditures by international inbound visitors for all services provided in the international transportation by resident carriers. Also included are passenger services performed within an economy by nonresident carriers. Excluded are passenger services provided to nonresidents by resident carriers within the resident economies; these are included in travel items. In addition to the services covered by passenger fares--including fares that are a part of package tours but excluding cruise fares, which are included in travel--passenger services include such items as charges for excess baggage, vehicles, or other personal accompanying effects and expenditures for food, drink, or other items for which passengers make expenditures while on board carriers. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Tourism Organization, Yearbook of Tourism Statistics, Compendium of Tourism Statistics and data files.\"\n\"ST.INT.TRNX.CD\",\"International tourism, expenditures for passenger transport items (current US$)\",\"International tourism expenditures for passenger transport items are expenditures of international outbound visitors in other countries for all services provided during international transportation by nonresident carriers. Also included are passenger services performed within an economy by nonresident carriers. Excluded are passenger services provided to nonresidents by resident carriers within the resident economies; these are included in travel items. In addition to the services covered by passenger fares--including fares that are a part of package tours but excluding cruise fares, which are included in travel--passenger services include such items as charges for excess baggage, vehicles, or other personal accompanying effects and expenditures for food, drink, or other items for which passengers make expenditures while on board carriers. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Tourism Organization, Yearbook of Tourism Statistics, Compendium of Tourism Statistics and data files.\"\n\"ST.INT.TVLR.CD\",\"International tourism, receipts for travel items (current US$)\",\"International tourism receipts for travel items are expenditures by international inbound visitors in the reporting economy. The goods and services are purchased by, or on behalf of, the traveler or provided, without a quid pro quo, for the traveler to use or give away. These receipts should include any other prepayment made for goods or services received in the destination country. They also may include receipts from same-day visitors, except in cases where these are so important as to justify a separate classification. Excluded is the international carriage of travelers, which is covered in passenger travel items. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Tourism Organization, Yearbook of Tourism Statistics, Compendium of Tourism Statistics and data files.\"\n\"ST.INT.TVLX.CD\",\"International tourism, expenditures for travel items (current US$)\",\"International tourism expenditures are expenditures of international outbound visitors in other countries. The goods and services are purchased by, or on behalf of, the traveler or provided, without a quid pro quo, for the traveler to use or give away. These may include expenditures by residents traveling abroad as same-day visitors, except in cases where these are so important as to justify a separate classification. Excluded is the international carriage of travelers, which is covered in passenger travel items. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Tourism Organization, Yearbook of Tourism Statistics, Compendium of Tourism Statistics and data files.\"\n\"ST.INT.XPND.CD\",\"International tourism, expenditures (current US$)\",\"International tourism expenditures are expenditures of international outbound visitors in other countries, including payments to foreign carriers for international transport. These expenditures may include those by residents traveling abroad as same-day visitors, except in cases where these are important enough to justify separate classification. For some countries they do not include expenditures for passenger transport items. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Tourism Organization, Yearbook of Tourism Statistics, Compendium of Tourism Statistics and data files.\"\n\"ST.INT.XPND.MP.ZS\",\"International tourism, expenditures (% of total imports)\",\"International tourism expenditures are expenditures of international outbound visitors in other countries, including payments to foreign carriers for international transport. These expenditures may include those by residents traveling abroad as same-day visitors, except in cases where these are important enough to justify separate classification. For some countries they do not include expenditures for passenger transport items. Their share in imports is calculated as a ratio to imports of goods and services, which comprise all transactions between residents of a country and the rest of the world involving a change of ownership from nonresidents to residents of general merchandise, goods sent for processing and repairs, nonmonetary gold, and services.\",\"World Development Indicators\",\"World Tourism Organization, Yearbook of Tourism Statistics, Compendium of Tourism Statistics and data files, and IMF and World Bank imports estimates.\"\n\"STL_JP_CROLL\",\"Steel cr coilsheet, $/mt, current$\",\"Cold-rolled coil/sheet (Japan) producers' export contracts (3 to 12 months terms) fob mainly to Asia\",\"Global Economic Monitor (GEM) Commodities\",\"Japan Metal Bulletin, World Bank.\"\n\"STL_JP_HROLL\",\"Steel hr coilsheet, $/mt, current$\",\"Hot-rolled coil/sheet (Japan) producers' export contracts (3 to 12 months terms) fob mainly to Asia\",\"Global Economic Monitor (GEM) Commodities\",\"Japan Metal Bulletin, World Bank.\"\n\"STL_JP_REBAR\",\"Steel, rebar, $/mt, current$\",\"Rebar (concrete Reinforcing bars) (Japan) producers' export contracts (3 to 12 months terms) fob mainly to Asia\",\"Global Economic Monitor (GEM) Commodities\",\"Japan Metal Bulletin, World Bank.\"\n\"STL_JP_WIROD\",\"Steel wire rod, $/mt, current$\",\"Wire ord (Japan) producers' export contracts (3 to 12 months terms) fob mainly to Asia\",\"Global Economic Monitor (GEM) Commodities\",\"Japan Metal Bulletin, World Bank.\"\n\"SUGAR_EU\",\"Sugar, EU, cents/kg, current$\",\"Sugar (EU), European Union negotiated import price for raw unpackaged sugar from African, Caribbean and Pacific (ACP) under Lome Conventions, c.I.f. European ports\",\"Global Economic Monitor (GEM) Commodities\",\"International Monetary Fund; World Bank.\"\n\"SUGAR_US\",\"Sugar, US, cents/kg, current$\",\"Sugar (US), nearby futures contract, c.i.f. \",\"Global Economic Monitor (GEM) Commodities\",\"Bloomberg, World Bank.\"\n\"SUGAR_WLD\",\"Sugar, world, cents/kg, current$\",\"Sugar (world), International Sugar Agreement (ISA) daily price, raw,  f.o.b. and stowed at greater Caribbean ports\",\"Global Economic Monitor (GEM) Commodities\",\"International Sugar Organization; Thomson Reuters Datastream; World Bank.\"\n\"TEA_AVG\",\"Tea, acutions (3) average, cents/kg, current$\",\"Tea , average three auctions, arithmetic average of quotations at Kolkata, Colombo and Mombasa/Nairobi.\",\"Global Economic Monitor (GEM) Commodities\",\"World Bank.\"\n\"TEA_COLOMBO\",\"Tea, Colombo auctions, cents/kg, current$\",\"Tea (Colombo auctions), Sri Lankan origin, all tea, arithmetic average of weekly quotes.\",\"Global Economic Monitor (GEM) Commodities\",\"International Tea Committee; Sri Lanka Tea Board; Tea Broker's Association of London; World Bank.\"\n\"TEA_KOLKATA\",\"Tea, Kokata auctions, cents/kg, current$\",\"Tea (Kolkata auctions), leaf, include excise duty, arithmetic average of weekly quotes.\",\"Global Economic Monitor (GEM) Commodities\",\"International Tea Committee; Tea Board of India; Tea Broker's Association of London; World Bank.\"\n\"TEA_MOMBASA\",\"Tea, Mombasa auctions, cents/kg, current$\",\"Tea (Mombasa/Nairobi auctions), African origin, all tea, arithmetic average of weekly quotes.\",\"Global Economic Monitor (GEM) Commodities\",\"International Tea Committee; African Tea Brokers Ltd.; Tea Broker's Association of London; World Bank.\"\n\"TG.VAL.TOTL.GD.ZS\",\"Merchandise trade (% of GDP)\",\"Merchandise trade as a share of GDP is the sum of merchandise exports and imports divided by the value of GDP, all in current U.S. dollars.\",\"World Development Indicators\",\"World Trade Organization, and World Bank GDP estimates.\"\n\"TIN\",\"Tin, cents/kg, current$\",\"Tin (LME), refined, 99.85% purity, settlement price\",\"Global Economic Monitor (GEM) Commodities\",\"Platts Metals Week, Engineering and Mining Journal; Thomson Reuters Datastream; World Bank.\"\n\"TM.CONC.DIV.NO\",\"Number of product (imports)\",\"Number of products (at SITC, Revision 3, 3-digit group level) imported by country or country grouping; this figure includes only those products that are greater than 100,000 dollars or more than 0.3 per cent of the country’s or country group’s total imports.  The maximum number of products is 261.\",\"Africa Development Indicators\",\"UNCTAD Statistical Office, also reported in the UNCTAD Handbook of Statistics, various issues (http://unctadstat.unctad.org/).\"\n\"TM.CONC.IND.XQ\",\"Import product concentration index\",\"This indicator reflects the Herfindahl-Hirschmann index measure of the degree of import concentration within a country.  The sectoral Hirschmann index is defined as the square root of the sum of the squared shares of exports of each industry in total exports for the region under study.  Takes a value between 0 and 1, with 1 indicating that only a single product is exported.  Higher values indicate that imports are concentrated in fewer sectors.  On the contrary, values closer to 0 reflect a more equal distribution of market shares among importers.  Note that this type of concentration indicator tends to be quite vulnerable to cyclical fluctuations in relative-prices, in a way that commodity price rises make commodity importers look more concentrated.  \",\"Africa Development Indicators\",\"UNCTAD Statistical Office, also reported in the UNCTAD Handbook of Statistics, various issues (http://unctadstat.unctad.org/).\"\n\"TM.DIV.IND.XQ\",\"Import product diversification index\",\"The diversification index signals whether the structure of imports by product of a given country or group of countries differ from the structure of product of the world.  Diversification index that ranges from 0 to 1 reveals the extent of the differences between the structure of trade of the country or country group and the world average. The index value closer to 1 indicates a bigger difference from the world average. It is constructed as the inverse of a Herfindahl index, using disaggregated exports at 4 digits (following the STIC3).  This index is a modified Finger-Kreinin measure of similarity in trade. For more information, please consult the article of Finger, J. M. and M. E. Kreinin (1979), “A measure of ‘export similarity’ and its possible uses” in the Economic Journal , 89: 905-12.\",\"Africa Development Indicators\",\"UNCTAD Statistical Office, also reported in the UNCTAD Handbook of Statistics, various issues (http://unctadstat.unctad.org/).\"\n\"TM.GATS.XD\",\"General Agreement on Trade in Services (GATS) Commitments Index, all service sectors (0 least liberal to 100 most liberal)\",\"This indicator measures the extent of General Agreement on Trade in Services (GATS) commitments for all 155 services sub-sectors as classified by the GATS and in the four modes of the GATS. Each entry in the country’s schedule is assigned scores based on its relative restrictiveness, using a criteria set out by Bernard Hoekman’s methodology.  That resulted in 1,240 scores, ranging from 0 (unbound or no commitments) to 100 (completely liberalized), with an intermediate value of 50 for partial commitments. A simple average of the subsectoral scores were used to generate aggregate sectoral scores (for the 12 main services sectors as classified by the GATS), modes scores, and market access and national treatment scores. The overall 12 GATS commitment index is a simple average of the sectoral indices.  Disaggregated indices are available for Market Access and National Treatment and for twelve subsectors: business services, communication services, construction and engineering services, distribution services, educational services, environmental services, financial services, health services, tourism services, recreational and cultural services, transport services, and other services. \",\"Africa Development Indicators\",\"GATS commitment schedules in the WTO, as scored by the World Bank Institute WTI 2008 team. Scoring and Sectoral weights follow Bernard Hoekman, Tentative First Steps: An assessment of the Uruguay Round Agreement on Services. Finance and Private Sector Dev\"\n\"TM.MRC.NOTX.DV.ZS\",\"Goods (excluding arms) admitted free of tariffs from developing countries (% total merchandise imports excluding arms)\",\"It is the proportion of duty free imports (excluding arms) into developed countries from developing and least developed countries. For the purpose of calculating this indicator, Japan in Asia, Canada and the United States in North America, Australia and New Zealand in Oceania and Iceland, Norway, Switzerland and the EU (25 countries included since 2004) in Europe are considered “developed” regions or areas, following the common accepted practice used for MDG indicators. Developing countries are those not listed as developed or transition countries. The list of least developed countries (LDCs) has been agreed by the General Assembly, on the recommendation of the Committee for Development Policy, Economic and Social Council. \",\"Millennium Development Goals\",\"United Nations Conference on Trade and Development, World Trade Organization, and International Trade Center. Data are available online at: www.mdg-trade.org.\"\n\"TM.MRC.NOTX.LD.ZS\",\"Goods (excluding arms) admitted free of tariffs from least developed countries (% total merchandise imports excluding arms)\",\"It is the proportion of duty free imports (excluding arms) into developed countries from developing and least developed countries. For the purpose of calculating this indicator, Japan in Asia, Canada and the United States in North America, Australia and New Zealand in Oceania and Iceland, Norway, Switzerland and the EU (25 countries included since 2004) in Europe are considered “developed” regions or areas, following the common accepted practice used for MDG indicators. Developing countries are those not listed as developed or transition countries. The list of least developed countries (LDCs) has been agreed by the General Assembly, on the recommendation of the Committee for Development Policy, Economic and Social Council.\",\"Millennium Development Goals\",\"United Nations Conference on Trade and Development, World Trade Organization, and International Trade Center. Data are available online at: www.mdg-trade.org.\"\n\"TM.PRI.MRCH.XD.WB\",\"Merchandise import price index\",\"Total merchandise imports  price index with 1987=100. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TM.PRI.NFSV.XU\",\"Import price index, (nonfactor) services\",\"Measuring changes in the aggregate price level of a country's non-factor services imports c.i.f. over time with 1987 price index=100. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TM.QTY.ENGY.XD.WB\",\"Import volume index, POL and other energy\",\"Petroleum and other energy products imports  volume index with 1987=100. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TM.QTY.FOOD.XD.WB\",\"Import volume index, food\",\"Total food imports  volume index with 1987=100. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TM.QTY.KGDS.XD.WB\",\"Import volume index, capital goods\",\"Capital goods imports  volume index with 1987=100. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TM.QTY.MRCH.XD.WB\",\"Merchandise import volume index\",\"Total merchandise imports  volume index with 1987=100. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TM.QTY.MRCH.XD.WD\",\"Import volume index (2000 = 100)\",\"Import volume indexes are derived from UNCTAD's volume index series and are the ratio of the import value indexes to the corresponding unit value indexes. Unit value indexes are based on data reported by countries that demonstrate consistency under UNCTAD quality controls, supplemented by UNCTAD’s estimates using the previous year’s trade values at the Standard International Trade Classification three-digit level as weights. To improve data coverage, especially for the latest periods, UNCTAD constructs a set of average prices indexes at the three-digit product classification of the Standard International Trade Classification revision 3 using UNCTAD’s Commodity Price Statistics, interna\\uadtional and national sources, and UNCTAD secretariat estimates and calculates unit value indexes at the country level using the current year’s trade values as weights. For economies for which UNCTAD does not publish data, the import volume indexes (lines 73) in the IMF's International Financial Statistics are used.\",\"World Development Indicators\",\"United Nations Conference on Trade and Development, Handbook of Statistics and data files, and International Monetary Fund, International Financial Statistics.\"\n\"TM.QTY.NFCG.XD.WB\",\"Import volume index, other consumer goods\",\"Other consumer goods imports  volume index with 1987=100. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TM.QTY.NFSV.XD\",\"Import volume index, (nonfactor) services\",\"Imports of (non-factor) services. Data; Volume index with 1987=100. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TM.QTY.RAWM.XD.WB\",\"Import volume index, manufactures\",\"Manufacture goods imports  volume index with 1987=100. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TM.QTY.RAWP.XD.WB\",\"Import volume index, primary goods\",\"Primary goods imports  volume index with 1987=100. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TM.QTY.RAWT.XD.WB\",\"Import volume index, intermediate goods\",\"Intermediate goods imports  volume index with 1987=100. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TM.TAX.AGRI.CD.DV\",\"Average tariffs imposed by developed countries on agricultural products from developing countries (%)\",\"It is the average tariffs imposed by developed countries on subsets of selected items (agricultural products, textile and clothing exports) that are deemed to be of interest to developing countries. For the purpose of calculating this indicator, Japan in Asia, Canada and the United States in North America, Australia and New Zealand in Oceania and Iceland, Norway, Switzerland and the EU (25 countries included since 2004) in Europe are considered “developed” regions or areas, following the common accepted practice used for MDG indicators. Developing countries are those not listed as developed or transition countries. The list of least developed countries (LDCs) has been agreed by the General Assembly, on the recommendation of the Committee for Development Policy, Economic and Social Council. Agricultural, clothing and textile groups follow the definition in WTO agreements based on the Harmonized System 1992, transposed to current versions by WTO Secretariat. Agricultural products correspond to Harmonized System 1992, chapters 01 to 24 less fish and fish products (chap. 03); in addition to parts of chapters 29, 33, 35, 38, 41, 43, 50 to 53. Textile is mainly covered in chapters 50 to 60. The bulk of clothing products are found in chapters 61-63.\\n\",\"Millennium Development Goals\",\"United Nations Conference on Trade and Development, World Trade Organization, and International Trade Center. Data are available online at: www.mdg-trade.org.\"\n\"TM.TAX.AGRI.CD.LD\",\"Average tariffs imposed by developed countries on agricultural products from least developed countries (%)\",\"It is the average tariffs imposed by developed countries on subsets of selected items (agricultural products, textile and clothing exports) that are deemed to be of interest to developing countries. For the purpose of calculating this indicator, Japan in Asia, Canada and the United States in North America, Australia and New Zealand in Oceania and Iceland, Norway, Switzerland and the EU (25 countries included since 2004) in Europe are considered “developed” regions or areas, following the common accepted practice used for MDG indicators. Developing countries are those not listed as developed or transition countries. The list of least developed countries (LDCs) has been agreed by the General Assembly, on the recommendation of the Committee for Development Policy, Economic and Social Council. Agricultural, clothing and textile groups follow the definition in WTO agreements based on the Harmonized System 1992, transposed to current versions by WTO Secretariat. Agricultural products correspond to Harmonized System 1992, chapters 01 to 24 less fish and fish products (chap. 03); in addition to parts of chapters 29, 33, 35, 38, 41, 43, 50 to 53. Textile is mainly covered in chapters 50 to 60. The bulk of clothing products are found in chapters 61-63.\",\"Millennium Development Goals\",\"United Nations Conference on Trade and Development, World Trade Organization, and International Trade Center. Data are available online at: www.mdg-trade.org.\"\n\"TM.TAX.CLTH.CD.DV\",\"Average tariffs imposed by developed countries on clothing products from developing countries (%)\",\"It is the average tariffs imposed by developed countries on subsets of selected items (agricultural products, textile and clothing exports) that are deemed to be of interest to developing countries. For the purpose of calculating this indicator, Japan in Asia, Canada and the United States in North America, Australia and New Zealand in Oceania and Iceland, Norway, Switzerland and the EU (25 countries included since 2004) in Europe are considered “developed” regions or areas, following the common accepted practice used for MDG indicators. Developing countries are those not listed as developed or transition countries. The list of least developed countries (LDCs) has been agreed by the General Assembly, on the recommendation of the Committee for Development Policy, Economic and Social Council. Agricultural, clothing and textile groups follow the definition in WTO agreements based on the Harmonized System 1992, transposed to current versions by WTO Secretariat. Agricultural products correspond to Harmonized System 1992, chapters 01 to 24 less fish and fish products (chap. 03); in addition to parts of chapters 29, 33, 35, 38, 41, 43, 50 to 53. Textile is mainly covered in chapters 50 to 60. The bulk of clothing products are found in chapters 61-63.\\n\",\"Millennium Development Goals\",\"United Nations Conference on Trade and Development, World Trade Organization, and International Trade Center. Data are available online at: www.mdg-trade.org.\"\n\"TM.TAX.CLTH.CD.LD\",\"Average tariffs imposed by developed countries on clothing products from least developed countries (%)\",\"It is the average tariffs imposed by developed countries on subsets of selected items (agricultural products, textile and clothing exports) that are deemed to be of interest to developing countries. For the purpose of calculating this indicator, Japan in Asia, Canada and the United States in North America, Australia and New Zealand in Oceania and Iceland, Norway, Switzerland and the EU (25 countries included since 2004) in Europe are considered “developed” regions or areas, following the common accepted practice used for MDG indicators. Developing countries are those not listed as developed or transition countries. The list of least developed countries (LDCs) has been agreed by the General Assembly, on the recommendation of the Committee for Development Policy, Economic and Social Council. Agricultural, clothing and textile groups follow the definition in WTO agreements based on the Harmonized System 1992, transposed to current versions by WTO Secretariat. Agricultural products correspond to Harmonized System 1992, chapters 01 to 24 less fish and fish products (chap. 03); in addition to parts of chapters 29, 33, 35, 38, 41, 43, 50 to 53. Textile is mainly covered in chapters 50 to 60. The bulk of clothing products are found in chapters 61-63.\\n\",\"Millennium Development Goals\",\"United Nations Conference on Trade and Development, World Trade Organization, and International Trade Center. Data are available online at: www.mdg-trade.org.\"\n\"TM.TAX.MANF.B.ZS\",\"Tariff barriers, share of lines bound, manufactured products (%)\",\"This indicator reflects the total share of lines in the country’s tariff schedule bound subject to WTO Negotiation Agreements. Expressed as a percentage of total lines.  As calculated by the World Bank Institute WTI 2008 team. \",\"Africa Development Indicators\",\"UNCTAD TRAINS database through WITS until 2006, then ITC database.\"\n\"TM.TAX.MANF.BC.ZS\",\"Binding coverage, manufactured products (%)\",\"Binding coverage is the percentage of product lines with an agreed bound rate. Bound rates result from trade negotiations incorporated into a country's schedule of concessions and are thus enforceable. Manufactured products are commodities classified in SITC revision 3 sections 5-8 excluding division 68.\",\"World Development Indicators\",\"World Bank staff estimates using the World Integrated Trade Solution system, based on data from World Trade Organization.\"\n\"TM.TAX.MANF.BR.ZS\",\"Bound rate, simple mean, manufactured products (%)\",\"Simple mean bound rate is the unweighted average of all the lines in the tariff schedule in which bound rates have been set. Bound rates result from trade negotiations incorporated into a country's schedule of concessions and are thus enforceable. Manufactured products are commodities classified in SITC revision 3 sections 5-8 excluding division 68.\",\"World Development Indicators\",\"World Bank staff estimates using the World Integrated Trade Solution system, based on data from World Trade Organization.\"\n\"TM.TAX.MANF.DM.ZS\",\"Tariff barriers, dispersion around the mean, manufactured products (%)\",\"This indicator is calculated as the coefficient of variation of the applied tariff rates including preferential rates that a country applies to its trading partners available at HS 6-digit product level in a country’s customs schedule.  As calculated by the World Bank Institute WTI 2008 team. \",\"Africa Development Indicators\",\"UNCTAD TRAINS database through WITS until 2006, then ITC database.\"\n\"TM.TAX.MANF.DP.ZS\",\"Tariff barriers, share of lines domestic peaks, manufactured products (%)\",\"This indicator reflects the total share of lines in the country’s MFN tariff schedule with the value above 3 times the simple average tariff.  Expressed as a percentage of total lines.  These shares are also reported disaggregated for agricultural goods and non-agricultural goods. \",\"Africa Development Indicators\",\"United Nations Conference on Trade and Development (UNCTD) and the World Trade Organization.\"\n\"TM.TAX.MANF.IP.ZS\",\"Share of tariff lines with international peaks, manufactured products (%)\",\"Share of tariff lines with international peaks is the share of lines in the tariff schedule with tariff rates that exceed 15 percent. It provides an indication of how selectively tariffs are applied. Manufactured products are commodities classified in SITC revision 3 sections 5-8 excluding division 68.\",\"World Development Indicators\",\"World Bank staff estimates using the World Integrated Trade Solution system, based on data from United Nations Conference on Trade and Development's Trade Analysis and Information System (TRAINS) database.\"\n\"TM.TAX.MANF.SM.AR.ZS\",\"Tariff rate, applied, simple mean, manufactured products (%)\",\"Simple mean applied tariff is the unweighted average of effectively applied rates for all products subject to tariffs calculated for all traded goods. Data are classified using the Harmonized System of trade at the six- or eight-digit level. Tariff line data were matched to Standard International Trade Classification (SITC) revision 3 codes to define commodity groups. Effectively applied tariff rates at the six- and eight-digit product level are averaged for products in each commodity group. When the effectively applied rate is unavailable, the most favored nation rate is used instead. To the extent possible, specific rates have been converted to their ad valorem equivalent rates and have been included in the calculation of simple mean tariffs. Manufactured products are commodities classified in SITC revision 3 sections 5-8 excluding division 68.\",\"World Development Indicators\",\"World Bank staff estimates using the World Integrated Trade Solution system, based on data from United Nations Conference on Trade and Development's Trade Analysis and Information System (TRAINS) database and the World Trade Organization’s (WTO) Integrated Data Base (IDB) and Consolidated Tariff Schedules (CTS) database.\"\n\"TM.TAX.MANF.SM.FN.ZS\",\"Tariff rate, most favored nation, simple mean, manufactured products (%)\",\"Simple mean most favored nation tariff rate is the unweighted average of most favored nation rates for all products subject to tariffs calculated for all traded goods. Data are classified using the Harmonized System of trade at the six- or eight-digit level. Tariff line data were matched to Standard International Trade Classification (SITC) revision 3 codes to define commodity groups. Manufactured products are commodities classified in SITC revision 3 sections 5-8 excluding division 68.\",\"World Development Indicators\",\"World Bank staff estimates using the World Integrated Trade Solution system, based on data from United Nations Conference on Trade and Development's Trade Analysis and Information System (TRAINS) database and the World Trade Organization’s (WTO) Integrated Data Base (IDB) and Consolidated Tariff Schedules (CTS) database.\"\n\"TM.TAX.MANF.SR.ZS\",\"Share of tariff lines with specific rates, manufactured products (%)\",\"Share of tariff lines with specific rates is the share of lines in the tariff schedule that are set on a per unit basis or that combine ad valorem and per unit rates. It shows the extent to which countries use tariffs based on physical quantities or other, non-ad valorem measures. Manufactured products are commodities classified in SITC revision 3 sections 5-8 excluding division 68.\",\"World Development Indicators\",\"World Bank staff estimates using the World Integrated Trade Solution system, based on data from United Nations Conference on Trade and Development's Trade Analysis and Information System (TRAINS) database.\"\n\"TM.TAX.MANF.WM.AR.ZS\",\"Tariff rate, applied, weighted mean, manufactured products (%)\",\"Weighted mean applied tariff is the average of effectively applied rates weighted by the product import shares corresponding to each partner country. Data are classified using the Harmonized System of trade at the six- or eight-digit level. Tariff line data were matched to Standard International Trade Classification (SITC) revision 3 codes to define commodity groups and import weights. To the extent possible, specific rates have been converted to their ad valorem equivalent rates and have been included in the calculation of weighted mean tariffs. Import weights were calculated using the United Nations Statistics Division's\\nCommodity Trade (Comtrade) database. Effectively applied tariff rates at the six- and eight-digit product level are averaged for products in each commodity group. When the effectively applied rate is unavailable, the most favored nation rate is used instead. Manufactured products are commodities classified in SITC revision 3 sections 5-8 excluding division 68.\",\"World Development Indicators\",\"World Bank staff estimates using the World Integrated Trade Solution system, based on data from United Nations Conference on Trade and Development's Trade Analysis and Information System (TRAINS) database and the World Trade Organization’s (WTO) Integrated Data Base (IDB) and Consolidated Tariff Schedules (CTS) database.\"\n\"TM.TAX.MANF.WM.FN.ZS\",\"Tariff rate, most favored nation, weighted mean, manufactured products (%)\",\"Weighted mean most favored nations tariff is the average of most favored nation rates weighted by the product import shares corresponding to each partner country. Data are classified using the Harmonized System of trade at the six- or eight-digit level. Tariff line data were matched to Standard International Trade Classification (SITC) revision 3 codes to define commodity groups and import weights. Import weights were calculated using the United Nations Statistics Division's Commodity Trade (Comtrade) database. Manufactured products are commodities classified in SITC revision 3 sections 5-8 excluding division 68.\",\"World Development Indicators\",\"World Bank staff estimates using the World Integrated Trade Solution system, based on data from United Nations Conference on Trade and Development's Trade Analysis and Information System (TRAINS) database and the World Trade Organization’s (WTO) Integrated Data Base (IDB) and Consolidated Tariff Schedules (CTS) database.\"\n\"TM.TAX.MRCH.B.ZS\",\"Tariff barriers, share of lines bound, all products (%)\",\"This indicator reflects the total share of lines in the country’s tariff schedule bound subject to WTO Negotiation Agreements. Expressed as a percentage of total lines.  As calculated by the World Bank Institute WTI 2008 team. \",\"Africa Development Indicators\",\"UNCTAD TRAINS database through WITS until 2006, then ITC database.\"\n\"TM.TAX.MRCH.BC.ZS\",\"Binding coverage, all products (%)\",\"Binding coverage is the percentage of product lines with an agreed bound rate. Bound rates result from trade negotiations incorporated into a country's schedule of concessions and are thus enforceable.\",\"World Development Indicators\",\"World Bank staff estimates using the World Integrated Trade Solution system, based on data from World Trade Organization.\"\n\"TM.TAX.MRCH.BR.ZS\",\"Bound rate, simple mean, all products (%)\",\"Simple mean bound rate is the unweighted average of all the lines in the tariff schedule in which bound rates have been set. Bound rates result from trade negotiations incorporated into a country's schedule of concessions and are thus enforceable.\",\"World Development Indicators\",\"World Bank staff estimates using the World Integrated Trade Solution system, based on data from World Trade Organization.\"\n\"TM.TAX.MRCH.DM.ZS\",\"Tariff barriers, dispersion around the mean, all products (%)\",\"This indicator is calculated as the coefficient of variation of the applied tariff rates including preferential rates that a country applies to its trading partners available at HS 6-digit product level in a country’s customs schedule.  As calculated by the World Bank Institute WTI 2008 team. \",\"Africa Development Indicators\",\"UNCTAD TRAINS database through WITS until 2006, then ITC database.\"\n\"TM.TAX.MRCH.DP.ZS\",\"Tariff barriers, share of lines domestic peaks, all products (%)\",\"This indicator reflects the total share of lines in the country’s MFN tariff schedule with the value above 3 times the simple average tariff.  Expressed as a percentage of total lines.  These shares are also reported disaggregated for agricultural goods and non-agricultural goods. \",\"Africa Development Indicators\",\"United Nations Conference on Trade and Development (UNCTD) and the World Trade Organization.\"\n\"TM.TAX.MRCH.IP.ZS\",\"Share of tariff lines with international peaks, all products (%)\",\"Share of tariff lines with international peaks is the share of lines in the tariff schedule with tariff rates that exceed 15 percent. It provides an indication of how selectively tariffs are applied.\",\"World Development Indicators\",\"World Bank staff estimates using the World Integrated Trade Solution system, based on data from United Nations Conference on Trade and Development's Trade Analysis and Information System (TRAINS) database.\"\n\"TM.TAX.MRCH.SM.AR.ZS\",\"Tariff rate, applied, simple mean, all products (%)\",\"Simple mean applied tariff is the unweighted average of effectively applied rates for all products subject to tariffs calculated for all traded goods. Data are classified using the Harmonized System of trade at the six- or eight-digit level. Tariff line data were matched to Standard International Trade Classification (SITC) revision 3 codes to define commodity groups. Effectively applied tariff rates at the six- and eight-digit product level are averaged for products in each commodity group. When the effectively applied rate is unavailable, the most favored nation rate is used instead. To the extent possible, specific rates have been converted to their ad valorem equivalent rates and have been included in the calculation of simple mean tariffs.\",\"World Development Indicators\",\"World Bank staff estimates using the World Integrated Trade Solution system, based on data from United Nations Conference on Trade and Development's Trade Analysis and Information System (TRAINS) database and the World Trade Organization’s (WTO) Integrated Data Base (IDB) and Consolidated Tariff Schedules (CTS) database.\"\n\"TM.TAX.MRCH.SM.FN.ZS\",\"Tariff rate, most favored nation, simple mean, all products (%)\",\"Simple mean most favored nation tariff rate is the unweighted average of most favored nation rates for all products subject to tariffs calculated for all traded goods. Data are classified using the Harmonized System of trade at the six- or eight-digit level. Tariff line data were matched to Standard International Trade Classification (SITC) revision 3 codes to define commodity groups.\",\"World Development Indicators\",\"World Bank staff estimates using the World Integrated Trade Solution system, based on data from United Nations Conference on Trade and Development's Trade Analysis and Information System (TRAINS) database and the World Trade Organization’s (WTO) Integrated Data Base (IDB) and Consolidated Tariff Schedules (CTS) database.\"\n\"TM.TAX.MRCH.SR.ZS\",\"Share of tariff lines with specific rates, all products (%)\",\"Share of tariff lines with specific rates is the share of lines in the tariff schedule that are set on a per unit basis or that combine ad valorem and per unit rates. It shows the extent to which countries use tariffs based on physical quantities or other, non-ad valorem measures.\",\"World Development Indicators\",\"World Bank staff estimates using the World Integrated Trade Solution system, based on data from United Nations Conference on Trade and Development's Trade Analysis and Information System (TRAINS) database.\"\n\"TM.TAX.MRCH.WM.AR.ZS\",\"Tariff rate, applied, weighted mean, all products (%)\",\"Weighted mean applied tariff is the average of effectively applied rates weighted by the product import shares corresponding to each partner country. Data are classified using the Harmonized System of trade at the six- or eight-digit level. Tariff line data were matched to Standard International Trade Classification (SITC) revision 3 codes to define commodity groups and import weights. To the extent possible, specific rates have been converted to their ad valorem equivalent rates and have been included in the calculation of weighted mean tariffs. Import weights were calculated using the United Nations Statistics Division's Commodity Trade (Comtrade) database. Effectively applied tariff rates at the six- and eight-digit product level are averaged for products in each commodity group. When the effectively applied rate is unavailable, the most favored nation rate is used instead.\",\"World Development Indicators\",\"World Bank staff estimates using the World Integrated Trade Solution system, based on data from United Nations Conference on Trade and Development's Trade Analysis and Information System (TRAINS) database and the World Trade Organization’s (WTO) Integrated Data Base (IDB) and Consolidated Tariff Schedules (CTS) database.\"\n\"TM.TAX.MRCH.WM.FN.ZS\",\"Tariff rate, most favored nation, weighted mean, all products (%)\",\"Weighted mean most favored nations tariff is the average of most favored nation rates weighted by the product import shares corresponding to each partner country. Data are classified using the Harmonized System of trade at the six- or eight-digit level. Tariff line data were matched to Standard International Trade Classification (SITC) revision 3 codes to define commodity groups and import weights. Import weights were calculated using the United Nations Statistics Division's Commodity Trade (Comtrade) database.\",\"World Development Indicators\",\"World Bank staff estimates using the World Integrated Trade Solution system, based on data from United Nations Conference on Trade and Development's Trade Analysis and Information System (TRAINS) database and the World Trade Organization’s (WTO) Integrated Data Base (IDB) and Consolidated Tariff Schedules (CTS) database.\"\n\"TM.TAX.TCOM.B.ZS\",\"Tariff barriers, share of lines bound, primary products (%)\",\"This indicator reflects the total share of lines in the country’s tariff schedule bound subject to WTO Negotiation Agreements. Expressed as a percentage of total lines.  As calculated by the World Bank Institute WTI 2008 team. \",\"Africa Development Indicators\",\"UNCTAD TRAINS database through WITS until 2006, then ITC database.\"\n\"TM.TAX.TCOM.BC.ZS\",\"Binding coverage, primary products (%)\",\"Binding coverage is the percentage of product lines with an agreed bound rate. Bound rates result from trade negotiations incorporated into a country's schedule of concessions and are thus enforceable. Primary products are commodities classified in SITC revision 3 sections 0-4 plus division 68 (nonferrous metals).\",\"World Development Indicators\",\"World Bank staff estimates using the World Integrated Trade Solution system, based on data from World Trade Organization.\"\n\"TM.TAX.TCOM.BR.ZS\",\"Bound rate, simple mean, primary products (%)\",\"Simple mean bound rate is the unweighted average of all the lines in the tariff schedule in which bound rates have been set. Bound rates result from trade negotiations incorporated into a country's schedule of concessions and are thus enforceable. Primary products are commodities classified in SITC revision 3 sections 0-4 plus division 68 (nonferrous metals).\",\"World Development Indicators\",\"World Bank staff estimates using the World Integrated Trade Solution system, based on data from World Trade Organization.\"\n\"TM.TAX.TCOM.DM.ZS\",\"Tariff barriers, dispersion around the mean, primary products (%)\",\"This indicator is calculated as the coefficient of variation of the applied tariff rates including preferential rates that a country applies to its trading partners available at HS 6-digit product level in a country’s customs schedule.  As calculated by the World Bank Institute WTI 2008 team. \",\"Africa Development Indicators\",\"UNCTAD TRAINS database through WITS until 2006, then ITC database.\"\n\"TM.TAX.TCOM.DP.ZS\",\"Tariff barriers, share of lines domestic peaks, primary (%)\",\"This indicator reflects the total share of lines in the country’s MFN tariff schedule with the value above 3 times the simple average tariff.  Expressed as a percentage of total lines.  These shares are also reported disaggregated for agricultural goods and non-agricultural goods. \",\"Africa Development Indicators\",\"United Nations Conference on Trade and Development (UNCTD) and the World Trade Organization.\"\n\"TM.TAX.TCOM.IP.ZS\",\"Share of tariff lines with international peaks, primary products (%)\",\"Share of tariff lines with international peaks is the share of lines in the tariff schedule with tariff rates that exceed 15 percent. It provides an indication of how selectively tariffs are applied. Primary products are commodities classified in SITC revision 3 sections 0-4 plus division 68 (nonferrous metals).\",\"World Development Indicators\",\"World Bank staff estimates using the World Integrated Trade Solution system, based on data from United Nations Conference on Trade and Development's Trade Analysis and Information System (TRAINS) database.\"\n\"TM.TAX.TCOM.SM.AR.ZS\",\"Tariff rate, applied, simple mean, primary products (%)\",\"Simple mean applied tariff is the unweighted average of effectively applied rates for all products subject to tariffs calculated for all traded goods. Data are classified using the Harmonized System of trade at the six- or eight-digit level. Tariff line data were matched to Standard International Trade Classification (SITC) revision 3 codes to define commodity groups. Effectively applied tariff rates at the six- and eight-digit product level are averaged for products in each commodity group. When the effectively applied rate is unavailable, the most favored nation rate is used instead. To the extent possible, specific rates have been converted to their ad valorem equivalent rates and have been included in the calculation of simple mean tariffs. Primary products are commodities classified in SITC revision 3 sections 0-4 plus division 68 (nonferrous metals).\",\"World Development Indicators\",\"World Bank staff estimates using the World Integrated Trade Solution system, based on data from United Nations Conference on Trade and Development's Trade Analysis and Information System (TRAINS) database and the World Trade Organization’s (WTO) Integrated Data Base (IDB) and Consolidated Tariff Schedules (CTS) database.\"\n\"TM.TAX.TCOM.SM.FN.ZS\",\"Tariff rate, most favored nation, simple mean, primary products (%)\",\"Simple mean most favored nation tariff rate is the unweighted average of most favored nation rates for all products subject to tariffs calculated for all traded goods. Data are classified using the Harmonized System of trade at the six- or eight-digit level. Tariff line data were matched to Standard International Trade Classification (SITC) revision 3 codes to define commodity groups. Primary products are commodities classified in SITC revision 3 sections 0-4 plus division 68 (nonferrous metals).\",\"World Development Indicators\",\"World Bank staff estimates using the World Integrated Trade Solution system, based on data from United Nations Conference on Trade and Development's Trade Analysis and Information System (TRAINS) database and the World Trade Organization’s (WTO) Integrated Data Base (IDB) and Consolidated Tariff Schedules (CTS) database.\"\n\"TM.TAX.TCOM.SR.ZS\",\"Share of tariff lines with specific rates, primary products (%)\",\"Share of tariff lines with specific rates is the share of lines in the tariff schedule that are set on a per unit basis or that combine ad valorem and per unit rates. It shows the extent to which countries use tariffs based on physical quantities or other, non-ad valorem measures. Primary products are commodities classified in SITC revision 3 sections 0-4 plus division 68 (nonferrous metals).\",\"World Development Indicators\",\"World Bank staff estimates using the World Integrated Trade Solution system, based on data from United Nations Conference on Trade and Development's Trade Analysis and Information System (TRAINS) database.\"\n\"TM.TAX.TCOM.WM.AR.ZS\",\"Tariff rate, applied, weighted mean, primary products (%)\",\"Weighted mean applied tariff is the average of effectively applied rates weighted by the product import shares corresponding to each partner country. Data are classified using the Harmonized System of trade at the six- or eight-digit level. Tariff line data were matched to Standard International Trade Classification (SITC) revision 3 codes to define commodity groups and import weights. To the extent possible, specific rates have been converted to their ad valorem equivalent rates and have been included in the calculation of weighted mean tariffs. Import weights were calculated using the United Nations Statistics Division's Commodity Trade (Comtrade) database. Effectively applied tariff rates at the six- and eight-digit product level are averaged for products in each commodity group. When the effectively applied rate is unavailable, the most favored nation rate is used instead. Primary products are commodities classified in SITC revision 3 sections 0-4 plus division 68 (nonferrous metals).\",\"World Development Indicators\",\"World Bank staff estimates using the World Integrated Trade Solution system, based on data from United Nations Conference on Trade and Development's Trade Analysis and Information System (TRAINS) database and the World Trade Organization’s (WTO) Integrated Data Base (IDB) and Consolidated Tariff Schedules (CTS) database.\"\n\"TM.TAX.TCOM.WM.FN.ZS\",\"Tariff rate, most favored nation, weighted mean, primary products (%)\",\"Weighted mean most favored nations tariff is the average of most favored nation rates weighted by the product import shares corresponding to each partner country. Data are classified using the Harmonized System of trade at the six- or eight-digit level. Tariff line data were matched to Standard International Trade Classification (SITC) revision 3 codes to define commodity groups and import weights. Import weights were calculated using the United Nations Statistics Division's Commodity Trade (Comtrade) database. Primary products are commodities classified in SITC revision 3 sections 0-4 plus division 68 (nonferrous metals).\",\"World Development Indicators\",\"World Bank staff estimates using the World Integrated Trade Solution system, based on data from United Nations Conference on Trade and Development's Trade Analysis and Information System (TRAINS) database and the World Trade Organization’s (WTO) Integrated Data Base (IDB) and Consolidated Tariff Schedules (CTS) database.\"\n\"TM.TAX.TXTL.CD.DV\",\"Average tariffs imposed by developed countries on textile products from developing countries (%)\",\"It is the average tariffs imposed by developed countries on subsets of selected items (agricultural products, textile and clothing exports) that are deemed to be of interest to developing countries. For the purpose of calculating this indicator, Japan in Asia, Canada and the United States in North America, Australia and New Zealand in Oceania and Iceland, Norway, Switzerland and the EU (25 countries included since 2004) in Europe are considered “developed” regions or areas, following the common accepted practice used for MDG indicators. Developing countries are those not listed as developed or transition countries. The list of least developed countries (LDCs) has been agreed by the General Assembly, on the recommendation of the Committee for Development Policy, Economic and Social Council. Agricultural, clothing and textile groups follow the definition in WTO agreements based on the Harmonized System 1992, transposed to current versions by WTO Secretariat. Agricultural products correspond to Harmonized System 1992, chapters 01 to 24 less fish and fish products (chap. 03); in addition to parts of chapters 29, 33, 35, 38, 41, 43, 50 to 53. Textile is mainly covered in chapters 50 to 60. The bulk of clothing products are found in chapters 61-63.\\n\",\"Millennium Development Goals\",\"United Nations Conference on Trade and Development, World Trade Organization, and International Trade Center. Data are available online at: www.mdg-trade.org.\"\n\"TM.TAX.TXTL.CD.LD\",\"Average tariffs imposed by developed countries on textile products from least developed countries (%)\",\"It is the average tariffs imposed by developed countries on subsets of selected items (agricultural products, textile and clothing exports) that are deemed to be of interest to developing countries. For the purpose of calculating this indicator, Japan in Asia, Canada and the United States in North America, Australia and New Zealand in Oceania and Iceland, Norway, Switzerland and the EU (25 countries included since 2004) in Europe are considered “developed” regions or areas, following the common accepted practice used for MDG indicators. Developing countries are those not listed as developed or transition countries. The list of least developed countries (LDCs) has been agreed by the General Assembly, on the recommendation of the Committee for Development Policy, Economic and Social Council. Agricultural, clothing and textile groups follow the definition in WTO agreements based on the Harmonized System 1992, transposed to current versions by WTO Secretariat. Agricultural products correspond to Harmonized System 1992, chapters 01 to 24 less fish and fish products (chap. 03); in addition to parts of chapters 29, 33, 35, 38, 41, 43, 50 to 53. Textile is mainly covered in chapters 50 to 60. The bulk of clothing products are found in chapters 61-63.\\n\",\"Millennium Development Goals\",\"United Nations Conference on Trade and Development, World Trade Organization, and International Trade Center. Data are available online at: www.mdg-trade.org.\"\n\"TM.VAL.AGRI.ZS.UN\",\"Agricultural raw materials imports (% of merchandise imports)\",\"Agricultural raw materials comprise SITC section 2 (crude materials except fuels) excluding divisions 22, 27 (crude fertilizers and minerals excluding coal, petroleum, and precious stones), and 28 (metalliferous ores and scrap).\",\"World Development Indicators\",\"World Bank staff estimates from the Comtrade database maintained by the United Nations Statistics Division.\"\n\"TM.VAL.ENGY.CD.WB\",\"POL and other energy imports (current US$)\",\"Petroleum and energy products imports in current US dollars. Values are on cif (includes freight and insurance costs). \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TM.VAL.ENGY.KD.WB\",\"POL and other energy imports (constant US$)\",\"Petroleum and energy products imports, cif (includes freight and insurance costs) in 1987 constant US dollars. \",\"Africa Development Indicators\",\"\\\"World Bank country economists.\\r\\\"\"\n\"TM.VAL.FOOD.CD.WB\",\"Food imports (current US$)\",\"Food imports, cif (includes freight and insurance costs) in current US dollars.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TM.VAL.FOOD.KD.WB\",\"Food imports (constant US$)\",\"Food imports, cif (includes freight and insurance costs) in 1987 constant US dollars. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TM.VAL.FOOD.ZS.UN\",\"Food imports (% of merchandise imports)\",\"Food comprises the commodities in SITC sections 0 (food and live animals), 1 (beverages and tobacco), and 4 (animal and vegetable oils and fats) and SITC division 22 (oil seeds, oil nuts, and oil kernels).\",\"World Development Indicators\",\"World Bank staff estimates from the Comtrade database maintained by the United Nations Statistics Division.\"\n\"TM.VAL.FUEL.ZS.UN\",\"Fuel imports (% of merchandise imports)\",\"Fuels comprise the commodities in SITC section 3 (mineral fuels).\",\"World Development Indicators\",\"World Bank staff estimates from the Comtrade database maintained by the United Nations Statistics Division.\"\n\"TM.VAL.ICTG.ZS.UN\",\"ICT goods imports (% total goods imports)\",\"Information and communication technology goods imports include telecommunications, audio and video, computer and related equipment; electronic components; and other information and communication technology goods. Software is excluded.\",\"World Development Indicators\",\"United Nations Conference on Trade and Development's UNCTADstat database at http://unctadstat.unctad.org/ReportFolders/reportFolders.aspx.\"\n\"TM.VAL.INSF.ZS.WT\",\"Insurance and financial services (% of commercial service imports)\",\"Insurance and financial services cover freight insurance on goods imported and other direct insurance such as life insurance; financial intermediation services such as commissions, foreign exchange transactions, and brokerage services; and auxiliary services such as financial market operational and regulatory services.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"TM.VAL.KGDS.CD.WB\",\"Capital goods imports (current US$)\",\"Imports of capital goods in current US dollars. Values are on cif (includes freight and insurance costs). \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TM.VAL.KGDS.KD.WB\",\"Capital goods imports (constant US$)\",\"Imports of capital goods, cif (includes freight and insurance costs) in 1987 constant US dollars. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TM.VAL.MANF.ZS.UN\",\"Manufactures imports (% of merchandise imports)\",\"Manufactures comprise the commodities in SITC sections 5 (chemicals), 6 (basic manufactures), 7 (machinery and transport equipment), and 8 (miscellaneous manufactured goods), excluding division 68 (nonferrous metals).\",\"World Development Indicators\",\"World Bank staff estimates from the Comtrade database maintained by the United Nations Statistics Division.\"\n\"TM.VAL.MMTL.ZS.UN\",\"Ores and metals imports (% of merchandise imports)\",\"Ores and metals comprise commodities in SITC sections 27 (crude fertilizer, minerals nes); 28 (metalliferous ores, scrap); and 68 (non-ferrous metals).\",\"World Development Indicators\",\"World Bank staff estimates from the Comtrade database maintained by the United Nations Statistics Division.\"\n\"TM.VAL.MRCH.AL.ZS\",\"Merchandise imports from economies in the Arab World (% of total merchandise imports)\",\"Merchandise imports from economies in the Arab World are the sum of merchandise imports by the reporting economy from economies in the Arab World. Data are expressed as a percentage of total merchandise imports by the economy. Data are computed only if at least half of the economies in the partner country group had non-missing data.\",\"World Development Indicators\",\"World Bank staff estimates based data from International Monetary Fund's Direction of Trade database.\"\n\"TM.VAL.MRCH.CD.WB\",\"Merchandise imports, WB (current US$)\",\"Total merchandise imports, cif (includes freight and insurance costs) in current US dollars. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TM.VAL.MRCH.CD.WT\",\"Merchandise imports (current US$)\",\"Merchandise imports show the c.i.f. value of goods received from the rest of the world valued in current U.S. dollars.\",\"World Development Indicators\",\"World Trade Organization.\"\n\"TM.VAL.MRCH.HI.ZS\",\"Merchandise imports from high-income economies (% of total merchandise imports)\",\"Merchandise imports from high-income economies are the sum of merchandise imports by the reporting economy from high-income economies according to the World Bank classification of economies. Data are expressed as a percentage of total merchandise imports by the economy. Data are computed only if at least half of the economies in the partner country group had non-missing data.\",\"World Development Indicators\",\"World Bank staff estimates based data from International Monetary Fund's Direction of Trade database.\"\n\"TM.VAL.MRCH.KD.WB\",\"Merchandise imports (constant US$)\",\"Total merchandise imports, cif (includes freight and insurance costs) in 1987 constant US dollars. \",\"Africa Development Indicators\",\"World Bank country economists. \"\n\"TM.VAL.MRCH.OR.ZS\",\"Merchandise imports from low- and middle-income economies outside region (% of total merchandise imports)\",\"Merchandise imports from low- and middle-income economies outside region are the sum of merchandise imports by the reporting economy from other low- and middle-income economies in other World Bank regions according to the World Bank classification of economies. Data are in current U.S. dollars. Data are computed only if at least half of the economies in the partner country group had non-missing data.\",\"World Development Indicators\",\"World Bank staff estimates based data from International Monetary Fund's Direction of Trade database.\"\n\"TM.VAL.MRCH.R1.ZS\",\"Merchandise imports from low- and middle-income economies in East Asia & Pacific (% of total merchandise imports)\",\"Merchandise imports from low- and middle-income economies in East Asia and Pacific are the sum of merchandise imports by the reporting economy from low- and middle-income economies in the East Asia and Pacific region according to the World Bank classification of economies. Data are expressed as a percentage of total merchandise imports by the economy. Data are computed only if at least half of the economies in the partner country group had non-missing data.\",\"World Development Indicators\",\"World Bank staff estimates based data from International Monetary Fund's Direction of Trade database.\"\n\"TM.VAL.MRCH.R2.ZS\",\"Merchandise imports from low- and middle-income economies in Europe & Central Asia (% of total merchandise imports)\",\"Merchandise imports from low- and middle-income economies in Europe and Central Asia are the sum of merchandise imports by the reporting economy from low- and middle-income economies in the Europe and Central Asia region according to the World Bank classification of economies. Data are expressed as a percentage of total merchandise imports by the economy. Data are computed only if at least half of the economies in the partner country group had non-missing data.\",\"World Development Indicators\",\"World Bank staff estimates based data from International Monetary Fund's Direction of Trade database.\"\n\"TM.VAL.MRCH.R3.ZS\",\"Merchandise imports from low- and middle-income economies in Latin America & the Caribbean (% of total merchandise imports)\",\"Merchandise imports from low- and middle-income economies in Latin America and the Caribbean are the sum of merchandise imports by the reporting economy from low- and middle-income economies in the Latin America and the Caribbean region according to the World Bank classification of economies. Data are expressed as a percentage of total merchandise imports by the economy. Data are computed only if at least half of the economies in the partner country group had non-missing data.\",\"World Development Indicators\",\"World Bank staff estimates based data from International Monetary Fund's Direction of Trade database.\"\n\"TM.VAL.MRCH.R4.ZS\",\"Merchandise imports from low- and middle-income economies in Middle East & North Africa (% of total merchandise imports)\",\"Merchandise imports from low- and middle-income economies in Middle East and North Africa are the sum of merchandise imports by the reporting economy from low- and middle-income economies in the Middle East and North Africa region according to the World Bank classification of economies. Data are expressed as a percentage of total merchandise imports by the economy. Data are computed only if at least half of the economies in the partner country group had non-missing data.\",\"World Development Indicators\",\"World Bank staff estimates based data from International Monetary Fund's Direction of Trade database.\"\n\"TM.VAL.MRCH.R5.ZS\",\"Merchandise imports from low- and middle-income economies in South Asia (% of total merchandise imports)\",\"Merchandise imports from low- and middle-income economies in South Asia are the sum of merchandise imports by the reporting economy from low- and middle-income economies in the South Asia region according to the World Bank classification of economies. Data are expressed as a percentage of total merchandise imports by the economy. Data are computed only if at least half of the economies in the partner country group had non-missing data.\",\"World Development Indicators\",\"World Bank staff estimates based data from International Monetary Fund's Direction of Trade database.\"\n\"TM.VAL.MRCH.R6.ZS\",\"Merchandise imports from low- and middle-income economies in Sub-Saharan Africa (% of total merchandise imports)\",\"Merchandise imports from low- and middle-income economies in Sub-Saharan Africa are the sum of merchandise imports by the reporting economy from low- and middle-income economies in the Sub-Saharan Africa region according to the World Bank classification of economies. Data are expressed as a percentage of total merchandise imports by the economy. Data are computed only if at least half of the economies in the partner country group had non-missing data.\",\"World Development Indicators\",\"World Bank staff estimates based data from International Monetary Fund's Direction of Trade database.\"\n\"TM.VAL.MRCH.RS.ZS\",\"Merchandise imports by the reporting economy, residual (% of total merchandise imports)\",\"Merchandise imports by the reporting economy residuals are the total merchandise imports by the reporting economy from the rest of the world as reported in the IMF's Direction of trade database, less the sum of imports by the reporting economy from high-, low-, and middle-income economies according to the World Bank classification of economies. Includes trade with unspecified partners or with economies not covered by World Bank classification. Data are as a percentage of total merchandise imports by the economy.\",\"World Development Indicators\",\"World Bank staff estimates based data from International Monetary Fund's Direction of Trade database.\"\n\"TM.VAL.MRCH.WL.CD\",\"Merchandise imports by the reporting economy (current US$)\",\"Merchandise imports by the reporting economy are the total merchandise imports by the reporting economy from the rest of the world, as reported in the IMF's Direction of trade database. Data are in current U.S. dollars.\",\"World Development Indicators\",\"World Bank staff estimates based data from International Monetary Fund's Direction of Trade database.\"\n\"TM.VAL.MRCH.WR.ZS\",\"Merchandise imports from low- and middle-income economies within region (% of total merchandise imports)\",\"Merchandise imports from low- and middle-income economies within region are the sum of merchandise imports by the reporting economy from other low- and middle-income economies in the same World Bank region according to the World Bank classification of economies. Data are as a percentage of total merchandise imports by the economy. Data are computed only if at least half of the economies in the partner country group had non-missing data. No figures are shown for high-income economies, because they are a separate category in the World Bank classification of economies.\",\"World Development Indicators\",\"World Bank staff estimates based data from International Monetary Fund's Direction of Trade database.\"\n\"TM.VAL.MRCH.XD.WD\",\"Import value index (2000 = 100)\",\"Import value indexes are the current value of imports (c.i.f.) converted to U.S. dollars and expressed as a percentage of the average for the base period (2000). UNCTAD's import value indexes are reported for most economies. For selected economies for which UNCTAD does not publish data, the import value indexes are derived from import volume indexes (line 73) and corresponding unit value indexes of imports (line 75) in the IMF's International Financial Statistics.\",\"World Development Indicators\",\"United Nations Conference on Trade and Development, Handbook of Statistics and data files, and International Monetary Fund, International Financial Statistics.\"\n\"TM.VAL.NFCG.CD.WB\",\"Other consumer goods imports (current US$)\",\"Consumer goods imports, cif (includes freight and insurance costs) in current dollars. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TM.VAL.NFCG.KD.WB\",\"Other consumer goods imports (constant US$)\",\"Consumer goods imports, cif (includes freight and insurance costs) in 1987 constant US dollars. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TM.VAL.OTHR.ZS.WT\",\"Computer, communications and other services (% of commercial service imports)\",\"Computer, communications and other services (% of commercial service imports) include such activities as international telecommunications, and postal and courier services; computer data; news-related service transactions between residents and nonresidents; construction services; royalties and license fees; miscellaneous business, professional, and technical services; and personal, cultural, and recreational services.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"TM.VAL.RAWM.CD.WB\",\"Intermediate goods imports, manufactures (current US$)\",\"Imports of manufactures (SITC 5 through 9 excluding 68) in current US dollars. Values are on c.i.f. basis. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TM.VAL.RAWM.KD.WB\",\"Intermediate goods imports, manufactures (constant US$)\",\"Imports of manufactures (SITC 5 through 9 excluding 68) in 1987 constant US dollars. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TM.VAL.RAWP.CD.WB\",\"Intermediate goods imports, primary (current US$)\",\"Primary goods imports, cif (includes freight and insurance costs) in current US dollars. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TM.VAL.RAWP.KD.WB\",\"Intermediate goods imports, primary (constant US$)\",\"Primary goods imports, cif (includes freight and insurance costs) in 1987 constant US dollars. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TM.VAL.RAWT.CD.WB\",\"Intermediate goods imports, total (current US$)\",\"Intermediate goods imports, cif (includes freight and insurance costs) current US dollars. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TM.VAL.RAWT.KD.WB\",\"Intermediate goods imports, total (constant US$)\",\"Intermediate goods imports, cif (includes freight and insurance costs) in 1987 constant US dollars. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TM.VAL.SERV.CD.WT\",\"Commercial service imports (current US$)\",\"Commercial service imports are total service imports minus imports of government services not included elsewhere. International transactions in services are defined by the IMF's Balance of Payments Manual (1993) as the economic output of intangible commodities that may be produced, transferred, and consumed at the same time. Definitions may vary among reporting economies.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"TM.VAL.TRAN.ZS.WT\",\"Transport services (% of commercial service imports)\",\"Transport services (% of commercial service imports) covers all transport services (sea, air, land, internal waterway, space, and pipeline) performed by residents of one economy for those of another and involving the carriage of passengers, movement of goods (freight), rental of carriers with crew, and related support and auxiliary services. Excluded are freight insurance, which is included in insurance services; goods procured in ports by nonresident carriers and repairs of transport equipment, which are included in goods; repairs of railway facilities, harbors, and airfield facilities, which are included in construction services; and rental of carriers without crew, which is included in other services.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"TM.VAL.TRVL.ZS.WT\",\"Travel services (% of commercial service imports)\",\"Travel services (% of commercial service imports) covers goods and services acquired from an economy by travelers in that economy for their own use during visits of less than one year for business or personal purposes. Travel services include the goods and services consumed by travelers, such as lodging, meals, and transport (within the economy visited).\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"TOBAC_US\",\"Tobacco, $/mt, current$\",\"Tobacco (any origin), unmanufactured, general import , cif, US\",\"Global Economic Monitor (GEM) Commodities\",\"US Department of Agriculture, World Bank.\"\n\"TOTRESV\",\"Total Reserves\",\"Total reserves comprise holdings of monetary gold, special drawing rights, reserves of IMF members held by the IMF, and holdings of foreign exchange under the control of monetary authorities. \",\"Global Economic Monitor\",\"World Bank staff calculations based on Datastream data.\"\n\"TRAD.EXPT.BVTO\",\"Export: Beverages and tobacco (province Level, in USD)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Unpublished statistics on Sub-National Trade\"\n\"TRAD.EXPT.CHEM\",\"Export: Chemical and related products, nes (province Level, in USD)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Unpublished statistics on Sub-National Trade\"\n\"TRAD.EXPT.CRUD\",\"Export: Crude materials, inedible, except fuels (province Level, in USD)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Unpublished statistics on Sub-National Trade\"\n\"TRAD.EXPT.FLVSK\",\"Export: Food and Live Animals (province Level, in USD)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Unpublished statistics on Sub-National Trade\"\n\"TRAD.EXPT.FUEL\",\"Export: Mineral fuels, lubricants and related materials (province Level, in USD)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Unpublished statistics on Sub-National Trade\"\n\"TRAD.EXPT.MANF\",\"Export: Manufactured goods, classified chiefly by material (province Level, in USD)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Unpublished statistics on Sub-National Trade\"\n\"TRAD.EXPT.MANF.OTHR\",\"Export: Miscellaneous manufactures articles (province Level, in USD)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Unpublished statistics on Sub-National Trade\"\n\"TRAD.EXPT.MTRN\",\"Export: Machinery and transport equipment (province Level, in USD)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Unpublished statistics on Sub-National Trade\"\n\"TRAD.EXPT.OLFTW\",\"Export: Animals and vegetable oil, fat and waxes (province Level, in USD)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Unpublished statistics on Sub-National Trade\"\n\"TRAD.EXPT.OTHR\",\"Export: Commodities and transaction not elsewhere classified (province Level, in USD)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Unpublished statistics on Sub-National Trade\"\n\"TRAD.IMPT.BVTO\",\"Import: Beverages and tobacco (province Level, in USD)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Unpublished statistics on Sub-National Trade\"\n\"TRAD.IMPT.CHEM\",\"Import: Chemical and related products, nes (province Level, in USD)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Unpublished statistics on Sub-National Trade\"\n\"TRAD.IMPT.CRUD\",\"Import: Crude materials, inedible, except fuels (province Level, in USD)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Unpublished statistics on Sub-National Trade\"\n\"TRAD.IMPT.FLVSK\",\"Import: Food and Live Animals (province Level, in USD)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Unpublished statistics on Sub-National Trade\"\n\"TRAD.IMPT.FUEL\",\"Import: Mineral fuels, lubricants and related materials (province Level, in USD)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Unpublished statistics on Sub-National Trade\"\n\"TRAD.IMPT.MANF\",\"Import: Manufactured goods, classified chiefly by material (province Level, in USD)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Unpublished statistics on Sub-National Trade\"\n\"TRAD.IMPT.MANF.OTHR\",\"Import: Miscellaneous manufactures articles (province Level, in USD)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Unpublished statistics on Sub-National Trade\"\n\"TRAD.IMPT.MTRN\",\"Import: Machinery and transport equipment (province Level, in USD)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Unpublished statistics on Sub-National Trade\"\n\"TRAD.IMPT.OLFTW\",\"Import: Animals and vegetable oil, fat and waxes (province Level, in USD)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Unpublished statistics on Sub-National Trade\"\n\"TRAD.IMPT.OTHR\",\"Import: Commodities and transaction not elsewhere classified (province Level, in USD)\",\"\",\"INDO-DAPOER\",\"BADAN PUSAT STATISTIK - Statistics Indonesia, Unpublished statistics on Sub-National Trade\"\n\"TSP\",\"TSP, $/mt, current$\",\"TSP (triple superphosphate), up to September 2006 bulk, spot, f.o.b. US Gulf; from October 2006 onwards Tunisian, granular, f.o.b.\",\"Global Economic Monitor (GEM) Commodities\",\"Fertilizer Week; Fertilizer International; World Bank.\"\n\"TT.PRI.MRCH.XD.WB\",\"Merchandise Terms of Trade (1987 = 100)\",\"Net barter (merchandise) terms of trade (1987 = 100) are the ratio of the export price index to the corresponding import price index measured relative to the base year of 1987. \",\"Africa Development Indicators\",\" World Bank country economists.\"\n\"TT.PRI.MRCH.XD.WD\",\"Net barter terms of trade index (2000 = 100)\",\"Net barter terms of trade index is calculated as the percentage ratio of the export unit value indexes to the import unit value indexes, measured relative to the base year 2000. Unit value indexes are based on data reported by countries that demonstrate consistency under UNCTAD quality controls, supplemented by UNCTAD’s estimates using the previous year’s trade values at the Standard International Trade Classification three-digit level as weights. To improve data coverage, especially for the latest periods, UNCTAD constructs a set of average prices indexes at the three-digit product classification of the Standard International Trade Classification revision 3 using UNCTAD’s Commodity Price Statistics, interna\\uadtional and national sources, and UNCTAD secretariat estimates and calculates unit value indexes at the country level using the current year’s trade values as weights.\",\"World Development Indicators\",\"United Nations Conference on Trade and Development, Handbook of Statistics and data files, and International Monetary Fund, International Financial Statistics.\"\n\"TX.CONC.DIV.NO\",\"Number of product (exports)\",\"Number of products (at SITC, Revision 3, 3-digit group level) exported by country or country grouping; this figure includes only those products that are greater than 100,000 dollars or more than 0.3 per cent of the country’s or country group’s total exports.  The maximum number of products is 261.\",\"Africa Development Indicators\",\"UNCTAD Statistical Office, also reported in the UNCTAD Handbook of Statistics, various issues (http://unctadstat.unctad.org/).\"\n\"TX.CONC.IND.XQ\",\"Export product concentration index\",\"This indicator reflects the Herfindahl-Hirschmann index measure of the degree of export concentration within a country.  The sectoral Hirschmann index is defined as the square root of the sum of the squared shares of exports of each industry in total exports for the region under study.  Takes a value between 0 and 1, with 1 indicating that only a single product is exported.  Higher values indicate that exports are concentrated in fewer sectors.  On the contrary, values closer to 0 reflect a more equal distribution of market shares among exporters. Note that this type of concentration indicator tends to be quite vulnerable to cyclical fluctuations in relative-prices, in a way that commodity price rises make commodity exporters look more concentrated.  \",\"Africa Development Indicators\",\"UNCTAD Statistical Office, also reported in the UNCTAD Handbook of Statistics, various issues (http://unctadstat.unctad.org/).\"\n\"TX.DIV.IND.XQ\",\"Export product diversification index\",\"The diversification index signals whether the structure of exports by product of a given country or group of countries differ from the structure of product of the world.  Diversification index is computed by measuring absolute deviation of the country share from world structure.  Diversification index that ranges from 0 to 1 reveals the extent of the differences between the structure of trade of the country or country group and the world average. The index value closer to 1 indicates a bigger difference from the world average. It is constructed as the inverse of a Herfindahl index, using disaggregated exports at 4 digits (following the STIC3).  \",\"Africa Development Indicators\",\"UNCTAD Statistical Office, also reported in the UNCTAD Handbook of Statistics, various issues (http://unctadstat.unctad.org/).\"\n\"TX.DVR.MRKT.XQ\",\"Market export diversification index (0=less concentrated; 1=more concentrated)\",\"Market export diversification (Herfindahl) index is a flow-weighted concentration index normalized to a range between 0 and 1--one being more concentrated. The share in total export of 220 potential partners for each destination is used. Due to lack of some country's export data, \\\"mirror data\\\" is used (partner's import from that country).\",\"Corporate Scorecard\",\"World Bank staff estimates using UN Comtrade data through the WITS platform.\"\n\"TX.DVR.PROD.XQ\",\"Product export diversification index (0=less concentrated; 1=more concentrated)\",\"Product export diversification (Herfindahl) index is a flow-weighted concentration index normalized to a range between 0 and 1--one being more concentrated. The Harmonized Commodity Description and Coding System (HS) 6 digit product classification is used. Due to lack of some country's export data, \\\"mirror data\\\" is used (partner's import from that country).\",\"Corporate Scorecard\",\"World Bank staff estimates using UN Comtrade data through the WITS platform.\"\n\"TX.PRI.MRCH.XD.WB\",\"Merchandise export price index (1987 = 100)\",\"This item is a price index measuring changes in the aggregate price level of a country's merchandise exports f.o.b. over time. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TX.PRI.NFSV.XU\",\"Export price index, (nonfactor) services\",\"This item is a price index measuring changes in the aggregate price level of a country's non-factor services exports over time with 1987 price index=100.  \",\"Africa Development Indicators\",\"World Bank  country economists.\"\n\"TX.QTY.COM1.XD.WB\",\"Exports of commodity 1 (volume index)\",\"Export volume index of commodity 1 with 1987=100. \",\"Africa Development Indicators\",\"World Bank  country economists.\"\n\"TX.QTY.COM2.XD.WB\",\"Exports of commodity 2 (volume index)\",\"Export volume index of commodity 2 with 1987=100. \",\"Africa Development Indicators\",\"World Bank  country economists.\"\n\"TX.QTY.COM3.XD.WB\",\"Exports of commodity 3 (volume index)\",\"Export volume index of commodity 3 with 1987=100. \",\"Africa Development Indicators\",\"World Bank  country economists.\"\n\"TX.QTY.COM4.XD.WB\",\"Exports of commodity 4 (volume index)\",\"Export volume index of commodity 4 with 1987=100. \",\"Africa Development Indicators\",\"World Bank  country economists.\"\n\"TX.QTY.MANF.XD.WB\",\"Export volume index, manufactures\",\"Export volume index of manufactures with 1987=100.  \",\"Africa Development Indicators\",\"World Bank  country economists.\"\n\"TX.QTY.MRCH.XD.WB\",\"Merchandise export volume index\",\"Merchandise exports volume index with 1987=100. \",\"Africa Development Indicators\",\"World Bank  country economists.\"\n\"TX.QTY.MRCH.XD.WD\",\"Export volume index (2000 = 100)\",\"Export volume indexes are derived from UNCTAD's volume index series and are the ratio of the export value indexes to the corresponding unit value indexes. Unit value indexes are based on data reported by countries that demonstrate consistency under UNCTAD quality controls, supplemented by UNCTAD’s estimates using the previous year’s trade values at the Standard International Trade Classification three-digit level as weights. To improve data coverage, especially for the latest periods, UNCTAD constructs a set of average prices indexes at the three-digit product classification of the Standard International Trade Classification revision 3 using UNCTAD’s Commodity Price Statistics, interna\\uadtional and national sources, and UNCTAD secretariat estimates and calculates unit value indexes at the country level using the current year’s trade values as weights. For economies for which UNCTAD does not publish data, the export volume indexes (lines 72) in the IMF's International Financial Statistics are used.\",\"World Development Indicators\",\"United Nations Conference on Trade and Development, Handbook of Statistics and data files, and International Monetary Fund, International Financial Statistics.\"\n\"TX.QTY.NFSV.XD\",\"Export volume index, (nonfactor) services\",\"Exports of (non-factor) services. Data; Volume index with 1987=100. \",\"Africa Development Indicators\",\"World Bank  country economists.\"\n\"TX.QTY.OCOM.XD.WB\",\"Export volume index, other primary commodities\",\"Export volume index of other primary commodities with 1987=100. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TX.VAL.AGRI.ZS.UN\",\"Agricultural raw materials exports (% of merchandise exports)\",\"Agricultural raw materials comprise SITC section 2 (crude materials except fuels) excluding divisions 22, 27 (crude fertilizers and minerals excluding coal, petroleum, and precious stones), and 28 (metalliferous ores and scrap).\",\"World Development Indicators\",\"World Bank staff estimates from the Comtrade database maintained by the United Nations Statistics Division.\"\n\"TX.VAL.COM1.CD.WB\",\"Exports of commodity 1 (current US$)\",\"Exports of commodity 1 in current US dollars and fob basis. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TX.VAL.COM1.KD.WB\",\"Exports of commodity 1 (constant US$)\",\"Exports of commodity 1 in 1987 constant US dollars and fob basis. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TX.VAL.COM2.CD.WB\",\"Exports of commodity 2 (current US$)\",\"Exports of commodity 2 in current US dollars and fob basis. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TX.VAL.COM2.KD.WB\",\"Exports of commodity 2 (constant US$)\",\"Exports of commodity 2 in 1987 constant US dollars and fob basis. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TX.VAL.COM3.CD.WB\",\"Exports of commodity 3 (current US$)\",\"Exports of commodity 3 in current US dollars and fob basis. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TX.VAL.COM3.KD.WB\",\"Exports of commodity 3 (constant US$)\",\"Exports of commodity 3 in 1987 constant US dollars and fob basis. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TX.VAL.COM4.CD.WB\",\"Exports of commodity 4 (current US$)\",\"Exports of commodity 4 in current US dollars and fob basis. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TX.VAL.COM4.KD.WB\",\"Exports of commodity 4 (constant US$)\",\"Exports of commodity 4 in 1987 constant US dollars and fob basis. \",\"Africa Development Indicators\",\" World Bank country economists.\"\n\"TX.VAL.FOOD.ZS.UN\",\"Food exports (% of merchandise exports)\",\"Food comprises the commodities in SITC sections 0 (food and live animals), 1 (beverages and tobacco), and 4 (animal and vegetable oils and fats) and SITC division 22 (oil seeds, oil nuts, and oil kernels).\",\"World Development Indicators\",\"World Bank staff estimates from the Comtrade database maintained by the United Nations Statistics Division.\"\n\"TX.VAL.FUEL.ZS.UN\",\"Fuel exports (% of merchandise exports)\",\"Fuels comprise SITC section 3 (mineral fuels).\",\"World Development Indicators\",\"World Bank staff estimates from the Comtrade database maintained by the United Nations Statistics Division.\"\n\"TX.VAL.ICTG.ZS.UN\",\"ICT goods exports (% of total goods exports)\",\"Information and communication technology goods exports include telecommunications, audio and video, computer and related equipment; electronic components; and other information and communication technology goods. Software is excluded.\",\"World Development Indicators\",\"United Nations Conference on Trade and Development's UNCTADstat database at http://unctadstat.unctad.org/ReportFolders/reportFolders.aspx.\"\n\"TX.VAL.INSF.ZS.WT\",\"Insurance and financial services (% of commercial service exports)\",\"Insurance and financial services cover freight insurance on goods exported and other direct insurance such as life insurance; financial intermediation services such as commissions, foreign exchange transactions, and brokerage services; and auxiliary services such as financial market operational and regulatory services.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"TX.VAL.MANF.CD.WB\",\"Manufactures exports (current US$)\",\"Manufactures comprise the commodities in SITC sections 5 (chemicals), 6 (basic manufactures), 7 (machinery and transport equipment), and 8 (miscellaneous manufactured goods), excluding division 68 (nonferrous metals).\",\"Africa Development Indicators\",\"World Bank staff estimates from the COMTRADE database maintained by the United Nations Statistics Division.\"\n\"TX.VAL.MANF.KD.WB\",\"Manufactures exports (constant US$)\",\"Manufactures comprise the commodities in SITC sections 5 (chemicals), 6 (basic manufactures), 7 (machinery and transport equipment), and 8 (miscellaneous manufactured goods), excluding division 68 (nonferrous metals) in 1987 constant US dollars. Values are on fob basis.\",\"Africa Development Indicators\",\"World Bank  country economists.\"\n\"TX.VAL.MANF.ZS.UN\",\"Manufactures exports (% of merchandise exports)\",\"Manufactures comprise commodities in SITC sections 5 (chemicals), 6 (basic manufactures), 7 (machinery and transport equipment), and 8 (miscellaneous manufactured goods), excluding division 68 (non-ferrous metals).\",\"World Development Indicators\",\"World Bank staff estimates from the Comtrade database maintained by the United Nations Statistics Division.\"\n\"TX.VAL.MMTL.ZS.UN\",\"Ores and metals exports (% of merchandise exports)\",\"Ores and metals comprise the commodities in SITC sections 27 (crude fertilizer, minerals nes); 28 (metalliferous ores, scrap); and 68 (non-ferrous metals).\",\"World Development Indicators\",\"World Bank staff estimates from the Comtrade database maintained by the United Nations Statistics Division.\"\n\"TX.VAL.MRCH.AL.ZS\",\"Merchandise exports to economies in the Arab World (% of total merchandise exports)\",\"Merchandise exports to economies in the Arab World are the sum of merchandise exports by the reporting economy to economies in the Arab World. Data are expressed as a percentage of total merchandise exports by the economy. Data are computed only if at least half of the economies in the partner country group had non-missing data.\",\"World Development Indicators\",\"World Bank staff estimates based data from International Monetary Fund's Direction of Trade database.\"\n\"TX.VAL.MRCH.CD.WB\",\"Merchandise exports, WB (current US$)\",\"Merchandise exports (current US$) show the f.o.b. value of goods provided to the rest of the world valued in U.S. dollars. They are classified using the Standard International Trade Classification (SITC). Data are in current U.S. dollars. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TX.VAL.MRCH.CD.WT\",\"Merchandise exports (current US$)\",\"Merchandise exports show the f.o.b. value of goods provided to the rest of the world valued in current U.S. dollars.\",\"World Development Indicators\",\"World Trade Organization.\"\n\"TX.VAL.MRCH.HI.ZS\",\"Merchandise exports to high-income economies (% of total merchandise exports)\",\"Merchandise exports to high-income economies are the sum of merchandise exports from the reporting economy to high-income economies according to the World Bank classification of economies. Data are expressed as a percentage of total merchandise exports by the economy. Data are computed only if at least half of the economies in the partner country group had non-missing data.\",\"World Development Indicators\",\"World Bank staff estimates based data from International Monetary Fund's Direction of Trade database.\"\n\"TX.VAL.MRCH.KD.WB\",\"Merchandise exports (constant US$)\",\"Merchandise exports (constant 1987 US$) show the f.o.b. value of goods provided to the rest of the world valued in U.S. dollars. They are classified using the Standard International Trade Classification (SITC). Data are in constant U.S. dollars. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TX.VAL.MRCH.OR.ZS\",\"Merchandise exports to low- and middle-income economies outside region (% of total merchandise exports)\",\"Merchandise exports to low- and middle-income economies outside region are the sum of merchandise exports from the reporting economy to other low- and middle-income economies in other World Bank regions according to the World Bank classification of economies. Data are expressed as a percentage of total merchandise exports by the economy. Data are computed only if at least half of the economies in the partner country group had non-missing data.\",\"World Development Indicators\",\"World Bank staff estimates based data from International Monetary Fund's Direction of Trade database.\"\n\"TX.VAL.MRCH.R1.ZS\",\"Merchandise exports to low- and middle-income economies in East Asia & Pacific (% of total merchandise exports)\",\"Merchandise exports to low- and middle-income economies in East Asia and Pacific are the sum of merchandise exports from the reporting economy to low- and middle-income economies in the East Asia and Pacific region according to World Bank classification of economies. Data are as a percentage of total merchandise exports by the economy. Data are computed only if at least half of the economies in the partner country group had non-missing data.\",\"World Development Indicators\",\"World Bank staff estimates based data from International Monetary Fund's Direction of Trade database.\"\n\"TX.VAL.MRCH.R2.ZS\",\"Merchandise exports to low- and middle-income economies in Europe & Central Asia (% of total merchandise exports)\",\"Merchandise exports to low- and middle-income economies in Europe and Central Asia are the sum of merchandise exports from the reporting economy to low- and middle-income economies in the Europe and Central Asia region according to World Bank classification of economies. Data are as a percentage of total merchandise exports by the economy. Data are computed only if at least half of the economies in the partner country group had non-missing data.\",\"World Development Indicators\",\"World Bank staff estimates based data from International Monetary Fund's Direction of Trade database.\"\n\"TX.VAL.MRCH.R3.ZS\",\"Merchandise exports to low- and middle-income economies in Latin America & the Caribbean (% of total merchandise exports)\",\"Merchandise exports to low- and middle-income economies in Latin America and the Caribbean are the sum of merchandise exports from the reporting economy to low- and middle-income economies in the Latin America and the Caribbean region according to World Bank classification of economies. Data are as a percentage of total merchandise exports by the economy. Data are computed only if at least half of the economies in the partner country group had non-missing data.\",\"World Development Indicators\",\"World Bank staff estimates based data from International Monetary Fund's Direction of Trade database.\"\n\"TX.VAL.MRCH.R4.ZS\",\"Merchandise exports to low- and middle-income economies in Middle East & North Africa (% of total merchandise exports)\",\"Merchandise exports to low- and middle-income economies in Middle East and North Africa are the sum of merchandise exports from the reporting economy to low- and middle-income economies in the Middle East and North Africa region according to World Bank classification of economies. Data are as a percentage of total merchandise exports by the economy. Data are computed only if at least half of the economies in the partner country group had non-missing data.\",\"World Development Indicators\",\"World Bank staff estimates based data from International Monetary Fund's Direction of Trade database.\"\n\"TX.VAL.MRCH.R5.ZS\",\"Merchandise exports to low- and middle-income economies in South Asia (% of total merchandise exports)\",\"Merchandise exports to low- and middle-income economies in South Asia are the sum of merchandise exports from the reporting economy to low- and middle-income economies in the South Asia region according to World Bank classification of economies. Data are as a percentage of total merchandise exports by the economy. Data are computed only if at least half of the economies in the partner country group had non-missing data.\",\"World Development Indicators\",\"World Bank staff estimates based data from International Monetary Fund's Direction of Trade database.\"\n\"TX.VAL.MRCH.R6.ZS\",\"Merchandise exports to low- and middle-income economies in Sub-Saharan Africa (% of total merchandise exports)\",\"Merchandise exports to low- and middle-income economies in Sub-Saharan Africa are the sum of merchandise exports from the reporting economy to low- and middle-income economies in the Sub-Saharan Africa region according to World Bank classification of economies. Data are as a percentage of total merchandise exports by the economy. Data are computed only if at least half of the economies in the partner country group had non-missing data.\",\"World Development Indicators\",\"World Bank staff estimates based data from International Monetary Fund's Direction of Trade database.\"\n\"TX.VAL.MRCH.RS.ZS\",\"Merchandise exports by the reporting economy, residual (% of total merchandise exports)\",\"Merchandise exports by the reporting economy residuals are the total merchandise exports by the reporting economy to the rest of the world as reported in the IMF's Direction of trade database, less the sum of exports by the reporting economy to high-, low-, and middle-income economies according to the World Bank classification of economies. Includes trade with unspecified partners or with economies not covered by World Bank classification. Data are as a percentage of total merchandise exports by the economy.\",\"World Development Indicators\",\"World Bank staff estimates based data from International Monetary Fund's Direction of Trade database.\"\n\"TX.VAL.MRCH.WL.CD\",\"Merchandise exports by the reporting economy (current US$)\",\"Merchandise exports by the reporting economy are the total merchandise exports by the reporting economy to the rest of the world, as reported in the IMF's Direction of trade database. Data are in current US$.\",\"World Development Indicators\",\"World Bank staff estimates based data from International Monetary Fund's Direction of Trade database.\"\n\"TX.VAL.MRCH.WR.ZS\",\"Merchandise exports to low- and middle-income economies within region (% of total merchandise exports)\",\"Merchandise exports to low- and middle-income economies within region are the sum of merchandise exports from the reporting economy to other low- and middle-income economies in the same World Bank region as a percentage of total merchandise exports by the economy. Data are computed only if at least half of the economies in the partner country group had non-missing data. No figures are shown for high-income economies, because they are a separate category in the World Bank classification of economies.\",\"World Development Indicators\",\"World Bank staff estimates based data from International Monetary Fund's Direction of Trade database.\"\n\"TX.VAL.MRCH.XD.WD\",\"Export value index (2000 = 100)\",\"Export values are the current value of exports (f.o.b.) converted to U.S. dollars and expressed as a percentage of the average for the base period (2000). UNCTAD's export value indexes are reported for most economies. For selected economies for which UNCTAD does not publish data, the export value indexes are derived from export volume indexes (line 72) and corresponding unit value indexes of exports (line 74) in the IMF's International Financial Statistics.\",\"World Development Indicators\",\"United Nations Conference on Trade and Development, Handbook of Statistics and data files, and International Monetary Fund, International Financial Statistics.\"\n\"TX.VAL.OCOM.CD.WB\",\"Other primary commodities exports (current US$)\",\"Exports of other primary commodities in current US dollars and fob basis.  \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TX.VAL.OCOM.KD.WB\",\"Other primary commodities exports (constant US$)\",\"Exports of other primary commodities in 1987 constant US dollars and fob basis. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TX.VAL.OTHR.ZS.WT\",\"Computer, communications and other services (% of commercial service exports)\",\"Computer, communications and other services (% of commercial service exports) include such activities as international telecommunications, and postal and courier services; computer data; news-related service transactions between residents and nonresidents; construction services; royalties and license fees; miscellaneous business, professional, and technical services; and personal, cultural, and recreational services.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"TX.VAL.SERV.CD.WT\",\"Commercial service exports (current US$)\",\"Commercial service exports are total service exports minus exports of government services not included elsewhere. International transactions in services are defined by the IMF's Balance of Payments Manual (1993) as the economic output of intangible commodities that may be produced, transferred, and consumed at the same time. Definitions may vary among reporting economies.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"TX.VAL.TCOM.CD.WB\",\"Primary commodities exports (current US$)\",\"Total Primary Commodities exports in current US dollars. Values are in fob basis. \",\"Africa Development Indicators\",\"World Bank  country economists.\"\n\"TX.VAL.TCOM.KD.WB\",\"Primary commodities exports (constant US$)\",\"Total Primary Commodities exports in 1987 constant US dollars. Values are in fob basis. \",\"Africa Development Indicators\",\"World Bank country economists.\"\n\"TX.VAL.TECH.CD\",\"High-technology exports (current US$)\",\"High-technology exports are products with high R&D intensity, such as in aerospace, computers, pharmaceuticals, scientific instruments, and electrical machinery. Data are in current U.S. dollars.\",\"World Development Indicators\",\"United Nations, Comtrade database.\"\n\"TX.VAL.TECH.MF.ZS\",\"High-technology exports (% of manufactured exports)\",\"High-technology exports are products with high R&D intensity, such as in aerospace, computers, pharmaceuticals, scientific instruments, and electrical machinery.\",\"World Development Indicators\",\"United Nations, Comtrade database.\"\n\"TX.VAL.TRAN.ZS.WT\",\"Transport services (% of commercial service exports)\",\"Transport services (% of commercial service exports) covers all transport services (sea, air, land, internal waterway, space, and pipeline) performed by residents of one economy for those of another and involving the carriage of passengers, movement of goods (freight), rental of carriers with crew, and related support and auxiliary services. Excluded are freight insurance, which is included in insurance services; goods procured in ports by nonresident carriers and repairs of transport equipment, which are included in goods; repairs of railway facilities, harbors, and airfield facilities, which are included in construction services; and rental of carriers without crew, which is included in other services.\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"TX.VAL.TRVL.ZS.WT\",\"Travel services (% of commercial service exports)\",\"Travel services (% of commercial service exports) covers goods and services acquired from an economy by travelers in that economy for their own use during visits of less than one year for business or personal purposes. Travel services include the goods and services consumed by travelers, such as lodging and meals and transport (within the economy visited).\",\"World Development Indicators\",\"International Monetary Fund, Balance of Payments Statistics Yearbook and data files.\"\n\"UIS.AFR.AGRADMG.1.PU\",\"Africa Dataset: Average number of grades per multigrade class in primary schools (number of grades)\",\"Average number of grade levels that have been merged into multigrade classes in public primary schools. A multigrade class is a class in which students from two or more grades are taught by one teacher in one room at the same time. The existence of multigrade classes can suggest shortages of teachers, classrooms, or low enrolment numbers. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.CS.1.PU\",\"Africa Dataset: Average size of classes in primary schools (number of pupils)\",\"Average number of students per class in public primary schools. Average class sizes differ from pupil-teacher ratios because average class sizes reflect the actual number of pupils taught by a teacher at a given time while the pupil-teacher ratio is a more global measure of the teaching resources available in schools. Pupil-teacher ratios are generally lower than average class sizes as teachers typically have additional non-teaching duties. The pupil-teacher ratio is useful for assessing the cost of providing education whereas class sizes are related to the classroom working conditions of teachers. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.CS.MG.1.PU\",\"Africa Dataset: Average size of multigrade classes in primary schools (number of pupils)\",\"Average number of students per multigrade class in public primary schools. A multigrade class is a class in which students from two or more grades are taught by one teacher in one room at the same time. Average class sizes differ from pupil-teacher ratios because average class sizes reflect the actual number of pupils taught by a teacher at a given time while the pupil-teacher ratio is a more global measure of the teaching resources available in schools. Pupil-teacher ratios are generally lower than average class sizes as teachers typically have additional non-teaching duties. The pupil-teacher ratio is useful for assessing the cost of providing education whereas class sizes are related to the classroom working conditions of teachers. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.CS.SG.1.G1.PU\",\"Africa Dataset: Average size of single grade classes in Grade 1 of primary schools (number of pupils)\",\"Average number of students per Grade 1 class in public primary schools. Average class sizes differ from pupil-teacher ratios because average class sizes reflect the actual number of pupils taught by a teacher at a given time while the pupil-teacher ratio is a more global measure of the teaching resources available in schools. Pupil-teacher ratios are generally lower than average class sizes as teachers typically have additional non-teaching duties. The pupil-teacher ratio is useful for assessing the cost of providing education whereas class sizes are related to the classroom working conditions of teachers. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.CS.SG.1.G2.PU\",\"Africa Dataset: Average size of single grade classes in Grade 2 of primary schools (number of pupils)\",\"Average number of students per Grade 2 class in public primary schools. Average class sizes differ from pupil-teacher ratios because average class sizes reflect the actual number of pupils taught by a teacher at a given time while the pupil-teacher ratio is a more global measure of the teaching resources available in schools. Pupil-teacher ratios are generally lower than average class sizes as teachers typically have additional non-teaching duties. The pupil-teacher ratio is useful for assessing the cost of providing education whereas class sizes are related to the classroom working conditions of teachers. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.CS.SG.1.G3.PU\",\"Africa Dataset: Average size of single grade classes in Grade 3 of primary schools (number of pupils)\",\"Average number of students per Grade 3 class in public primary schools. Average class sizes differ from pupil-teacher ratios because average class sizes reflect the actual number of pupils taught by a teacher at a given time while the pupil-teacher ratio is a more global measure of the teaching resources available in schools. Pupil-teacher ratios are generally lower than average class sizes as teachers typically have additional non-teaching duties. The pupil-teacher ratio is useful for assessing the cost of providing education whereas class sizes are related to the classroom working conditions of teachers. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.CS.SG.1.G4.PU\",\"Africa Dataset: Average size of single grade classes in Grade 4 of primary schools (number of pupils)\",\"Average number of students per Grade 4 class in public primary schools. Average class sizes differ from pupil-teacher ratios because average class sizes reflect the actual number of pupils taught by a teacher at a given time while the pupil-teacher ratio is a more global measure of the teaching resources available in schools. Pupil-teacher ratios are generally lower than average class sizes as teachers typically have additional non-teaching duties. The pupil-teacher ratio is useful for assessing the cost of providing education whereas class sizes are related to the classroom working conditions of teachers. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.CS.SG.1.G5.PU\",\"Africa Dataset: Average size of single grade classes in Grade 5 of primary schools (number of pupils)\",\"Average number of students per Grade 5 class in public primary schools. Average class sizes differ from pupil-teacher ratios because average class sizes reflect the actual number of pupils taught by a teacher at a given time while the pupil-teacher ratio is a more global measure of the teaching resources available in schools. Pupil-teacher ratios are generally lower than average class sizes as teachers typically have additional non-teaching duties. The pupil-teacher ratio is useful for assessing the cost of providing education whereas class sizes are related to the classroom working conditions of teachers. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.CS.SG.1.G6.PU\",\"Africa Dataset: Average size of single grade classes in Grade 6 of primary schools (number of pupils)\",\"Average number of students per Grade 6 class in public primary schools. Average class sizes differ from pupil-teacher ratios because average class sizes reflect the actual number of pupils taught by a teacher at a given time while the pupil-teacher ratio is a more global measure of the teaching resources available in schools. Pupil-teacher ratios are generally lower than average class sizes as teachers typically have additional non-teaching duties. The pupil-teacher ratio is useful for assessing the cost of providing education whereas class sizes are related to the classroom working conditions of teachers. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.CS.SG.1.G7.PU\",\"Africa Dataset: Average size of single grade classes in Grade 7 of primary schools (number of pupils)\",\"Average number of students per Grade 7 class in public primary schools. Average class sizes differ from pupil-teacher ratios because average class sizes reflect the actual number of pupils taught by a teacher at a given time while the pupil-teacher ratio is a more global measure of the teaching resources available in schools. Pupil-teacher ratios are generally lower than average class sizes as teachers typically have additional non-teaching duties. The pupil-teacher ratio is useful for assessing the cost of providing education whereas class sizes are related to the classroom working conditions of teachers. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.CS.SG.1.PU\",\"Africa Dataset: Average size of single grade classes in primary schools (number of pupils)\",\"Average number of students per single grade class in public primary schools. Average class sizes differ from pupil-teacher ratios because average class sizes reflect the actual number of pupils taught by a teacher at a given time while the pupil-teacher ratio is a more global measure of the teaching resources available in schools. Pupil-teacher ratios are generally lower than average class sizes as teachers typically have additional non-teaching duties. The pupil-teacher ratio is useful for assessing the cost of providing education whereas class sizes are related to the classroom working conditions of teachers. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.ECP.MG.1.PU\",\"Africa Dataset: Percentage of primary pupils in multigrade classes (%)\",\"Share of primary students in public schools who are enrolled in a multigrade class. A multigrade class is a class in which students from two or more grades are taught by one teacher in one room at the same time. The existence of multigrade classes can suggest shortages of teachers, classrooms, or low enrolment numbers. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.FNTP.1\",\"Africa Dataset: Percentage of newly recruited teachers in primary education who are female (%)\",\"Share of newly recruited public primary school teachers who are female. Newly recruited teachers are teachers entering the teaching profession for the first time in public schools. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.FNTP.2\",\"Africa Dataset: Percentage of newly recruited teachers in lower secondary education who are female (%)\",\"Share of newly recruited public lower secondary school teachers who are female. Newly recruited teachers are teachers entering the teaching profession for the first time in public schools. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.FNTP.3\",\"Africa Dataset: Percentage of newly recruited teachers in upper secondary education who are female (%)\",\"Share of newly recruited public upper secondary school teachers who are female. Newly recruited teachers are teachers entering the teaching profession for the first time in public schools. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.GTC.1.F\",\"Africa Dataset: Graduates from accredited pre-service primary teacher training programmes, female (number)\",\"Total number of female graduates receiving a government recognised primary education teaching qualification during the reference year through a pre-service teacher training programme. Pre-service teacher training programmes are recognised and organised, private and public educational programmes designed to train future teachers to formally enter the profession at a specified level of education. Pre-service training does not cover teachers who do not meet officially recognised training standards and are enrolled in a teacher training course to earn accreditation concurrent to their work as a teacher. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.GTC.1.T\",\"Africa Dataset: Graduates from accredited pre-service primary teacher training programmes, both sexes (number)\",\"Total number of graduates receiving a government recognised primary education teaching qualification during the reference year through a pre-service teacher training programme. Pre-service teacher training programmes are recognised and organised, private and public educational programmes designed to train future teachers to formally enter the profession at a specified level of education. Pre-service training does not cover teachers who do not meet officially recognised training standards and are enrolled in a teacher training course to earn accreditation concurrent to their work as a teacher. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.GTC.1T3.F\",\"Africa Dataset: Graduates from accredited pre-service primary or secondary teacher training programmes, female (number)\",\"Total number of female graduates receiving a government recognised primary or secondary education teaching qualification during the reference year through a pre-service teacher training programme. Pre-service teacher training programmes are recognised and organised, private and public educational programmes designed to train future teachers to formally enter the profession at a specified level of education. Pre-service training does not cover teachers who do not meet officially recognised training standards and are enrolled in a teacher training course to earn accreditation concurrent to their work as a teacher. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.GTC.1T3.T\",\"Africa Dataset: Graduates from accredited pre-service primary or secondary teacher training programmes, both sexes (number)\",\"Total number of graduates receiving a government recognised primary or secondary education teaching qualification during the reference year through a pre-service teacher training programme. Pre-service teacher training programmes are recognised and organised, private and public educational programmes designed to train future teachers to formally enter the profession at a specified level of education. Pre-service training does not cover teachers who do not meet officially recognised training standards and are enrolled in a teacher training course to earn accreditation concurrent to their work as a teacher. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.GTC.2.F\",\"Africa Dataset: Graduates from accredited pre-service lower secondary teacher training programmes, female (number)\",\"Total number of female graduates receiving a government recognised lower secondary education teaching qualification during the reference year through a pre-service teacher training programme. Pre-service teacher training programmes are recognised and organised, private and public educational programmes designed to train future teachers to formally enter the profession at a specified level of education. Pre-service training does not cover teachers who do not meet officially recognised training standards and are enrolled in a teacher training course to earn accreditation concurrent to their work as a teacher. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.GTC.2.T\",\"Africa Dataset: Graduates from accredited pre-service lower secondary teacher training programmes, both sexes (number)\",\"Total number of graduates receiving a government recognised lower secondary education teaching qualification during the reference year through a pre-service teacher training programme. Pre-service teacher training programmes are recognised and organised, private and public educational programmes designed to train future teachers to formally enter the profession at a specified level of education. Pre-service training does not cover teachers who do not meet officially recognised training standards and are enrolled in a teacher training course to earn accreditation concurrent to their work as a teacher. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.GTC.3.F\",\"Africa Dataset: Graduates from accredited pre-service upper secondary teacher training programmes, female (number)\",\"Total number of female graduates receiving a government recognised upper secondary education teaching qualification during the reference year through a pre-service teacher training programme. Pre-service teacher training programmes are recognised and organised, private and public educational programmes designed to train future teachers to formally enter the profession at a specified level of education. Pre-service training does not cover teachers who do not meet officially recognised training standards and are enrolled in a teacher training course to earn accreditation concurrent to their work as a teacher. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.GTC.3.T\",\"Africa Dataset: Graduates from accredited pre-service upper secondary teacher training programmes, both sexes (number)\",\"Total number of graduates receiving a government recognised upper secondary education teaching qualification during the reference year through a pre-service teacher training programme. Pre-service teacher training programmes are recognised and organised, private and public educational programmes designed to train future teachers to formally enter the profession at a specified level of education. Pre-service training does not cover teachers who do not meet officially recognised training standards and are enrolled in a teacher training course to earn accreditation concurrent to their work as a teacher. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.GTC.UK.F\",\"Africa Dataset: Graduates from accredited pre-service teacher training programmes, level unspecified, female (number)\",\"Total number of female graduates receiving a government recognised teaching qualification (unspecified level) during the reference year through a pre-service teacher training programme. Pre-service teacher training programmes are recognised and organised, private and public educational programmes designed to train future teachers to formally enter the profession at a specified level of education. Pre-service training does not cover teachers who do not meet officially recognised training standards and are enrolled in a teacher training course to earn accreditation concurrent to their work as a teacher. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.GTC.UK.T\",\"Africa Dataset: Graduates from accredited pre-service teacher training programmes, level unspecified, both sexes (number)\",\"Total number of graduates receiving a government recognised teaching qualification (unspecified level) during the reference year through a pre-service teacher training programme. Pre-service teacher training programmes are recognised and organised, private and public educational programmes designed to train future teachers to formally enter the profession at a specified level of education. Pre-service training does not cover teachers who do not meet officially recognised training standards and are enrolled in a teacher training course to earn accreditation concurrent to their work as a teacher. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.GTCTR.1.F\",\"Africa Dataset: Ratio of teacher training graduates to teachers in primary education, female\",\"Number of newly graduated females from public and private teacher training programmes for primary education, expressed as a percentage of female teachers in service in public and private primary education (including new female graduates from teachers training programmes). This indicator compares the number of graduates in the current year to the total workforce – not the percentage of graduates in the total workforce (irrespective of their graduation year). It provides information on the capacity of systems to train new teachers. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.GTCTR.1.M\",\"Africa Dataset: Ratio of teacher training graduates to teachers in primary education, male\",\"Number of newly graduated males from public and private teacher training programmes for primary education, expressed as a percentage of male teachers in service in public and private primary education (including new male graduates from teachers training programmes). This indicator compares the number of graduates in the current year to the total workforce – not the percentage of graduates in the total workforce (irrespective of their graduation year). It provides information on the capacity of systems to train new teachers. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.GTCTR.1.T\",\"Africa Dataset: Ratio of teacher training graduates to teachers in primary education, both sexes\",\"Number of new graduates from public and private teacher training programmes for primary education, expressed as a percentage of teachers in service in public and private primary education (including new graduates from teachers training programmes). This indicator compares the number of graduates in the current year to the total workforce – not the percentage of graduates in the total workforce (irrespective of their graduation year). It provides information on the capacity of systems to train new teachers. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.GTCTR.2.F\",\"Africa Dataset: Ratio of teacher training graduates to teachers in lower secondary education, female\",\"Number of newly graduated females from public and private teacher training programmes for lower secondary education, expressed as a percentage of female teachers in service in public and private lower secondary education (including new graduates from teachers training programmes). This indicator compares the number of graduates in the current year to the total workforce – not the percentage of graduates in the total workforce (irrespective of their graduation year). It provides information on the capacity of systems to train new teachers. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.GTCTR.2.M\",\"Africa Dataset: Ratio of teacher training graduates to teachers in lower secondary education, male\",\"Number of newly graduated males from public and private teacher training programmes for lower secondary education, expressed as a percentage of male teachers in service in public and private lower secondary education (including new graduates from teachers training programmes). This indicator compares the number of graduates in the current year to the total workforce – not the percentage of graduates in the total workforce (irrespective of their graduation year). It provides information on the capacity of systems to train new teachers. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.GTCTR.2.T\",\"Africa Dataset: Ratio of teacher training graduates to teachers in lower secondary education, both sexes\",\"Number of new graduates from public and private teacher training programmes for lower secondary education, expressed as a percentage of teachers in service in public and private lower secondary education (including new graduates from teachers training programmes). This indicator compares the number of graduates in the current year to the total workforce – not the percentage of graduates in the total workforce (irrespective of their graduation year). It provides information on the capacity of systems to train new teachers. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.GTCTR.3.F\",\"Africa Dataset: Ratio of teacher training graduates to teachers in upper secondary education, female\",\"Number of newly graduated females from public and private teacher training programmes for upper secondary education, expressed as a percentage of female teachers in service in public and private upper secondary education (including new graduates from teachers training programmes). This indicator compares the number of graduates in the current year to the total workforce – not the percentage of graduates in the total workforce (irrespective of their graduation year). It provides information on the capacity of systems to train new teachers. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.GTCTR.3.M\",\"Africa Dataset: Ratio of teacher training graduates to teachers in upper secondary education, male\",\"Number of newly graduated males from public and private teacher training programmes for upper secondary education, expressed as a percentage of male teachers in service in public and private upper secondary education (including new graduates from teachers training programmes). This indicator compares the number of graduates in the current year to the total workforce – not the percentage of graduates in the total workforce (irrespective of their graduation year). It provides information on the capacity of systems to train new teachers. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.GTCTR.3.T\",\"Africa Dataset: Ratio of teacher training graduates to teachers in upper secondary education, both sexes\",\"Number of new graduates from public and private teacher training programmes for upper secondary education, expressed as a percentage of teachers in service in public and private upper secondary education (including new graduates from teachers training programmes). This indicator compares the number of graduates in the current year to the total workforce – not the percentage of graduates in the total workforce (irrespective of their graduation year). It provides information on the capacity of systems to train new teachers. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.NTP.1.PU.F\",\"Africa Dataset: Percentage of female teachers in primary education who are newly recruited, female (%)\",\"Number of newly recruited female teachers in public primary education, expressed as a percentage of female teachers in service in public primary education. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.NTP.1.PU.M\",\"Africa Dataset: Percentage of male teachers in primary education who are newly recruited, male (%)\",\"Number of newly recruited male teachers in public primary education, expressed as a percentage of male teachers in service in public primary education. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.NTP.1.PU.T\",\"Africa Dataset: Percentage of teachers in primary education who are newly recruited, both sexes (%)\",\"Number of newly recruited teachers in public primary education, expressed as a percentage of teachers in service in public primary education. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.NTP.2.PU.F\",\"Africa Dataset: Percentage of female teachers in lower secondary education who are newly recruited, female (%)\",\"Number of newly recruited female teachers in public lower secondary education expressed as a percentage of female teachers in service in public lower secondary education. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.NTP.2.PU.M\",\"Africa Dataset: Percentage of male teachers in lower secondary education who are newly recruited, male (%)\",\"Number of newly recruited male teachers in public lower secondary education expressed as a percentage of male teachers in service in public lower secondary education. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.NTP.2.PU.T\",\"Africa Dataset: Percentage of teachers in lower secondary education who are newly recruited, both sexes (%)\",\"Number of newly recruited teachers in public lower secondary education expressed as a percentage of teachers in service in public lower secondary education. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.NTP.3.PU.F\",\"Africa Dataset: Percentage of female teachers in upper secondary education who are newly recruited, female (%)\",\"Number of newly recruited female teachers in public upper secondary education, expressed as a percentage of female teachers in service in public upper secondary education. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.NTP.3.PU.M\",\"Africa Dataset: Percentage of male teachers in upper secondary education who are newly recruited, male (%)\",\"Number of newly recruited male teachers in public upper secondary education, expressed as a percentage of male teachers in service in public upper secondary education. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.NTP.3.PU.T\",\"Africa Dataset: Percentage of teachers in upper secondary education who are newly recruited, both sexes (%)\",\"Number of newly recruited teachers in public upper secondary education, expressed as a percentage of teachers in service in public upper secondary education. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.PBR.1.G1.PU.MATH\",\"Africa Dataset: Average number of pupils per mathematics textbook in Grade 1 of primary education (number)\",\"Average number of Grade 1 pupils per mathematics textbook in public primary schools. The data reported includes textbooks in all languages of instruction which are owned by schools and have been distributed to pupils on loan or kept in schools for use in the classroom. The data reported excludes books in school libraries as well as novels and books for use by teachers (such as curriculum guides, syllabi and teacher guides). Data Limitations: While national-level data may suggest all pupils have access to books in these countries, this may hide sub-national disparities. For example, pupils in some schools may have more than one textbook, while shortages may persist in others. The data also does not provide information about the quality of the textbooks available that may sometimes be old or used. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.PBR.1.G1.PU.READ\",\"Africa Dataset: Average number of pupils per reading textbook in Grade 1 of primary education (number)\",\"Average number of Grade 1 pupils per reading textbook in public primary schools. The data reported includes textbooks in all languages of instruction which are owned by schools and have been distributed to pupils on loan or kept in schools for use in the classroom. The data reported excludes books in school libraries as well as novels and books for use by teachers (such as curriculum guides, syllabi and teacher guides). Data Limitations: While national-level data may suggest all pupils have access to books in these countries, this may hide sub-national disparities. For example, pupils in some schools may have more than one textbook, while shortages may persist in others. The data also does not provide information about the quality of the textbooks available that may sometimes be old or used. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.PBR.1.G2.PU.MATH\",\"Africa Dataset: Average number of pupils per mathematics textbook in Grade 2 of primary education (number)\",\"Average number of Grade 2 pupils per mathematics textbook in public primary schools. The data reported includes textbooks in all languages of instruction which are owned by schools and have been distributed to pupils on loan or kept in schools for use in the classroom. The data reported excludes books in school libraries as well as novels and books for use by teachers (such as curriculum guides, syllabi and teacher guides). Data Limitations: While national-level data may suggest all pupils have access to books in these countries, this may hide sub-national disparities. For example, pupils in some schools may have more than one textbook, while shortages may persist in others. The data also does not provide information about the quality of the textbooks available that may sometimes be old or used. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.PBR.1.G2.PU.READ\",\"Africa Dataset: Average number of pupils per reading textbook in Grade 2 of primary education (number)\",\"Average number of Grade 2 pupils per reading textbook in public primary schools. The data reported includes textbooks in all languages of instruction which are owned by schools and have been distributed to pupils on loan or kept in schools for use in the classroom. The data reported excludes books in school libraries as well as novels and books for use by teachers (such as curriculum guides, syllabi and teacher guides). Data Limitations: While national-level data may suggest all pupils have access to books in these countries, this may hide sub-national disparities. For example, pupils in some schools may have more than one textbook, while shortages may persist in others. The data also does not provide information about the quality of the textbooks available that may sometimes be old or used. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.PBR.1.G3.PU.MATH\",\"Africa Dataset: Average number of pupils per mathematics textbook in Grade 3 of primary education (number)\",\"Average number of Grade 3 pupils per mathematics textbook in public primary schools. The data reported includes textbooks in all languages of instruction which are owned by schools and have been distributed to pupils on loan or kept in schools for use in the classroom. The data reported excludes books in school libraries as well as novels and books for use by teachers (such as curriculum guides, syllabi and teacher guides). Data Limitations: While national-level data may suggest all pupils have access to books in these countries, this may hide sub-national disparities. For example, pupils in some schools may have more than one textbook, while shortages may persist in others. The data also does not provide information about the quality of the textbooks available that may sometimes be old or used. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.PBR.1.G3.PU.READ\",\"Africa Dataset: Average number of pupils per reading textbook in Grade 3 of primary education (number)\",\"Average number of Grade 3 pupils per reading textbook in public primary schools. The data reported includes textbooks in all languages of instruction which are owned by schools and have been distributed to pupils on loan or kept in schools for use in the classroom. The data reported excludes books in school libraries as well as novels and books for use by teachers (such as curriculum guides, syllabi and teacher guides). Data Limitations: While national-level data may suggest all pupils have access to books in these countries, this may hide sub-national disparities. For example, pupils in some schools may have more than one textbook, while shortages may persist in others. The data also does not provide information about the quality of the textbooks available that may sometimes be old or used. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.PBR.1.G4.PU.MATH\",\"Africa Dataset: Average number of pupils per mathematics textbook in Grade 4 of primary education (number)\",\"Average number of Grade 4 pupils per mathematics textbook in public primary schools. The data reported includes textbooks in all languages of instruction which are owned by schools and have been distributed to pupils on loan or kept in schools for use in the classroom. The data reported excludes books in school libraries as well as novels and books for use by teachers (such as curriculum guides, syllabi and teacher guides). Data Limitations: While national-level data may suggest all pupils have access to books in these countries, this may hide sub-national disparities. For example, pupils in some schools may have more than one textbook, while shortages may persist in others. The data also does not provide information about the quality of the textbooks available that may sometimes be old or used. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.PBR.1.G4.PU.READ\",\"Africa Dataset: Average number of pupils per reading textbook in Grade 4 of primary education (number)\",\"Average number of Grade 4 pupils per reading textbook in public primary schools. The data reported includes textbooks in all languages of instruction which are owned by schools and have been distributed to pupils on loan or kept in schools for use in the classroom. The data reported excludes books in school libraries as well as novels and books for use by teachers (such as curriculum guides, syllabi and teacher guides). Data Limitations: While national-level data may suggest all pupils have access to books in these countries, this may hide sub-national disparities. For example, pupils in some schools may have more than one textbook, while shortages may persist in others. The data also does not provide information about the quality of the textbooks available that may sometimes be old or used. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.PBR.1.G5.PU.MATH\",\"Africa Dataset: Average number of pupils per mathematics textbook in Grade 5 of primary education (number)\",\"Average number of Grade 5 pupils per mathematics textbook in public primary schools. The data reported includes textbooks in all languages of instruction which are owned by schools and have been distributed to pupils on loan or kept in schools for use in the classroom. The data reported excludes books in school libraries as well as novels and books for use by teachers (such as curriculum guides, syllabi and teacher guides). Data Limitations: While national-level data may suggest all pupils have access to books in these countries, this may hide sub-national disparities. For example, pupils in some schools may have more than one textbook, while shortages may persist in others. The data also does not provide information about the quality of the textbooks available that may sometimes be old or used. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.PBR.1.G5.PU.READ\",\"Africa Dataset: Average number of pupils per reading textbook in Grade 5 of primary education (number)\",\"Average number of Grade 5 pupils per reading textbook in public primary schools. The data reported includes textbooks in all languages of instruction which are owned by schools and have been distributed to pupils on loan or kept in schools for use in the classroom. The data reported excludes books in school libraries as well as novels and books for use by teachers (such as curriculum guides, syllabi and teacher guides). Data Limitations: While national-level data may suggest all pupils have access to books in these countries, this may hide sub-national disparities. For example, pupils in some schools may have more than one textbook, while shortages may persist in others. The data also does not provide information about the quality of the textbooks available that may sometimes be old or used. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.PBR.1.G6.PU.MATH\",\"Africa Dataset: Average number of pupils per mathematics textbook in Grade 6 of primary education (number)\",\"Average number of Grade 6 pupils per mathematics textbook in public primary schools. The data reported includes textbooks in all languages of instruction which are owned by schools and have been distributed to pupils on loan or kept in schools for use in the classroom. The data reported excludes books in school libraries as well as novels and books for use by teachers (such as curriculum guides, syllabi and teacher guides). Data Limitations: While national-level data may suggest all pupils have access to books in these countries, this may hide sub-national disparities. For example, pupils in some schools may have more than one textbook, while shortages may persist in others. The data also does not provide information about the quality of the textbooks available that may sometimes be old or used. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.PBR.1.G6.PU.READ\",\"Africa Dataset: Average number of pupils per reading textbook in Grade 6 of primary education (number)\",\"Average number of Grade 6 pupils per reading textbook in public primary schools. The data reported includes textbooks in all languages of instruction which are owned by schools and have been distributed to pupils on loan or kept in schools for use in the classroom. The data reported excludes books in school libraries as well as novels and books for use by teachers (such as curriculum guides, syllabi and teacher guides). Data Limitations: While national-level data may suggest all pupils have access to books in these countries, this may hide sub-national disparities. For example, pupils in some schools may have more than one textbook, while shortages may persist in others. The data also does not provide information about the quality of the textbooks available that may sometimes be old or used. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.PBR.1.G7.PU.MATH\",\"Africa Dataset: Average number of pupils per mathematics textbook in Grade 7 of primary education (number)\",\"Average number of Grade 7 pupils per mathematics textbook in public primary schools. The data reported includes textbooks in all languages of instruction which are owned by schools and have been distributed to pupils on loan or kept in schools for use in the classroom. The data reported excludes books in school libraries as well as novels and books for use by teachers (such as curriculum guides, syllabi and teacher guides). Data Limitations: While national-level data may suggest all pupils have access to books in these countries, this may hide sub-national disparities. For example, pupils in some schools may have more than one textbook, while shortages may persist in others. The data also does not provide information about the quality of the textbooks available that may sometimes be old or used. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.PBR.1.G7.PU.READ\",\"Africa Dataset: Average number of pupils per reading textbook in Grade 7 of primary education (number)\",\"Average number of Grade 7 pupils per reading textbook in public primary schools. The data reported includes textbooks in all languages of instruction which are owned by schools and have been distributed to pupils on loan or kept in schools for use in the classroom. The data reported excludes books in school libraries as well as novels and books for use by teachers (such as curriculum guides, syllabi and teacher guides). Data Limitations: While national-level data may suggest all pupils have access to books in these countries, this may hide sub-national disparities. For example, pupils in some schools may have more than one textbook, while shortages may persist in others. The data also does not provide information about the quality of the textbooks available that may sometimes be old or used. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.PBR.1.PU.MATH\",\"Africa Dataset: Average number of pupils per mathematics textbook in primary education (number)\",\"Average number of pupils per mathematics textbook in public primary schools. The data reported includes textbooks in all languages of instruction which are owned by schools and have been distributed to pupils on loan or kept in schools for use in the classroom. The data reported excludes books in school libraries as well as novels and books for use by teachers (such as curriculum guides, syllabi and teacher guides). Data Limitations: While national-level data may suggest all pupils have access to books in these countries, this may hide sub-national disparities. For example, pupils in some schools may have more than one textbook, while shortages may persist in others. The data also does not provide information about the quality of the textbooks available that may sometimes be old or used. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.PBR.1.PU.READ\",\"Africa Dataset: Average number of pupils per reading textbook in primary education (number)\",\"Average number of pupils per reading textbook in public primary schools. The data reported includes textbooks in all languages of instruction which are owned by schools and have been distributed to pupils on loan or kept in schools for use in the classroom. The data reported excludes books in school libraries as well as novels and books for use by teachers (such as curriculum guides, syllabi and teacher guides). Data Limitations: While national-level data may suggest all pupils have access to books in these countries, this may hide sub-national disparities. For example, pupils in some schools may have more than one textbook, while shortages may persist in others. The data also does not provide information about the quality of the textbooks available that may sometimes be old or used. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.SCHBSP.1.PU.MIXTOIL\",\"Africa Dataset: Percentage of primary schools with mixed-sex toilets (%)\",\"Share of public primary schools without separate girls and boys toilets. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.SCHBSP.1.PU.WELEC\",\"Africa Dataset: Percentage of primary schools with access to electricity (%)\",\"Share of public primary schools with access to permanent sources of electrical power (i.e. grid/mains connection, wind, water, solar, permanently fuel-powered generator, etc.). Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.SCHBSP.1.PU.WNIELEC\",\"Africa Dataset: Percentage of primary schools with no information on electricity (%)\",\"Share of public primary schools where information was not available on permanent sources of electrical power (i.e. grid/mains connection, wind, water, solar, permanently fuel-powered generator, etc.). Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.SCHBSP.1.PU.WNIPOWAT\",\"Africa Dataset: Percentage of primary schools with no information on potable water (%)\",\"Share of public primary schools where information was not available on potable water. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.SCHBSP.1.PU.WNITOIL\",\"Africa Dataset: Percentage of primary schools with no information on toilets (%)\",\"Share of public primary schools where information was not available on toilets. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.SCHBSP.1.PU.WOELEC\",\"Africa Dataset: Percentage of primary schools without access to electricity (%)\",\"Share of public primary schools with no access to permanent sources of electrical power (i.e. grid/mains connection, wind, water, solar, permanently fuel-powered generator, etc.). Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.SCHBSP.1.PU.WOPOWAT\",\"Africa Dataset: Percentage of primary schools without access to potable water (%)\",\"Share of public primary schools without a drinking water facility or water delivery point that is designed to protect water from external contamination, particularly of fecal origin. Examples of potable drinking water facilities include pipe-borne water, protected wells, boreholes, protected spring water and rainwater. Access to potable water is important for ensuring hygienic practices within schools and reducing the spread of certain diseases which may affect pupils’ well-being or educational performance. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.SCHBSP.1.PU.WOTOIL\",\"Africa Dataset: Percentage of primary schools without toilets (%)\",\"Share of public primary schools without a pit latrine, flush toilet, pour-flush toilet or a composting toilet. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.SCHBSP.1.PU.WPOWAT\",\"Africa Dataset: Percentage of primary schools with access to potable water (%)\",\"Share of public primary schools with a drinking water facility or water delivery point that is designed to protect water from external contamination, particularly of fecal origin. Examples of potable drinking water facilities include pipe-borne water, protected wells, boreholes, protected spring water and rainwater. Access to potable water is important for ensuring hygienic practices within schools and reducing the spread of certain diseases which may affect pupils’ well-being or educational performance. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.SCHBSP.1.PU.WSTOIL\",\"Africa Dataset: Percentage of primary schools with single-sex toilets (%)\",\"Share of public primary schools with separate girls and boys toilets or single-sex educational institutions with toilets. Schools are counted as having toilets if they have a pit latrine, an improved pit latrine, a flush toilet, a pour-flush toilet or a composting toilet. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.SCHBSP.1.PU.WTOIL\",\"Africa Dataset: Percentage of primary schools with toilets (%)\",\"Share of public primary schools with a pit latrine, an improved pit latrine, a flush toilet, a pour-flush toilet or a composting toilet. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.SCHBSP.2.PU.MIXTOIL\",\"Africa Dataset: Percentage of lower secondary schools with mixed-sex toilets (%)\",\"Share of public lower secondary schools without separate girls and boys toilets. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.SCHBSP.2.PU.WELEC\",\"Africa Dataset: Percentage of lower secondary schools with access to electricity (%)\",\"Share of public lower secondary schools with access to permanent sources of electrical power (i.e. grid/mains connection, wind, water, solar, permanently fuel-powered generator, etc.). Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.SCHBSP.2.PU.WNIELEC\",\"Africa Dataset: Percentage of lower secondary schools with no information on electricity (%)\",\"Share of public lower secondary schools where information was not available on permanent sources of electrical power (i.e. grid/mains connection, wind, water, solar, permanently fuel-powered generator, etc.). Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.SCHBSP.2.PU.WNIPOWAT\",\"Africa Dataset: Percentage of lower secondary schools with no information on potable water (%)\",\"Share of public lower secondary schools where information was not available on potable water. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.SCHBSP.2.PU.WNITOIL\",\"Africa Dataset: Percentage of lower secondary schools with no information on toilets (%)\",\"Share of public lower secondary schools where information was not available on toilets. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.SCHBSP.2.PU.WOELEC\",\"Africa Dataset: Percentage of lower secondary schools without access to electricity (%)\",\"Share of public lower secondary schools with no access to permanent sources of electrical power (i.e. grid/mains connection, wind, water, solar, permanently fuel-powered generator, etc.). Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.SCHBSP.2.PU.WOPOWAT\",\"Africa Dataset: Percentage of lower secondary schools without access to potable water (%)\",\"Share of public lower secondary schools without a drinking water facility or water delivery point that is designed to protect water from external contamination, particularly of fecal origin. Examples of potable drinking water facilities include pipe-borne water, protected wells, boreholes, protected spring water and rainwater. Access to potable water is important for ensuring hygienic practices within schools and reducing the spread of certain diseases which may affect pupils’ well-being or educational performance. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.SCHBSP.2.PU.WOTOIL\",\"Africa Dataset: Percentage of lower secondary schools without toilets (%)\",\"Share of public lower secondary schools without a pit latrine, flush toilet, pour-flush toilet or a composting toilet. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.SCHBSP.2.PU.WPOWAT\",\"Africa Dataset: Percentage of lower secondary schools with access to potable water (%)\",\"Share of public lower secondary schools with a drinking water facility or water delivery point that is designed to protect water from external contamination, particularly of fecal origin. Examples of potable drinking water facilities include pipe-borne water, protected wells, boreholes, protected spring water and rainwater. Access to potable water is important for ensuring hygienic practices within schools and reducing the spread of certain diseases which may affect pupils’ well-being or educational performance. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.SCHBSP.2.PU.WSTOIL\",\"Africa Dataset: Percentage of lower secondary schools with single-sex toilets (%)\",\"Share of public lower secondary schools with separate girls and boys toilets or single-sex educational institutions with toilets. Schools are counted as having toilets if they have a pit latrine, an improved pit latrine, a flush toilet, a pour-flush toilet or a composting toilet. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.SCHBSP.2.PU.WTOIL\",\"Africa Dataset: Percentage of lower secondary schools with toilets (%)\",\"Share of public lower secondary schools with a pit latrine, an improved pit latrine, a flush toilet, a pour-flush toilet or a composting toilet. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.SCHCENRESPR.1.PU\",\"Africa Dataset: School census return rate from primary schools\",\"Share of all primary school questionnaires that were returned with at least some usable data and captured in the EMIS system. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.SCHCENRESPR.23.PU\",\"Africa Dataset: School census return rate from secondary schools\",\"Share of all lower secondary school questionnaires that were returned with at least some usable data and captured in the EMIS system. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.TATTRR.1.PU.F\",\"Africa Dataset: Teacher attrition rate from public primary education, female (%)\",\"Number of female teachers who left the public primary education system in year t+1, expressed as a percentage of female teachers in service in public primary education system in year t. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.TATTRR.1.PU.M\",\"Africa Dataset: Teacher attrition rate from public primary education, male (%)\",\"Number of male teachers who left the public primary education system in year t+1, expressed as a percentage of male teachers in service in public primary education system in year t. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.TATTRR.1.PU.T\",\"Africa Dataset: Teacher attrition rate from public primary education, both sexes (%)\",\"Number of teachers who left the public primary education system in year t+1, expressed as a percentage of teachers in service in public primary education system in year t. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.TATTRR.2.Pu.F\",\"Africa Dataset: Teacher attrition rate from public lower secondary education, female (%)\",\"Number of female teachers who left the public lower secondary education system in year t+1, expressed as a percentage of female teachers in service in public lower secondary education system in year t. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.TATTRR.2.Pu.M\",\"Africa Dataset: Teacher attrition rate from public lower secondary education, male (%)\",\"Number of male teachers who left the public lower secondary education system in year t+1, expressed as a percentage of male teachers in service in public lower secondary education system in year t. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.TATTRR.2.PU.T\",\"Africa Dataset: Teacher attrition rate from public lower secondary education, both sexes (%)\",\"Number of teachers who left the public lower secondary education system in year t+1, expressed as a percentage of teachers in service in public lower secondary education system in year t. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.TATTRR.3.Pu.F\",\"Africa Dataset: Teacher attrition rate from public upper secondary education, female (%)\",\"Number of female teachers who left the public upper secondary education system in year t+1, expressed as a percentage of female teachers in service in public upper secondary education system in year t. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.TATTRR.3.Pu.M\",\"Africa Dataset: Teacher attrition rate from public upper secondary education, male (%)\",\"Number of male teachers who left the public upper secondary education system in year t+1, expressed as a percentage of male teachers in service in public upper secondary education system in year t. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.TATTRR.3.Pu.T\",\"Africa Dataset: Teacher attrition rate from public upper secondary education, both sexes (%)\",\"Number of teachers who left the public upper secondary education system in year t+1, expressed as a percentage of teachers in service in public upper secondary education system in year t. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.TRNTP.1.PU.F\",\"Africa Dataset: Percentage of female newly recruited teachers in primary education who are trained, female (%)\",\"Share of newly recruited female public primary school teachers who have been trained. A trained teacher is defined as “a teacher who has received at least the minimum organized teacher-training (pre-service or in-service) required for teaching at the relevant level”. However, since minimum standards of training can vary greatly between countries, these indicators are often not directly comparable. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.TRNTP.1.PU.M\",\"Africa Dataset: Percentage of male newly recruited teachers in primary education who are trained, male (%)\",\"Share of newly recruited male public primary school teachers who have been trained. A trained teacher is defined as “a teacher who has received at least the minimum organized teacher-training (pre-service or in-service) required for teaching at the relevant level”. However, since minimum standards of training can vary greatly between countries, these indicators are often not directly comparable. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.TRNTP.1.PU.T\",\"Africa Dataset: Percentage of newly recruited teachers in primary education who are trained, both sexes (%)\",\"Share of newly recruited public primary school teachers who have been trained. A trained teacher is defined as “a teacher who has received at least the minimum organized teacher-training (pre-service or in-service) required for teaching at the relevant level”. However, since minimum standards of training can vary greatly between countries, these indicators are often not directly comparable. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.TRNTP.2.PU.F\",\"Africa Dataset: Percentage of female newly recruited teachers in lower secondary education who are trained, female (%)\",\"Share of newly recruited female public lower secondary school teachers who have been trained. A trained teacher is defined as “a teacher who has received at least the minimum organized teacher-training (pre-service or in-service) required for teaching at the relevant level”. However, since minimum standards of training can vary greatly between countries, these indicators are often not directly comparable. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.TRNTP.2.PU.M\",\"Africa Dataset: Percentage of male newly recruited teachers in lower secondary education who are trained, male (%)\",\"Share of newly recruited male public lower secondary school teachers who have been trained. A trained teacher is defined as “a teacher who has received at least the minimum organized teacher-training (pre-service or in-service) required for teaching at the relevant level”. However, since minimum standards of training can vary greatly between countries, these indicators are often not directly comparable. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.TRNTP.2.PU.T\",\"Africa Dataset: Percentage of newly recruited teachers in lower secondary education who are trained, both sexes (%)\",\"Share of newly recruited public lower secondary school teachers who have been trained. A trained teacher is defined as “a teacher who has received at least the minimum organized teacher-training (pre-service or in-service) required for teaching at the relevant level”. However, since minimum standards of training can vary greatly between countries, these indicators are often not directly comparable. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.TRNTP.3.PU.F\",\"Africa Dataset: Percentage of female newly recruited teachers in upper secondary education who are trained, female (%)\",\"Share of newly recruited female public upper secondary school teachers who have been trained. A trained teacher is defined as “a teacher who has received at least the minimum organized teacher-training (pre-service or in-service) required for teaching at the relevant level”. However, since minimum standards of training can vary greatly between countries, these indicators are often not directly comparable. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.TRNTP.3.PU.M\",\"Africa Dataset: Percentage of male newly recruited teachers in upper secondary education who are trained, male (%)\",\"Share of newly recruited male public upper secondary school teachers who have been trained. A trained teacher is defined as “a teacher who has received at least the minimum organized teacher-training (pre-service or in-service) required for teaching at the relevant level”. However, since minimum standards of training can vary greatly between countries, these indicators are often not directly comparable. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AFR.TRNTP.3.PU.T\",\"Africa Dataset: Percentage of newly recruited teachers in upper secondary education who are trained, both sexes (%)\",\"Share of newly recruited public upper secondary school teachers who have been trained. A trained teacher is defined as “a teacher who has received at least the minimum organized teacher-training (pre-service or in-service) required for teaching at the relevant level”. However, since minimum standards of training can vary greatly between countries, these indicators are often not directly comparable. Data available for African countries only. For more information, consult the UNESCO Institute for Statistics' Regional Data Collections page.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AIR.1.Glast.GPI\",\"Primary completion rate, gender parity index (GPI)\",\"Ratio of the female primary completion rate to the male primary completion rate. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females. Primary completion rate is also referred to as \\\"gross intake ratio to the last grade of primary education.\\\"\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AIR.1.GPI\",\"Gross intake ratio to Grade 1 of primary education, gender parity index (GPI)\",\"Ratio of the female gross intake ratio for primary to the male gross intake ratio for primary. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AIR.2.GPV\",\"Gross intake ratio to Grade 1 of lower secondary general education, both sexes (%)\",\"Total number of new entrants in the first grade of lower secondary education, regardless of age, expressed as a percentage of the population at the official lower secondary school entrance age. A high GIR indicates a high degree of access to lower secondary education. As this calculation includes all new entrants in Grade 1 (regardless of age), the ratio can exceed 100% due to over-aged and under-aged children entering lower secondary school for the first time.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AIR.2.GPV.F\",\"Gross intake ratio to Grade 1 of lower secondary general education, female (%)\",\"Total number of new female entrants in the first grade of lower secondary education, regardless of age, expressed as a percentage of the population at the official lower secondary school-entrance age. A high GIR indicates a high degree of access to lower secondary education. As this calculation includes all new entrants in Grade 1 (regardless of age), the ratio can exceed 100% due to over-aged and under-aged children entering lower secondary school for the first time.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AIR.2.GPV.GLAST.GPI\",\"Lower secondary completion rate, gender parity index (GPI)\",\"Ratio of the female lower secondary completion rate to the male lower secondary completion rate. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females. Lower secondary completion rate is also referred to as \\\"Gross intake ratio to the last grade of lower secondary general education.\\\"\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AIR.2.GPV.GPI\",\"Gross intake ratio to Grade 1 of lower secondary general education, gender parity index (GPI)\",\"Ratio of the female gross intake ratio for lower secondary to the male gross intake ratio for lower secondary. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.AIR.2.GPV.M\",\"Gross intake ratio to Grade 1 of lower secondary general education, male (%)\",\"Total number of new male entrants in the first grade of lower secondary education, regardless of age, expressed as a percentage of the population at the official lower secondary school-entrance age. A high GIR indicates a high degree of access to lower secondary education. As this calculation includes all new entrants in Grade 1 (regardless of age), the ratio can exceed 100% due to over-aged and under-aged children entering lower secondary school for the first time.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.CEAge.1\",\"Official entrance age to compulsory education (years)\",\"Official age when students should enter compulsory education assuming they start at the official entrance age for the lowest level of education, study full-time throughout and progressed through the system without repeating or skipping a grade. The theoretical entrance age to a given programme or level is typically, but not always, the most common entrance age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.DR.1.G1\",\"Drop-out rate from Grade 1 of primary education, both sexes (%)\",\"Proportion of pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Dropout rate by grade is calculated by subtracting the sum of promotion rate and repetition rate from 100.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.DR.1.G1.F\",\"Drop-out rate from Grade 1 of primary education, female (%)\",\"Proportion of female pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Dropout rate by grade is calculated by subtracting the sum of promotion rate and repetition rate from 100.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.DR.1.G1.M\",\"Drop-out rate from Grade 1 of primary education, male (%)\",\"Proportion of male pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Dropout rate by grade is calculated by subtracting the sum of promotion rate and repetition rate from 100.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.DR.1.G2\",\"Drop-out rate from Grade 2 of primary education, both sexes (%)\",\"Proportion of pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Dropout rate by grade is calculated by subtracting the sum of promotion rate and repetition rate from 100.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.DR.1.G2.F\",\"Drop-out rate from Grade 2 of primary education, female (%)\",\"Proportion of female pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Dropout rate by grade is calculated by subtracting the sum of promotion rate and repetition rate from 100.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.DR.1.G2.M\",\"Drop-out rate from Grade 2 of primary education, male (%)\",\"Proportion of male pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Dropout rate by grade is calculated by subtracting the sum of promotion rate and repetition rate from 100.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.DR.1.G3\",\"Drop-out rate from Grade 3 of primary education, both sexes (%)\",\"Proportion of pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Dropout rate by grade is calculated by subtracting the sum of promotion rate and repetition rate from 100.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.DR.1.G3.F\",\"Drop-out rate from Grade 3 of primary education, female (%)\",\"Proportion of female pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Dropout rate by grade is calculated by subtracting the sum of promotion rate and repetition rate from 100.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.DR.1.G3.M\",\"Drop-out rate from Grade 3 of primary education, male (%)\",\"Proportion of male pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Dropout rate by grade is calculated by subtracting the sum of promotion rate and repetition rate from 100.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.DR.1.G4\",\"Drop-out rate from Grade 4 of primary education, both sexes (%)\",\"Proportion of pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Dropout rate by grade is calculated by subtracting the sum of promotion rate and repetition rate from 100.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.DR.1.G4.F\",\"Drop-out rate from Grade 4 of primary education, female (%)\",\"Proportion of female pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Dropout rate by grade is calculated by subtracting the sum of promotion rate and repetition rate from 100.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.DR.1.G4.M\",\"Drop-out rate from Grade 4 of primary education, male (%)\",\"Proportion of male pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Dropout rate by grade is calculated by subtracting the sum of promotion rate and repetition rate from 100.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.DR.1.G5\",\"Drop-out rate from Grade 5 of primary education, both sexes (%)\",\"Proportion of pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Dropout rate by grade is calculated by subtracting the sum of promotion rate and repetition rate from 100.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.DR.1.G5.F\",\"Drop-out rate from Grade 5 of primary education, female (%)\",\"Proportion of female pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Dropout rate by grade is calculated by subtracting the sum of promotion rate and repetition rate from 100.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.DR.1.G5.M\",\"Drop-out rate from Grade 5 of primary education, male (%)\",\"Proportion of male pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Dropout rate by grade is calculated by subtracting the sum of promotion rate and repetition rate from 100.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.DR.1.G6\",\"Drop-out rate from Grade 6 of primary education, both sexes (%)\",\"Proportion of pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Dropout rate by grade is calculated by subtracting the sum of promotion rate and repetition rate from 100.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.DR.1.G6.F\",\"Drop-out rate from Grade 6 of primary education, female (%)\",\"Proportion of female pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Dropout rate by grade is calculated by subtracting the sum of promotion rate and repetition rate from 100.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.DR.1.G6.M\",\"Drop-out rate from Grade 6 of primary education, male (%)\",\"Proportion of male pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Dropout rate by grade is calculated by subtracting the sum of promotion rate and repetition rate from 100.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.DR.2.GPV.F\",\"Cumulative drop-out rate to the last grade of lower secondary general education, female (%)\",\"Proportion of female pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Cumulative dropout rate in lower secondary general education is calculated by subtracting the survival rate from 100 at a given grade.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.DR.2.GPV.G1.F\",\"Drop-out rate from Grade 1 of lower secondary general education, female (%)\",\"Proportion of female pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Dropout rate by grade is calculated by subtracting the sum of promotion rate and repetition rate from 100.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.DR.2.GPV.G1.M\",\"Drop-out rate from Grade 1 of lower secondary general education, male (%)\",\"Proportion of male pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Dropout rate by grade is calculated by subtracting the sum of promotion rate and repetition rate from 100.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.DR.2.GPV.G1.T\",\"Drop-out rate from Grade 1 of lower secondary general education, both sexes (%)\",\"Proportion of pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Dropout rate by grade is calculated by subtracting the sum of promotion rate and repetition rate from 100.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.DR.2.GPV.G2.F\",\"Drop-out rate from Grade 2 of lower secondary general education, female (%)\",\"Proportion of female pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Dropout rate by grade is calculated by subtracting the sum of promotion rate and repetition rate from 100.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.DR.2.GPV.G2.M\",\"Drop-out rate from Grade 2 of lower secondary general education, male (%)\",\"Proportion of male pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Dropout rate by grade is calculated by subtracting the sum of promotion rate and repetition rate from 100.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.DR.2.GPV.G2.T\",\"Drop-out rate from Grade 2 of lower secondary general education, both sexes (%)\",\"Proportion of pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Dropout rate by grade is calculated by subtracting the sum of promotion rate and repetition rate from 100.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.DR.2.GPV.G3.F\",\"Drop-out rate from Grade 3 of lower secondary general education, female (%)\",\"Proportion of female pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Dropout rate by grade is calculated by subtracting the sum of promotion rate and repetition rate from 100.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.DR.2.GPV.G3.M\",\"Drop-out rate from Grade 3 of lower secondary general education, male (%)\",\"Proportion of male pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Dropout rate by grade is calculated by subtracting the sum of promotion rate and repetition rate from 100.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.DR.2.GPV.G3.T\",\"Drop-out rate from Grade 3 of lower secondary general education, both sexes (%)\",\"Proportion of pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Dropout rate by grade is calculated by subtracting the sum of promotion rate and repetition rate from 100.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.DR.2.GPV.G4.F\",\"Drop-out rate from Grade 4 of lower secondary general education, female (%)\",\"Proportion of female pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Dropout rate by grade is calculated by subtracting the sum of promotion rate and repetition rate from 100.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.DR.2.GPV.G4.M\",\"Drop-out rate from Grade 4 of lower secondary general education, male (%)\",\"Proportion of male pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Dropout rate by grade is calculated by subtracting the sum of promotion rate and repetition rate from 100.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.DR.2.GPV.G4.T\",\"Drop-out rate from Grade 4 of lower secondary general education, both sexes (%)\",\"Proportion of pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Dropout rate by grade is calculated by subtracting the sum of promotion rate and repetition rate from 100.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.DR.2.GPV.G5.F\",\"Drop-out rate from Grade 5 of lower secondary general education, female (%)\",\"Proportion of female pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Dropout rate by grade is calculated by subtracting the sum of promotion rate and repetition rate from 100.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.DR.2.GPV.G5.M\",\"Drop-out rate from Grade 5 of lower secondary general education, male (%)\",\"Proportion of male pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Dropout rate by grade is calculated by subtracting the sum of promotion rate and repetition rate from 100.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.DR.2.GPV.G5.T\",\"Drop-out rate from Grade 5 of lower secondary general education, both sexes (%)\",\"Proportion of pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Dropout rate by grade is calculated by subtracting the sum of promotion rate and repetition rate from 100.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.DR.2.GPV.M\",\"Cumulative drop-out rate to the last grade of lower secondary general education, male (%)\",\"Proportion of male pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Cumulative dropout rate in lower secondary general education is calculated by subtracting the survival rate from 100 at a given grade.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.DR.2.GPV.T\",\"Cumulative drop-out rate to the last grade of lower secondary general education, both sexes (%)\",\"Proportion of pupils from a cohort enrolled in a given grade at a given school year who are no longer enrolled in the following school year. Cumulative dropout rate in lower secondary general education is calculated by subtracting the survival rate from 100 at a given grade.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.0.PR\",\"Enrolment in pre-primary education, private institutions, both sexes (number)\",\"Total number of individuals enrolled in private pre-primary education institutions regardless of age. A private education institution is an institution that is controlled and managed by a non-governmental organization (e.g. a church, a trade union or a business enterprise, foreign or international agency), or its governing board consists mostly of members who have not been selected by a public agency.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.0.PR.F\",\"Enrolment in pre-primary education, private institutions, female (number)\",\"Total number of females enrolled in private pre-primary education institutions regardless of age. A private education institution is an institution that is controlled and managed by a non-governmental organization (e.g. a church, a trade union or a business enterprise, foreign or international agency), or its governing board consists mostly of members who have not been selected by a public agency.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.0.Pu\",\"Enrolment in pre-primary education, public institutions, both sexes (number)\",\"Total number of individuals enrolled in public pre-primary education institutions regardless of age. Public education Institutions are controlled and managed directly by a public education authority or agency of the country where it is located or by a government agency directly or by a governing body (council, committee etc.), most of whose members are either appointed by a public authority of the country where it is located or elected by public franchise.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.0.Pu.F\",\"Enrolment in pre-primary education, public institutions, female (number)\",\"Total number of females enrolled in public pre-primary education institutions regardless of age. Public education Institutions are controlled and managed directly by a public education authority or agency of the country where it is located or by a government agency directly or by a governing body (council, committee etc.), most of whose members are either appointed by a public authority of the country where it is located or elected by public franchise.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.1.G1\",\"Enrolment in Grade 1 of primary education, both sexes (number)\",\"Total number of students enrolled in Grade 1 of primary education regardless of age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.1.G1.F\",\"Enrolment in Grade 1 of primary education, female (number)\",\"Total number of female students enrolled in Grade 1 of primary education regardless of age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.1.G2\",\"Enrolment in Grade 2 of primary education, both sexes (number)\",\"Total number of students enrolled in Grade 2 of primary education regardless of age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.1.G2.F\",\"Enrolment in Grade 2 of primary education, female (number)\",\"Total number of female students enrolled in Grade 2 of primary education regardless of age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.1.G3\",\"Enrolment in Grade 3 of primary education, both sexes (number)\",\"Total number of students enrolled in Grade 3 of primary education regardless of age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.1.G3.F\",\"Enrolment in Grade 3 of primary education, female (number)\",\"Total number of female students enrolled in Grade 3 of primary education regardless of age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.1.G4\",\"Enrolment in Grade 4 of primary education, both sexes (number)\",\"Total number of students enrolled in Grade 4 of primary education regardless of age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.1.G4.F\",\"Enrolment in Grade 4 of primary education, female (number)\",\"Total number of female students enrolled in Grade 4 of primary education regardless of age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.1.G5\",\"Enrolment in Grade 5 of primary education, both sexes (number)\",\"Total number of students enrolled in Grade 5 of primary education regardless of age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.1.G5.F\",\"Enrolment in Grade 5 of primary education, female (number)\",\"Total number of female students enrolled in Grade 5 of primary education regardless of age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.1.G6\",\"Enrolment in Grade 6 of primary education, both sexes (number)\",\"Total number of students enrolled in Grade 6 of primary education regardless of age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.1.G6.F\",\"Enrolment in Grade 6 of primary education, female (number)\",\"Total number of female students enrolled in Grade 6 of primary education regardless of age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.1.G7\",\"Enrolment in Grade 7 of primary education, both sexes (number)\",\"Total number of students enrolled in Grade 7 of primary education regardless of age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.1.G7.F\",\"Enrolment in Grade 7 of primary education, female (number)\",\"Total number of female students enrolled in Grade 7 of primary education regardless of age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.1.Guk\",\"Enrolment in primary education, Grade unspecified, both sexes (number)\",\"Total number of students enrolled in unspecified grades of primary education.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.1.Guk.F\",\"Enrolment in primary education, Grade unspecified, female (number)\",\"Total number of female students enrolled in unspecified grades of primary education.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.1.PR\",\"Enrolment in primary education, private institutions, both sexes (number)\",\"Total number of individuals enrolled in private primary education institutions regardless of age. A private education institution is an institution that is controlled and managed by a non-governmental organization (e.g. a church, a trade union or a business enterprise, foreign or international agency), or its governing board consists mostly of members who have not been selected by a public agency.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.1.PR.F\",\"Enrolment in primary education, private institutions, female (number)\",\"Total number of females enrolled in private primary education institutions regardless of age. A private education institution is an institution that is controlled and managed by a non-governmental organization (e.g. a church, a trade union or a business enterprise, foreign or international agency), or its governing board consists mostly of members who have not been selected by a public agency.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.1.Pu\",\"Enrolment in primary education, public institutions, both sexes (number)\",\"Total number of individuals enrolled in public primary education institutions regardless of age. Public education Institutions are controlled and managed directly by a public education authority or agency of the country where it is located or by a government agency directly or by a governing body (council, committee etc.), most of whose members are either appointed by a public authority of the country where it is located or elected by public franchise.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.1.Pu.F\",\"Enrolment in primary education, public institutions, female (number)\",\"Total number of females enrolled in public primary education institutions regardless of age. Public education Institutions are controlled and managed directly by a public education authority or agency of the country where it is located or by a government agency directly or by a governing body (council, committee etc.), most of whose members are either appointed by a public authority of the country where it is located or elected by public franchise.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.2\",\"Enrolment in lower secondary education, both sexes (number)\",\"Total number of students enrolled in public and private lower secondary education institutions regardless of age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.2.F\",\"Enrolment in lower secondary education, female (number)\",\"Total number of female students enrolled in public and private lower secondary education institutions regardless of age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.2.GPV\",\"Enrolment in lower secondary general, both sexes (number)\",\"Total number of students enrolled in general programmes at public and private lower secondary education institutions regardless of age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.2.GPV.F\",\"Enrolment in lower secondary general, female (number)\",\"Total number of female students enrolled in general programmes at public and private lower secondary education institutions regardless of age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.2.GPV.G1.F\",\"Enrolment in Grade 1 of lower secondary general education, female (number)\",\"Total number of female students enrolled in Grade 1 of lower secondary general education. General education is designed to develop learners’ general knowledge, skills and competencies and literacy and numeracy skills, often to prepare students for more advanced educational programmes at the same or higher ISCED levels and to lay the foundation for lifelong learning. General educational programmes are typically school- or college-based. General education includes educational programmes that are designed to prepare students for entry into vocational education, but that do not prepare for employment in a particular occupation or trade or class of occupations or trades, nor lead directly to a labour market relevant qualification.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.2.GPV.G1.T\",\"Enrolment in Grade 1 of lower secondary general education, both sexes (number)\",\"Total number of students enrolled in Grade 1 of lower secondary general education. General education is designed to develop learners’ general knowledge, skills and competencies and literacy and numeracy skills, often to prepare students for more advanced educational programmes at the same or higher ISCED levels and to lay the foundation for lifelong learning. General educational programmes are typically school- or college-based. General education includes educational programmes that are designed to prepare students for entry into vocational education, but that do not prepare for employment in a particular occupation or trade or class of occupations or trades, nor lead directly to a labour market relevant qualification.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.2.GPV.G2.F\",\"Enrolment in Grade 2 of lower secondary general education, female (number)\",\"Total number of female students enrolled in Grade 2 of lower secondary general education. General education is designed to develop learners’ general knowledge, skills and competencies and literacy and numeracy skills, often to prepare students for more advanced educational programmes at the same or higher ISCED levels and to lay the foundation for lifelong learning. General educational programmes are typically school- or college-based. General education includes educational programmes that are designed to prepare students for entry into vocational education, but that do not prepare for employment in a particular occupation or trade or class of occupations or trades, nor lead directly to a labour market relevant qualification.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.2.GPV.G2.T\",\"Enrolment in Grade 2 of lower secondary general education, both sexes (number)\",\"Total number of students enrolled in Grade 2 of lower secondary general education. General education is designed to develop learners’ general knowledge, skills and competencies and literacy and numeracy skills, often to prepare students for more advanced educational programmes at the same or higher ISCED levels and to lay the foundation for lifelong learning. General educational programmes are typically school- or college-based. General education includes educational programmes that are designed to prepare students for entry into vocational education, but that do not prepare for employment in a particular occupation or trade or class of occupations or trades, nor lead directly to a labour market relevant qualification.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.2.GPV.G3.F\",\"Enrolment in Grade 3 of lower secondary general education, female (number)\",\"Total number of female students enrolled in Grade 3 of lower secondary general education. General education is designed to develop learners’ general knowledge, skills and competencies and literacy and numeracy skills, often to prepare students for more advanced educational programmes at the same or higher ISCED levels and to lay the foundation for lifelong learning. General educational programmes are typically school- or college-based. General education includes educational programmes that are designed to prepare students for entry into vocational education, but that do not prepare for employment in a particular occupation or trade or class of occupations or trades, nor lead directly to a labour market relevant qualification.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.2.GPV.G3.T\",\"Enrolment in Grade 3 of lower secondary general education, both sexes (number)\",\"Total number of students enrolled in Grade 3 of lower secondary general education. General education is designed to develop learners’ general knowledge, skills and competencies and literacy and numeracy skills, often to prepare students for more advanced educational programmes at the same or higher ISCED levels and to lay the foundation for lifelong learning. General educational programmes are typically school- or college-based. General education includes educational programmes that are designed to prepare students for entry into vocational education, but that do not prepare for employment in a particular occupation or trade or class of occupations or trades, nor lead directly to a labour market relevant qualification.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.2.GPV.G4.F\",\"Enrolment in Grade 4 of lower secondary general education, female (number)\",\"Total number of female students enrolled in Grade 4 of lower secondary general education. General education is designed to develop learners’ general knowledge, skills and competencies and literacy and numeracy skills, often to prepare students for more advanced educational programmes at the same or higher ISCED levels and to lay the foundation for lifelong learning. General educational programmes are typically school- or college-based. General education includes educational programmes that are designed to prepare students for entry into vocational education, but that do not prepare for employment in a particular occupation or trade or class of occupations or trades, nor lead directly to a labour market relevant qualification.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.2.GPV.G4.T\",\"Enrolment in Grade 4 of lower secondary general education, both sexes (number)\",\"Total number of students enrolled in Grade 4 of lower secondary general education. General education is designed to develop learners’ general knowledge, skills and competencies and literacy and numeracy skills, often to prepare students for more advanced educational programmes at the same or higher ISCED levels and to lay the foundation for lifelong learning. General educational programmes are typically school- or college-based. General education includes educational programmes that are designed to prepare students for entry into vocational education, but that do not prepare for employment in a particular occupation or trade or class of occupations or trades, nor lead directly to a labour market relevant qualification.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.2.GPV.G5.F\",\"Enrolment in Grade 5 of lower secondary general education, female (number)\",\"Total number of female students enrolled in Grade 5 of lower secondary general education. General education is designed to develop learners’ general knowledge, skills and competencies and literacy and numeracy skills, often to prepare students for more advanced educational programmes at the same or higher ISCED levels and to lay the foundation for lifelong learning. General educational programmes are typically school- or college-based. General education includes educational programmes that are designed to prepare students for entry into vocational education, but that do not prepare for employment in a particular occupation or trade or class of occupations or trades, nor lead directly to a labour market relevant qualification.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.2.GPV.G5.T\",\"Enrolment in Grade 5 of lower secondary general education, both sexes (number)\",\"Total number of students enrolled in Grade 5 of lower secondary general education. General education is designed to develop learners’ general knowledge, skills and competencies and literacy and numeracy skills, often to prepare students for more advanced educational programmes at the same or higher ISCED levels and to lay the foundation for lifelong learning. General educational programmes are typically school- or college-based. General education includes educational programmes that are designed to prepare students for entry into vocational education, but that do not prepare for employment in a particular occupation or trade or class of occupations or trades, nor lead directly to a labour market relevant qualification.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.2.GPV.GUK.F\",\"Enrolment in lower secondary general education, Grade unspecified, female (number)\",\"Total number of female students enrolled in lower secondary general education (grade unspecified). General education is designed to develop learners’ general knowledge, skills and competencies and literacy and numeracy skills, often to prepare students for more advanced educational programmes at the same or higher ISCED levels and to lay the foundation for lifelong learning. General educational programmes are typically school- or college-based. General education includes educational programmes that are designed to prepare students for entry into vocational education, but that do not prepare for employment in a particular occupation or trade or class of occupations or trades, nor lead directly to a labour market relevant qualification.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.2.GPV.GUK.T\",\"Enrolment in lower secondary general education, Grade unspecified, both sexes (number)\",\"Total number of students enrolled in lower secondary general education (grade unspecified). General education is designed to develop learners’ general knowledge, skills and competencies and literacy and numeracy skills, often to prepare students for more advanced educational programmes at the same or higher ISCED levels and to lay the foundation for lifelong learning. General educational programmes are typically school- or college-based. General education includes educational programmes that are designed to prepare students for entry into vocational education, but that do not prepare for employment in a particular occupation or trade or class of occupations or trades, nor lead directly to a labour market relevant qualification.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.2.PR\",\"Enrolment in lower secondary education, private institutions, both sexes (number)\",\"Total number of individuals enrolled in private lower secondary education institutions regardless of age. A private education institution is an institution that is controlled and managed by a non-governmental organization (e.g. a church, a trade union or a business enterprise, foreign or international agency), or its governing board consists mostly of members who have not been selected by a public agency.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.2.PR.F\",\"Enrolment in lower secondary education, private institutions, female (number)\",\"Total number of females enrolled in private lower secondary education institutions regardless of age. A private education institution is an institution that is controlled and managed by a non-governmental organization (e.g. a church, a trade union or a business enterprise, foreign or international agency), or its governing board consists mostly of members who have not been selected by a public agency.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.2.PU\",\"Enrolment in lower secondary education, public institutions, both sexes (number)\",\"Total number of individuals enrolled in public lower secondary education institutions regardless of age. Public education Institutions are controlled and managed directly by a public education authority or agency of the country where it is located or by a government agency directly or by a governing body (council, committee etc.), most of whose members are either appointed by a public authority of the country where it is located or elected by public franchise.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.2.PU.F\",\"Enrolment in lower secondary education, public institutions, female (number)\",\"Total number of females enrolled in public lower secondary education institutions regardless of age. Public education Institutions are controlled and managed directly by a public education authority or agency of the country where it is located or by a government agency directly or by a governing body (council, committee etc.), most of whose members are either appointed by a public authority of the country where it is located or elected by public franchise.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.2.V\",\"Enrolment in lower secondary vocational, both sexes (number)\",\"Total number of students enrolled in vocational programmes at public and private lower secondary education institutions regardless of age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.2.V.F\",\"Enrolment in lower secondary vocational, female (number)\",\"Total number of female students enrolled in vocational programmes at public and private lower secondary education institutions regardless of age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.23.PR\",\"Enrolment in secondary education, private institutions, both sexes (number)\",\"Total number of individuals enrolled in private secondary education institutions regardless of age. A private education institution is an institution that is controlled and managed by a non-governmental organization (e.g. a church, a trade union or a business enterprise, foreign or international agency), or its governing board consists mostly of members who have not been selected by a public agency.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.23.PR.F\",\"Enrolment in secondary education, private institutions, female (number)\",\"Total number of females enrolled in private secondary education institutions regardless of age. A private education institution is an institution that is controlled and managed by a non-governmental organization (e.g. a church, a trade union or a business enterprise, foreign or international agency), or its governing board consists mostly of members who have not been selected by a public agency.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.23.PU\",\"Enrolment in secondary education, public institutions, both sexes (number)\",\"Total number of individuals enrolled in public secondary education institutions regardless of age. Public education Institutions are controlled and managed directly by a public education authority or agency of the country where it is located or by a government agency directly or by a governing body (council, committee etc.), most of whose members are either appointed by a public authority of the country where it is located or elected by public franchise.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.23.PU.F\",\"Enrolment in secondary education, public institutions, female (number)\",\"Total number of females enrolled in public secondary education institutions regardless of age. Public education Institutions are controlled and managed directly by a public education authority or agency of the country where it is located or by a government agency directly or by a governing body (council, committee etc.), most of whose members are either appointed by a public authority of the country where it is located or elected by public franchise.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.3\",\"Enrolment in upper secondary education, both sexes (number)\",\"Total number of students enrolled in public and private upper secondary education institutions regardless of age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.3.F\",\"Enrolment in upper secondary education, female (number)\",\"Total number of female students enrolled in public and private upper secondary education institutions regardless of age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.3.GPV\",\"Enrolment in upper secondary general, both sexes (number)\",\"Total number of students enrolled in general programmes at public and private upper secondary education institutions regardless of age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.3.GPV.F\",\"Enrolment in upper secondary general, female (number)\",\"Total number of female students enrolled in general programmes at public and private upper secondary education institutions regardless of age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.3.PR\",\"Enrolment in upper secondary education, private institutions, both sexes (number)\",\"Total number of individuals enrolled in private upper secondary education institutions regardless of age. A private education institution is an institution that is controlled and managed by a non-governmental organization (e.g. a church, a trade union or a business enterprise, foreign or international agency), or its governing board consists mostly of members who have not been selected by a public agency.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.3.PR.F\",\"Enrolment in upper secondary education, private institutions, female (number)\",\"Total number of females enrolled in private upper secondary education institutions regardless of age. A private education institution is an institution that is controlled and managed by a non-governmental organization (e.g. a church, a trade union or a business enterprise, foreign or international agency), or its governing board consists mostly of members who have not been selected by a public agency.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.3.PU\",\"Enrolment in upper secondary education, public institutions, both sexes (number)\",\"Total number of individuals enrolled in public upper secondary education institutions regardless of age. Public education Institutions are controlled and managed directly by a public education authority or agency of the country where it is located or by a government agency directly or by a governing body (council, committee etc.), most of whose members are either appointed by a public authority of the country where it is located or elected by public franchise.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.3.PU.F\",\"Enrolment in upper secondary education, public institutions, female (number)\",\"Total number of females enrolled in public upper secondary education institutions regardless of age. Public education Institutions are controlled and managed directly by a public education authority or agency of the country where it is located or by a government agency directly or by a governing body (council, committee etc.), most of whose members are either appointed by a public authority of the country where it is located or elected by public franchise.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.3.V\",\"Enrolment in upper secondary vocational, both sexes (number)\",\"Total number of students enrolled in vocational programmes at public and private upper secondary education institutions regardless of age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.3.V.F\",\"Enrolment in upper secondary vocational, female (number)\",\"Total number of female students enrolled in vocational programmes at public and private upper secondary education institutions regardless of age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.4\",\"Enrolment in post-secondary non-tertiary education, both sexes (number)\",\"Total number of students enrolled in public and private post-secondary non-tertiary education institutions regardless of age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.4.F\",\"Enrolment in post-secondary non-tertiary education, female (number)\",\"Total number of female students enrolled in public and private post-secondary non-tertiary education institutions regardless of age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.4.PR\",\"Enrolment in post-secondary non-tertiary education, private institutions, both sexes (number)\",\"Total number of individuals enrolled in private post-secondary non-tertiary education institutions regardless of age. A private education institution is an institution that is controlled and managed by a non-governmental organization (e.g. a church, a trade union or a business enterprise, foreign or international agency), or its governing board consists mostly of members who have not been selected by a public agency.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.4.PR.F\",\"Enrolment in post-secondary non-tertiary education, private institutions, female (number)\",\"Total number of females enrolled in private post-secondary non-tertiary education institutions regardless of age. A private education institution is an institution that is controlled and managed by a non-governmental organization (e.g. a church, a trade union or a business enterprise, foreign or international agency), or its governing board consists mostly of members who have not been selected by a public agency.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.4.PU\",\"Enrolment in post-secondary non-tertiary education, public institutions, both sexes (number)\",\"Total number of individuals enrolled in public post-secondary non-tertiary education institutions regardless of age. Public education Institutions are controlled and managed directly by a public education authority or agency of the country where it is located or by a government agency directly or by a governing body (council, committee etc.), most of whose members are either appointed by a public authority of the country where it is located or elected by public franchise.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.4.PU.F\",\"Enrolment in post-secondary non-tertiary education, public institutions, female (number)\",\"Total number of females enrolled in public post-secondary non-tertiary education institutions regardless of age. Public education Institutions are controlled and managed directly by a public education authority or agency of the country where it is located or by a government agency directly or by a governing body (council, committee etc.), most of whose members are either appointed by a public authority of the country where it is located or elected by public franchise.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.5.B\",\"Enrolment in tertiary education, ISCED 5 programmes, both sexes (number)\",\"Total number of students enrolled in public and private short-cycle tertiary education programmes (ISCED 5).\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.5.B.F\",\"Enrolment in tertiary education, ISCED 5 programmes, female (number)\",\"Total number of female students enrolled in public and private short-cycle tertiary education programmes (ISCED 5).\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.6\",\"Enrolment in tertiary education, ISCED 6 programmes, both sexes (number)\\r\\n\",\"Total number of students enrolled in public and private tertiary education institutions in programmes on the bachelors or equivalent (ISCED 6) level.\\r\\n\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.6.F\",\"Enrolment in tertiary education, ISCED 6 programmes, female (number)\\r\\n\",\"Total number of female students enrolled in public and private tertiary education institutions in programmes on the bachelors or equivalent (ISCED 6) level.\\r\\n\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.7\",\"Enrolment in tertiary education, ISCED 7 programmes, both sexes (number)\",\"Total number of students enrolled in public and private tertiary education institutions in programmes on the masters or equivalent (ISCED 7) level.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.7.F\",\"Enrolment in tertiary education, ISCED 7 programmes, female (number)\",\"Total number of female students enrolled in public and private tertiary education institutions in programmes on the masters or equivalent (ISCED 7) level.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.8\",\"Enrolment in tertiary education, ISCED 8 programmes, both sexes (number)\",\"Total number of students enrolled in public and private tertiary education institutions in programmes on the doctoral or equivalent (ISCED 8) level.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.E.8.F\",\"Enrolment in tertiary education, ISCED 8 programmes, female (number)\",\"Total number of female students enrolled in public and private tertiary education institutions in programmes on the doctoral or equivalent (ISCED 8) level.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.1.AG25T99\",\"UIS: Percentage of population age 25+ with completed primary education. Total\",\"The percentage of population (age 25 and over) with completed primary (ISCED 1) as the highest level of educational attainment. This indicator is calculated by dividing the number of persons aged 25 years and above with completed primary education as the highest level of educational attainment by the total population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.1.AG25T99.F\",\"UIS: Percentage of population age 25+ with completed primary education. Female\",\"The percentage of female population (age 25 and over) with completed primary (ISCED 1) as the highest level of educational attainment. This indicator is calculated by dividing the number of females aged 25 years and above who completed primary education as the highest level of educational attainment by the total female population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.1.AG25T99.M\",\"UIS: Percentage of population age 25+ with completed primary education. Male\",\"The percentage of male population (age 25 and over) with completed primary (ISCED 1) as the highest level of educational attainment. This indicator is calculated by dividing the number of males aged 25 years and above who completed primary education as the highest level of educational attainment by the total male population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.1T6.AG25T99\",\"UIS: Percentage of population age 25+ with at least completed primary education (ISCED 1 or higher). Total\",\"The percentage of population (age 25 and over) with at least completed primary education (ISCED 1 or higher). This indicator is calculated by dividing the number of persons aged 25 years and above with completed primary education by the total population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.1T6.AG25T99.F\",\"UIS: Percentage of population age 25+ with at least completed primary education (ISCED 1 or higher). Female\",\"The percentage of female population (age 25 and over) with at least completed primary education (ISCED 1 or higher). This indicator is calculated by dividing the number of females aged 25 years and above who completed primary education by the total female population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.1T6.AG25T99.GPI\",\"UIS: Percentage of population age 25+ with at least completed primary education (ISCED 1 or higher). Gender Parity Index\",\"The ratio of the female percentage of the population (age 25 and over) with at least completed primary education (ISCED 1 or higher) to the male percentage of the population with at least primary education. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of men and a value greater than 1 indicates disparity in favor of women. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.1T6.AG25T99.M\",\"UIS: Percentage of population age 25+ with at least completed primary education (ISCED 1 or higher). Male\",\"The percentage of male population (age 25 and over) with at least completed primary education (ISCED 1 or higher). This indicator is calculated by dividing the number of males aged 25 years and above who completed primary education by the total male population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.2.AG25T99\",\"UIS: Percentage of population age 25+ with completed lower secondary education. Total\",\"The percentage of population (age 25 and over) with completed lower secondary education (ISCED 2) as the highest level of educational attainment. This indicator is calculated by dividing the number of persons aged 25 years and above who completed lower secondary education as the highest level of educational attainment by the total population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.2.AG25T99.F\",\"UIS: Percentage of population age 25+ with completed lower secondary education. Female\",\"The percentage of female population (age 25 and over) with completed lower secondary education (ISCED 2) as the highest level of educational attainment. This indicator is calculated by dividing the number of females aged 25 years and above who completed lower secondary education as the highest level of educational attainment by the total female population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.2.AG25T99.M\",\"UIS: Percentage of population age 25+ with completed lower secondary education. Male\",\"The percentage of male population (age 25 and over) with completed lower secondary education (ISCED 2) as the highest level of educational attainment. This indicator is calculated by dividing the number of males aged 25 years and above who completed lower secondary education as the highest level of educational attainment by the total male population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.2T6.AG25T99\",\"UIS: Percentage of population age 25+ with at least completed lower secondary education (ISCED 2 or higher). Total\",\"The percentage of population (age 25 and over) with at least completed lower secondary education (ISCED 2 or higher). This indicator is calculated by dividing the number of persons aged 25 years and above with completed lower secondary education by the total population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.2T6.AG25T99.F\",\"UIS: Percentage of population age 25+ with at least completed lower secondary education (ISCED 2 or higher). Female\",\"The percentage of female population (age 25 and over) with at least completed lower secondary education (ISCED 2 or higher). This indicator is calculated by dividing the number of females aged 25 years and above who completed lower secondary education by the total female population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.2T6.AG25T99.GPI\",\"UIS: Percentage of population age 25+ with at least completed lower secondary education (ISCED 2 or higher). Gender Parity Index\",\"The ratio of the female percentage of the population (age 25 and over) with at least completed lower secondary education (ISCED 2 or higher) to the male percentage of the population with at least lower secondary education. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of men and a value greater than 1 indicates disparity in favor of women. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.2T6.AG25T99.M\",\"UIS: Percentage of population age 25+ with at least completed lower secondary education (ISCED 2 or higher). Male\",\"The percentage of male population (age 25 and over) with at least completed lower secondary education (ISCED 2 or higher). This indicator is calculated by dividing the number of males aged 25 years and above who completed lower secondary education by the total male population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.3.AG25T99\",\"UIS: Percentage of population age 25+ with completed upper secondary education. Total\",\"The percentage of population (age 25 and over) with completed upper secondary education (ISCED 3) as the highest level of educational attainment. This indicator is calculated by dividing the number of persons aged 25 years and above who completed upper secondary education as the highest level of educational attainment by the total population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.3.AG25T99.F\",\"UIS: Percentage of population age 25+ with completed upper secondary education. Female\",\"The percentage of female population (age 25 and over) with completed upper secondary education (ISCED 3) as the highest level of educational attainment. This indicator is calculated by dividing the number of females aged 25 years and above who completed upper secondary education as the highest level of educational attainment by the total female population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.3.AG25T99.M\",\"UIS: Percentage of population age 25+ with completed upper secondary education. Male\",\"The percentage of male population (age 25 and over) with completed upper secondary education (ISCED 3) as the highest level of educational attainment. This indicator is calculated by dividing the number of males aged 25 years and above who completed upper secondary education as the highest level of educational attainment by the total male population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.3T6.AG25T99\",\"UIS: Percentage of population age 25+ with at least completed upper secondary education (ISCED 3 or higher). Total\",\"The percentage of population (age 25 and over) with at least completed upper secondary education (ISCED 3 or higher). This indicator is calculated by dividing the number of persons aged 25 years and above with completed upper secondary education by the total population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.3T6.AG25T99.F\",\"UIS: Percentage of population age 25+ with at least completed upper secondary education (ISCED 3 or higher). Female\",\"The percentage of female population (age 25 and over) with at least completed upper secondary education (ISCED 3 or higher). This indicator is calculated by dividing the number of females aged 25 years and above who completed upper secondary education by the total female population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.3T6.AG25T99.GPI\",\"UIS: Percentage of population age 25+ with at least completed upper secondary education (ISCED 3 or higher). Gender Parity Index\",\"The ratio of the female percentage of the population (age 25 and over) with at least completed upper secondary education (ISCED 3 or higher) to the male percentage of the population with at least upper secondary education. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of men and a value greater than 1 indicates disparity in favor of women. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.3T6.AG25T99.M\",\"UIS: Percentage of population age 25+ with at least completed upper secondary education (ISCED 3 or higher). Male\",\"The percentage of male population (age 25 and over) with at least completed upper secondary education (ISCED 3 or higher). This indicator is calculated by dividing the number of males aged 25 years and above who completed upper secondary education by the total male population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.4.AG25T99\",\"UIS: Percentage of population age 25+ with completed post-secondary education. Total\",\"The percentage of population (age 25 and over) with completed post-secondary education (ISCED 4) as the highest level of educational attainment. This indicator is calculated by dividing the number of persons aged 25 years and above who completed post-secondary education as the highest level of educational attainment by the total population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.4.AG25T99.F\",\"UIS: Percentage of population age 25+ with completed post-secondary education. Female\",\"The percentage of female population (age 25 and over) with completed post-secondary education (ISCED 4) as the highest level of educational attainment. This indicator is calculated by dividing the number of females aged 25 years and above who completed post-secondary education as the highest level of educational attainment by the total female population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.4.AG25T99.M\",\"UIS: Percentage of population age 25+ with completed post-secondary education. Male\",\"The percentage of male population (age 25 and over) with completed post-secondary education (ISCED 4) as the highest level of educational attainment. This indicator is calculated by dividing the number of males aged 25 years and above who completed post-secondary education as the highest level of educational attainment by the total male population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.4T6.AG25T99\",\"UIS: Percentage of population age 25+ with at least completed post-secondary education (ISCED 4 or higher). Total\",\"The percentage of population (age 25 and over) with at least completed post-secondary education (ISCED 4 or higher). This indicator is calculated by dividing the number of persons aged 25 years and above with completed post-secondary education by the total population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.4T6.AG25T99.F\",\"UIS: Percentage of population age 25+ with at least completed post-secondary education (ISCED 4 or higher). Female\",\"The percentage of female population (age 25 and over) with at least completed post-secondary education (ISCED 4 or higher). This indicator is calculated by dividing the number of females aged 25 years and above who completed post-secondary education by the total female population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.4T6.AG25T99.GPI\",\"UIS: Percentage of population age 25+ with at least completed post-secondary education (ISCED 4 or higher). Gender Parity Index\",\"The ratio of the female percentage of the population (age 25 and over) with at least completed post-secondary education (ISCED 4 or higher) to the male percentage of the population with at least post-secondary education. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of men and a value greater than 1 indicates disparity in favor of women. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.4T6.AG25T99.M\",\"UIS: Percentage of population age 25+ with at least completed post-secondary education (ISCED 4 or higher). Male\",\"The percentage of male population (age 25 and over) with at least completed post-secondary education (ISCED 4 or higher). This indicator is calculated by dividing the number of males aged 25 years and above who completed post-secondary education by the total male population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.5.AG25T99\",\"UIS: Percentage of population age 25+ with a completed short-cycle tertiary degree (ISCED 5). Total\",\"The percentage of population (age 25 and over) with a completed short-cycle tertiary degree (ISCED 5) degree as the highest level of educational attainment. This indicator is calculated by dividing the number of persons aged 25 years and above who completed a short-cycle tertiary degree as the highest level of educational attainment by the total population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.5.AG25T99.F\",\"UIS: Percentage of population age 25+ with a completed short-cycle tertiary degree (ISCED 5). Female\",\"The percentage of female population (age 25 and over) with a completed short-cycle tertiary degree (ISCED 5) degree as the highest level of educational attainment. This indicator is calculated by dividing the number of females aged 25 years and above who completed a short-cycle tertiary degree as the highest level of educational attainment by the total female population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.5.AG25T99.M\",\"UIS: Percentage of population age 25+ with a completed short-cycle tertiary degree (ISCED 5). Male\",\"The percentage of male population (age 25 and over) with a completed short-cycle tertiary degree (ISCED 5) degree as the highest level of educational attainment. This indicator is calculated by dividing the number of males aged 25 years and above who completed a short-cycle tertiary degree as the highest level of educational attainment by the total male population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.5T8.AG25T99\",\"UIS: Percentage of population age 25+ with at least a completed short-cycle tertiary degree (ISCED 5 or higher). Total\",\"The percentage of population (age 25 and over) with a completed short-cycle tertiary degree (ISCED 5) or higher. This indicator is calculated by dividing the number of persons aged 25 years and above with a completed short-cycle tertiary degree by the total population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.5T8.AG25T99.F\",\"UIS: Percentage of population age 25+ with at least a completed short-cycle tertiary degree (ISCED 5 or higher). Female\",\"The percentage of female population (age 25 and over) with a completed short-cycle tertiary degree (ISCED 5) or higher. This indicator is calculated by dividing the number of females aged 25 years and above who completed a short-cycle tertiary degree by the total female population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.5T8.AG25T99.GPI\",\"UIS: Percentage of population age 25+ with at least a completed short-cycle tertiary degree (ISCED 5 or higher). Gender Parity Index\",\"The ratio of the female percentage of the population (age 25 and over) with at least completed short-cycle tertiary degree (ISCED 5 or higher) to the male percentage of the population with at least short-cycle tertiary degree. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of men and a value greater than 1 indicates disparity in favor of women. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.5T8.AG25T99.M\",\"UIS: Percentage of population age 25+ with at least a completed short-cycle tertiary degree (ISCED 5 or higher). Male\",\"The percentage of male population (age 25 and over) with a completed short-cycle tertiary degree (ISCED 5) or higher. This indicator is calculated by dividing the number of males aged 25 years and above who completed a short-cycle tertiary degree by the total male population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.6.AG25T99\",\"UIS: Percentage of population age 25+ with a completed bachelor's or equivalent degree (ISCED 6). Total\",\"The percentage of population (age 25 and over) with a completed bachelor's or equivalent degree (ISCED 6) degree as the highest level of educational attainment. This indicator is calculated by dividing the number of persons aged 25 years and above who completed a bachelor's or equivalent degree as the highest level of educational attainment by the total population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.6.AG25T99.F\",\"UIS: Percentage of population age 25+ with a completed bachelor's or equivalent degree (ISCED 6). Female\",\"The percentage of female population (age 25 and over) with a completed bachelor's or equivalent degree (ISCED 6) degree as the highest level of educational attainment. This indicator is calculated by dividing the number of females aged 25 years and above who completed a bachelor's or equivalent degree as the highest level of educational attainment by the total female population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.6.AG25T99.M\",\"UIS: Percentage of population age 25+ with a completed bachelor's or equivalent degree (ISCED 6). Male\",\"The percentage of male population (age 25 and over) with a completed bachelor's or equivalent degree (ISCED 6) degree as the highest level of educational attainment. This indicator is calculated by dividing the number of males aged 25 years and above who completed a bachelor's or equivalent degree as the highest level of educational attainment by the total male population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.6T8.AG25T99\",\"UIS: Percentage of population age 25+ with at least a completed bachelor's or equivalent degree (ISCED 6 or higher). Total\",\"The percentage of population (age 25 and over) with a completed bachelor's or equivalent degree (ISCED 6) or higher. This indicator is calculated by dividing the number of persons aged 25 years and above with a completed bachelor's or equivalent degree by the total population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.6T8.AG25T99.F\",\"UIS: Percentage of population age 25+ with at least a completed bachelor's or equivalent degree (ISCED 6 or higher). Female\",\"The percentage of female population (age 25 and over) with a completed bachelor's or equivalent degree (ISCED 6) or higher. This indicator is calculated by dividing the number of females aged 25 years and above who completed a bachelor's or equivalent degree by the total female population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.6T8.AG25T99.GPI\",\"UIS: Percentage of population age 25+ with at least a completed bachelor's or equivalent degree (ISCED 6 or higher). Gender Parity Index\",\"The ratio of the female percentage of the population (age 25 and over) with at least a completed bachelor's or equivalent degree (ISCED 6 or higher) to the male percentage of the population with at least a completed bachelor's or equivalent degree. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of men and a value greater than 1 indicates disparity in favor of women. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.6T8.AG25T99.M\",\"UIS: Percentage of population age 25+ with at least a completed bachelor's or equivalent degree (ISCED 6 or higher). Male\",\"The percentage of male population (age 25 and over) with a completed bachelor's or equivalent degree (ISCED 6) or higher. This indicator is calculated by dividing the number of males aged 25 years and above who completed a bachelor's or equivalent degree by the total male population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.7.AG25T99\",\"UIS: Percentage of population age 25+ with a completed master's or equivalent degree (ISCED 7). Total\",\"The percentage of population (age 25 and over) with a completed master's or equivalent degree (ISCED 7) degree as the highest level of educational attainment. This indicator is calculated by dividing the number of persons aged 25 years and above who completed a master's or equivalent degree as the highest level of educational attainment by the total population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.7.AG25T99.F\",\"UIS: Percentage of population age 25+ with a completed master's or equivalent degree (ISCED 7). Female\",\"The percentage of female population (age 25 and over) with a completed master's or equivalent degree (ISCED 7) degree as the highest level of educational attainment. This indicator is calculated by dividing the number of females aged 25 years and above who completed a master's or equivalent degree as the highest level of educational attainment by the total female population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.7.AG25T99.M\",\"UIS: Percentage of population age 25+ with a completed master's or equivalent degree (ISCED 7). Male\",\"The percentage of male population (age 25 and over) with a completed master's or equivalent degree (ISCED 7) degree as the highest level of educational attainment. This indicator is calculated by dividing the number of males aged 25 years and above who completed a master's or equivalent degree as the highest level of educational attainment by the total male population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.7T8.AG25T99\",\"UIS: Percentage of population age 25+ with at least a completed master's degree or equivalent (ISCED 7 or higher). Total\",\"The percentage of population (age 25 and over) with a completed master's or equivalent degree (ISCED 7) or higher. This indicator is calculated by dividing the number of persons aged 25 years and above with a completed master's or equivalent degree by the total population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.7T8.AG25T99.F\",\"UIS: Percentage of population age 25+ with at least a completed master's degree or equivalent (ISCED 7 or higher). Female\",\"The percentage of female population (age 25 and over) with a completed master's or equivalent degree (ISCED 7) or higher. This indicator is calculated by dividing the number of females aged 25 years and above who completed a master's or equivalent degree by the total female population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.7T8.AG25T99.GPI\",\"UIS: Percentage of population age 25+ with at least a completed master's degree or equivalent (ISCED 7 or higher). Gender Parity Index\",\"The ratio of the female percentage of the population (age 25 and over) with at least a completed master's or equivalent degree (ISCED 7 or higher) to the male percentage of the population with at least a completed master's or equivalent degree. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of men and a value greater than 1 indicates disparity in favor of women. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.7T8.AG25T99.M\",\"UIS: Percentage of population age 25+ with at least a completed master's degree or equivalent (ISCED 7 or higher). Male\",\"The percentage of male population (age 25 and over) with a completed master's or equivalent degree (ISCED 7) or higher. This indicator is calculated by dividing the number of males aged 25 years and above who completed a master's or equivalent degree by the total male population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.8.AG25T99\",\"UIS: Percentage of population age 25+ with a doctoral degree or equivalent (ISCED 8). Total\",\"The percentage of population (age 25 and over) with a completed doctoral or equivalent degree (ISCED 8). This indicator is calculated by dividing the number of persons aged 25 years and above with a completed doctoral or equivalent degree by the total population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.8.AG25T99.F\",\"UIS: Percentage of population age 25+ with a doctoral degree or equivalent (ISCED 8). Female\",\"The percentage of female population (age 25 and over) with a completed doctoral or equivalent degree (ISCED 8). This indicator is calculated by dividing the number of females aged 25 years and above who completed a doctoral or equivalent degree by the total female population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.8.AG25T99.GPI\",\"UIS: Percentage of population age 25+ with a doctoral degree or equivalent (ISCED 8). Gender Parity Index\",\"The ratio of the female percentage of the population (age 25 and over) with a completed doctoral or equivalent degree (ISCED 8) to the male percentage of the population with a doctoral or equivalent degree. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of men and a value greater than 1 indicates disparity in favor of women. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.8.AG25T99.M\",\"UIS: Percentage of population age 25+ with a doctoral degree or equivalent (ISCED 8). Male\",\"The percentage of male population (age 25 and over) with a completed doctoral or equivalent degree (ISCED 8). This indicator is calculated by dividing the number of males aged 25 years and above who completed a doctoral or equivalent degree by the total male population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.MEAN.1T6.AG25T99\",\"UIS: Mean years of schooling of the population age 25+. Total\",\"Mean years of schooling (MYS) provides the average number of years of education (primary/ISCED 1 or higher) completed by a country’s adult population (25 years and older), excluding years spent repeating grades. For further information and specific calculation methods, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.MEAN.1T6.AG25T99.F\",\"UIS: Mean years of schooling of the population age 25+. Female\",\"Mean years of schooling (MYS) provides the average number of years of education (primary/ISCED 1 or higher) completed by a country’s female adult population (25 years and older), excluding years spent repeating grades. For further information and specific calculation methods, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.MEAN.1T6.AG25T99.M\",\"UIS: Mean years of schooling of the population age 25+. Male\",\"Mean years of schooling (MYS) provides the average number of years of education (primary/ISCED 1 or higher) completed by a country’s male adult population (25 years and older), excluding years spent repeating grades. For further information and specific calculation methods, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.NS.AG25T99\",\"UIS: Percentage of population age 25+ with no schooling. Total\",\"The percentage of the population (age 25 and over) with no education. This indicator is calculated by dividing the number of persons aged 25 years and above with no education by the total population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.NS.AG25T99.F\",\"UIS: Percentage of population age 25+ with no schooling. Female\",\"The percentage of the female population (age 25 and over) with no education. This indicator is calculated by dividing the number of females aged 25 years and above with no education by the total female population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.NS.AG25T99.M\",\"UIS: Percentage of population age 25+ with no schooling. Male\",\"The percentage of the male population (age 25 and over) with no education. This indicator is calculated by dividing the number of males aged 25 years and above with no education by the total male population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.S1.AG25T99\",\"UIS: Percentage of population age 25+ with some primary education. Total\",\"The percentage of population (age 25 and over) with incomplete primary as the highest level of educational attainment. This indicator is calculated by dividing the number of persons aged 25 years and above with incomplete primary education by the total population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.S1.AG25T99.F\",\"UIS: Percentage of population age 25+ with some primary education. Female\",\"The percentage of female population (age 25 and over) with incomplete primary as the highest level of educational attainment. This indicator is calculated by dividing the number of females aged 25 years and above with incomplete primary education by the total female population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.S1.AG25T99.M\",\"UIS: Percentage of population age 25+ with some primary education. Male\",\"The percentage of male population (age 25 and over) with incomplete primary as the highest level of educational attainment. This indicator is calculated by dividing the number of males aged 25 years and above with incomplete primary education by the total male population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.UK.AG25T99\",\"UIS: Percentage of population age 25+ with unknown educational attainment. Total\",\"The percentage of the population (age 25 and over) with unknown educational attainment. This indicator is calculated by dividing the number of persons aged 25 years and above with unknown educational attainment by the total population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.UK.AG25T99.F\",\"UIS: Percentage of population age 25+ with unknown educational attainment. Female\",\"The percentage of the female population (age 25 and over) with unknown educational attainment. This indicator is calculated by dividing the number of females aged 25 years and above with unknown educational attainment by the total female population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.EA.UK.AG25T99.M\",\"UIS: Percentage of population age 25+ with unknown educational attainment. Male\",\"The percentage of the male population (age 25 and over) with unknown educational attainment. This indicator is calculated by dividing the number of males aged 25 years and above with unknown educational attainment by the total male population of the same age group and multiplying the result by 100. The UNESCO Institute for Statistics (UIS) educational attainment dataset shows the educational composition of the population aged 25 years and above and hence the stock and quality of human capital within a country. The dataset also reflects the structure and performance of the education system and its accumulated impact on human capital formation. For more information, visit the UNESCO Institute for Statistics website: http://www.uis.unesco.org/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ECDP.1\",\"Percentage of new entrants to Grade 1 of primary education with early childhood educational experience, both sexes (%)\\r\\n\",\"Total number of new entrants to Grade 1 of primary education who have attended some form of organised early childhood care and education (ECCE) programmes, expressed as a percentage of the total number of new entrants to primary education.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ECDP.1.F\",\"Percentage of new entrants to Grade 1 of primary education with early childhood educational experience, female (%)\\r\\n\",\"Number of new female entrants to primary grade 1 who have attended some form of organized early childhood care and education (ECCE) program, expressed as a percentage of total number of new female entrants to primary grade 1.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ECDP.1.GPI\",\"Percentage of new entrants to Grade 1 of primary education with early childhood educational experience, gender parity index (GPI)\\r\\n\",\"Ratio of the female percentage of new entrants to primary education with ECCE experience to the male value for the same indicator. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ECDP.1.M\",\"Percentage of new entrants to Grade 1 of primary education with early childhood educational experience, male (%)\\r\\n\",\"Number of new male entrants to primary grade 1 who have attended some form of organized early childhood care and education (ECCE) program, expressed as a percentage of total number of new male entrants to primary grade 1.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ESL.1.F\",\"Early school leavers from primary education, female (number)\",\"Total number of female students from a cohort enrolled in a given school year who are no longer enrolled in the following school year and did not complete the grade or level of education in which they were enrolled.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ESL.1.M\",\"Early school leavers from primary education, male (number)\",\"Total number of male students from a cohort enrolled in a given school year who are no longer enrolled in the following school year and did not complete the grade or level of education in which they were enrolled.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ESL.1.T\",\"Early school leavers from primary education, both sexes (number)\",\"Total number of students from a cohort enrolled in a given school year who are no longer enrolled in the following school year and did not complete the grade or level of education in which they were enrolled.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FEP.2\",\"Percentage of students in lower secondary education who are female (%)\",\"Number of female students at the lower secondary level expressed as a percentage of the total number of students (male and female) at the lower secondary level in a given school year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FEP.2.GPV\",\"Percentage of students in lower secondary general education who are female (%)\",\"Number of female general education students at the lower secondary level expressed as a percentage of the total number of general education students (male and female) at the lower secondary level in a given school year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FEP.2.V\",\"Percentage of students in lower secondary vocational education who are female (%)\",\"Number of female vocational education students at the lower secondary level expressed as a percentage of the total number of vocational education students (male and female) at the lower secondary level in a given school year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FEP.3\",\"Percentage of students in upper secondary education who are female (%)\",\"Number of female students at the upper secondary level expressed as a percentage of the total number of students (male and female) at the upper secondary level in a given school year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FEP.3.GPV\",\"Percentage of students in upper secondary general education who are female (%)\",\"Number of female general education students at the upper secondary level expressed as a percentage of the total number of general education students (male and female) at the upper secondary level in a given school year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FEP.3.V\",\"Percentage of students in upper secondary vocational education who are female (%)\",\"Number of female vocational education students at the upper secondary level expressed as a percentage of the total number of vocational education students (male and female) at the upper secondary level in a given school year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FEP.4\",\"Percentage of students in post-secondary non-tertiary education who are female (%)\",\"Number of female students at the post-secondary non-tertiary level expressed as a percentage of the total number of students (male and female) at the post-secondary non-tertiary level in a given school year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FEP.4.GPV\",\"Percentage of students in post-secondary non-tertiary general education who are female (%)\",\"Number of female general education students at the post-secondary non-tertiary level expressed as a percentage of the total number of general education students (male and female) at the post-secondary non-tertiary level in a given school year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FEP.4.V\",\"Percentage of students in post-secondary non-tertiary vocational education who are female (%)\",\"Number of female vocational education students at the post-secondary non-tertiary level expressed as a percentage of the total number of vocational education students (male and female) at the post-secondary non-tertiary level in a given school year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FEP.5.B\",\"Percentage of students in tertiary ISCED 5 programmes who are female (%)\",\"Number of female students enrolled in short-cycle tertiary programmes (ISCED 5) expressed as a percentage of the total number of students (male and female) enrolled in short-cycle tertiary programmes (ISCED 5) in a given school year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FEP.56.F140\",\"Percentage of students enrolled in Education programmes in tertiary education who are female (%)\",\"Total number of female students in a given tertiary education programme, expressed as a percentage of the total number of students enrolled in the given tertiary education programme.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FEP.56.F200\",\"Percentage of students enrolled in Humanities and Arts programmes in tertiary education who are female (%)\",\"Total number of female students in a given tertiary education programme, expressed as a percentage of the total number of students enrolled in the given tertiary education programme.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FEP.56.F300\",\"Percentage of students enrolled in Social Sciences, Business and Law programmes in tertiary education who are female (%)\",\"Total number of female students in a given tertiary education programme, expressed as a percentage of the total number of students enrolled in the given tertiary education programme.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FEP.56.F400\",\"Percentage of students enrolled in Science programmes in tertiary education who are female (%)\",\"Total number of female students in a given tertiary education programme, expressed as a percentage of the total number of students enrolled in the given tertiary education programme.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FEP.56.F500\",\"Percentage of students enrolled in Engineering, Manufacturing and Construction programmes in tertiary education who are female (%)\",\"Total number of female students in a given tertiary education programme, expressed as a percentage of the total number of students enrolled in the given tertiary education programme.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FEP.56.F600\",\"Percentage of students enrolled in Agriculture programmes in tertiary education who are female (%)\",\"Total number of female students in a given tertiary education programme, expressed as a percentage of the total number of students enrolled in the given tertiary education programme.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FEP.56.F700\",\"Percentage of students enrolled in Health and Welfare programmes in tertiary education who are female (%)\",\"Total number of female students in a given tertiary education programme, expressed as a percentage of the total number of students enrolled in the given tertiary education programme.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FEP.56.F800\",\"Percentage of students enrolled in Services programmes in tertiary education who are female (%)\",\"Total number of female students in a given tertiary education programme, expressed as a percentage of the total number of students enrolled in the given tertiary education programme.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FEP.56.FOREIGN\",\"Percentage of all inbound internationally mobile students in tertiary education in the host country who are female, (%)\",\"Female share of students who have crossed a national or territorial border for the purposes of education and are now enrolled outside their country of origin.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FEP.56.FUK\",\"Percentage of students enrolled in programmes in unspecified fields in tertiary education who are female (%)\",\"Total number of female students in unspecified tertiary education programmes, expressed as a percentage of the total number of students enrolled in unspecified tertiary education programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FEP.6\",\"Percentage of students in tertiary ISCED 6 programmes who are female (%)\\r\\n\",\"Number of female students at the bachelors or equivalent level of tertiary education (ISCED 6) expressed as a percentage of the total number of students (male and female) at that level in a given school year. \\r\\n\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FEP.7\",\"Percentage of students in tertiary ISCED 7 programmes who are female (%)\",\"Number of female students at the masters or equivalent level of tertiary education (ISCED 7) expressed as a percentage of the total number of students (male and female) at that level in a given school year. \",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FEP.8\",\"Percentage of students in tertiary ISCED 8 programmes who are female (%)\",\"Number of female students at the doctoral or equivalent level of tertiary education (ISCED 8) expressed as a percentage of the total number of students (male and female) at that level in a given school year. \",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FGP.5.B\",\"Percentage of graduates from tertiary ISCED 5 programmes who are female (%)\",\"Number of female students completing short-cycle tertiary education programmes (ISCED 5) expressed as a percentage of the total number of students (male and female) completing short-cycle tertiary programmes in a given school year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FGP.56.F400500\",\"Percentage of graduates from Science and Technology programmes in tertiary education who are female (%)\",\"Number of female graduates in science and technology programmes expressed as a percentage of the total number of tertiary graduates in science and technology programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FGP.6\",\"Percentage of graduates from tertiary ISCED 6 programmes who are female (%)\\r\\n\",\"Number of female students completing bachelors or equivalent tertiary degree programmes (ISCED 6) expressed as a percentage of the total number of students (male and female) completing those programmes in a given school year.\\r\\n\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FGP.7\",\"Percentage of graduates from tertiary ISCED 7 programmes who are female (%)\",\"Number of female students completing masters or equivalent tertiary degree programmes (ISCED 7) expressed as a percentage of the total number of students (male and female) completing those programmes in a given school year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FGP.8\",\"Percentage of graduates from tertiary ISCED 8 programmes who are female (%)\",\"Number of female students completing doctoral or equivalent tertiary degree programmes (ISCED 8) expressed as a percentage of the total number of students (male and female) completing those programmes in a given school year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FNP.1\",\"New entrants to Grade 1 of primary education, percentage female (%)\",\"Number of female pupils entering grade 1 of primary education for the first time during the course of the reference school or academic year as a share of the total (male and female) number of new entrants to grade 1 of primary education in that year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOFSTP.1\",\"Out-of-school children of primary school age, percentage female (%)\",\"Number of female primary-school-age children who are not enrolled in either primary or secondary schools as a percentage of the total (male and female) number of primary-school-age children who are not enrolled in either primary or secondary schools.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOFSTP.2\",\"Out-of-school adolescents of lower secondary school age, percentage female (%)\",\"Total number of female lower secondary school age adolescents who are not enrolled in lower secondary education as a percentage of the total number of lower secondary school age adolescents (male and female) who are not enrolled in lower secondary education.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOSEP.56.F140\",\"Percentage of students in tertiary education enrolled in Education programmes, both sexes (%)\",\"Percentage of all tertiary students who are enrolled in education programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOSEP.56.F140.F\",\"Percentage of female students in tertiary education enrolled in Education programmes, female (%)\",\"Percentage of all female tertiary students who are enrolled in education programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOSEP.56.F140.M\",\"Percentage of male students in tertiary education enrolled in Education programmes, male (%)\",\"Percentage of all male tertiary students who are enrolled in education programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOSEP.56.F200\",\"Percentage of students in tertiary education enrolled in Humanities and Arts programmes, both sexes (%)\",\"Percentage of all tertiary students who are enrolled in humanities and arts programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOSEP.56.F200.F\",\"Percentage of female students in tertiary education enrolled in Humanities and Arts programmes, female (%)\",\"Percentage of all female tertiary students who are enrolled in humanities and arts programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOSEP.56.F200.M\",\"Percentage of male students in tertiary education enrolled in Humanities and Arts programmes, male (%)\",\"Percentage of all male tertiary students who are enrolled in humanities and arts programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOSEP.56.F300\",\"Percentage of students in tertiary education enrolled in Social Sciences, Business and Law programmes, both sexes (%)\",\"Percentage of all tertiary students who are enrolled in social sciences, business and law programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOSEP.56.F300.F\",\"Percentage of female students in tertiary education enrolled in Social Sciences, Business and Law programmes, female (%)\\r\\n\",\"Percentage of all female tertiary students who are enrolled in social sciences, business and law programmes.\\r\\n\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOSEP.56.F300.M\",\"Percentage of male students in tertiary education enrolled in Social Sciences, Business and Law programmes, male (%)\",\"Percentage of all male tertiary students who are enrolled in social sciences, business and law programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOSEP.56.F400\",\"Percentage of students in tertiary education enrolled in Science programmes, both sexes (%)\",\"Percentage of all tertiary students who are enrolled in science programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOSEP.56.F400.F\",\"Percentage of female students in tertiary education enrolled in Science programmes, female (%)\",\"Percentage of all female tertiary students who are enrolled in science programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOSEP.56.F400.M\",\"Percentage of male students in tertiary education enrolled in Science programmes, male (%)\",\"Percentage of all male tertiary students who are enrolled in science programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOSEP.56.F500\",\"Percentage of students in tertiary education enrolled in Engineering, Manufacturing and Construction programmes, both sexes (%)\",\"Percentage of all tertiary students who are enrolled in engineering, manufacturing and construction programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOSEP.56.F500.F\",\"Percentage of female students in tertiary education enrolled in Engineering, Manufacturing and Construction programmes, female (%)\",\"Percentage of all female tertiary students who are enrolled in engineering, manufacturing and construction programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOSEP.56.F500.M\",\"Percentage of male students in tertiary education enrolled in Engineering, Manufacturing and Construction programmes, male (%)\",\"Percentage of all male tertiary students who are enrolled in engineering, manufacturing and construction programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOSEP.56.F600\",\"Percentage of students in tertiary education enrolled in Agriculture programmes, both sexes (%)\",\"Percentage of all tertiary students who are enrolled in agriculture programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOSEP.56.F600.F\",\"Percentage of female students in tertiary education enrolled in Agriculture programmes, female (%)\",\"Percentage of all female tertiary students who are enrolled in agriculture programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOSEP.56.F600.M\",\"Percentage of male students in tertiary education enrolled in Agriculture programmes, male (%)\",\"Percentage of all male tertiary students who are enrolled in agriculture programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOSEP.56.F700\",\"Percentage of students in tertiary education enrolled in Health and Welfare programmes, both sexes (%)\",\"Percentage of all tertiary students who are enrolled in health and welfare programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOSEP.56.F700.F\",\"Percentage of female students in tertiary education enrolled in Health and Welfare programmes, female (%)\",\"Percentage of all female tertiary students who are enrolled in health and welfare programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOSEP.56.F700.M\",\"Percentage of male students in tertiary education enrolled in Health and Welfare programmes, male (%)\",\"Percentage of all male tertiary students who are enrolled in health and welfare programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOSEP.56.F800\",\"Percentage of students in tertiary education enrolled in Services programmes, both sexes (%)\",\"Percentage of all tertiary students who are enrolled in services programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOSEP.56.F800.F\",\"Percentage of female students in tertiary education enrolled in Services programmes, female (%)\",\"Percentage of all female tertiary students who are enrolled in services programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOSEP.56.F800.M\",\"Percentage of male students in tertiary education enrolled in Services programmes, male (%)\",\"Percentage of all male tertiary students who are enrolled in services programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOSEP.56.FUK\",\"Percentage of students in tertiary education enrolled in programmes in unspecified fields, both sexes (%)\",\"Percentage of all tertiary students who are enrolled in programmes in unspecified fields.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOSEP.56.FUK.F\",\"Percentage of female students in tertiary education enrolled in programmes in unspecified fields, female (%)\",\"Percentage of all female tertiary students who are enrolled in programmes in unspecified fields.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOSEP.56.FUK.M\",\"Percentage of male students in tertiary education enrolled in programmes in unspecified fields, male (%)\",\"Percentage of all male tertiary students who are enrolled in programmes in unspecified fields.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOSGP.56.F140.M\",\"Percentage of male graduates from tertiary education graduating from Education programmes, male (%)\",\"Share of all male tertiary graduates who completed education programmes in the reference year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOSGP.56.F200.M\",\"Percentage of male graduates from tertiary education graduating from Humanities and Arts programmes, male (%)\",\"Share of all male tertiary graduates who completed humanities and arts programmes in the reference year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOSGP.56.F300.M\",\"Percentage of male graduates from tertiary education graduating from Social Sciences, Business and Law programmes, male (%)\",\"Share of all male tertiary graduates who completed social sciences, business and law programmes in the reference year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOSGP.56.F400.M\",\"Percentage of male graduates from tertiary education graduating from Science programmes, male (%)\",\"Share of all male tertiary graduates who completed science programmes in the reference year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOSGP.56.F500.M\",\"Percentage of male graduates from tertiary education graduating from Engineering, Manufacturing and Construction programmes, male (%)\",\"Share of all male tertiary graduates who completed engineering, manufacturing and construction programmes in the reference year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOSGP.56.F600.M\",\"Percentage of male graduates from tertiary education graduating from Agriculture programmes, male (%)\",\"Share of all male tertiary graduates who completed agriculture programmes in the reference year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOSGP.56.F700.M\",\"Percentage of male graduates from tertiary education graduating from Health and Welfare programmes, male (%)\",\"Share of all male tertiary graduates who completed health and welfare programmes in the reference year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOSGP.56.F800.M\",\"Percentage of male graduates from tertiary education graduating from Services programmes, male (%)\",\"Share of all male tertiary graduates who completed services programmes in the reference year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FOSGP.56.FUK.M\",\"Percentage of male graduates from tertiary education graduating from programmes in unspecified fields, male (%)\",\"Share of all male tertiary graduates who completed programmes in unspecified fields in the reference year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FTP.2\",\"Percentage of teachers in lower secondary education who are female (%)\",\"Number of female teachers at the lower secondary level expressed as a percentage of the total number of teachers (male and female) at the lower secondary level in a given school year. Teachers are persons employed full time or part time in an official capacity to guide and direct the learning experience of pupils and students, irrespective of their qualifications or the delivery mechanism, i.e. face-to-face and/or at a distance. This definition excludes educational personnel who have no active teaching duties (e.g. headmasters, headmistresses or principals who do not teach) and persons who work occasionally or in a voluntary capacity in educational institutions.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FTP.3\",\"Percentage of teachers in upper secondary education who are female (%)\",\"Number of female teachers at the upper secondary level expressed as a percentage of the total number of teachers (male and female) at the upper secondary level in a given school year. Teachers are persons employed full time or part time in an official capacity to guide and direct the learning experience of pupils and students, irrespective of their qualifications or the delivery mechanism, i.e. face-to-face and/or at a distance. This definition excludes educational personnel who have no active teaching duties (e.g. headmasters, headmistresses or principals who do not teach) and persons who work occasionally or in a voluntary capacity in educational institutions.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.FTP.4\",\"Percentage of teachers in post-secondary non-tertiary education who are female (%)\",\"Number of female teachers at the post-secondary non-tertiary level expressed as a percentage of the total number of teachers (male and female) at the post-secondary non-tertiary level in a given school year. Teachers are persons employed full time or part time in an official capacity to guide and direct the learning experience of pupils and students, irrespective of their qualifications or the delivery mechanism, i.e. face-to-face and/or at a distance. This definition excludes educational personnel who have no active teaching duties (e.g. headmasters, headmistresses or principals who do not teach) and persons who work occasionally or in a voluntary capacity in educational institutions.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.G.5.B.F\",\"Graduates from ISCED 5 programmes in tertiary education, female (number)\\r\\n\",\"Total number of female students successfully completing short-cycle tertiary education programmes (ISCED 5) in public and private tertiary education institutions during the reference academic year.\\r\\n\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.G.5.B.T\",\"Graduates from ISCED 5 programmes in tertiary education, both sexes (number)\\r\\n\",\"Total number of students successfully completing short-cycle tertiary education programmes (ISCED 5) in public and private tertiary education institutions during the reference academic year.\\r\\n\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.G.6.F\",\"Graduates from ISCED 6 programmes in tertiary education, female (number)\\r\\n\",\"Total number of female students successfully completing programmes on the bachelors or equivalent (ISCED 6) level during the reference academic year in public and private tertiary education institutions.\\r\\n\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.G.6.T\",\"Graduates from ISCED 6 programmes in tertiary education, both sexes (number)\\r\\n\",\"Total number of students successfully completing programmes on the bachelors or equivalent (ISCED 6) level during the reference academic year in public and private tertiary education institutions.\\r\\n\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.G.7.F\",\"Graduates from ISCED 7 programmes in tertiary education, female (number)\",\"Total number of female students successfully completing programmes on the masters or equivalent (ISCED 7) level during the reference academic year in public and private tertiary education institutions.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.G.7.T\",\"Graduates from ISCED 7 programmes in tertiary education, both sexes (number)\",\"Total number of students successfully completing programmes on the masters or equivalent (ISCED 7) level during the reference academic year in public and private tertiary education institutions.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.G.8.F\",\"Graduates from ISCED 8 programmes in tertiary education, female (number)\",\"Total number of female students successfully completing programmes on the doctoral or equivalent (ISCED 8) level during the reference academic year in public and private tertiary education institutions.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.G.8.T\",\"Graduates from ISCED 8 programmes in tertiary education, both sexes (number)\",\"Total number of students successfully completing programmes on the doctoral or equivalent (ISCED 8) level during the reference academic year in public and private tertiary education institutions.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GER.0.GPI\",\"Gross enrolment ratio, pre-primary, gender parity index (GPI)\",\"Ratio of female gross enrolment ratio for pre-primary to male gross enrolment ratio for pre-primary. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GER.12\",\"Gross enrolment ratio, primary and lower secondary, both sexes (%)\",\"Total enrollment in primary and lower secondary education, regardless of age, expressed as a percentage of the population of official primary and lower secondary education age. GER can exceed 100% due to the inclusion of over-aged and under-aged students because of early or late school entrance and grade repetition.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GER.12.F\",\"Gross enrolment ratio, primary and lower secondary, female (%)\",\"Total female enrollment in primary and lower secondary education, regardless of age, expressed as a percentage of the female population of official primary and lower secondary education age. GER can exceed 100% due to the inclusion of over-aged and under-aged students because of early or late school entrance and grade repetition.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GER.12.GPI\",\"Gross enrolment ratio, primary and lower secondary, gender parity index (GPI)\",\"Ratio of female gross enrolment ratio for primary and lower secondary to male gross enrolment ratio for primary and lower secondary. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GER.12.M\",\"Gross enrolment ratio, primary and lower secondary, male (%)\",\"Total male enrollment in primary and lower secondary education, regardless of age, expressed as a percentage of the male population of official primary and lower secondary education age. GER can exceed 100% due to the inclusion of over-aged and under-aged students because of early or late school entrance and grade repetition.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GER.123\",\"Gross enrolment ratio, primary and secondary, both sexes (%)\",\"Total enrollment in primary and secondary education, regardless of age, expressed as a percentage of the total population of official primary and secondary education age. GER can exceed 100% due to the inclusion of over-aged and under-aged students because of early or late school entrance and grade repetition.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GER.123.F\",\"Gross enrolment ratio, primary and secondary, female (%)\",\"Total female enrollment in primary and secondary education, regardless of age, expressed as a percentage of the total female population of official primary and secondary education age. GER can exceed 100% due to the inclusion of over-aged and under-aged students because of early or late school entrance and grade repetition.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GER.123.M\",\"Gross enrolment ratio, primary and secondary, male (%)\",\"Total male enrollment in primary and secondary education, regardless of age, expressed as a percentage of the total male population of official primary and secondary education age. GER can exceed 100% due to the inclusion of over-aged and under-aged students because of early or late school entrance and grade repetition.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GER.1t6.F\",\"Gross enrolment ratio, primary to tertiary, female (%)\",\"Total female enrollment in primary, secondary and tertiary education, regardless of age, expressed as a percentage of the total female population of primary school age, secondary school age, and the five-year age group following on from secondary school leaving. GER can exceed 100% due to the inclusion of over-aged and under-aged students because of early or late school entrance and grade repetition.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GER.1t6.GPI\",\"Gross enrolment ratio, primary to tertiary, gender parity index (GPI)\",\"Ratio of female gross enrolment ratio for primary to tertiary to the male value for the same indicator. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GER.1t6.M\",\"Gross enrolment ratio, primary to tertiary, male (%)\",\"Total male enrollment in primary, secondary and tertiary education, regardless of age, expressed as a percentage of the total male population of primary school age, secondary school age, and the five-year age group following on from secondary school leaving. GER can exceed 100% due to the inclusion of over-aged and under-aged students because of early or late school entrance and grade repetition.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GER.2.GPI\",\"Gross enrolment ratio, lower secondary, gender parity index (GPI)\",\"Ratio of female gross enrolment ratio for lower secondary to the male gross enrolment ratio for lower secondary. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GER.3.GPI\",\"Gross enrolment ratio, upper secondary, gender parity index (GPI)\",\"Ratio of female gross enrolment ratio for upper secondary to the male gross enrolment ratio for upper secondary. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GER.4\",\"Gross enrolment ratio, post-secondary non-tertiary, both sexes (%)\",\"Total enrollment in post-secondary non-tertiary education, regardless of age, expressed as a percentage of the total population of official post-secondary non-tertiary education age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GER.4.F\",\"Gross enrolment ratio, post-secondary non-tertiary, female (%)\",\"Total female enrollment in post-secondary non-tertiary education, regardless of age, expressed as a percentage of the female population of official post-secondary non-tertiary education age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GER.4.GPI\",\"Gross enrolment ratio, post-secondary non-tertiary, gender parity index (GPI)\",\"Ratio of female gross enrolment ratio for post-secondary non-tertiary education to the male gross enrolment ratio for post-secondary non-tertiary education. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GER.4.M\",\"Gross enrolment ratio, post-secondary non-tertiary, male (%)\",\"Total male enrollment in post-secondary non-tertiary education, regardless of age, expressed as a percentage of the male population of official post-secondary non-tertiary education age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GGR.1.GPI\",\"Gross graduation ratio from primary education, gender parity index (GPI)\",\"Ratio of the female gross primary graduation ratio to the male gross primary graduation ratio. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GGR.2\",\"Gross graduation ratio from lower secondary education, both sexes (%)\",\"Number of graduates regardless of age in all lower secondary education programmes expressed as a percentage of the population at the theoretical graduation age for lower secondary education. The ratio can exceed 100% due to over-aged and under-aged adolescents who enter lower secondary school for the first time early or late and/or repeat grades.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GGR.2.F\",\"Gross lower secondary graduation ratio. All programmes. Female\",\"Gross lower secondary graduation ratio. All programmes. Female is the number of female graduates regardless of age in all lower secondary education programmes expressed as a percentage of the female population at the theoretical graduation age for lower secondary education.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GGR.2.GPI\",\"Gross graduation ratio from lower secondary education, gender parity index (GPI)\",\"Ratio of the female gross lower secondary graduation ratio to the male gross lower secondary graduation ratio. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GGR.2.M\",\"Gross lower secondary graduation ratio. All programmes. Male\",\"Gross lower secondary graduation ratio. All programmes. Male is the number of male graduates regardless of age in all lower secondary education programmes expressed as a percentage of the male population at the theoretical graduation age for lower secondary education.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GGR.5.A.GPI\",\"Gross graduation ratio from first degree programmes (ISCED 6 and 7) in tertiary education, gender parity index (GPI)\",\"Ratio of female gross graduation ratio to the male value for the same indicator. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GOER.56\",\"Gross outbound enrolment ratio, all regions, both sexes (%)\",\"Total number of mobile tertiary students coming from a country/region as a percentage of the population of tertiary student age in their home country.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GTVP.2.GPV\",\"Percentage of students in lower secondary education enrolled in general programmes, both sexes (%)\",\"Total number of students enrolled in general programmes at the lower secondary education level, expressed as a percentage of the total number of students enrolled in all programmes (vocational and general) at the lower secondary level. General education is designed to develop learners’ general knowledge, skills and competencies and literacy and numeracy skills, often to prepare students for more advanced educational programmes at the same or higher ISCED levels and to lay the foundation for lifelong learning. General educational programmes are typically school- or college-based. General education includes educational programmes that are designed to prepare students for entry into vocational education, but that do not prepare for employment in a particular occupation or trade or class of occupations or trades, nor lead directly to a labour market relevant qualification.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GTVP.2.GPV.F\",\"Percentage of female students in lower secondary education enrolled in general programmes, female (%)\",\"Total number of female students enrolled in general programmes at the lower secondary education level, expressed as a percentage of the total number of female students enrolled in all programmes (vocational and general) at the lower secondary level. General education is designed to develop learners’ general knowledge, skills and competencies and literacy and numeracy skills, often to prepare students for more advanced educational programmes at the same or higher ISCED levels and to lay the foundation for lifelong learning. General educational programmes are typically school- or college-based. General education includes educational programmes that are designed to prepare students for entry into vocational education, but that do not prepare for employment in a particular occupation or trade or class of occupations or trades, nor lead directly to a labour market relevant qualification.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GTVP.2.GPV.M\",\"Percentage of male students in lower secondary education enrolled in general programmes, male (%)\",\"Total number of male students enrolled in general programmes at the lower secondary education level, expressed as a percentage of the total number of male students enrolled in all programmes (vocational and general) at the lower secondary level. General education is designed to develop learners’ general knowledge, skills and competencies and literacy and numeracy skills, often to prepare students for more advanced educational programmes at the same or higher ISCED levels and to lay the foundation for lifelong learning. General educational programmes are typically school- or college-based. General education includes educational programmes that are designed to prepare students for entry into vocational education, but that do not prepare for employment in a particular occupation or trade or class of occupations or trades, nor lead directly to a labour market relevant qualification.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GTVP.2.V\",\"Percentage of students in lower secondary education enrolled in vocational programmes, both sexes (%)\",\"Total number of students enrolled in vocational programmes at the lower secondary education level, expressed as a percentage of the total number of students enrolled in all programmes (vocational and general) at the lower secondary level. Vocational education is designed for learners to acquire the knowledge, skills and competencies specific to a particular occupation or trade or class of occupations or trades. Vocational education may have work-based components (e.g. apprenticeships). Successful completion of such programmes leads to labour-market relevant vocational qualifications acknowledged as occupationally-oriented by the relevant national authorities and/or the labour market.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GTVP.2.V.F\",\"Percentage of female students in lower secondary education enrolled in vocational programmes, female (%)\",\"Total number of female students enrolled in vocational programmes at the lower secondary education level, expressed as a percentage of the total number of female students enrolled in all programmes (vocational and general) at the lower secondary level. Vocational education is designed for learners to acquire the knowledge, skills and competencies specific to a particular occupation or trade or class of occupations or trades. Vocational education may have work-based components (e.g. apprenticeships). Successful completion of such programmes leads to labour-market relevant vocational qualifications acknowledged as occupationally-oriented by the relevant national authorities and/or the labour market.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GTVP.2.V.M\",\"Percentage of male students in lower secondary education enrolled in vocational programmes, male (%)\",\"Total number of male students enrolled in vocational programmes at the lower secondary education level, expressed as a percentage of the total number of male students enrolled in all programmes (vocational and general) at the lower secondary level. Vocational education is designed for learners to acquire the knowledge, skills and competencies specific to a particular occupation or trade or class of occupations or trades. Vocational education may have work-based components (e.g. apprenticeships). Successful completion of such programmes leads to labour-market relevant vocational qualifications acknowledged as occupationally-oriented by the relevant national authorities and/or the labour market.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GTVP.23.GPV\",\"Percentage of students in secondary education enrolled in general programmes, both sexes (%)\",\"Total number of students enrolled in general programmes at the secondary education level, expressed as a percentage of the total number of students enrolled in all programmes (vocational and general) at the secondary level. General education is designed to develop learners’ general knowledge, skills and competencies and literacy and numeracy skills, often to prepare students for more advanced educational programmes at the same or higher ISCED levels and to lay the foundation for lifelong learning. General educational programmes are typically school- or college-based. General education includes educational programmes that are designed to prepare students for entry into vocational education, but that do not prepare for employment in a particular occupation or trade or class of occupations or trades, nor lead directly to a labour market relevant qualification.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GTVP.23.GPV.F\",\"Percentage of female students in secondary education enrolled in general programmes, female (%)\",\"Total number of female students enrolled in general programmes at the secondary education level, expressed as a percentage of the total number of female students enrolled in all programmes (vocational and general) at the secondary level. General education is designed to develop learners’ general knowledge, skills and competencies and literacy and numeracy skills, often to prepare students for more advanced educational programmes at the same or higher ISCED levels and to lay the foundation for lifelong learning. General educational programmes are typically school- or college-based. General education includes educational programmes that are designed to prepare students for entry into vocational education, but that do not prepare for employment in a particular occupation or trade or class of occupations or trades, nor lead directly to a labour market relevant qualification.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GTVP.23.GPV.M\",\"Percentage of male students in secondary education enrolled in general programmes, male (%)\",\"Total number of male students enrolled in general programmes at the secondary education level, expressed as a percentage of the total number of male students enrolled in all programmes (vocational and general) at the secondary level. General education is designed to develop learners’ general knowledge, skills and competencies and literacy and numeracy skills, often to prepare students for more advanced educational programmes at the same or higher ISCED levels and to lay the foundation for lifelong learning. General educational programmes are typically school- or college-based. General education includes educational programmes that are designed to prepare students for entry into vocational education, but that do not prepare for employment in a particular occupation or trade or class of occupations or trades, nor lead directly to a labour market relevant qualification.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GTVP.3.GPV\",\"Percentage of students in upper secondary education enrolled in general programmes, both sexes (%)\",\"Total number of students enrolled in general programmes at the upper secondary education level, expressed as a percentage of the total number of students enrolled in all programmes (vocational and general) at the upper secondary level. General education is designed to develop learners’ general knowledge, skills and competencies and literacy and numeracy skills, often to prepare students for more advanced educational programmes at the same or higher ISCED levels and to lay the foundation for lifelong learning. General educational programmes are typically school- or college-based. General education includes educational programmes that are designed to prepare students for entry into vocational education, but that do not prepare for employment in a particular occupation or trade or class of occupations or trades, nor lead directly to a labour market relevant qualification.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GTVP.3.GPV.F\",\"Percentage of female students in upper secondary education enrolled in general programmes, female (%)\",\"Total number of female students enrolled in general programmes at the upper secondary education level, expressed as a percentage of the total number of female students enrolled in all programmes (vocational and general) at the upper secondary level. General education is designed to develop learners’ general knowledge, skills and competencies and literacy and numeracy skills, often to prepare students for more advanced educational programmes at the same or higher ISCED levels and to lay the foundation for lifelong learning. General educational programmes are typically school- or college-based. General education includes educational programmes that are designed to prepare students for entry into vocational education, but that do not prepare for employment in a particular occupation or trade or class of occupations or trades, nor lead directly to a labour market relevant qualification.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GTVP.3.GPV.M\",\"Percentage of male students in upper secondary education enrolled in general programmes, male (%)\",\"Total number of male students enrolled in general programmes at the upper secondary education level, expressed as a percentage of the total number of male students enrolled in all programmes (vocational and general) at the upper secondary level. General education is designed to develop learners’ general knowledge, skills and competencies and literacy and numeracy skills, often to prepare students for more advanced educational programmes at the same or higher ISCED levels and to lay the foundation for lifelong learning. General educational programmes are typically school- or college-based. General education includes educational programmes that are designed to prepare students for entry into vocational education, but that do not prepare for employment in a particular occupation or trade or class of occupations or trades, nor lead directly to a labour market relevant qualification.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GTVP.3.V\",\"Percentage of students in upper secondary education enrolled in vocational programmes, both sexes (%)\",\"Total number of students enrolled in vocational programmes at the upper secondary education level, expressed as a percentage of the total number of students enrolled in all programmes (vocational and general) at the upper secondary level. Vocational education is designed for learners to acquire the knowledge, skills and competencies specific to a particular occupation or trade or class of occupations or trades. Vocational education may have work-based components (e.g. apprenticeships). Successful completion of such programmes leads to labour-market relevant vocational qualifications acknowledged as occupationally-oriented by the relevant national authorities and/or the labour market.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GTVP.3.V.F\",\"Percentage of female students in upper secondary education enrolled in vocational programmes, female (%)\",\"Total number of female students enrolled in vocational programmes at the upper secondary education level, expressed as a percentage of the total number of female students enrolled in all programmes (vocational and general) at the upper secondary level. Vocational education is designed for learners to acquire the knowledge, skills and competencies specific to a particular occupation or trade or class of occupations or trades. Vocational education may have work-based components (e.g. apprenticeships). Successful completion of such programmes leads to labour-market relevant vocational qualifications acknowledged as occupationally-oriented by the relevant national authorities and/or the labour market.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GTVP.3.V.M\",\"Percentage of male students in upper secondary education enrolled in vocational programmes, male (%)\",\"Total number of male students enrolled in vocational programmes at the upper secondary education level, expressed as a percentage of the total number of male students enrolled in all programmes (vocational and general) at the upper secondary level. Vocational education is designed for learners to acquire the knowledge, skills and competencies specific to a particular occupation or trade or class of occupations or trades. Vocational education may have work-based components (e.g. apprenticeships). Successful completion of such programmes leads to labour-market relevant vocational qualifications acknowledged as occupationally-oriented by the relevant national authorities and/or the labour market.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GTVP.4.GPV\",\"Percentage of students in post-secondary non-tertiary education enrolled in general programmes, both sexes (%)\",\"Total number of students enrolled in general programmes at the post-secondary non-tertiary education level, expressed as a percentage of the total number of students enrolled in all programmes (vocational and general) at the post-secondary non-tertiary level. General education is designed to develop learners’ general knowledge, skills and competencies and literacy and numeracy skills, often to prepare students for more advanced educational programmes at the same or higher ISCED levels and to lay the foundation for lifelong learning. General educational programmes are typically school- or college-based. General education includes educational programmes that are designed to prepare students for entry into vocational education, but that do not prepare for employment in a particular occupation or trade or class of occupations or trades, nor lead directly to a labour market relevant qualification.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GTVP.4.GPV.F\",\"Percentage of female students in post-secondary non-tertiary education enrolled in general programmes, female (%)\",\"Total number of female students enrolled in general programmes at the post-secondary non-tertiary education level, expressed as a percentage of the total number of female students enrolled in all programmes (vocational and general) at the post-secondary non-tertiary level. General education is designed to develop learners’ general knowledge, skills and competencies and literacy and numeracy skills, often to prepare students for more advanced educational programmes at the same or higher ISCED levels and to lay the foundation for lifelong learning. General educational programmes are typically school- or college-based. General education includes educational programmes that are designed to prepare students for entry into vocational education, but that do not prepare for employment in a particular occupation or trade or class of occupations or trades, nor lead directly to a labour market relevant qualification.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GTVP.4.GPV.M\",\"Percentage of male students in post-secondary non-tertiary education enrolled in general programmes, male (%)\",\"Total number of male students enrolled in general programmes at the post-secondary non-tertiary education level, expressed as a percentage of the total number of male students enrolled in all programmes (vocational and general) at the post-secondary non-tertiary level. General education is designed to develop learners’ general knowledge, skills and competencies and literacy and numeracy skills, often to prepare students for more advanced educational programmes at the same or higher ISCED levels and to lay the foundation for lifelong learning. General educational programmes are typically school- or college-based. General education includes educational programmes that are designed to prepare students for entry into vocational education, but that do not prepare for employment in a particular occupation or trade or class of occupations or trades, nor lead directly to a labour market relevant qualification.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GTVP.4.V\",\"Percentage of students in post-secondary non-tertiary education enrolled in vocational programmes, both sexes (%)\",\"Total number of students enrolled in vocational programmes at the post-secondary non-tertiary education level, expressed as a percentage of the total number of students enrolled in all programmes (vocational and general) at the post-secondary non-tertiary level. Vocational education is designed for learners to acquire the knowledge, skills and competencies specific to a particular occupation or trade or class of occupations or trades. Vocational education may have work-based components (e.g. apprenticeships). Successful completion of such programmes leads to labour-market relevant vocational qualifications acknowledged as occupationally-oriented by the relevant national authorities and/or the labour market.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GTVP.4.V.F\",\"Percentage of female students in post-secondary non-tertiary education enrolled in vocational programmes, female (%)\",\"Total number of female students enrolled in vocational programmes at the post-secondary non-tertiary education level, expressed as a percentage of the total number of female students enrolled in all programmes (vocational and general) at the post-secondary non-tertiary level. Vocational education is designed for learners to acquire the knowledge, skills and competencies specific to a particular occupation or trade or class of occupations or trades. Vocational education may have work-based components (e.g. apprenticeships). Successful completion of such programmes leads to labour-market relevant vocational qualifications acknowledged as occupationally-oriented by the relevant national authorities and/or the labour market.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.GTVP.4.V.M\",\"Percentage of male students in post-secondary non-tertiary education enrolled in vocational programmes, male (%)\",\"Total number of male students enrolled in vocational programmes at the post-secondary non-tertiary education level, expressed as a percentage of the total number of male students enrolled in all programmes (vocational and general) at the post-secondary non-tertiary level. Vocational education is designed for learners to acquire the knowledge, skills and competencies specific to a particular occupation or trade or class of occupations or trades. Vocational education may have work-based components (e.g. apprenticeships). Successful completion of such programmes leads to labour-market relevant vocational qualifications acknowledged as occupationally-oriented by the relevant national authorities and/or the labour market.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.LP.AG15T24\",\"Youth illiterate population, 15-24 years, both sexes (number)\",\"Total number of youth between age 15 and age 24 who cannot both read and write with understanding a short simple statement on their everyday life.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.LP.AG15T24.F\",\"Youth illiterate population, 15-24 years, female (number)\",\"Total number of females between age 15 and age 24 who cannot both read and write with understanding a short simple statement on their everyday life.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.LP.AG15T24.M\",\"Youth illiterate population, 15-24 years, male (number)\",\"Total number of males between age 15 and age 24 who cannot both read and write with understanding a short simple statement on their everyday life.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.LP.AG15T99\",\"Adult illiterate population, 15+ years, both sexes (number)\",\"Total number of adults over age 15 who cannot both read and write with understanding a short simple statement on their everyday life.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.LP.AG15T99.F\",\"Adult illiterate population, 15+ years, female (number)\",\"Total number of females over age 15 who cannot both read and write with understanding a short simple statement on their everyday life.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.LP.AG15T99.M\",\"Adult illiterate population, 15+ years, male (number)\",\"Total number of males over age 15 who cannot both read and write with understanding a short simple statement on their everyday life.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.LP.AG65\",\"Elderly illiterate population, 65+ years, both sexes (number)\",\"Total number of adults over age 65 who cannot both read and write with understanding a short simple statement on their everyday life.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.LP.AG65.F\",\"Elderly illiterate population, 65+ years, female (number)\",\"Total number of females over age 65 who cannot both read and write with understanding a short simple statement on their everyday life.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.LP.AG65.M\",\"Elderly illiterate population, 65+ years, male (number)\",\"Total number of males over age 65 who cannot both read and write with understanding a short simple statement on their everyday life.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.LPP.AG15T24\",\"Youth illiterate population, 15-24 years, % female\",\"Share of the youth illiterate population that is female.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.LPP.AG15T99\",\"Adult illiterate population, 15+ years, % female\",\"Share of the adult illiterate population that is female.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.LPP.AG65\",\"Elderly illiterate population, 65+ years, % female\",\"Share of the elderly illiterate population that is female.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.LR.AG15T99.GPI\",\"Adult literacy rate, population 15+ years, gender parity index (GPI)\",\"Ratio of female adult literacy rate to the male adult literacy rate. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.LR.AG65\",\"Elderly literacy rate, population 65+ years, both sexes (%)\",\"Percentage of the population age 65 and above who can, with understanding, read and write a short, simple statement on their everyday life. Generally, ‘literacy’ also encompasses ‘numeracy’, the ability to make simple arithmetic calculations. This indicator is calculated by dividing the number of literates aged 65 years and over by the corresponding age group population and multiplying the result by 100.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.LR.AG65.F\",\"Elderly literacy rate, population 65+ years, female (%)\",\"Percentage of females age 65 and above who can, with understanding, read and write a short, simple statement on their everyday life. Generally, ‘literacy’ also encompasses ‘numeracy’, the ability to make simple arithmetic calculations. This indicator is calculated by dividing the number of female literates aged 65 years and over by the corresponding age group population and multiplying the result by 100.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.LR.AG65.GPI\",\"Elderly literacy rate, population 65+ years, gender parity index (GPI)\",\"Ratio of female elderly literacy rate to the male elderly literacy rate. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.LR.AG65.M\",\"Elderly literacy rate, population 65+ years, male (%)\",\"Percentage of males age 65 and above who can, with understanding, read and write a short, simple statement on their everyday life. Generally, ‘literacy’ also encompasses ‘numeracy’, the ability to make simple arithmetic calculations. This indicator is calculated by dividing the number of male literates aged 65 years and over by the corresponding age group population and multiplying the result by 100.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.MENF.56\",\"Net flow of internationally mobile students (inbound - outbound), both sexes (number)\",\"Number of tertiary students from abroad (inbound students) studying in a given country minus the number of students at the same level from a given country studying abroad (outbound students).\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.MENFR.56\",\"Net flow ratio of internationally mobile students (inbound - outbound), both sexes (%)\",\"Total number of tertiary students from abroad (inbound students) studying in a given country minus the number of students at the same level of education from that country studying abroad (outbound students), expressed as a percentage of total tertiary enrolment in that country.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.MS.56.F\",\"Total inbound internationally mobile students, female (number)\",\"Total number of female students who have crossed a national or territorial border for the purpose of education and are now enrolled in tertiary institutions outside their country of origin.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.MS.56.T\",\"Total inbound internationally mobile students, both sexes (number)\",\"Total number of students who have crossed a national or territorial border for the purpose of education and are now enrolled in tertiary institutions outside their country of origin.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.MSEP.56\",\"Inbound mobility rate, both sexes (%)\",\"Number of students from abroad studying in a given country, as a percentage of the total tertiary enrollment in that country.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.MSEP.56.F\",\"Inbound mobility rate, female (%)\",\"Number of female students from abroad studying in a given country, as a percentage of the total female tertiary enrollment in that country.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.MSEP.56.M\",\"Inbound mobility rate, male (%)\",\"Number of male students from abroad studying in a given country, as a percentage of the total male tertiary enrollment in that country.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.1\",\"UIS: Net attendance rate, primary, both sexes (%)\",\"Total number of students in the theoretical age group for primary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.1.F\",\"UIS: Net attendance rate, primary, female (%)\",\"Total number of students in the theoretical age group for primary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.1.GPI\",\"UIS: Net attendance rate, primary, gender parity index (GPI)\",\"Ratio of female net attendance rate to male net attendance rate. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. Net attendance rate is the total number of students in the theoretical age group for primary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.1.M\",\"UIS: Net attendance rate, primary, male (%)\",\"Total number of students in the theoretical age group for primary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.1.Q1\",\"UIS: Net attendance rate, primary, poorest quintile, both sexes (%)\",\"Total number of students in the theoretical age group for primary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.1.Q1.F\",\"UIS: Net attendance rate, primary, poorest quintile, female (%)\",\"Total number of students in the theoretical age group for primary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.1.Q1.GPI\",\"UIS: Net attendance rate, primary, poorest quintile, gender parity index (GPI)\",\"Ratio of female net attendance rate to male net attendance rate. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. Net attendance rate is the total number of students in the theoretical age group for primary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.1.Q1.M\",\"UIS: Net attendance rate, primary, poorest quintile, male (%)\",\"Total number of students in the theoretical age group for primary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.1.Q2\",\"UIS: Net attendance rate, primary, second quintile, both sexes (%)\",\"Total number of students in the theoretical age group for primary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.1.Q2.F\",\"UIS: Net attendance rate, primary, second quintile, female (%)\",\"Total number of students in the theoretical age group for primary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.1.Q2.GPI\",\"UIS: Net attendance rate, primary, second quintile, gender parity index (GPI)\",\"Ratio of female net attendance rate to male net attendance rate. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. Net attendance rate is the total number of students in the theoretical age group for primary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.1.Q2.M\",\"UIS: Net attendance rate, primary, second quintile, male (%)\",\"Total number of students in the theoretical age group for primary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.1.Q3\",\"UIS: Net attendance rate, primary, middle quintile, both sexes (%)\",\"Total number of students in the theoretical age group for primary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.1.Q3.F\",\"UIS: Net attendance rate, primary, middle quintile, female (%)\",\"Total number of students in the theoretical age group for primary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.1.Q3.GPI\",\"UIS: Net attendance rate, primary, middle quintile, gender parity index (GPI)\",\"Ratio of female net attendance rate to male net attendance rate. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. Net attendance rate is the total number of students in the theoretical age group for primary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.1.Q3.M\",\"UIS: Net attendance rate, primary, middle quintile, male (%)\",\"Total number of students in the theoretical age group for primary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.1.Q4\",\"UIS: Net attendance rate, primary, fourth quintile, both sexes (%)\",\"Total number of students in the theoretical age group for primary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.1.Q4.F\",\"UIS: Net attendance rate, primary, fourth quintile, female (%)\",\"Total number of students in the theoretical age group for primary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.1.Q4.GPI\",\"UIS: Net attendance rate, primary, fourth quintile, gender parity index (GPI)\",\"Ratio of female net attendance rate to male net attendance rate. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. Net attendance rate is the total number of students in the theoretical age group for primary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.1.Q4.M\",\"UIS: Net attendance rate, primary, fourth quintile, male (%)\",\"Total number of students in the theoretical age group for primary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.1.Q5\",\"UIS: Net attendance rate, primary, richest quintile, both sexes (%)\",\"Total number of students in the theoretical age group for primary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.1.Q5.F\",\"UIS: Net attendance rate, primary, richest quintile, female (%)\",\"Total number of students in the theoretical age group for primary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.1.Q5.GPI\",\"UIS: Net attendance rate, primary, richest quintile, gender parity index (GPI)\",\"Ratio of female net attendance rate to male net attendance rate. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. Net attendance rate is the total number of students in the theoretical age group for primary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.1.Q5.M\",\"UIS: Net attendance rate, primary, richest quintile, male (%)\",\"Total number of students in the theoretical age group for primary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.1.RUR\",\"UIS: Net attendance rate, primary, rural, both sexes (%)\",\"Total number of students in the theoretical age group for primary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.1.RUR.F\",\"UIS: Net attendance rate, primary, rural, female (%)\",\"Total number of students in the theoretical age group for primary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.1.RUR.GPI\",\"UIS: Net attendance rate, primary, rural, gender parity index (GPI)\",\"Ratio of female net attendance rate to male net attendance rate. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. Net attendance rate is the total number of students in the theoretical age group for primary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.1.RUR.M\",\"UIS: Net attendance rate, primary, rural, male (%)\",\"Total number of students in the theoretical age group for primary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.1.URB\",\"UIS: Net attendance rate, primary, urban, both sexes (%)\",\"Total number of students in the theoretical age group for primary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.1.URB.F\",\"UIS: Net attendance rate, primary, urban, female (%)\",\"Total number of students in the theoretical age group for primary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.1.URB.GPI\",\"UIS: Net attendance rate, primary, urban, gender parity index (GPI)\",\"Ratio of female net attendance rate to male net attendance rate. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. Net attendance rate is the total number of students in the theoretical age group for primary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.1.URB.M\",\"UIS: Net attendance rate, primary, urban, male (%)\",\"Total number of students in the theoretical age group for primary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.2\",\"UIS: Net attendance rate, lower secondary, both sexes (%)\",\"Total number of students in the theoretical age group for lower secondary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.2.F\",\"UIS: Net attendance rate, lower secondary, female (%)\",\"Total number of students in the theoretical age group for lower secondary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.2.GPI\",\"UIS: Net attendance rate, lower secondary, gender parity index (GPI)\",\"Ratio of female net attendance rate to male net attendance rate. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. Net attendance rate is the total number of students in the theoretical age group for lower secondary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.2.M\",\"UIS: Net attendance rate, lower secondary, male (%)\",\"Total number of students in the theoretical age group for lower secondary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.2.Q1\",\"UIS: Net attendance rate, lower secondary, poorest quintile, both sexes (%)\",\"Total number of students in the theoretical age group for lower secondary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.2.Q1.F\",\"UIS: Net attendance rate, lower secondary, poorest quintile, female (%)\",\"Total number of students in the theoretical age group for lower secondary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.2.Q1.GPI\",\"UIS: Net attendance rate, lower secondary, poorest quintile, gender parity index (GPI)\",\"Ratio of female net attendance rate to male net attendance rate. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. Net attendance rate is the total number of students in the theoretical age group for lower secondary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.2.Q1.M\",\"UIS: Net attendance rate, lower secondary, poorest quintile, male (%)\",\"Total number of students in the theoretical age group for lower secondary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.2.Q2\",\"UIS: Net attendance rate, lower secondary, second quintile, both sexes (%)\",\"Total number of students in the theoretical age group for lower secondary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.2.Q2.F\",\"UIS: Net attendance rate, lower secondary, second quintile, female (%)\",\"Total number of students in the theoretical age group for lower secondary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.2.Q2.GPI\",\"UIS: Net attendance rate, lower secondary, second quintile, gender parity index (GPI)\",\"Ratio of female net attendance rate to male net attendance rate. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. Net attendance rate is the total number of students in the theoretical age group for lower secondary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.2.Q2.M\",\"UIS: Net attendance rate, lower secondary, second quintile, male (%)\",\"Total number of students in the theoretical age group for lower secondary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.2.Q3\",\"UIS: Net attendance rate, lower secondary, middle quintile, both sexes (%)\",\"Total number of students in the theoretical age group for lower secondary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.2.Q3.F\",\"UIS: Net attendance rate, lower secondary, middle quintile, female (%)\",\"Total number of students in the theoretical age group for lower secondary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.2.Q3.GPI\",\"UIS: Net attendance rate, lower secondary, middle quintile, gender parity index (GPI)\",\"Ratio of female net attendance rate to male net attendance rate. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. Net attendance rate is the total number of students in the theoretical age group for lower secondary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.2.Q3.M\",\"UIS: Net attendance rate, lower secondary, middle quintile, male (%)\",\"Total number of students in the theoretical age group for lower secondary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.2.Q4\",\"UIS: Net attendance rate, lower secondary, fourth quintile, both sexes (%)\",\"Total number of students in the theoretical age group for lower secondary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.2.Q4.F\",\"UIS: Net attendance rate, lower secondary, fourth quintile, female (%)\",\"Total number of students in the theoretical age group for lower secondary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.2.Q4.GPI\",\"UIS: Net attendance rate, lower secondary, fourth quintile, gender parity index (GPI)\",\"Ratio of female net attendance rate to male net attendance rate. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. Net attendance rate is the total number of students in the theoretical age group for lower secondary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.2.Q4.M\",\"UIS: Net attendance rate, lower secondary, fourth quintile, male (%)\",\"Total number of students in the theoretical age group for lower secondary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.2.Q5\",\"UIS: Net attendance rate, lower secondary, richest quintile, both sexes (%)\",\"Total number of students in the theoretical age group for lower secondary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.2.Q5.F\",\"UIS: Net attendance rate, lower secondary, richest quintile, female (%)\",\"Total number of students in the theoretical age group for lower secondary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.2.Q5.GPI\",\"UIS: Net attendance rate, lower secondary, richest quintile, gender parity index (GPI)\",\"Ratio of female net attendance rate to male net attendance rate. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. Net attendance rate is the total number of students in the theoretical age group for lower secondary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.2.Q5.M\",\"UIS: Net attendance rate, lower secondary, richest quintile, male (%)\",\"Total number of students in the theoretical age group for lower secondary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.2.RUR\",\"UIS: Net attendance rate, lower secondary, rural, both sexes (%)\",\"Total number of students in the theoretical age group for lower secondary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.2.RUR.F\",\"UIS: Net attendance rate, lower secondary, rural, female (%)\",\"Total number of students in the theoretical age group for lower secondary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.2.RUR.GPI\",\"UIS: Net attendance rate, lower secondary, rural, gender parity index (GPI)\",\"Ratio of female net attendance rate to male net attendance rate. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. Net attendance rate is the total number of students in the theoretical age group for lower secondary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.2.RUR.M\",\"UIS: Net attendance rate, lower secondary, rural, male (%)\",\"Total number of students in the theoretical age group for lower secondary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.2.URB\",\"UIS: Net attendance rate, lower secondary, urban, both sexes (%)\",\"Total number of students in the theoretical age group for lower secondary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.2.URB.F\",\"UIS: Net attendance rate, lower secondary, urban, female (%)\",\"Total number of students in the theoretical age group for lower secondary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.2.URB.GPI\",\"UIS: Net attendance rate, lower secondary, urban, gender parity index (GPI)\",\"Ratio of female net attendance rate to male net attendance rate. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. Net attendance rate is the total number of students in the theoretical age group for lower secondary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NAR.2.URB.M\",\"UIS: Net attendance rate, lower secondary, urban, male (%)\",\"Total number of students in the theoretical age group for lower secondary education attending that level, expressed as a percentage of the total population in that age group. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Net Enrolment Rate\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NARA.1\",\"UIS: Adjusted net attendance rate, primary, both sexes (%)\",\"Total number of students of the official primary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Adjusted net enrolment rate, primary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NARA.1.F\",\"UIS: Adjusted net attendance rate, primary, female (%)\",\"Total number of students of the official primary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Adjusted net enrolment rate, primary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NARA.1.GPI\",\"UIS: Adjusted net attendance rate, primary, gender parity index (GPI)\",\"Ratio of female adjusted net attendance rate to male adjusted net attendance rate. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. Adjusted net attendance rate is the total number of students of the official primary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Adjusted net enrolment rate, primary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NARA.1.M\",\"UIS: Adjusted net attendance rate, primary, male (%)\",\"Total number of students of the official primary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Adjusted net enrolment rate, primary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NARA.1.Q1\",\"UIS: Adjusted net attendance rate, primary, poorest quintile, both sexes (%)\",\"Total number of students of the official primary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Adjusted net enrolment rate, primary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NARA.1.Q1.F\",\"UIS: Adjusted net attendance rate, primary, poorest quintile, female (%)\",\"Total number of students of the official primary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Adjusted net enrolment rate, primary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NARA.1.Q1.GPI\",\"UIS: Adjusted net attendance rate, primary, poorest quintile, gender parity index (GPI)\",\"Ratio of female adjusted net attendance rate to male adjusted net attendance rate. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. Adjusted net attendance rate is the total number of students of the official primary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Adjusted net enrolment rate, primary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NARA.1.Q1.M\",\"UIS: Adjusted net attendance rate, primary, poorest quintile, male (%)\",\"Total number of students of the official primary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Adjusted net enrolment rate, primary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NARA.1.Q2\",\"UIS: Adjusted net attendance rate, primary, second quintile, both sexes (%)\",\"Total number of students of the official primary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Adjusted net enrolment rate, primary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NARA.1.Q2.F\",\"UIS: Adjusted net attendance rate, primary, second quintile, female (%)\",\"Total number of students of the official primary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Adjusted net enrolment rate, primary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NARA.1.Q2.GPI\",\"UIS: Adjusted net attendance rate, primary, second quintile, gender parity index (GPI)\",\"Ratio of female adjusted net attendance rate to male adjusted net attendance rate. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. Adjusted net attendance rate is the total number of students of the official primary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Adjusted net enrolment rate, primary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NARA.1.Q2.M\",\"UIS: Adjusted net attendance rate, primary, second quintile, male (%)\",\"Total number of students of the official primary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Adjusted net enrolment rate, primary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NARA.1.Q3\",\"UIS: Adjusted net attendance rate, primary, middle quintile, both sexes (%)\",\"Total number of students of the official primary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Adjusted net enrolment rate, primary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NARA.1.Q3.F\",\"UIS: Adjusted net attendance rate, primary, middle quintile, female (%)\",\"Total number of students of the official primary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Adjusted net enrolment rate, primary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NARA.1.Q3.GPI\",\"UIS: Adjusted net attendance rate, primary, middle quintile, gender parity index (GPI)\",\"Ratio of female adjusted net attendance rate to male adjusted net attendance rate. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. Adjusted net attendance rate is the total number of students of the official primary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Adjusted net enrolment rate, primary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NARA.1.Q3.M\",\"UIS: Adjusted net attendance rate, primary, middle quintile, male (%)\",\"Total number of students of the official primary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Adjusted net enrolment rate, primary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NARA.1.Q4\",\"UIS: Adjusted net attendance rate, primary, fourth quintile, both sexes (%)\",\"Total number of students of the official primary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Adjusted net enrolment rate, primary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NARA.1.Q4.F\",\"UIS: Adjusted net attendance rate, primary, fourth quintile, female (%)\",\"Total number of students of the official primary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Adjusted net enrolment rate, primary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NARA.1.Q4.GPI\",\"UIS: Adjusted net attendance rate, primary, fourth quintile, gender parity index (GPI)\",\"Ratio of female adjusted net attendance rate to male adjusted net attendance rate. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. Adjusted net attendance rate is the total number of students of the official primary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Adjusted net enrolment rate, primary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NARA.1.Q4.M\",\"UIS: Adjusted net attendance rate, primary, fourth quintile, male (%)\",\"Total number of students of the official primary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Adjusted net enrolment rate, primary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NARA.1.Q5\",\"UIS: Adjusted net attendance rate, primary, richest quintile, both sexes (%)\",\"Total number of students of the official primary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Adjusted net enrolment rate, primary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NARA.1.Q5.F\",\"UIS: Adjusted net attendance rate, primary, richest quintile, female (%)\",\"Total number of students of the official primary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Adjusted net enrolment rate, primary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NARA.1.Q5.GPI\",\"UIS: Adjusted net attendance rate, primary, richest quintile, gender parity index (GPI)\",\"Ratio of female adjusted net attendance rate to male adjusted net attendance rate. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. Adjusted net attendance rate is the total number of students of the official primary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Adjusted net enrolment rate, primary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NARA.1.Q5.M\",\"UIS: Adjusted net attendance rate, primary, richest quintile, male (%)\",\"Total number of students of the official primary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Adjusted net enrolment rate, primary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NARA.1.RUR\",\"UIS: Adjusted net attendance rate, primary, rural, both sexes (%)\",\"Total number of students of the official primary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Adjusted net enrolment rate, primary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NARA.1.RUR.F\",\"UIS: Adjusted net attendance rate, primary, rural, female (%)\",\"Total number of students of the official primary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Adjusted net enrolment rate, primary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NARA.1.RUR.GPI\",\"UIS: Adjusted net attendance rate, primary, rural, gender parity index (GPI)\",\"Ratio of female adjusted net attendance rate to male adjusted net attendance rate. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. Adjusted net attendance rate is the total number of students of the official primary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Adjusted net enrolment rate, primary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NARA.1.RUR.M\",\"UIS: Adjusted net attendance rate, primary, rural, male (%)\",\"Total number of students of the official primary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Adjusted net enrolment rate, primary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NARA.1.URB\",\"UIS: Adjusted net attendance rate, primary, urban, both sexes (%)\",\"Total number of students of the official primary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Adjusted net enrolment rate, primary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NARA.1.URB.F\",\"UIS: Adjusted net attendance rate, primary, urban, female (%)\",\"Total number of students of the official primary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Adjusted net enrolment rate, primary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NARA.1.URB.GPI\",\"UIS: Adjusted net attendance rate, primary, urban, gender parity index (GPI)\",\"Ratio of female adjusted net attendance rate to male adjusted net attendance rate. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. Adjusted net attendance rate is the total number of students of the official primary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Adjusted net enrolment rate, primary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NARA.1.URB.M\",\"UIS: Adjusted net attendance rate, primary, urban, male (%)\",\"Total number of students of the official primary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Adjusted net enrolment rate, primary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NART.2\",\"UIS: Total net attendance rate, lower secondary, both sexes (%)\",\"Total number of students of the official lower secondary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Total net enrolment rate, lower secondary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NART.2.F\",\"UIS: Total net attendance rate, lower secondary, female (%)\",\"Total number of students of the official lower secondary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Total net enrolment rate, lower secondary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NART.2.GPI\",\"UIS: Total net attendance rate, lower secondary, gender parity index (GPI)\",\"Ratio of female total net attendance rate to male total net attendance rate. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. Total net attendance rate is the total number of students of the official lower secondary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Total net enrolment rate, lower secondary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NART.2.M\",\"UIS: Total net attendance rate, lower secondary, male (%)\",\"Total number of students of the official lower secondary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Total net enrolment rate, lower secondary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NART.2.Q1\",\"UIS: Total net attendance rate, lower secondary, poorest quintile, both sexes (%)\",\"Total number of students of the official lower secondary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Total net enrolment rate, lower secondary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NART.2.Q1.F\",\"UIS: Total net attendance rate, lower secondary, poorest quintile, female (%)\",\"Total number of students of the official lower secondary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Total net enrolment rate, lower secondary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NART.2.Q1.GPI\",\"UIS: Total net attendance rate, lower secondary, poorest quintile, gender parity index (GPI)\",\"Ratio of female total net attendance rate to male total net attendance rate. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. Total net attendance rate is the total number of students of the official lower secondary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Total net enrolment rate, lower secondary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NART.2.Q1.M\",\"UIS: Total net attendance rate, lower secondary, poorest quintile, male (%)\",\"Total number of students of the official lower secondary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Total net enrolment rate, lower secondary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NART.2.Q2\",\"UIS: Total net attendance rate, lower secondary, second quintile, both sexes (%)\",\"Total number of students of the official lower secondary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Total net enrolment rate, lower secondary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NART.2.Q2.F\",\"UIS: Total net attendance rate, lower secondary, second quintile, female (%)\",\"Total number of students of the official lower secondary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Total net enrolment rate, lower secondary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NART.2.Q2.GPI\",\"UIS: Total net attendance rate, lower secondary, second quintile, gender parity index (GPI)\",\"Ratio of female total net attendance rate to male total net attendance rate. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. Total net attendance rate is the total number of students of the official lower secondary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Total net enrolment rate, lower secondary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NART.2.Q2.M\",\"UIS: Total net attendance rate, lower secondary, second quintile, male (%)\",\"Total number of students of the official lower secondary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Total net enrolment rate, lower secondary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NART.2.Q3\",\"UIS: Total net attendance rate, lower secondary, middle quintile, both sexes (%)\",\"Total number of students of the official lower secondary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Total net enrolment rate, lower secondary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NART.2.Q3.F\",\"UIS: Total net attendance rate, lower secondary, middle quintile, female (%)\",\"Total number of students of the official lower secondary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Total net enrolment rate, lower secondary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NART.2.Q3.GPI\",\"UIS: Total net attendance rate, lower secondary, middle quintile, gender parity index (GPI)\",\"Ratio of female total net attendance rate to male total net attendance rate. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. Total net attendance rate is the total number of students of the official lower secondary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Total net enrolment rate, lower secondary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NART.2.Q3.M\",\"UIS: Total net attendance rate, lower secondary, middle quintile, male (%)\",\"Total number of students of the official lower secondary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Total net enrolment rate, lower secondary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NART.2.Q4\",\"UIS: Total net attendance rate, lower secondary, fourth quintile, both sexes (%)\",\"Total number of students of the official lower secondary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Total net enrolment rate, lower secondary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NART.2.Q4.F\",\"UIS: Total net attendance rate, lower secondary, fourth quintile, female (%)\",\"Total number of students of the official lower secondary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Total net enrolment rate, lower secondary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NART.2.Q4.GPI\",\"UIS: Total net attendance rate, lower secondary, fourth quintile, gender parity index (GPI)\",\"Ratio of female total net attendance rate to male total net attendance rate. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. Total net attendance rate is the total number of students of the official lower secondary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Total net enrolment rate, lower secondary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NART.2.Q4.M\",\"UIS: Total net attendance rate, lower secondary, fourth quintile, male (%)\",\"Total number of students of the official lower secondary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Total net enrolment rate, lower secondary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NART.2.Q5\",\"UIS: Total net attendance rate, lower secondary, richest quintile, both sexes (%)\",\"Total number of students of the official lower secondary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Total net enrolment rate, lower secondary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NART.2.Q5.F\",\"UIS: Total net attendance rate, lower secondary, richest quintile, female (%)\",\"Total number of students of the official lower secondary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Total net enrolment rate, lower secondary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NART.2.Q5.GPI\",\"UIS: Total net attendance rate, lower secondary, richest quintile, gender parity index (GPI)\",\"Ratio of female total net attendance rate to male total net attendance rate. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. Total net attendance rate is the total number of students of the official lower secondary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Total net enrolment rate, lower secondary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NART.2.Q5.M\",\"UIS: Total net attendance rate, lower secondary, richest quintile, male (%)\",\"Total number of students of the official lower secondary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Total net enrolment rate, lower secondary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NART.2.RUR\",\"UIS: Total net attendance rate, lower secondary, rural, both sexes (%)\",\"Total number of students of the official lower secondary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Total net enrolment rate, lower secondary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NART.2.RUR.F\",\"UIS: Total net attendance rate, lower secondary, rural, female (%)\",\"Total number of students of the official lower secondary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Total net enrolment rate, lower secondary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NART.2.RUR.GPI\",\"UIS: Total net attendance rate, lower secondary, rural, gender parity index (GPI)\",\"Ratio of female total net attendance rate to male total net attendance rate. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. Total net attendance rate is the total number of students of the official lower secondary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Total net enrolment rate, lower secondary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NART.2.RUR.M\",\"UIS: Total net attendance rate, lower secondary, rural, male (%)\",\"Total number of students of the official lower secondary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Total net enrolment rate, lower secondary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NART.2.URB\",\"UIS: Total net attendance rate, lower secondary, urban, both sexes (%)\",\"Total number of students of the official lower secondary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Total net enrolment rate, lower secondary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NART.2.URB.F\",\"UIS: Total net attendance rate, lower secondary, urban, female (%)\",\"Total number of students of the official lower secondary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Total net enrolment rate, lower secondary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NART.2.URB.GPI\",\"UIS: Total net attendance rate, lower secondary, urban, gender parity index (GPI)\",\"Ratio of female total net attendance rate to male total net attendance rate. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. Total net attendance rate is the total number of students of the official lower secondary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Total net enrolment rate, lower secondary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NART.2.URB.M\",\"UIS: Total net attendance rate, lower secondary, urban, male (%)\",\"Total number of students of the official lower secondary school age group who attended primary or secondary education at any time during the reference academic year, expressed as a percentage of the corresponding population. The UNESCO Institute for Statistics (UIS) calculates household survey-based education indicators using data from Demographic and Health Surveys (DHS) and Multiple Indicator Cluster Surveys (MICS). School participation in household surveys and censuses is commonly measured by whether pupils or students attended a given grade or level of education at least one day during the academic reference year. Therefore, indicators of school participation derived from household survey data refer to attendance, e.g. “net attendance rate” or “adjusted net attendance rate”. The comparable indicator for administrative data is \\\"Total net enrolment rate, lower secondary\\\" because the data is based on numbers of students officially enrolled in educational institutions in the stated year. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NE.1.ECD\",\"New entrants to Grade 1 of primary education with early childhood education experience , both sexes (number)\\r\\n\",\"New entrants to the first grade of primary education who have previously been enrolled in any pre-primary or early childhood educational development programme.\\r\\n\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NE.1.ECD.F\",\"New entrants to Grade 1 of primary education with early childhood education experience, female (number)\\r\\n\",\"New female entrants to the first grade of primary education who have previously been enrolled in any pre-primary or early childhood educational development programme.\\r\\n\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NE.1.G1\",\"New entrants to Grade 1 of primary education, both sexes (number)\",\"Number of pupils entering primary education for the first time during the course of the reference school or academic year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NE.1.G1.F\",\"New entrants to Grade 1 of primary education, female (number)\",\"Number of female pupils entering primary education for the first time during the course of the reference school or academic year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NER.0.GPI\",\"Net enrolment rate, pre-primary, gender parity index (GPI)\",\"Ratio of female net enrolment rate for pre-primary to the male net enrolment rate for pre-primary. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NER.1.GPI\",\"Net enrolment rate, primary, gender parity index (GPI)\",\"Ratio of female net enrolment rate for primary to the male net enrolment rate for primary. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NER.2\",\"Net enrolment rate, lower secondary, both sexes (%)\",\"Total number of students in the theoretical age group for lower secondary education enrolled in that level, expressed as a percentage of the total population in that age group. Divide the number of students enrolled who are of the official age group for lower secondary education by the population for the same age group and multiply the result by 100. NER at each level of education should be based on enrolment of the relevant age group in all types of schools and education institutions, including public, private and all other institutions that provide organized educational programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NER.2.F\",\"Net enrolment rate, lower secondary, female (%)\",\"Total number of female students in the theoretical age group for lower secondary education enrolled in that level, expressed as a percentage of the total female population in that age group. Divide the number of female students enrolled who are of the official age group for lower secondary education by the female population for the same age group and multiply the result by 100. NER at each level of education should be based on enrolment of the relevant age group in all types of schools and education institutions, including public, private and all other institutions that provide organized educational programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NER.2.M\",\"Net enrolment rate, lower secondary, male (%)\",\"Total number of male students in the theoretical age group for lower secondary education enrolled in that level, expressed as a percentage of the total male population in that age group. Divide the number of male students enrolled who are of the official age group for lower secondary education by the male population for the same age group and multiply the result by 100. NER at each level of education should be based on enrolment of the relevant age group in all types of schools and education institutions, including public, private and all other institutions that provide organized educational programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NER.23.GPI\",\"Net enrolment rate, secondary, gender parity index (GPI)\",\"Ratio of female net enrolment rate for secondary to the male net enrolment rate for secondary. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NER.3\",\"Net enrolment rate, upper secondary, both sexes (%)\",\"Total number of students in the theoretical age group for upper secondary education enrolled in that level, expressed as a percentage of the total population in that age group. Divide the number of students enrolled who are of the official age group for upper secondary education by the population for the same age group and multiply the result by 100. NER at each level of education should be based on enrolment of the relevant age group in all types of schools and education institutions, including public, private and all other institutions that provide organized educational programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NER.3.F\",\"Net enrolment rate, upper secondary, female (%)\",\"Total number of female students in the theoretical age group for upper secondary education enrolled in that level, expressed as a percentage of the total female population in that age group. Divide the number of female students enrolled who are of the official age group for upper secondary education by the female population for the same age group and multiply the result by 100. NER at each level of education should be based on enrolment of the relevant age group in all types of schools and education institutions, including public, private and all other institutions that provide organized educational programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NER.3.M\",\"Net enrolment rate, upper secondary, male (%)\",\"Total number of male students in the theoretical age group for upper secondary education enrolled in that level, expressed as a percentage of the total male population in that age group. Divide the number of male students enrolled who are of the official age group for upper secondary education by the male population for the same age group and multiply the result by 100. NER at each level of education should be based on enrolment of the relevant age group in all types of schools and education institutions, including public, private and all other institutions that provide organized educational programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NERA.1.GPI\",\"Adjusted net enrolment rate, primary, gender parity index (GPI)\",\"Ratio of female adjusted net enrolment rate for primary to the male adjusted net enrolment rate for primary. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NERA.2\",\"Adjusted net enrolment rate, lower secondary, both sexes (%)\",\"Total number of students of the official lower secondary school age group who are enrolled in lower secondary education or higher, expressed as a percentage of the corresponding population. Divide the total number of students in the official lower secondary school age range who are enrolled in lower secondary education or higher by the population of the same age group and multiply the result by 100. NERA should be based on total enrolment of the official school participation age group for all types of schools and education institutions, including public, private and all other institutions that provide organized educational programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NERA.2.F\",\"Adjusted net enrolment rate, lower secondary, female (%)\",\"Total number of female students of the official lower secondary school age group who are enrolled in lower secondary education or higher, expressed as a percentage of the corresponding female population. Divide the total number of female students in the official lower secondary school age range who are enrolled in lower secondary education or higher by the female population of the same age group and multiply the result by 100. NERA should be based on total enrolment of the official school participation age group for all types of schools and education institutions, including public, private and all other institutions that provide organized educational programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NERA.2.GPI\",\"Adjusted net enrolment rate, lower secondary, gender parity index (GPI)\",\"Ratio of female adjusted net enrolment rate for lower secondary to the male adjusted net enrolment rate for lower secondary. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NERA.2.M\",\"Adjusted net enrolment rate, lower secondary, male (%)\",\"Total number of male students of the official lower secondary school age group who are enrolled in lower secondary education or higher, expressed as a percentage of the corresponding male population. Divide the total number of male students in the official lower secondary school age range who are enrolled in lower secondary education or higher by the male population of the same age group and multiply the result by 100. NERA should be based on total enrolment of the official school participation age group for all types of schools and education institutions, including public, private and all other institutions that provide organized educational programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NERA.3\",\"Adjusted net enrolment rate, upper secondary, both sexes (%)\",\"Total number of students of the official upper secondary school age group who are enrolled in upper secondary education or higher, expressed as a percentage of the corresponding population. Divide the total number of students in the official upper secondary school age range who are enrolled in upper secondary education or higher by the population of the same age group and multiply the result by 100. NERA should be based on total enrolment of the official school participation age group for all types of schools and education institutions, including public, private and all other institutions that provide organized educational programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NERA.3.F\",\"Adjusted net enrolment rate, upper secondary, female (%)\",\"Total number of female students of the official upper secondary school age group who are enrolled in upper secondary education or higher, expressed as a percentage of the corresponding female population. Divide the total number of female students in the official upper secondary school age range who are enrolled in upper secondary education or higher by the female population of the same age group and multiply the result by 100. NERA should be based on total enrolment of the official school participation age group for all types of schools and education institutions, including public, private and all other institutions that provide organized educational programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NERA.3.GPI\",\"Adjusted net enrolment rate, upper secondary, gender parity index (GPI)\",\"Ratio of female adjusted net enrolment rate for upper secondary to the male adjusted net enrolment rate for upper secondary. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NERA.3.M\",\"Adjusted net enrolment rate, upper secondary, male (%)\",\"Total number of male students of the official upper secondary school age group who are enrolled in upper secondary education or higher, expressed as a percentage of the corresponding male population. Divide the total number of male students in the official upper secondary school age range who are enrolled in upper secondary education or higher by the male population of the same age group and multiply the result by 100. NERA should be based on total enrolment of the official school participation age group for all types of schools and education institutions, including public, private and all other institutions that provide organized educational programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NERT.1\",\"Total net enrolment rate, primary, both sexes (%)\",\"Total number of students of the official age group for primary education who are enrolled in any level of education, expressed as a percentage of the corresponding population. Divide the total number of students in the official school age range for primary education who are enrolled in any level of education by the population of the same age group and multiply the result by 100. The difference between the total NER and the adjusted NER provides a measure of the proportion of children in the official relevant school age group who are enrolled in levels of education below the one intended for their age. The difference between the total NER and the adjusted NER for primary education is due to enrolment in pre-primary education. The total NER should be based on total enrolment of the official relevant school age group in any level of education for all types of schools and education institutions, including public, private and all other institutions that provide organized educational programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NERT.1.F\",\"Total net enrolment rate, primary, female (%)\",\"Total number of female students of the official age group for primary education who are enrolled in any level of education, expressed as a percentage of the corresponding female population. Divide the total number of female students in the official school age range for primary education who are enrolled in any level of education by the female population of the same age group and multiply the result by 100. The difference between the total NER and the adjusted NER provides a measure of the proportion of children in the official relevant school age group who are enrolled in levels of education below the one intended for their age. The difference between the total NER and the adjusted NER for primary education is due to enrolment in pre-primary education. The total NER should be based on total enrolment of the official relevant school age group in any level of education for all types of schools and education institutions, including public, private and all other institutions that provide organized educational programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NERT.1.GPI\",\"Total net enrolment rate, primary, gender parity index (GPI)\",\"Ratio of female total net enrolment rate for primary to the male total net enrolment rate for primary. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NERT.1.M\",\"Total net enrolment rate, primary, male (%)\",\"Total number of male students of the official age group for primary education who are enrolled in any level of education, expressed as a percentage of the corresponding male population. Divide the total number of male students in the official school age range for primary education who are enrolled in any level of education by the male population of the same age group and multiply the result by 100. The difference between the total NER and the adjusted NER provides a measure of the proportion of children in the official relevant school age group who are enrolled in levels of education below the one intended for their age. The difference between the total NER and the adjusted NER for primary education is due to enrolment in pre-primary education. The total NER should be based on total enrolment of the official relevant school age group in any level of education for all types of schools and education institutions, including public, private and all other institutions that provide organized educational programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NERT.2\",\"Total net enrolment rate, lower secondary, both sexes (%)\",\"Total number of students of the official age group for lower secondary education who are enrolled in any level of education, expressed as a percentage of the corresponding population. Divide the total number of students in the official school age range for lower secondary education who are enrolled in any level of education by the population of the same age group and multiply the result by 100. The difference between the total NER and the adjusted NER provides a measure of the proportion of children in the official relevant school age group who are enrolled in levels of education below the one intended for their age. The difference between the total NER and the adjusted NER for lower secondary education is due to enrolment in pre-primary or primary education. The total NER should be based on total enrolment of the official relevant school age group in any level of education for all types of schools and education institutions, including public, private and all other institutions that provide organized educational programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NERT.2.F\",\"Total net enrolment rate, lower secondary, female (%)\",\"Total number of female students of the official age group for lower secondary education who are enrolled in any level of education, expressed as a percentage of the corresponding female population. Divide the total number of female students in the official school age range for lower secondary education who are enrolled in any level of education by the female population of the same age group and multiply the result by 100. The difference between the total NER and the adjusted NER provides a measure of the proportion of children in the official relevant school age group who are enrolled in levels of education below the one intended for their age. The difference between the total NER and the adjusted NER for lower secondary education is due to enrolment in pre-primary or primary education. The total NER should be based on total enrolment of the official relevant school age group in any level of education for all types of schools and education institutions, including public, private and all other institutions that provide organized educational programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NERT.2.GPI\",\"Total net enrolment rate, lower secondary, gender parity index (GPI)\",\"Ratio of female total net enrolment rate for lower secondary to the male total net enrolment rate for lower secondary. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NERT.2.M\",\"Total net enrolment rate, lower secondary, male (%)\",\"Total number of male students of the official age group for lower secondary education who are enrolled in any level of education, expressed as a percentage of the corresponding male population. Divide the total number of male students in the official school age range for lower secondary education who are enrolled in any level of education by the male population of the same age group and multiply the result by 100. The difference between the total NER and the adjusted NER provides a measure of the proportion of children in the official relevant school age group who are enrolled in levels of education below the one intended for their age. The difference between the total NER and the adjusted NER for lower secondary education is due to enrolment in pre-primary or primary education. The total NER should be based on total enrolment of the official relevant school age group in any level of education for all types of schools and education institutions, including public, private and all other institutions that provide organized educational programmes.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NIR.1.AGM1\",\"Net intake rate to Grade 1 of primary education by under-age entrants (-1 year), both sexes (%)\",\"Number of new entrants in the first grade of primary education who are one year younger than the official primary school-entrance age, expressed as a percentage of the population of the primary school entrance age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NIR.1.AGM1.F\",\"Net intake rate to Grade 1 of primary education by under-age entrants (-1 year), female (%)\",\"Number of new female entrants in the first grade of primary education who are one year younger than the official primary school-entrance age, expressed as a percentage of the female population of the primary school entrance age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NIR.1.AGM1.GPI\",\"Net intake rate to Grade 1 of primary education by under-age entrants (-1 year), gender parity index (GPI)\",\"Ratio of female net intake rate to grade 1 of primary education by under-age entrants to the male value for the same indicator. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NIR.1.AGM1.M\",\"Net intake rate to Grade 1 of primary education by under-age entrants (-1 year), male (%)\",\"Number of new male entrants in the first grade of primary education who are one year younger than the official primary school-entrance age, expressed as a percentage of the male population of the primary school entrance age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NIR.1.AGP1\",\"Net intake rate to Grade 1 of primary education by over-age entrants (+1 year), both sexes (%)\",\"Number of new entrants in the first grade of primary education who are one year older than the official primary school-entrance age, expressed as a percentage of the population of the primary school entrance age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NIR.1.AGP1.F\",\"Net intake rate to Grade 1 of primary education by over-age entrants (+1 year), female (%)\",\"Number of new female entrants in the first grade of primary education who are one year older than the official primary school-entrance age, expressed as a percentage of the female population of the primary school entrance age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NIR.1.AGP1.GPI\",\"Net intake rate to Grade 1 of primary education by over-age entrants (+1 year), gender parity index (GPI)\",\"Ratio of female net intake rate to grade 1 of primary education by over-age entrants to the male value for the same indicator. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NIR.1.AGP1.M\",\"Net intake rate to Grade 1 of primary education by over-age entrants (+1 year), male (%)\",\"Number of new male entrants in the first grade of primary education who are one year older than the official primary school-entrance age, expressed as a percentage of the male population of the primary school entrance age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NIR.1.GPI\",\"Net intake rate to Grade 1 of primary education, gender parity index (GPI)\",\"Ratio of female net intake rate for primary to the male net intake rate for primary. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NIRA.1\",\"Adjusted net intake rate to Grade 1 of primary education, both sexes (%)\",\"Total enrolment in primary education of the official primary school entrance age, as a percentage of the population of the same age in a given school year. It is the equivalent of the age-specific enrolment rate of the official primary entrance age. Divide the number of students in the official primary school entrance age who are enrolled in primary education, regardless of the year of entrance, grade or repetition, by the population of the same age, and multiply the result by 100. Adjusted NIR should be based on total enrolment of all children of the official primary school entrance age in all types of schools that provide organized educational programmes, including public and private institutions. It must be ensured that the enrolment data cover pupils who enter primary school earlier and might repeat the first grade or be at higher grades. While the Net intake rate (NIR) measures timely access to primary school for the official entrance age, the NIRA captures actual access to primary school for the total population of the official entrance age. It reflects efforts made by governments to achieve universal entrance to primary education of the eligible population of the official primary school entrance age. Adjusted NIR gives the proportion of children of the official primary school entrance age that are enrolled in primary education level but not necessary for the first time or in the first grade.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NIRA.1.F\",\"Adjusted net intake rate to Grade 1 of primary education, female (%)\",\"Total female enrolment in primary education of the official primary school entrance age, as a percentage of the female population of the same age in a given school year. It is the equivalent of the age-specific enrolment rate of the official primary entrance age. Divide the number of female students in the official primary school entrance age who are enrolled in primary education, regardless of the year of entrance, grade or repetition, by the female population of the same age, and multiply the result by 100. Adjusted NIR should be based on total enrolment of all children of the official primary school entrance age in all types of schools that provide organized educational programmes, including public and private institutions. It must be ensured that the enrolment data cover pupils who enter primary school earlier and might repeat the first grade or be at higher grades. While the Net intake rate (NIR) measures timely access to primary school for the official entrance age, the NIRA captures actual access to primary school for the total population of the official entrance age. It reflects efforts made by governments to achieve universal entrance to primary education of the eligible population of the official primary school entrance age. Adjusted NIR gives the proportion of children of the official primary school entrance age that are enrolled in primary education level but not necessary for the first time or in the first grade.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NIRA.1.GPI\",\"Adjusted net intake rate to Grade 1 of primary education, gender parity index (GPI)\",\"Ratio of the female adjusted net intake rate for primary to the male value for the same indicator. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.NIRA.1.M\",\"Adjusted net intake rate to Grade 1 of primary education, male (%)\",\"Total male enrolment in primary education of the official primary school entrance age, as a percentage of the male population of the same age in a given school year. It is the equivalent of the age-specific enrolment rate of the official primary entrance age. Divide the number of male students in the official primary school entrance age who are enrolled in primary education, regardless of the year of entrance, grade or repetition, by the male population of the same age, and multiply the result by 100. Adjusted NIR should be based on total enrolment of all children of the official primary school entrance age in all types of schools that provide organized educational programmes, including public and private institutions. It must be ensured that the enrolment data cover pupils who enter primary school earlier and might repeat the first grade or be at higher grades. While the Net intake rate (NIR) measures timely access to primary school for the official entrance age, the NIRA captures actual access to primary school for the total population of the official entrance age. It reflects efforts made by governments to achieve universal entrance to primary education of the eligible population of the official primary school entrance age. Adjusted NIR gives the proportion of children of the official primary school entrance age that are enrolled in primary education level but not necessary for the first time or in the first grade.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.OAEP.1\",\"Percentage of students enrolled in primary education who are over-age, both sexes (%)\",\"Total number of over-age students in primary education institutions as a percentage of total enrolments in primary education institutions.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.OAEP.1.F\",\"Percentage of female students enrolled in primary education who are over-age, female (%)\",\"Total number of female over-age students in primary education institutions as a percentage of total female enrolments in primary education institutions.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.OAEP.1.M\",\"Percentage of male students enrolled in primary education who are over-age, male (%)\",\"Total number of male over-age students in primary education institutions as a percentage of total male enrolments in primary education institutions.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.OAPP.1\",\"Over-age enrolment ratio in primary education, both sexes (%)\",\"Percentage of the primary school age population that is over the official primary school age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.OAPP.1.F\",\"Over-age enrolment ratio in primary education, female (%)\",\"Percentage of the female primary school age population that is over the official primary school age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.OAPP.1.M\",\"Over-age enrolment ratio in primary education, male (%)\",\"Percentage of the male primary school age population that is over the official primary school age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.OE.56.40510\",\"Total outbound internationally mobile tertiary students studying abroad, all countries, both sexes (number)\",\"Students who have crossed a national or territorial border for the purpose of education and are now enrolled outside their country of origin.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.OFSPPT.1\",\"Out-of-school children of primary school age in pre-primary education, both sexes (number)\",\"Children in the official primary school age range who are enrolled in pre-primary education.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.OFSPPT.1.F\",\"Out-of-school children of primary school age in pre-primary education, female (number)\",\"Female children in the official primary school age range who are enrolled in pre-primary education.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.OFSPPT.1.M\",\"Out-of-school children of primary school age in pre-primary education, male (number)\",\"Male children in the official primary school age range who are enrolled in pre-primary education.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.OFST.2\",\"Out-of-school adolescents of lower secondary school age, both sexes (number)\",\"Total number of lower secondary school age adolescents who are not enrolled in lower secondary education.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.OFST.2.F\",\"Out-of-school adolescents of lower secondary school age, female (number)\",\"Total number of female lower secondary school age adolescents who are not enrolled in lower secondary education.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.OFST.2.M\",\"Out-of-school adolescents of lower secondary school age, male (number)\",\"Total number of male lower secondary school age adolescents who are not enrolled in lower secondary education.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.OMR.56\",\"Outbound mobility ratio, all regions, both sexes (%)\",\"Number of students from a given country studying abroad as a percentage of the total tertiary enrolment in that country.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.PRP.2\",\"Percentage of enrolment in lower secondary education in private institutions (%)\",\"Total number of students in lower secondary education enrolled in institutions that are not operated by a public authority but controlled and managed, whether for profit or not, by a private body (e.g., non-governmental organisation, religious body, special interest group, foundation or business enterprise), expressed as a percentage of total number of students enrolled in lower secondary education.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.PRP.3\",\"Percentage of enrolment in upper secondary education in private institutions (%)\",\"Total number of students in upper secondary education enrolled in institutions that are not operated by a public authority but controlled and managed, whether for profit or not, by a private body (e.g., non-governmental organisation, religious body, special interest group, foundation or business enterprise), expressed as a percentage of total number of students enrolled in upper secondary education.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.PRP.4\",\"Percentage of enrolment in post-secondary non-tertiary education in private institutions (%)\",\"Total number of students in post-secondary non-tertiary education enrolled in institutions that are not operated by a public authority but controlled and managed, whether for profit or not, by a private body (e.g., non-governmental organisation, religious body, special interest group, foundation or business enterprise), expressed as a percentage of total number of students enrolled in post-secondary non-tertiary education.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.PTRHC.2\",\"Pupil-teacher ratio in lower secondary education (headcount basis)\",\"Average number of pupils per teacher at a given level of education, based on headcounts of both pupils and teachers. Divide the total number of pupils enrolled at the specified level of education by the number of teachers at the same level. In computing and interpreting this indicator, one should take into account the existence of part-time teaching, school-shifts, multi-grade classes and other practices that may affect the precision and meaningfulness of pupil-teacher ratios. When feasible, the number of part-time teachers is converted to ‘full-time equivalent’ teachers; a double-shift teacher is counted twice, etc. Teachers are defined as persons whose professional activity involves the transmitting of knowledge, attitudes and skills that are stipulated in a formal curriculum programme to students enrolled in a formal educational institution.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.PTRHC.3\",\"Pupil-teacher ratio in upper secondary education (headcount basis)\",\"Average number of pupils per teacher at a given level of education, based on headcounts of both pupils and teachers. Divide the total number of pupils enrolled at the specified level of education by the number of teachers at the same level. In computing and interpreting this indicator, one should take into account the existence of part-time teaching, school-shifts, multi-grade classes and other practices that may affect the precision and meaningfulness of pupil-teacher ratios. When feasible, the number of part-time teachers is converted to ‘full-time equivalent’ teachers; a double-shift teacher is counted twice, etc. Teachers are defined as persons whose professional activity involves the transmitting of knowledge, attitudes and skills that are stipulated in a formal curriculum programme to students enrolled in a formal educational institution.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.PTRHC.56\",\"Pupil-teacher ratio in tertiary education (headcount basis)\",\"Average number of pupils per teacher at a given level of education, based on headcounts of both pupils and teachers. Divide the total number of pupils enrolled at the specified level of education by the number of teachers at the same level. In computing and interpreting this indicator, one should take into account the existence of part-time teaching, school-shifts, multi-grade classes and other practices that may affect the precision and meaningfulness of pupil-teacher ratios. When feasible, the number of part-time teachers is converted to ‘full-time equivalent’ teachers; a double-shift teacher is counted twice, etc. Teachers are defined as persons whose professional activity involves the transmitting of knowledge, attitudes and skills that are stipulated in a formal curriculum programme to students enrolled in a formal educational institution.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.R.1\",\"Repeaters in primary education, all grades, both sexes (number)\",\"Number of pupils enrolled in the same grade for a second (or further) year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.R.1.F\",\"Repeaters in primary education, all grades, female (number)\",\"Number of female pupils enrolled in the same grade for a second (or further) year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.R.1.G1\",\"Repeaters in Grade 1 of primary education, both sexes (number)\",\"Number of pupils in the specified grade who are enrolled in the same grade for a second (or further) year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.R.1.G1.F\",\"Repeaters in Grade 1 of primary education, female (number)\",\"Number of female pupils in the specified grade who are enrolled in the same grade for a second (or further) year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.R.1.G2\",\"Repeaters in Grade 2 of primary education, both sexes (number)\",\"Number of pupils in the specified grade who are enrolled in the same grade for a second (or further) year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.R.1.G2.F\",\"Repeaters in Grade 2 of primary education, female (number)\",\"Number of female pupils in the specified grade who are enrolled in the same grade for a second (or further) year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.R.1.G3\",\"Repeaters in Grade 3 of primary education, both sexes (number)\",\"Number of pupils in the specified grade who are enrolled in the same grade for a second (or further) year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.R.1.G3.F\",\"Repeaters in Grade 3 of primary education, female (number)\",\"Number of female pupils in the specified grade who are enrolled in the same grade for a second (or further) year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.R.1.G4\",\"Repeaters in Grade 4 of primary education, both sexes (number)\",\"Number of pupils in the specified grade who are enrolled in the same grade for a second (or further) year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.R.1.G4.F\",\"Repeaters in Grade 4 of primary education, female (number)\",\"Number of female pupils in the specified grade who are enrolled in the same grade for a second (or further) year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.R.1.G5\",\"Repeaters in Grade 5 of primary education, both sexes (number)\",\"Number of pupils in the specified grade who are enrolled in the same grade for a second (or further) year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.R.1.G5.F\",\"Repeaters in Grade 5 of primary education, female (number)\",\"Number of female pupils in the specified grade who are enrolled in the same grade for a second (or further) year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.R.1.G6\",\"Repeaters in Grade 6 of primary education, both sexes (number)\",\"Number of pupils in the specified grade who are enrolled in the same grade for a second (or further) year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.R.1.G6.F\",\"Repeaters in Grade 6 of primary education, female (number)\",\"Number of female pupils in the specified grade who are enrolled in the same grade for a second (or further) year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.R.1.G7\",\"Repeaters in Grade 7 of primary education, both sexes (number)\",\"Number of pupils in the specified grade who are enrolled in the same grade for a second (or further) year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.R.1.G7.F\",\"Repeaters in Grade 7 of primary education, female (number)\",\"Number of female pupils in the specified grade who are enrolled in the same grade for a second (or further) year.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.R.2.GPV\",\"Repeaters in lower secondary general education, all grades, both sexes (number)\",\"Number of pupils in the specified grade who are enrolled in the same grade for a second (or further) year. \",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.R.2.GPV.F\",\"Repeaters in lower secondary general education, all grades, female (number)\",\"Number of pupils in the specified grade who are enrolled in the same grade for a second (or further) year. \",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.R.2.GPV.G1\",\"Repeaters in Grade 1 of lower secondary general education, both sexes (number)\",\"Number of pupils in the specified grade who are enrolled in the same grade for a second (or further) year. \",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.R.2.GPV.G1.F\",\"Repeaters in Grade 1 of lower secondary general education, female (number)\",\"Number of pupils in the specified grade who are enrolled in the same grade for a second (or further) year. \",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.R.2.GPV.G2\",\"Repeaters in Grade 2 of lower secondary general education, both sexes (number)\",\"Number of pupils in the specified grade who are enrolled in the same grade for a second (or further) year. \",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.R.2.GPV.G2.F\",\"Repeaters in Grade 2 of lower secondary general education, female (number)\",\"Number of pupils in the specified grade who are enrolled in the same grade for a second (or further) year. \",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.R.2.GPV.G3\",\"Repeaters in Grade 3 of lower secondary general education, both sexes (number)\",\"Number of pupils in the specified grade who are enrolled in the same grade for a second (or further) year. \",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.R.2.GPV.G3.F\",\"Repeaters in Grade 3 of lower secondary general education, female (number)\",\"Number of pupils in the specified grade who are enrolled in the same grade for a second (or further) year. \",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.R.2.GPV.G4\",\"Repeaters in Grade 4 of lower secondary general education, both sexes (number)\",\"Number of pupils in the specified grade who are enrolled in the same grade for a second (or further) year. \",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.R.2.GPV.G4.F\",\"Repeaters in Grade 4 of lower secondary general education, female (number)\",\"Number of pupils in the specified grade who are enrolled in the same grade for a second (or further) year. \",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.R.2.GPV.G5\",\"Repeaters in Grade 5 of lower secondary general education, both sexes (number)\",\"Number of pupils in the specified grade who are enrolled in the same grade for a second (or further) year. \",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.R.2.GPV.G5.F\",\"Repeaters in Grade 5 of lower secondary general education, female (number)\",\"Number of pupils in the specified grade who are enrolled in the same grade for a second (or further) year. \",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.R.2.GPV.G6\",\"Repeaters in Grade 6 of lower secondary general education, both sexes (number)\",\"Number of pupils in the specified grade who are enrolled in the same grade for a second (or further) year. \",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.R.2.GPV.G6.F\",\"Repeaters in Grade 6 of lower secondary general education, female (number)\",\"Number of pupils in the specified grade who are enrolled in the same grade for a second (or further) year. \",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.1.G1\",\"Percentage of repeaters in Grade 1 of primary education, both sexes (%)\",\"Total number of pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total enrollment in the specified grade. It is calculated by dividing the number of pupils repeating a given grade in a given school year by the number of pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.1.G1.F\",\"Percentage of repeaters in Grade 1 of primary education, female (%)\",\"Total number of female pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total female enrollment in the specified grade. It is calculated by dividing the number of female pupils repeating a given grade in a given school year by the number of female pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.1.G1.M\",\"Percentage of repeaters in Grade 1 of primary education, male (%)\",\"Total number of male pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total male enrollment in the specified grade. It is calculated by dividing the number of male pupils repeating a given grade in a given school year by the male number of pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.1.G2\",\"Percentage of repeaters in Grade 2 of primary education, both sexes (%)\",\"Total number of pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total enrollment in the specified grade. It is calculated by dividing the number of pupils repeating a given grade in a given school year by the number of pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.1.G2.F\",\"Percentage of repeaters in Grade 2 of primary education, female (%)\",\"Total number of female pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total female enrollment in the specified grade. It is calculated by dividing the number of female pupils repeating a given grade in a given school year by the number of female pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.1.G2.M\",\"Percentage of repeaters in Grade 2 of primary education, male (%)\",\"Total number of male pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total male enrollment in the specified grade. It is calculated by dividing the number of male pupils repeating a given grade in a given school year by the male number of pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.1.G3\",\"Percentage of repeaters in Grade 3 of primary education, both sexes (%)\",\"Total number of pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total enrollment in the specified grade. It is calculated by dividing the number of pupils repeating a given grade in a given school year by the number of pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.1.G3.F\",\"Percentage of repeaters in Grade 3 of primary education, female (%)\",\"Total number of female pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total female enrollment in the specified grade. It is calculated by dividing the number of female pupils repeating a given grade in a given school year by the number of female pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.1.G3.M\",\"Percentage of repeaters in Grade 3 of primary education, male (%)\",\"Total number of male pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total male enrollment in the specified grade. It is calculated by dividing the number of male pupils repeating a given grade in a given school year by the male number of pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.1.G4\",\"Percentage of repeaters in Grade 4 of primary education, both sexes (%)\",\"Total number of pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total enrollment in the specified grade. It is calculated by dividing the number of pupils repeating a given grade in a given school year by the number of pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.1.G4.F\",\"Percentage of repeaters in Grade 4 of primary education, female (%)\",\"Total number of female pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total female enrollment in the specified grade. It is calculated by dividing the number of female pupils repeating a given grade in a given school year by the number of female pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.1.G4.M\",\"Percentage of repeaters in Grade 4 of primary education, male (%)\",\"Total number of male pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total male enrollment in the specified grade. It is calculated by dividing the number of male pupils repeating a given grade in a given school year by the male number of pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.1.G5\",\"Percentage of repeaters in Grade 5 of primary education, both sexes (%)\",\"Total number of pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total enrollment in the specified grade. It is calculated by dividing the number of pupils repeating a given grade in a given school year by the number of pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.1.G5.F\",\"Percentage of repeaters in Grade 5 of primary education, female (%)\",\"Total number of female pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total female enrollment in the specified grade. It is calculated by dividing the number of female pupils repeating a given grade in a given school year by the number of female pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.1.G5.M\",\"Percentage of repeaters in Grade 5 of primary education, male (%)\",\"Total number of male pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total male enrollment in the specified grade. It is calculated by dividing the number of male pupils repeating a given grade in a given school year by the male number of pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.1.G6\",\"Percentage of repeaters in Grade 6 of primary education, both sexes (%)\",\"Total number of pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total enrollment in the specified grade. It is calculated by dividing the number of pupils repeating a given grade in a given school year by the number of pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.1.G6.F\",\"Percentage of repeaters in Grade 6 of primary education, female (%)\",\"Total number of female pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total female enrollment in the specified grade. It is calculated by dividing the number of female pupils repeating a given grade in a given school year by the number of female pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.1.G6.M\",\"Percentage of repeaters in Grade 6 of primary education, male (%)\",\"Total number of male pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total male enrollment in the specified grade. It is calculated by dividing the number of male pupils repeating a given grade in a given school year by the male number of pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.1.G7\",\"Percentage of repeaters in Grade 7 of primary education, both sexes (%)\",\"Total number of pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total enrollment in the specified grade. It is calculated by dividing the number of pupils repeating a given grade in a given school year by the number of pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.1.G7.F\",\"Percentage of repeaters in Grade 7 of primary education, female (%)\",\"Total number of female pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total female enrollment in the specified grade. It is calculated by dividing the number of female pupils repeating a given grade in a given school year by the number of female pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.1.G7.M\",\"Percentage of repeaters in Grade 7 of primary education, male (%)\",\"Total number of male pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total male enrollment in the specified grade. It is calculated by dividing the number of male pupils repeating a given grade in a given school year by the male number of pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.1.GPI\",\"Percentage of repeaters in primary education, all grades, gender parity index (GPI)\",\"Ratio of female percentage of repeaters in primary to the male percentage of repeaters in primary. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.2.GPV\",\"Percentage of repeaters in lower secondary general education, all grades, both sexes (%)\",\"Total number of pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total enrollment in the specified grade. It is calculated by dividing the number of pupils repeating a given grade in a given school year by the number of pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.2.GPV.F\",\"Percentage of repeaters in lower secondary general education, all grades, female (%)\",\"Total number of pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total enrollment in the specified grade. It is calculated by dividing the number of pupils repeating a given grade in a given school year by the number of pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.2.GPV.G1\",\"Percentage of repeaters in Grade 1 of lower secondary general education, both sexes (%)\",\"Total number of pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total enrollment in the specified grade. It is calculated by dividing the number of pupils repeating a given grade in a given school year by the number of pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.2.GPV.G1.F\",\"Percentage of repeaters in Grade 1 of lower secondary general education, female (%)\",\"Total number of pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total enrollment in the specified grade. It is calculated by dividing the number of pupils repeating a given grade in a given school year by the number of pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.2.GPV.G1.M\",\"Percentage of repeaters in Grade 1 of lower secondary general education, male (%)\",\"Total number of pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total enrollment in the specified grade. It is calculated by dividing the number of pupils repeating a given grade in a given school year by the number of pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.2.GPV.G2\",\"Percentage of repeaters in Grade 2 of lower secondary general education, both sexes (%)\",\"Total number of pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total enrollment in the specified grade. It is calculated by dividing the number of pupils repeating a given grade in a given school year by the number of pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.2.GPV.G2.F\",\"Percentage of repeaters in Grade 2 of lower secondary general education, female (%)\",\"Total number of pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total enrollment in the specified grade. It is calculated by dividing the number of pupils repeating a given grade in a given school year by the number of pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.2.GPV.G2.M\",\"Percentage of repeaters in Grade 2 of lower secondary general education, male (%)\",\"Total number of pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total enrollment in the specified grade. It is calculated by dividing the number of pupils repeating a given grade in a given school year by the number of pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.2.GPV.G3\",\"Percentage of repeaters in Grade 3 of lower secondary general education, both sexes (%)\",\"Total number of pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total enrollment in the specified grade. It is calculated by dividing the number of pupils repeating a given grade in a given school year by the number of pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.2.GPV.G3.F\",\"Percentage of repeaters in Grade 3 of lower secondary general education, female (%)\",\"Total number of pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total enrollment in the specified grade. It is calculated by dividing the number of pupils repeating a given grade in a given school year by the number of pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.2.GPV.G3.M\",\"Percentage of repeaters in Grade 3 of lower secondary general education, male (%)\",\"Total number of pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total enrollment in the specified grade. It is calculated by dividing the number of pupils repeating a given grade in a given school year by the number of pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.2.GPV.G4\",\"Percentage of repeaters in Grade 4 of lower secondary general education, both sexes (%)\",\"Total number of pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total enrollment in the specified grade. It is calculated by dividing the number of pupils repeating a given grade in a given school year by the number of pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.2.GPV.G4.F\",\"Percentage of repeaters in Grade 4 of lower secondary general education, female (%)\",\"Total number of pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total enrollment in the specified grade. It is calculated by dividing the number of pupils repeating a given grade in a given school year by the number of pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.2.GPV.G4.M\",\"Percentage of repeaters in Grade 4 of lower secondary general education, male (%)\",\"Total number of pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total enrollment in the specified grade. It is calculated by dividing the number of pupils repeating a given grade in a given school year by the number of pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.2.GPV.G5\",\"Percentage of repeaters in Grade 5 of lower secondary general education, both sexes (%)\",\"Total number of pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total enrollment in the specified grade. It is calculated by dividing the number of pupils repeating a given grade in a given school year by the number of pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.2.GPV.G5.F\",\"Percentage of repeaters in Grade 5 of lower secondary general education, female (%)\",\"Total number of pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total enrollment in the specified grade. It is calculated by dividing the number of pupils repeating a given grade in a given school year by the number of pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.2.GPV.G5.M\",\"Percentage of repeaters in Grade 5 of lower secondary general education, male (%)\",\"Total number of pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total enrollment in the specified grade. It is calculated by dividing the number of pupils repeating a given grade in a given school year by the number of pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.2.GPV.G6\",\"Percentage of repeaters in Grade 6 of lower secondary general education, both sexes (%)\",\"Total number of pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total enrollment in the specified grade. It is calculated by dividing the number of pupils repeating a given grade in a given school year by the number of pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.2.GPV.G6.F\",\"Percentage of repeaters in Grade 6 of lower secondary general education, female (%)\",\"Total number of pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total enrollment in the specified grade. It is calculated by dividing the number of pupils repeating a given grade in a given school year by the number of pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.2.GPV.G6.M\",\"Percentage of repeaters in Grade 6 of lower secondary general education, male (%)\",\"Total number of pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total enrollment in the specified grade. It is calculated by dividing the number of pupils repeating a given grade in a given school year by the number of pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPP.2.GPV.M\",\"Percentage of repeaters in lower secondary general education, all grades, male (%)\",\"Total number of pupils in the specified grade who are enrolled in the same grade as in a previous year, expressed as a percentage of the total enrollment in the specified grade. It is calculated by dividing the number of pupils repeating a given grade in a given school year by the number of pupils enrolled in the same grade in the same school year and multiplying by 100. The definition of repeaters should be unambiguously applied to include even pupils repeating more than once in the same grade and those who repeat the same grade while transferring from one school to another. Students who were not studying in the same grade in the previous year should be excluded.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.1\",\"Repetition rate in primary education (all grades), both sexes (%)\",\"Number of repeaters in primary education in a given school year, expressed as a percentage of enrolment in primary education in the previous school year. Divide the number of repeaters in primary education in school year t+1 by the number of pupils from the same cohort enrolled in primary education in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.1.F\",\"Repetition rate in primary education (all grades), female (%)\",\"Number of female repeaters in primary education in a given school year, expressed as a percentage of female enrolment in primary education in the previous school year. Divide the number of female repeaters in primary education in school year t+1 by the number of female pupils from the same cohort enrolled in primary education in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.1.G1\",\"Repetition rate in Grade 1 of primary education, both sexes (%)\",\"Number of repeaters in a given grade in a given school year, expressed as a percentage of enrolment in that grade the previous school year. Divide the number of repeaters in a given grade in school year t+1 by the number of pupils from the same cohort enrolled in the same grade in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.1.G1.F\",\"Repetition rate in Grade 1 of primary education, female (%)\",\"Number of female repeaters in a given grade in a given school year, expressed as a percentage of female enrolment in that grade the previous school year. Divide the number of female repeaters in a given grade in school year t+1 by the number of female pupils from the same cohort enrolled in the same grade in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.1.G1.M\",\"Repetition rate in Grade 1 of primary education, male (%)\",\"Number of male repeaters in a given grade in a given school year, expressed as a percentage of male enrolment in that grade the previous school year. Divide the number of male repeaters in a given grade in school year t+1 by the number of male pupils from the same cohort enrolled in the same grade in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.1.G2\",\"Repetition rate in Grade 2 of primary education, both sexes (%)\",\"Number of repeaters in a given grade in a given school year, expressed as a percentage of enrolment in that grade the previous school year. Divide the number of repeaters in a given grade in school year t+1 by the number of pupils from the same cohort enrolled in the same grade in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.1.G2.F\",\"Repetition rate in Grade 2 of primary education, female (%)\",\"Number of female repeaters in a given grade in a given school year, expressed as a percentage of female enrolment in that grade the previous school year. Divide the number of female repeaters in a given grade in school year t+1 by the number of female pupils from the same cohort enrolled in the same grade in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.1.G2.M\",\"Repetition rate in Grade 2 of primary education, male (%)\",\"Number of male repeaters in a given grade in a given school year, expressed as a percentage of male enrolment in that grade the previous school year. Divide the number of male repeaters in a given grade in school year t+1 by the number of male pupils from the same cohort enrolled in the same grade in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.1.G3\",\"Repetition rate in Grade 3 of primary education, both sexes (%)\",\"Number of repeaters in a given grade in a given school year, expressed as a percentage of enrolment in that grade the previous school year. Divide the number of repeaters in a given grade in school year t+1 by the number of pupils from the same cohort enrolled in the same grade in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.1.G3.F\",\"Repetition rate in Grade 3 of primary education, female (%)\",\"Number of female repeaters in a given grade in a given school year, expressed as a percentage of female enrolment in that grade the previous school year. Divide the number of female repeaters in a given grade in school year t+1 by the number of female pupils from the same cohort enrolled in the same grade in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.1.G3.M\",\"Repetition rate in Grade 3 of primary education, male (%)\",\"Number of male repeaters in a given grade in a given school year, expressed as a percentage of male enrolment in that grade the previous school year. Divide the number of male repeaters in a given grade in school year t+1 by the number of male pupils from the same cohort enrolled in the same grade in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.1.G4\",\"Repetition rate in Grade 4 of primary education, both sexes (%)\",\"Number of repeaters in a given grade in a given school year, expressed as a percentage of enrolment in that grade the previous school year. Divide the number of repeaters in a given grade in school year t+1 by the number of pupils from the same cohort enrolled in the same grade in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.1.G4.F\",\"Repetition rate in Grade 4 of primary education, female (%)\",\"Number of female repeaters in a given grade in a given school year, expressed as a percentage of female enrolment in that grade the previous school year. Divide the number of female repeaters in a given grade in school year t+1 by the number of female pupils from the same cohort enrolled in the same grade in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.1.G4.M\",\"Repetition rate in Grade 4 of primary education, male (%)\",\"Number of male repeaters in a given grade in a given school year, expressed as a percentage of male enrolment in that grade the previous school year. Divide the number of male repeaters in a given grade in school year t+1 by the number of male pupils from the same cohort enrolled in the same grade in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.1.G5\",\"Repetition rate in Grade 5 of primary education, both sexes (%)\",\"Number of repeaters in a given grade in a given school year, expressed as a percentage of enrolment in that grade the previous school year. Divide the number of repeaters in a given grade in school year t+1 by the number of pupils from the same cohort enrolled in the same grade in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.1.G5.F\",\"Repetition rate in Grade 5 of primary education, female (%)\",\"Number of female repeaters in a given grade in a given school year, expressed as a percentage of female enrolment in that grade the previous school year. Divide the number of female repeaters in a given grade in school year t+1 by the number of female pupils from the same cohort enrolled in the same grade in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.1.G5.M\",\"Repetition rate in Grade 5 of primary education, male (%)\",\"Number of male repeaters in a given grade in a given school year, expressed as a percentage of male enrolment in that grade the previous school year. Divide the number of male repeaters in a given grade in school year t+1 by the number of male pupils from the same cohort enrolled in the same grade in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.1.G6\",\"Repetition rate in Grade 6 of primary education, both sexes (%)\",\"Number of repeaters in a given grade in a given school year, expressed as a percentage of enrolment in that grade the previous school year. Divide the number of repeaters in a given grade in school year t+1 by the number of pupils from the same cohort enrolled in the same grade in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.1.G6.F\",\"Repetition rate in Grade 6 of primary education, female (%)\",\"Number of female repeaters in a given grade in a given school year, expressed as a percentage of female enrolment in that grade the previous school year. Divide the number of female repeaters in a given grade in school year t+1 by the number of female pupils from the same cohort enrolled in the same grade in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.1.G6.M\",\"Repetition rate in Grade 6 of primary education, male (%)\",\"Number of male repeaters in a given grade in a given school year, expressed as a percentage of male enrolment in that grade the previous school year. Divide the number of male repeaters in a given grade in school year t+1 by the number of male pupils from the same cohort enrolled in the same grade in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.1.G7\",\"Repetition rate in Grade 7 of primary education, both sexes (%)\",\"Number of repeaters in a given grade in a given school year, expressed as a percentage of enrolment in that grade the previous school year. Divide the number of repeaters in a given grade in school year t+1 by the number of pupils from the same cohort enrolled in the same grade in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.1.G7.F\",\"Repetition rate in Grade 7 of primary education, female (%)\",\"Number of female repeaters in a given grade in a given school year, expressed as a percentage of female enrolment in that grade the previous school year. Divide the number of female repeaters in a given grade in school year t+1 by the number of female pupils from the same cohort enrolled in the same grade in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.1.G7.M\",\"Repetition rate in Grade 7 of primary education, male (%)\",\"Number of male repeaters in a given grade in a given school year, expressed as a percentage of male enrolment in that grade the previous school year. Divide the number of male repeaters in a given grade in school year t+1 by the number of male pupils from the same cohort enrolled in the same grade in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.1.M\",\"Repetition rate in primary education (all grades), male (%)\",\"Number of male repeaters in primary education in a given school year, expressed as a percentage of male enrolment in primary education in the previous school year. Divide the number of male repeaters in primary education in school year t+1 by the number of male pupils from the same cohort enrolled in primary education in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.2.GPV\",\"Repetition rate in lower secondary general education (all grades), both sexes (%)\",\"Number of repeaters in lower secondary education in a given school year, expressed as a percentage of enrolment in lower secondary education in the previous school year. Divide the number of repeaters in lower secondary education in school year t+1 by the number of pupils from the same cohort enrolled in lower secondary education in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.2.GPV.F\",\"Repetition rate in lower secondary general education (all grades), female (%)\",\"Number of female repeaters in lower secondary education in a given school year, expressed as a percentage of female enrolment in lower secondary education in the previous school year. Divide the number of female repeaters in lower secondary education in school year t+1 by the number of female pupils from the same cohort enrolled in lower secondary education in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.2.GPV.G1\",\"Repetition rate in Grade 1 of lower secondary general education, both sexes (%)\",\"Number of repeaters in a given grade in a given school year, expressed as a percentage of enrolment in that grade the previous school year. Divide the number of repeaters in a given grade in school year t+1 by the number of pupils from the same cohort enrolled in the same grade in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.2.GPV.G1.F\",\"Repetition rate in Grade 1 of lower secondary general education, female (%)\",\"Number of female repeaters in a given grade in a given school year, expressed as a percentage of female enrolment in that grade the previous school year. Divide the number of female repeaters in a given grade in school year t+1 by the number of female pupils from the same cohort enrolled in the same grade in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.2.GPV.G1.M\",\"Repetition rate in Grade 1 of lower secondary general education, male (%)\",\"Number of male repeaters in a given grade in a given school year, expressed as a percentage of male enrolment in that grade the previous school year. Divide the number of male repeaters in a given grade in school year t+1 by the number of male pupils from the same cohort enrolled in the same grade in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.2.GPV.G2\",\"Repetition rate in Grade 2 of lower secondary general education, both sexes (%)\",\"Number of repeaters in a given grade in a given school year, expressed as a percentage of enrolment in that grade the previous school year. Divide the number of repeaters in a given grade in school year t+1 by the number of pupils from the same cohort enrolled in the same grade in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.2.GPV.G2.F\",\"Repetition rate in Grade 2 of lower secondary general education, female (%)\",\"Number of female repeaters in a given grade in a given school year, expressed as a percentage of female enrolment in that grade the previous school year. Divide the number of female repeaters in a given grade in school year t+1 by the number of female pupils from the same cohort enrolled in the same grade in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.2.GPV.G2.M\",\"Repetition rate in Grade 2 of lower secondary general education, male (%)\",\"Number of male repeaters in a given grade in a given school year, expressed as a percentage of male enrolment in that grade the previous school year. Divide the number of male repeaters in a given grade in school year t+1 by the number of male pupils from the same cohort enrolled in the same grade in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.2.GPV.G3\",\"Repetition rate in Grade 3 of lower secondary general education, both sexes (%)\",\"Number of repeaters in a given grade in a given school year, expressed as a percentage of enrolment in that grade the previous school year. Divide the number of repeaters in a given grade in school year t+1 by the number of pupils from the same cohort enrolled in the same grade in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.2.GPV.G3.F\",\"Repetition rate in Grade 3 of lower secondary general education, female (%)\",\"Number of female repeaters in a given grade in a given school year, expressed as a percentage of female enrolment in that grade the previous school year. Divide the number of female repeaters in a given grade in school year t+1 by the number of female pupils from the same cohort enrolled in the same grade in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.2.GPV.G3.M\",\"Repetition rate in Grade 3 of lower secondary general education, male (%)\",\"Number of male repeaters in a given grade in a given school year, expressed as a percentage of male enrolment in that grade the previous school year. Divide the number of male repeaters in a given grade in school year t+1 by the number of male pupils from the same cohort enrolled in the same grade in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.2.GPV.G4\",\"Repetition rate in Grade 4 of lower secondary general education, both sexes (%)\",\"Number of repeaters in a given grade in a given school year, expressed as a percentage of enrolment in that grade the previous school year. Divide the number of repeaters in a given grade in school year t+1 by the number of pupils from the same cohort enrolled in the same grade in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.2.GPV.G4.F\",\"Repetition rate in Grade 4 of lower secondary general education, female (%)\",\"Number of female repeaters in a given grade in a given school year, expressed as a percentage of female enrolment in that grade the previous school year. Divide the number of female repeaters in a given grade in school year t+1 by the number of female pupils from the same cohort enrolled in the same grade in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.2.GPV.G4.M\",\"Repetition rate in Grade 4 of lower secondary general education, male (%)\",\"Number of male repeaters in a given grade in a given school year, expressed as a percentage of male enrolment in that grade the previous school year. Divide the number of male repeaters in a given grade in school year t+1 by the number of male pupils from the same cohort enrolled in the same grade in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.2.GPV.G5\",\"Repetition rate in Grade 5 of lower secondary general education, both sexes (%)\",\"Number of repeaters in a given grade in a given school year, expressed as a percentage of enrolment in that grade the previous school year. Divide the number of repeaters in a given grade in school year t+1 by the number of pupils from the same cohort enrolled in the same grade in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.2.GPV.G5.F\",\"Repetition rate in Grade 5 of lower secondary general education, female (%)\",\"Number of female repeaters in a given grade in a given school year, expressed as a percentage of female enrolment in that grade the previous school year. Divide the number of female repeaters in a given grade in school year t+1 by the number of female pupils from the same cohort enrolled in the same grade in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.2.GPV.G5.M\",\"Repetition rate in Grade 5 of lower secondary general education, male (%)\",\"Number of male repeaters in a given grade in a given school year, expressed as a percentage of male enrolment in that grade the previous school year. Divide the number of male repeaters in a given grade in school year t+1 by the number of male pupils from the same cohort enrolled in the same grade in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.REPR.2.GPV.M\",\"Repetition rate in lower secondary general education (all grades), male (%)\",\"Number of male repeaters in lower secondary education in a given school year, expressed as a percentage of male enrolment in lower secondary education in the previous school year. Divide the number of male repeaters in lower secondary education in school year t+1 by the number of male pupils from the same cohort enrolled in lower secondary education in the previous school year t.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFSPPT.1\",\"Rate of out-of-school children of primary school age in pre-primary education, both sexes (%)\",\"Number of children of official primary school age who are enrolled in pre-primary education, expressed as a percentage of the population of official primary school age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFSPPT.1.F\",\"Rate of out-of-school children of primary school age in pre-primary education, female (%)\",\"Number of female children of official primary school age who are enrolled in pre-primary education, expressed as a percentage of the female population of official primary school age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFSPPT.1.M\",\"Rate of out-of-school children of primary school age in pre-primary education, male (%)\",\"Number of male children of official primary school age who are enrolled in pre-primary education, expressed as a percentage of the male population of official primary school age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.1\",\"Rate of out-of-school children of primary school age, both sexes (%)\",\"Number of children of official primary school age who are not enrolled in primary or secondary school, expressed as a percentage of the population of official primary school age. Children enrolled in pre-primary education are excluded and considered out of school.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.1.F\",\"Rate of out-of-school children of primary school age, female (%)\",\"Number of females of official primary school age who are not enrolled in primary or secondary school, expressed as a percentage of the female population of official primary school age. Children enrolled in pre-primary education are excluded and considered out of school.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.1.M\",\"Rate of out-of-school children of primary school age, male (%)\",\"Number of males of official primary school age who are not enrolled in primary or secondary school, expressed as a percentage of the male population of official primary school age. Children enrolled in pre-primary education are excluded and considered out of school.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.2\",\"Rate of out-of-school adolescents of lower secondary school age, both sexes (%)\",\"Number of adolescents of official lower secondary school age who are not enrolled in lower secondary school expressed as a percentage of the population of official lower secondary school age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.2.F\",\"Rate of out-of-school adolescents of lower secondary school age, female (%)\",\"Number of females of official lower secondary school age who are not enrolled in lower secondary school expressed as a percentage of the female population of official lower secondary school age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.2.M\",\"Rate of out-of-school adolescents of lower secondary school age, male (%)\",\"Number of males of official lower secondary school age who are not enrolled in lower secondary school expressed as a percentage of the male population of official lower secondary school age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.1\",\"UIS: Rate of out-of-school children of primary school age, both sexes (household survey data) (%)\",\"Number of children of official primary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official primary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.1.F\",\"UIS: Rate of out-of-school children of primary school age, female (household survey data) (%)\",\"Number of children of official primary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official primary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.1.M\",\"UIS: Rate of out-of-school children of primary school age, male (household survey data) (%)\",\"Number of children of official primary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official primary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.1.Q1\",\"UIS: Rate of out-of-school children of primary school age, poorest quintile, both sexes (household survey data) (%)\",\"Number of children of official primary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official primary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.1.Q1.F\",\"UIS: Rate of out-of-school children of primary school age, poorest quintile, female (household survey data) (%)\",\"Number of children of official primary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official primary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.1.Q1.M\",\"UIS: Rate of out-of-school children of primary school age, poorest quintile, male (household survey data) (%)\",\"Number of children of official primary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official primary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.1.Q2\",\"UIS: Rate of out-of-school children of primary school age, second quintile, both sexes (household survey data) (%)\",\"Number of children of official primary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official primary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.1.Q2.F\",\"UIS: Rate of out-of-school children of primary school age, second quintile, female (household survey data) (%)\",\"Number of children of official primary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official primary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.1.Q2.M\",\"UIS: Rate of out-of-school children of primary school age, second quintile, male (household survey data) (%)\",\"Number of children of official primary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official primary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.1.Q3\",\"UIS: Rate of out-of-school children of primary school age, middle quintile, both sexes (household survey data) (%)\",\"Number of children of official primary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official primary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.1.Q3.F\",\"UIS: Rate of out-of-school children of primary school age, middle quintile, female (household survey data) (%)\",\"Number of children of official primary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official primary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.1.Q3.M\",\"UIS: Rate of out-of-school children of primary school age, middle quintile, male (household survey data) (%)\",\"Number of children of official primary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official primary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.1.Q4\",\"UIS: Rate of out-of-school children of primary school age, fourth quintile, both sexes (household survey data) (%)\",\"Number of children of official primary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official primary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.1.Q4.F\",\"UIS: Rate of out-of-school children of primary school age, fourth quintile, female (household survey data) (%)\",\"Number of children of official primary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official primary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.1.Q4.M\",\"UIS: Rate of out-of-school children of primary school age, fourth quintile, male (household survey data) (%)\",\"Number of children of official primary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official primary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.1.Q5\",\"UIS: Rate of out-of-school children of primary school age, richest quintile, both sexes (household survey data) (%)\",\"Number of children of official primary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official primary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.1.Q5.F\",\"UIS: Rate of out-of-school children of primary school age, richest quintile, female (household survey data) (%)\",\"Number of children of official primary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official primary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.1.Q5.M\",\"UIS: Rate of out-of-school children of primary school age, richest quintile, male (household survey data) (%)\",\"Number of children of official primary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official primary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.1.RUR\",\"UIS: Rate of out-of-school children of primary school age, rural, both sexes (household survey data) (%)\",\"Number of children of official primary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official primary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.1.RUR.F\",\"UIS: Rate of out-of-school children of primary school age, rural, female (household survey data) (%)\",\"Number of children of official primary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official primary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.1.RUR.M\",\"UIS: Rate of out-of-school children of primary school age, rural, male (household survey data) (%)\",\"Number of children of official primary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official primary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.1.URB\",\"UIS: Rate of out-of-school children of primary school age, urban, both sexes (household survey data) (%)\",\"Number of children of official primary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official primary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.1.URB.F\",\"UIS: Rate of out-of-school children of primary school age, urban, female (household survey data) (%)\",\"Number of children of official primary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official primary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.1.URB.M\",\"UIS: Rate of out-of-school children of primary school age, urban, male (household survey data) (%)\",\"Number of children of official primary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official primary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.2\",\"UIS: Rate of out-of-school adolescents of lower secondary school age, both sexes (household survey data) (%)\",\"Number of children of official lower secondary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official lower secondary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of-school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.2.F\",\"UIS: Rate of out-of-school adolescents of lower secondary school age, female (household survey data) (%)\",\"Number of children of official lower secondary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official lower secondary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of-school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.2.M\",\"UIS: Rate of out-of-school adolescents of lower secondary school age, male (household survey data) (%)\",\"Number of children of official lower secondary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official lower secondary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of-school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.2.Q1\",\"UIS: Rate of out-of-school adolescents of lower secondary school age, poorest quintile, both sexes (household survey data) (%)\",\"Number of children of official lower secondary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official lower secondary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of-school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.2.Q1.F\",\"UIS: Rate of out-of-school adolescents of lower secondary school age, poorest quintile, female (household survey data) (%)\",\"Number of children of official lower secondary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official lower secondary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of-school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.2.Q1.M\",\"UIS: Rate of out-of-school adolescents of lower secondary school age, poorest quintile, male (household survey data) (%)\",\"Number of children of official lower secondary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official lower secondary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of-school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.2.Q2\",\"UIS: Rate of out-of-school adolescents of lower secondary school age, second quintile, both sexes (household survey data) (%)\",\"Number of children of official lower secondary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official lower secondary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of-school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.2.Q2.F\",\"UIS: Rate of out-of-school adolescents of lower secondary school age, second quintile, female (household survey data) (%)\",\"Number of children of official lower secondary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official lower secondary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of-school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.2.Q2.M\",\"UIS: Rate of out-of-school adolescents of lower secondary school age, second quintile, male (household survey data) (%)\",\"Number of children of official lower secondary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official lower secondary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of-school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.2.Q3\",\"UIS: Rate of out-of-school adolescents of lower secondary school age, middle quintile, both sexes (household survey data) (%)\",\"Number of children of official lower secondary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official lower secondary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of-school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.2.Q3.F\",\"UIS: Rate of out-of-school adolescents of lower secondary school age, middle quintile, female (household survey data) (%)\",\"Number of children of official lower secondary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official lower secondary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of-school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.2.Q3.M\",\"UIS: Rate of out-of-school adolescents of lower secondary school age, middle quintile, male (household survey data) (%)\",\"Number of children of official lower secondary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official lower secondary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of-school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.2.Q4\",\"UIS: Rate of out-of-school adolescents of lower secondary school age, fourth quintile, both sexes (household survey data) (%)\",\"Number of children of official lower secondary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official lower secondary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of-school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.2.Q4.F\",\"UIS: Rate of out-of-school adolescents of lower secondary school age, fourth quintile, female (household survey data) (%)\",\"Number of children of official lower secondary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official lower secondary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of-school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.2.Q4.M\",\"UIS: Rate of out-of-school adolescents of lower secondary school age, fourth quintile, male (household survey data) (%)\",\"Number of children of official lower secondary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official lower secondary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of-school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.2.Q5\",\"UIS: Rate of out-of-school adolescents of lower secondary school age, richest quintile, both sexes (household survey data) (%)\",\"Number of children of official lower secondary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official lower secondary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of-school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.2.Q5.F\",\"UIS: Rate of out-of-school adolescents of lower secondary school age, richest quintile, female (household survey data) (%)\",\"Number of children of official lower secondary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official lower secondary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of-school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.2.Q5.M\",\"UIS: Rate of out-of-school adolescents of lower secondary school age, richest quintile, male (household survey data) (%)\",\"Number of children of official lower secondary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official lower secondary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of-school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.2.RUR\",\"UIS: Rate of out-of-school adolescents of lower secondary school age, rural, both sexes (household survey data) (%)\",\"Number of children of official lower secondary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official lower secondary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of-school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.2.RUR.F\",\"UIS: Rate of out-of-school adolescents of lower secondary school age, rural, female (household survey data) (%)\",\"Number of children of official lower secondary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official lower secondary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of-school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.2.RUR.M\",\"UIS: Rate of out-of-school adolescents of lower secondary school age, rural, male (household survey data) (%)\",\"Number of children of official lower secondary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official lower secondary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of-school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.2.URB\",\"UIS: Rate of out-of-school adolescents of lower secondary school age, urban, both sexes (household survey data) (%)\",\"Number of children of official lower secondary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official lower secondary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of-school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.2.URB.F\",\"UIS: Rate of out-of-school adolescents of lower secondary school age, urban, female (household survey data) (%)\",\"Number of children of official lower secondary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official lower secondary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of-school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.ROFST.H.2.URB.M\",\"UIS: Rate of out-of-school adolescents of lower secondary school age, urban, male (household survey data) (%)\",\"Number of children of official lower secondary school age who did not attend primary or secondary school at any time during the reference academic year, expressed as a percentage of the number of official lower secondary school age children in the household survey sample. Children attending pre-primary or non-formal education are considered out of school. The UNESCO Institute for Statistics (UIS) releases estimates of out-of-school children calculated from both administrative and household survey sources (Demographic and Health Surveys and Multiple Indicator Cluster Surveys). Administrative records and household surveys are two data sources which differ in fundamental ways: who collects the data, as well as how, when and for what purpose. As a result, the out-of-school children estimates calculated from one data source may not match those based on other data sources. For more information, consult the UIS website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SAP.1.G1\",\"Population of the official entrance age to primary education, both sexes (number)\",\"Population of the age-group theoretically corresponding to the official entrance age to primary education. The official entrance age is the age at which students would enter a given programme or level of education assuming they start at the official entrance age for the lowest level of education, study full-time throughout and progressed through the system without repeating or skipping a grade. The theoretical entrance age to a given programme or level is typically, but not always, the most common entrance age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SAP.1.G1.F\",\"Population of the official entrance age to primary education, female (number)\",\"Female population of the age-group theoretically corresponding to the official entrance age to primary education. The official entrance age is the age at which students would enter a given programme or level of education assuming they start at the official entrance age for the lowest level of education, study full-time throughout and progressed through the system without repeating or skipping a grade. The theoretical entrance age to a given programme or level is typically, but not always, the most common entrance age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SAP.1.G1.M\",\"Population of the official entrance age to primary education, male (number)\",\"Male population of the age-group theoretically corresponding to the official entrance age to primary education. The official entrance age is the age at which students would enter a given programme or level of education assuming they start at the official entrance age for the lowest level of education, study full-time throughout and progressed through the system without repeating or skipping a grade. The theoretical entrance age to a given programme or level is typically, but not always, the most common entrance age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SAP.23.GPV.G1\",\"Population of the official entrance age to secondary general education, both sexes (number)\",\"Population of the age-group theoretically corresponding to secondary general education as indicated by theoretical entrance age and duration.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SAP.23.GPV.G1.F\",\"Population of the official entrance age to secondary general education, female (number)\",\"Female population of the age-group theoretically corresponding to secondary general education as indicated by theoretical entrance age and duration.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SAP.23.GPV.G1.M\",\"Population of the official entrance age to secondary general education, male (number)\",\"Male population of the age-group theoretically corresponding to secondary general education as indicated by theoretical entrance age and duration.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SAP.4\",\"Population of the official age for post-secondary non-tertiary education, both sexes (number)\",\"Population of the age-group theoretically corresponding to post-secondary non-tertiary education as indicated by theoretical entrance age and duration.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SAP.4.F\",\"Population of the official age for post-secondary non-tertiary education, female (number)\",\"Female population of the age-group theoretically corresponding to post-secondary non-tertiary education as indicated by theoretical entrance age and duration.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SAP.4.M\",\"Population of the official age for post-secondary non-tertiary education, male (number)\",\"Male population of the age-group theoretically corresponding to post-secondary non-tertiary education as indicated by theoretical entrance age and duration.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SAP.CE\",\"Population of compulsory school age, both sexes (number)\",\"Population of children within the age span that children are legally obliged to attend school.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SAP.CE.F\",\"Population of compulsory school age, female (number)\",\"Population of female children within the age span that children are legally obliged to attend school.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SAP.CE.M\",\"Population of compulsory school age, male (number)\",\"Population of male children within the age span that children are legally obliged to attend school.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SLE.0\",\"School life expectancy, pre-primary, both sexes (years)\",\"Number of years a person of school entrance age can expect to spend within the specified level of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SLE.0.F\",\"School life expectancy, pre-primary, female (years)\",\"Number of years a person of school entrance age can expect to spend within the specified level of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SLE.0.GPI\",\"School life expectancy, pre-primary, gender parity index (GPI)\",\"Ratio of female school life expectancy to the male school life expectancy. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SLE.0.M\",\"School life expectancy, pre-primary, male (years)\",\"Number of years a person of school entrance age can expect to spend within the specified level of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SLE.1\",\"School life expectancy, primary, both sexes (years)\",\"Number of years a person of school entrance age can expect to spend within the specified level of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SLE.1.F\",\"School life expectancy, primary, female (years)\",\"Number of years a person of school entrance age can expect to spend within the specified level of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SLE.1.GPI\",\"School life expectancy, primary, gender parity index (GPI)\",\"Ratio of female school life expectancy to the male school life expectancy. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SLE.1.M\",\"School life expectancy, primary, male (years)\",\"Number of years a person of school entrance age can expect to spend within the specified level of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SLE.12\",\"School life expectancy, primary and lower secondary, both sexes (years)\",\"Number of years a person of school entrance age can expect to spend within the specified levels of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SLE.12.F\",\"School life expectancy, primary and lower secondary, female (years)\",\"Number of years a person of school entrance age can expect to spend within the specified levels of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SLE.12.M\",\"School life expectancy, primary and lower secondary, male (years)\",\"Number of years a person of school entrance age can expect to spend within the specified levels of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SLE.123\",\"School life expectancy, primary and secondary, both sexes (years)\",\"Number of years a person of school entrance age can expect to spend within the specified level of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SLE.123.F\",\"School life expectancy, primary and secondary, female (years)\",\"Number of years a person of school entrance age can expect to spend within the specified level of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SLE.123.GPI\",\"School life expectancy, primary and secondary, gender parity index (GPI)\",\"Ratio of female school life expectancy to the male school life expectancy. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SLE.123.M\",\"School life expectancy, primary and secondary, male (years)\",\"Number of years a person of school entrance age can expect to spend within the specified level of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SLE.1t6.GPI\",\"School life expectancy, primary to tertiary, gender parity index (GPI)\",\"Ratio of female school life expectancy to the male school life expectancy. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SLE.23\",\"School life expectancy, secondary, both sexes (years)\",\"Number of years a person of school entrance age can expect to spend within the specified level of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SLE.23.F\",\"School life expectancy, secondary, female (years)\",\"Number of years a person of school entrance age can expect to spend within the specified level of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SLE.23.GPI\",\"School life expectancy, secondary, gender parity index (GPI)\",\"Ratio of female school life expectancy to the male school life expectancy. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SLE.23.M\",\"School life expectancy, secondary, male (years)\",\"Number of years a person of school entrance age can expect to spend within the specified level of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SLE.4\",\"School life expectancy, post-secondary non-tertiary, both sexes (years)\",\"Number of years a person of school entrance age can expect to spend within the specified level of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SLE.4.F\",\"School life expectancy, post-secondary non-tertiary, female (years)\",\"Number of years a person of school entrance age can expect to spend within the specified level of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SLE.4.GPI\",\"School life expectancy, post-secondary non-tertiary, gender parity index (GPI)\",\"Ratio of female school life expectancy to the male school life expectancy. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SLE.4.M\",\"School life expectancy, post-secondary non-tertiary, male (years)\",\"Number of years a person of school entrance age can expect to spend within the specified level of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SLE.56\",\"School life expectancy, tertiary, both sexes (years)\",\"Number of years a person of school entrance age can expect to spend within the specified level of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SLE.56.F\",\"School life expectancy, tertiary, female (years)\",\"Number of years a person of school entrance age can expect to spend within the specified level of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SLE.56.GPI\",\"School life expectancy, tertiary, gender parity index (GPI)\",\"Ratio of female school life expectancy to the male school life expectancy. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SLE.56.M\",\"School life expectancy, tertiary, male (years)\",\"Number of years a person of school entrance age can expect to spend within the specified level of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SLEN.12.F\",\"School life expectancy, primary and lower secondary (excluding repetition), female (years)\",\"Number of years of schooling that a female child of a certain age can expect to receive in the future, excluding years spent repeating grades. The indicator reflects the overall level of development of an education system in terms of the average number of years of schooling without repetition that can be offered to the school-age population, including those who never enter school. It is calculated as the sum of the age specific enrolment rates for the given level of education, plus the number of pupils of unknown age in the given level of education divided by the school-age population for that level of education, and multiplied by the duration of that level of education, minus the number of repeaters in a given level of education divided by the school-age population for that level, multiplied by the duration of that level of education.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SLEN.12.GPI\",\"School life expectancy, primary and lower secondary (excluding repetition), gender parity index (GPI)\",\"Ratio of female school life expectancy net of repetition to the male school life expectancy net of repetition. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SLEN.12.M\",\"School life expectancy, primary and lower secondary (excluding repetition), male (years)\",\"Number of years of schooling that a male child of a certain age can expect to receive in the future, excluding years spent repeating grades. The indicator reflects the overall level of development of an education system in terms of the average number of years of schooling without repetition that can be offered to the school-age population, including those who never enter school. It is calculated as the sum of the age specific enrolment rates for the given level of education, plus the number of pupils of unknown age in the given level of education divided by the school-age population for that level of education, and multiplied by the duration of that level of education, minus the number of repeaters in a given level of education divided by the school-age population for that level, multiplied by the duration of that level of education.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SLEN.12.T\",\"School life expectancy, primary and lower secondary (excluding repetition), both sexes (years)\",\"Number of years of schooling that a child of a certain age can expect to receive in the future, excluding years spent repeating grades. The indicator reflects the overall level of development of an education system in terms of the average number of years of schooling without repetition that can be offered to the school-age population, including those who never enter school. It is calculated as the sum of the age specific enrolment rates for the given level of education, plus the number of pupils of unknown age in the given level of education divided by the school-age population for that level of education, and multiplied by the duration of that level of education, minus the number of repeaters in a given level of education divided by the school-age population for that level, multiplied by the duration of that level of education.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SR.1.G4\",\"Survival rate to Grade 4 of primary education, both sexes (%)\",\"Percentage of a cohort of students enrolled in the first grade of primary education in a given school year who are expected to reach grade 4, regardless of repetition. Divide the total number of students belonging to a school-cohort who reached each successive grade of primary education by the number of students in the school-cohort i.e. those originally enrolled in the first grade of primary education, and multiply the result by 100. The survival rate is calculated on the basis of the reconstructed cohort method, which uses data on enrolment and repeaters for two consecutive years.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SR.1.G4.F\",\"Survival rate to Grade 4 of primary education, female (%)\",\"Percentage of a cohort of female students enrolled in the first grade of primary education in a given school year who are expected to reach grade 4, regardless of repetition. Divide the total number of students belonging to a school-cohort who reached each successive grade of primary education by the number of students in the school-cohort i.e. those originally enrolled in the first grade of primary education, and multiply the result by 100. The survival rate is calculated on the basis of the reconstructed cohort method, which uses data on enrolment and repeaters for two consecutive years.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SR.1.G4.GPI\",\"Survival rate to Grade 4 of primary education, gender parity index (GPI)\",\"Ratio of female survival rate to grade 4 to the male survival rate to grade 4. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SR.1.G4.M\",\"Survival rate to Grade 4 of primary education, male (%)\",\"Percentage of a cohort of male students enrolled in the first grade of primary education in a given school year who are expected to reach grade 4, regardless of repetition. Divide the total number of students belonging to a school-cohort who reached each successive grade of primary education by the number of students in the school-cohort i.e. those originally enrolled in the first grade of primary education, and multiply the result by 100. The survival rate is calculated on the basis of the reconstructed cohort method, which uses data on enrolment and repeaters for two consecutive years.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SR.1.G5.GPI\",\"Survival rate to Grade 5 of primary education, gender parity index (GPI)\",\"Ratio of female survival rate to grade 5 to the male survival rate to grade 5. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SR.1.GLAST.GPI\",\"Survival rate to the last grade of primary education, gender parity index (GPI)\",\"Ratio of female survival rate to the last grade of primary education to the male survival rate to the last grade of primary education. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SR.2.GPV.GLAST.CP.F\",\"Survival rate to the last grade of lower secondary general education, female (%)\",\"Percentage of a cohort of female students enrolled in the first grade of lower secondary education in a given school year who are expected to reach the last grade of lower secondary education, regardless of repetition. Divide the total number of students belonging to a school-cohort who reached each successive grade of lower secondary education by the number of students in the school-cohort i.e. those originally enrolled in the first grade of lower secondary education, and multiply the result by 100. The survival rate is calculated on the basis of the reconstructed cohort method, which uses data on enrolment and repeaters for two consecutive years.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SR.2.GPV.GLAST.CP.M\",\"Survival rate to the last grade of lower secondary general education, male (%)\",\"Percentage of a cohort of male students enrolled in the first grade of lower secondary education in a given school year who are expected to reach the last grade of lower secondary education, regardless of repetition. Divide the total number of students belonging to a school-cohort who reached each successive grade of lower secondary education by the number of students in the school-cohort i.e. those originally enrolled in the first grade of lower secondary education, and multiply the result by 100. The survival rate is calculated on the basis of the reconstructed cohort method, which uses data on enrolment and repeaters for two consecutive years.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SR.2.GPV.GLAST.CP.T\",\"Survival rate to the last grade of lower secondary general education, both sexes (%)\",\"Percentage of a cohort of students enrolled in the first grade of lower secondary education in a given school year who are expected to reach the last grade of lower secondary education, regardless of repetition. Divide the total number of students belonging to a school-cohort who reached each successive grade of lower secondary education by the number of students in the school-cohort i.e. those originally enrolled in the first grade of lower secondary education, and multiply the result by 100. The survival rate is calculated on the basis of the reconstructed cohort method, which uses data on enrolment and repeaters for two consecutive years.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.SR.2.GPV.GLAST.GPI\",\"Survival rate to the last grade of lower secondary general education, gender parity index (GPI)\",\"Ratio of female survival rate to the last grade of lower secondary education to the male survival rate to the last grade of lower secondary education. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.T.2\",\"Teachers in lower secondary education, both sexes (number)\",\"Total number of teachers in public and private lower secondary education institutions (ISCED 2). Teachers are persons employed full time or part time in an official capacity to guide and direct the learning experience of pupils and students, irrespective of their qualifications or the delivery mechanism, i.e. face-to-face and/or at a distance. This definition excludes educational personnel who have no active teaching duties (e.g. headmasters, headmistresses or principals who do not teach) and persons who work occasionally or in a voluntary capacity in educational institutions.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.T.2.F\",\"Teachers in lower secondary education, female (number)\",\"Total number of female teachers in public and private lower secondary education institutions (ISCED 2). Teachers are persons employed full time or part time in an official capacity to guide and direct the learning experience of pupils and students, irrespective of their qualifications or the delivery mechanism, i.e. face-to-face and/or at a distance. This definition excludes educational personnel who have no active teaching duties (e.g. headmasters, headmistresses or principals who do not teach) and persons who work occasionally or in a voluntary capacity in educational institutions.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.T.23.GPV\",\"Teachers in secondary general education, both sexes (number)\",\"Total number of teachers in general programmes in public and private secondary education institutions (ISCED 2 and 3). Teachers are persons employed full time or part time in an official capacity to guide and direct the learning experience of pupils and students, irrespective of their qualifications or the delivery mechanism, i.e. face-to-face and/or at a distance. This definition excludes educational personnel who have no active teaching duties (e.g. headmasters, headmistresses or principals who do not teach) and persons who work occasionally or in a voluntary capacity in educational institutions.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.T.23.GPV.F\",\"Teachers in secondary general education, female (number)\",\"Total number of female teachers in general programmes in public and private secondary education institutions (ISCED 2 and 3). Teachers are persons employed full time or part time in an official capacity to guide and direct the learning experience of pupils and students, irrespective of their qualifications or the delivery mechanism, i.e. face-to-face and/or at a distance. This definition excludes educational personnel who have no active teaching duties (e.g. headmasters, headmistresses or principals who do not teach) and persons who work occasionally or in a voluntary capacity in educational institutions.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.T.23.V\",\"Teachers in secondary vocational education, both sexes (number)\",\"Total number of teachers in vocational programmes in public and private secondary education institutions (ISCED 2 and 3). Teachers are persons employed full time or part time in an official capacity to guide and direct the learning experience of pupils and students, irrespective of their qualifications or the delivery mechanism, i.e. face-to-face and/or at a distance. This definition excludes educational personnel who have no active teaching duties (e.g. headmasters, headmistresses or principals who do not teach) and persons who work occasionally or in a voluntary capacity in educational institutions.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.T.23.V.F\",\"Teachers in secondary vocational education, female (number)\",\"Total number of female teachers in vocational programmes in public and private secondary education institutions (ISCED 2 and 3). Teachers are persons employed full time or part time in an official capacity to guide and direct the learning experience of pupils and students, irrespective of their qualifications or the delivery mechanism, i.e. face-to-face and/or at a distance. This definition excludes educational personnel who have no active teaching duties (e.g. headmasters, headmistresses or principals who do not teach) and persons who work occasionally or in a voluntary capacity in educational institutions.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.T.3\",\"Teachers in upper secondary education, both sexes (number)\",\"Total number of teachers in public and private upper secondary education institutions (ISCED 3). Teachers are persons employed full time or part time in an official capacity to guide and direct the learning experience of pupils and students, irrespective of their qualifications or the delivery mechanism, i.e. face-to-face and/or at a distance. This definition excludes educational personnel who have no active teaching duties (e.g. headmasters, headmistresses or principals who do not teach) and persons who work occasionally or in a voluntary capacity in educational institutions.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.T.3.F\",\"Teachers in upper secondary education, female (number)\",\"Total number of female teachers in public and private upper secondary education institutions (ISCED 3). Teachers are persons employed full time or part time in an official capacity to guide and direct the learning experience of pupils and students, irrespective of their qualifications or the delivery mechanism, i.e. face-to-face and/or at a distance. This definition excludes educational personnel who have no active teaching duties (e.g. headmasters, headmistresses or principals who do not teach) and persons who work occasionally or in a voluntary capacity in educational institutions.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.T.4\",\"Teachers in post-secondary non-tertiary education, both sexes (number)\",\"Total number of teachers in public and private post-secondary non-tertiary education institutions (ISCED 4). Teachers are persons employed full time or part time in an official capacity to guide and direct the learning experience of pupils and students, irrespective of their qualifications or the delivery mechanism, i.e. face-to-face and/or at a distance. This definition excludes educational personnel who have no active teaching duties (e.g. headmasters, headmistresses or principals who do not teach) and persons who work occasionally or in a voluntary capacity in educational institutions.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.T.4.F\",\"Teachers in post-secondary non-tertiary education, female (number)\",\"Total number of female teachers in public and private post-secondary non-tertiary education institutions (ISCED 4). Teachers are persons employed full time or part time in an official capacity to guide and direct the learning experience of pupils and students, irrespective of their qualifications or the delivery mechanism, i.e. face-to-face and/or at a distance. This definition excludes educational personnel who have no active teaching duties (e.g. headmasters, headmistresses or principals who do not teach) and persons who work occasionally or in a voluntary capacity in educational institutions.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.T.5.B\",\"Teachers in tertiary education ISCED 5 programmes, both sexes (number)\",\"Total number of teachers in public and private short-cycle tertiary education institutions (ISCED 5). Teachers are persons employed full time or part time in an official capacity to guide and direct the learning experience of pupils and students, irrespective of their qualifications or the delivery mechanism, i.e. face-to-face and/or at a distance. This definition excludes educational personnel who have no active teaching duties (e.g. headmasters, headmistresses or principals who do not teach) and persons who work occasionally or in a voluntary capacity in educational institutions.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.T.5.B.F\",\"Teachers in tertiary education ISCED 5 programmes, female (number)\",\"Total number of female teachers in public and private short-cycle tertiary education institutions (ISCED 5). Teachers are persons employed full time or part time in an official capacity to guide and direct the learning experience of pupils and students, irrespective of their qualifications or the delivery mechanism, i.e. face-to-face and/or at a distance. This definition excludes educational personnel who have no active teaching duties (e.g. headmasters, headmistresses or principals who do not teach) and persons who work occasionally or in a voluntary capacity in educational institutions.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.TE_100000.56\",\"Enrolment in tertiary education per 100,000 inhabitants, both sexes\",\"Number of students enrolled in tertiary education in a given academic year per 100,000 inhabitants. It is calculated by dividing the total number of students enrolled in tertiary education in a given academic year by the country’s population and multiplying the result by 100,000. This indicator shows the general level of participation in tertiary education by indicating the proportion (or density) of students within a country’s population.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.TE_100000.56.F\",\"Enrolment in tertiary education per 100,000 inhabitants, female\",\"Number of female students enrolled in tertiary education in a given academic year per 100,000 inhabitants. It is calculated by dividing the total number of students enrolled in tertiary education in a given academic year by the country’s population and multiplying the result by 100,000. This indicator shows the general level of participation in tertiary education by indicating the proportion (or density) of students within a country’s population.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.TE_100000.56.M\",\"Enrolment in tertiary education per 100,000 inhabitants, male\",\"Number of male students enrolled in tertiary education in a given academic year per 100,000 inhabitants. It is calculated by dividing the total number of students enrolled in tertiary education in a given academic year by the country’s population and multiplying the result by 100,000. This indicator shows the general level of participation in tertiary education by indicating the proportion (or density) of students within a country’s population.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.TEP.5.B\",\"Percentage of all students in tertiary education enrolled in ISCED 5, both sexes (%)\",\"Total enrolment in short-cycle tertiary programmes (ISCED 5) as a percentage of total enrolments in tertiary education (ISCED 5 to 8).\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.TEP.5.B.F\",\"Percentage of female students in tertiary education enrolled in ISCED 5\",\"Total female enrolment in short-cycle tertiary programmes (ISCED 5) as a percentage of total female enrolments in tertiary education (ISCED 5 to 8).\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.TEP.5.B.M\",\"Percentage of male students in tertiary education enrolled in ISCED 5\",\"Total male enrolment in short-cycle tertiary programmes (ISCED 5) as a percentage of total male enrolments in tertiary education (ISCED 5 to 8).\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.TEP.6\",\"Percentage of all students in tertiary education enrolled in ISCED 6, both sexes (%)\\r\\n\",\"Total enrolment in bachelors or equivalent programmes (ISCED 6) as a percentage of total enrolments in tertiary education (ISCED 5 to 8).\\r\\n\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.TEP.6.F\",\"Percentage of female students in tertiary education enrolled in ISCED 6\\r\\n\",\"Total female enrolment in bachelors or equivalent programmes (ISCED 6) as a percentage of total enrolments in tertiary education (ISCED 5 to 8).\\r\\n\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.TEP.6.M\",\"Percentage of male students in tertiary education enrolled in ISCED 6\\r\\n\",\"Total male enrolment in bachelors or equivalent programmes (ISCED 6) as a percentage of total enrolments in tertiary education (ISCED 5 to 8).\\r\\n\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.TEP.7\",\"Percentage of all students in tertiary education enrolled in ISCED 7, both sexes (%)\",\"Total enrolment in masters or equivalent programmes (ISCED 7) as a percentage of total enrolments in tertiary education (ISCED 5 to 8).\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.TEP.7.F\",\"Percentage of female students in tertiary education enrolled in ISCED 7\",\"Total female enrolment in masters or equivalent programmes (ISCED 7) as a percentage of total enrolments in tertiary education (ISCED 5 to 8).\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.TEP.7.M\",\"Percentage of male students in tertiary education enrolled in ISCED 7\",\"Total male enrolment in masters or equivalent programmes (ISCED 7) as a percentage of total enrolments in tertiary education (ISCED 5 to 8).\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.TEP.8\",\"Percentage of all students in tertiary education enrolled in ISCED 8, both sexes (%)\",\"Total enrolment in doctoral or equivalent programmes (ISCED 8) as a percentage of total enrolments in tertiary education (ISCED 5 to 8).\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.TEP.8.F\",\"Percentage of female students in tertiary education enrolled in ISCED 8\",\"Total female enrolment in doctoral or equivalent programmes (ISCED 8) as a percentage of total female enrolments in tertiary education (ISCED 5 to 8).\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.TEP.8.M\",\"Percentage of male students in tertiary education enrolled in ISCED 8\",\"Total male enrolment in doctoral or equivalent programmes (ISCED 8) as a percentage of total male enrolments in tertiary education (ISCED 5 to 8).\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.thAge.0\",\"Official entrance age to pre-primary education (years)\",\"Age at which students would enter pre-primary education.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.thAge.3.A.GPV\",\"Official entrance age to upper secondary education (years)\",\"Age at which students would enter upper secondary education, assuming they had started at the official entrance age for the lowest level of education, had studied full-time throughout and had progressed through the system without repeating or skipping a grade.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.thAge.4.A.GPV\",\"Official entrance age to post-secondary non-tertiary education (years)\",\"Age at which students would enter post-secondary education, assuming they had started at the official entrance age for the lowest level of education, had studied full-time throughout and had progressed through the system without repeating or skipping a grade.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.thDur.0\",\"Theoretical duration of pre-primary education (years)\",\"Number of grades (years) in pre-primary education.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.thDur.4.A.GPV\",\"Theoretical duration of post-secondary non-tertiary education (years)\",\"Number of grades (years) in post-secondary education.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.TRANRA.23.GPV.GPI\",\"Effective transition rate from primary to lower secondary general education, gender parity index (GPI)\\r\\n\",\"The ratio of the female transition rate to the male value for the same indicator. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.\\r\\n\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.TRTP.0\",\"Percentage of teachers in pre-primary education who are trained, both sexes (%)\",\"Number of teachers who have received the minimum organized teacher training (pre-service or in-service) required for teaching at the pre-primary level in the given country, expressed as a percentage of the total number of teachers at the pre-primary level.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.TRTP.0.F\",\"Percentage of female teachers in pre-primary education who are trained, female (%)\",\"Number of female teachers who have received the minimum organized teacher training (pre-service or in-service) required for teaching at the pre-primary level in the given country, expressed as a percentage of the total number of female teachers at the pre-primary level.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.TRTP.0.GPI\",\"Percentage of teachers in pre-primary education who are trained, gender parity index (GPI)\",\"Ratio of the female percentage of trained teachers for pre-primary to the male percentage of trained teachers for pre-primary. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of men and a value greater than 1 indicates disparity in favor of women.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.TRTP.0.M\",\"Percentage of male teachers in pre-primary education who are trained, male (%)\",\"Number of male teachers who have received the minimum organized teacher training (pre-service or in-service) required for teaching at the pre-primary level in the given country, expressed as a percentage of the total number of male teachers at the pre-primary level.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.TRTP.1.GPI\",\"Percentage of teachers in primary education who are trained, gender parity index (GPI)\",\"Ratio of the female percentage of trained teachers for primary to the male percentage of trained teachers for primary. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of men and a value greater than 1 indicates disparity in favor of women.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.TRTP.2\",\"Percentage of teachers in lower secondary education who are trained, both sexes (%)\",\"Number of teachers who have received the minimum organized teacher training (pre-service or in-service) required for teaching at the lower secondary level in the given country, expressed as a percentage of the total number of teachers at the lower secondary level.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.TRTP.2.F\",\"Percentage of female teachers in lower secondary education who are trained, female (%)\",\"Number of female teachers who have received the minimum organized teacher training (pre-service or in-service) required for teaching at the lower secondary level in the given country, expressed as a percentage of the total number of female teachers at the lower secondary level.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.TRTP.2.GPI\",\"Percentage of teachers in lower secondary education who are trained, gender parity index (GPI)\",\"Ratio of the female percentage of trained teachers for lower secondary to the male percentage of trained teachers for lower secondary. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of men and a value greater than 1 indicates disparity in favor of women.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.TRTP.2.M\",\"Percentage of male teachers in lower secondary education who are trained, male (%)\",\"Number of male teachers who have received the minimum organized teacher training (pre-service or in-service) required for teaching at the lower secondary level in the given country, expressed as a percentage of the total number of male teachers at the lower secondary level.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.TRTP.23.GPI\",\"Percentage of teachers in secondary education who are trained, gender parity index (GPI)\",\"Ratio of the female percentage of trained teachers for secondary to the male percentage of trained teachers for secondary. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of men and a value greater than 1 indicates disparity in favor of women.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.TRTP.3\",\"Percentage of teachers in upper secondary education who are trained, both sexes (%)\",\"Number of teachers who have received the minimum organized teacher training (pre-service or in-service) required for teaching at the upper secondary level in the given country, expressed as a percentage of the total number of teachers at the upper secondary level.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.TRTP.3.F\",\"Percentage of female teachers in upper secondary education who are trained, female (%)\",\"Number of female teachers who have received the minimum organized teacher training (pre-service or in-service) required for teaching at the upper secondary level in the given country, expressed as a percentage of the total number of female teachers at the upper secondary level.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.TRTP.3.GPI\",\"Percentage of teachers in upper secondary education who are trained, gender parity index (GPI)\",\"Ratio of the female percentage of trained teachers for upper secondary to the male percentage of trained teachers for upper secondary. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of men and a value greater than 1 indicates disparity in favor of women.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.TRTP.3.M\",\"Percentage of male teachers in upper secondary education who are trained, male (%)\",\"Number of male teachers who have received the minimum organized teacher training (pre-service or in-service) required for teaching at the upper secondary level in the given country, expressed as a percentage of the total number of male teachers at the upper secondary level.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.TRTP.4\",\"Percentage of teachers in post-secondary non-tertiary education who are trained, both sexes (%)\",\"Number of teachers who have received the minimum organized teacher training (pre-service or in-service) required for teaching at the post-secondary non-tertiary level in the given country, expressed as a percentage of the total number of teachers at the post-secondary non-tertiary level.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.TRTP.4.F\",\"Percentage of female teachers in post-secondary non-tertiary education who are trained, female (%)\",\"Number of female teachers who have received the minimum organized teacher training (pre-service or in-service) required for teaching at the post-secondary non-tertiary level in the given country, expressed as a percentage of the total number of female teachers at the post-secondary non-tertiary level.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.TRTP.4.GPI\",\"Percentage of teachers in post-secondary non-tertiary education who are trained, gender parity index (GPI)\",\"Ratio of the female percentage of trained teachers for post-secondary non-tertiary to the male percentage of trained teachers for post-secondary non-tertiary. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of men and a value greater than 1 indicates disparity in favor of women.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.TRTP.4.M\",\"Percentage of male teachers in post-secondary non-tertiary education who are trained, male (%)\",\"Number of male teachers who have received the minimum organized teacher training (pre-service or in-service) required for teaching at the post-secondary non-tertiary level in the given country, expressed as a percentage of the total number of male teachers at the post-secondary non-tertiary level.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.UAEP.1\",\"Percentage of students enrolled in primary education who are under-age, both sexes (%)\",\"Students who are younger than the official school-age range for primary education as a percentage of the total number of students enrolled in primary education.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.UAEP.1.F\",\"Percentage of female students enrolled in primary education who are under-age, female (%)\",\"Female students who are younger than the official school-age range for primary education as a percentage of the total number of female students enrolled in primary education.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.UAEP.1.M\",\"Percentage of male students enrolled in primary education who are under-age, male (%)\",\"Male students who are younger than the official school-age range for primary education as a percentage of the total number of male students enrolled in primary education.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.UAPP.1\",\"Under-age enrolment ratio in primary education, both sexes (%)\",\"Percentage of the primary school age population that is under the official primary school age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.UAPP.1.F\",\"Under-age enrolment ratio in primary education, female (%)\",\"Percentage of the female primary school age population that is under the official primary school age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.UAPP.1.M\",\"Under-age enrolment ratio in primary education, male (%)\",\"Percentage of the male primary school age population that is under the official primary school age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.UAPP.23\",\"Under-age enrolment ratio in secondary education, both sexes (%)\",\"Percentage of the secondary school age population that is under the official secondary school age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.UAPP.23.F\",\"Under-age enrolment ratio in secondary education, female (%)\",\"Percentage of the female secondary school age population that is under the official secondary school age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.UAPP.23.M\",\"Under-age enrolment ratio in secondary education, male (%)\",\"Percentage of the male secondary school age population that is under the official secondary school age.\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XGDP.0.FSGOV\",\"Government expenditure on pre-primary education as % of GDP (%)\",\"Total general (local, regional and central) government expenditure on education (current, capital, and transfers), expressed as a percentage of GDP. It includes expenditure funded by transfers from international sources to government. Divide total government expenditure for a given level of education (ex. primary, secondary, or all levels combined) by the GDP, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XGDP.0.FSGOV.FDINSTADM.FFD\",\"Government expenditure in pre-primary institutions as % of GDP (%)\",\"Total general (local, regional and central) government expenditure in educational institutions (current and capital) at a given level of education, expressed as a percentage of GDP. It excludes transfers to private entities such as subsidies to households and students, but includes expenditure funded by transfers from international sources to government. Divide total expenditure in public institutions of a given level of education (ex. primary, secondary, or all levels combined) by the GDP, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XGDP.1.FSGOV\",\"Government expenditure on primary education as % of GDP (%)\",\"Total general (local, regional and central) government expenditure on education (current, capital, and transfers), expressed as a percentage of GDP. It includes expenditure funded by transfers from international sources to government. Divide total government expenditure for a given level of education (ex. primary, secondary, or all levels combined) by the GDP, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XGDP.1.FSGOV.FDINSTADM.FFD\",\"Government expenditure in primary institutions as % of GDP (%)\",\"Total general (local, regional and central) government expenditure in educational institutions (current and capital) at a given level of education, expressed as a percentage of GDP. It excludes transfers to private entities such as subsidies to households and students, but includes expenditure funded by transfers from international sources to government. Divide total expenditure in public institutions of a given level of education (ex. primary, secondary, or all levels combined) by the GDP, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XGDP.23.FSGOV\",\"Government expenditure on secondary education as % of GDP (%)\",\"Total general (local, regional and central) government expenditure on education (current, capital, and transfers), expressed as a percentage of GDP. It includes expenditure funded by transfers from international sources to government. Divide total government expenditure for a given level of education (ex. primary, secondary, or all levels combined) by the GDP, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XGDP.4.FSGOV\",\"Government expenditure on post-secondary non-tertiary education as % of GDP (%)\",\"Total general (local, regional and central) government expenditure on education (current, capital, and transfers), expressed as a percentage of GDP. It includes expenditure funded by transfers from international sources to government. Divide total government expenditure for a given level of education (ex. primary, secondary, or all levels combined) by the GDP, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XGDP.4.FSGOV.FDINSTADM.FFD\",\"Government expenditure in post-secondary non-tertiary institutions as % of GDP (%)\",\"Total general (local, regional and central) government expenditure in educational institutions (current and capital) at a given level of education, expressed as a percentage of GDP. It excludes transfers to private entities such as subsidies to households and students, but includes expenditure funded by transfers from international sources to government. Divide total expenditure in public institutions of a given level of education (ex. primary, secondary, or all levels combined) by the GDP, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XGDP.56.FSGOV\",\"Government expenditure on tertiary education as % of GDP (%)\",\"Total general (local, regional and central) government expenditure on education (current, capital, and transfers), expressed as a percentage of GDP. It includes expenditure funded by transfers from international sources to government. Divide total government expenditure for a given level of education (ex. primary, secondary, or all levels combined) by the GDP, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XGDP.FSGOV.FDINSTADM.FFD\",\"Government expenditure in educational institutions as % of GDP (%)\",\"Total general (local, regional and central) government expenditure in educational institutions (current and capital), expressed as a percentage of GDP. It excludes transfers to private entities such as subsidies to households and students, but includes expenditure funded by transfers from international sources to government. Divide total expenditure in public institutions by the GDP, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XGOVEXP.IMF.0\",\"Expenditure on pre-primary as % of total government expenditure (%)\",\"Total general (local, regional and central) government expenditure on pre-primary education (current, capital, and transfers), expressed as a percentage of total general government expenditure on all sectors (including health, education, social services, etc.). It includes expenditure funded by transfers from international sources to government. Divide total government expenditure for a given level of education (ex. primary, secondary, or all levels combined) by total general government expenditure (all sectors), and multiply by 100. A higher percentage of government expenditure on education shows a high government priority for education relative to other public investments. When interpreting this indicator however, one should keep in mind that some governments have more (or less) means and therefore larger (or smaller) overall budgets, and that countries with younger populations may spend more on education in relation to other sector such as health or social security, and vice-versa. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XGOVEXP.IMF.1\",\"Expenditure on primary as % of total government expenditure (%)\",\"Total general (local, regional and central) government expenditure on primary education (current, capital, and transfers), expressed as a percentage of total general government expenditure on all sectors (including health, education, social services, etc.). It includes expenditure funded by transfers from international sources to government. Divide total government expenditure for a given level of education (ex. primary, secondary, or all levels combined) by total general government expenditure (all sectors), and multiply by 100. A higher percentage of government expenditure on education shows a high government priority for education relative to other public investments. When interpreting this indicator however, one should keep in mind that some governments have more (or less) means and therefore larger (or smaller) overall budgets, and that countries with younger populations may spend more on education in relation to other sector such as health or social security, and vice-versa. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XGOVEXP.IMF.2\",\"Expenditure on lower secondary as % of total government expenditure (%)\",\"Total general (local, regional and central) government expenditure on lower secondary education (current, capital, and transfers), expressed as a percentage of total general government expenditure on all sectors (including health, education, social services, etc.). It includes expenditure funded by transfers from international sources to government. Divide total government expenditure for a given level of education (ex. primary, secondary, or all levels combined) by total general government expenditure (all sectors), and multiply by 100. A higher percentage of government expenditure on education shows a high government priority for education relative to other public investments. When interpreting this indicator however, one should keep in mind that some governments have more (or less) means and therefore larger (or smaller) overall budgets, and that countries with younger populations may spend more on education in relation to other sector such as health or social security, and vice-versa. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XGOVEXP.IMF.23\",\"Expenditure on secondary as % of total government expenditure (%)\",\"Total general (local, regional and central) government expenditure on secondary education (current, capital, and transfers), expressed as a percentage of total general government expenditure on all sectors (including health, education, social services, etc.). It includes expenditure funded by transfers from international sources to government. Divide total government expenditure for a given level of education (ex. primary, secondary, or all levels combined) by total general government expenditure (all sectors), and multiply by 100. A higher percentage of government expenditure on education shows a high government priority for education relative to other public investments. When interpreting this indicator however, one should keep in mind that some governments have more (or less) means and therefore larger (or smaller) overall budgets, and that countries with younger populations may spend more on education in relation to other sector such as health or social security, and vice-versa. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XGOVEXP.IMF.3\",\"Expenditure on upper secondary as % of total government expenditure (%)\",\"Total general (local, regional and central) government expenditure on upper secondary education (current, capital, and transfers), expressed as a percentage of total general government expenditure on all sectors (including health, education, social services, etc.). It includes expenditure funded by transfers from international sources to government. Divide total government expenditure for a given level of education (ex. primary, secondary, or all levels combined) by total general government expenditure (all sectors), and multiply by 100. A higher percentage of government expenditure on education shows a high government priority for education relative to other public investments. When interpreting this indicator however, one should keep in mind that some governments have more (or less) means and therefore larger (or smaller) overall budgets, and that countries with younger populations may spend more on education in relation to other sector such as health or social security, and vice-versa. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XGOVEXP.IMF.4\",\"Expenditure on post-secondary non-tertiary as % of total government expenditure (%)\",\"Total general (local, regional and central) government expenditure on post-secondary non-tertiary education (current, capital, and transfers), expressed as a percentage of total general government expenditure on all sectors (including health, education, social services, etc.). It includes expenditure funded by transfers from international sources to government. Divide total government expenditure for a given level of education (ex. primary, secondary, or all levels combined) by total general government expenditure (all sectors), and multiply by 100. A higher percentage of government expenditure on education shows a high government priority for education relative to other public investments. When interpreting this indicator however, one should keep in mind that some governments have more (or less) means and therefore larger (or smaller) overall budgets, and that countries with younger populations may spend more on education in relation to other sector such as health or social security, and vice-versa. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XGOVEXP.IMF.56\",\"Expenditure on tertiary as % of total government expenditure (%)\",\"Total general (local, regional and central) government expenditure on tertiary education (current, capital, and transfers), expressed as a percentage of total general government expenditure on all sectors (including health, education, social services, etc.). It includes expenditure funded by transfers from international sources to government. Divide total government expenditure for a given level of education (ex. primary, secondary, or all levels combined) by total general government expenditure (all sectors), and multiply by 100. A higher percentage of government expenditure on education shows a high government priority for education relative to other public investments. When interpreting this indicator however, one should keep in mind that some governments have more (or less) means and therefore larger (or smaller) overall budgets, and that countries with younger populations may spend more on education in relation to other sector such as health or social security, and vice-versa. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XPUBP.0\",\"Expenditure on pre-primary as % of government expenditure on education (%)\",\"Expenditure on education by level of education, expressed as a percentage of total general government expenditure on education. Divide government expenditure on a given level of education (ex. primary, secondary) by total government expenditure on education (all levels combined), and multiply by 100. A high percentage of government expenditure on education spent on a given level denotes a high priority given to that level compared to others. When interpreting this indicator, one should take into account enrolment at that level, and the relative costs per student between different levels of education. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XPUBP.2\",\"Expenditure on lower secondary as % of government expenditure on education (%)\",\"Expenditure on education by level of education, expressed as a percentage of total general government expenditure on education. Divide government expenditure on a given level of education (ex. primary, secondary) by total government expenditure on education (all levels combined), and multiply by 100. A high percentage of government expenditure on education spent on a given level denotes a high priority given to that level compared to others. When interpreting this indicator, one should take into account enrolment at that level, and the relative costs per student between different levels of education. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XPUBP.3\",\"Expenditure on upper secondary as % of government expenditure on education (%)\",\"Expenditure on education by level of education, expressed as a percentage of total general government expenditure on education. Divide government expenditure on a given level of education (ex. primary, secondary) by total government expenditure on education (all levels combined), and multiply by 100. A high percentage of government expenditure on education spent on a given level denotes a high priority given to that level compared to others. When interpreting this indicator, one should take into account enrolment at that level, and the relative costs per student between different levels of education. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XPUBP.4\",\"Expenditure on post-secondary non-tertiary as % of government expenditure on education (%)\",\"Expenditure on education by level of education, expressed as a percentage of total general government expenditure on education. Divide government expenditure on a given level of education (ex. primary, secondary) by total government expenditure on education (all levels combined), and multiply by 100. A high percentage of government expenditure on education spent on a given level denotes a high priority given to that level compared to others. When interpreting this indicator, one should take into account enrolment at that level, and the relative costs per student between different levels of education. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XPUBP.UK\",\"Expenditure on education not allocated by level as % of government expenditure on education (%)\",\"Expenditure on education by level of education, expressed as a percentage of total general government expenditure on education. Divide government expenditure on a given level of education (ex. primary, secondary) by total government expenditure on education (all levels combined), and multiply by 100. A high percentage of government expenditure on education spent on a given level denotes a high priority given to that level compared to others. When interpreting this indicator, one should take into account enrolment at that level, and the relative costs per student between different levels of education. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XSPENDP.0.FDPUB.FNCAP\",\"Capital expenditure as % of total expenditure in pre-primary public institutions (%)\",\"Capital expenditure expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional) of the specified level of education. Financial aid to students and other transfers are excluded from direct expenditure. Capital expenditure is for education goods or assets that yield benefits for a period of more than one year. It includes expenditure for construction, renovation and major repairs of buildings and the purchase of heavy equipment or vehicles. Divide capital expenditure in public institutions of a given level of education (ex. primary, secondary, or all levels combined) by total expenditure (current and capital) in public institutions of the same level of education, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XSPENDP.0.FDPUB.FNCUR\",\"Current expenditure as % of total expenditure in pre-primary public institutions (%)\",\"Current expenditure expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional) of the specified level of education. Financial aid to students and other transfers are excluded from direct expenditure. Current expenditure is consumed within the current year and would have to be renewed if needed in the following year. It includes staff compensation and current expenditure other than for staff compensation (ex. on teaching materials, ancillary services and administration). Divide all current expenditure in public institutions of a given level of education (ex. primary, secondary, or all levels combined) by total expenditure (current and capital) in public institutions of the same level of education, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XSPENDP.0.FDPUB.FNNONS\",\"Current expenditure other than staff compensation as % of total expenditure in pre-primary public institutions (%)\",\"Current expenditure other than for staff compensation expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional) of the specified level of education. Financial aid to students and other transfers are excluded from direct expenditure. Current expenditure other than for staff compensation includes expenditure on school books and teaching materials, ancillary services (ex. food, transport), and administration and other support activities. Divide current expenditure other than staff compensation in public institutions of a given level of education (ex. primary, secondary, or all levels combined) by total expenditure (current and capital) in public institutions of the same level of education, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XSPENDP.0.FDPUB.FNS\",\"All staff compensation as % of total expenditure in pre-primary public institutions (%)\",\"All staff (teacher and non-teachers) compensation expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional) of the specified level of education. Financial aid to students and other transfers are excluded from direct expenditure. Staff compensation includes salaries, contributions by employers for staff retirement programmes, and other allowances and benefits. Divide all staff compensation in public institutions of a given level of education (ex. primary, secondary, or all levels combined) by total expenditure (current and capital) in public institutions of the same level of education, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XSPENDP.1.FDPUB.FNCAP\",\"Capital expenditure as % of total expenditure in primary public institutions (%)\",\"Capital expenditure expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional) of the specified level of education. Financial aid to students and other transfers are excluded from direct expenditure. Capital expenditure is for education goods or assets that yield benefits for a period of more than one year. It includes expenditure for construction, renovation and major repairs of buildings and the purchase of heavy equipment or vehicles. Divide capital expenditure in public institutions of a given level of education (ex. primary, secondary, or all levels combined) by total expenditure (current and capital) in public institutions of the same level of education, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XSPENDP.1.FDPUB.FNCUR\",\"Current expenditure as % of total expenditure in primary public institutions (%)\",\"Current expenditure expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional) of the specified level of education. Financial aid to students and other transfers are excluded from direct expenditure. Current expenditure is consumed within the current year and would have to be renewed if needed in the following year. It includes staff compensation and current expenditure other than for staff compensation (ex. on teaching materials, ancillary services and administration). Divide all current expenditure in public institutions of a given level of education (ex. primary, secondary, or all levels combined) by total expenditure (current and capital) in public institutions of the same level of education, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XSPENDP.1.FDPUB.FNNONS\",\"Current expenditure other than staff compensation as % of total expenditure in primary public institutions (%)\",\"Current expenditure other than for staff compensation expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional) of the specified level of education. Financial aid to students and other transfers are excluded from direct expenditure. Current expenditure other than for staff compensation includes expenditure on school books and teaching materials, ancillary services (ex. food, transport), and administration and other support activities. Divide current expenditure other than staff compensation in public institutions of a given level of education (ex. primary, secondary, or all levels combined) by total expenditure (current and capital) in public institutions of the same level of education, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XSPENDP.1.FDPUB.FNS\",\"All staff compensation as % of total expenditure in primary public institutions (%)\",\"All staff (teacher and non-teachers) compensation expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional) of the specified level of education. Financial aid to students and other transfers are excluded from direct expenditure. Staff compensation includes salaries, contributions by employers for staff retirement programmes, and other allowances and benefits. Divide all staff compensation in public institutions of a given level of education (ex. primary, secondary, or all levels combined) by total expenditure (current and capital) in public institutions of the same level of education, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XSPENDP.2.FDPUB.FNCAP\",\"Capital expenditure as % of total expenditure in lower secondary public institutions (%)\",\"Capital expenditure expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional) of the specified level of education. Financial aid to students and other transfers are excluded from direct expenditure. Capital expenditure is for education goods or assets that yield benefits for a period of more than one year. It includes expenditure for construction, renovation and major repairs of buildings and the purchase of heavy equipment or vehicles. Divide capital expenditure in public institutions of a given level of education (ex. primary, secondary, or all levels combined) by total expenditure (current and capital) in public institutions of the same level of education, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XSPENDP.2.FDPUB.FNCUR\",\"Current expenditure as % of total expenditure in lower secondary public institutions (%)\",\"Current expenditure expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional) of the specified level of education. Financial aid to students and other transfers are excluded from direct expenditure. Current expenditure is consumed within the current year and would have to be renewed if needed in the following year. It includes staff compensation and current expenditure other than for staff compensation (ex. on teaching materials, ancillary services and administration). Divide all current expenditure in public institutions of a given level of education (ex. primary, secondary, or all levels combined) by total expenditure (current and capital) in public institutions of the same level of education, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XSPENDP.2.FDPUB.FNNONS\",\"Current expenditure other than staff compensation as % of total expenditure in lower secondary public institutions (%)\",\"Current expenditure other than for staff compensation expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional) of the specified level of education. Financial aid to students and other transfers are excluded from direct expenditure. Current expenditure other than for staff compensation includes expenditure on school books and teaching materials, ancillary services (ex. food, transport), and administration and other support activities. Divide current expenditure other than staff compensation in public institutions of a given level of education (ex. primary, secondary, or all levels combined) by total expenditure (current and capital) in public institutions of the same level of education, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XSPENDP.2.FDPUB.FNS\",\"All staff compensation as % of total expenditure in lower secondary public institutions (%)\",\"All staff (teacher and non-teachers) compensation expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional) of the specified level of education. Financial aid to students and other transfers are excluded from direct expenditure. Staff compensation includes salaries, contributions by employers for staff retirement programmes, and other allowances and benefits. Divide all staff compensation in public institutions of a given level of education (ex. primary, secondary, or all levels combined) by total expenditure (current and capital) in public institutions of the same level of education, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XSPENDP.23.FDPUB.FNCAP\",\"Capital expenditure as % of total expenditure in secondary public institutions (%)\",\"Capital expenditure expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional) of the specified level of education. Financial aid to students and other transfers are excluded from direct expenditure. Capital expenditure is for education goods or assets that yield benefits for a period of more than one year. It includes expenditure for construction, renovation and major repairs of buildings and the purchase of heavy equipment or vehicles. Divide capital expenditure in public institutions of a given level of education (ex. primary, secondary, or all levels combined) by total expenditure (current and capital) in public institutions of the same level of education, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XSPENDP.23.FDPUB.FNCUR\",\"Current expenditure as % of total expenditure in secondary public institutions (%)\",\"Current expenditure expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional) of the specified level of education. Financial aid to students and other transfers are excluded from direct expenditure. Current expenditure is consumed within the current year and would have to be renewed if needed in the following year. It includes staff compensation and current expenditure other than for staff compensation (ex. on teaching materials, ancillary services and administration). Divide all current expenditure in public institutions of a given level of education (ex. primary, secondary, or all levels combined) by total expenditure (current and capital) in public institutions of the same level of education, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XSPENDP.23.FDPUB.FNNONS\",\"Current expenditure other than staff compensation as % of total expenditure in secondary public institutions (%)\",\"Current expenditure other than for staff compensation expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional) of the specified level of education. Financial aid to students and other transfers are excluded from direct expenditure. Current expenditure other than for staff compensation includes expenditure on school books and teaching materials, ancillary services (ex. food, transport), and administration and other support activities. Divide current expenditure other than staff compensation in public institutions of a given level of education (ex. primary, secondary, or all levels combined) by total expenditure (current and capital) in public institutions of the same level of education, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XSPENDP.23.FDPUB.FNS\",\"All staff compensation as % of total expenditure in secondary public institutions (%)\\r\\n\",\"All staff (teacher and non-teachers) compensation expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional) of the specified level of education. Financial aid to students and other transfers are excluded from direct expenditure. Staff compensation includes salaries, contributions by employers for staff retirement programmes, and other allowances and benefits. Divide all staff compensation in public institutions of a given level of education (ex. primary, secondary, or all levels combined) by total expenditure (current and capital) in public institutions of the same level of education, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XSPENDP.3.FDPUB.FNCAP\",\"Capital expenditure as % of total expenditure in upper-secondary public institutions (%)\",\"Capital expenditure expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional) of the specified level of education. Financial aid to students and other transfers are excluded from direct expenditure. Capital expenditure is for education goods or assets that yield benefits for a period of more than one year. It includes expenditure for construction, renovation and major repairs of buildings and the purchase of heavy equipment or vehicles. Divide capital expenditure in public institutions of a given level of education (ex. primary, secondary, or all levels combined) by total expenditure (current and capital) in public institutions of the same level of education, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XSPENDP.3.FDPUB.FNCUR\",\"Current expenditure as % of total expenditure in upper-secondary public institutions (%)\",\"Current expenditure expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional) of the specified level of education. Financial aid to students and other transfers are excluded from direct expenditure. Current expenditure is consumed within the current year and would have to be renewed if needed in the following year. It includes staff compensation and current expenditure other than for staff compensation (ex. on teaching materials, ancillary services and administration). Divide all current expenditure in public institutions of a given level of education (ex. primary, secondary, or all levels combined) by total expenditure (current and capital) in public institutions of the same level of education, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XSPENDP.3.FDPUB.FNNONS\",\"Current expenditure other than staff compensation as % of total expenditure in upper secondary public institutions (%)\",\"Current expenditure other than for staff compensation expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional) of the specified level of education. Financial aid to students and other transfers are excluded from direct expenditure. Current expenditure other than for staff compensation includes expenditure on school books and teaching materials, ancillary services (ex. food, transport), and administration and other support activities. Divide current expenditure other than staff compensation in public institutions of a given level of education (ex. primary, secondary, or all levels combined) by total expenditure (current and capital) in public institutions of the same level of education, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XSPENDP.3.FDPUB.FNS\",\"All staff compensation as % of total expenditure in upper secondary public institutions (%)\\r\\n\",\"All staff (teacher and non-teachers) compensation expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional) of the specified level of education. Financial aid to students and other transfers are excluded from direct expenditure. Staff compensation includes salaries, contributions by employers for staff retirement programmes, and other allowances and benefits. Divide all staff compensation in public institutions of a given level of education (ex. primary, secondary, or all levels combined) by total expenditure (current and capital) in public institutions of the same level of education, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XSPENDP.4.FDPUB.FNCAP\",\"Capital expenditure as % of total expenditure in post-secondary non-tertiary public institutions (%)\",\"Capital expenditure expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional) of the specified level of education. Financial aid to students and other transfers are excluded from direct expenditure. Capital expenditure is for education goods or assets that yield benefits for a period of more than one year. It includes expenditure for construction, renovation and major repairs of buildings and the purchase of heavy equipment or vehicles. Divide capital expenditure in public institutions of a given level of education (ex. primary, secondary, or all levels combined) by total expenditure (current and capital) in public institutions of the same level of education, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XSPENDP.4.FDPUB.FNCUR\",\"Current expenditure as % of total expenditure in post-secondary non-tertiary public institutions (%)\",\"Current expenditure expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional) of the specified level of education. Financial aid to students and other transfers are excluded from direct expenditure. Current expenditure is consumed within the current year and would have to be renewed if needed in the following year. It includes staff compensation and current expenditure other than for staff compensation (ex. on teaching materials, ancillary services and administration). Divide all current expenditure in public institutions of a given level of education (ex. primary, secondary, or all levels combined) by total expenditure (current and capital) in public institutions of the same level of education, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XSPENDP.4.FDPUB.FNNONS\",\"Current expenditure other than staff compensation as % of total expenditure in post-secondary non-tertiary public institutions (%)\",\"Current expenditure other than for staff compensation expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional) of the specified level of education. Financial aid to students and other transfers are excluded from direct expenditure. Current expenditure other than for staff compensation includes expenditure on school books and teaching materials, ancillary services (ex. food, transport), and administration and other support activities. Divide current expenditure other than staff compensation in public institutions of a given level of education (ex. primary, secondary, or all levels combined) by total expenditure (current and capital) in public institutions of the same level of education, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XSPENDP.4.FDPUB.FNS\",\"All staff compensation as % of total expenditure in post-secondary non-tertiary public institutions (%)\",\"All staff (teacher and non-teachers) compensation expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional) of the specified level of education. Financial aid to students and other transfers are excluded from direct expenditure. Staff compensation includes salaries, contributions by employers for staff retirement programmes, and other allowances and benefits. Divide all staff compensation in public institutions of a given level of education (ex. primary, secondary, or all levels combined) by total expenditure (current and capital) in public institutions of the same level of education, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XSPENDP.56.FDPUB.FNCAP\",\"Capital expenditure as % of total expenditure in tertiary public institutions (%)\",\"Capital expenditure expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional) of the specified level of education. Financial aid to students and other transfers are excluded from direct expenditure. Capital expenditure is for education goods or assets that yield benefits for a period of more than one year. It includes expenditure for construction, renovation and major repairs of buildings and the purchase of heavy equipment or vehicles. Divide capital expenditure in public institutions of a given level of education (ex. primary, secondary, or all levels combined) by total expenditure (current and capital) in public institutions of the same level of education, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XSPENDP.56.FDPUB.FNCUR\",\"Current expenditure as % of total expenditure in tertiary public institutions (%)\",\"Current expenditure expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional) of the specified level of education. Financial aid to students and other transfers are excluded from direct expenditure. Current expenditure is consumed within the current year and would have to be renewed if needed in the following year. It includes staff compensation and current expenditure other than for staff compensation (ex. on teaching materials, ancillary services and administration). Divide all current expenditure in public institutions of a given level of education (ex. primary, secondary, or all levels combined) by total expenditure (current and capital) in public institutions of the same level of education, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XSPENDP.56.FDPUB.FNNONS\",\"Current expenditure other than staff compensation as % of total expenditure in tertiary public institutions (%)\",\"Current expenditure other than for staff compensation expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional) of the specified level of education. Financial aid to students and other transfers are excluded from direct expenditure. Current expenditure other than for staff compensation includes expenditure on school books and teaching materials, ancillary services (ex. food, transport), and administration and other support activities. Divide current expenditure other than staff compensation in public institutions of a given level of education (ex. primary, secondary, or all levels combined) by total expenditure (current and capital) in public institutions of the same level of education, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XSPENDP.56.FDPUB.FNS\",\"All staff compensation as % of total expenditure in tertiary public institutions (%)\",\"All staff (teacher and non-teachers) compensation expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional) of the specified level of education. Financial aid to students and other transfers are excluded from direct expenditure. Staff compensation includes salaries, contributions by employers for staff retirement programmes, and other allowances and benefits. Divide all staff compensation in public institutions of a given level of education (ex. primary, secondary, or all levels combined) by total expenditure (current and capital) in public institutions of the same level of education, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XSPENDP.FDPUB.FNCAP\",\"Capital expenditure as % of total expenditure in public institutions (%)\",\"Capital expenditure expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional). Financial aid to students and other transfers are excluded from direct expenditure. Capital expenditure is for education goods or assets that yield benefits for a period of more than one year. It includes expenditure for construction, renovation and major repairs of buildings and the purchase of heavy equipment or vehicles. Divide capital expenditure in public institutions by total expenditure (current and capital) in public institutions, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XSPENDP.FDPUB.FNNONS\",\"Current expenditure other than staff compensation as % of total expenditure in public institutions (%)\",\"Current expenditure other than for staff compensation expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional). Financial aid to students and other transfers are excluded from direct expenditure. Current expenditure other than for staff compensation includes expenditure on school books and teaching materials, ancillary services (ex. food, transport), and administration and other support activities. Divide current expenditure other than staff compensation in public institutions by total expenditure (current and capital) in public institutions, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XSPENDP.FDPUB.FNS\",\"All staff compensation as % of total expenditure in public institutions (%)\",\"All staff (teacher and non-teachers) compensation expressed as a percentage of direct expenditure in public educational institutions (instructional and non-instructional). Financial aid to students and other transfers are excluded from direct expenditure. Staff compensation includes salaries, contributions by employers for staff retirement programmes, and other allowances and benefits. Divide all staff compensation in public institutions by total expenditure (current and capital) in public institutions, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XUNIT.GDPCAP.2.FSGOV\",\"Government expenditure per lower secondary student as % of GDP per capita (%)\",\"Average total (current, capital and transfers) general government expenditure per student in the given level of education, expressed as a percentage of GDP per capita. Divide total government expenditure for a given level of education (ex. primary, secondary) by total enrolment in that same level, divide again by GDP per capita, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XUNIT.GDPCAP.3.FSGOV\",\"Government expenditure per upper secondary student as % of GDP per capita (%)\",\"Average total (current, capital and transfers) general government expenditure per student in the given level of education, expressed as a percentage of GDP per capita. Divide total government expenditure for a given level of education (ex. primary, secondary) by total enrolment in that same level, divide again by GDP per capita, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XUNIT.GDPCAP.4.FSGOV\",\"Government expenditure per post-secondary non-tertiary student as % of GDP per capita (%)\",\"Average total (current, capital and transfers) general government expenditure per student in the given level of education, expressed as a percentage of GDP per capita. Divide total government expenditure for a given level of education (ex. primary, secondary) by total enrolment in that same level, divide again by GDP per capita, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XUNIT.PPP.1.FSGOV\",\"Government expenditure per primary student (PPP$)\",\"Average total (current, capital and transfers) general government expenditure per student in the given level of education, expressed in nominal purchasing power parity (PPP) dollars. Divide total government expenditure (in PPP$) for a given level of education (ex. primary, secondary) by total enrolment in that same level. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XUNIT.PPP.2.FSGOV\",\"Government expenditure per lower secondary student (PPP$)\",\"Average total (current, capital and transfers) general government expenditure per student in the given level of education, expressed in nominal purchasing power parity (PPP) dollars. Divide total government expenditure (in PPP$) for a given level of education (ex. primary, secondary) by total enrolment in that same level. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XUNIT.PPP.23.FSGOV\",\"Government expenditure per secondary student (PPP$)\",\"Average total (current, capital and transfers) general government expenditure per student in the given level of education, expressed in nominal purchasing power parity (PPP) dollars. Divide total government expenditure (in PPP$) for a given level of education (ex. primary, secondary) by total enrolment in that same level. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XUNIT.PPP.3.FSGOV\",\"Government expenditure per upper secondary student (PPP$)\",\"Average total (current, capital and transfers) general government expenditure per student in the given level of education, expressed in nominal purchasing power parity (PPP) dollars. Divide total government expenditure (in PPP$) for a given level of education (ex. primary, secondary) by total enrolment in that same level. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XUNIT.PPP.4.FSGOV\",\"Government expenditure per post-secondary non-tertiary student (PPP$)\",\"Average total (current, capital and transfers) general government expenditure per student in the given level of education, expressed in nominal purchasing power parity (PPP) dollars. Divide total government expenditure (in PPP$) for a given level of education (ex. primary, secondary) by total enrolment in that same level. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XUNIT.PPP.56.FSGOV\",\"Government expenditure per tertiary student (PPP$)\",\"Average total (current, capital and transfers) general government expenditure per student in the given level of education, expressed in nominal purchasing power parity (PPP) dollars. Divide total government expenditure (in PPP$) for a given level of education (ex. primary, secondary) by total enrolment in that same level. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XUNIT.PPPCONST.1.FSGOV\",\"Government expenditure per primary student (constant PPP$)\",\"Average total (current, capital and transfers) general government expenditure per student in the given level of education, expressed in purchasing power parity (PPP) dollars at constant prices. The constant prices base year is normally three years before the year of the data release. Divide total government expenditure (in constant PPP$) for a given level of education (ex. primary, secondary) by total enrolment in that same level. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XUNIT.PPPCONST.2.FSGOV\",\"Government expenditure per lower secondary student (constant PPP$)\",\"Average total (current, capital and transfers) general government expenditure per student in the given level of education, expressed in purchasing power parity (PPP) dollars at constant prices. The constant prices base year is normally three years before the year of the data release. Divide total government expenditure (in constant PPP$) for a given level of education (ex. primary, secondary) by total enrolment in that same level. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XUNIT.PPPCONST.23.FSGOV\",\"Government expenditure per secondary student (constant PPP$)\",\"Average total (current, capital and transfers) general government expenditure per student in the given level of education, expressed in purchasing power parity (PPP) dollars at constant prices. The constant prices base year is normally three years before the year of the data release. Divide total government expenditure (in constant PPP$) for a given level of education (ex. primary, secondary) by total enrolment in that same level. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XUNIT.PPPCONST.3.FSGOV\",\"Government expenditure per upper secondary student (constant PPP$)\",\"Average total (current, capital and transfers) general government expenditure per student in the given level of education, expressed in purchasing power parity (PPP) dollars at constant prices. The constant prices base year is normally three years before the year of the data release. Divide total government expenditure (in constant PPP$) for a given level of education (ex. primary, secondary) by total enrolment in that same level. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XUNIT.PPPCONST.4.FSGOV\",\"Government expenditure per post-secondary non-tertiary student (constant PPP$)\",\"Average total (current, capital and transfers) general government expenditure per student in the given level of education, expressed in purchasing power parity (PPP) dollars at constant prices. The constant prices base year is normally three years before the year of the data release. Divide total government expenditure (in constant PPP$) for a given level of education (ex. primary, secondary) by total enrolment in that same level. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XUNIT.PPPCONST.56.FSGOV\",\"Government expenditure per tertiary student (constant PPP$)\",\"Average total (current, capital and transfers) general government expenditure per student in the given level of education, expressed in purchasing power parity (PPP) dollars at constant prices. The constant prices base year is normally three years before the year of the data release. Divide total government expenditure (in constant PPP$) for a given level of education (ex. primary, secondary) by total enrolment in that same level. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XUNIT.US.1.FSGOV\",\"Government expenditure per primary student (US$)\",\"Average total (current, capital and transfers) general government expenditure per student in the given level of education, expressed in nominal US$ at market exchange rates. Divide total government expenditure (in US$) for a given level of education (ex. primary, secondary) by total enrolment in that same level. This indicator is useful to compare average spending on one student between levels of education, over time, or between countries. Constant US$ allow comparing absolute values using a common currency, however nominal values do not take into account the effect of inflation. This indicator should not be considered a unit cost, since it only includes what the government spends, and not total spending per student (including household contributions). Since it is a simple division of total government expenditure by the number of students at a given level, whether they attend public or private institutions, in countries where private provision and/or funding of education is higher the average amount per student will appear lower. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XUNIT.US.2.FSGOV\",\"Government expenditure per lower secondary student (US$)\",\"Average total (current, capital and transfers) general government expenditure per student in the given level of education, expressed in nominal US$ at market exchange rates. Divide total government expenditure (in US$) for a given level of education (ex. primary, secondary) by total enrolment in that same level. This indicator is useful to compare average spending on one student between levels of education, over time, or between countries. Constant US$ allow comparing absolute values using a common currency, however nominal values do not take into account the effect of inflation. This indicator should not be considered a unit cost, since it only includes what the government spends, and not total spending per student (including household contributions). Since it is a simple division of total government expenditure by the number of students at a given level, whether they attend public or private institutions, in countries where private provision and/or funding of education is higher the average amount per student will appear lower. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XUNIT.US.23.FSGOV\",\"Government expenditure per secondary student (US$)\",\"Average total (current, capital and transfers) general government expenditure per student in the given level of education, expressed in nominal US$ at market exchange rates. Divide total government expenditure (in US$) for a given level of education (ex. primary, secondary) by total enrolment in that same level. This indicator is useful to compare average spending on one student between levels of education, over time, or between countries. Constant US$ allow comparing absolute values using a common currency, however nominal values do not take into account the effect of inflation. This indicator should not be considered a unit cost, since it only includes what the government spends, and not total spending per student (including household contributions). Since it is a simple division of total government expenditure by the number of students at a given level, whether they attend public or private institutions, in countries where private provision and/or funding of education is higher the average amount per student will appear lower. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XUNIT.US.3.FSGOV\",\"Government expenditure per upper secondary student (US$)\",\"Average total (current, capital and transfers) general government expenditure per student in the given level of education, expressed in nominal US$ at market exchange rates. Divide total government expenditure (in US$) for a given level of education (ex. primary, secondary) by total enrolment in that same level. This indicator is useful to compare average spending on one student between levels of education, over time, or between countries. Constant US$ allow comparing absolute values using a common currency, however nominal values do not take into account the effect of inflation. This indicator should not be considered a unit cost, since it only includes what the government spends, and not total spending per student (including household contributions). Since it is a simple division of total government expenditure by the number of students at a given level, whether they attend public or private institutions, in countries where private provision and/or funding of education is higher the average amount per student will appear lower. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XUNIT.US.4.FSGOV\",\"Government expenditure per post-secondary non-tertiary student (US$)\",\"Average total (current, capital and transfers) general government expenditure per student in the given level of education, expressed in nominal US$ at market exchange rates. Divide total government expenditure (in US$) for a given level of education (ex. primary, secondary) by total enrolment in that same level. This indicator is useful to compare average spending on one student between levels of education, over time, or between countries. Constant US$ allow comparing absolute values using a common currency, however nominal values do not take into account the effect of inflation. This indicator should not be considered a unit cost, since it only includes what the government spends, and not total spending per student (including household contributions). Since it is a simple division of total government expenditure by the number of students at a given level, whether they attend public or private institutions, in countries where private provision and/or funding of education is higher the average amount per student will appear lower. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XUNIT.US.56.FSGOV\",\"Government expenditure per tertiary student (US$)\",\"Average total (current, capital and transfers) general government expenditure per student in the given level of education, expressed in nominal US$ at market exchange rates. Divide total government expenditure (in US$) for a given level of education (ex. primary, secondary) by total enrolment in that same level. This indicator is useful to compare average spending on one student between levels of education, over time, or between countries. Constant US$ allow comparing absolute values using a common currency, however nominal values do not take into account the effect of inflation. This indicator should not be considered a unit cost, since it only includes what the government spends, and not total spending per student (including household contributions). Since it is a simple division of total government expenditure by the number of students at a given level, whether they attend public or private institutions, in countries where private provision and/or funding of education is higher the average amount per student will appear lower. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XUNIT.USCONST.1.FSGOV\",\"Government expenditure per primary student (constant US$)\",\"Average total (current, capital and transfers) general government expenditure per student in the given level of education, expressed in US$ at market exchange rates, in constant prices. The constant prices base year is normally three years before the year of the data release. Divide total government expenditure (in constant US$) for a given level of education (ex. primary, secondary) by total enrolment in that same level. This indicator is useful to compare average spending on one student between levels of education, over time, or between countries. Constant US$ allow comparing absolute values using a common currency, and taking into account the effect of inflation. This indicator should not be considered a unit cost, since it only includes what the government spends, and not total spending per student (including household contributions). Since it is a simple division of total government expenditure by the number of students at a given level, whether they attend public or private institutions, in countries where private provision and/or funding of education is higher the average amount per student will appear lower. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XUNIT.USCONST.2.FSGOV\",\"Government expenditure per lower secondary student (constant US$)\",\"Average total (current, capital and transfers) general government expenditure per student in the given level of education, expressed in US$ at market exchange rates, in constant prices. The constant prices base year is normally three years before the year of the data release. Divide total government expenditure (in constant US$) for a given level of education (ex. primary, secondary) by total enrolment in that same level. This indicator is useful to compare average spending on one student between levels of education, over time, or between countries. Constant US$ allow comparing absolute values using a common currency, and taking into account the effect of inflation. This indicator should not be considered a unit cost, since it only includes what the government spends, and not total spending per student (including household contributions). Since it is a simple division of total government expenditure by the number of students at a given level, whether they attend public or private institutions, in countries where private provision and/or funding of education is higher the average amount per student will appear lower. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XUNIT.USCONST.23.FSGOV\",\"Government expenditure per secondary student (constant US$)\",\"Average total (current, capital and transfers) general government expenditure per student in the given level of education, expressed in US$ at market exchange rates, in constant prices. The constant prices base year is normally three years before the year of the data release. Divide total government expenditure (in constant US$) for a given level of education (ex. primary, secondary) by total enrolment in that same level. This indicator is useful to compare average spending on one student between levels of education, over time, or between countries. Constant US$ allow comparing absolute values using a common currency, and taking into account the effect of inflation. This indicator should not be considered a unit cost, since it only includes what the government spends, and not total spending per student (including household contributions). Since it is a simple division of total government expenditure by the number of students at a given level, whether they attend public or private institutions, in countries where private provision and/or funding of education is higher the average amount per student will appear lower. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XUNIT.USCONST.3.FSGOV\",\"Government expenditure per upper secondary student (constant US$)\",\"Average total (current, capital and transfers) general government expenditure per student in the given level of education, expressed in US$ at market exchange rates, in constant prices. The constant prices base year is normally three years before the year of the data release. Divide total government expenditure (in constant US$) for a given level of education (ex. primary, secondary) by total enrolment in that same level. This indicator is useful to compare average spending on one student between levels of education, over time, or between countries. Constant US$ allow comparing absolute values using a common currency, and taking into account the effect of inflation. This indicator should not be considered a unit cost, since it only includes what the government spends, and not total spending per student (including household contributions). Since it is a simple division of total government expenditure by the number of students at a given level, whether they attend public or private institutions, in countries where private provision and/or funding of education is higher the average amount per student will appear lower. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XUNIT.USCONST.4.FSGOV\",\"Government expenditure per post-secondary non-tertiary student (constant US$)\",\"Average total (current, capital and transfers) general government expenditure per student in the given level of education, expressed in US$ at market exchange rates, in constant prices. The constant prices base year is normally three years before the year of the data release. Divide total government expenditure (in constant US$) for a given level of education (ex. primary, secondary) by total enrolment in that same level. This indicator is useful to compare average spending on one student between levels of education, over time, or between countries. Constant US$ allow comparing absolute values using a common currency, and taking into account the effect of inflation. This indicator should not be considered a unit cost, since it only includes what the government spends, and not total spending per student (including household contributions). Since it is a simple division of total government expenditure by the number of students at a given level, whether they attend public or private institutions, in countries where private provision and/or funding of education is higher the average amount per student will appear lower. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UIS.XUNIT.USCONST.56.FSGOV\",\"Government expenditure per tertiary student (constant US$)\",\"Average total (current, capital and transfers) general government expenditure per student in the given level of education, expressed in US$ at market exchange rates, in constant prices. The constant prices base year is normally three years before the year of the data release. Divide total government expenditure (in constant US$) for a given level of education (ex. primary, secondary) by total enrolment in that same level. This indicator is useful to compare average spending on one student between levels of education, over time, or between countries. Constant US$ allow comparing absolute values using a common currency, and taking into account the effect of inflation. This indicator should not be considered a unit cost, since it only includes what the government spends, and not total spending per student (including household contributions). Since it is a simple division of total government expenditure by the number of students at a given level, whether they attend public or private institutions, in countries where private provision and/or funding of education is higher the average amount per student will appear lower. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"UNDP.HDI.XD\",\"Human development index (HDI)\",\"The Human Development Index (HDI) is a summary measure of human development. It measures the average achievements in a country in three basic dimensions of human development: a long and healthy life, access to knowledge and a decent standard of living. The HDI is the geometric mean of normalized indices measuring achievements in each dimension. The HDI is the geometric mean of the three dimension indices and embodies imperfect substitutability across all HDI dimensions. It thus addresses one of the most serious criticisms of the linear aggregation formula, which allowed for perfect substitution across dimensions. Some substitutability is inherent in the definition of any index that increases with the values of its components. Data sources: Life expectancy at birth: UNDESA; Mean years of schooling: Barro and Lee; Expected years of schooling: UNESCO Institute for Statistics; Gross national income (GNI) per capita: World Bank.\",\"Africa Development Indicators\",\"http://hdr.undp.org/en/statistics/data/\"\n\"UPP.COM.POL.XQ\",\"Combined polity score\",\"The Combined Polity score is computed by subtracting the AUTOCRACY score (UPP.INS.AUTO.XQ) from the DEMOCRACY score (UPP.INS.DEMO.XQ); the resulting unified polity scale ranges from +10 (strongly democratic) to -10 (strongly autocratic). Note: The POLITY score was added to the Polity IV data series in recognition of its common usage by users in quantitative research and in the overriding interest of maintaining uniformity among users in this application. The simple combination of the original DEMOC and AUTOC index values in a unitary POLITY scale, in many ways, runs contrary to the original theory stated by Eckstein and Gurr in Patterns of Authority Polity IV Project: Dataset Users’ Manual 17 (1975) and, so, should be treated and interpreted with due caution. Its primary utility is in investigative research which should be augmented by more detailed analysis. The original theory posits that autocratic and democratic authority are distinct patterns of authority, elements of which may co-exist in any particular regime context. The inclusion of this variable in the data series should not be seen as an acceptance of the counter-proposal that autocracy and democracy are alternatives or opposites in a unified authority spectrum, even though elements of this perspective may be implied in the original theory. The POLITY variable provides a convenient avenue for examining general regime effects in analyses but researchers should note that the middle of the implied POLITY “spectrum” is somewhat muddled in terms of the original theory, masking various combinations of DEMOC and AUTOC scores with the same POLITY score. Investigations involving hypotheses of varying effects of democracy and/or autocracy should employ the original Polity scheme and test DEMOC and AUTOC separately.\",\"Africa Development Indicators\",\"Center for Systemic Peace, www.systemicpeace.org/polity/polity4.htm \"\n\"UPP.INS.AUTO.XQ\",\"Institutionalized autocracy\",\"Democracy is conceived as three essential, interdependent elements. One is the presence of institutions and procedures through which citizens can express effective preferences about alternative policies and leaders. Second is the existence of institutionalized constraints on the exercise of power by the executive. Third is the guarantee of civil liberties to all citizens in their daily lives and in acts of political participation. Other aspects of plural democracy, such as the rule of law, systems of checks and balances, freedom of the press, and so on are means to, or specific manifestations of, these general principles. We do not include coded data on civil liberties. \",\"Africa Development Indicators\",\"Center for Systemic Peace, www.systemicpeace.org/polity/polity4.htm \"\n\"UPP.INS.DEMO.XQ\",\"Institutionalized democracy\",\"Democracy is conceived as three essential, interdependent elements. One is the presence of institutions and procedures through which citizens can express effective preferences about alternative policies and leaders. Second is the existence of institutionalized constraints on the exercise of power by the executive. Third is the guarantee of civil liberties to all citizens in their daily lives and in acts of political participation. Other aspects of plural democracy, such as the rule of law, systems of checks and balances, freedom of the press, and so on are means to, or specific manifestations of, these general principles. We do not include coded data on civil liberties. \",\"Africa Development Indicators\",\"Center for Systemic Peace, www.systemicpeace.org/polity/polity4.htm \"\n\"UPP.REV.POL.XQ\",\"Revised Combined Polity Score\",\"Revised Combined Polity Score is a modified version of the POLITY variable added in order to facilitate the use of the POLITY regime measure in time-series analyses.\",\"Africa Development Indicators\",\"Authoritarian regime\\\"\\\" in Western political discourse is a pejorative term for some very diverse kinds of political systems whose common properties are a lack of regularized political competition and concern for political freedoms. The term Autocracy is used and defined operationally in terms of the presence of a distinctive set of political characteristics.  In mature form, autocracies sharply restrict or suppress competitive political participation. Their chief executives are chosen in a regularized process of selection within the political elite, and once in office they exercise power with few institutional constraints. Most modern autocracies also exercise a high degree of directiveness over social and economic activity, but we regard this as a function of political ideology and choice, not a defining property of autocracy. Social democracies also exercise relatively high degrees of directiveness. The Polity data producers prefer to leave open for empirical investigation the question of how Autocracy, Democracy, and directiveness (performance) have covaried over time. \"\n\"UREA_EE_BULK\",\"Urea, E. Europe, bulk, $/mt, current$\",\"Urea, (Black Sea), bulk, spot,  f.o.b. Black Sea (primarily Yuzhnyy) beginning July 1991; for 1985-91 (June) f.o.b. Eastern Europe\",\"Global Economic Monitor (GEM) Commodities\",\"Fertilizer Week; Fertilizer International; World Bank.\"\n\"VA.EST\",\"Voice and Accountability: Estimate\",\"Voice and Accountability captures perceptions of the extent to which a country's citizens are able to participate in selecting their government, as well as freedom of expression, freedom of association, and a free media.\",\"Worldwide Governance Indicators\",\"Worldwide Governance Indicators, The World Bank\"\n\"VA.NO.SRC\",\"Voice and Accountability: Number of Sources\",\"Voice and Accountability captures perceptions of the extent to which a country's citizens are able to participate in selecting their government, as well as freedom of expression, freedom of association, and a free media.\",\"Worldwide Governance Indicators\",\"Worldwide Governance Indicators, The World Bank\"\n\"VA.PER.RNK\",\"Voice and Accountability: Percentile Rank\",\"Voice and Accountability captures perceptions of the extent to which a country's citizens are able to participate in selecting their government, as well as freedom of expression, freedom of association, and a free media.\",\"Worldwide Governance Indicators\",\"Worldwide Governance Indicators, The World Bank\"\n\"VA.PER.RNK.LOWER\",\"Voice and Accountability: Percentile Rank, Lower Bound of 90% Confidence Interval\",\"Voice and Accountability captures perceptions of the extent to which a country's citizens are able to participate in selecting their government, as well as freedom of expression, freedom of association, and a free media. Percentile rank indicates the country's rank among all countries covered by the aggregate indicator, with 0 corresponding to lowest rank, and 100 to highest rank.  Percentile ranks have been adjusted to correct for changes over time in the composition of the countries covered by the WGI. Percentile Rank Lower refers to lower bound of 90 percent confidence interval for governance, expressed in percentile rank terms.\",\"Worldwide Governance Indicators\",\"Worldwide Governance Indicators, The World Bank\"\n\"VA.PER.RNK.UPPER\",\"Voice and Accountability: Percentile Rank, Upper Bound of 90% Confidence Interval\",\"Voice and Accountability captures perceptions of the extent to which a country's citizens are able to participate in selecting their government, as well as freedom of expression, freedom of association, and a free media. Percentile rank indicates the country's rank among all countries covered by the aggregate indicator, with 0 corresponding to lowest rank, and 100 to highest rank.  Percentile ranks have been adjusted to correct for changes over time in the composition of the countries covered by the WGI.  Percentile Rank Upper refers to upper bound of 90 percent confidence interval for governance, expressed in percentile rank terms.\",\"Worldwide Governance Indicators\",\"Worldwide Governance Indicators, The World Bank\"\n\"VA.STD.ERR\",\"Voice and Accountability: Standard Error\",\"Voice and Accountability captures perceptions of the extent to which a country's citizens are able to participate in selecting their government, as well as freedom of expression, freedom of association, and a free media.\",\"Worldwide Governance Indicators\",\"Worldwide Governance Indicators, The World Bank\"\n\"VC.BTL.DETH\",\"Battle-related deaths (number of people)\",\"Battle-related deaths are deaths in battle-related conflicts between warring parties in the conflict dyad (two conflict units that are parties to a conflict). Typically, battle-related deaths occur in warfare involving the armed forces of the warring parties. This includes traditional battlefield fighting, guerrilla activities, and all kinds of bombardments of military units, cities, and villages, etc. The targets are usually the military itself and its installations or state institutions and state representatives, but there is often substantial collateral damage in the form of civilians being killed in crossfire, in indiscriminate bombings, etc. All deaths--military as well as civilian--incurred in such situations, are counted as battle-related deaths.\",\"World Development Indicators\",\"Uppsala Conflict Data Program, http://www.pcr.uu.se/research/UCDP/.\"\n\"VC.IDP.TOTL.HE\",\"Internally displaced persons (number, high estimate)\",\"Internally displaced persons are people or groups of people who have been forced or obliged to flee or to leave their homes or places of habitual residence, in particular as a result of armed conflict, or to avoid the effects of armed conflict, situations of generalized violence, violations of human rights, or natural or human-made disasters and who have not crossed an international border.\",\"World Development Indicators\",\"Internal Displacement Monitoring Centre.\"\n\"VC.IDP.TOTL.LE\",\"Internally displaced persons (number, low estimate)\",\"Internally displaced persons are people or groups of people who have been forced or obliged to flee or to leave their homes or places of habitual residence, in particular as a result of armed conflict, or to avoid the effects of armed conflict, situations of generalized violence, violations of human rights, or natural or human-made disasters and who have not crossed an international border.\",\"World Development Indicators\",\"Internal Displacement Monitoring Centre.\"\n\"VC.IHR.PSRC.P5\",\"Intentional homicides (per 100,000 people)\",\"Intentional homicides are estimates of unlawful homicides purposely inflicted as a result of domestic disputes, interpersonal violence, violent conflicts over land resources, intergang violence over turf or control, and predatory violence and killing by armed groups. Intentional homicide does not include all intentional killing; the difference is usually in the organization of the killing. Individuals or small groups usually commit homicide, whereas killing in armed conflict is usually committed by fairly cohesive groups of up to several hundred members and is thus usually excluded.\",\"World Development Indicators\",\"UN Office on Drugs and Crime's International Homicide Statistics database.\"\n\"VC.PKP.TOTL.UN\",\"Presence of peace keepers (number of troops, police, and military observers in mandate)\",\"Presence of peacebuilders and peacekeepers are active in peacebuilding and peacekeeping. Peacebuilding reduces the risk of lapsing or relapsing into conflict by strengthening national capacities at all levels of for conflict management, and to lay the foundation for sustainable peace and development. Peacekeepers provide essential security to preserve the peace, however fragile, where fighting has been halted, and to assist in implementing agreements achieved by the peacemakers. Peacekeepers deploy to war-torn regions where no one else is willing or able to go and prevent conflict from returning or escalating. Peacekeepers include police, troops, and military observers.\",\"World Development Indicators\",\"UN Department of Peacekeeping Operations, http://www.un.org/en/peacekeeping/.\"\n\"WHEAT_CANADI\",\"Wheat, Canada, $/mt, current$\",\"Wheat (Canada), no. 1, Western Red Spring (CWRS), in store, St. Lawrence, export price\",\"Global Economic Monitor (GEM) Commodities\",\"Canadian Grain Commission; Thomson Reuters Datastream; World Bank.\"\n\"WHEAT_US_HRW\",\"Wheat, US, HRW, $/mt, current$\",\"Wheat (US), no. 1, hard red winter, ordinary protein, export price delivered at the US Gulf port for prompt or 30 days shipment\",\"Global Economic Monitor (GEM) Commodities\",\"Bloomberg; US Department of Agriculture; World Bank.\"\n\"WHEAT_US_SRW\",\"Wheat, US, SRW, $/mt, current$\",\"Wheat (US), no. 2, soft red winter, export price delivered at the US Gulf port for prompt or 30 days shipment\",\"Global Economic Monitor (GEM) Commodities\",\"US Department of Agriculture; World Bank.\"\n\"WOODPULP\",\"Woodpulp, $/mt, current$\",\"Woodpulp (Sweden), softwood, sulphate, bleached, air-dry weight, c.i.f.  North Sea ports\",\"Global Economic Monitor (GEM) Commodities\",\"Statistisches Bundesamt, Germany; Allman Manadsstatistik, Sweden; World Bank.\"\n\"WP_time_01.1\",\"Account at a financial institution (% age 15+) [ts]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else) at a bank or another type of financial institution (see year-specific definitions for details) (% age 15+). [ts: data are available for multiple waves].\",\"World Development Indicators\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_01.2\",\"Account at a financial institution, male (% age 15+) [ts]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else) at a bank or another type of financial institution (see year-specific definitions for details) (male, % age 15+). [ts: data are available for multiple waves].\",\"World Development Indicators\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_01.3\",\"Account at a financial institution, female (% age 15+) [ts]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else) at a bank or another type of financial institution (see year-specific definitions for details) (female, % age 15+). [ts: data are available for multiple waves].\",\"World Development Indicators\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_01.4\",\"Account at a financial institution, young adults (% ages 15-24) [ts]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else) at a bank or another type of financial institution (see year-specific definitions for details) (% ages 15-24). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_01.5\",\"Account at a financial institution, older adults (% ages 25+) [ts]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else) at a bank or another type of financial institution (see year-specific definitions for details) (% age 25+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_01.6\",\"Account at a financial institution, primary education or less (% ages 15+) [ts]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else) at a bank or another type of financial institution (see year-specific definitions for details) (primary education or less, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_01.7\",\"Account at a financial institution, secondary education or more (% ages 15+) [ts]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else) at a bank or another type of financial institution (see year-specific definitions for details) (secondary education or more, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_01.8\",\"Account at a financial institution, income, poorest 40% (% ages 15+) [ts]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else) at a bank or another type of financial institution (see year-specific definitions for details) (income, poorest 40%, % age 15+). [ts: data are available for multiple waves].\",\"World Development Indicators\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_01.9\",\"Account at a financial institution, income, richest 60% (% ages 15+) [ts]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else) at a bank or another type of financial institution (see year-specific definitions for details) (income, richest 60%, % age 15+). [ts: data are available for multiple waves].\",\"World Development Indicators\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_02.1\",\"Debit card (% age 15+) [ts]\",\"Denotes the percentage of respondents who report having a debit card (see year-specific definitions for details) (% age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_02.2\",\"Debit card, male (% age 15+) [ts]\",\"Denotes the percentage of respondents who report having a debit card (see year-specific definitions for details) (male, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_02.3\",\"Debit card, female (% age 15+) [ts]\",\"Denotes the percentage of respondents who report having a debit card (see year-specific definitions for details) (female, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_02.4\",\"Debit card, young adults (% ages 15-24) [ts]\",\"Denotes the percentage of respondents who report having a debit card (see year-specific definitions for details) (% ages 15-24). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_02.5\",\"Debit card, older adults (% ages 25+) [ts]\",\"Denotes the percentage of respondents who report having a debit card (see year-specific definitions for details) (% age 25+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_02.6\",\"Debit card, primary education or less (% ages 15+) [ts]\",\"Denotes the percentage of respondents who report having a debit card (see year-specific definitions for details) (primary education or less, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_02.7\",\"Debit card, secondary education or more (% ages 15+) [ts]\",\"Denotes the percentage of respondents who report having a debit card (see year-specific definitions for details) (secondary education or more, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_02.8\",\"Debit card, income, poorest 40% (% ages 15+) [ts]\",\"Denotes the percentage of respondents who report having a debit card (see year-specific definitions for details) (income, poorest 40%, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_02.9\",\"Debit card, income, richest 60% (% ages 15+) [ts]\",\"Denotes the percentage of respondents who report having a debit card (see year-specific definitions for details) (income, richest 60%, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_03.1\",\"Credit card (% age 15+) [ts]\",\"Denotes the percentage of respondents who report having a credit card (see year-specific definitions for details) (% age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_03.2\",\"Credit card, male (% age 15+) [ts]\",\"Denotes the percentage of respondents who report having a credit card (see year-specific definitions for details) (male, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_03.3\",\"Credit card, female (% age 15+) [ts]\",\"Denotes the percentage of respondents who report having a credit card (see year-specific definitions for details) (female, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_03.4\",\"Credit card, young adults (% ages 15-24) [ts]\",\"Denotes the percentage of respondents who report having a credit card (see year-specific definitions for details) (% ages 15-24). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_03.5\",\"Credit card, older adults (% ages 25+) [ts]\",\"Denotes the percentage of respondents who report having a credit card (see year-specific definitions for details) (% age 25+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_03.6\",\"Credit card, primary education or less (% ages 15+) [ts]\",\"Denotes the percentage of respondents who report having a credit card (see year-specific definitions for details) (primary education or less, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_03.7\",\"Credit card, secondary education or more (% ages 15+) [ts]\",\"Denotes the percentage of respondents who report having a credit card (see year-specific definitions for details) (secondary education or more, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_03.8\",\"Credit card, income, poorest 40% (% ages 15+) [ts]\",\"Denotes the percentage of respondents who report having a credit card (see year-specific definitions for details) (income, poorest 40%, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_03.9\",\"Credit card, income, richest 60% (% ages 15+) [ts]\",\"Denotes the percentage of respondents who report having a credit card (see year-specific definitions for details) (income, richest 60%, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_04.1\",\"Saved at a financial institution (% age 15+) [ts]\",\"Denotes the percentage of respondents who report saving or setting aside any money at a bank or another type of financial institution in the past 12 months (see year-specific definitions for details) (% age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_04.2\",\"Saved at a financial institution, male (% age 15+) [ts]\",\"Denotes the percentage of respondents who report saving or setting aside any money at a bank or another type of financial institution in the past 12 months (see year-specific definitions for details) (male, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_04.3\",\"Saved at a financial institution, female (% age 15+) [ts]\",\"Denotes the percentage of respondents who report saving or setting aside any money at a bank or another type of financial institution in the past 12 months (see year-specific definitions for details) (female, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_04.4\",\"Saved at a financial institution, young adults (% ages 15-24) [ts]\",\"Denotes the percentage of respondents who report saving or setting aside any money at a bank or another type of financial institution in the past 12 months (see year-specific definitions for details) (% ages 15-24). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_04.5\",\"Saved at a financial institution, older adults (% ages 25+) [ts]\",\"Denotes the percentage of respondents who report saving or setting aside any money at a bank or another type of financial institution in the past 12 months (see year-specific definitions for details) (% age 25+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_04.6\",\"Saved at a financial institution, primary education or less (% ages 15+) [ts]\",\"Denotes the percentage of respondents who report saving or setting aside any money at a bank or another type of financial institution in the past 12 months (see year-specific definitions for details) (primary education or less, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_04.7\",\"Saved at a financial institution, secondary education or more (% ages 15+) [ts]\",\"Denotes the percentage of respondents who report saving or setting aside any money at a bank or another type of financial institution in the past 12 months (see year-specific definitions for details) (secondary education or more, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_04.8\",\"Saved at a financial institution, income, poorest 40% (% ages 15+) [ts]\",\"Denotes the percentage of respondents who report saving or setting aside any money at a bank or another type of financial institution in the past 12 months (see year-specific definitions for details) (income, poorest 40%, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_04.9\",\"Saved at a financial institution, income, richest 60% (% ages 15+) [ts]\",\"Denotes the percentage of respondents who report saving or setting aside any money at a bank or another type of financial institution in the past 12 months (see year-specific definitions for details) (income, richest 60%, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_05.1\",\"Saved using a savings club or a person outside the family (% age 15+) [ts]\",\"Denotes the percentage of respondents who report saving or setting aside any money using a savings club or a person outside the family in the past 12 months (see year-specific definitions for details) (% age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_05.2\",\"Saved using a savings club or a person outside the family, male (% age 15+) [ts]\",\"Denotes the percentage of respondents who report saving or setting aside any money using a savings club or a person outside the family in the past 12 months (see year-specific definitions for details) (male, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_05.3\",\"Saved using a savings club or a person outside the family, female (% age 15+) [ts]\",\"Denotes the percentage of respondents who report saving or setting aside any money using a savings club or a person outside the family in the past 12 months (see year-specific definitions for details) (female, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_05.4\",\"Saved using a savings club or a person outside the family, young adults (% ages 15-24) [ts]\",\"Denotes the percentage of respondents who report saving or setting aside any money using a savings club or a person outside the family in the past 12 months (see year-specific definitions for details) (% ages 15-24). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_05.5\",\"Saved using a savings club or a person outside the family, older adults (% ages 25+) [ts]\",\"Denotes the percentage of respondents who report saving or setting aside any money using a savings club or a person outside the family in the past 12 months (see year-specific definitions for details) (% age 25+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_05.6\",\"Saved using a savings club or a person outside the family, primary education or less (% ages 15+) [ts]\",\"Denotes the percentage of respondents who report saving or setting aside any money using a savings club or a person outside the family in the past 12 months (see year-specific definitions for details) (primary education or less, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_05.7\",\"Saved using a savings club or a person outside the family, secondary education or more (% ages 15+) [ts]\",\"Denotes the percentage of respondents who report saving or setting aside any money using a savings club or a person outside the family in the past 12 months (see year-specific definitions for details) (secondary education or more, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_05.8\",\"Saved using a savings club or a person outside the family, income, poorest 40% (% ages 15+) [ts]\",\"Denotes the percentage of respondents who report saving or setting aside any money using a savings club or a person outside the family in the past 12 months (see year-specific definitions for details) (income, poorest 40%, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_05.9\",\"Saved using a savings club or a person outside the family, income, richest 60% (% ages 15+) [ts]\",\"Denotes the percentage of respondents who report saving or setting aside any money using a savings club or a person outside the family in the past 12 months (see year-specific definitions for details) (income, richest 60%, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_06.1\",\"Borrowed from a financial institution (% age 15+) [ts]\",\"Denotes the percentage of respondents who report borrowing any money from a bank or another type of financial institution in the past 12 months (see year-specific definitions for details) (% age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_06.2\",\"Borrowed from a financial institution, male (% age 15+) [ts]\",\"Denotes the percentage of respondents who report borrowing any money from a bank or another type of financial institution in the past 12 months (see year-specific definitions for details) (male, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_06.3\",\"Borrowed from a financial institution, female (% age 15+) [ts]\",\"Denotes the percentage of respondents who report borrowing any money from a bank or another type of financial institution in the past 12 months (see year-specific definitions for details) (female, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_06.4\",\"Borrowed from a financial institution, young adults (% ages 15-24) [ts]\",\"Denotes the percentage of respondents who report borrowing any money from a bank or another type of financial institution in the past 12 months (see year-specific definitions for details) (% ages 15-24). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_06.5\",\"Borrowed from a financial institution, older adults (% ages 25+) [ts]\",\"Denotes the percentage of respondents who report borrowing any money from a bank or another type of financial institution in the past 12 months (see year-specific definitions for details) (% age 25+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_06.6\",\"Borrowed from a financial institution, primary education or less (% ages 15+) [ts]\",\"Denotes the percentage of respondents who report borrowing any money from a bank or another type of financial institution in the past 12 months (see year-specific definitions for details) (primary education or less, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_06.7\",\"Borrowed from a financial institution, secondary education or more (% ages 15+) [ts]\",\"Denotes the percentage of respondents who report borrowing any money from a bank or another type of financial institution in the past 12 months (see year-specific definitions for details) (secondary education or more, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_06.8\",\"Borrowed from a financial institution, income, poorest 40% (% ages 15+) [ts]\",\"Denotes the percentage of respondents who report borrowing any money from a bank or another type of financial institution in the past 12 months (see year-specific definitions for details) (income, poorest 40%, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_06.9\",\"Borrowed from a financial institution, income, richest 60% (% ages 15+) [ts]\",\"Denotes the percentage of respondents who report borrowing any money from a bank or another type of financial institution in the past 12 months (see year-specific definitions for details) (income, richest 60%, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_08.1\",\"Borrowed from family or friends (% age 15+) [ts]\",\"Denotes the percentage of respondents who report borrowing any money from family, relatives, or friends in the past 12 months (see year-specific definitions for details) (% age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_08.2\",\"Borrowed from family or friends, male (% age 15+) [ts]\",\"Denotes the percentage of respondents who report borrowing any money from family, relatives, or friends in the past 12 months (see year-specific definitions for details) (male, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_08.3\",\"Borrowed from family or friends, female (% age 15+) [ts]\",\"Denotes the percentage of respondents who report borrowing any money from family, relatives, or friends in the past 12 months (see year-specific definitions for details) (female, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_08.4\",\"Borrowed from family or friends, young adults (% ages 15-24) [ts]\",\"Denotes the percentage of respondents who report borrowing any money from family, relatives, or friends in the past 12 months (see year-specific definitions for details) (% ages 15-24). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_08.5\",\"Borrowed from family or friends, older adults (% ages 25+) [ts]\",\"Denotes the percentage of respondents who report borrowing any money from family, relatives, or friends in the past 12 months (see year-specific definitions for details) (% age 25+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_08.6\",\"Borrowed from family or friends, primary education or less (% ages 15+) [ts]\",\"Denotes the percentage of respondents who report borrowing any money from family, relatives, or friends in the past 12 months (see year-specific definitions for details) (primary education or less, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_08.7\",\"Borrowed from family or friends, secondary education or more (% ages 15+) [ts]\",\"Denotes the percentage of respondents who report borrowing any money from family, relatives, or friends in the past 12 months (see year-specific definitions for details) (secondary education or more, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_08.8\",\"Borrowed from family or friends, income, poorest 40% (% ages 15+) [ts]\",\"Denotes the percentage of respondents who report borrowing any money from family, relatives, or friends in the past 12 months (see year-specific definitions for details) (income, poorest 40%, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_08.9\",\"Borrowed from family or friends, income, richest 60% (% ages 15+) [ts]\",\"Denotes the percentage of respondents who report borrowing any money from family, relatives, or friends in the past 12 months (see year-specific definitions for details) (income, richest 60%, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_09.1\",\"Borrowed from a private informal lender (% age 15+) [ts]\",\"Denotes the percentage of respondents who report borrowing any money from a private informal lender in the past 12 months (see year-specific definitions for details) (% age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_09.2\",\"Borrowed from a private informal lender, male (% age 15+) [ts]\",\"Denotes the percentage of respondents who report borrowing any money from a private informal lender in the past 12 months (see year-specific definitions for details) (male, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_09.3\",\"Borrowed from a private informal lender, female (% age 15+) [ts]\",\"Denotes the percentage of respondents who report borrowing any money from a private informal lender in the past 12 months (see year-specific definitions for details) (female, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_09.4\",\"Borrowed from a private informal lender, young adults (% ages 15-24) [ts]\",\"Denotes the percentage of respondents who report borrowing any money from a private informal lender in the past 12 months (see year-specific definitions for details) (% ages 15-24). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_09.5\",\"Borrowed from a private informal lender, older adults (% ages 25+) [ts]\",\"Denotes the percentage of respondents who report borrowing any money from a private informal lender in the past 12 months (see year-specific definitions for details) (% age 25+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_09.6\",\"Borrowed from a private informal lender, primary education or less (% ages 15+) [ts]\",\"Denotes the percentage of respondents who report borrowing any money from a private informal lender in the past 12 months (see year-specific definitions for details) (primary education or less, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_09.7\",\"Borrowed from a private informal lender, secondary education or more (% ages 15+) [ts]\",\"Denotes the percentage of respondents who report borrowing any money from a private informal lender in the past 12 months (see year-specific definitions for details) (secondary education or more, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_09.8\",\"Borrowed from a private informal lender, income, poorest 40% (% ages 15+) [ts]\",\"Denotes the percentage of respondents who report borrowing any money from a private informal lender in the past 12 months (see year-specific definitions for details) (income, poorest 40%, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_09.9\",\"Borrowed from a private informal lender, income, richest 60% (% ages 15+) [ts]\",\"Denotes the percentage of respondents who report borrowing any money from a private informal lender in the past 12 months (see year-specific definitions for details) (income, richest 60%, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_10.1\",\"Account (% age 15+) [ts]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else). For 2011, this can be an account at a bank or another type of financial institution, and for 2014 this can be a mobile account as well (see year-specific definitions for details) (% age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_10.2\",\"Account, male (% age 15+) [ts]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else). For 2011, this can be an account at a bank or another type of financial institution, and for 2014 this can be a mobile account as well (see year-specific definitions for details) (male, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_10.3\",\"Account, female (% age 15+) [ts]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else). For 2011, this can be an account at a bank or another type of financial institution, and for 2014 this can be a mobile account as well (see year-specific definitions for details) (female, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_10.4\",\"Account, young adults (% ages 15-24) [ts]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else). For 2011, this can be an account at a bank or another type of financial institution, and for 2014 this can be a mobile account as well (see year-specific definitions for details) (% ages 15-24). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_10.5\",\"Account, older adults (% ages 25+) [ts]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else). For 2011, this can be an account at a bank or another type of financial institution, and for 2014 this can be a mobile account as well (see year-specific definitions for details) (% age 25+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_10.6\",\"Account, primary education or less (% ages 15+) [ts]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else). For 2011, this can be an account at a bank or another type of financial institution, and for 2014 this can be a mobile account as well (see year-specific definitions for details) (primary education or less, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_10.7\",\"Account, secondary education or more (% ages 15+) [ts]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else). For 2011, this can be an account at a bank or another type of financial institution, and for 2014 this can be a mobile account as well (see year-specific definitions for details) (secondary education or more, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_10.8\",\"Account, income, poorest 40% (% ages 15+) [ts]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else). For 2011, this can be an account at a bank or another type of financial institution, and for 2014 this can be a mobile account as well (see year-specific definitions for details) (income, poorest 40%, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_10.9\",\"Account, income, richest 60% (% ages 15+) [ts]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else). For 2011, this can be an account at a bank or another type of financial institution, and for 2014 this can be a mobile account as well (see year-specific definitions for details) (income, richest 60%, % age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP_time_11.1\",\"Main mode of withdrawal: ATM (% with an account, age 15+) [ts]\",\"Denotes the percentage of respondents with an account at a bank or another type of financial institution who report usually obtaining cash from their account at an automated teller machine (ATM) (see year-specific definitions for details) (% with an account, age 15+). [ts: data are available for multiple waves].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP11623.MF.GAP\",\"Male-female gap in the percent of population (15+) with an account at a formal financial institution\",\"This indicator measures the difference between the percentage of males and the percentage of females of ages 15 and above who have an account (self or together with someone else) at a formal financial institutions, such as bank, credit union, another financial institution (e.g., cooperative, microfinance institution), or the post office (if applicable) including respondents who reported having a debit card.  \",\"Corporate Scorecard\",\"Data are obtained from Demirguc-Kunt and Klapper (2012), Measuring Financial Inclusion: The Global Findex Database. \"\n\"WP11623_4.1\",\"Account at a formal financial institution (% age 15+)\",\"Denotes the percentage of respondents with an account (self or together with someone else) at a bank, credit union, another financial institution (e.g., cooperative, microfinance institution), or the post office (if applicable) including respondents who reported having a debit card (% age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11623_4.10\",\"Account at a formal financial institution, rural (% age 15+)\",\"Denotes the percentage of respondents with an account (self or together with someone else) at a bank, credit union, another financial institution (e.g., cooperative, microfinance institution), or the post office (if applicable) including respondents who reported having a debit card (rural, % age 15+ ). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11623_4.2\",\"Account at a formal financial institution, male (% age 15+)\",\"Denotes the percentage of respondents with an account (self or together with someone else) at a bank, credit union, another financial institution (e.g., cooperative, microfinance institution), or the post office (if applicable) including respondents who reported having a debit card (male, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11623_4.3\",\"Account at a formal financial institution, female (% age 15+)\",\"Denotes the percentage of respondents with an account (self or together with someone else) at a bank, credit union, another financial institution (e.g., cooperative, microfinance institution), or the post office (if applicable) including respondents who reported having a debit card (female, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11623_4.4\",\"Account at a formal financial institution, young adults (% ages 15-24)\",\"Denotes the percentage of respondents with an account (self or together with someone else) at a bank, credit union, another financial institution (e.g., cooperative, microfinance institution), or the post office (if applicable) including respondents who reported having a debit card (% ages 15-24). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11623_4.5\",\"Account at a formal financial institution, older adults (% age 25+)\",\"Denotes the percentage of respondents with an account (self or together with someone else) at a bank, credit union, another financial institution (e.g., cooperative, microfinance institution), or the post office (if applicable) including respondents who reported having a debit card (% age 25+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11623_4.6\",\"Account at a financial institution, primary education or less (% ages 15+) [w1]\",\"Denotes the percentage of respondents with an account (self or together with someone else) at a bank, credit union, another financial institution (e.g., cooperative, microfinance institution), or the post office (if applicable) including respondents who reported having a debit card (primary education or less, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11623_4.7\",\"Account at a financial institution, secondary education or more (% ages 15+) [w1]\",\"Denotes the percentage of respondents with an account (self or together with someone else) at a bank, credit union, another financial institution (e.g., cooperative, microfinance institution), or the post office (if applicable) including respondents who reported having a debit card (secondary education or more, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11623_4.8\",\"Account at a formal financial institution, income, bottom 40% (% age 15+)\",\"Denotes the percentage of respondents with an account (self or together with someone else) at a bank, credit union, another financial institution (e.g., cooperative, microfinance institution), or the post office (if applicable) including respondents who reported having a debit card (income, poorest 40%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11623_4.9\",\"Account at a formal financial institution, income quintiles III, IV, and V (highest)  (% age 15+)\",\"Denotes the percentage of respondents with an account (self or together with someone else) at a bank, credit union, another financial institution (e.g., cooperative, microfinance institution), or the post office (if applicable) including respondents who reported having a debit card (income, richest 60%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11625.1\",\"Used an account at a financial institution for business purposes (% age 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution for business purposes only or for both business purposes and personal transactions (% age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11625.10\",\"Used an account at a financial institution for business purposes, rural (% age 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution for business purposes only or for both business purposes and personal transactions (rural, % age 15+ ). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11625.2\",\"Used an account at a financial institution for business purposes, male (% age 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution for business purposes only or for both business purposes and personal transactions (male, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11625.3\",\"Used an account at a financial institution for business purposes, female (% age 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution for business purposes only or for both business purposes and personal transactions (female, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11625.4\",\"Used an account at a financial institution for business purposes, young adults (% ages 15-24) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution for business purposes only or for both business purposes and personal transactions (% ages 15-24). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11625.5\",\"Used an account at a financial institution for business purposes, older adults (% ages 25+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution for business purposes only or for both business purposes and personal transactions (% age 25+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11625.6\",\"Used an account at a financial institution for business purposes, primary education or less (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution for business purposes only or for both business purposes and personal transactions (primary education or less, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11625.7\",\"Used an account at a financial institution for business purposes, secondary education or more (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution for business purposes only or for both business purposes and personal transactions (secondary education or more, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11625.8\",\"Used an account at a financial institution for business purposes, income, poorest 40% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution for business purposes only or for both business purposes and personal transactions (income, poorest 40%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11625.9\",\"Used an account at a financial institution for business purposes, income, richest 60% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution for business purposes only or for both business purposes and personal transactions (income, richest 60%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11626.1\",\"Debit card (% age 15+) [w1]\",\"Denotes the percentage of respondents with a debit card (% age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11626.10\",\"Debit card, rural (% age 15+) [w1]\",\"Denotes the percentage of respondents with a debit card (rural, % age 15+ ). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11626.2\",\"Debit card, male (% age 15+) [w1]\",\"Denotes the percentage of respondents with a debit card (male, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11626.3\",\"Debit card, female (% age 15+) [w1]\",\"Denotes the percentage of respondents with a debit card (female, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11626.4\",\"Debit card, young adults (% ages 15-24) [w1]\",\"Denotes the percentage of respondents with a debit card (% ages 15-24). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11626.5\",\"Debit card, older adults (% ages 25+) [w1]\",\"Denotes the percentage of respondents with a debit card (% age 25+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11626.6\",\"Debit card, primary education or less (% ages 15+) [w1]\",\"Denotes the percentage of respondents with a debit card (primary education or less, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11626.7\",\"Debit card, secondary education or more (% ages 15+) [w1]\",\"Denotes the percentage of respondents with a debit card (secondary education or more, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11626.8\",\"Debit card, income, poorest 40% (% ages 15+) [w1]\",\"Denotes the percentage of respondents with a debit card (income, poorest 40%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11626.9\",\"Debit card, income, richest 60% (% ages 15+) [w1]\",\"Denotes the percentage of respondents with a debit card (income, richest 60%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11627.1\",\"Credit card (% age 15+) [w1]\",\"Denotes the percentage of respondents with a credit card (% age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11627.10\",\"Credit card, rural (% age 15+) [w1]\",\"Denotes the percentage of respondents with a credit card (rural, % age 15+ ). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11627.2\",\"Credit card, male (% age 15+) [w1]\",\"Denotes the percentage of respondents with a credit card (male, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11627.3\",\"Credit card, female (% age 15+) [w1]\",\"Denotes the percentage of respondents with a credit card (female, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11627.4\",\"Credit card, young adults (% ages 15-24) [w1]\",\"Denotes the percentage of respondents with a credit card (% ages 15-24). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11627.5\",\"Credit card, older adults (% ages 25+) [w1]\",\"Denotes the percentage of respondents with a credit card (% age 25+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11627.6\",\"Credit card, primary education or less (% ages 15+) [w1]\",\"Denotes the percentage of respondents with a credit card (primary education or less, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11627.7\",\"Credit card, secondary education or more (% ages 15+) [w1]\",\"Denotes the percentage of respondents with a credit card (secondary education or more, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11627.8\",\"Credit card, income, poorest 40% (% ages 15+) [w1]\",\"Denotes the percentage of respondents with a credit card (income, poorest 40%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11627.9\",\"Credit card, income, richest 60% (% ages 15+) [w1]\",\"Denotes the percentage of respondents with a credit card (income, richest 60%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11628.1.1\",\"Deposits in a typical month: 0 (% with an account, age 15+) [w1]\",\"Denotes the percentage of respondents with an account at a formal financial institution who report making zero deposits into their personal account(s) in a typical month. This includes cash or electronic deposits, or any time money is put into account(s) by self or others (% age 15+, with an account). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11628.2.1\",\"Deposits in a typical month: 1 or 2 (% with an account, age 15+) [w1]\",\"Denotes the percentage of respondents with an account at a formal financial institution who report making 1 to 2 deposits into their personal account(s) in a typical month. This includes cash or electronic deposits, or any time money is put into account(s) by self or others (% age 15+, with an account). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11628.3.1\",\"Deposits in a typical month: 3+ (% with an account, age 15+) [w1]\",\"Denotes the percentage of respondents with an account at a formal financial institution who report making 3 or more deposits into their personal account(s) in a typical month. This includes cash or electronic deposits, or any time money is put into account(s) by self or others (% age 15+, with an account). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11628_9.1.1\",\"Deposits and withdrawals in a typical month: 0 (% with an account, age 15+) [w1]\",\"Denotes the percentage of respondents with an account at a formal financial institution who report making zero deposits into or zero withdrawals from their personal account(s) in a typical month (also called “inactive account”). This includes cash or electronic deposits, or any time money is put into or removed from account(s) by self or others (% age 15+, with an account). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11629.1.1\",\"Withdrawals in a typical month: 0 (% with an account, age 15+) [w1]\",\"Denotes the percentage of respondents with an account at a formal financial institution who report making zero withdrawals from their personal account(s) in a typical month. This includes cash or electronic deposits, or any time money is removed from account(s) by self or others (% age 15+, with an account). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11629.2.1\",\"Withdrawals in a typical month: 1 or 2 (% with an account, age 15+) [w1]\",\"Denotes the percentage of respondents with an account at a formal financial institution who report making 1 to 2 withdrawals from their personal account(s) in a typical month. This includes cash or electronic deposits, or any time money is removed from account(s) by self or others (% age 15+, with an account). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11629.3.1\",\"Withdrawals in a typical month: 3+ (% with an account, age 15+) [w1]\",\"Denotes the percentage of respondents with an account at a formal financial institution who report making 3 or more withdrawals from their personal account(s) in a typical month. This includes cash or electronic deposits, or any time money is removed from account(s) by self or others (% age 15+, with an account). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11630.1.1\",\"Main mode of withdrawal: ATM (% with an account, age 15+) [w1]\",\"Denotes the percentage of respondents with an account at a formal financial institution who report utilizing an automated teller machine (ATM) as their usual mode of access to get cash (paper or coins) from their account(s) (% age 15+, with an account). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11630.2.1\",\"Main mode of withdrawal: bank teller (% with an account, age 15+) [w1]\",\"Denotes the percentage of respondents with an account at a formal financial institution who report transacting with a teller over the counter in a branch of their bank or financial institution as their usual mode of access to get cash (paper or coins) from their account(s) (% age 15+, with an account). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11630.3.1\",\"Main mode of withdrawal: retail store (% with an account, age 15+) [w1]\",\"Denotes the percentage of respondents with an account at a formal financial institution who report transacting with someone over the counter at a retail store as their usual mode of access to get cash (paper or coins) from their account(s) (% age 15+, with an account). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11630.4.1\",\"Main mode of withdrawal: bank agent (% with an account, age 15+) [w1]\",\"Denotes the percentage of respondents with an account at a formal financial institution who report utilizing some other person who is associated with their bank or financial institution as their usual mode of access to get cash (paper or coins) from their account(s) (% age 15+, with an account). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11631.1.1\",\"Main mode of deposit: ATM (% with an account, age 15+) [w1]\",\"Denotes the percentage of respondents with an account at a formal financial institution who report utilizing an automated teller machine (ATM) as their usual mode of access to put cash (paper or coins) into their account(s) (% age 15+, with an account). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11631.2.1\",\"Main mode of deposit: bank teller (% with an account, age 15+) [w1]\",\"Denotes the percentage of respondents with an account at a formal financial institution who report transacting with a teller over the counter in a branch of their bank or financial institution as their usual mode of access to put cash (paper or coins) into their account(s) (% age 15+, with an account). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11631.3.1\",\"Main mode of deposit: retail store (% with an account, age 15+) [w1]\",\"Denotes the percentage of respondents with an account at a formal financial institution who report transacting with someone over the counter at a retail store as their usual mode of access to put cash (paper or coins) into their account(s) (% age 15+, with an account). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11631.4.1\",\"Main mode of deposit: bank agent (% with an account, age 15+) [w1]\",\"Denotes the percentage of respondents with an account at a formal financial institution who report utilizing some other person who is associated with their bank or financial institution as their usual mode of access to put cash (paper or coins) into their account(s) (% age 15+, with an account). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11632.1\",\"Used checks to make payments (% age 15+) [w1]\",\"Denotes the percentage of respondents who used checks in the past 12 months to make payments on bills or to buy things using money from their accounts (% age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11632.10\",\"Used checks to make payments, rural (% age 15+) [w1]\",\"Denotes the percentage of respondents who used checks in the past 12 months to make payments on bills or to buy things using money from their accounts (rural, % age 15+ ). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11632.2\",\"Used checks to make payments, male (% age 15+) [w1]\",\"Denotes the percentage of respondents who used checks in the past 12 months to make payments on bills or to buy things using money from their accounts (male, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11632.3\",\"Used checks to make payments, female (% age 15+) [w1]\",\"Denotes the percentage of respondents who used checks in the past 12 months to make payments on bills or to buy things using money from their accounts (female, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11632.4\",\"Used checks to make payments, young adults (% ages 15-24) [w1]\",\"Denotes the percentage of respondents who used checks in the past 12 months to make payments on bills or to buy things using money from their accounts (% ages 15-24). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11632.5\",\"Used checks to make payments, older adults (% ages 25+) [w1]\",\"Denotes the percentage of respondents who used checks in the past 12 months to make payments on bills or to buy things using money from their accounts (% age 25+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11632.6\",\"Used checks to make payments, primary education or less (% ages 15+) [w1]\",\"Denotes the percentage of respondents who used checks in the past 12 months to make payments on bills or to buy things using money from their accounts (primary education or less, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11632.7\",\"Used checks to make payments, secondary education or more (% ages 15+) [w1]\",\"Denotes the percentage of respondents who used checks in the past 12 months to make payments on bills or to buy things using money from their accounts (secondary education or more, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11632.8\",\"Used checks to make payments, income, poorest 40% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who used checks in the past 12 months to make payments on bills or to buy things using money from their accounts (income, poorest 40%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11632.9\",\"Used checks to make payments, income, richest 60% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who used checks in the past 12 months to make payments on bills or to buy things using money from their accounts (income, richest 60%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11633.1\",\"Used electronic payments to make payments (% age 15+) [w1]\",\"Denotes the percentage of respondents who used electronic payments (payments that one makes or that are made automatically including wire transfers or payments made online) in the past 12 months to make payments on bills or to buy things using money from their accounts (% age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11633.10\",\"Used electronic payments to make payments, rural (% age 15+) [w1]\",\"Denotes the percentage of respondents who used electronic payments (payments that one makes or that are made automatically including wire transfers or payments made online) in the past 12 months to make payments on bills or to buy things using money from their accounts (rural, % age 15+ ). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11633.2\",\"Used electronic payments to make payments, male (% age 15+) [w1]\",\"Denotes the percentage of respondents who used electronic payments (payments that one makes or that are made automatically including wire transfers or payments made online) in the past 12 months to make payments on bills or to buy things using money from their accounts (male, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11633.3\",\"Used electronic payments to make payments, female (% age 15+) [w1]\",\"Denotes the percentage of respondents who used electronic payments (payments that one makes or that are made automatically including wire transfers or payments made online) in the past 12 months to make payments on bills or to buy things using money from their accounts (female, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11633.4\",\"Used electronic payments to make payments, young adults (% ages 15-24) [w1]\",\"Denotes the percentage of respondents who used electronic payments (payments that one makes or that are made automatically including wire transfers or payments made online) in the past 12 months to make payments on bills or to buy things using money from their accounts (% ages 15-24). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11633.5\",\"Used electronic payments to make payments, older adults (% ages 25+) [w1]\",\"Denotes the percentage of respondents who used electronic payments (payments that one makes or that are made automatically including wire transfers or payments made online) in the past 12 months to make payments on bills or to buy things using money from their accounts (% age 25+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11633.6\",\"Used electronic payments to make payments, primary education or less (% ages 15+) [w1]\",\"Denotes the percentage of respondents who used electronic payments (payments that one makes or that are made automatically including wire transfers or payments made online) in the past 12 months to make payments on bills or to buy things using money from their accounts (primary education or less, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11633.7\",\"Used electronic payments to make payments, secondary education or more (% ages 15+) [w1]\",\"Denotes the percentage of respondents who used electronic payments (payments that one makes or that are made automatically including wire transfers or payments made online) in the past 12 months to make payments on bills or to buy things using money from their accounts (secondary education or more, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11633.8\",\"Used electronic payments to make payments, income, poorest 40% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who used electronic payments (payments that one makes or that are made automatically including wire transfers or payments made online) in the past 12 months to make payments on bills or to buy things using money from their accounts (income, poorest 40%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11633.9\",\"Used electronic payments to make payments, income, richest 60% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who used electronic payments (payments that one makes or that are made automatically including wire transfers or payments made online) in the past 12 months to make payments on bills or to buy things using money from their accounts (income, richest 60%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11634.1\",\"Used an account at a financial institution to receive wages (% age 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to receive money or payments for work or from selling goods in the past 12 months (% age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11634.10\",\"Used an account at a financial institution to receive wages, rural (% age 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to receive money or payments for work or from selling goods in the past 12 months (rural, % age 15+ ). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11634.2\",\"Used an account at a financial institution to receive wages, male (% age 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to receive money or payments for work or from selling goods in the past 12 months (male, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11634.3\",\"Used an account at a financial institution to receive wages, female (% age 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to receive money or payments for work or from selling goods in the past 12 months (female, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11634.4\",\"Used an account at a financial institution to receive wages, young adults (% ages 15-24) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to receive money or payments for work or from selling goods in the past 12 months (% ages 15-24). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11634.5\",\"Used an account at a financial institution to receive wages, older adults (% ages 25+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to receive money or payments for work or from selling goods in the past 12 months (% age 25+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11634.6\",\"Used an account at a financial institution to receive wages, primary education or less (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to receive money or payments for work or from selling goods in the past 12 months (primary education or less, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11634.7\",\"Used an account at a financial institution to receive wages, secondary education or more (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to receive money or payments for work or from selling goods in the past 12 months (secondary education or more, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11634.8\",\"Used an account at a financial institution to receive wages, income, poorest 40% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to receive money or payments for work or from selling goods in the past 12 months (income, poorest 40%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11634.9\",\"Used an account at a financial institution to receive wages, income, richest 60% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to receive money or payments for work or from selling goods in the past 12 months (income, richest 60%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11635.1\",\"Used an account at a financial institution to receive government transfers (% age 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to receive money or payments from the government in the past 12 months (% age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11635.10\",\"Used an account at a financial institution to receive government transfers, rural (% age 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to receive money or payments from the government in the past 12 months (rural, % age 15+ ). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11635.2\",\"Used an account at a financial institution to receive government transfers, male (% age 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to receive money or payments from the government in the past 12 months (male, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11635.3\",\"Used an account at a financial institution to receive government transfers, female (% age 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to receive money or payments from the government in the past 12 months (female, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11635.4\",\"Used an account at a financial institution to receive government transfers, young adults (% ages 15-24) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to receive money or payments from the government in the past 12 months (% ages 15-24). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11635.5\",\"Used an account at a financial institution to receive government transfers, older adults (% ages 25+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to receive money or payments from the government in the past 12 months (% age 25+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11635.6\",\"Used an account at a financial institution to receive government transfers, primary education or less (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to receive money or payments from the government in the past 12 months (primary education or less, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11635.7\",\"Used an account at a financial institution to receive government transfers, secondary education or more (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to receive money or payments from the government in the past 12 months (secondary education or more, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11635.8\",\"Used an account at a financial institution to receive government transfers, income, poorest 40% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to receive money or payments from the government in the past 12 months (income, poorest 40%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11635.9\",\"Used an account at a financial institution to receive government transfers, income, richest 60% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to receive money or payments from the government in the past 12 months (income, richest 60%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11636.1\",\"Used an account at a financial institution to receive remittances (% age 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to receive money from family members living elsewhere in the past 12 months (% age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11636.10\",\"Used an account at a financial institution to receive remittances, rural (% age 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to receive money from family members living elsewhere in the past 12 months (rural, % age 15+ ). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11636.2\",\"Used an account at a financial institution to receive remittances, male (% age 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to receive money from family members living elsewhere in the past 12 months (male, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11636.3\",\"Used an account at a financial institution to receive remittances, female (% age 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to receive money from family members living elsewhere in the past 12 months (female, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11636.4\",\"Used an account at a financial institution to receive remittances, young adults (% ages 15-24) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to receive money from family members living elsewhere in the past 12 months (% ages 15-24). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11636.5\",\"Used an account at a financial institution to receive remittances, older adults (% ages 25+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to receive money from family members living elsewhere in the past 12 months (% age 25+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11636.6\",\"Used an account at a financial institution to receive remittances, primary education or less (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to receive money from family members living elsewhere in the past 12 months (primary education or less, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11636.7\",\"Used an account at a financial institution to receive remittances, secondary education or more (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to receive money from family members living elsewhere in the past 12 months (secondary education or more, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11636.8\",\"Used an account at a financial institution to receive remittances, income, poorest 40% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to receive money from family members living elsewhere in the past 12 months (income, poorest 40%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11636.9\",\"Used an account at a financial institution to receive remittances, income, richest 60% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to receive money from family members living elsewhere in the past 12 months (income, richest 60%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11637.1\",\"Used an account at a financial institution to send remittances (% age 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to send money to family members living elsewhere in the past 12 months (% age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11637.10\",\"Used an account at a financial institution to send remittances, rural (% age 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to send money to family members living elsewhere in the past 12 months (rural, % age 15+ ). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11637.2\",\"Used an account at a financial institution to send remittances, male (% age 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to send money to family members living elsewhere in the past 12 months (male, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11637.3\",\"Used an account at a financial institution to send remittances, female (% age 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to send money to family members living elsewhere in the past 12 months (female, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11637.4\",\"Used an account at a financial institution to send remittances, young adults (% ages 15-24) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to send money to family members living elsewhere in the past 12 months (% ages 15-24). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11637.5\",\"Used an account at a financial institution to send remittances, older adults (% ages 25+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to send money to family members living elsewhere in the past 12 months (% age 25+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11637.6\",\"Used an account at a financial institution to send remittances, primary education or less (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to send money to family members living elsewhere in the past 12 months (primary education or less, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11637.7\",\"Used an account at a financial institution to send remittances, secondary education or more (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to send money to family members living elsewhere in the past 12 months (secondary education or more, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11637.8\",\"Used an account at a financial institution to send remittances, income, poorest 40% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to send money to family members living elsewhere in the past 12 months (income, poorest 40%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11637.9\",\"Used an account at a financial institution to send remittances, income, richest 60% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report using their accounts at a formal financial institution to send money to family members living elsewhere in the past 12 months (income, richest 60%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11645.1\",\"Saved any money in the past year (% age 15+) [w1]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months (% age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11645.10\",\"Saved any money in the past year, rural (% age 15+) [w1]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months (rural, % age 15+ ). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11645.2\",\"Saved any money in the past year, male (% age 15+) [w1]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months (male, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11645.3\",\"Saved any money in the past year, female (% age 15+) [w1]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months (female, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11645.4\",\"Saved any money in the past year, young adults (% ages 15-24) [w1]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months (% ages 15-24). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11645.5\",\"Saved any money in the past year, older adults (% ages 25+) [w1]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months (% age 25+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11645.6\",\"Saved any money in the past year, primary education or less (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months (primary education or less, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11645.7\",\"Saved any money in the past year, secondary education or more (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months (secondary education or more, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11645.8\",\"Saved any money in the past year, income, poorest 40% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months (income, poorest 40%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11645.9\",\"Saved any money in the past year, income, richest 60% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months (income, richest 60%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11646.1\",\"Saved for future expenses (% age 15+) [w1]\",\"Denotes the percentage of respondents who report saving for expenses in the future such as education, a wedding, or a big purchase in the past 12 months (% age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11646.10\",\"Saved for future expenses, rural (% age 15+) [w1]\",\"Denotes the percentage of respondents who report saving for expenses in the future such as education, a wedding, or a big purchase in the past 12 months (rural, % age 15+ ). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11646.2\",\"Saved for future expenses, male (% age 15+) [w1]\",\"Denotes the percentage of respondents who report saving for expenses in the future such as education, a wedding, or a big purchase in the past 12 months (male, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11646.3\",\"Saved for future expenses, female (% age 15+) [w1]\",\"Denotes the percentage of respondents who report saving for expenses in the future such as education, a wedding, or a big purchase in the past 12 months (female, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11646.4\",\"Saved for future expenses, young adults (% ages 15-24) [w1]\",\"Denotes the percentage of respondents who report saving for expenses in the future such as education, a wedding, or a big purchase in the past 12 months (% ages 15-24). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11646.5\",\"Saved for future expenses, older adults (% ages 25+) [w1]\",\"Denotes the percentage of respondents who report saving for expenses in the future such as education, a wedding, or a big purchase in the past 12 months (% age 25+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11646.6\",\"Saved for future expenses, primary education or less (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report saving for expenses in the future such as education, a wedding, or a big purchase in the past 12 months (primary education or less, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11646.7\",\"Saved for future expenses, secondary education or more (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report saving for expenses in the future such as education, a wedding, or a big purchase in the past 12 months (secondary education or more, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11646.8\",\"Saved for future expenses, income, poorest 40% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report saving for expenses in the future such as education, a wedding, or a big purchase in the past 12 months (income, poorest 40%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11646.9\",\"Saved for future expenses, income, richest 60% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report saving for expenses in the future such as education, a wedding, or a big purchase in the past 12 months (income, richest 60%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11647.1\",\"Saved for emergencies (% age 15+) [w1]\",\"Denotes the percentage of respondents who report having saved for emergencies or a time when they expect to have less income in the past 12 months (% age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11647.10\",\"Saved for emergencies, rural (% age 15+) [w1]\",\"Denotes the percentage of respondents who report having saved for emergencies or a time when they expect to have less income in the past 12 months (rural, % age 15+ ). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11647.2\",\"Saved for emergencies, male (% age 15+) [w1]\",\"Denotes the percentage of respondents who report having saved for emergencies or a time when they expect to have less income in the past 12 months (male, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11647.3\",\"Saved for emergencies, female (% age 15+) [w1]\",\"Denotes the percentage of respondents who report having saved for emergencies or a time when they expect to have less income in the past 12 months (female, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11647.4\",\"Saved for emergencies, young adults (% ages 15-24) [w1]\",\"Denotes the percentage of respondents who report having saved for emergencies or a time when they expect to have less income in the past 12 months (% ages 15-24). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11647.5\",\"Saved for emergencies, older adults (% ages 25+) [w1]\",\"Denotes the percentage of respondents who report having saved for emergencies or a time when they expect to have less income in the past 12 months (% age 25+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11647.6\",\"Saved for emergencies, primary education or less (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report having saved for emergencies or a time when they expect to have less income in the past 12 months (primary education or less, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11647.7\",\"Saved for emergencies, secondary education or more (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report having saved for emergencies or a time when they expect to have less income in the past 12 months (secondary education or more, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11647.8\",\"Saved for emergencies, income, poorest 40% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report having saved for emergencies or a time when they expect to have less income in the past 12 months (income, poorest 40%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11647.9\",\"Saved for emergencies, income, richest 60% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report having saved for emergencies or a time when they expect to have less income in the past 12 months (income, richest 60%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11648.1\",\"Saved at a financial institution in the past year (% age 15+)\",\"Denotes the percentage of respondents who report saving or setting aside any money by using an account at a formal financial institution such as a bank, credit union, microfinance institution, or cooperative in the past 12 months (% age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11648.10\",\"Saved at a financial institution in the past year, rural (% age 15+)\",\"Denotes the percentage of respondents who report saving or setting aside any money by using an account at a formal financial institution such as a bank, credit union, microfinance institution, or cooperative in the past 12 months (rural, % age 15+ ). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11648.2\",\"Saved at a financial institution in the past year, male (% age 15+)\",\"Denotes the percentage of respondents who report saving or setting aside any money by using an account at a formal financial institution such as a bank, credit union, microfinance institution, or cooperative in the past 12 months (male, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11648.3\",\"Saved at a financial institution in the past year, female (% age 15+)\",\"Denotes the percentage of respondents who report saving or setting aside any money by using an account at a formal financial institution such as a bank, credit union, microfinance institution, or cooperative in the past 12 months (female, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11648.4\",\"Saved at a financial institution in the past year, young adults (% ages 15-24)\",\"Denotes the percentage of respondents who report saving or setting aside any money by using an account at a formal financial institution such as a bank, credit union, microfinance institution, or cooperative in the past 12 months (% ages 15-24). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11648.5\",\"Saved at a financial institution in the past year, older adults (% age 25+)\",\"Denotes the percentage of respondents who report saving or setting aside any money by using an account at a formal financial institution such as a bank, credit union, microfinance institution, or cooperative in the past 12 months (% age 25+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11648.6\",\"Saved at a financial institution, primary education or less (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report saving or setting aside any money by using an account at a formal financial institution such as a bank, credit union, microfinance institution, or cooperative in the past 12 months (primary education or less, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11648.7\",\"Saved at a financial institution, secondary education or more (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report saving or setting aside any money by using an account at a formal financial institution such as a bank, credit union, microfinance institution, or cooperative in the past 12 months (secondary education or more, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11648.8\",\"Saved at a financial institution in the past year, income quintiles I (lowest) and II (% age 15+)\",\"Denotes the percentage of respondents who report saving or setting aside any money by using an account at a formal financial institution such as a bank, credit union, microfinance institution, or cooperative in the past 12 months (income, poorest 40%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11648.9\",\"Saved at a financial institution in the past year, income quintiles III, IV, and V (highest)  (% age 15+)\",\"Denotes the percentage of respondents who report saving or setting aside any money by using an account at a formal financial institution such as a bank, credit union, microfinance institution, or cooperative in the past 12 months (income, richest 60%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11649.1\",\"Saved using a savings club or a person outside the family (% age 15+) [w1]\",\"Denotes the percentage of respondents who report saving or setting aside any money by using an informal savings club or a person outside the family in the past 12 months (% age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11649.10\",\"Saved using a savings club or a person outside the family, rural (% age 15+) [w1]\",\"Denotes the percentage of respondents who report saving or setting aside any money by using an informal savings club or a person outside the family in the past 12 months (rural, % age 15+ ). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11649.2\",\"Saved using a savings club or a person outside the family, male (% age 15+) [w1]\",\"Denotes the percentage of respondents who report saving or setting aside any money by using an informal savings club or a person outside the family in the past 12 months (male, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11649.3\",\"Saved using a savings club or a person outside the family, female (% age 15+) [w1]\",\"Denotes the percentage of respondents who report saving or setting aside any money by using an informal savings club or a person outside the family in the past 12 months (female, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11649.4\",\"Saved using a savings club or a person outside the family, young adults (% ages 15-24) [w1]\",\"Denotes the percentage of respondents who report saving or setting aside any money by using an informal savings club or a person outside the family in the past 12 months (% ages 15-24). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11649.5\",\"Saved using a savings club or a person outside the family, older adults (% ages 25+) [w1]\",\"Denotes the percentage of respondents who report saving or setting aside any money by using an informal savings club or a person outside the family in the past 12 months (% age 25+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11649.6\",\"Saved using a savings club or a person outside the family, primary education or less (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report saving or setting aside any money by using an informal savings club or a person outside the family in the past 12 months (primary education or less, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11649.7\",\"Saved using a savings club or a person outside the family, secondary education or more (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report saving or setting aside any money by using an informal savings club or a person outside the family in the past 12 months (secondary education or more, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11649.8\",\"Saved using a savings club or a person outside the family, income, poorest 40% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report saving or setting aside any money by using an informal savings club or a person outside the family in the past 12 months (income, poorest 40%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11649.9\",\"Saved using a savings club or a person outside the family, income, richest 60% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report saving or setting aside any money by using an informal savings club or a person outside the family in the past 12 months (income, richest 60%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11651.1\",\"Loan from a financial institution in the past year (% age 15+)\",\"Denotes the percentage of respondents who report borrowing any money from a bank, credit union, microfinance institution, or another financial institution such as a cooperative in the past 12 months (% age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11651.10\",\"Loan from a financial institution in the past year, rural (% age 15+)\",\"Denotes the percentage of respondents who report borrowing any money from a bank, credit union, microfinance institution, or another financial institution such as a cooperative in the past 12 months (rural, % age 15+ ). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11651.2\",\"Loan from a financial institution in the past year, male (% age 15+)\",\"Denotes the percentage of respondents who report borrowing any money from a bank, credit union, microfinance institution, or another financial institution such as a cooperative in the past 12 months (male, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11651.3\",\"Loan from a financial institution in the past year, female (% age 15+)\",\"Denotes the percentage of respondents who report borrowing any money from a bank, credit union, microfinance institution, or another financial institution such as a cooperative in the past 12 months (female, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11651.4\",\"Loan from a financial institution in the past year, young adults (% ages 15-24)\",\"Denotes the percentage of respondents who report borrowing any money from a bank, credit union, microfinance institution, or another financial institution such as a cooperative in the past 12 months (% ages 15-24). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11651.5\",\"Loan from a financial institution in the past year, older adults (% age 25+)\",\"Denotes the percentage of respondents who report borrowing any money from a bank, credit union, microfinance institution, or another financial institution such as a cooperative in the past 12 months (% age 25+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11651.6\",\"Borrowed from a financial institution, primary education or less (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report borrowing any money from a bank, credit union, microfinance institution, or another financial institution such as a cooperative in the past 12 months (primary education or less, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11651.7\",\"Borrowed from a financial institution, secondary education or more (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report borrowing any money from a bank, credit union, microfinance institution, or another financial institution such as a cooperative in the past 12 months (secondary education or more, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11651.8\",\"Loan from a financial institution in the past year, income quintiles I (lowest) and II (% age 15+)\",\"Denotes the percentage of respondents who report borrowing any money from a bank, credit union, microfinance institution, or another financial institution such as a cooperative in the past 12 months (income, poorest 40%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11651.9\",\"Loan from a financial institution in the past year, income quintiles III, IV, and V (highest)  (% age 15+)\",\"Denotes the percentage of respondents who report borrowing any money from a bank, credit union, microfinance institution, or another financial institution such as a cooperative in the past 12 months (income, richest 60%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11651_5.2\",\"Loan in the past year, male (% age 15+) [w1]\",\"Denotes the percentage of respondents who borrowed any money in the past 12 months from any of the following sources: a formal financial institution, a store by using installment credit, family or friends, employer, or another private lender (male, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11651_5.3\",\"Loan in the past year, female (% age 15+) [w1]\",\"Denotes the percentage of respondents who borrowed any money in the past 12 months from any of the following sources: a formal financial institution, a store by using installment credit, family or friends, employer, or another private lender (female, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11651_5.4\",\"Loan in the past year, young adults (% ages 15-24) [w1]\",\"Denotes the percentage of respondents who borrowed any money in the past 12 months from any of the following sources: a formal financial institution, a store by using installment credit, family or friends, employer, or another private lender (% ages 15-24). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11651_5.5\",\"Loan in the past year, older adults (% ages 25+) [w1]\",\"Denotes the percentage of respondents who borrowed any money in the past 12 months from any of the following sources: a formal financial institution, a store by using installment credit, family or friends, employer, or another private lender (% age 25+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11651_5.6\",\"Loan in the past year, primary education or less (% ages 15+) [w1]\",\"Denotes the percentage of respondents who borrowed any money in the past 12 months from any of the following sources: a formal financial institution, a store by using installment credit, family or friends, employer, or another private lender (primary education or less, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11651_5.7\",\"Loan in the past year, secondary education or more (% ages 15+) [w1]\",\"Denotes the percentage of respondents who borrowed any money in the past 12 months from any of the following sources: a formal financial institution, a store by using installment credit, family or friends, employer, or another private lender (secondary education or more, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11651_5.8\",\"Loan in the past year, income, poorest 40% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who borrowed any money in the past 12 months from any of the following sources: a formal financial institution, a store by using installment credit, family or friends, employer, or another private lender (income, poorest 40%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11651_5.9\",\"Loan in the past year, income, richest 60% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who borrowed any money in the past 12 months from any of the following sources: a formal financial institution, a store by using installment credit, family or friends, employer, or another private lender (income, richest 60%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11652.1\",\"Borrowed from a store by buying on credit (% age 15+) [w1]\",\"Denotes the percentage of respondents who borrowed any money in the past 12 months from a store by using installment credit or buying on credit (% age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11652.10\",\"Borrowed from a store by buying on credit, rural (% age 15+) [w1]\",\"Denotes the percentage of respondents who borrowed any money in the past 12 months from a store by using installment credit or buying on credit (rural, % age 15+ ). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11652.2\",\"Borrowed from a store by buying on credit, male (% age 15+) [w1]\",\"Denotes the percentage of respondents who borrowed any money in the past 12 months from a store by using installment credit or buying on credit (male, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11652.3\",\"Borrowed from a store by buying on credit, female (% age 15+) [w1]\",\"Denotes the percentage of respondents who borrowed any money in the past 12 months from a store by using installment credit or buying on credit (female, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11652.4\",\"Borrowed from a store by buying on credit, young adults (% ages 15-24) [w1]\",\"Denotes the percentage of respondents who borrowed any money in the past 12 months from a store by using installment credit or buying on credit (% ages 15-24). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11652.5\",\"Borrowed from a store by buying on credit, older adults (% ages 25+) [w1]\",\"Denotes the percentage of respondents who borrowed any money in the past 12 months from a store by using installment credit or buying on credit (% age 25+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11652.6\",\"Borrowed from a store by buying on credit, primary education or less (% ages 15+) [w1]\",\"Denotes the percentage of respondents who borrowed any money in the past 12 months from a store by using installment credit or buying on credit (primary education or less, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11652.7\",\"Borrowed from a store by buying on credit, secondary education or more (% ages 15+) [w1]\",\"Denotes the percentage of respondents who borrowed any money in the past 12 months from a store by using installment credit or buying on credit (secondary education or more, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11652.8\",\"Borrowed from a store by buying on credit, income, poorest 40% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who borrowed any money in the past 12 months from a store by using installment credit or buying on credit (income, poorest 40%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11652.9\",\"Borrowed from a store by buying on credit, income, richest 60% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who borrowed any money in the past 12 months from a store by using installment credit or buying on credit (income, richest 60%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11653.1\",\"Borrowed from family or friends (% age 15+) [w1]\",\"Denotes the percentage of respondents who report borrowing any money from family or friends in the past 12 months (% age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11653.10\",\"Borrowed from family or friends, rural (% age 15+) [w1]\",\"Denotes the percentage of respondents who report borrowing any money from family or friends in the past 12 months (rural, % age 15+ ). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11653.2\",\"Borrowed from family or friends, male (% age 15+) [w1]\",\"Denotes the percentage of respondents who report borrowing any money from family or friends in the past 12 months (male, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11653.3\",\"Borrowed from family or friends, female (% age 15+) [w1]\",\"Denotes the percentage of respondents who report borrowing any money from family or friends in the past 12 months (female, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11653.4\",\"Borrowed from family or friends, young adults (% ages 15-24) [w1]\",\"Denotes the percentage of respondents who report borrowing any money from family or friends in the past 12 months (% ages 15-24). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11653.5\",\"Borrowed from family or friends, older adults (% ages 25+) [w1]\",\"Denotes the percentage of respondents who report borrowing any money from family or friends in the past 12 months (% age 25+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11653.6\",\"Borrowed from family or friends, primary education or less (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report borrowing any money from family or friends in the past 12 months (primary education or less, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11653.7\",\"Borrowed from family or friends, secondary education or more (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report borrowing any money from family or friends in the past 12 months (secondary education or more, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11653.8\",\"Borrowed from family or friends, income, poorest 40% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report borrowing any money from family or friends in the past 12 months (income, poorest 40%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11653.9\",\"Borrowed from family or friends, income, richest 60% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report borrowing any money from family or friends in the past 12 months (income, richest 60%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11654.1\",\"Borrowed from an employer (% age 15+) [w1]\",\"Denotes the percentage of respondents who report borrowing any money from an employer in the past 12 months (% age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11654.10\",\"Borrowed from an employer, rural (% age 15+) [w1]\",\"Denotes the percentage of respondents who report borrowing any money from an employer in the past 12 months (rural, % age 15+ ). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11654.2\",\"Borrowed from an employer, male (% age 15+) [w1]\",\"Denotes the percentage of respondents who report borrowing any money from an employer in the past 12 months (male, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11654.3\",\"Borrowed from an employer, female (% age 15+) [w1]\",\"Denotes the percentage of respondents who report borrowing any money from an employer in the past 12 months (female, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11654.4\",\"Borrowed from an employer, young adults (% ages 15-24) [w1]\",\"Denotes the percentage of respondents who report borrowing any money from an employer in the past 12 months (% ages 15-24). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11654.5\",\"Borrowed from an employer, older adults (% ages 25+) [w1]\",\"Denotes the percentage of respondents who report borrowing any money from an employer in the past 12 months (% age 25+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11654.6\",\"Borrowed from an employer, primary education or less (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report borrowing any money from an employer in the past 12 months (primary education or less, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11654.7\",\"Borrowed from an employer, secondary education or more (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report borrowing any money from an employer in the past 12 months (secondary education or more, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11654.8\",\"Borrowed from an employer, income, poorest 40% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report borrowing any money from an employer in the past 12 months (income, poorest 40%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11654.9\",\"Borrowed from an employer, income, richest 60% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report borrowing any money from an employer in the past 12 months (income, richest 60%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11655.1\",\"Borrowed from a private informal lender (% age 15+) [w1]\",\"Denotes the percentage of respondents who report borrowing any money from a private lender in the past 12 months (% age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11655.10\",\"Borrowed from a private informal lender, rural (% age 15+) [w1]\",\"Denotes the percentage of respondents who report borrowing any money from a private lender in the past 12 months (rural, % age 15+ ). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11655.2\",\"Borrowed from a private informal lender, male (% age 15+) [w1]\",\"Denotes the percentage of respondents who report borrowing any money from a private lender in the past 12 months (male, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11655.3\",\"Borrowed from a private informal lender, female (% age 15+) [w1]\",\"Denotes the percentage of respondents who report borrowing any money from a private lender in the past 12 months (female, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11655.4\",\"Borrowed from a private informal lender, young adults (% ages 15-24) [w1]\",\"Denotes the percentage of respondents who report borrowing any money from a private lender in the past 12 months (% ages 15-24). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11655.5\",\"Borrowed from a private informal lender, older adults (% ages 25+) [w1]\",\"Denotes the percentage of respondents who report borrowing any money from a private lender in the past 12 months (% age 25+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11655.6\",\"Borrowed from a private informal lender, primary education or less (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report borrowing any money from a private lender in the past 12 months (primary education or less, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11655.7\",\"Borrowed from a private informal lender, secondary education or more (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report borrowing any money from a private lender in the past 12 months (secondary education or more, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11655.8\",\"Borrowed from a private informal lender, income, poorest 40% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report borrowing any money from a private lender in the past 12 months (income, poorest 40%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11655.9\",\"Borrowed from a private informal lender, income, richest 60% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report borrowing any money from a private lender in the past 12 months (income, richest 60%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11656.1\",\"Outstanding loan to purchase a home (% age 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan to purchase their home or apartment (% age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11656.10\",\"Outstanding loan to purchase a home, rural (% age 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan to purchase their home or apartment (rural, % age 15+ ). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11656.2\",\"Outstanding loan to purchase a home, male (% age 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan to purchase their home or apartment (male, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11656.3\",\"Outstanding loan to purchase a home, female (% age 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan to purchase their home or apartment (female, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11656.4\",\"Outstanding loan to purchase a home, young adults (% ages 15-24) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan to purchase their home or apartment (% ages 15-24). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11656.5\",\"Outstanding loan to purchase a home, older adults (% ages 25+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan to purchase their home or apartment (% age 25+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11656.6\",\"Outstanding loan to purchase a home, primary education or less (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan to purchase their home or apartment (primary education or less, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11656.7\",\"Outstanding loan to purchase a home, secondary education or more (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan to purchase their home or apartment (secondary education or more, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11656.8\",\"Outstanding loan to purchase a home, income, poorest 40% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan to purchase their home or apartment (income, poorest 40%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11656.9\",\"Outstanding loan to purchase a home, income, richest 60% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan to purchase their home or apartment (income, richest 60%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11658.1\",\"Personally paid for health insurance (% age 15+) [w1]\",\"Denotes the percentage of respondents who currently have health or medical insurance (in addition to national health insurance) and who personally purchased this insurance (% age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11658.10\",\"Personally paid for health insurance, rural (% age 15+) [w1]\",\"Denotes the percentage of respondents who currently have health or medical insurance (in addition to national health insurance) and who personally purchased this insurance (rural, % age 15+ ). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11658.2\",\"Personally paid for health insurance, male (% age 15+) [w1]\",\"Denotes the percentage of respondents who currently have health or medical insurance (in addition to national health insurance) and who personally purchased this insurance (male, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11658.3\",\"Personally paid for health insurance, female (% age 15+) [w1]\",\"Denotes the percentage of respondents who currently have health or medical insurance (in addition to national health insurance) and who personally purchased this insurance (female, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11658.4\",\"Personally paid for health insurance, young adults (% ages 15-24) [w1]\",\"Denotes the percentage of respondents who currently have health or medical insurance (in addition to national health insurance) and who personally purchased this insurance (% ages 15-24). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11658.5\",\"Personally paid for health insurance, older adults (% ages 25+) [w1]\",\"Denotes the percentage of respondents who currently have health or medical insurance (in addition to national health insurance) and who personally purchased this insurance (% age 25+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11658.6\",\"Personally paid for health insurance, primary education or less (% ages 15+) [w1]\",\"Denotes the percentage of respondents who currently have health or medical insurance (in addition to national health insurance) and who personally purchased this insurance (primary education or less, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11658.7\",\"Personally paid for health insurance, secondary education or more (% ages 15+) [w1]\",\"Denotes the percentage of respondents who currently have health or medical insurance (in addition to national health insurance) and who personally purchased this insurance (secondary education or more, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11658.8\",\"Personally paid for health insurance, income, poorest 40% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who currently have health or medical insurance (in addition to national health insurance) and who personally purchased this insurance (income, poorest 40%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11658.9\",\"Personally paid for health insurance, income, richest 60% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who currently have health or medical insurance (in addition to national health insurance) and who personally purchased this insurance (income, richest 60%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11659.1\",\"Purchased agriculture insurance (% working in agriculture, age 15+) [w1]\",\"Denotes the percentage of respondents who are farming, fishing or forestry workers and in the past 12 months have personally paid for crop, rainfall, or livestock insurance (% age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11668.1\",\"Outstanding loan for home construction (% age 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan to purchase materials or services to build, extend, or renovate their home or apartment (% age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11668.10\",\"Outstanding loan for home construction, rural (% age 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan to purchase materials or services to build, extend, or renovate their home or apartment (rural, % age 15+ ). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11668.2\",\"Outstanding loan for home construction, male (% age 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan to purchase materials or services to build, extend, or renovate their home or apartment (male, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11668.3\",\"Outstanding loan for home construction, female (% age 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan to purchase materials or services to build, extend, or renovate their home or apartment (female, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11668.4\",\"Outstanding loan for home construction, young adults (% ages 15-24) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan to purchase materials or services to build, extend, or renovate their home or apartment (% ages 15-24). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11668.5\",\"Outstanding loan for home construction, older adults (% ages 25+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan to purchase materials or services to build, extend, or renovate their home or apartment (% age 25+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11668.6\",\"Outstanding loan for home construction, primary education or less (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan to purchase materials or services to build, extend, or renovate their home or apartment (primary education or less, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11668.7\",\"Outstanding loan for home construction, secondary education or more (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan to purchase materials or services to build, extend, or renovate their home or apartment (secondary education or more, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11668.8\",\"Outstanding loan for home construction, income, poorest 40% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan to purchase materials or services to build, extend, or renovate their home or apartment (income, poorest 40%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11668.9\",\"Outstanding loan for home construction, income, richest 60% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan to purchase materials or services to build, extend, or renovate their home or apartment (income, richest 60%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11669.1\",\"Outstanding loan to pay school fees (% age 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan to pay for school fees (% age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11669.10\",\"Outstanding loan to pay school fees, rural (% age 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan to pay for school fees (rural, % age 15+ ). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11669.2\",\"Outstanding loan to pay school fees, male (% age 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan to pay for school fees (male, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11669.3\",\"Outstanding loan to pay school fees, female (% age 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan to pay for school fees (female, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11669.4\",\"Outstanding loan to pay school fees, young adults (% ages 15-24) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan to pay for school fees (% ages 15-24). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11669.5\",\"Outstanding loan to pay school fees, older adults (% ages 25+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan to pay for school fees (% age 25+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11669.6\",\"Outstanding loan to pay school fees, primary education or less (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan to pay for school fees (primary education or less, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11669.7\",\"Outstanding loan to pay school fees, secondary education or more (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan to pay for school fees (secondary education or more, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11669.8\",\"Outstanding loan to pay school fees, income, poorest 40% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan to pay for school fees (income, poorest 40%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11669.9\",\"Outstanding loan to pay school fees, income, richest 60% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan to pay for school fees (income, richest 60%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11670.1\",\"Outstanding loan for health or emergencies (% age 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan for emergency or health purposes (% age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11670.10\",\"Outstanding loan for health or emergencies, rural (% age 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan for emergency or health purposes (rural, % age 15+ ). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11670.2\",\"Outstanding loan for health or emergencies, male (% age 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan for emergency or health purposes (male, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11670.3\",\"Outstanding loan for health or emergencies, female (% age 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan for emergency or health purposes (female, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11670.4\",\"Outstanding loan for health or emergencies, young adults (% ages 15-24) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan for emergency or health purposes (% ages 15-24). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11670.5\",\"Outstanding loan for health or emergencies, older adults (% ages 25+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan for emergency or health purposes (% age 25+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11670.6\",\"Outstanding loan for health or emergencies, primary education or less (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan for emergency or health purposes (primary education or less, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11670.7\",\"Outstanding loan for health or emergencies, secondary education or more (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan for emergency or health purposes (secondary education or more, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11670.8\",\"Outstanding loan for health or emergencies, income, poorest 40% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan for emergency or health purposes (income, poorest 40%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11670.9\",\"Outstanding loan for health or emergencies, income, richest 60% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan for emergency or health purposes (income, richest 60%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11671.1\",\"Outstanding loan for funerals or weddings (% age 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan for a funeral or wedding (% age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11671.10\",\"Outstanding loan for funerals or weddings, rural (% age 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan for a funeral or wedding (rural, % age 15+ ). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11671.2\",\"Outstanding loan for funerals or weddings, male (% age 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan for a funeral or wedding (male, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11671.3\",\"Outstanding loan for funerals or weddings, female (% age 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan for a funeral or wedding (female, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11671.4\",\"Outstanding loan for funerals or weddings, young adults (% ages 15-24) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan for a funeral or wedding (% ages 15-24). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11671.5\",\"Outstanding loan for funerals or weddings, older adults (% ages 25+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan for a funeral or wedding (% age 25+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11671.6\",\"Outstanding loan for funerals or weddings, primary education or less (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan for a funeral or wedding (primary education or less, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11671.7\",\"Outstanding loan for funerals or weddings, secondary education or more (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan for a funeral or wedding (secondary education or more, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11671.8\",\"Outstanding loan for funerals or weddings, income, poorest 40% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan for a funeral or wedding (income, poorest 40%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11671.9\",\"Outstanding loan for funerals or weddings, income, richest 60% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report having an outstanding loan for a funeral or wedding (income, richest 60%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11672.1\",\"Mobile phone used to pay bills (% age 15+) [w1]\",\"Denotes the percentage of respondents who report using a mobile phone to pay bills in the past 12 months (% age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11672.10\",\"Mobile phone used to pay bills, rural (% age 15+) [w1]\",\"Denotes the percentage of respondents who report using a mobile phone to pay bills in the past 12 months (rural, % age 15+ ). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11672.2\",\"Mobile phone used to pay bills, male (% age 15+) [w1]\",\"Denotes the percentage of respondents who report using a mobile phone to pay bills in the past 12 months (male, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11672.3\",\"Mobile phone used to pay bills, female (% age 15+) [w1]\",\"Denotes the percentage of respondents who report using a mobile phone to pay bills in the past 12 months (female, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11672.4\",\"Mobile phone used to pay bills, young adults (% ages 15-24) [w1]\",\"Denotes the percentage of respondents who report using a mobile phone to pay bills in the past 12 months (% ages 15-24). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11672.5\",\"Mobile phone used to pay bills, older adults (% ages 25+) [w1]\",\"Denotes the percentage of respondents who report using a mobile phone to pay bills in the past 12 months (% age 25+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11672.6\",\"Mobile phone used to pay bills, primary education or less (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report using a mobile phone to pay bills in the past 12 months (primary education or less, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11672.7\",\"Mobile phone used to pay bills, secondary education or more (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report using a mobile phone to pay bills in the past 12 months (secondary education or more, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11672.8\",\"Mobile phone used to pay bills, income, poorest 40% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report using a mobile phone to pay bills in the past 12 months (income, poorest 40%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11672.9\",\"Mobile phone used to pay bills, income, richest 60% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report using a mobile phone to pay bills in the past 12 months (income, richest 60%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11673.1\",\"Mobile phone used to send money (% age 15+) [w1]\",\"Denotes the percentage of respondents who report using a mobile phone to send money in the past 12 months (% age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11673.10\",\"Mobile phone used to send money, rural (% age 15+) [w1]\",\"Denotes the percentage of respondents who report using a mobile phone to send money in the past 12 months (rural, % age 15+ ). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11673.2\",\"Mobile phone used to send money, male (% age 15+) [w1]\",\"Denotes the percentage of respondents who report using a mobile phone to send money in the past 12 months (male, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11673.3\",\"Mobile phone used to send money, female (% age 15+) [w1]\",\"Denotes the percentage of respondents who report using a mobile phone to send money in the past 12 months (female, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11673.4\",\"Mobile phone used to send money, young adults (% ages 15-24) [w1]\",\"Denotes the percentage of respondents who report using a mobile phone to send money in the past 12 months (% ages 15-24). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11673.5\",\"Mobile phone used to send money, older adults (% ages 25+) [w1]\",\"Denotes the percentage of respondents who report using a mobile phone to send money in the past 12 months (% age 25+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11673.6\",\"Mobile phone used to send money, primary education or less (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report using a mobile phone to send money in the past 12 months (primary education or less, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11673.7\",\"Mobile phone used to send money, secondary education or more (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report using a mobile phone to send money in the past 12 months (secondary education or more, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11673.8\",\"Mobile phone used to send money, income, poorest 40% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report using a mobile phone to send money in the past 12 months (income, poorest 40%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11673.9\",\"Mobile phone used to send money, income, richest 60% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report using a mobile phone to send money in the past 12 months (income, richest 60%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11674.1\",\"Mobile phone used to receive money (% age 15+) [w1]\",\"Denotes the percentage of respondents who report using a mobile phone to receive money in the past 12 months (% age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11674.10\",\"Mobile phone used to receive money, rural (% age 15+) [w1]\",\"Denotes the percentage of respondents who report using a mobile phone to receive money in the past 12 months (rural, % age 15+ ). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11674.2\",\"Mobile phone used to receive money, male (% age 15+) [w1]\",\"Denotes the percentage of respondents who report using a mobile phone to receive money in the past 12 months (male, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11674.3\",\"Mobile phone used to receive money, female (% age 15+) [w1]\",\"Denotes the percentage of respondents who report using a mobile phone to receive money in the past 12 months (female, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11674.4\",\"Mobile phone used to receive money, young adults (% ages 15-24) [w1]\",\"Denotes the percentage of respondents who report using a mobile phone to receive money in the past 12 months (% ages 15-24). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11674.5\",\"Mobile phone used to receive money, older adults (% ages 25+) [w1]\",\"Denotes the percentage of respondents who report using a mobile phone to receive money in the past 12 months (% age 25+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11674.6\",\"Mobile phone used to receive money, primary education or less (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report using a mobile phone to receive money in the past 12 months (primary education or less, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11674.7\",\"Mobile phone used to receive money, secondary education or more (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report using a mobile phone to receive money in the past 12 months (secondary education or more, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11674.8\",\"Mobile phone used to receive money, income, poorest 40% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report using a mobile phone to receive money in the past 12 months (income, poorest 40%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP11674.9\",\"Mobile phone used to receive money, income, richest 60% (% ages 15+) [w1]\",\"Denotes the percentage of respondents who report using a mobile phone to receive money in the past 12 months (income, richest 60%, % age 15+). [w1: data are available for wave 1].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt and Klapper, 2012\"\n\"WP14887_7.1\",\"Account at a financial institution (% age 15+) [w2]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else) at a bank or another type of financial institution; having a debit card in their own name; receiving wages, government transfers, or payments for agricultural products into an account at a financial institution in the past 12 months; paying utility bills or school fees from an account at a financial institution in the past 12 months; or receiving wages or government transfers into a card in the past 12 months (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14887_7.10\",\"Account at a financial institution, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else) at a bank or another type of financial institution; having a debit card in their own name; receiving wages, government transfers, or payments for agricultural products into an account at a financial institution in the past 12 months; paying utility bills or school fees from an account at a financial institution in the past 12 months; or receiving wages or government transfers into a card in the past 12 months (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14887_7.2\",\"Account at a financial institution, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else) at a bank or another type of financial institution; having a debit card in their own name; receiving wages, government transfers, or payments for agricultural products into an account at a financial institution in the past 12 months; paying utility bills or school fees from an account at a financial institution in the past 12 months; or receiving wages or government transfers into a card in the past 12 months (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14887_7.3\",\"Account at a financial institution, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else) at a bank or another type of financial institution; having a debit card in their own name; receiving wages, government transfers, or payments for agricultural products into an account at a financial institution in the past 12 months; paying utility bills or school fees from an account at a financial institution in the past 12 months; or receiving wages or government transfers into a card in the past 12 months (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14887_7.4\",\"Account at a financial institution, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else) at a bank or another type of financial institution; having a debit card in their own name; receiving wages, government transfers, or payments for agricultural products into an account at a financial institution in the past 12 months; paying utility bills or school fees from an account at a financial institution in the past 12 months; or receiving wages or government transfers into a card in the past 12 months (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14887_7.5\",\"Account at a financial institution, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else) at a bank or another type of financial institution; having a debit card in their own name; receiving wages, government transfers, or payments for agricultural products into an account at a financial institution in the past 12 months; paying utility bills or school fees from an account at a financial institution in the past 12 months; or receiving wages or government transfers into a card in the past 12 months (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14887_7.6\",\"Account at a financial institution, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else) at a bank or another type of financial institution; having a debit card in their own name; receiving wages, government transfers, or payments for agricultural products into an account at a financial institution in the past 12 months; paying utility bills or school fees from an account at a financial institution in the past 12 months; or receiving wages or government transfers into a card in the past 12 months (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14887_7.7\",\"Account at a financial institution, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else) at a bank or another type of financial institution; having a debit card in their own name; receiving wages, government transfers, or payments for agricultural products into an account at a financial institution in the past 12 months; paying utility bills or school fees from an account at a financial institution in the past 12 months; or receiving wages or government transfers into a card in the past 12 months (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14887_7.8\",\"Account at a financial institution, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else) at a bank or another type of financial institution; having a debit card in their own name; receiving wages, government transfers, or payments for agricultural products into an account at a financial institution in the past 12 months; paying utility bills or school fees from an account at a financial institution in the past 12 months; or receiving wages or government transfers into a card in the past 12 months (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14887_7.9\",\"Account at a financial institution, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else) at a bank or another type of financial institution; having a debit card in their own name; receiving wages, government transfers, or payments for agricultural products into an account at a financial institution in the past 12 months; paying utility bills or school fees from an account at a financial institution in the past 12 months; or receiving wages or government transfers into a card in the past 12 months (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14887_a.1\",\"Account (% age 15+) [w2]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else) at a bank or another type of financial institution; having a debit card in their own name; receiving wages, government transfers, or payments for agricultural products into an account or through a mobile phone at a financial institution in the past 12 months; paying utility bills or school fees from an account at a financial institution in the past 12 months; receiving wages or government transfers into a card in the past 12 months; or personally using a mobile phone to pay bills or to send or receive money through a GSM Association (GSMA) Mobile Money for the Unbanked (MMU) service in the past 12 months (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14887_a.10\",\"Account, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else) at a bank or another type of financial institution; having a debit card in their own name; receiving wages, government transfers, or payments for agricultural products into an account at a financial institution or through a mobile phone in the past 12 months; paying utility bills or school fees from an account at a financial institution in the past 12 months; receiving wages or government transfers into a card in the past 12 months; or personally using a mobile phone to pay bills or to send or receive money through a GSM Association (GSMA) Mobile Money for the Unbanked (MMU) service in the past 12 months (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14887_a.2\",\"Account, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else) at a bank or another type of financial institution; having a debit card in their own name; receiving wages, government transfers, or payments for agricultural products into an account at a financial institution or through a mobile phone in the past 12 months; paying utility bills or school fees from an account at a financial institution in the past 12 months; receiving wages or government transfers into a card in the past 12 months; or personally using a mobile phone to pay bills or to send or receive money through a GSM Association (GSMA) Mobile Money for the Unbanked (MMU) service in the past 12 months (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14887_a.3\",\"Account, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else) at a bank or another type of financial institution; having a debit card in their own name; receiving wages, government transfers, or payments for agricultural products into an account at a financial institution or through a mobile phone in the past 12 months; paying utility bills or school fees from an account at a financial institution in the past 12 months; receiving wages or government transfers into a card in the past 12 months; or personally using a mobile phone to pay bills or to send or receive money through a GSM Association (GSMA) Mobile Money for the Unbanked (MMU) service in the past 12 months (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14887_a.4\",\"Account, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else) at a bank or another type of financial institution; having a debit card in their own name; receiving wages, government transfers, or payments for agricultural products into an account at a financial institution or through a mobile phone in the past 12 months; paying utility bills or school fees from an account at a financial institution in the past 12 months; receiving wages or government transfers into a card in the past 12 months; or personally using a mobile phone to pay bills or to send or receive money through a GSM Association (GSMA) Mobile Money for the Unbanked (MMU) service in the past 12 months (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14887_a.5\",\"Account, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else) at a bank or another type of financial institution; having a debit card in their own name; receiving wages, government transfers, or payments for agricultural products into an account at a financial institution or through a mobile phone in the past 12 months; paying utility bills or school fees from an account at a financial institution in the past 12 months; receiving wages or government transfers into a card in the past 12 months; or personally using a mobile phone to pay bills or to send or receive money through a GSM Association (GSMA) Mobile Money for the Unbanked (MMU) service in the past 12 months (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14887_a.6\",\"Account, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else) at a bank or another type of financial institution; having a debit card in their own name; receiving wages, government transfers, or payments for agricultural products into an account at a financial institution or through a mobile phone in the past 12 months; paying utility bills or school fees from an account at a financial institution in the past 12 months; receiving wages or government transfers into a card in the past 12 months; or personally using a mobile phone to pay bills or to send or receive money through a GSM Association (GSMA) Mobile Money for the Unbanked (MMU) service in the past 12 months (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14887_a.7\",\"Account, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else) at a bank or another type of financial institution; having a debit card in their own name; receiving wages, government transfers, or payments for agricultural products into an account at a financial institution or through a mobile phone in the past 12 months; paying utility bills or school fees from an account at a financial institution in the past 12 months; receiving wages or government transfers into a card in the past 12 months; or personally using a mobile phone to pay bills or to send or receive money through a GSM Association (GSMA) Mobile Money for the Unbanked (MMU) service in the past 12 months (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14887_a.8\",\"Account, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else) at a bank or another type of financial institution; having a debit card in their own name; receiving wages, government transfers, or payments for agricultural products into an account at a financial institution or through a mobile phone in the past 12 months; paying utility bills or school fees from an account at a financial institution in the past 12 months; receiving wages or government transfers into a card in the past 12 months; or personally using a mobile phone to pay bills or to send or receive money through a GSM Association (GSMA) Mobile Money for the Unbanked (MMU) service in the past 12 months (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14887_a.9\",\"Account, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report having an account (by themselves or together with someone else) at a bank or another type of financial institution; having a debit card in their own name; receiving wages, government transfers, or payments for agricultural products into an account at a financial institution or through a mobile phone in the past 12 months; paying utility bills or school fees from an account at a financial institution in the past 12 months; receiving wages or government transfers into a card in the past 12 months; or personally using a mobile phone to pay bills or to send or receive money through a GSM Association (GSMA) Mobile Money for the Unbanked (MMU) service in the past 12 months (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14888.1\",\"Debit card (% age 15+) [w2]\",\"Denotes the percentage of respondents with a debit card (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14888.10\",\"Debit card, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents with a debit card (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14888.2\",\"Debit card, male (% age 15+) [w2]\",\"Denotes the percentage of respondents with a debit card (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14888.3\",\"Debit card, female (% age 15+) [w2]\",\"Denotes the percentage of respondents with a debit card (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14888.4\",\"Debit card, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents with a debit card (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14888.5\",\"Debit card, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents with a debit card (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14888.6\",\"Debit card, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents with a debit card (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14888.7\",\"Debit card, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents with a debit card (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14888.8\",\"Debit card, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents with a debit card (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14888.9\",\"Debit card, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents with a debit card (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14889.1\",\"Debit card in own name (% age 15+) [w2]\",\"Denotes the percentage of respondents with a debit card linked to an account with their name on it (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14889.10\",\"Debit card in own name, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents with a debit card linked to an account with their name on it (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14889.2\",\"Debit card in own name, male (% age 15+) [w2]\",\"Denotes the percentage of respondents with a debit card linked to an account with their name on it (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14889.3\",\"Debit card in own name, female (% age 15+) [w2]\",\"Denotes the percentage of respondents with a debit card linked to an account with their name on it (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14889.4\",\"Debit card in own name, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents with a debit card linked to an account with their name on it (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14889.5\",\"Debit card in own name, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents with a debit card linked to an account with their name on it (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14889.6\",\"Debit card in own name, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents with a debit card linked to an account with their name on it (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14889.7\",\"Debit card in own name, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents with a debit card linked to an account with their name on it (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14889.8\",\"Debit card in own name, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents with a debit card linked to an account with their name on it (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14889.9\",\"Debit card in own name, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents with a debit card linked to an account with their name on it (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14890.1\",\"Debit card used in the past year (% age 15+) [w2]\",\"Denotes the percentage of respondents who report using their own debit card directly to make a purchase in the past 12 months (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14890.10\",\"Debit card used in the past year, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report using their own debit card directly to make a purchase in the past 12 months (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14890.2\",\"Debit card used in the past year, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report using their own debit card directly to make a purchase in the past 12 months (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14890.3\",\"Debit card used in the past year, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report using their own debit card directly to make a purchase in the past 12 months (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14890.4\",\"Debit card used in the past year, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report using their own debit card directly to make a purchase in the past 12 months (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14890.5\",\"Debit card used in the past year, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report using their own debit card directly to make a purchase in the past 12 months (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14890.6\",\"Debit card used in the past year, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report using their own debit card directly to make a purchase in the past 12 months (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14890.7\",\"Debit card used in the past year, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report using their own debit card directly to make a purchase in the past 12 months (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14890.8\",\"Debit card used in the past year, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report using their own debit card directly to make a purchase in the past 12 months (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14890.9\",\"Debit card used in the past year, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report using their own debit card directly to make a purchase in the past 12 months (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14891.1\",\"Credit card (% age 15+) [w2]\",\"Denotes the percentage of respondents with a credit card (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14891.10\",\"Credit card, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents with a credit card (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14891.2\",\"Credit card, male (% age 15+) [w2]\",\"Denotes the percentage of respondents with a credit card (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14891.3\",\"Credit card, female (% age 15+) [w2]\",\"Denotes the percentage of respondents with a credit card (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14891.4\",\"Credit card, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents with a credit card (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14891.5\",\"Credit card, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents with a credit card (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14891.6\",\"Credit card, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents with a credit card (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14891.7\",\"Credit card, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents with a credit card (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14891.8\",\"Credit card, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents with a credit card (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14891.9\",\"Credit card, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents with a credit card (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14892.1\",\"Credit card used in the past year (% age 15+) [w2]\",\"Denotes the percentage of respondents who report using their own credit card in the past 12 months (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14892.10\",\"Credit card used in the past year, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report using their own credit card in the past 12 months (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14892.2\",\"Credit card used in the past year, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report using their own credit card in the past 12 months (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14892.3\",\"Credit card used in the past year, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report using their own credit card in the past 12 months (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14892.4\",\"Credit card used in the past year, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report using their own credit card in the past 12 months (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14892.5\",\"Credit card used in the past year, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report using their own credit card in the past 12 months (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14892.6\",\"Credit card used in the past year, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report using their own credit card in the past 12 months (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14892.7\",\"Credit card used in the past year, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report using their own credit card in the past 12 months (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14892.8\",\"Credit card used in the past year, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report using their own credit card in the past 12 months (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14892.9\",\"Credit card used in the past year, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report using their own credit card in the past 12 months (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14910.1\",\"Used the Internet to pay bills or buy things (% age 15+) [w2]\",\"Denotes the percentage of respondents who report paying bills or making purchases online using the Internet in the past 12 months (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14910.10\",\"Used the Internet to pay bills or buy things, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report paying bills or making purchases online using the Internet in the past 12 months (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14910.2\",\"Used the Internet to pay bills or buy things, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report paying bills or making purchases online using the Internet in the past 12 months (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14910.3\",\"Used the Internet to pay bills or buy things, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report paying bills or making purchases online using the Internet in the past 12 months (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14910.4\",\"Used the Internet to pay bills or buy things, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report paying bills or making purchases online using the Internet in the past 12 months (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14910.5\",\"Used the Internet to pay bills or buy things, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report paying bills or making purchases online using the Internet in the past 12 months (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14910.6\",\"Used the Internet to pay bills or buy things, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report paying bills or making purchases online using the Internet in the past 12 months (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14910.7\",\"Used the Internet to pay bills or buy things, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report paying bills or making purchases online using the Internet in the past 12 months (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14910.8\",\"Used the Internet to pay bills or buy things, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report paying bills or making purchases online using the Internet in the past 12 months (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14910.9\",\"Used the Internet to pay bills or buy things, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report paying bills or making purchases online using the Internet in the past 12 months (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14911.1\",\"Saved to start, operate, or expand a farm or business (% age 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months to start, operate, or expand a farm or business (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14911.10\",\"Saved to start, operate, or expand a farm or business, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months to start, operate, or expand a farm or business (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14911.2\",\"Saved to start, operate, or expand a farm or business, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months to start, operate, or expand a farm or business (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14911.3\",\"Saved to start, operate, or expand a farm or business, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months to start, operate, or expand a farm or business (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14911.4\",\"Saved to start, operate, or expand a farm or business, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months to start, operate, or expand a farm or business (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14911.5\",\"Saved to start, operate, or expand a farm or business, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months to start, operate, or expand a farm or business (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14911.6\",\"Saved to start, operate, or expand a farm or business, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months to start, operate, or expand a farm or business (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14911.7\",\"Saved to start, operate, or expand a farm or business, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months to start, operate, or expand a farm or business (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14911.8\",\"Saved to start, operate, or expand a farm or business, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months to start, operate, or expand a farm or business (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14911.9\",\"Saved to start, operate, or expand a farm or business, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months to start, operate, or expand a farm or business (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14912.1\",\"Saved for old age (% age 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months for old age (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14912.10\",\"Saved for old age, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months for old age (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14912.2\",\"Saved for old age, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months for old age (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14912.3\",\"Saved for old age, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months for old age (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14912.4\",\"Saved for old age, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months for old age (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14912.5\",\"Saved for old age, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months for old age (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14912.6\",\"Saved for old age, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months for old age (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14912.7\",\"Saved for old age, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months for old age (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14912.8\",\"Saved for old age, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months for old age (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14912.9\",\"Saved for old age, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months for old age (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14914_6.1\",\"Saved any money in the past year (% age 15+) [w2]\",\"Denotes the percentage of respondents who report personally saving or setting aside any money for any reason and using any mode of saving in the past 12 months (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14914_6.10\",\"Saved any money in the past year, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report personally saving or setting aside any money for any reason and using any mode of saving in the past 12 months (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14914_6.2\",\"Saved any money in the past year, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report personally saving or setting aside any money for any reason and using any mode of saving in the past 12 months (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14914_6.3\",\"Saved any money in the past year, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report personally saving or setting aside any money for any reason and using any mode of saving in the past 12 months (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14914_6.4\",\"Saved any money in the past year, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report personally saving or setting aside any money for any reason and using any mode of saving in the past 12 months (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14914_6.5\",\"Saved any money in the past year, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report personally saving or setting aside any money for any reason and using any mode of saving in the past 12 months (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14914_6.6\",\"Saved any money in the past year, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report personally saving or setting aside any money for any reason and using any mode of saving in the past 12 months (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14914_6.7\",\"Saved any money in the past year, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report personally saving or setting aside any money for any reason and using any mode of saving in the past 12 months (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14914_6.8\",\"Saved any money in the past year, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report personally saving or setting aside any money for any reason and using any mode of saving in the past 12 months (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14914_6.9\",\"Saved any money in the past year, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report personally saving or setting aside any money for any reason and using any mode of saving in the past 12 months (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14917.1\",\"Borrowed from a financial institution (% age 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from a bank or another type of financial institution. This does not include the use of credit cards (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14917.10\",\"Borrowed from a financial institution, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from a bank or another type of financial institution. This does not include the use of credit cards (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14917.2\",\"Borrowed from a financial institution, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from a bank or another type of financial institution. This does not include the use of credit cards (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14917.3\",\"Borrowed from a financial institution, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from a bank or another type of financial institution. This does not include the use of credit cards (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14917.4\",\"Borrowed from a financial institution, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from a bank or another type of financial institution. This does not include the use of credit cards (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14917.5\",\"Borrowed from a financial institution, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from a bank or another type of financial institution. This does not include the use of credit cards (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14917.6\",\"Borrowed from a financial institution, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from a bank or another type of financial institution. This does not include the use of credit cards (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14917.7\",\"Borrowed from a financial institution, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from a bank or another type of financial institution. This does not include the use of credit cards (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14917.8\",\"Borrowed from a financial institution, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from a bank or another type of financial institution. This does not include the use of credit cards (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14917.9\",\"Borrowed from a financial institution, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from a bank or another type of financial institution. This does not include the use of credit cards (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14918.1\",\"Borrowed from a store by buying on credit (% age 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from a store by using installment credit or buying on credit (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14918.10\",\"Borrowed from a store by buying on credit, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from a store by using installment credit or buying on credit (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14918.2\",\"Borrowed from a store by buying on credit, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from a store by using installment credit or buying on credit (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14918.3\",\"Borrowed from a store by buying on credit, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from a store by using installment credit or buying on credit (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14918.4\",\"Borrowed from a store by buying on credit, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from a store by using installment credit or buying on credit (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14918.5\",\"Borrowed from a store by buying on credit, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from a store by using installment credit or buying on credit (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14918.6\",\"Borrowed from a store by buying on credit, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from a store by using installment credit or buying on credit (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14918.7\",\"Borrowed from a store by buying on credit, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from a store by using installment credit or buying on credit (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14918.8\",\"Borrowed from a store by buying on credit, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from a store by using installment credit or buying on credit (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14918.9\",\"Borrowed from a store by buying on credit, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from a store by using installment credit or buying on credit (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14919.1\",\"Borrowed from family or friends (% age 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from family, relatives, or friends (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14919.10\",\"Borrowed from family or friends, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from family, relatives, or friends (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14919.2\",\"Borrowed from family or friends, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from family, relatives, or friends (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14919.3\",\"Borrowed from family or friends, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from family, relatives, or friends (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14919.4\",\"Borrowed from family or friends, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from family, relatives, or friends (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14919.5\",\"Borrowed from family or friends, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from family, relatives, or friends (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14919.6\",\"Borrowed from family or friends, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from family, relatives, or friends (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14919.7\",\"Borrowed from family or friends, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from family, relatives, or friends (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14919.8\",\"Borrowed from family or friends, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from family, relatives, or friends (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14919.9\",\"Borrowed from family or friends, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from family, relatives, or friends (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14920.1\",\"Borrowed from a private informal lender (% age 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from a private informal lender (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14920.10\",\"Borrowed from a private informal lender, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from a private informal lender (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14920.2\",\"Borrowed from a private informal lender, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from a private informal lender (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14920.3\",\"Borrowed from a private informal lender, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from a private informal lender (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14920.4\",\"Borrowed from a private informal lender, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from a private informal lender (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14920.5\",\"Borrowed from a private informal lender, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from a private informal lender (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14920.6\",\"Borrowed from a private informal lender, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from a private informal lender (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14920.7\",\"Borrowed from a private informal lender, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from a private informal lender (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14920.8\",\"Borrowed from a private informal lender, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from a private informal lender (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14920.9\",\"Borrowed from a private informal lender, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) from a private informal lender (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14921.1\",\"Borrowed for education or school fees (% age 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) for education or school fees (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14921.10\",\"Borrowed for education or school fees, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) for education or school fees (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14921.2\",\"Borrowed for education or school fees, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) for education or school fees (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14921.3\",\"Borrowed for education or school fees, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) for education or school fees (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14921.4\",\"Borrowed for education or school fees, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) for education or school fees (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14921.5\",\"Borrowed for education or school fees, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) for education or school fees (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14921.6\",\"Borrowed for education or school fees, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) for education or school fees (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14921.7\",\"Borrowed for education or school fees, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) for education or school fees (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14921.8\",\"Borrowed for education or school fees, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) for education or school fees (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14921.9\",\"Borrowed for education or school fees, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) for education or school fees (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14922.1\",\"Borrowed for health or medical purposes (% age 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) for health or medical purposes (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14922.10\",\"Borrowed for health or medical purposes, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) for health or medical purposes (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14922.2\",\"Borrowed for health or medical purposes, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) for health or medical purposes (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14922.3\",\"Borrowed for health or medical purposes, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) for health or medical purposes (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14922.4\",\"Borrowed for health or medical purposes, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) for health or medical purposes (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14922.5\",\"Borrowed for health or medical purposes, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) for health or medical purposes (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14922.6\",\"Borrowed for health or medical purposes, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) for health or medical purposes (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14922.7\",\"Borrowed for health or medical purposes, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) for health or medical purposes (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14922.8\",\"Borrowed for health or medical purposes, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) for health or medical purposes (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14922.9\",\"Borrowed for health or medical purposes, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) for health or medical purposes (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14923.1\",\"Borrowed to start, operate, or expand a farm or business (% age 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) to start, operate, or expand a farm or business (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14923.10\",\"Borrowed to start, operate, or expand a farm or business, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) to start, operate, or expand a farm or business (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14923.2\",\"Borrowed to start, operate, or expand a farm or business, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) to start, operate, or expand a farm or business (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14923.3\",\"Borrowed to start, operate, or expand a farm or business, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) to start, operate, or expand a farm or business (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14923.4\",\"Borrowed to start, operate, or expand a farm or business, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) to start, operate, or expand a farm or business (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14923.5\",\"Borrowed to start, operate, or expand a farm or business, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) to start, operate, or expand a farm or business (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14923.6\",\"Borrowed to start, operate, or expand a farm or business, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) to start, operate, or expand a farm or business (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14923.7\",\"Borrowed to start, operate, or expand a farm or business, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) to start, operate, or expand a farm or business (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14923.8\",\"Borrowed to start, operate, or expand a farm or business, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) to start, operate, or expand a farm or business (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14923.9\",\"Borrowed to start, operate, or expand a farm or business, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money in the past 12 months (by themselves or together with someone else) to start, operate, or expand a farm or business (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14924_8.1\",\"Borrowed any money in the past year (% age 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money (by themselves or together with someone else) for any reason and from any source in the past 12 months (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14924_8.10\",\"Borrowed any money in the past year, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money (by themselves or together with someone else) for any reason and from any source in the past 12 months (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14924_8.2\",\"Borrowed any money in the past year, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money (by themselves or together with someone else) for any reason and from any source in the past 12 months (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14924_8.3\",\"Borrowed any money in the past year, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money (by themselves or together with someone else) for any reason and from any source in the past 12 months (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14924_8.4\",\"Borrowed any money in the past year, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report borrowing any money (by themselves or together with someone else) for any reason and from any source in the past 12 months (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14924_8.5\",\"Borrowed any money in the past year, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money (by themselves or together with someone else) for any reason and from any source in the past 12 months (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14924_8.6\",\"Borrowed any money in the past year, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money (by themselves or together with someone else) for any reason and from any source in the past 12 months (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14924_8.7\",\"Borrowed any money in the past year, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money (by themselves or together with someone else) for any reason and from any source in the past 12 months (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14924_8.8\",\"Borrowed any money in the past year, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money (by themselves or together with someone else) for any reason and from any source in the past 12 months (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14924_8.9\",\"Borrowed any money in the past year, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report borrowing any money (by themselves or together with someone else) for any reason and from any source in the past 12 months (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.1.1\",\"Coming up with emergency funds: very possible (% age 15+) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is very possible for them to come up with 1/20 of GNI per capita in local currency within the next month (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.1.10\",\"Coming up with emergency funds: very possible, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is very possible for them to come up with 1/20 of GNI per capita in local currency within the next month (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.1.2\",\"Coming up with emergency funds: very possible, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is very possible for them to come up with 1/20 of GNI per capita in local currency within the next month (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.1.3\",\"Coming up with emergency funds: very possible, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is very possible for them to come up with 1/20 of GNI per capita in local currency within the next month (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.1.4\",\"Coming up with emergency funds: very possible, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is very possible for them to come up with 1/20 of GNI per capita in local currency within the next month (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.1.5\",\"Coming up with emergency funds: very possible, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is very possible for them to come up with 1/20 of GNI per capita in local currency within the next month (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.1.6\",\"Coming up with emergency funds: very possible, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is very possible for them to come up with 1/20 of GNI per capita in local currency within the next month (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.1.7\",\"Coming up with emergency funds: very possible, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is very possible for them to come up with 1/20 of GNI per capita in local currency within the next month (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.1.8\",\"Coming up with emergency funds: very possible, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is very possible for them to come up with 1/20 of GNI per capita in local currency within the next month (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.1.9\",\"Coming up with emergency funds: very possible, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is very possible for them to come up with 1/20 of GNI per capita in local currency within the next month (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.2.1\",\"Coming up with emergency funds: somewhat possible (% age 15+) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is somewhat possible for them to come up with 1/20 of GNI per capita in local currency within the next month (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.2.10\",\"Coming up with emergency funds: somewhat possible, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is somewhat possible for them to come up with 1/20 of GNI per capita in local currency within the next month (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.2.2\",\"Coming up with emergency funds: somewhat possible, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is somewhat possible for them to come up with 1/20 of GNI per capita in local currency within the next month (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.2.3\",\"Coming up with emergency funds: somewhat possible, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is somewhat possible for them to come up with 1/20 of GNI per capita in local currency within the next month (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.2.4\",\"Coming up with emergency funds: somewhat possible, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is somewhat possible for them to come up with 1/20 of GNI per capita in local currency within the next month (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.2.5\",\"Coming up with emergency funds: somewhat possible, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is somewhat possible for them to come up with 1/20 of GNI per capita in local currency within the next month (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.2.6\",\"Coming up with emergency funds: somewhat possible, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is somewhat possible for them to come up with 1/20 of GNI per capita in local currency within the next month (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.2.7\",\"Coming up with emergency funds: somewhat possible, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is somewhat possible for them to come up with 1/20 of GNI per capita in local currency within the next month (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.2.8\",\"Coming up with emergency funds: somewhat possible, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is somewhat possible for them to come up with 1/20 of GNI per capita in local currency within the next month (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.2.9\",\"Coming up with emergency funds: somewhat possible, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is somewhat possible for them to come up with 1/20 of GNI per capita in local currency within the next month (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.3.1\",\"Coming up with emergency funds: not very possible (% age 15+) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is not very possible for them to come up with 1/20 of GNI per capita in local currency within the next month (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.3.10\",\"Coming up with emergency funds: not very possible, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is not very possible for them to come up with 1/20 of GNI per capita in local currency within the next month (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.3.2\",\"Coming up with emergency funds: not very possible, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is not very possible for them to come up with 1/20 of GNI per capita in local currency within the next month (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.3.3\",\"Coming up with emergency funds: not very possible, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is not very possible for them to come up with 1/20 of GNI per capita in local currency within the next month (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.3.4\",\"Coming up with emergency funds: not very possible, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is not very possible for them to come up with 1/20 of GNI per capita in local currency within the next month (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.3.5\",\"Coming up with emergency funds: not very possible, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is not very possible for them to come up with 1/20 of GNI per capita in local currency within the next month (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.3.6\",\"Coming up with emergency funds: not very possible, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is not very possible for them to come up with 1/20 of GNI per capita in local currency within the next month (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.3.7\",\"Coming up with emergency funds: not very possible, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is not very possible for them to come up with 1/20 of GNI per capita in local currency within the next month (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.3.8\",\"Coming up with emergency funds: not very possible, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is not very possible for them to come up with 1/20 of GNI per capita in local currency within the next month (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.3.9\",\"Coming up with emergency funds: not very possible, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is not very possible for them to come up with 1/20 of GNI per capita in local currency within the next month (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.4.1\",\"Coming up with emergency funds: not at all possible (% age 15+) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is not at all possible for them to come up with 1/20 of GNI per capita in local currency within the next month (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.4.10\",\"Coming up with emergency funds: not at all possible, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is not at all possible for them to come up with 1/20 of GNI per capita in local currency within the next month (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.4.2\",\"Coming up with emergency funds: not at all possible, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is not at all possible for them to come up with 1/20 of GNI per capita in local currency within the next month (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.4.3\",\"Coming up with emergency funds: not at all possible, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is not at all possible for them to come up with 1/20 of GNI per capita in local currency within the next month (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.4.4\",\"Coming up with emergency funds: not at all possible, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is not at all possible for them to come up with 1/20 of GNI per capita in local currency within the next month (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.4.5\",\"Coming up with emergency funds: not at all possible, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is not at all possible for them to come up with 1/20 of GNI per capita in local currency within the next month (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.4.6\",\"Coming up with emergency funds: not at all possible, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is not at all possible for them to come up with 1/20 of GNI per capita in local currency within the next month (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.4.7\",\"Coming up with emergency funds: not at all possible, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is not at all possible for them to come up with 1/20 of GNI per capita in local currency within the next month (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.4.8\",\"Coming up with emergency funds: not at all possible, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is not at all possible for them to come up with 1/20 of GNI per capita in local currency within the next month (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14926.4.9\",\"Coming up with emergency funds: not at all possible, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report that in case of an emergency it is not at all possible for them to come up with 1/20 of GNI per capita in local currency within the next month (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14927.1.1\",\"Main source of emergency funds: savings (% able to raise funds, age 15+) [w2]\",\"Denotes, among respondents reporting that in case of an emergency it is very possible, somewhat possible, or not very possible for them to come up with 1/20 of GNI per capita in local currency, the percentage who choose savings as their main source of this money (% able to raise funds, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14927.2.1\",\"Main source of emergency funds: family or friends (% able to raise funds, age 15+) [w2]\",\"Denotes, among respondents reporting that in case of an emergency it is very possible, somewhat possible, or not very possible for them to come up with 1/20 of GNI per capita in local currency, the percentage who choose family, relatives, or friends as their main source of this money (% able to raise funds, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14927.3.1\",\"Main source of emergency funds: work or loan from employer (% able to raise funds, age 15+) [w2]\",\"Denotes, among respondents reporting that in case of an emergency it is very possible, somewhat possible, or not very possible for them to come up with 1/20 of GNI per capita in local currency, the percentage who choose money from working or a loan from an employer as their main source of this money (% able to raise funds, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14927.4.1\",\"Main source of emergency funds: financial institution or credit card (% able to raise funds, age 15+) [w2]\",\"Denotes, among respondents reporting that in case of an emergency it is very possible, somewhat possible, or not very possible for them to come up with 1/20 of GNI per capita in local currency, the percentage who choose a credit card or borrowing from a bank or another type of financial institution as their main source of this money (% able to raise funds, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14927.5.1\",\"Main source of emergency funds: private informal lender (% able to raise funds, age 15+) [w2]\",\"Denotes, among respondents reporting that in case of an emergency it is very possible, somewhat possible, or not very possible for them to come up with 1/20 of GNI per capita in local currency, the percentage who choose a private informal lender as their main source of this money (% able to raise funds, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14927.6.1\",\"Main source of emergency funds: other (% able to raise funds, age 15+) [w2]\",\"Denotes, among respondents reporting that in case of an emergency it is very possible, somewhat possible, or not very possible for them to come up with 1/20 of GNI per capita in local currency, the percentage who choose some other source as their main source of this money (% able to raise funds, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14928.1\",\"Sent domestic remittances in the past year (% age 15+) [w2]\",\"Denotes the percentage of respondents who report personally giving or sending any of their money in the past 12 months to a relative or friend living in a different area of their country. This can be money they brought themselves or sent in some other way (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14928.10\",\"Sent domestic remittances in the past year, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report personally giving or sending any of their money in the past 12 months to a relative or friend living in a different area of their country. This can be money they brought themselves or sent in some other way (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14928.2\",\"Sent domestic remittances in the past year, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report personally giving or sending any of their money in the past 12 months to a relative or friend living in a different area of their country. This can be money they brought themselves or sent in some other way (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14928.3\",\"Sent domestic remittances in the past year, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report personally giving or sending any of their money in the past 12 months to a relative or friend living in a different area of their country. This can be money they brought themselves or sent in some other way (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14928.4\",\"Sent domestic remittances in the past year, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report personally giving or sending any of their money in the past 12 months to a relative or friend living in a different area of their country. This can be money they brought themselves or sent in some other way (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14928.5\",\"Sent domestic remittances in the past year, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report personally giving or sending any of their money in the past 12 months to a relative or friend living in a different area of their country. This can be money they brought themselves or sent in some other way (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14928.6\",\"Sent domestic remittances in the past year, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report personally giving or sending any of their money in the past 12 months to a relative or friend living in a different area of their country. This can be money they brought themselves or sent in some other way (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14928.7\",\"Sent domestic remittances in the past year, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report personally giving or sending any of their money in the past 12 months to a relative or friend living in a different area of their country. This can be money they brought themselves or sent in some other way (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14928.8\",\"Sent domestic remittances in the past year, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report personally giving or sending any of their money in the past 12 months to a relative or friend living in a different area of their country. This can be money they brought themselves or sent in some other way (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14928.9\",\"Sent domestic remittances in the past year, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report personally giving or sending any of their money in the past 12 months to a relative or friend living in a different area of their country. This can be money they brought themselves or sent in some other way (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14934.1\",\"Received domestic remittances in the past year (% age 15+) [w2]\",\"Denotes the percentage of respondents who report personally receiving any money in the past 12 months from a relative or friend living in a different area of their country. This includes any money received in person (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14934.10\",\"Received domestic remittances in the past year, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report personally receiving any money in the past 12 months from a relative or friend living in a different area of their country. This includes any money received in person (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14934.2\",\"Received domestic remittances in the past year, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report personally receiving any money in the past 12 months from a relative or friend living in a different area of their country. This includes any money received in person (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14934.3\",\"Received domestic remittances in the past year, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report personally receiving any money in the past 12 months from a relative or friend living in a different area of their country. This includes any money received in person (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14934.4\",\"Received domestic remittances in the past year, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report personally receiving any money in the past 12 months from a relative or friend living in a different area of their country. This includes any money received in person (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14934.5\",\"Received domestic remittances in the past year, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report personally receiving any money in the past 12 months from a relative or friend living in a different area of their country. This includes any money received in person (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14934.6\",\"Received domestic remittances in the past year, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report personally receiving any money in the past 12 months from a relative or friend living in a different area of their country. This includes any money received in person (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14934.7\",\"Received domestic remittances in the past year, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report personally receiving any money in the past 12 months from a relative or friend living in a different area of their country. This includes any money received in person (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14934.8\",\"Received domestic remittances in the past year, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report personally receiving any money in the past 12 months from a relative or friend living in a different area of their country. This includes any money received in person (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14934.9\",\"Received domestic remittances in the past year, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report personally receiving any money in the past 12 months from a relative or friend living in a different area of their country. This includes any money received in person (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14936.1\",\"Received domestic remittances: in person and in cash (% recipients, age 15+) [w2]\",\"Denotes, among respondents reporting personally receiving any money in the past 12 months from a relative or friend living in a different area of their country, the percentage who received it by having cash handed to them by a relative or friend or by someone else they know (% recipients, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14937.1\",\"Received domestic remittances: through a financial institution (% recipients, age 15+) [w2]\",\"Denotes, among respondents reporting personally receiving any money in the past 12 months from a relative or friend living in a different area of their country, the percentage who received it through a bank or another type of financial institution. This includes at a branch, at an ATM, or through direct deposit into an account, using their own account or someone else's (% recipients, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14938.1\",\"Received domestic remittances: through a mobile phone (% recipients, age 15+) [w2]\",\"Denotes, among respondents reporting personally receiving any money in the past 12 months from a relative or friend living in a different area of their country, the percentage who received it through a mobile phone, using their own account or someone else's (% recipients, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14939.1\",\"Received domestic remittances: through a money transfer service (% recipients, age 15+) [w2]\",\"Denotes, among respondents reporting personally receiving any money in the past 12 months from a relative or friend living in a different area of their country, the percentage who received it through a money transfer operator (% recipients, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14940.1\",\"Paid utility bills in the past year (% age 15+) [w2]\",\"Denotes the percentage of respondents who report personally making regular payments in the past 12 months for water, electricity, or trash collection (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14940.10\",\"Paid utility bills in the past year, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report personally making regular payments in the past 12 months for water, electricity, or trash collection (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14940.2\",\"Paid utility bills in the past year, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report personally making regular payments in the past 12 months for water, electricity, or trash collection (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14940.3\",\"Paid utility bills in the past year, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report personally making regular payments in the past 12 months for water, electricity, or trash collection (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14940.4\",\"Paid utility bills in the past year, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report personally making regular payments in the past 12 months for water, electricity, or trash collection (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14940.5\",\"Paid utility bills in the past year, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report personally making regular payments in the past 12 months for water, electricity, or trash collection (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14940.6\",\"Paid utility bills in the past year, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report personally making regular payments in the past 12 months for water, electricity, or trash collection (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14940.7\",\"Paid utility bills in the past year, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report personally making regular payments in the past 12 months for water, electricity, or trash collection (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14940.8\",\"Paid utility bills in the past year, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report personally making regular payments in the past 12 months for water, electricity, or trash collection (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14940.9\",\"Paid utility bills in the past year, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report personally making regular payments in the past 12 months for water, electricity, or trash collection (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14940_3.1\",\"Used an account at a financial institution to pay utility bills (% age 15+) [w2]\",\"Denotes the percentage of respondents who report making a payment in the past 12 months for water, electricity, or trash collection directly from an account at a bank or another type of financial institution (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14940_3.10\",\"Used an account at a financial institution to pay utility bills, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report making a payment in the past 12 months for water, electricity, or trash collection directly from an account at a bank or another type of financial institution (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14940_3.2\",\"Used an account at a financial institution to pay utility bills, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report making a payment in the past 12 months for water, electricity, or trash collection directly from an account at a bank or another type of financial institution (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14940_3.3\",\"Used an account at a financial institution to pay utility bills, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report making a payment in the past 12 months for water, electricity, or trash collection directly from an account at a bank or another type of financial institution (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14940_3.4\",\"Used an account at a financial institution to pay utility bills, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report making a payment in the past 12 months for water, electricity, or trash collection directly from an account at a bank or another type of financial institution (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14940_3.5\",\"Used an account at a financial institution to pay utility bills, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report making a payment in the past 12 months for water, electricity, or trash collection directly from an account at a bank or another type of financial institution (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14940_3.6\",\"Used an account at a financial institution to pay utility bills, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report making a payment in the past 12 months for water, electricity, or trash collection directly from an account at a bank or another type of financial institution (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14940_3.7\",\"Used an account at a financial institution to pay utility bills, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report making a payment in the past 12 months for water, electricity, or trash collection directly from an account at a bank or another type of financial institution (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14940_3.8\",\"Used an account at a financial institution to pay utility bills, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report making a payment in the past 12 months for water, electricity, or trash collection directly from an account at a bank or another type of financial institution (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14940_3.9\",\"Used an account at a financial institution to pay utility bills, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report making a payment in the past 12 months for water, electricity, or trash collection directly from an account at a bank or another type of financial institution (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14940_4.1\",\"Used a mobile phone to pay utility bills (% age 15+) [w2]\",\"Denotes the percentage of respondents who report making a payment in the past 12 months for water, electricity, or trash collection through a mobile phone (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14940_4.10\",\"Used a mobile phone to pay utility bills, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report making a payment in the past 12 months for water, electricity, or trash collection through a mobile phone (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14940_4.2\",\"Used a mobile phone to pay utility bills, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report making a payment in the past 12 months for water, electricity, or trash collection through a mobile phone (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14940_4.3\",\"Used a mobile phone to pay utility bills, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report making a payment in the past 12 months for water, electricity, or trash collection through a mobile phone (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14940_4.4\",\"Used a mobile phone to pay utility bills, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report making a payment in the past 12 months for water, electricity, or trash collection through a mobile phone (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14940_4.5\",\"Used a mobile phone to pay utility bills, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report making a payment in the past 12 months for water, electricity, or trash collection through a mobile phone (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14940_4.6\",\"Used a mobile phone to pay utility bills, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report making a payment in the past 12 months for water, electricity, or trash collection through a mobile phone (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14940_4.7\",\"Used a mobile phone to pay utility bills, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report making a payment in the past 12 months for water, electricity, or trash collection through a mobile phone (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14940_4.8\",\"Used a mobile phone to pay utility bills, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report making a payment in the past 12 months for water, electricity, or trash collection through a mobile phone (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14940_4.9\",\"Used a mobile phone to pay utility bills, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report making a payment in the past 12 months for water, electricity, or trash collection through a mobile phone (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14941.1\",\"Paid utility bills: using cash (% paying utility bills, age 15+) [w2]\",\"Denotes, among respondents reporting personally making regular payments in the past 12 months for water, electricity, or trash collection, the percentage who made these payments using cash (% paying utility bills, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14942.1\",\"Paid utility bills: using an account at a financial institution (% paying utility bills, age 15+) [w2]\",\"Denotes, among respondents reporting personally making regular payments in the past 12 months for water, electricity, or trash collection, the percentage who made these payments directly from an account at a bank or another type of financial institution. This includes using a debit card, a bank transfer, or a check (% paying utility bills, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14943.1\",\"Paid utility bills: using a mobile phone (% paying utility bills, age 15+) [w2]\",\"Denotes, among respondents reporting personally making regular payments in the past 12 months for water, electricity, or trash collection, the percentage who made these payments through a mobile phone (% paying utility bills, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14944.1\",\"Received wages in the past year (% age 15+) [w2]\",\"Denotes the percentage of respondents who report receiving any money from an employer in the past 12 months in the form of a salary or wages for doing work. This does not include any money received directly from clients or customers (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14944.10\",\"Received wages in the past year, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report receiving any money from an employer in the past 12 months in the form of a salary or wages for doing work. This does not include any money received directly from clients or customers (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14944.2\",\"Received wages in the past year, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report receiving any money from an employer in the past 12 months in the form of a salary or wages for doing work. This does not include any money received directly from clients or customers (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14944.3\",\"Received wages in the past year, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report receiving any money from an employer in the past 12 months in the form of a salary or wages for doing work. This does not include any money received directly from clients or customers (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14944.4\",\"Received wages in the past year, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report receiving any money from an employer in the past 12 months in the form of a salary or wages for doing work. This does not include any money received directly from clients or customers (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14944.5\",\"Received wages in the past year, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report receiving any money from an employer in the past 12 months in the form of a salary or wages for doing work. This does not include any money received directly from clients or customers (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14944.6\",\"Received wages in the past year, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report receiving any money from an employer in the past 12 months in the form of a salary or wages for doing work. This does not include any money received directly from clients or customers (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14944.7\",\"Received wages in the past year, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report receiving any money from an employer in the past 12 months in the form of a salary or wages for doing work. This does not include any money received directly from clients or customers (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14944.8\",\"Received wages in the past year, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report receiving any money from an employer in the past 12 months in the form of a salary or wages for doing work. This does not include any money received directly from clients or customers (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14944.9\",\"Received wages in the past year, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report receiving any money from an employer in the past 12 months in the form of a salary or wages for doing work. This does not include any money received directly from clients or customers (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14944_3.1\",\"Used an account to receive wages (% age 15+) [w2]\",\"Denotes the percentage of respondents who report receiving a salary or wages directly into an account at a bank or another type of financial institution, into a card, or through a mobile phone in the past 12 months (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14944_3.10\",\"Used an account to receive wages, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report receiving a salary or wages directly into an account at a bank or another type of financial institution, into a card, or through a mobile phone in the past 12 months (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14944_3.2\",\"Used an account to receive wages, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report receiving a salary or wages directly into an account at a bank or another type of financial institution, into a card, or through a mobile phone in the past 12 months (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14944_3.3\",\"Used an account to receive wages, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report receiving a salary or wages directly into an account at a bank or another type of financial institution, into a card, or through a mobile phone in the past 12 months (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14944_3.4\",\"Used an account to receive wages, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report receiving a salary or wages directly into an account at a bank or another type of financial institution, into a card, or through a mobile phone in the past 12 months (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14944_3.5\",\"Used an account to receive wages, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report receiving a salary or wages directly into an account at a bank or another type of financial institution, into a card, or through a mobile phone in the past 12 months (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14944_3.6\",\"Used an account to receive wages, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report receiving a salary or wages directly into an account at a bank or another type of financial institution, into a card, or through a mobile phone in the past 12 months (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14944_3.7\",\"Used an account to receive wages, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report receiving a salary or wages directly into an account at a bank or another type of financial institution, into a card, or through a mobile phone in the past 12 months (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14944_3.8\",\"Used an account to receive wages, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report receiving a salary or wages directly into an account at a bank or another type of financial institution, into a card, or through a mobile phone in the past 12 months (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14944_3.9\",\"Used an account to receive wages, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report receiving a salary or wages directly into an account at a bank or another type of financial institution, into a card, or through a mobile phone in the past 12 months (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14945.1\",\"Received wages: employed in public sector (% wage recipients, age 15+) [w2]\",\"Denotes, among respondents reporting receiving any money from an employer in the past 12 months in the form of a salary or wages for doing work, the percentage who report being employed by the government, military, or public sector (% wage recipients, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14946.1\",\"Received wages: in cash (% wage recipients, age 15+) [w2]\",\"Denotes, among respondents reporting receiving any money from an employer in the past 12 months in the form of a salary or wages for doing work, the percentage who received this money directly in cash (% wage recipients, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14947_2.1\",\"Received wages: into an account at a financial institution (% wage recipients, age 15+) [w2]\",\"Denotes, among respondents reporting receiving any money from an employer in the past 12 months in the form of a salary or wages for doing work, the percentage who received this money directly into an account at a bank or another type of financial institution or into a card (% wage recipients, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14949.1\",\"Received wages: through a mobile phone (% wage recipients, age 15+) [w2]\",\"Denotes, among respondents reporting receiving any money from an employer in the past 12 months in the form of a salary or wages for doing work, the percentage who received this money through a mobile phone (% wage recipients, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14950.1.1\",\"Received wages: withdraw all right away (% cashless wage recipients, age 15+) [w2]\",\"Denotes, among respondents using an account at a bank or another type of financial institution, a card, or a mobile phone to receive wages in the past 12 months, the percentage who report withdrawing or transferring all the money out of the account right away (% cashless wage recipients, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP14950.2.1\",\"Received wages: withdraw over time as needed (% cashless wage recipients, age 15+) [w2]\",\"Denotes, among respondents using an account at a bank or another type of financial institution, a card, or a mobile phone to receive wages in the past 12 months, the percentage who report withdrawing or transferring the money over time as needed (% cashless wage recipients, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15156.1\",\"Deposit in the past year (% with an account, age 15+) [w2]\",\"Denotes the percentage of respondents with an account at a bank or another type of financial institution who report one or more deposits into their account in the past 12 months. This includes cash or electronic deposits or any time money is transferred into the account by the respondent, an employer, or another person or institution (% with an account, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15156_8.1\",\"No deposit and no withdrawal in the past year (% with an account, age 15+) [w2]\",\"Denotes the percentage of respondents with an account at a bank or another type of financial institution who report neither a deposit into nor a withdrawal from their account in the past 12 months (% with an account, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15157.1.1\",\"Deposits in a typical month: 1 or 2 (% with an account, age 15+) [w2]\",\"Denotes the percentage of respondents with an account at a bank or another type of financial institution who report that money is deposited into their account one or two times in a typical month (% with an account, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15157.2.1\",\"Deposits in a typical month: 3+ (% with an account, age 15+) [w2]\",\"Denotes the percentage of respondents with an account at a bank or another type of financial institution who report that money is deposited into their account three or more times in a typical month (% with an account, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15157.3.1\",\"Deposits in a typical month: 0 (% with an account, age 15+) [w2]\",\"Denotes the percentage of respondents with an account at a bank or another type of financial institution who report that no money is deposited into their account in a typical month (% with an account, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15158.1\",\"Withdrawal in the past year (% with an account, age 15+) [w2]\",\"Denotes the percentage of respondents with an account at a bank or another type of financial institution who report one or more withdrawals from their account in the past 12 months. This includes cash or electronic withdrawals or any time money is removed from the account by the respondent, an employer, or another person or institution (% with an account, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15159.1.1\",\"Withdrawals in a typical month: 1 or 2 (% with an account, age 15+) [w2]\",\"Denotes the percentage of respondents with an account at a bank or another type of financial institution who report that money is withdrawn from their account one or two times in a typical month (% with an account, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15159.2.1\",\"Withdrawals in a typical month: 3+ (% with an account, age 15+) [w2]\",\"Denotes the percentage of respondents with an account at a bank or another type of financial institution who report that money is withdrawn from their account three or more times in a typical month (% with an account, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15159.3.1\",\"Withdrawals in a typical month: 0 (% with an account, age 15+) [w2]\",\"Denotes the percentage of respondents with an account at a bank or another type of financial institution who report that no money is withdrawn from their account in a typical month (% with an account, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15160.1.1\",\"Main mode of withdrawal: ATM (% with an account, age 15+) [w2]\",\"Denotes the percentage of respondents with an account at a bank or another type of financial institution who report usually obtaining cash from their account at an automated teller machine (ATM) (% with an account, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15160.2.1\",\"Main mode of withdrawal: bank teller (% with an account, age 15+) [w2]\",\"Denotes the percentage of respondents with an account at a bank or another type of financial institution who report usually obtaining cash from their account over the counter in a branch of their financial institution (% with an account, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15160.3.1\",\"Main mode of withdrawal: bank agent (% with an account, age 15+) [w2]\",\"Denotes the percentage of respondents with an account at a bank or another type of financial institution who report usually obtaining cash from their account from a bank agent who works at a store or goes to their home (% with an account, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15160.4.1\",\"Main mode of withdrawal: other (% with an account, age 15+) [w2]\",\"Denotes the percentage of respondents with an account at a bank or another type of financial institution who report usually obtaining cash from their account in some other way (% with an account, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15161.1\",\"Made transaction from an account at a financial institution using a mobile phone (% with an account, age 15+) [w2]\",\"Denotes the percentage of respondents with an account at a bank or another type of financial institution who report making a transaction with money from their account using a mobile phone in the past 12 months. This can include using a mobile phone to make payments, to make purchases, or to send or receive money (% with an account, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15161_1.1\",\"Used an account to make a transaction through a mobile phone (% age 15+) [w2]\",\"Denotes the percentage of respondents who report making a transaction with money from their account at a bank or another type of financial institution using a mobile phone in the past 12 months. This can include using a mobile phone to make payments, to make purchases, or to send or receive money (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15161_1.10\",\"Used an account to make a transaction through a mobile phone, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report making a transaction with money from their account at a bank or another type of financial institution using a mobile phone in the past 12 months. This can include using a mobile phone to make payments, to make purchases, or to send or receive money (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15161_1.2\",\"Used an account to make a transaction through a mobile phone, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report making a transaction with money from their account at a bank or another type of financial institution using a mobile phone in the past 12 months. This can include using a mobile phone to make payments, to make purchases, or to send or receive money (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15161_1.3\",\"Used an account to make a transaction through a mobile phone, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report making a transaction with money from their account at a bank or another type of financial institution using a mobile phone in the past 12 months. This can include using a mobile phone to make payments, to make purchases, or to send or receive money (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15161_1.4\",\"Used an account to make a transaction through a mobile phone, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report making a transaction with money from their account at a bank or another type of financial institution using a mobile phone in the past 12 months. This can include using a mobile phone to make payments, to make purchases, or to send or receive money (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15161_1.5\",\"Used an account to make a transaction through a mobile phone, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report making a transaction with money from their account at a bank or another type of financial institution using a mobile phone in the past 12 months. This can include using a mobile phone to make payments, to make purchases, or to send or receive money (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15161_1.6\",\"Used an account to make a transaction through a mobile phone, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report making a transaction with money from their account at a bank or another type of financial institution using a mobile phone in the past 12 months. This can include using a mobile phone to make payments, to make purchases, or to send or receive money (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15161_1.7\",\"Used an account to make a transaction through a mobile phone, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report making a transaction with money from their account at a bank or another type of financial institution using a mobile phone in the past 12 months. This can include using a mobile phone to make payments, to make purchases, or to send or receive money (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15161_1.8\",\"Used an account to make a transaction through a mobile phone, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report making a transaction with money from their account at a bank or another type of financial institution using a mobile phone in the past 12 months. This can include using a mobile phone to make payments, to make purchases, or to send or receive money (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15161_1.9\",\"Used an account to make a transaction through a mobile phone, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report making a transaction with money from their account at a bank or another type of financial institution using a mobile phone in the past 12 months. This can include using a mobile phone to make payments, to make purchases, or to send or receive money (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15163_4.1\",\"Mobile account (% age 15+) [w2]\",\"Denotes the percentage of respondents who report personally using a mobile phone to pay bills or to send or receive money through a GSM Association (GSMA) Mobile Money for the Unbanked (MMU) service in the past 12 months; or receiving wages, government transfers, or payments for agricultural products through a mobile phone in the past 12 months (% age 15+). [w2: data are available for wave 2].\",\"World Development Indicators\",\"Demirguc-Kunt et al., 2015\"\n\"WP15163_4.10\",\"Mobile account, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report personally using a mobile phone to pay bills or to send or receive money through a GSM Association (GSMA) Mobile Money for the Unbanked (MMU) service in the past 12 months; or receiving wages, government transfers, or payments for agricultural products through a mobile phone in the past 12 months (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15163_4.2\",\"Mobile account, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report personally using a mobile phone to pay bills or to send or receive money through a GSM Association (GSMA) Mobile Money for the Unbanked (MMU) service in the past 12 months; or receiving wages, government transfers, or payments for agricultural products through a mobile phone in the past 12 months (male, % age 15+). [w2: data are available for wave 2].\",\"World Development Indicators\",\"Demirguc-Kunt et al., 2015\"\n\"WP15163_4.3\",\"Mobile account, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report personally using a mobile phone to pay bills or to send or receive money through a GSM Association (GSMA) Mobile Money for the Unbanked (MMU) service in the past 12 months; or receiving wages, government transfers, or payments for agricultural products through a mobile phone in the past 12 months (female, % age 15+). [w2: data are available for wave 2].\",\"World Development Indicators\",\"Demirguc-Kunt et al., 2015\"\n\"WP15163_4.4\",\"Mobile account, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report personally using a mobile phone to pay bills or to send or receive money through a GSM Association (GSMA) Mobile Money for the Unbanked (MMU) service in the past 12 months; or receiving wages, government transfers, or payments for agricultural products through a mobile phone in the past 12 months (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15163_4.5\",\"Mobile account, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report personally using a mobile phone to pay bills or to send or receive money through a GSM Association (GSMA) Mobile Money for the Unbanked (MMU) service in the past 12 months; or receiving wages, government transfers, or payments for agricultural products through a mobile phone in the past 12 months (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15163_4.6\",\"Mobile account, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report personally using a mobile phone to pay bills or to send or receive money through a GSM Association (GSMA) Mobile Money for the Unbanked (MMU) service in the past 12 months; or receiving wages, government transfers, or payments for agricultural products through a mobile phone in the past 12 months (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15163_4.7\",\"Mobile account, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report personally using a mobile phone to pay bills or to send or receive money through a GSM Association (GSMA) Mobile Money for the Unbanked (MMU) service in the past 12 months; or receiving wages, government transfers, or payments for agricultural products through a mobile phone in the past 12 months (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15163_4.8\",\"Mobile account, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report personally using a mobile phone to pay bills or to send or receive money through a GSM Association (GSMA) Mobile Money for the Unbanked (MMU) service in the past 12 months; or receiving wages, government transfers, or payments for agricultural products through a mobile phone in the past 12 months (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"World Development Indicators\",\"Demirguc-Kunt et al., 2015\"\n\"WP15163_4.9\",\"Mobile account, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report personally using a mobile phone to pay bills or to send or receive money through a GSM Association (GSMA) Mobile Money for the Unbanked (MMU) service in the past 12 months; or receiving wages, government transfers, or payments for agricultural products through a mobile phone in the past 12 months (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"World Development Indicators\",\"Demirguc-Kunt et al., 2015\"\n\"WP15163_4.9\",\"Mobile account, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report personally using a mobile phone to pay bills or to send or receive money through a GSM Association (GSMA) Mobile Money for the Unbanked (MMU) service in the past 12 months; or receiving wages, government transfers, or payments for agricultural products through a mobile phone in the past 12 months (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15164.1\",\"Saved for education or school fees (% age 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months for education or school fees (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15164.10\",\"Saved for education or school fees, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months for education or school fees (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15164.2\",\"Saved for education or school fees, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months for education or school fees (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15164.3\",\"Saved for education or school fees, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months for education or school fees (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15164.4\",\"Saved for education or school fees, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months for education or school fees (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15164.5\",\"Saved for education or school fees, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months for education or school fees (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15164.6\",\"Saved for education or school fees, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months for education or school fees (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15164.7\",\"Saved for education or school fees, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months for education or school fees (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15164.8\",\"Saved for education or school fees, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months for education or school fees (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15164.9\",\"Saved for education or school fees, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months for education or school fees (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15165.1\",\"Saved at a financial institution (% age 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months by using an account at a bank or another type of financial institution (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15165.10\",\"Saved at a financial institution, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months by using an account at a bank or another type of financial institution (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15165.2\",\"Saved at a financial institution, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months by using an account at a bank or another type of financial institution (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15165.3\",\"Saved at a financial institution, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months by using an account at a bank or another type of financial institution (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15165.4\",\"Saved at a financial institution, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months by using an account at a bank or another type of financial institution (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15165.5\",\"Saved at a financial institution, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months by using an account at a bank or another type of financial institution (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15165.6\",\"Saved at a financial institution, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months by using an account at a bank or another type of financial institution (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15165.7\",\"Saved at a financial institution, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months by using an account at a bank or another type of financial institution (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15165.8\",\"Saved at a financial institution, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months by using an account at a bank or another type of financial institution (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15165.9\",\"Saved at a financial institution, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months by using an account at a bank or another type of financial institution (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15166.1\",\"Saved using a savings club or a person outside the family (% age 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months by using an informal savings club or a person outside the family (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15166.10\",\"Saved using a savings club or a person outside the family, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months by using an informal savings club or a person outside the family (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15166.2\",\"Saved using a savings club or a person outside the family, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months by using an informal savings club or a person outside the family (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15166.3\",\"Saved using a savings club or a person outside the family, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months by using an informal savings club or a person outside the family (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15166.4\",\"Saved using a savings club or a person outside the family, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months by using an informal savings club or a person outside the family (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15166.5\",\"Saved using a savings club or a person outside the family, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months by using an informal savings club or a person outside the family (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15166.6\",\"Saved using a savings club or a person outside the family, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months by using an informal savings club or a person outside the family (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15166.7\",\"Saved using a savings club or a person outside the family, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months by using an informal savings club or a person outside the family (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15166.8\",\"Saved using a savings club or a person outside the family, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months by using an informal savings club or a person outside the family (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15166.9\",\"Saved using a savings club or a person outside the family, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report saving or setting aside any money in the past 12 months by using an informal savings club or a person outside the family (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15167.1\",\"Outstanding mortgage (% age 15+) [w2]\",\"Denotes the percentage of respondents who report having an outstanding loan (by themselves or together with someone else) from a bank or another type of financial institution to purchase a home, an apartment, or land (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15167.10\",\"Outstanding mortgage, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report having an outstanding loan (by themselves or together with someone else) from a bank or another type of financial institution to purchase a home, an apartment, or land (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15167.2\",\"Outstanding mortgage, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report having an outstanding loan (by themselves or together with someone else) from a bank or another type of financial institution to purchase a home, an apartment, or land (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15167.3\",\"Outstanding mortgage, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report having an outstanding loan (by themselves or together with someone else) from a bank or another type of financial institution to purchase a home, an apartment, or land (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15167.4\",\"Outstanding mortgage, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report having an outstanding loan (by themselves or together with someone else) from a bank or another type of financial institution to purchase a home, an apartment, or land (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15167.5\",\"Outstanding mortgage, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report having an outstanding loan (by themselves or together with someone else) from a bank or another type of financial institution to purchase a home, an apartment, or land (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15167.6\",\"Outstanding mortgage, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report having an outstanding loan (by themselves or together with someone else) from a bank or another type of financial institution to purchase a home, an apartment, or land (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15167.7\",\"Outstanding mortgage, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report having an outstanding loan (by themselves or together with someone else) from a bank or another type of financial institution to purchase a home, an apartment, or land (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15167.8\",\"Outstanding mortgage, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report having an outstanding loan (by themselves or together with someone else) from a bank or another type of financial institution to purchase a home, an apartment, or land (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15167.9\",\"Outstanding mortgage, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report having an outstanding loan (by themselves or together with someone else) from a bank or another type of financial institution to purchase a home, an apartment, or land (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15168.1\",\"Sent domestic remittances: in person and in cash (% senders, age 15+) [w2]\",\"Denotes, among respondents reporting personally giving or sending any of their money in the past 12 months to a relative or friend living in a different area of their country, the percentage who did so by handing cash to the recipient or sending it through someone they know (% senders, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15169.1\",\"Sent domestic remittances: through a financial institution (% senders, age 15+) [w2]\",\"Denotes, among respondents reporting personally giving or sending any of their money in the past 12 months to a relative or friend living in a different area of their country, the percentage who sent it through a bank or another type of financial institution. This includes at a branch, at an ATM, or through direct deposit into an account, using their own account or someone else's (% senders, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15170.1\",\"Sent domestic remittances: through a mobile phone (% senders, age 15+) [w2]\",\"Denotes, among respondents reporting personally giving or sending any of their money in the past 12 months to a relative or friend living in a different area of their country, the percentage who sent it through a mobile phone, using their own account or someone else's (% senders, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15171.1\",\"Sent domestic remittances: through a money transfer operator (% senders, age 15+) [w2]\",\"Denotes, among respondents reporting personally giving or sending any of their money in the past 12 months to a relative or friend living in a different area of their country, the percentage who sent it through a money transfer operator (% senders, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15172.1\",\"Paid school fees in the past year (% age 15+) [w2]\",\"Denotes the percentage of respondents who report personally making regular payments for school fees in the past 12 months (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15172.10\",\"Paid school fees in the past year, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report personally making regular payments for school fees in the past 12 months (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15172.2\",\"Paid school fees in the past year, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report personally making regular payments for school fees in the past 12 months (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15172.3\",\"Paid school fees in the past year, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report personally making regular payments for school fees in the past 12 months (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15172.4\",\"Paid school fees in the past year, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report personally making regular payments for school fees in the past 12 months (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15172.5\",\"Paid school fees in the past year, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report personally making regular payments for school fees in the past 12 months (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15172.6\",\"Paid school fees in the past year, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report personally making regular payments for school fees in the past 12 months (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15172.7\",\"Paid school fees in the past year, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report personally making regular payments for school fees in the past 12 months (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15172.8\",\"Paid school fees in the past year, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report personally making regular payments for school fees in the past 12 months (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15172.9\",\"Paid school fees in the past year, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report personally making regular payments for school fees in the past 12 months (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15172_3.1\",\"Used an account at a financial institution to pay for school fees (% age 15+) [w2]\",\"Denotes the percentage of respondents who report making a payment for school fees directly from an account at a bank or another type of financial institution in the past 12 months (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15172_3.10\",\"Used an account at a financial institution to pay for school fees, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report making a payment for school fees directly from an account at a bank or another type of financial institution in the past 12 months (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15172_3.2\",\"Used an account at a financial institution to pay for school fees, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report making a payment for school fees directly from an account at a bank or another type of financial institution in the past 12 months (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15172_3.3\",\"Used an account at a financial institution to pay for school fees, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report making a payment for school fees directly from an account at a bank or another type of financial institution in the past 12 months (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15172_3.4\",\"Used an account at a financial institution to pay for school fees, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report making a payment for school fees directly from an account at a bank or another type of financial institution in the past 12 months (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15172_3.5\",\"Used an account at a financial institution to pay for school fees, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report making a payment for school fees directly from an account at a bank or another type of financial institution in the past 12 months (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15172_3.6\",\"Used an account at a financial institution to pay for school fees, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report making a payment for school fees directly from an account at a bank or another type of financial institution in the past 12 months (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15172_3.7\",\"Used an account at a financial institution to pay for school fees, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report making a payment for school fees directly from an account at a bank or another type of financial institution in the past 12 months (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15172_3.8\",\"Used an account at a financial institution to pay for school fees, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report making a payment for school fees directly from an account at a bank or another type of financial institution in the past 12 months (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15172_3.9\",\"Used an account at a financial institution to pay for school fees, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report making a payment for school fees directly from an account at a bank or another type of financial institution in the past 12 months (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15172_4.1\",\"Used a mobile phone to pay for school fees (% age 15+) [w2]\",\"Denotes the percentage of respondents who report making a payment for school fees through a mobile phone in the past 12 months (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15172_4.10\",\"Used a mobile phone to pay for school fees, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report making a payment for school fees through a mobile phone in the past 12 months (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15172_4.2\",\"Used a mobile phone to pay for school fees, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report making a payment for school fees through a mobile phone in the past 12 months (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15172_4.3\",\"Used a mobile phone to pay for school fees, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report making a payment for school fees through a mobile phone in the past 12 months (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15172_4.4\",\"Used a mobile phone to pay for school fees, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report making a payment for school fees through a mobile phone in the past 12 months (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15172_4.5\",\"Used a mobile phone to pay for school fees, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report making a payment for school fees through a mobile phone in the past 12 months (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15172_4.6\",\"Used a mobile phone to pay for school fees, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report making a payment for school fees through a mobile phone in the past 12 months (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15172_4.7\",\"Used a mobile phone to pay for school fees, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report making a payment for school fees through a mobile phone in the past 12 months (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15172_4.8\",\"Used a mobile phone to pay for school fees, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report making a payment for school fees through a mobile phone in the past 12 months (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15172_4.9\",\"Used a mobile phone to pay for school fees, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report making a payment for school fees through a mobile phone in the past 12 months (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15173.1\",\"Paid school fees: using cash (% paying school fees, age 15+) [w2]\",\"Denotes, among respondents reporting personally making regular payments for school fees in the past 12 months, the percentage who made these payments using cash (% paying school fees, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15174.1\",\"Paid school fees: using an account at a financial institution (% paying school fees, age 15+) [w2]\",\"Denotes, among respondents reporting personally making regular payments for school fees in the past 12 months, the percentage who made these payments directly from an account at a bank or another type of financial institution. This includes using a debit card, a bank transfer, or a check (% paying school fees, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15175.1\",\"Paid school fees: using a mobile phone (% paying school fees, age 15+) [w2]\",\"Denotes, among respondents reporting personally making regular payments for school fees in the past 12 months, the percentage who made these payments through a mobile phone (% paying school fees, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15176.1.1\",\"Received wages: into a pre-existing account (% cashless wage recipients, age 15+) [w2]\",\"Denotes, among respondents using an account at a bank or another type of financial institution, a card, or a mobile phone to receive wages in the past 12 months, the percentage who report having that particular account before they began receiving payments from an employer (% cashless wage recipients, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15176.2.1\",\"Received wages: into a new but not first account (% cashless wage recipients, age 15+) [w2]\",\"Denotes, among respondents using an account at a bank or another type of financial institution, a card, or a mobile phone to receive wages in the past 12 months, the percentage who report having an account before, but opening that particular account to receive payments from an employer (% cashless wage recipients, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15176.3.1\",\"Received wages: into a new and first account (% cashless wage recipients, age 15+) [w2]\",\"Denotes, among respondents using an account at a bank or another type of financial institution, a card, or a mobile phone to receive wages in the past 12 months, the percentage who report opening their first account to receive payments from an employer (% cashless wage recipients, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15177.1\",\"Received government transfers in the past year (% age 15+) [w2]\",\"Denotes the percentage of respondents who report personally receiving any financial support from the government in the past 12 months. This includes payments for educational or medical expenses, unemployment benefits, subsidy payments, or any kind of social benefits. It does not include wages or any payments related to work (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15177.10\",\"Received government transfers in the past year, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report personally receiving any financial support from the government in the past 12 months. This includes payments for educational or medical expenses, unemployment benefits, subsidy payments, or any kind of social benefits. It does not include wages or any payments related to work (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15177.2\",\"Received government transfers in the past year, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report personally receiving any financial support from the government in the past 12 months. This includes payments for educational or medical expenses, unemployment benefits, subsidy payments, or any kind of social benefits. It does not include wages or any payments related to work (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15177.3\",\"Received government transfers in the past year, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report personally receiving any financial support from the government in the past 12 months. This includes payments for educational or medical expenses, unemployment benefits, subsidy payments, or any kind of social benefits. It does not include wages or any payments related to work (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15177.4\",\"Received government transfers in the past year, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report personally receiving any financial support from the government in the past 12 months. This includes payments for educational or medical expenses, unemployment benefits, subsidy payments, or any kind of social benefits. It does not include wages or any payments related to work (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15177.5\",\"Received government transfers in the past year, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report personally receiving any financial support from the government in the past 12 months. This includes payments for educational or medical expenses, unemployment benefits, subsidy payments, or any kind of social benefits. It does not include wages or any payments related to work (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15177.6\",\"Received government transfers in the past year, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report personally receiving any financial support from the government in the past 12 months. This includes payments for educational or medical expenses, unemployment benefits, subsidy payments, or any kind of social benefits. It does not include wages or any payments related to work (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15177.7\",\"Received government transfers in the past year, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report personally receiving any financial support from the government in the past 12 months. This includes payments for educational or medical expenses, unemployment benefits, subsidy payments, or any kind of social benefits. It does not include wages or any payments related to work (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15177.8\",\"Received government transfers in the past year, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report personally receiving any financial support from the government in the past 12 months. This includes payments for educational or medical expenses, unemployment benefits, subsidy payments, or any kind of social benefits. It does not include wages or any payments related to work (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15177.9\",\"Received government transfers in the past year, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report personally receiving any financial support from the government in the past 12 months. This includes payments for educational or medical expenses, unemployment benefits, subsidy payments, or any kind of social benefits. It does not include wages or any payments related to work (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15177_3.1\",\"Used an account to receive government transfers (% age 15+) [w2]\",\"Denotes the percentage of respondents who report receiving any financial support from the government directly into an account at a bank or another type of financial institution, into a card, or through a mobile phone in the past 12 months (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15177_3.10\",\"Used an account to receive government transfers, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report receiving any financial support from the government directly into an account at a bank or another type of financial institution, into a card, or through a mobile phone in the past 12 months (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15177_3.2\",\"Used an account to receive government transfers, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report receiving any financial support from the government directly into an account at a bank or another type of financial institution, into a card, or through a mobile phone in the past 12 months (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15177_3.3\",\"Used an account to receive government transfers, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report receiving any financial support from the government directly into an account at a bank or another type of financial institution, into a card, or through a mobile phone in the past 12 months (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15177_3.4\",\"Used an account to receive government transfers, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report receiving any financial support from the government directly into an account at a bank or another type of financial institution, into a card, or through a mobile phone in the past 12 months (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15177_3.5\",\"Used an account to receive government transfers, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report receiving any financial support from the government directly into an account at a bank or another type of financial institution, into a card, or through a mobile phone in the past 12 months (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15177_3.6\",\"Used an account to receive government transfers, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report receiving any financial support from the government directly into an account at a bank or another type of financial institution, into a card, or through a mobile phone in the past 12 months (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15177_3.7\",\"Used an account to receive government transfers, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report receiving any financial support from the government directly into an account at a bank or another type of financial institution, into a card, or through a mobile phone in the past 12 months (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15177_3.8\",\"Used an account to receive government transfers, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report receiving any financial support from the government directly into an account at a bank or another type of financial institution, into a card, or through a mobile phone in the past 12 months (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15177_3.9\",\"Used an account to receive government transfers, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report receiving any financial support from the government directly into an account at a bank or another type of financial institution, into a card, or through a mobile phone in the past 12 months (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15178.1\",\"Received government transfers: in cash (% transfer recipients, age 15+) [w2]\",\"Denotes, among respondents reporting personally receiving any financial support from the government in the past 12 months, the percentage who received this financial support directly in cash (% transfer recipients, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15179_2.1\",\"Received government transfers: into an account at a financial institution (% transfer recipients, age 15+) [w2]\",\"Denotes, among respondents reporting personally receiving any financial support from the government in the past 12 months, the percentage who received this financial support directly into an account at a bank or another type of financial institution or into a card (% transfer recipients, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15181.1\",\"Received government transfers: through a mobile phone (% transfer recipients, age 15+) [w2]\",\"Denotes, among respondents reporting personally receiving any financial support from the government in the past 12 months, the percentage who received this financial support through a mobile phone (% non-cash transfer recipients, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15182.1.1\",\"Received government transfers: withdraw all right away (% cashless transfer recipients, age 15+) [w2]\",\"Denotes, among respondents using an account at a bank or another type of financial institution, a card, or a mobile phone to receive financial support from the government in the past 12 months, the percentage who report withdrawing or transferring all the money out of the account right away (% cashless transfer recipients, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15182.2.1\",\"Received government transfers: withdraw over time as needed (% cashless transfer recipients, age 15+) [w2]\",\"Denotes, among respondents using an account at a bank or another type of financial institution, a card, or a mobile phone to receive financial support from the government in the past 12 months, the percentage who report withdrawing or transferring the money over time as needed (% cashless transfer recipients, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15183.1.1\",\"Received government transfers: into a pre-existing account (% cashless transfer recipients, age 15+) [w2]\",\"Denotes, among respondents using an account at a bank or another type of financial institution, a card, or a mobile phone to receive financial support from the government in the past 12 months, the percentage who report having that particular account before they began receiving transfers from the government (% cashless transfer recipients, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15183.2.1\",\"Received government transfers: into a new but not first account (% cashless transfer recipients, age 15+) [w2]\",\"Denotes, among respondents using an account at a bank or another type of financial institution, a card, or a mobile phone to receive financial support from the government in the past 12 months, the percentage who report having an account before, but opening that particular account to receive transfers from the government (% cashless transfer recipients, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15183.3.1\",\"Received government transfers: into a new and first account (% cashless transfer recipients, age 15+) [w2]\",\"Denotes, among respondents using an account at a bank or another type of financial institution, a card, or a mobile phone to receive financial support from the government in the past 12 months, the percentage who report opening their first account to receive transfers from the government (% cashless transfer recipients, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15184.1\",\"Received payments for agricultural products in the past year (% age 15+) [w2]\",\"Denotes the percentage of respondents who report personally receiving money from any source for the sale of agricultural products, crops, produce, or livestock (self- or family-owned) in the past 12 months (% age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15184.10\",\"Received payments for agricultural products in the past year, rural (% age 15+) [w2]\",\"Denotes the percentage of respondents who report personally receiving money from any source for the sale of agricultural products, crops, produce, or livestock (self- or family-owned) in the past 12 months (rural, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15184.2\",\"Received payments for agricultural products in the past year, male (% age 15+) [w2]\",\"Denotes the percentage of respondents who report personally receiving money from any source for the sale of agricultural products, crops, produce, or livestock (self- or family-owned) in the past 12 months (male, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15184.3\",\"Received payments for agricultural products in the past year, female (% age 15+) [w2]\",\"Denotes the percentage of respondents who report personally receiving money from any source for the sale of agricultural products, crops, produce, or livestock (self- or family-owned) in the past 12 months (female, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15184.4\",\"Received payments for agricultural products in the past year, young adults (% ages 15-24) [w2]\",\"Denotes the percentage of respondents who report personally receiving money from any source for the sale of agricultural products, crops, produce, or livestock (self- or family-owned) in the past 12 months (% ages 15-24). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15184.5\",\"Received payments for agricultural products in the past year, older adults (% ages 25+) [w2]\",\"Denotes the percentage of respondents who report personally receiving money from any source for the sale of agricultural products, crops, produce, or livestock (self- or family-owned) in the past 12 months (% age 25+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15184.6\",\"Received payments for agricultural products in the past year, primary education or less (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report personally receiving money from any source for the sale of agricultural products, crops, produce, or livestock (self- or family-owned) in the past 12 months (primary education or less, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15184.7\",\"Received payments for agricultural products in the past year, secondary education or more (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report personally receiving money from any source for the sale of agricultural products, crops, produce, or livestock (self- or family-owned) in the past 12 months (secondary education or more, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15184.8\",\"Received payments for agricultural products in the past year, income, poorest 40% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report personally receiving money from any source for the sale of agricultural products, crops, produce, or livestock (self- or family-owned) in the past 12 months (income, poorest 40%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15184.9\",\"Received payments for agricultural products in the past year, income, richest 60% (% ages 15+) [w2]\",\"Denotes the percentage of respondents who report personally receiving money from any source for the sale of agricultural products, crops, produce, or livestock (self- or family-owned) in the past 12 months (income, richest 60%, % age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15185.1\",\"Received payments for agricultural products: in cash (% recipients, age 15+) [w2]\",\"Denotes, among respondents reporting personally receiving money from any source for the sale of agricultural products, crops, produce, or livestock (self- or family-owned) in the past 12 months, the percentage who received this money directly in cash (% recipients, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15186.1\",\"Received payments for agricultural products: into an account at a financial institution (% recipients, age 15+) [w2]\",\"Denotes, among respondents reporting personally receiving money from any source for the sale of agricultural products, crops, produce, or livestock (self- or family-owned) in the past 12 months, the percentage who received this money directly into an account at a bank or another type of financial institution (% recipients, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"WP15187.1\",\"Received payments for agricultural products: through a mobile phone (% recipients, age 15+) [w2]\",\"Denotes, among respondents reporting personally receiving money from any source for the sale of agricultural products, crops, produce, or livestock (self- or family-owned) in the past 12 months, the percentage who received this money through a mobile phone (% recipients, age 15+). [w2: data are available for wave 2].\",\"Global Findex ( Global Financial Inclusion database)\",\"Demirguc-Kunt et al., 2015\"\n\"XGDP.23.FSGOV.FDINSTADM.FFD\",\"Government expenditure in secondary institutions education as % of GDP (%)\",\"Total general (local, regional and central) government expenditure in educational institutions (current and capital) at a given level of education, expressed as a percentage of GDP. It excludes transfers to private entities such as subsidies to households and students, but includes expenditure funded by transfers from international sources to government. Divide total expenditure in public institutions of a given level of education (ex. primary, secondary, or all levels combined) by the GDP, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"XGDP.56.FSGOV.FDINSTADM.FFD\",\"Government expenditure in tertiary institutions as % of GDP (%)\",\"Total general (local, regional and central) government expenditure in educational institutions (current and capital) at a given level of education, expressed as a percentage of GDP. It excludes transfers to private entities such as subsidies to households and students, but includes expenditure funded by transfers from international sources to government. Divide total expenditure in public institutions of a given level of education (ex. primary, secondary, or all levels combined) by the GDP, and multiply by 100. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/\",\"Education Statistics\",\"UNESCO Institute for Statistics\"\n\"ZINC\",\"Zinc, cents/kg, current$\",\"Zinc (LME), high grade, minimum 99.95% purity, settlement price beginning April 1990; previously special high grade, minimum 99.995%, cash prices \",\"Global Economic Monitor (GEM) Commodities\",\"Platts Metals Week, Engineering and Mining Journal; Thomson Reuters Datastream; World Bank.\"\n"
  },
  {
    "path": "README.md",
    "content": "# JuliaCourseNotebooks\n\nJupyter notebooks and Juno .jl files for the Julia Scientific Programming course on Coursera\n\nThe recently released version 1.0 of Julia marked a milestone in the development of the language.  Julia has been a rapidly evolving language.  This creates challenges when teaching Julia.  Over the next few weeks and month the course code will be adapted to comply with the changes introduced in Julia 1.0 (0.7).\n\n**Juno** is the integrated development environment (IDE) choice for Julia.  It is built on the Atom IDE.  As of the time of writing of this README file, Julia Computing still releases version 0.6.4 of Julia.  To use Julia 1.0, dowload it from https://julialang.org.  Also dowload Atom from https://atom.io  In Atom hit the CONTROL key (or COMMAND key on a Mac) and the comma key.  This brings up the settings.  Under the Install tab search for *uber-juno* which will install the Julia interface for Atom.  When this is done, also add the address to the julia 1.0 executable on your computer.  Restart ATOM.\n\nWhen creating a new file, save it first, explicitely using the .jl extension.  This will tell Atom to use the Julia interface.  Have a look at some of the new .jl files added to this repository.\n\nJulia Computing ( https://www.juliacomputing.com ) releases of Julia contains the Juno interface.  We will let you know when the 1.0 release goes live.\n"
  },
  {
    "path": "Week 3_Peer graded quiz on Types.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Peer-graded quiz for `Types`\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Please note that this notebook was created in Julia version 0.4.6.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### Answer the following questions by creating the appropriate code.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 1\\n\",\n    \"\\n\",\n    \"List the subtypes of the `Real` type.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Subtypes of Real\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 2\\n\",\n    \"\\n\",\n    \"Create a user-defined type called `MyFloat` with a single field called `x` that is of type `Float64`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Create a user-defined type called MyFloat with a single field called x of type Float64\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 3\\n\",\n    \"\\n\",\n    \"Instantiate the `MyFloat` type with a field values of $ 3 $.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Instantiate the MyFloat type with a field value of 3\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 4\\n\",\n    \"\\n\",\n    \"Create a user-defined parametrized type called `MyCube` with $ 3 $ fields called `h`, `w`, and `l`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Create a user-defined parametrized type called MyCube with $ 3 $ fields called h, w, and l.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 5\\n\",\n    \"\\n\",\n    \"Instantiate the type `MyCube` with $ 2 $ variables called `cube1` and `cube2`, i.e. `cube1 = MyCube(...`.  Pass the field values $ 2 $, $ 3 $, and $ 2 $ to `cube1` and $ 4 $, $ 3 $, and $ 2 $ to `cube2`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Create 2 instances of the MyCube type\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 6\\n\",\n    \"\\n\",\n    \"Change the `h` field value of `cube1` to $ 3 $.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Change the h filed value of cube1 to 3\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 7\\n\",\n    \"\\n\",\n    \"Import the `Base.log` function.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Import the Base.log function\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 8\\n\",\n    \"\\n\",\n    \"Create and external constructor that will specify the `log()` function for an instance of the `MyCube` type as the natural logarithm of the product of the values held in the fields `h`, `w`, and `l`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Create and external constructor for the natural logarithm of the volume of an instance of MyCube\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 9\\n\",\n    \"\\n\",\n    \"Calculate the `log()` of `cube1`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# The natural log of cube1\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 10\\n\",\n    \"\\n\",\n    \"Overload the methods of the `+()` function to add the individual field values of $ 2 $ instances of the `MyCube` type.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Overload the methods of the +() functions for the MyCube type\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 11\\n\",\n    \"\\n\",\n    \"Add `cube1` and `cube2`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Add cube1 and cube2\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"anaconda-cloud\": {},\n  \"kernelspec\": {\n   \"display_name\": \"Julia 0.4.6\",\n   \"language\": \"julia\",\n   \"name\": \"julia-0.4\"\n  },\n  \"language_info\": {\n   \"file_extension\": \".jl\",\n   \"mimetype\": \"application/julia\",\n   \"name\": \"julia\",\n   \"version\": \"0.4.6\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 0\n}\n"
  },
  {
    "path": "Week 4_Peer graded quiz on Gadfly.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Peer-graded quiz on Gadfly\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Please note that this notebook was created in Julia version 0.4.6.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### After importing `Gadfly` and `DataFrames`, answer the following questions by creating the appropriate code.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# using Gadfly, DataFrames;\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 1\\n\",\n    \"\\n\",\n    \"Create a DataFrame called `data` with column names `A`, `B`, `C`, and `D`.  Each column should have $ 30 $ values.\\n\",\n    \"\\n\",\n    \"- For column `A` generate $ 30 $ random values in the range $ 1 : 10 $\\n\",\n    \"- For column `B` generate $ 30 $ random values in the range $ 1 : 10 $\\n\",\n    \"- For column `C` generate $ 30 $ random values from the choices `P` and `Q`\\n\",\n    \"- For column `D` generate $ 30 $ random values from the choices `X`, `Y`, and `Z`\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Create the DataFrame called data\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 2\\n\",\n    \"\\n\",\n    \"Create a scatter plot from columns `A` and `B` using the point geometry.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 27,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Create a scatter plot using the point geometry\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 3\\n\",\n    \"\\n\",\n    \"Change the point marker color to `gray` and increase the size to `5px`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 28,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Change the point marker color to gray and the size to 5px\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 4\\n\",\n    \"\\n\",\n    \"Create a (simple) scatter plot using point geometry using values in columns `A` and `B`, but grouped by the unique elements found in column `C`.  Leave all other elements at their default values.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 29,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Create a scatter plot using point geometry from the values in columns A and B, grouped by column C\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 5\\n\",\n    \"\\n\",\n    \"Receate the plot in *Question 4*, but change the point marker size to `10px`, with colors `#AAAAAA` and `#777777`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 30,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Recreate the plot in Question 4 with point marker size 10px and colors #AAAAAA and #777777\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 6\\n\",\n    \"\\n\",\n    \"Create a box plot of the values in column `A` based on the unique values in column `D`.  Render the plot in `grey`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 31,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Create a grey box plot of the values in column A based on the unique values in columns D\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 7\\n\",\n    \"\\n\",\n    \"Recreate the plot in Question 6.  Increase the spacing to `50px` and add the plot title \\\"`My plot`\\\".\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 32,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"#  Recreate the plot in Question 6 with increased spacing (50px) and add the title My plot\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 8\\n\",\n    \"\\n\",\n    \"Recreate the plot in Question 7 but add a `ygroup` based on the unqiue values in column C.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 33,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Recreate the plot in Question 7 but add a ygroup based on the unique values in column C\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 9\\n\",\n    \"\\n\",\n    \"Add a new column called `E` and add $ 30 $ values from the standard normal distribution.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 34,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Add column E with 30 values form the standard normal distribution\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 10\\n\",\n    \"\\n\",\n    \"Create a density plot using the values in column `E` and draw a vertical line in `red` with size `2px` though the actual mean of the values in column `E`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 35,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Create a density plot from the values in column E and draw a 2px red vertical line through the actual mean\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"anaconda-cloud\": {},\n  \"kernelspec\": {\n   \"display_name\": \"Julia 0.4.6\",\n   \"language\": \"julia\",\n   \"name\": \"julia-0.4\"\n  },\n  \"language_info\": {\n   \"file_extension\": \".jl\",\n   \"mimetype\": \"application/julia\",\n   \"name\": \"julia\",\n   \"version\": \"0.4.6\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 0\n}\n"
  },
  {
    "path": "Week 4_Peer graded quiz on data.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Peer-graded quiz for data\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Please note that this notebook was created in Julia version 0.4.6.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### Import the following packages and create the DataFrame as indicated.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"WARNING: Method definition combinations(Any, Integer) in module Base at combinatorics.jl:182 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/combinations.jl:42.\\n\",\n      \"WARNING: Method definition permutations(Any) in module Base at combinatorics.jl:219 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/permutations.jl:24.\\n\",\n      \"WARNING: Method definition partitions(Integer) in module Base at combinatorics.jl:252 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/partitions.jl:26.\\n\",\n      \"WARNING: Method definition partitions(Integer, Integer) in module Base at combinatorics.jl:318 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/partitions.jl:93.\\n\",\n      \"WARNING: Method definition partitions(AbstractArray{T<:Any, 1}) in module Base at combinatorics.jl:380 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/partitions.jl:158.\\n\",\n      \"WARNING: Method definition partitions(AbstractArray{T<:Any, 1}, Int64) in module Base at combinatorics.jl:447 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/partitions.jl:228.\\n\",\n      \"WARNING: Method definition factorial(#T<:Integer, #T<:Integer) in module Base at combinatorics.jl:56 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/factorials.jl:18.\\n\",\n      \"WARNING: Method definition factorial(Integer, Integer) in module Base at combinatorics.jl:66 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/factorials.jl:28.\\n\",\n      \"WARNING: Method definition parity(AbstractArray{#T<:Integer, 1}) in module Base at combinatorics.jl:642 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/permutations.jl:221.\\n\",\n      \"WARNING: Method definition nthperm(AbstractArray{#T<:Integer, 1}) in module Base at combinatorics.jl:92 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/permutations.jl:161.\\n\",\n      \"WARNING: Method definition nthperm(AbstractArray{T<:Any, 1}, Integer) in module Base at combinatorics.jl:89 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/permutations.jl:157.\\n\",\n      \"WARNING: Method definition nthperm!(AbstractArray{T<:Any, 1}, Integer) in module Base at combinatorics.jl:70 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/permutations.jl:136.\\n\",\n      \"WARNING: Method definition prevprod(Array{Int64, 1}, Any) in module Base at combinatorics.jl:565 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/partitions.jl:354.\\n\",\n      \"WARNING: Method definition levicivita(AbstractArray{#T<:Integer, 1}) in module Base at combinatorics.jl:611 overwritten in module Combinatorics at /Users/juanklopper/.julia/v0.4/Combinatorics/src/permutations.jl:188.\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"using DataFrames, Distributions, HypothesisTests;\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Plots.PlotlyJSBackend()\"\n      ]\n     },\n     \"execution_count\": 2,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"using Plots\\n\",\n    \"plotlyjs()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"WARNING: New definition \\n\",\n      \"    +(AbstractArray{T<:Any, 2}, WoodburyMatrices.SymWoodbury) at /Users/juanklopper/.julia/v0.4/WoodburyMatrices/src/SymWoodburyMatrices.jl:106\\n\",\n      \"is ambiguous with: \\n\",\n      \"    +(DataArrays.DataArray, AbstractArray) at /Users/juanklopper/.julia/v0.4/DataArrays/src/operators.jl:276.\\n\",\n      \"To fix, define \\n\",\n      \"    +(DataArrays.DataArray{T<:Any, 2}, WoodburyMatrices.SymWoodbury)\\n\",\n      \"before the new definition.\\n\",\n      \"WARNING: New definition \\n\",\n      \"    +(AbstractArray{T<:Any, 2}, WoodburyMatrices.SymWoodbury) at /Users/juanklopper/.julia/v0.4/WoodburyMatrices/src/SymWoodburyMatrices.jl:106\\n\",\n      \"is ambiguous with: \\n\",\n      \"    +(DataArrays.AbstractDataArray, AbstractArray) at /Users/juanklopper/.julia/v0.4/DataArrays/src/operators.jl:300.\\n\",\n      \"To fix, define \\n\",\n      \"    +(DataArrays.AbstractDataArray{T<:Any, 2}, WoodburyMatrices.SymWoodbury)\\n\",\n      \"before the new definition.\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"using StatPlots;\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"data = DataFrame(Subject = collect(1:90), Age = rand(18:60, 90), Variable1 = rand(Normal(100, 10), 90),\\n\",\n    \"Variable2 = rand(Chisq(5), 90), Variable3 = rand(Exponential(4), 90), Category1 = rand([\\\"X\\\", \\\"R\\\"], 90),\\n\",\n    \"Category2 = rand([\\\"I\\\", \\\"II\\\", \\\"III\\\", \\\"IV\\\"], 90),\\n\",\n    \"Category3 = rand([\\\"Improved\\\", \\\"Static\\\", \\\"Worsened\\\"], 90));\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### Answer the following questions by creating the appropriate code.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 1\\n\",\n    \"\\n\",\n    \"Use the appropriate function from the `DataFrames` to describe the `Variable1` column.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Describe the values in Variable1\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 2\\n\",\n    \"\\n\",\n    \"Use the appropriate function from the `DataFrames` package to list how many unique values there are in the `Category1` column.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# How many unique value are there in the Category1 column?\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 3\\n\",\n    \"\\n\",\n    \"Plot a histogram of the values in `Variable3` using 10 bins.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Histogram of Variable3\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 4\\n\",\n    \"\\n\",\n    \"Create two new DataFrames named `X` and `R` such that each of these sub-DataFrames only have the corresponding data point values in the `Category1` column, i.e. `X = ...`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Create three new sub-DataFrames based on the unique values in Category1\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 5\\n\",\n    \"\\n\",\n    \"Use the `EqualVarianceTTest()` from the `HypothesisTests` package to perform a *t*-test comparing the values in `Variable1` for the null hypothesis stating that there is no difference between the two groups.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# t-Test comparing Variable1 values between groups X and R\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 6\\n\",\n    \"\\n\",\n    \"Create a scatter plot for `Variable1` and `Variable2` values grouped by `Category1`.  Make the title of the plot *My scatter plot*.  The markers should be of opacity $ 0.5 $ and size $ 10 $.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Scatter plot of Variable1 against Variable2 grouped by Category1 with maker opacity 0.5 and size 10\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 7\\n\",\n    \"\\n\",\n    \"Create a sub-DataFrame called `worsened` including only rows indicating `Worsened` in the `Category3` column, i.e. `worsened = ...`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Create a sub-DataFrame for patients that have worsened according to Category3 values\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 8\\n\",\n    \"\\n\",\n    \"Calculate the mean and standard deviation of `Variable1` values for patients who have `Worsened` as computer variables `meanw` and `stdw`, i.e. `meanw = ....`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Mean of Variable1 for patients that have worsened\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 9\\n\",\n    \"\\n\",\n    \"Create a plot of the theoretical distribution using the values for `meanw` and `stdw`.  State the `label` value as *Distribution* and provide a unique title to you plot.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Create a theoretical distribution plot with meanw and stdw\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 10\\n\",\n    \"\\n\",\n    \"Create a **Plotly** account and sign in.  Return to your notebook and upload the image in *Question 10* to the **Plotly** cloud for editing.  Save the plot by hitting the *Save* button.  Share the link to the plot by copying the *share link* in a Markdown cell.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"anaconda-cloud\": {},\n  \"kernelspec\": {\n   \"display_name\": \"Julia 0.4.6\",\n   \"language\": \"julia\",\n   \"name\": \"julia-0.4\"\n  },\n  \"language_info\": {\n   \"file_extension\": \".jl\",\n   \"mimetype\": \"application/julia\",\n   \"name\": \"julia\",\n   \"version\": \"0.4.6\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 0\n}\n"
  },
  {
    "path": "Week1_1-WhySpecial.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\n\",\n       \"\\n\",\n       \"<style>\\n\",\n       \"\\n\",\n       \"@font-face {\\n\",\n       \"    font-family: \\\"Computer Modern\\\";\\n\",\n       \"    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"#notebook_panel { /* main background */\\n\",\n       \"    background: #ddd;\\n\",\n       \"    color: #000000;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"/* Formatting for header cells */\\n\",\n       \".text_cell_render h1 {\\n\",\n       \"    font-family: 'Philosopher', sans-serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 2.2em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(0, 80, 120);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \".text_cell_render h2 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 1.9em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(200,100,0);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \"\\n\",\n       \".text_cell_render h3 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    margin-top:12px;\\n\",\n       \"    margin-bottom: 3px;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    color: rgb(94,127,192);\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h4 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h5 {\\n\",\n       \"    font-family: 'Alegreya Sans', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 16pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    margin-bottom: .1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h6 {\\n\",\n       \"    font-family: 'PT Mono', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 10pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    margin-bottom: 1px;\\n\",\n       \"    margin-top: 1px;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".CodeMirror{\\n\",\n       \"        font-family: \\\"PT Mono\\\";\\n\",\n       \"        font-size: 100%;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"</style>\\n\",\n       \"\\n\"\n      ],\n      \"text/plain\": [\n       \"HTML{ASCIIString}(\\\"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\\\n\\\\n<style>\\\\n\\\\n@font-face {\\\\n    font-family: \\\\\\\"Computer Modern\\\\\\\";\\\\n    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\\\n}\\\\n\\\\n#notebook_panel { /* main background */\\\\n    background: #ddd;\\\\n    color: #000000;\\\\n}\\\\n\\\\n\\\\n\\\\n/* Formatting for header cells */\\\\n.text_cell_render h1 {\\\\n    font-family: 'Philosopher', sans-serif;\\\\n    font-weight: 400;\\\\n    font-size: 2.2em;\\\\n    line-height: 100%;\\\\n    color: rgb(0, 80, 120);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n.text_cell_render h2 {\\\\n    font-family: 'Philosopher', serif;\\\\n    font-weight: 400;\\\\n    font-size: 1.9em;\\\\n    line-height: 100%;\\\\n    color: rgb(200,100,0);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n\\\\n.text_cell_render h3 {\\\\n    font-family: 'Philosopher', serif;\\\\n    margin-top:12px;\\\\n    margin-bottom: 3px;\\\\n    font-style: italic;\\\\n    color: rgb(94,127,192);\\\\n}\\\\n\\\\n.text_cell_render h4 {\\\\n    font-family: 'Philosopher', serif;\\\\n}\\\\n\\\\n.text_cell_render h5 {\\\\n    font-family: 'Alegreya Sans', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 16pt;\\\\n    color: grey;\\\\n    font-style: italic;\\\\n    margin-bottom: .1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\n\\\\n.text_cell_render h6 {\\\\n    font-family: 'PT Mono', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 10pt;\\\\n    color: grey;\\\\n    margin-bottom: 1px;\\\\n    margin-top: 1px;\\\\n}\\\\n\\\\n.CodeMirror{\\\\n        font-family: \\\\\\\"PT Mono\\\\\\\";\\\\n        font-size: 100%;\\\\n}\\\\n\\\\n</style>\\\\n\\\\n\\\")\"\n      ]\n     },\n     \"execution_count\": 1,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Setting up a custom stylesheet in IJulia\\n\",\n    \"file = open(\\\"style.css\\\") # A .css file in the same folder as this notebook file\\n\",\n    \"styl = readall(file) # Read the file\\n\",\n    \"HTML(\\\"$styl\\\") # Output as HTML\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# PROGRAMMING LANGUAGES AND WHY JULIA IS SPECIAL \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>In this lesson</h2>\\n\",\n    \"\\n\",\n    \"- [Outcome](#Outcome)\\n\",\n    \"- [Comparison with other programming languages](#Comparison-with-other-programming-languages)\\n\",\n    \"- [Why Julia is easy to learn](#Why-Julia-is-easy-to-learn)\\n\",\n    \"- [Some technical aspects of Julia](#Some-technical-aspects-of-Julia)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>Outcome</h2>\\n\",\n    \"\\n\",\n    \"After this lesson, you will be able to: \\n\",\n    \"\\n\",\n    \"- Say how Julia compares to Python, Matlab, C and Fortran\\n\",\n    \"- Say why Julia is easy to learn\\n\",\n    \"- List some technical aspects of Julia\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>Comparison with other programming languages</h2>\\n\",\n    \"\\n\",\n    \"#### Julia is easy to learn -- but so are many other languages, for example Python and Matlab\\n\",\n    \"\\n\",\n    \"#### Julia is fast -- but so are some other languages, notably C and Fortran (terms and condition apply)\\n\",\n    \"\\n\",\n    \"#### Julia is free -- but so are Python, R and Octave\\n\",\n    \"\\n\",\n    \"\\n\",\n    \".\\n\",\n    \"### But Julia is unique in that it is all three: free, fast AND easy to learn\\n\",\n    \"\\n\",\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>Why Julia is easy to learn</h2>\\n\",\n    \"\\n\",\n    \"Basically, Julia is easy to learn because Julia programs are quick to write. The main reason concerns the number of lines of code:\\n\",\n    \"\\n\",\n    \"***IN JULIA, ONE WRITES ONLY A FEW LINES PER TASK***\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"Computer programs are written to perform tasks. These can be simple, such as computing interest earned, or complex, such as converting speech to text.\\n\",\n    \"\\n\",\n    \"Julia programs tend to be short. For example, a C program for opening a file and reading its data into computer memory, converting the data to a different format along the way, can be expected to be far longer in C than in Julia.\\n\",\n    \"\\n\",\n    \"In this it is similar to Python and Matlab.\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"## Speed of execution\\n\",\n    \"\\n\",\n    \"The speed of a program is quite a tricky thing to measure, what with computers varying a lot in basic processor speed, available memory, coprocessors and other multitasking tricks.\\n\",\n    \"\\n\",\n    \"Nevertheless, if a task in Python or Matlab is consuming a lot of time (that is, if it runs in minutes or hours rather than milliseconds and seconds), it often runs a lot faster in Julia. There are some benchmark tests to confirm this****. \\n\",\n    \"\\n\",\n    \"In this it is similar to C and Fortran (see also the remarks below on Julias *type system*).\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"****To be fair, there are Python enthusiasts who declare those tests unreliable and biased.\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"#### It should also be said that slow programs can be written in languages thath are supposed to be fast, and this is true for Julia as well. In this course, we will pay some attention to Julia's type system, which is the heart of most performance issues in Julia. However, the principles and techniques for making the most of Julia's capacity for speed is a subject for a more advanced course than this one.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>Some technical aspects of Julia</h2>\\n\",\n    \"\\n\",\n    \"### Julia is strongly typed and dynamic\\n\",\n    \"\\n\",\n    \"This combination is unique to Julia. Dynamic languages like Python and Matlab tend to be easy to learn and the programs written in them tend to quite short. Up to now, such languages have only used fairly simple type systems, which meant the programs could not be optimised to make the best possible use of processor capacity.\\n\",\n    \"\\n\",\n    \"It is the strong and very detailed type system that allows Julia code to run (almost) as fast as C. \\n\",\n    \"\\n\",\n    \"You will learn about Julia's type system in Lecture 6; we plunge into Julia's dynamic aspect in Lecture 3.\\n\",\n    \"\\n\",\n    \"### Julia functions have multiple dispatch\\n\",\n    \"\\n\",\n    \"This is linked to the type system. You will learn about functions in Lectures 8 and 9.\\n\",\n    \"\\n\",\n    \"### Julia supports parallel programming, is concurrent, and has a data model suitable for huge data sets.\\n\",\n    \"\\n\",\n    \"All these things means that Julia is especially suitable for distributed and networked computing and data management, and that it scales really well.\\n\",\n    \"\\n\",\n    \"### Julia interfaces particularly well with other languages\\n\",\n    \"\\n\",\n    \"These include a nearly-native way of using Python code in Julia and vice versa, a very powerful way of linking Julia with C code, and very natural integration of R and Julia. Other language interfaces are in development.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Julia 0.4.6\",\n   \"language\": \"julia\",\n   \"name\": \"julia-0.4\"\n  },\n  \"language_info\": {\n   \"file_extension\": \".jl\",\n   \"mimetype\": \"application/julia\",\n   \"name\": \"julia\",\n   \"version\": \"0.4.6\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 0\n}\n"
  },
  {
    "path": "Week1_2-JuliaBox.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\n\",\n       \"\\n\",\n       \"<style>\\n\",\n       \"\\n\",\n       \"@font-face {\\n\",\n       \"    font-family: \\\"Computer Modern\\\";\\n\",\n       \"    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"#notebook_panel { /* main background */\\n\",\n       \"    background: #ddd;\\n\",\n       \"    color: #000000;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"/* Formatting for header cells */\\n\",\n       \".text_cell_render h1 {\\n\",\n       \"    font-family: 'Philosopher', sans-serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 2.2em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(0, 80, 120);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \".text_cell_render h2 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 1.9em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(200,100,0);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \"\\n\",\n       \".text_cell_render h3 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    margin-top:12px;\\n\",\n       \"    margin-bottom: 3px;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    color: rgb(94,127,192);\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h4 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h5 {\\n\",\n       \"    font-family: 'Alegreya Sans', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 16pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    margin-bottom: .1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h6 {\\n\",\n       \"    font-family: 'PT Mono', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 10pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    margin-bottom: 1px;\\n\",\n       \"    margin-top: 1px;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".CodeMirror{\\n\",\n       \"        font-family: \\\"PT Mono\\\";\\n\",\n       \"        font-size: 100%;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"</style>\\n\",\n       \"\\n\"\n      ],\n      \"text/plain\": [\n       \"HTML{ASCIIString}(\\\"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\\\n\\\\n<style>\\\\n\\\\n@font-face {\\\\n    font-family: \\\\\\\"Computer Modern\\\\\\\";\\\\n    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\\\n}\\\\n\\\\n#notebook_panel { /* main background */\\\\n    background: #ddd;\\\\n    color: #000000;\\\\n}\\\\n\\\\n\\\\n\\\\n/* Formatting for header cells */\\\\n.text_cell_render h1 {\\\\n    font-family: 'Philosopher', sans-serif;\\\\n    font-weight: 400;\\\\n    font-size: 2.2em;\\\\n    line-height: 100%;\\\\n    color: rgb(0, 80, 120);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n.text_cell_render h2 {\\\\n    font-family: 'Philosopher', serif;\\\\n    font-weight: 400;\\\\n    font-size: 1.9em;\\\\n    line-height: 100%;\\\\n    color: rgb(200,100,0);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n\\\\n.text_cell_render h3 {\\\\n    font-family: 'Philosopher', serif;\\\\n    margin-top:12px;\\\\n    margin-bottom: 3px;\\\\n    font-style: italic;\\\\n    color: rgb(94,127,192);\\\\n}\\\\n\\\\n.text_cell_render h4 {\\\\n    font-family: 'Philosopher', serif;\\\\n}\\\\n\\\\n.text_cell_render h5 {\\\\n    font-family: 'Alegreya Sans', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 16pt;\\\\n    color: grey;\\\\n    font-style: italic;\\\\n    margin-bottom: .1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\n\\\\n.text_cell_render h6 {\\\\n    font-family: 'PT Mono', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 10pt;\\\\n    color: grey;\\\\n    margin-bottom: 1px;\\\\n    margin-top: 1px;\\\\n}\\\\n\\\\n.CodeMirror{\\\\n        font-family: \\\\\\\"PT Mono\\\\\\\";\\\\n        font-size: 100%;\\\\n}\\\\n\\\\n</style>\\\\n\\\\n\\\")\"\n      ]\n     },\n     \"execution_count\": 4,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Setting up a custom stylesheet in IJulia\\n\",\n    \"file = open(\\\"style.css\\\") # A .css file in the same folder as this notebook file\\n\",\n    \"styl = readall(file) # Read the file\\n\",\n    \"HTML(\\\"$styl\\\") # Output as HTML\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Getting ready---JuliaBox (live programming using a website)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>In this lecture</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"- [Outcome](#Outcome)\\n\",\n    \"- [The JuliaBox website](#The-JuliaBox-website)\\n\",\n    \"- [Naming, saving, opening JuliaBox notebooks](#Naming,-saving,-opening-JuliaBox-notebooks)\\n\",\n    \"- [A Few More Comments](#A-Few-More-Comments)\\n\",\n    \"- [IJulia](#IJulia)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Outcome</h2>\\n\",\n    \"\\n\",\n    \"After this lecture, you will be able to\\n\",\n    \"- Login to JuliaBox.com\\n\",\n    \"- Start a new notebook on JuliaBox.com\\n\",\n    \"- Do elementary arithmetic in a JuliaBox.com notebook code cell\\n\",\n    \"- Name, save and rename notebooks on JuliaBox.com\\n\",\n    \"- Open an existing notebook on JuliaBox.com\\n\",\n    \"- (optionally) Install IJulia and run interactive notebooks on your own computer\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>The JuliaBox website</h2>\\n\",\n    \"\\n\",\n    \"If you don't have a GMail account, please create one now. Then login to www.juliabox.com (via GMail). You should see something like this:\\n\",\n    \"\\n\",\n    \"<img src=\\\"Week1_Lecture2_1-JuliaBox.png\\\" alt=\\\"(Screenshot of first JuliaBox page)\\\">\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"Click on the New button (near the top right), selecting Julia 0.4.6 as your kernel. It opens a new tab in your browser, using the name Untitled. It should look like this:\\n\",\n    \"\\n\",\n    \"<img src=\\\"Week1_Lecture2_2-Notebook.png\\\" alt=\\\"(Screenshot of empty JuliaBox notebook)\\\">\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"What you see is an empty notebook, with a cell ready to receive input. Note that it is a code cell, indicated by a message in the toolbar at the top of your browser page, and also by the \\\"In [ ]:\\\" to the left of the cell.\\n\",\n    \"\\n\",\n    \"You will need to ensure that cells with code in them are always code cells. Otherwise they will not do any programming tasks for you.\\n\",\n    \"\\n\",\n    \"Let's try it out! We'll enter some very elementary arithmetic expressions, and get the notebook to evaluate them by pressing Shift-Enter\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"2\"\n      ]\n     },\n     \"execution_count\": 5,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"1+1\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"-31\"\n      ]\n     },\n     \"execution_count\": 6,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"2003 * 2016\\n\",\n    \"45 - 76\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Note that the elementary arithmetic operators are  +  -   *   \\\\   ^ \\n\",\n    \"\\n\",\n    \"Parentheses should be used when there is any possibility of more than one interpretation.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Naming, saving, opening JuliaBox notebooks</h2>\\n\",\n    \"\\n\",\n    \"One often wants to save a notebook for future use. JuliaBox gives it the unhelpful name \\\"Untitled\\\", so the first step is to rename your current notebook.\\n\",\n    \"\\n\",\n    \"To do so, click on File (near the top left), a menu opens, click Rename... and type the name of your choice in the box that opens. Click OK or just hit Enter.\\n\",\n    \"\\n\",\n    \"Every once in a while you should save the notebook you are currently working on, and also just before closing the notebook and leaving. \\n\",\n    \"\\n\",\n    \"To save, click on File and in the menu click the Save and Checkpoint option.\\n\",\n    \"\\n\",\n    \"One should always leave gracefully, if you can. So when done with a notebook, click on File, click on Save and Checkpoint, and then click the Close and Halt option.\\n\",\n    \"\\n\",\n    \"At any time you wish to, you can open the notebook again. Just go the directory page, which is the very first one that JuliaBox opened for you. It will be there under you name you saved it as. Just click on it, and it opens in its own tab.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>A Few More Comments</h2>\\n\",\n    \"\\n\",\n    \"### Julia is an interpreted language\\n\",\n    \"\\n\",\n    \"What you have just seen is a demonstration of how interpreted languages work: the moment they get a complete line of code, they execute it. Python and Matlab are also interpreted languages.\\n\",\n    \"\\n\",\n    \"This is the opposite of compiled languages like C and Fortran. There, the code has to be compiled before it is run.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Julia as a command line interpreter\\n\",\n    \"\\n\",\n    \"Actually, the situation here in a notebook is a bit of a luxury: one can put several lines in cell and execute them all at once. From the command line, really one can only execute one line at a time****. In this, it is quite similar to Python and Matlab.\\n\",\n    \"\\n\",\n    \"****Terms and conditions apply: a single command line entry can look as if it contains several lines. And one can chain several (usually very short) commands on one line.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Code files in Julia\\n\",\n    \"\\n\",\n    \"Although JuliaBox (equivalently IJulia) is a wonderful environment in which to explore the pleasures of coding in Julia, you should know that many Julia projects consists purely of files that contain lines of Julia code.\\n\",\n    \"\\n\",\n    \"This of course is how most computer programs are organised.\\n\",\n    \"\\n\",\n    \"In particular, Julia itself consists of a very basic core, written in C, the Base package, mostly written in Julia, and many extensions, some of them written in other languages but mostly written in Julia. This adds up to many thousands of lines of code, organised in hundreds of files.\\n\",\n    \"\\n\",\n    \"In this course, we will not require you to write files of Julia code.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### The Base package\\n\",\n    \"\\n\",\n    \"When you start a new notebook on JuliaBox, you have available to you the Base package. But often one wants to do things that are available only in extensions. They then have to be added to your JuliaBox session. We will cover that in Lesson 3, and use several of the extension packages in Lesson 3 and in Lesson 4.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>IJulia</h2>\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"For those of you who have installed Julia on your own local computer, here's how to get interactive notebooks running\\n\",\n    \"\\n\",\n    \"Step 1: Start Julia, and go to the command line.\\n\",\n    \"\\n\",\n    \"Step 2: Install IJulia by typing and entering \\\"Pkg.add(\\\"IJulia\\\")\\\".\\n\",\n    \"\\n\",\n    \"Step 3: Activate IJulia by typing and entering \\\"using IJulia\\\".\\n\",\n    \"\\n\",\n    \"Step 4: Start up IJulia by typing and entering \\\"notebook()\\\". It opens in a browser (if necessary, starting up the browser).\\n\",\n    \"\\n\",\n    \"It can be a little unclear how to shut it down. I generally first close the browser window, then return to the Julia terminal and press Ctrl-C. The other way round also works. \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Julia 0.4.7\",\n   \"language\": \"julia\",\n   \"name\": \"julia-0.4\"\n  },\n  \"language_info\": {\n   \"file_extension\": \".jl\",\n   \"mimetype\": \"application/julia\",\n   \"name\": \"julia\",\n   \"version\": \"0.4.7\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 0\n}\n"
  },
  {
    "path": "Week1_3-REPL.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\n\",\n       \"\\n\",\n       \"<style>\\n\",\n       \"\\n\",\n       \"@font-face {\\n\",\n       \"    font-family: \\\"Computer Modern\\\";\\n\",\n       \"    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"#notebook_panel { /* main background */\\n\",\n       \"    background: #ddd;\\n\",\n       \"    color: #000000;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"/* Formatting for header cells */\\n\",\n       \".text_cell_render h1 {\\n\",\n       \"    font-family: 'Philosopher', sans-serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 2.2em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(0, 80, 120);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \".text_cell_render h2 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 1.9em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(200,100,0);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \"\\n\",\n       \".text_cell_render h3 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    margin-top:12px;\\n\",\n       \"    margin-bottom: 3px;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    color: rgb(94,127,192);\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h4 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h5 {\\n\",\n       \"    font-family: 'Alegreya Sans', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 16pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    margin-bottom: .1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h6 {\\n\",\n       \"    font-family: 'PT Mono', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 10pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    margin-bottom: 1px;\\n\",\n       \"    margin-top: 1px;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".CodeMirror{\\n\",\n       \"        font-family: \\\"PT Mono\\\";\\n\",\n       \"        font-size: 100%;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"</style>\\n\",\n       \"\\n\"\n      ],\n      \"text/plain\": [\n       \"HTML{ASCIIString}(\\\"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\\\n\\\\n<style>\\\\n\\\\n@font-face {\\\\n    font-family: \\\\\\\"Computer Modern\\\\\\\";\\\\n    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\\\n}\\\\n\\\\n#notebook_panel { /* main background */\\\\n    background: #ddd;\\\\n    color: #000000;\\\\n}\\\\n\\\\n\\\\n\\\\n/* Formatting for header cells */\\\\n.text_cell_render h1 {\\\\n    font-family: 'Philosopher', sans-serif;\\\\n    font-weight: 400;\\\\n    font-size: 2.2em;\\\\n    line-height: 100%;\\\\n    color: rgb(0, 80, 120);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n.text_cell_render h2 {\\\\n    font-family: 'Philosopher', serif;\\\\n    font-weight: 400;\\\\n    font-size: 1.9em;\\\\n    line-height: 100%;\\\\n    color: rgb(200,100,0);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n\\\\n.text_cell_render h3 {\\\\n    font-family: 'Philosopher', serif;\\\\n    margin-top:12px;\\\\n    margin-bottom: 3px;\\\\n    font-style: italic;\\\\n    color: rgb(94,127,192);\\\\n}\\\\n\\\\n.text_cell_render h4 {\\\\n    font-family: 'Philosopher', serif;\\\\n}\\\\n\\\\n.text_cell_render h5 {\\\\n    font-family: 'Alegreya Sans', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 16pt;\\\\n    color: grey;\\\\n    font-style: italic;\\\\n    margin-bottom: .1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\n\\\\n.text_cell_render h6 {\\\\n    font-family: 'PT Mono', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 10pt;\\\\n    color: grey;\\\\n    margin-bottom: 1px;\\\\n    margin-top: 1px;\\\\n}\\\\n\\\\n.CodeMirror{\\\\n        font-family: \\\\\\\"PT Mono\\\\\\\";\\\\n        font-size: 100%;\\\\n}\\\\n\\\\n</style>\\\\n\\\\n\\\")\"\n      ]\n     },\n     \"execution_count\": 2,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Setting up a custom stylesheet in IJulia\\n\",\n    \"file = open(\\\"style.css\\\") # A .css file in the same folder as this notebook file\\n\",\n    \"styl = readall(file) # Read the file\\n\",\n    \"HTML(\\\"$styl\\\") # Output as HTML\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h1> The Julia REPL: strings, arithmetic</h1>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>In this lecture</h2>\\n\",\n    \"\\n\",\n    \"- [Outcome](#Outcome)\\n\",\n    \"- [The REPL](#The-REPL)\\n\",\n    \"- [Further REPL examples](#Further-REPL-examples)\\n\",\n    \"- [Points of note](#Points-of-note)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Outcome</h2>\\n\",\n    \"\\n\",\n    \"After this lecture, you will be able to\\n\",\n    \"- Say what the Julia REPL is and what it does \\n\",\n    \"- Understand and use println()\\n\",\n    \"- Make strings, and combine them using * and ^\\n\",\n    \"- Say what is special about the characters \\\"\\\\\\\" and \\\"$\\\"\\n\",\n    \"\\n\",\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>The REPL</h2>\\n\",\n    \"\\n\",\n    \"The basic process in Julia is the REPL, which stands for \\\"Read-Evaluate-Print Loop\\\".\\n\",\n    \"\\n\",\n    \"Every time you take a step in Julia (hitting Shift-Enter in JuliaBox, for instance), you run through this loop.\\n\",\n    \"\\n\",\n    \"Try it: open a new notebook in JuliaBox (just click on New towards the top right), and in the cell (NB! leave it in code mode!) type the line below, then press Shift-Enter.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Hello, world!\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"println(\\\"Hello, world!\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Famously, the first program in any language. A one-liner. Let's see how it works.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### The \\\"println()\\\" part\\n\",\n    \"\\n\",\n    \"This is one of Julia's built-in functions. The word \\\"println\\\" is the name of the function, and it points to the code that the function uses to do its work.\\n\",\n    \"\\n\",\n    \"The parentheses \\\"( )\\\" is how Julia knows that it is dealing with a function. You need to watch carefully for the different kinds of delimiters in Julia. Here, it is \\\"()\\\", which we will call parentheses. Julia also uses \\\"[ ]\\\" which we will call brackets, and \\\"{ }\\\", which we will call braces.\\n\",\n    \"\\n\",\n    \"If you hadn't noticed, please now realise that the quotation marks in the previous paragraph are NOT part of the delimeters we are talking about, they are just there to indicate that we are talking about the actual signs between the quotation marks. \\n\",\n    \"\\n\",\n    \"That is, on this course we use quotation marks to show we are not concerned with what the signs between the quotation marks mean, we are just talking about those signs themselves. \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### The \\\"Hello, World!\\\" part\\n\",\n    \"\\n\",\n    \"Whatever is inside the parentheses of a function, is called the *argument* of that function. In this case, you see that the argument is inside quotation marks, and guess what? Yes---the function println() does not care about what the message means, it just puts whatever is inside the quotation marks on the screen.\\n\",\n    \"\\n\",\n    \"More or less in the way that a telephone needs to be indifferent to what human beings are actually saying ...\\n\",\n    \"\\n\",\n    \"In particular, println() must treat the argument purely as signs to be printed. By enclosing the message in double quotation marks, you turn it into a string which println() then displays without paying any attention to its contents.\\n\",\n    \"\\n\",\n    \"In Julia, strings are *immutable*. You can, if you like, use some part of a string, you can put strings together---but you can't actually change a string.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Further REPL examples</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"5\"\n      ]\n     },\n     \"execution_count\": 2,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"5   # this is a comment: the value 5 is entered ... and echoed\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"10\"\n      ]\n     },\n     \"execution_count\": 3,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"5+5   # 5+5 is entered, evaluated, and the result is echoed\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"1.2000000000000002\\n\",\n      \"16.8 ... evaluated!\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"println(5-3.8)  # println() treats numbers intelligently ... more or less\\n\",\n    \"\\n\",\n    \"println(5+15-3.2, \\\" ... evaluated!\\\" ) \\n\",\n    \"             # one can mix numbers and strings in println()   \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Hello! My word!\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"println(\\\"Hello!\\\" * \\\" My word!\\\")  # strings are combined using *\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Hello! My word! My word! My word!\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"println(\\\"Hello!\\\" * \\\" My word!\\\"^3) # strings are repeated using ^\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Points of note</h2>\\n\",\n    \"\\n\",\n    \"As I said, REPL stands for \\\"Read-Evaluate-Print Loop\\\". It is a feature of dynamic languages such as Julia, Python, and Matlab. \\n\",\n    \"\\n\",\n    \"Using the acronym REPL just emphasises that a dynamic language continually stands ready to execute one more line of code.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Strings\\n\",\n    \"\\n\",\n    \"Anything included in double quotes is a string in Julia. Of course, the only things you can include are items you can type out. These include ALMOST all the characters on your keyboard---letters, numbers, quotation marks.\\n\",\n    \"\\n\",\n    \"For example\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"\\\"abc!@#%^ .. kyking:;'<,>.?/\\\"\"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"\\\"abc!@#%^ .. kyking:;'<,>.?/\\\"   # string of odd characters ...\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The exceptions are the *escape* characters like \\\"\\\\\\\" and \\\"$\\\" (the most important ones for Julia). As follows:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"ename\": \"LoadError\",\n     \"evalue\": \"LoadError: syntax: incomplete: invalid string syntax\\nwhile loading In[9], in expression starting on line 1\",\n     \"output_type\": \"error\",\n     \"traceback\": [\n      \"LoadError: syntax: incomplete: invalid string syntax\\nwhile loading In[9], in expression starting on line 1\",\n      \"\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"\\\"\\\\\\\" \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Our first bug! It is also a bug if the you try \\\"$\\\". But try \\\"\\\\$\\\" and println(\\\"\\\\$\\\") ... they don't throw any error message, but that doesn't mean they're doing what you want them to!\\n\",\n    \"\\n\",\n    \"Bugs are a big deal in programming --- some would say the main difference between expert and lay programmers is in how they deal with bugs.\\n\",\n    \"\\n\",\n    \"Learn to read bug reports, learn to love them. You will certainly see a great many if you carry on programming!\\n\",\n    \"\\n\",\n    \"The truth is, the error messages that tell you about bugs aren't always that helpful. This is one is not too bad, at least it talks about string syntax, so you know where to look.\\n\",\n    \"\\n\",\n    \"Incidentally, the interactive notebook can warn you about this particular bug\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"ename\": \"LoadError\",\n     \"evalue\": \"LoadError: syntax: incomplete: invalid string syntax\\nwhile loading In[24], in expression starting on line 1\",\n     \"output_type\": \"error\",\n     \"traceback\": [\n      \"LoadError: syntax: incomplete: invalid string syntax\\nwhile loading In[24], in expression starting on line 1\",\n      \"\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"println(\\\"\\\\\\\")   #note the colour of the closing parenthesis---the argument is not a string\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Julia 0.4.6\",\n   \"language\": \"julia\",\n   \"name\": \"julia-0.4\"\n  },\n  \"language_info\": {\n   \"file_extension\": \".jl\",\n   \"mimetype\": \"application/julia\",\n   \"name\": \"julia\",\n   \"version\": \"0.4.6\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 0\n}\n"
  },
  {
    "path": "Week1_4-ArithmeticalExp.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\n\",\n       \"\\n\",\n       \"<style>\\n\",\n       \"\\n\",\n       \"@font-face {\\n\",\n       \"    font-family: \\\"Computer Modern\\\";\\n\",\n       \"    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"#notebook_panel { /* main background */\\n\",\n       \"    background: #ddd;\\n\",\n       \"    color: #000000;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"/* Formatting for header cells */\\n\",\n       \".text_cell_render h1 {\\n\",\n       \"    font-family: 'Philosopher', sans-serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 2.2em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(0, 80, 120);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \".text_cell_render h2 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 1.9em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(200,100,0);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \"\\n\",\n       \".text_cell_render h3 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    margin-top:12px;\\n\",\n       \"    margin-bottom: 3px;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    color: rgb(94,127,192);\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h4 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h5 {\\n\",\n       \"    font-family: 'Alegreya Sans', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 16pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    margin-bottom: .1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h6 {\\n\",\n       \"    font-family: 'PT Mono', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 10pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    margin-bottom: 1px;\\n\",\n       \"    margin-top: 1px;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".CodeMirror{\\n\",\n       \"        font-family: \\\"PT Mono\\\";\\n\",\n       \"        font-size: 100%;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"</style>\\n\",\n       \"\\n\"\n      ],\n      \"text/plain\": [\n       \"HTML{ASCIIString}(\\\"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\\\n\\\\n<style>\\\\n\\\\n@font-face {\\\\n    font-family: \\\\\\\"Computer Modern\\\\\\\";\\\\n    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\\\n}\\\\n\\\\n#notebook_panel { /* main background */\\\\n    background: #ddd;\\\\n    color: #000000;\\\\n}\\\\n\\\\n\\\\n\\\\n/* Formatting for header cells */\\\\n.text_cell_render h1 {\\\\n    font-family: 'Philosopher', sans-serif;\\\\n    font-weight: 400;\\\\n    font-size: 2.2em;\\\\n    line-height: 100%;\\\\n    color: rgb(0, 80, 120);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n.text_cell_render h2 {\\\\n    font-family: 'Philosopher', serif;\\\\n    font-weight: 400;\\\\n    font-size: 1.9em;\\\\n    line-height: 100%;\\\\n    color: rgb(200,100,0);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n\\\\n.text_cell_render h3 {\\\\n    font-family: 'Philosopher', serif;\\\\n    margin-top:12px;\\\\n    margin-bottom: 3px;\\\\n    font-style: italic;\\\\n    color: rgb(94,127,192);\\\\n}\\\\n\\\\n.text_cell_render h4 {\\\\n    font-family: 'Philosopher', serif;\\\\n}\\\\n\\\\n.text_cell_render h5 {\\\\n    font-family: 'Alegreya Sans', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 16pt;\\\\n    color: grey;\\\\n    font-style: italic;\\\\n    margin-bottom: .1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\n\\\\n.text_cell_render h6 {\\\\n    font-family: 'PT Mono', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 10pt;\\\\n    color: grey;\\\\n    margin-bottom: 1px;\\\\n    margin-top: 1px;\\\\n}\\\\n\\\\n.CodeMirror{\\\\n        font-family: \\\\\\\"PT Mono\\\\\\\";\\\\n        font-size: 100%;\\\\n}\\\\n\\\\n</style>\\\\n\\\\n\\\")\"\n      ]\n     },\n     \"execution_count\": 4,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Setting up a custom stylesheet in IJulia\\n\",\n    \"file = open(\\\"style.css\\\") # A .css file in the same folder as this notebook file\\n\",\n    \"styl = readall(file) # Read the file\\n\",\n    \"HTML(\\\"$styl\\\") # Output as HTML\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Arithmetical expressions \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>In this lecture</h2>\\n\",\n    \"\\n\",\n    \"- [Outcome](#Outcome)\\n\",\n    \"- [A really simple example](#A-really-simple-example)\\n\",\n    \"- [Operator Precedence in Julia](#Operator-Precedence-in-Julia)\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>Outcome</h2>\\n\",\n    \"\\n\",\n    \"After this lecture, you will be able to: \\n\",\n    \"\\n\",\n    \"- Form arithmetical expressions using numbers and operators\\n\",\n    \"- State the order of preference of Julia's elementary arithmetical operators\\n\",\n    \"- Work out exactly how Julia would evalutate an arithmetical expression\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>A really simple example</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"-2\"\n      ]\n     },\n     \"execution_count\": 9,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"1 - 2 + 3 - 4\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"1.25\"\n      ]\n     },\n     \"execution_count\": 10,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"1 / 2 + 3 / 4\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.05\"\n      ]\n     },\n     \"execution_count\": 11,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"1 / (2 + 3) / 4\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.36363636363636365\"\n      ]\n     },\n     \"execution_count\": 12,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"1 / (2 + 3 / 4)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.875\"\n      ]\n     },\n     \"execution_count\": 13,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"(1 / 2 + 3 ) / 4\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Operator Precedence in Julia</h2>\\n\",\n    \"\\n\",\n    \"The plus, minus, multiply and divide operators in Julia are, of course, + - / and *.\\n\",\n    \"\\n\",\n    \"When several of them occur, it can be ambiguous to the human eye, for example 1 / 2 / 3. From the left, it is a third of one half. From the right, it is one divided by two thirds. So from the left it is 1/6, and from the right it is 3/2.\\n\",\n    \"\\n\",\n    \"In Julia, though, there is only one way to read it: from the left.\\n\",\n    \"\\n\",\n    \"Likewise, from the left, 2 - 3 + 4 is 3, from the right it is -5, and in Julia it can only be 3.\\n\",\n    \"\\n\",\n    \"Similarly, 2^3/2 is read as follows: first the ^ operator makes 2^3 into 8, and then division by 2 makes it 4. To get the other possibility, you have to use parentheses, namely 2^(3/2).\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"0.16666666666666666\\n\",\n      \"3\\n\",\n      \"4.0\\n\",\n      \"2.82842712474619\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"println(1/2/3)         # remember that println can do simple arithmetic!\\n\",\n    \"println(2-3+4)\\n\",\n    \"println(2^3/2)         # although both inputs are Int64, and the output could be Int64, it is in fact Float64\\n\",\n    \"println( 2^(3/2) )     # the extra spaces inside the parenthesis help the human reader\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"\\n\",\n    \"\\n\",\n    \"In Julia, as in many other languages (in particular Matlab and Python), the order of arithmetical operations is as follows:\\n\",\n    \"\\n\",\n    \"--- do the insides of parentheses first\\n\",\n    \"\\n\",\n    \"--- then do exponentiation\\n\",\n    \"\\n\",\n    \"--- then do multiplication and division, from left to right\\n\",\n    \"\\n\",\n    \"--- finally, do addition and subtraction, from left to right\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"-11.725000000000001\"\n      ]\n     },\n     \"execution_count\": 15,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Let's do some exercises in this. Predict the output of, then run these expressions\\n\",\n    \"0.2 + 0.1 - 3 * 6.7 / 4 - 1 - 2 * 3    #BAD CODE! It mixes types: some Int64, some Float64!!\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"You can really go to town, Julia allows extremely long arithmetical expressions:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"1.4290565829566904\"\n      ]\n     },\n     \"execution_count\": 17,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \".1010101 ^ 2.33333333 - (17/18/19/20/20) + 1. / (1. + 2. / (1. + 3. / (1. + 5.)))^.1010101 ^ 2.33333333 - (17/18/19/20/20) + 1. / (1. + 2. / (1. + 3. / (1. + 5.)))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Julia 0.4.6\",\n   \"language\": \"julia\",\n   \"name\": \"julia-0.4\"\n  },\n  \"language_info\": {\n   \"file_extension\": \".jl\",\n   \"mimetype\": \"application/julia\",\n   \"name\": \"julia\",\n   \"version\": \"0.4.6\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 0\n}\n"
  },
  {
    "path": "Week1_5-LogicalExp.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\n\",\n       \"\\n\",\n       \"<style>\\n\",\n       \"\\n\",\n       \"@font-face {\\n\",\n       \"    font-family: \\\"Computer Modern\\\";\\n\",\n       \"    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"#notebook_panel { /* main background */\\n\",\n       \"    background: #ddd;\\n\",\n       \"    color: #000000;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"/* Formatting for header cells */\\n\",\n       \".text_cell_render h1 {\\n\",\n       \"    font-family: 'Philosopher', sans-serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 2.2em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(0, 80, 120);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \".text_cell_render h2 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 1.9em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(200,100,0);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \"\\n\",\n       \".text_cell_render h3 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    margin-top:12px;\\n\",\n       \"    margin-bottom: 3px;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    color: rgb(94,127,192);\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h4 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h5 {\\n\",\n       \"    font-family: 'Alegreya Sans', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 16pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    margin-bottom: .1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h6 {\\n\",\n       \"    font-family: 'PT Mono', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 10pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    margin-bottom: 1px;\\n\",\n       \"    margin-top: 1px;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".CodeMirror{\\n\",\n       \"        font-family: \\\"PT Mono\\\";\\n\",\n       \"        font-size: 100%;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"</style>\\n\",\n       \"\\n\"\n      ],\n      \"text/plain\": [\n       \"HTML{ASCIIString}(\\\"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\\\n\\\\n<style>\\\\n\\\\n@font-face {\\\\n    font-family: \\\\\\\"Computer Modern\\\\\\\";\\\\n    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\\\n}\\\\n\\\\n#notebook_panel { /* main background */\\\\n    background: #ddd;\\\\n    color: #000000;\\\\n}\\\\n\\\\n\\\\n\\\\n/* Formatting for header cells */\\\\n.text_cell_render h1 {\\\\n    font-family: 'Philosopher', sans-serif;\\\\n    font-weight: 400;\\\\n    font-size: 2.2em;\\\\n    line-height: 100%;\\\\n    color: rgb(0, 80, 120);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n.text_cell_render h2 {\\\\n    font-family: 'Philosopher', serif;\\\\n    font-weight: 400;\\\\n    font-size: 1.9em;\\\\n    line-height: 100%;\\\\n    color: rgb(200,100,0);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n\\\\n.text_cell_render h3 {\\\\n    font-family: 'Philosopher', serif;\\\\n    margin-top:12px;\\\\n    margin-bottom: 3px;\\\\n    font-style: italic;\\\\n    color: rgb(94,127,192);\\\\n}\\\\n\\\\n.text_cell_render h4 {\\\\n    font-family: 'Philosopher', serif;\\\\n}\\\\n\\\\n.text_cell_render h5 {\\\\n    font-family: 'Alegreya Sans', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 16pt;\\\\n    color: grey;\\\\n    font-style: italic;\\\\n    margin-bottom: .1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\n\\\\n.text_cell_render h6 {\\\\n    font-family: 'PT Mono', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 10pt;\\\\n    color: grey;\\\\n    margin-bottom: 1px;\\\\n    margin-top: 1px;\\\\n}\\\\n\\\\n.CodeMirror{\\\\n        font-family: \\\\\\\"PT Mono\\\\\\\";\\\\n        font-size: 100%;\\\\n}\\\\n\\\\n</style>\\\\n\\\\n\\\")\"\n      ]\n     },\n     \"execution_count\": 17,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Setting up a custom stylesheet in IJulia\\n\",\n    \"file = open(\\\"style.css\\\") # A .css file in the same folder as this notebook file\\n\",\n    \"styl = readall(file) # Read the file\\n\",\n    \"HTML(\\\"$styl\\\") # Output as HTML\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Logical expressions\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>In this lecture</h2>\\n\",\n    \"\\n\",\n    \"- [Outcome](#Outcome)\\n\",\n    \"- [Computer logic](#Computer-logic)\\n\",\n    \"- [The keywords \\\"true\\\" and \\\"false\\\"](#The-keywords-\\\"true\\\"-and-\\\"false\\\")\\n\",\n    \"- [Logical operators and logical expressions](#Logical-operators-and-logical-expressions)\\n\",\n    \"- [Comparison operators create \\\"true\\\" or \\\"false\\\"](#Comparison-operators-create-\\\"true\\\"-or-\\\"false\\\")\\n\",\n    \"- [Operator precedence for logical expressions](#Operator-precedence-for-logical-expressions)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>Outcome</h2>\\n\",\n    \"\\n\",\n    \"After this lecture, you will be able to: \\n\",\n    \"\\n\",\n    \"- Say what computer logic is\\n\",\n    \"- Explain the role of \\\"true\\\" and \\\"false\\\" in Julia\\n\",\n    \"- Form logical expressions using !, && and ||\\n\",\n    \"- State the order of preference of Julia's elementary arithmetical operators\\n\",\n    \"- Work out exactly how Julia would evalutate an logical expression\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Computer logic</h2>\\n\",\n    \"\\n\",\n    \"Logic is the study of how to transform true sentences into other true sentences.\\n\",\n    \"\\n\",\n    \"Famous example 1: Socrates is a man. All men are mortal. Therefore Socrates is mortal.\\n\",\n    \"\\n\",\n    \"Famous example 2: If it rains, the grass is wet. It is raining. Therefore the grass is wet.\\n\",\n    \"\\n\",\n    \"This rigid and formal way of working may appear to be inadequate, but computer programs cannot do otherwise.\\n\",\n    \"\\n\",\n    \"In fact, computer logic is even more limited than the famous examples above: it can only evaluate logical expressions.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>The keywords \\\"true\\\" and \\\"false\\\"</h2>\\n\",\n    \"\\n\",\n    \"In Julia, there are only two logical values: \\\"true\\\" and \\\"false\\\". They are Julia language keywords, which means their meaning is fixed and they can be used for no other purpose.\\n\",\n    \"\\n\",\n    \"The meaning they have in Julia is pretty much the meaning they have in ordinary human life.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Logical operators and logical expressions</h2>\\n\",\n    \"\\n\",\n    \"Julia has quite a few logical operators (as do computers languages in general). But three of them are more important than the rest: !, && and ||\\n\",\n    \"\\n\",\n    \"- ! is the NOT operator\\n\",\n    \"- && is the AND operator\\n\",\n    \"- || is the OR operator\\n\",\n    \"\\n\",\n    \"The ! operator changes the truth of whatever it is applied to.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"false\"\n      ]\n     },\n     \"execution_count\": 18,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"!true         # NOT true is of course false\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"true\"\n      ]\n     },\n     \"execution_count\": 19,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"!false       # likewise, NOT false is true\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The other two operators combine two logical values, let's call them p and q. They could be something like \\\"Socrates is a man\\\" for p and \\\"Socrates is mortal\\\" for q. \\n\",\n    \"\\n\",\n    \"The && operator makes a compound statement that is true if and only if both parts are true.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"true\"\n      ]\n     },\n     \"execution_count\": 20,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"true && true       # compound statement: for p AND q to be true, p must be true, q must also be true\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"false\"\n      ]\n     },\n     \"execution_count\": 21,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"false && true      # so if one part of an AND compound is false, the compound as a whole is false\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"false\"\n      ]\n     },\n     \"execution_count\": 22,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"true && false      # it doesn't matter which of the logical values comes first\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"false\"\n      ]\n     },\n     \"execution_count\": 23,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"false && false      # obviously this must be false\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The || operator needs only one of the parts to be true. Clearly \\\"Black is red OR Julia is a language\\\" is true, but \\\"1 and 1 is seventy OR 10 divided by 2 is zero\\\" is false.\\n\",\n    \"\\n\",\n    \"In other words, the || operator makes a compound statement that is false if and only if both parts are false.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"true\"\n      ]\n     },\n     \"execution_count\": 24,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"true || true       # compound statement: for p OR q to be true, one of them has to be true\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"true\"\n      ]\n     },\n     \"execution_count\": 25,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"false || true       # so if either part is true, the compound statement is true\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"true\"\n      ]\n     },\n     \"execution_count\": 26,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"true || false       # still true\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 27,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"false\"\n      ]\n     },\n     \"execution_count\": 27,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"false || false     # compound with OR: both parts false means the compound is false.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"In real life, we often reason like this: \\\"Either the train is late or the station clock is wrong\\\". We would then hope to eliminate one of them by showing it is false so the other one is what we go by. For this to work, at least one of them must be true.\\n\",\n    \"\\n\",\n    \"That is, we reason correctly only in the case that they are not both false. But this is exactly the definition given above: the || operator \\n\",\n    \"makes a compound statement that is false if and only if both parts are false.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Comparison operators create \\\"true\\\" or \\\"false\\\"</h2>\\n\",\n    \"\\n\",\n    \"The basic comparison operators are <, == and >. (NB! Note particularly the == operator!). \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 28,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"true\"\n      ]\n     },\n     \"execution_count\": 28,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"1 < 22    # this is obviously true\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 29,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"false\"\n      ]\n     },\n     \"execution_count\": 29,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"-10 > 3    # this is obviously false\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 30,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"true\"\n      ]\n     },\n     \"execution_count\": 30,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"2 == 4-2    # this is obviously true\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \" These operators are used all the time in writing programs. You have to learn them very well!\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"source\": [\n    \"<h2>Operator precedence for logical expressions</h2>\\n\",\n    \"\\n\",\n    \"If you write computer code, you will often have to construct logical expressions very similar to the example of \\\"one plus one is seventy OR 10 divided by 2 is zero\\\". Here is a longer example:\\n\",\n    \"\\n\",\n    \"3-4 > 1 && 2 + 2 == 4 || 10 - 5 > 2    \\n\",\n    \"\\n\",\n    \"This is an example of what can make things hard in computer programming****. As before, in Julia this expression can mean only one thing.\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"****I said learning to program in Julia is easy, and it is. But any computer language can be used to make easy things hard. Even Julia!\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 31,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"true\"\n      ]\n     },\n     \"execution_count\": 31,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"( 3-4 > 1 ) && ( 2+2 == 4 ) || ( 10-5 > 2 )    # This is how Julia reads the expression above \\n\",\n    \"#                                           ... and it is how you should write it!! \\n\",\n    \"#        Arithmetic operators have higher precedence than logical operators; comparisons \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 32,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"true\"\n      ]\n     },\n     \"execution_count\": 32,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#  Here's the above just in terms of its logical values\\n\",\n    \"false      &&   true       ||  true           # false whether read from left or right\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"source\": [\n    \"<h3>Bug-hunting tip: watch out for & and | when you mean && and ||</h3>\\n\",\n    \"\\n\",\n    \"The operators && and || are *Boolean operators*: they work on expressions that are true or false. But there are two more operators, not covered in this course, namely & and |. Quite often, if you use & where you intend &&, the result will appear to be the same, but beware, they are not the same thing at all.\\n\",\n    \"\\n\",\n    \"& is the \\\"bitwise AND\\\" operator and works on pairs of integers (actually, on the integers expressed in binary digits). Similarly, | is \\\"bitwise OR\\\" and likewise works on integer values. \\n\",\n    \"\\n\",\n    \"As you can imagine, spotting that you used \\\"&\\\" where you should have used \\\"&&\\\" can be a very hard bug to find. The same goes for cases where you used \\\"|\\\" and you should have used \\\"||\\\".\\n\",\n    \"\\n\",\n    \"In Julia the type system prevents many but not all of these problems, so when your code is returning strange values but no errors, be aware of the bitwise-for-Boolean bug!\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Julia 0.4.6\",\n   \"language\": \"julia\",\n   \"name\": \"julia-0.4\"\n  },\n  \"language_info\": {\n   \"file_extension\": \".jl\",\n   \"mimetype\": \"application/julia\",\n   \"name\": \"julia\",\n   \"version\": \"0.4.6\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 0\n}\n"
  },
  {
    "path": "Week1_6-TypeSystem.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\n\",\n       \"\\n\",\n       \"<style>\\n\",\n       \"\\n\",\n       \"@font-face {\\n\",\n       \"    font-family: \\\"Computer Modern\\\";\\n\",\n       \"    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"#notebook_panel { /* main background */\\n\",\n       \"    background: #ddd;\\n\",\n       \"    color: #000000;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"/* Formatting for header cells */\\n\",\n       \".text_cell_render h1 {\\n\",\n       \"    font-family: 'Philosopher', sans-serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 2.2em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(0, 80, 120);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \".text_cell_render h2 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 1.9em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(200,100,0);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \"\\n\",\n       \".text_cell_render h3 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    margin-top:12px;\\n\",\n       \"    margin-bottom: 3px;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    color: rgb(94,127,192);\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h4 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h5 {\\n\",\n       \"    font-family: 'Alegreya Sans', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 16pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    margin-bottom: .1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h6 {\\n\",\n       \"    font-family: 'PT Mono', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 10pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    margin-bottom: 1px;\\n\",\n       \"    margin-top: 1px;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".CodeMirror{\\n\",\n       \"        font-family: \\\"PT Mono\\\";\\n\",\n       \"        font-size: 100%;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"</style>\\n\",\n       \"\\n\"\n      ],\n      \"text/plain\": [\n       \"HTML{ASCIIString}(\\\"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\\\n\\\\n<style>\\\\n\\\\n@font-face {\\\\n    font-family: \\\\\\\"Computer Modern\\\\\\\";\\\\n    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\\\n}\\\\n\\\\n#notebook_panel { /* main background */\\\\n    background: #ddd;\\\\n    color: #000000;\\\\n}\\\\n\\\\n\\\\n\\\\n/* Formatting for header cells */\\\\n.text_cell_render h1 {\\\\n    font-family: 'Philosopher', sans-serif;\\\\n    font-weight: 400;\\\\n    font-size: 2.2em;\\\\n    line-height: 100%;\\\\n    color: rgb(0, 80, 120);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n.text_cell_render h2 {\\\\n    font-family: 'Philosopher', serif;\\\\n    font-weight: 400;\\\\n    font-size: 1.9em;\\\\n    line-height: 100%;\\\\n    color: rgb(200,100,0);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n\\\\n.text_cell_render h3 {\\\\n    font-family: 'Philosopher', serif;\\\\n    margin-top:12px;\\\\n    margin-bottom: 3px;\\\\n    font-style: italic;\\\\n    color: rgb(94,127,192);\\\\n}\\\\n\\\\n.text_cell_render h4 {\\\\n    font-family: 'Philosopher', serif;\\\\n}\\\\n\\\\n.text_cell_render h5 {\\\\n    font-family: 'Alegreya Sans', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 16pt;\\\\n    color: grey;\\\\n    font-style: italic;\\\\n    margin-bottom: .1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\n\\\\n.text_cell_render h6 {\\\\n    font-family: 'PT Mono', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 10pt;\\\\n    color: grey;\\\\n    margin-bottom: 1px;\\\\n    margin-top: 1px;\\\\n}\\\\n\\\\n.CodeMirror{\\\\n        font-family: \\\\\\\"PT Mono\\\\\\\";\\\\n        font-size: 100%;\\\\n}\\\\n\\\\n</style>\\\\n\\\\n\\\")\"\n      ]\n     },\n     \"execution_count\": 1,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Setting up a custom stylesheet in IJulia\\n\",\n    \"file = open(\\\"style.css\\\") # A .css file in the same folder as this notebook file\\n\",\n    \"styl = readall(file) # Read the file\\n\",\n    \"HTML(\\\"$styl\\\") # Output as HTML\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Julia's type system\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>In this lecture</h2>\\n\",\n    \"\\n\",\n    \"- [Outcome](#Outcome)\\n\",\n    \"\\n\",\n    \"- [A word of reassurance](#A-word-of-reassurance)\\n\",\n    \"- [Types are formats for storing information](#Types-are-formats-for-storing-information)\\n\",\n    \"- [Stored information must also store its type](#Stored-information-must-also-store-its-type)\\n\",\n    \"- [In Julia, only values have types](#In-Julia,-only-values-have-types)\\n\",\n    \"- [The types Char, ASCIIString and UTF8String](#The-types-Char,-ASCIIString-and-UTF8String)\\n\",\n    \"- [The type Bool](#The-type-Bool)\\n\",\n    \"- [The types Int64 and Float64](#The-types-Int64-and-Float64)\\n\",\n    \"- [Concrete and abstract types](#Concrete-and-abstract-types)\\n\",\n    \"- [Julia has a tree of types](#Julia-has-a-tree-of-types)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>Outcome</h2>\\n\",\n    \"\\n\",\n    \"After this lecture, you will be able to: \\n\",\n    \"\\n\",\n    \"- Say what types are from the point of view of computer languages\\n\",\n    \"- Use the typeof() function to determine the type of a value\\n\",\n    \"- Describe Julia's tree of types in terms of abstract and concrete types\\n\",\n    \"- Describe the types Char, ASCIIString and UTF8String \\n\",\n    \"- Describe the types Int64 and Float64\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>A word of reassurance</h2>\\n\",\n    \"\\n\",\n    \"## YOU CAN ALMOST ALWAYS IGNORE TYPES WHEN YOU WRITE JULIA CODE\\n\",\n    \"\\n\",\n    \"One of the nicest things about Julia is that, while its type system is totally amazing, you can ignore it if you like. People often do---you write code as rapidly as you can, to see whether an idea could possibly work. Then if you like what you see, but the code runs slowly, you tweak it. And in Julia, this means you work on getting the types right.\\n\",\n    \"\\n\",\n    \"There is one case however where type cannot be ignored: when you get an error message that complains about type. That is, for purposes of debugging it is essential to know about Julia's type system, and that is why we include it this early in the course, even though you need never specify type in any of the assignments in this course.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Types are formats for storing information</h2>\\n\",\n    \"\\n\",\n    \"We all know that information is stored and moved around in computers using zeros and ones. \\n\",\n    \"\\n\",\n    \"That means stuff like 00011100011000110111011011111010101101\\n\",\n    \"\\n\",\n    \"But how do we tell if this lot represents a number, or several numbers, or a colour, or a word, or what?\\n\",\n    \"\\n\",\n    \"This is where formats come in. If you knew what format to use, you could tell what that sequence of zeros and ones meant.\\n\",\n    \"\\n\",\n    \"Each computer language has its own way of specifying the formats of information that it can use. Those are its types. Julia also has a type system, which is quite elaborate.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Stored information must also store its type</h2>\\n\",\n    \"\\n\",\n    \"This is obvious---without knowing the type, its just a bunch of meaningless zeros and ones!\\n\",\n    \"\\n\",\n    \"But the question is: *where* do you store the type for a given piece of information? Different languages do this in different ways. \\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>In Julia, only values have types</h2>\\n\",\n    \"\\n\",\n    \"We have so far seen Julia do things like the following:\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"9\"\n      ]\n     },\n     \"execution_count\": 3,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"1+3+5\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Each of \\\"1\\\", \\\"3\\\" and \\\"5\\\" are symbols that stand for values, and so does the \\\"9\\\" that is the result of the calculation.\\n\",\n    \"\\n\",\n    \"In Julia, each of those values have a type. And values are the only things that have types in Julia. Of course, there is a lot of careful detail in how to make sure that the zeros and ones that specify the value remain connected with the zeros and ones that specify the type. In C, for instance, the programmmer must think about this all the time. Luckily in Julia we need not worry, those details are taken care of.\\n\",\n    \"\\n\",\n    \"It is easy to determine a type in Julia, by using the built-in function typeof():\\n\",\n    \"\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Int64\"\n      ]\n     },\n     \"execution_count\": 11,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"typeof(1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Int64\"\n      ]\n     },\n     \"execution_count\": 12,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"typeof(1+3+5)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"ASCIIString\"\n      ]\n     },\n     \"execution_count\": 13,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"typeof(\\\"Hello, world!\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"UTF8String\"\n      ]\n     },\n     \"execution_count\": 14,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"typeof(\\\"αβγδ\\\")     # Greek letters via Unicode, easy in Julia  \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"ASCIIString\"\n      ]\n     },\n     \"execution_count\": 15,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"typeof(\\\"H\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Char\"\n      ]\n     },\n     \"execution_count\": 16,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"typeof('H')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Float64\"\n      ]\n     },\n     \"execution_count\": 17,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"typeof(1+3+5.)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Julia is very sensitive to type: every single bit of work is done in terms of types.\\n\",\n    \"\\n\",\n    \"You need not worry about types at all, if you don't want to: Julia will automatically assign types to any values you create. \\n\",\n    \"\\n\",\n    \"On the other hand, it is possible to specify in great detail what types you want. You can even extend Julia's type system with your own user-defined types. This can be a great help in speeding up code (although in this course we do not go into that).\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>The types Char, ASCIIString and UTF8String</h2>\\n\",\n    \"\\n\",\n    \"As we have seen, a string is a sequence of characters. For languages using the Roman letters, all the necessary characters are on a standard keyboard, so you just type them in. These are also the only alphabetic characters in the original ASCII list, which specifies exactly 128 characters.\\n\",\n    \"\\n\",\n    \"Other characters are available via Unicode, as we have already seen. You type \\\"\\\\\\\" followed by some more characters, followed by pressing Tab.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"ename\": \"LoadError\",\n     \"evalue\": \"LoadError: syntax: incomplete: premature end of input\\nwhile loading In[2], in expression starting on line 1\",\n     \"output_type\": \"error\",\n     \"traceback\": [\n      \"LoadError: syntax: incomplete: premature end of input\\nwhile loading In[2], in expression starting on line 1\",\n      \"\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"α ± ♢ ♣       # examples of entering Unicode characters\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"All of these characters of course have a value in the Julia language, so they have a type, namely Char.\\n\",\n    \"\\n\",\n    \"In Julia, types are given names that start with capital letters.\\n\",\n    \"\\n\",\n    \"Now here's the thing. Suppose you have lots of strings, but some of them use only ASCII while others use some Unicode characters that are not part of ASCII. To work with ASCII-only strings can be much faster, because ASCII has only a few characters, while Unicode has thousands. For example, if you want to test whether they're the same, you need only check the ASCII characters. But if you had to first read the whole string to decide whether it was pure ASCII or not, you'd be doing a lot of extra work and you would lose the advantages of speed.\\n\",\n    \"\\n\",\n    \"So the designers of Julia decided that it was worth having more types of string: we've seen ASCIIString for strings supposed to have only ASCII characters and UTF8String for string that have Unicode characters from the whole UTF8 specification in Unicode. There are other string types as well.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>The type Bool</h2>\\n\",\n    \"\\n\",\n    \"Bool here is short for Boolean, which is named for George Boole, who suggested that all of logic could be presented in terms of the values \\\"true\\\" and \\\"false\\\". He invented an algebra for doing logical calculations using these values.\\n\",\n    \"\\n\",\n    \"This is an extremely simple type. In the computer, it occupies only eight bits, and it is limited to only two possible values.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"typeof(true)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"source\": [\n    \"<h2>The types Int64 and Float64</h2>\\n\",\n    \"\\n\",\n    \"Of course, all scientific and technical computation depends on handling numbers very efficiently. Julia has a great many number types, but by far the two most important are Int64 for representing integers and Float64 for representing real numbers. To be precise, Float64 is a floating point format for real numbers.\\n\",\n    \"\\n\",\n    \"Both of them use 64 bits to represent the number. However, the way they interpret these bits is quite different, even if the values are the same.\\n\",\n    \"\\n\",\n    \"When we type them out, the difference is very simple: \\n\",\n    \"\\n\",\n    \"- an integer has no fractional part, so we type them without a decimal point. \\n\",\n    \"- for a floating point number, we always put in the decimal point, even if the fractional part is zero\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Int64\"\n      ]\n     },\n     \"execution_count\": 18,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"typeof(2)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Float64\"\n      ]\n     },\n     \"execution_count\": 19,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"typeof(2.)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"This explains why \\\"1+3+5.\\\" above has the type Float64, not Int64, which may have surprised you.\\n\",\n    \"\\n\",\n    \"Julia compares values correctly, even if the types differ:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"true\"\n      ]\n     },\n     \"execution_count\": 20,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"2.0 == 2     # true, although the types differ\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"false\"\n      ]\n     },\n     \"execution_count\": 21,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"2 < 3/2      # false. Note that although both 3 and 2 are integers, 3/2 is not.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"There is a strict comparison operator, namely \\\"===\\\" which is true only if two values agree fully as to type as well as value.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"false\"\n      ]\n     },\n     \"execution_count\": 22,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"2.0 ===  2    # false. The values are equal but the types differ\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"source\": [\n    \"<h2>Concrete and abstract types</h2>\\n\",\n    \"\\n\",\n    \"All the types above are concrete types. That is, they have no subtypes.\\n\",\n    \"\\n\",\n    \"But it is very useful to group types together. For example, both Int64 and Float64 are numbers, and one can do things with numbers without knowing exactly which type of number you are dealing with. For this purpose, Julia defines a supertype for every type (except the type Any). For example, Float64 has the supertype Real \\n\",\n    \"\\n\",\n    \"This can get complicated: Int64 has the supertype Signed, which has the supertype Integer, which has the supertype Real.\\n\",\n    \"\\n\",\n    \"Note that the type Real includes both Int64 and Float64. Types like Real and Integer, which can have subtypes, are called abstract types. The most abstract type of all is the type Any.\\n\",\n    \"\\n\",\n    \"Now. The actual type of a value in Julia must always be a concrete type. So where do abstract types come in? There are two answers:\\n\",\n    \"- some operations change the type of a value; abstract types help to guide this process\\n\",\n    \"- functions are written to operate on types. If you write your function to use an abstract type, it will work for all the types underneath that abstract type.\\n\",\n    \"\\n\",\n    \"As was noted above, you can write your Julia code without any type specifications at all. What happens is that Julia then uses abstract types to specify your code. Most of them time, this is absolutely fine. But it can seriously hamper speed, so if your aim is to write programs that run fast, you will need to learn how to use type specifications. As this course is for beginners, we do not cover that topic.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"source\": [\n    \"<h2>Julia has a tree of types</h2>\\n\",\n    \"\\n\",\n    \"This means that the most abstract type of all, namely the type Any, splits into subtypes that do not overlap, and this is again true for further splits into subtypes.\\n\",\n    \"\\n\",\n    \"A different way of saying this is that every type has exactly one direct supertype.\\n\",\n    \"\\n\",\n    \"What this means is that there can be no confusion about how types are related in Julia: you can trace any two types back to their lowest common supertype. This certainty is a very important aspect of the Julia type system.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Julia 0.4.5\",\n   \"language\": \"julia\",\n   \"name\": \"julia-0.4\"\n  },\n  \"language_info\": {\n   \"file_extension\": \".jl\",\n   \"mimetype\": \"application/julia\",\n   \"name\": \"julia\",\n   \"version\": \"0.4.5\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 0\n}\n"
  },
  {
    "path": "Week1_7-Variables.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\n\",\n       \"\\n\",\n       \"<style>\\n\",\n       \"\\n\",\n       \"@font-face {\\n\",\n       \"    font-family: \\\"Computer Modern\\\";\\n\",\n       \"    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"#notebook_panel { /* main background */\\n\",\n       \"    background: #ddd;\\n\",\n       \"    color: #000000;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"/* Formatting for header cells */\\n\",\n       \".text_cell_render h1 {\\n\",\n       \"    font-family: 'Philosopher', sans-serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 2.2em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(0, 80, 120);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \".text_cell_render h2 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 1.9em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(200,100,0);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \"\\n\",\n       \".text_cell_render h3 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    margin-top:12px;\\n\",\n       \"    margin-bottom: 3px;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    color: rgb(94,127,192);\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h4 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h5 {\\n\",\n       \"    font-family: 'Alegreya Sans', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 16pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    margin-bottom: .1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h6 {\\n\",\n       \"    font-family: 'PT Mono', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 10pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    margin-bottom: 1px;\\n\",\n       \"    margin-top: 1px;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".CodeMirror{\\n\",\n       \"        font-family: \\\"PT Mono\\\";\\n\",\n       \"        font-size: 100%;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"</style>\\n\",\n       \"\\n\"\n      ],\n      \"text/plain\": [\n       \"HTML{ASCIIString}(\\\"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\\\n\\\\n<style>\\\\n\\\\n@font-face {\\\\n    font-family: \\\\\\\"Computer Modern\\\\\\\";\\\\n    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\\\n}\\\\n\\\\n#notebook_panel { /* main background */\\\\n    background: #ddd;\\\\n    color: #000000;\\\\n}\\\\n\\\\n\\\\n\\\\n/* Formatting for header cells */\\\\n.text_cell_render h1 {\\\\n    font-family: 'Philosopher', sans-serif;\\\\n    font-weight: 400;\\\\n    font-size: 2.2em;\\\\n    line-height: 100%;\\\\n    color: rgb(0, 80, 120);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n.text_cell_render h2 {\\\\n    font-family: 'Philosopher', serif;\\\\n    font-weight: 400;\\\\n    font-size: 1.9em;\\\\n    line-height: 100%;\\\\n    color: rgb(200,100,0);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n\\\\n.text_cell_render h3 {\\\\n    font-family: 'Philosopher', serif;\\\\n    margin-top:12px;\\\\n    margin-bottom: 3px;\\\\n    font-style: italic;\\\\n    color: rgb(94,127,192);\\\\n}\\\\n\\\\n.text_cell_render h4 {\\\\n    font-family: 'Philosopher', serif;\\\\n}\\\\n\\\\n.text_cell_render h5 {\\\\n    font-family: 'Alegreya Sans', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 16pt;\\\\n    color: grey;\\\\n    font-style: italic;\\\\n    margin-bottom: .1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\n\\\\n.text_cell_render h6 {\\\\n    font-family: 'PT Mono', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 10pt;\\\\n    color: grey;\\\\n    margin-bottom: 1px;\\\\n    margin-top: 1px;\\\\n}\\\\n\\\\n.CodeMirror{\\\\n        font-family: \\\\\\\"PT Mono\\\\\\\";\\\\n        font-size: 100%;\\\\n}\\\\n\\\\n</style>\\\\n\\\\n\\\")\"\n      ]\n     },\n     \"execution_count\": 11,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Setting up a custom stylesheet in IJulia\\n\",\n    \"file = open(\\\"style.css\\\") # A .css file in the same folder as this notebook file\\n\",\n    \"styl = readall(file) # Read the file\\n\",\n    \"HTML(\\\"$styl\\\") # Output as HTML\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Variables in Julia have a name, a value and a type\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"source\": [\n    \"<h2>In this lecture</h2>\\n\",\n    \"\\n\",\n    \"- [Outcome](#Outcome)\\n\",\n    \"- [Array types](#Array-types)\\n\",\n    \"- [Assignment: how variables get their values](#Assignment:-how-variables-get-their-values)\\n\",\n    \"- [Valid variable names in Julia](#Valid-variable-names-in-Julia)\\n\",\n    \"- [The three parts of a Julia variable](#The-three-parts-of-a-Julia-variable)\\n\",\n    \"- [Example of a variable created with abstract type](#Example-of-a-variable-created-with-abstract-type)\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>Outcome</h2>\\n\",\n    \"\\n\",\n    \"After this lecture, you will be able to: \\n\",\n    \"\\n\",\n    \"- Describe Array types and say how to create values using Array()\\n\",\n    \"- Say how to access values in an array\\n\",\n    \"- Say how a variable gets a value in Julia\\n\",\n    \"- Say exactly how a variable in Julia is structured\\n\",\n    \"- Determine the type of a variable in Julia\\n\",\n    \"- Say why variables (unlike values) can have abstract types\\n\",\n    \"- Use brackets to access an element of an array\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Array types</h2>\\n\",\n    \"\\n\",\n    \"Julia has excellent support for arrays, on par with Matlab.\\n\",\n    \"\\n\",\n    \"Multidimensional arrays are easy to create in Julia. For example, Array(Int64, 3) creates a 3 x 1 array of integers:\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3-element Array{Int64,1}:\\n\",\n       \" 4600236944\\n\",\n       \" 4659495376\\n\",\n       \" 4659560176\"\n      ]\n     },\n     \"execution_count\": 2,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"Array(Int64, 3)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The type of the array is Array{Int64, 1}. Note the use of braces here. \\n\",\n    \"\\n\",\n    \"Also note that the type is has a 1 where the creation has a 3. They refer to completely different things! In the statement Array(Int64, 3), the 3 is the number of elements in the first dimension. Since this is the only dimension, we end up with a one-dimensional array. The type is Array{Int64, 1}. The 1 specifies that it is a one-dimensional array; the Int64 specifies that each element of the array has type Int64.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Assignment: how variables get their values</h2>\\n\",\n    \"\\n\",\n    \"The assignment operator is =\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"\\\"Hello, world!\\\"\"\n      ]\n     },\n     \"execution_count\": 3,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"greeting = \\\"Hello, world!\\\"  # creates a variable called \\\"greeting\\\" whose value is a string\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Hello, world!\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"println(greeting)          # println uses the value of greeting when it prints the message\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Be very careful to use \\\"=\\\" when you want do assignments and \\\"==\\\" when you want to do comparisons. The similarity of these operators is an unfortunate heritage from many older programming languages. You just have to work on not using the one where the other is intended.\\n\",\n    \"\\n\",\n    \"And no matter how careful you are, some mistakes will occur. The possible errors because of \\\"=\\\" for \\\"==\\\" is one of the most prolific sources of bugs.\\n\",\n    \"\\n\",\n    \"### That's it!\\n\",\n    \"\\n\",\n    \"That's how variables get values in Julia: they are assigned using =.\\n\",\n    \"\\n\",\n    \"To be exact, the *value* of the expression on the right of \\\"=\\\" is bound to the name on the left. It is useful to remember that one could read \\\"a = 5\\\" as \\\"a takes the value 5\\\". Similarly, \\\"a = b\\\" can be read as \\\"a takes the value of b\\\".\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Valid variable names in Julia</h2>\\n\",\n    \"\\n\",\n    \"A variable name can be almost any string that starts with a letter and continues with letters, numbers or a few other characters.\\n\",\n    \"\\n\",\n    \"Note that here, letters include many Unicode characters. You could name all your variables using Mandarin, for example:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"2-element Array{Float64,1}:\\n\",\n       \" 20.0  \\n\",\n       \" 11.111\"\n      ]\n     },\n     \"execution_count\": 5,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"人 = 20\\n\",\n    \"生 = 11.111\\n\",\n    \"[人, 生]           # another way to make a 1-dimensional array: comma-separated list inside brackets\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The initial character may also be an underscore (as can later ones):\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"\\\"short string\\\"\"\n      ]\n     },\n     \"execution_count\": 6,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"_this_is_my_idea_of_a_long_variable_name_ = \\\"short string\\\"  # community standard is NOT to use underscores\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"\\\"wake-up call\\\"\"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"very_important!pay_attention = \\\"wake-up call\\\"       # again, this example violates Julia community standard\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"User-defined variables should avoid capital letters. This is the community standard, it is not absolutely obligatory, but is widely observed. Here's why\\n\",\n    \"\\n\",\n    \"*oficial Julia code reserves initial capitals for two uses: type names and module names.* \\n\",\n    \"\\n\",\n    \"User-defined types and modules (we don't discuss modules on this course) do usually have initial capitals, and sometimes also internal capitals (so-called camel type). The community standard on camel type is also to reserve it for the names of types and modules.\\n\",\n    \"\\n\",\n    \"Likewise, a final \\\"!\\\" on a function name, by general agreement, is reserved for those functions that modify their arguments.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>The three parts of a Julia variable</h2>\\n\",\n    \"\\n\",\n    \"A Julia variable has name and a value. The assignment operator binds the name to the value.\\n\",\n    \"\\n\",\n    \"But there is a third item: the type. As noted in the lecture on types, in Julia only values have types. So what does it mean to say that a variable has a type?\\n\",\n    \"\\n\",\n    \"Well, if the variable has a definite value, then the type of the variable is the type of its value.\\n\",\n    \"\\n\",\n    \"But it is often the case that one refers to a variable only by its name. In that case its value is not known. It may even be that the variable has not yet been created (or, what it the same, loaded). For instance, consider the command \\\"println(greeting)\\\" we used above. The function println() was been written without knowing the type of the variable \\\"greeting\\\".\\n\",\n    \"\\n\",\n    \"When a variable is known only by its name, it is given the abstract type Any, which is the most abstract type in Julia. That means it has no supertype, only subtypes. It is often useful to use a more restricted but still abstract subtype like Integer or AbstractString, but we will not go into the details of that in this course.\\n\",\n    \"\\n\",\n    \"A variable with an abstract type can do quite a lot of things without actually being given a value that has a concrete type (see below for a simple example).\\n\",\n    \"\\n\",\n    \"A variable with abstract type must be given a value before it is used in a computation, otherwise Julia throws an error (see below).\\n\",\n    \"\\n\",\n    \"It is therefore slightly wrong to say that a variable has a type. It is the value of the variable that has a type. It's just that while a variable waits to have a particular value and hence a concrete type, it can useful to have in hand a limited set of possible types it can have. For that we use abstract types.\\n\",\n    \"\\n\",\n    \"Another slightly wrong way to say all this is the following: a variable may have abstract type only while it waits for its value to be assigned.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Example of a variable created with abstract type</h2>\\n\",\n    \"\\n\",\n    \"As noted above, a variable may have abstract type. Since it is not obvious how to create a variable with abstract type, I give an example here, using Array(...)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"2x3 Array{Integer,2}:\\n\",\n       \" #undef  #undef  #undef\\n\",\n       \" #undef  #undef  #undef\"\n      ]\n     },\n     \"execution_count\": 15,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"abstypevariable = Array(Integer, 2,3) # A two-dimensional array with 2 rows and 3 columns\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We see that the value of abstypevariable is now an array where the elements are of type Integer, which is an abstract type. \\n\",\n    \"\\n\",\n    \"But note that there are actually no values in here---the elements of the array remain undefined. So this is a variable still waiting to get its values. In a sense it has only be been half-created.\\n\",\n    \"\\n\",\n    \"I illustrate this by attempting to access an element of the array.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"ename\": \"LoadError\",\n     \"evalue\": \"LoadError: UndefRefError: access to undefined reference\\nwhile loading In[16], in expression starting on line 1\",\n     \"output_type\": \"error\",\n     \"traceback\": [\n      \"LoadError: UndefRefError: access to undefined reference\\nwhile loading In[16], in expression starting on line 1\",\n      \"\",\n      \" in getindex at array.jl:283\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"abstypevariable[2,1]    #NB --- note the brackets, that's how to access elements of an array\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Obviously, attempting to access a value that does not exist must be an error.\\n\",\n    \"\\n\",\n    \"However, you can assign a value to a single element. For example\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"1\"\n      ]\n     },\n     \"execution_count\": 17,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"abstypevariable[1,1] = 1    # Int64 is a subtype of Integer\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Note that abstypevariable is still abstract, even if it contains an element of definite type\\\"\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"2x3 Array{Integer,2}:\\n\",\n       \"   1     #undef  #undef\\n\",\n       \" #undef  #undef  #undef\"\n      ]\n     },\n     \"execution_count\": 18,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"abstypevariable\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Julia will convert values that are assigned if it can:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"5.0\"\n      ]\n     },\n     \"execution_count\": 19,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"abstypevariable[1,2] = 5.0  # given value is of type Float64\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"2x3 Array{Integer,2}:\\n\",\n       \"   1       5     #undef\\n\",\n       \" #undef  #undef  #undef\"\n      ]\n     },\n     \"execution_count\": 20,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"abstypevariable\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"So although 5.0 was given to abstypevariable as a value, what Julia actually put there was a value converted to a subtype of Integer. Julia will do such conversions whenever it can, in order to keep your program running. But if it has to do lots of conversions, your code will be running slower than it can---the fastest code *never* has to do any conversions.\\n\",\n    \"\\n\",\n    \"By the way, if you attempt to assign a value that cannot be converted, Julia throws an error:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"ename\": \"LoadError\",\n     \"evalue\": \"LoadError: MethodError: `convert` has no method matching convert(::Type{Integer}, ::ASCIIString)\\nThis may have arisen from a call to the constructor Integer(...),\\nsince type constructors fall back to convert methods.\\nClosest candidates are:\\n  call{T}(::Type{T}, ::Any)\\n  convert(::Type{Integer}, !Matched::Integer)\\n  convert{T<:Integer}(::Type{T<:Integer}, !Matched::Rational{T<:Integer})\\n  ...\\nwhile loading In[21], in expression starting on line 1\",\n     \"output_type\": \"error\",\n     \"traceback\": [\n      \"LoadError: MethodError: `convert` has no method matching convert(::Type{Integer}, ::ASCIIString)\\nThis may have arisen from a call to the constructor Integer(...),\\nsince type constructors fall back to convert methods.\\nClosest candidates are:\\n  call{T}(::Type{T}, ::Any)\\n  convert(::Type{Integer}, !Matched::Integer)\\n  convert{T<:Integer}(::Type{T<:Integer}, !Matched::Rational{T<:Integer})\\n  ...\\nwhile loading In[21], in expression starting on line 1\",\n      \"\",\n      \" in setindex! at array.jl:314\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"abstypevariable[2,2] = \\\"stringystringstr\\\"  # strings cannot be converted to any Integer type\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Finally, and this is often a good idea, you can create a variable with unknown but concrete values, for example by by replacing type Integer above with type Int64. \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"2x3 Array{Int64,2}:\\n\",\n       \" 8589934594  0  4589574624\\n\",\n       \" 2147483649  0  4589574624\"\n      ]\n     },\n     \"execution_count\": 22,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"arbconcretevariable = Array(Int64, 2,3)  # no actual value specified, \\n\",\n    \"#                                             ... so Julia assigns arbitrary values\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## YOU CAN ALMOST ALWAYS IGNORE TYPES WHEN YOU WRITE JULIA CODE\\n\",\n    \"\\n\",\n    \"One of the nicest things about Julia is that, while its type system is totally amazing, you can ignore it if you like. People often do---you write code as rapidly as you can, to see whether an idea could possibly work. Then if you like what you see, but the code runs slowly, you tweak it. And in Julia, this means you work on getting the types right, and thereby avoiding type conversion.\\n\",\n    \"\\n\",\n    \"There is one case however where type cannot be ignored: when you get an error message that complains about type. That is, for purposes of debugging it is essential to know about Julia's type system, and that is why we include it this early in the course, even though you need never specify type in any of the assignments in this course.\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Julia 0.4.5\",\n   \"language\": \"julia\",\n   \"name\": \"julia-0.4\"\n  },\n  \"language_info\": {\n   \"file_extension\": \".jl\",\n   \"mimetype\": \"application/julia\",\n   \"name\": \"julia\",\n   \"version\": \"0.4.5\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 0\n}\n"
  },
  {
    "path": "Week1_8-Functions1.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\n\",\n       \"\\n\",\n       \"<style>\\n\",\n       \"\\n\",\n       \"@font-face {\\n\",\n       \"    font-family: \\\"Computer Modern\\\";\\n\",\n       \"    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"#notebook_panel { /* main background */\\n\",\n       \"    background: #ddd;\\n\",\n       \"    color: #000000;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"/* Formatting for header cells */\\n\",\n       \".text_cell_render h1 {\\n\",\n       \"    font-family: 'Philosopher', sans-serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 2.2em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(0, 80, 120);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \".text_cell_render h2 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 1.9em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(200,100,0);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \"\\n\",\n       \".text_cell_render h3 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    margin-top:12px;\\n\",\n       \"    margin-bottom: 3px;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    color: rgb(94,127,192);\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h4 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h5 {\\n\",\n       \"    font-family: 'Alegreya Sans', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 16pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    margin-bottom: .1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h6 {\\n\",\n       \"    font-family: 'PT Mono', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 10pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    margin-bottom: 1px;\\n\",\n       \"    margin-top: 1px;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".CodeMirror{\\n\",\n       \"        font-family: \\\"PT Mono\\\";\\n\",\n       \"        font-size: 100%;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"</style>\\n\",\n       \"\\n\"\n      ],\n      \"text/plain\": [\n       \"HTML{ASCIIString}(\\\"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\\\n\\\\n<style>\\\\n\\\\n@font-face {\\\\n    font-family: \\\\\\\"Computer Modern\\\\\\\";\\\\n    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\\\n}\\\\n\\\\n#notebook_panel { /* main background */\\\\n    background: #ddd;\\\\n    color: #000000;\\\\n}\\\\n\\\\n\\\\n\\\\n/* Formatting for header cells */\\\\n.text_cell_render h1 {\\\\n    font-family: 'Philosopher', sans-serif;\\\\n    font-weight: 400;\\\\n    font-size: 2.2em;\\\\n    line-height: 100%;\\\\n    color: rgb(0, 80, 120);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n.text_cell_render h2 {\\\\n    font-family: 'Philosopher', serif;\\\\n    font-weight: 400;\\\\n    font-size: 1.9em;\\\\n    line-height: 100%;\\\\n    color: rgb(200,100,0);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n\\\\n.text_cell_render h3 {\\\\n    font-family: 'Philosopher', serif;\\\\n    margin-top:12px;\\\\n    margin-bottom: 3px;\\\\n    font-style: italic;\\\\n    color: rgb(94,127,192);\\\\n}\\\\n\\\\n.text_cell_render h4 {\\\\n    font-family: 'Philosopher', serif;\\\\n}\\\\n\\\\n.text_cell_render h5 {\\\\n    font-family: 'Alegreya Sans', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 16pt;\\\\n    color: grey;\\\\n    font-style: italic;\\\\n    margin-bottom: .1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\n\\\\n.text_cell_render h6 {\\\\n    font-family: 'PT Mono', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 10pt;\\\\n    color: grey;\\\\n    margin-bottom: 1px;\\\\n    margin-top: 1px;\\\\n}\\\\n\\\\n.CodeMirror{\\\\n        font-family: \\\\\\\"PT Mono\\\\\\\";\\\\n        font-size: 100%;\\\\n}\\\\n\\\\n</style>\\\\n\\\\n\\\")\"\n      ]\n     },\n     \"execution_count\": 11,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Setting up a custom stylesheet in IJulia\\n\",\n    \"file = open(\\\"style.css\\\") # A .css file in the same folder as this notebook file\\n\",\n    \"styl = readall(file) # Read the file\\n\",\n    \"HTML(\\\"$styl\\\") # Output as HTML\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Functions in Julia I\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"source\": [\n    \"<h2>In this lecture</h2>\\n\",\n    \"\\n\",\n    \"- [Outcome](#Outcome)\\n\",\n    \"- [Functions in Julia](#Functions-in-Julia)\\n\",\n    \"- [Command line help](#Command-line-help)\\n\",\n    \"- [Built-in mathematical functions](#Built-in-mathematical-functions)\\n\",\n    \"- [Multiple dispatch](#Multiple-dispatch)\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>Outcome</h2>\\n\",\n    \"\\n\",\n    \"After this lecture, you will be able to: \\n\",\n    \"\\n\",\n    \"- Say how a Julia function works\\n\",\n    \"- Describe the difference between built-in and user-defined functions in Julia\\n\",\n    \"- List and use some basic mathematical functions\\n\",\n    \"- Describe Julia's multiple dispatch using * as the example\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Functions in Julia</h2>\\n\",\n    \"\\n\",\n    \"Recall a recent example using the funtion println():\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Hello, world!!\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"greeting = \\\"Hello, world!!\\\"\\n\",\n    \"println(greeting) \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"This is a good example of the basics of how a function works: it receives some input (in this case, the value of a variable) and makes something happen (in this case, showing a string on the screen).\\n\",\n    \"\\n\",\n    \"Many a function generates a value. In fact, possibly the most common use of functions is to create values to be assigned to variables:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(0.9800665778412416,2.302585092994046,1.22)\"\n      ]\n     },\n     \"execution_count\": 2,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"a, b, c = cos(0.2), log(10), abs(-1.22)  # multiple assignment to three separate variables\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.9800665778412416\"\n      ]\n     },\n     \"execution_count\": 3,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"a\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Julia is a functional language, which means that in a sense the basic unit for organising code in Julia is the function. For instance, typeof() provides information which in other types of languages is obtained via other means. If you read the Julia code (it is publicly available, see www.julialang.org), you will see that virtually everything there is done via functions.\\n\",\n    \"\\n\",\n    \"This means of course that when you write code, you should also as far as possible organise your code in funtions. We address user-defined functions in Lecture 9 (the one after this one).\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Command line help</h2>\\n\",\n    \"\\n\",\n    \"To get help in an IJulia, type \\\"?\\\" followed by a topic. For functions, you'll get the syntax (there may be several versions) and in other cases some brief guidance. For example, \\n\",\n    \"\\\"? cos\\\" gives very simple syntax, \\\"? help\\\" sends you to the Julia documentation (which beginners might find unsuitable for their queries) and \\\"?hist\\\" gives two variations of the basic command plus several more options to explore.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"search: cos cosh cosd cosc cospi acos acosh acosd const consume cross close\\n\",\n      \"\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"text/latex\": [\n       \"\\\\begin{verbatim}\\n\",\n       \"cos(x)\\n\",\n       \"\\\\end{verbatim}\\n\",\n       \"Compute cosine of \\\\texttt{x}, where \\\\texttt{x} is in radians\\n\"\n      ],\n      \"text/markdown\": [\n       \"```\\n\",\n       \"cos(x)\\n\",\n       \"```\\n\",\n       \"\\n\",\n       \"Compute cosine of `x`, where `x` is in radians\\n\"\n      ],\n      \"text/plain\": [\n       \"```\\n\",\n       \"cos(x)\\n\",\n       \"```\\n\",\n       \"\\n\",\n       \"Compute cosine of `x`, where `x` is in radians\\n\"\n      ]\n     },\n     \"execution_count\": 4,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"? cos\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"search: schedule @schedule hankelh2 hankelh1 hankelh2x hankelh1x Channel\\n\",\n      \"\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"text/latex\": [\n       \"\\\\textbf{Welcome to Julia 0.4.5.} The full manual is available at\\n\",\n       \"\\\\begin{verbatim}\\n\",\n       \"http://docs.julialang.org/\\n\",\n       \"\\\\end{verbatim}\\n\",\n       \"as well many great tutorials and learning resources:\\n\",\n       \"\\\\begin{verbatim}\\n\",\n       \"http://julialang.org/learning/\\n\",\n       \"\\\\end{verbatim}\\n\",\n       \"For help on a specific function or macro, type \\\\texttt{?} followed by its name, e.g. \\\\texttt{?fft}, \\\\texttt{?@time} or \\\\texttt{?html}, and press enter.\\n\"\n      ],\n      \"text/markdown\": [\n       \"**Welcome to Julia 0.4.5.** The full manual is available at\\n\",\n       \"\\n\",\n       \"```\\n\",\n       \"http://docs.julialang.org/\\n\",\n       \"```\\n\",\n       \"\\n\",\n       \"as well many great tutorials and learning resources:\\n\",\n       \"\\n\",\n       \"```\\n\",\n       \"http://julialang.org/learning/\\n\",\n       \"```\\n\",\n       \"\\n\",\n       \"For help on a specific function or macro, type `?` followed by its name, e.g. `?fft`, `?@time` or `?html`, and press enter.\\n\"\n      ],\n      \"text/plain\": [\n       \"**Welcome to Julia 0.4.5.** The full manual is available at\\n\",\n       \"\\n\",\n       \"```\\n\",\n       \"http://docs.julialang.org/\\n\",\n       \"```\\n\",\n       \"\\n\",\n       \"as well many great tutorials and learning resources:\\n\",\n       \"\\n\",\n       \"```\\n\",\n       \"http://julialang.org/learning/\\n\",\n       \"```\\n\",\n       \"\\n\",\n       \"For help on a specific function or macro, type `?` followed by its name, e.g. `?fft`, `?@time` or `?html`, and press enter.\\n\"\n      ]\n     },\n     \"execution_count\": 5,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"?help   # space or not after after \\\"?\\\" makes no difference (but hopping to a new line does!)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"search: hist hist! hist2d hist2d! histrange clear_history method_exists\\n\",\n      \"\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"text/latex\": [\n       \"\\\\begin{verbatim}\\n\",\n       \"hist(v, e) -> e, counts\\n\",\n       \"\\\\end{verbatim}\\n\",\n       \"Compute the histogram of \\\\texttt{v} using a vector/range \\\\texttt{e} as the edges for the bins. The result will be a vector of length \\\\texttt{length(e) - 1}, such that the element at location \\\\texttt{i} satisfies \\\\texttt{sum(e[i] .< v .<= e[i+1])}. Note: Julia does not ignore \\\\texttt{NaN} values in the computation.\\n\",\n       \"\\\\begin{verbatim}\\n\",\n       \"hist(v[, n]) -> e, counts\\n\",\n       \"\\\\end{verbatim}\\n\",\n       \"Compute the histogram of \\\\texttt{v}, optionally using approximately \\\\texttt{n} bins. The return values are a range \\\\texttt{e}, which correspond to the edges of the bins, and \\\\texttt{counts} containing the number of elements of \\\\texttt{v} in each bin. Note: Julia does not ignore \\\\texttt{NaN} values in the computation.\\n\"\n      ],\n      \"text/markdown\": [\n       \"```\\n\",\n       \"hist(v, e) -> e, counts\\n\",\n       \"```\\n\",\n       \"\\n\",\n       \"Compute the histogram of `v` using a vector/range `e` as the edges for the bins. The result will be a vector of length `length(e) - 1`, such that the element at location `i` satisfies `sum(e[i] .< v .<= e[i+1])`. Note: Julia does not ignore `NaN` values in the computation.\\n\",\n       \"\\n\",\n       \"```\\n\",\n       \"hist(v[, n]) -> e, counts\\n\",\n       \"```\\n\",\n       \"\\n\",\n       \"Compute the histogram of `v`, optionally using approximately `n` bins. The return values are a range `e`, which correspond to the edges of the bins, and `counts` containing the number of elements of `v` in each bin. Note: Julia does not ignore `NaN` values in the computation.\\n\"\n      ],\n      \"text/plain\": [\n       \"```\\n\",\n       \"hist(v, e) -> e, counts\\n\",\n       \"```\\n\",\n       \"\\n\",\n       \"Compute the histogram of `v` using a vector/range `e` as the edges for the bins. The result will be a vector of length `length(e) - 1`, such that the element at location `i` satisfies `sum(e[i] .< v .<= e[i+1])`. Note: Julia does not ignore `NaN` values in the computation.\\n\",\n       \"\\n\",\n       \"```\\n\",\n       \"hist(v[, n]) -> e, counts\\n\",\n       \"```\\n\",\n       \"\\n\",\n       \"Compute the histogram of `v`, optionally using approximately `n` bins. The return values are a range `e`, which correspond to the edges of the bins, and `counts` containing the number of elements of `v` in each bin. Note: Julia does not ignore `NaN` values in the computation.\\n\"\n      ]\n     },\n     \"execution_count\": 6,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"? hist\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"**This rapid, concise help is a wonderful resource to have on hand. USE IT OFTEN,    especially for spelling and syntax.**\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Built-in mathematical functions</h2>\\n\",\n    \"\\n\",\n    \"Julia has many built-in functions, and for scientific and technical computing the most important of these are mathematical. The following lists a very small part of what is available:\\n\",\n    \"\\n\",\n    \"exp()\\n\",\n    \"\\n\",\n    \"log()    ...  NB! this is the *natural* logarithm\\n\",\n    \"\\n\",\n    \"log10()  ...    *this* is the logarithm to base 10\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"cos()    ... argument must be in radians\\n\",\n    \"\\n\",\n    \"sin()\\n\",\n    \"\\n\",\n    \"tan()\\n\",\n    \"\\n\",\n    \"acos()   ... the result is a value in radians\\n\",\n    \"\\n\",\n    \"asin()\\n\",\n    \"\\n\",\n    \"atan()   ...  NB! this only returns some angles (between -π/2 and π/2, to be exact)\\n\",\n    \"\\n\",\n    \"atan2()  ...  use this to get angles from quadrants two and three; it requires two inputs\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"floor()\\n\",\n    \"\\n\",\n    \"ceil()\\n\",\n    \"\\n\",\n    \"rem()\\n\",\n    \"\\n\",\n    \"round()  ... use round(Int, x) to convert any x of abstract type Real to an integer type (usually Int64)  \\n\",\n    \"\\n\",\n    \"**DO EXPLORE THESE USING THE \\\"?\\\" QUERY METHOD!**\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"And if you enter the first one or more letters of a function, and press Tab, you'll see a list of possible completions. This includes all the available function names that start with that letter or letter. This is a good way to search for function names. For example:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"d          # Tab to show completions, use up and down arrows to scroll the list in JuliaBox\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Multiple dispatch</h2>\\n\",\n    \"\\n\",\n    \"This is related to the fact that many functions allow, or even require, more than one input value. For example, atan2() requires two values, and muladd() requires three (look it up!).\\n\",\n    \"\\n\",\n    \"Moreover, functions must accept inputs of more than one type. For instance, if we enter \\\"cos(1)\\\" then we are sending a value with type Int64 to Julia's cos() function. And if we enter \\\"cos(1.)\\\" we are sending a value of type Float64. But the value created by Julia's cos() function in both cases is 0.5403023058681398.\\n\",\n    \"\\n\",\n    \"Which is exactly what we want, of course. BUT!\\n\",\n    \"\\n\",\n    \"A function name points to a code body. When the code actually executes, it should be specialised on one type, else it will run very slowly, if at all. A function such as cos() actually has several such code bodies, to deal with inputs of different types. These are called the *methods* of that function. So how do Julia functions manage to have only one name, but many methods?\\n\",\n    \"\\n\",\n    \"The answer is multiple dispatch: Julia allows many methods, as long as they differ according to input type. All the input values are used to check this, hence the name multiple dispatch. The pattern of types in the input values in a given function call is its *type signature*. For example, muladd() has 5 permissible type signatures, which we see by using the function methods():\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"5 methods for generic function <b>muladd</b>:<ul><li> muladd(x::<b>Float32</b>, y::<b>Float32</b>, z::<b>Float32</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2ac304dfba75fad148d4070ef4f8a2e400c305bb/base/float.jl#L216\\\" target=\\\"_blank\\\">float.jl:216</a><li> muladd(x::<b>Float64</b>, y::<b>Float64</b>, z::<b>Float64</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2ac304dfba75fad148d4070ef4f8a2e400c305bb/base/float.jl#L217\\\" target=\\\"_blank\\\">float.jl:217</a><li> muladd(a::<b>Float16</b>, b::<b>Float16</b>, c::<b>Float16</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2ac304dfba75fad148d4070ef4f8a2e400c305bb/base/float16.jl#L142\\\" target=\\\"_blank\\\">float16.jl:142</a><li> muladd<i>{T<:Number}</i>(x::<b>T<:Number</b>, y::<b>T<:Number</b>, z::<b>T<:Number</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2ac304dfba75fad148d4070ef4f8a2e400c305bb/base/promotion.jl#L219\\\" target=\\\"_blank\\\">promotion.jl:219</a><li> muladd(x::<b>Number</b>, y::<b>Number</b>, z::<b>Number</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2ac304dfba75fad148d4070ef4f8a2e400c305bb/base/promotion.jl#L174\\\" target=\\\"_blank\\\">promotion.jl:174</a></ul>\"\n      ],\n      \"text/plain\": [\n       \"# 5 methods for generic function \\\"muladd\\\":\\n\",\n       \"muladd(x::Float32, y::Float32, z::Float32) at float.jl:216\\n\",\n       \"muladd(x::Float64, y::Float64, z::Float64) at float.jl:217\\n\",\n       \"muladd(a::Float16, b::Float16, c::Float16) at float16.jl:142\\n\",\n       \"muladd{T<:Number}(x::T<:Number, y::T<:Number, z::T<:Number) at promotion.jl:219\\n\",\n       \"muladd(x::Number, y::Number, z::Number) at promotion.jl:174\"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"methods(muladd)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Many of the bugs you can expect to see if you program in Julia arise because a function was called with values for which there is no method. That is, the type signature of the input values was wrong. You solve this in one of two ways\\n\",\n    \"- by making sure the input values have the right type signature, or \\n\",\n    \"- by writing an additional method for the required type signature\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Julia 0.4.5\",\n   \"language\": \"julia\",\n   \"name\": \"julia-0.4\"\n  },\n  \"language_info\": {\n   \"file_extension\": \".jl\",\n   \"mimetype\": \"application/julia\",\n   \"name\": \"julia\",\n   \"version\": \"0.4.5\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 0\n}\n"
  },
  {
    "path": "Week1_9-Functions2.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\n\",\n       \"\\n\",\n       \"<style>\\n\",\n       \"\\n\",\n       \"@font-face {\\n\",\n       \"    font-family: \\\"Computer Modern\\\";\\n\",\n       \"    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"#notebook_panel { /* main background */\\n\",\n       \"    background: #ddd;\\n\",\n       \"    color: #000000;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"/* Formatting for header cells */\\n\",\n       \".text_cell_render h1 {\\n\",\n       \"    font-family: 'Philosopher', sans-serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 2.2em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(0, 80, 120);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \".text_cell_render h2 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 1.9em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(200,100,0);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \"\\n\",\n       \".text_cell_render h3 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    margin-top:12px;\\n\",\n       \"    margin-bottom: 3px;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    color: rgb(94,127,192);\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h4 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h5 {\\n\",\n       \"    font-family: 'Alegreya Sans', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 16pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    margin-bottom: .1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h6 {\\n\",\n       \"    font-family: 'PT Mono', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 10pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    margin-bottom: 1px;\\n\",\n       \"    margin-top: 1px;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".CodeMirror{\\n\",\n       \"        font-family: \\\"PT Mono\\\";\\n\",\n       \"        font-size: 100%;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"</style>\\n\",\n       \"\\n\"\n      ],\n      \"text/plain\": [\n       \"HTML{ASCIIString}(\\\"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\\\n\\\\n<style>\\\\n\\\\n@font-face {\\\\n    font-family: \\\\\\\"Computer Modern\\\\\\\";\\\\n    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\\\n}\\\\n\\\\n#notebook_panel { /* main background */\\\\n    background: #ddd;\\\\n    color: #000000;\\\\n}\\\\n\\\\n\\\\n\\\\n/* Formatting for header cells */\\\\n.text_cell_render h1 {\\\\n    font-family: 'Philosopher', sans-serif;\\\\n    font-weight: 400;\\\\n    font-size: 2.2em;\\\\n    line-height: 100%;\\\\n    color: rgb(0, 80, 120);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n.text_cell_render h2 {\\\\n    font-family: 'Philosopher', serif;\\\\n    font-weight: 400;\\\\n    font-size: 1.9em;\\\\n    line-height: 100%;\\\\n    color: rgb(200,100,0);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n\\\\n.text_cell_render h3 {\\\\n    font-family: 'Philosopher', serif;\\\\n    margin-top:12px;\\\\n    margin-bottom: 3px;\\\\n    font-style: italic;\\\\n    color: rgb(94,127,192);\\\\n}\\\\n\\\\n.text_cell_render h4 {\\\\n    font-family: 'Philosopher', serif;\\\\n}\\\\n\\\\n.text_cell_render h5 {\\\\n    font-family: 'Alegreya Sans', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 16pt;\\\\n    color: grey;\\\\n    font-style: italic;\\\\n    margin-bottom: .1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\n\\\\n.text_cell_render h6 {\\\\n    font-family: 'PT Mono', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 10pt;\\\\n    color: grey;\\\\n    margin-bottom: 1px;\\\\n    margin-top: 1px;\\\\n}\\\\n\\\\n.CodeMirror{\\\\n        font-family: \\\\\\\"PT Mono\\\\\\\";\\\\n        font-size: 100%;\\\\n}\\\\n\\\\n</style>\\\\n\\\\n\\\")\"\n      ]\n     },\n     \"execution_count\": 11,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Setting up a custom stylesheet in IJulia\\n\",\n    \"file = open(\\\"style.css\\\") # A .css file in the same folder as this notebook file\\n\",\n    \"styl = readall(file) # Read the file\\n\",\n    \"HTML(\\\"$styl\\\") # Output as HTML\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Functions in Julia II\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"source\": [\n    \"<h2>In this lecture</h2>\\n\",\n    \"\\n\",\n    \"- [Outcome](#Outcome)\\n\",\n    \"- [One-line function definition](#One-line-function-definition)\\n\",\n    \"- [Multi-line function definition](#Multi-line-function-definition)\\n\",\n    \"- [Functions with multiple methods](#Functions-with-multiple-methods)\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>Outcome</h2>\\n\",\n    \"\\n\",\n    \"After this lecture, you will be able to: \\n\",\n    \"\\n\",\n    \"- Define a function using the \\\"functionname(varlist) = ...\\\" one-line syntax\\n\",\n    \"- Define a function using the \\\"function name(varlist) ... end\\\" multiline syntax\\n\",\n    \"- Define an additional method for an existing user-defined function\\n\",\n    \"- Specify types for input values in a user-defined function\\n\",\n    \"- Use workspace() to clear the notebook of all values so that function signatures can be redefined.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>One-line function definition</h2>\\n\",\n    \"\\n\",\n    \"This has an extremely simple form. For example:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"myfunc (generic function with 1 method)\"\n      ]\n     },\n     \"execution_count\": 1,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"myfunc(firstvar) = 20*firstvar  \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The rules are for defining one-line function are: \\n\",\n    \"- the name of the function must be a valid variable name (in this case \\\"myfunc\\\" is the name)\\n\",\n    \"- the arguments of the function must be valid variable names\\n\",\n    \"- the argument must be in parentheses (and as we'll see, multiple arguments must be separated by values)\\n\",\n    \"- the name, with arguments in parentheses goes on the left of an assignment\\n\",\n    \"- the code for evaluating the function goes on the right.\\n\",\n    \"\\n\",\n    \"By the way, it's not quite accurate that the code must always fit on one line---it must be a single statement, but so-called compound statements are often written with line breaks, to help the human reader. We will not be using compound statements in one-line functions in this course.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"6664.4439999999995\"\n      ]\n     },\n     \"execution_count\": 2,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"myfunc(333.2222)       # then we just call it like any other function\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Here is an illustration of a two-argument function:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"addxtoy (generic function with 1 method)\"\n      ]\n     },\n     \"execution_count\": 3,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"addxtoy(x,y) = x + y   # not supposed to be useful! it just shows how the job is done\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"10.8\"\n      ]\n     },\n     \"execution_count\": 4,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"addxtoy(33, -22.2)     # mixed types: illustrates that for quick and dirty code, we can (mostly) ignore types\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Multi-line function definition</h2>\\n\",\n    \"\\n\",\n    \"Let's face it, computing should not be all be done with one-liners. Julia supplies the following syntax for functions that take up multiple lines:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"nextfunc (generic function with 1 method)\"\n      ]\n     },\n     \"execution_count\": 6,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"function nextfunc(a, b, c)  # this line names your function and specifies the inputs\\n\",\n    \"    a*b + c                # here go your (usually quite a few) lines\\n\",\n    \"\\n\",\n    \"    #  ... just illustrating the possiblity of using white space and additional comments \\n\",\n    \"end\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"38\"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"nextfunc(7,5,3)           # again, just call it like any other function\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"To illustrate multi-line functions a bit more, here's a useful device for debugging: a line inside a function that gives you the value and the type of a variable. \\n\",\n    \"\\n\",\n    \"It relies on the escape character \\\"$\\\" in strings, which you recall DOESN'T create a dollar sign, but instead modifies how the string is built.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"showdebugprintln (generic function with 1 method)\"\n      ]\n     },\n     \"execution_count\": 8,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"function showdebugprintln(testvar)\\n\",\n    \"    println(\\\"inside the showdebubprint() now\\\")   #this line announces where the report is coming from\\n\",\n    \"    println(\\\"The type of testvar is $(typeof(testvar)) and the value of testvar is $testvar\\\")\\n\",\n    \"    #                  and this line reports what value, and hence what type, testvar actually has here\\n\",\n    \"end\\n\",\n    \"    \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"inside the showdebubprint() now\\n\",\n      \"The type of testvar is Array{Any,1} and the value of testvar is Any['1',2.0]\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"a = ['1',2.]\\n\",\n    \"showdebugprintln(a)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Functions with multiple methods</h2>\\n\",\n    \"\\n\",\n    \"As we saw in Lecture 8, many code bodies can share one function name. Julia knows which of them is relevant via the type signature. The type signature is simply the list of types of all the variables that are used to call the function. \\n\",\n    \"\\n\",\n    \"Here is a function that basically parallels the cos function.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"mycos (generic function with 1 method)\"\n      ]\n     },\n     \"execution_count\": 11,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"mycos(x) = cos(x)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"mycos(.7)  # standard value of cos (angle in radians, of course)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Now we extend mycos() by providing a function for computing the cosine from the hypotenuse and adjacent side: \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"mycos(adj, hyp) = adj/hyp\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.9230769230769231\"\n      ]\n     },\n     \"execution_count\": 24,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"mycos(12, 13)  # the cosine of the larger angle in a standard 5, 12, 13 triangle\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"2 methods for generic function <b>mycos</b>:<ul><li> mycos(x) at In[11]:1<li> mycos(hyp, adj) at In[23]:1</ul>\"\n      ],\n      \"text/plain\": [\n       \"# 2 methods for generic function \\\"mycos\\\":\\n\",\n       \"mycos(x) at In[11]:1\\n\",\n       \"mycos(hyp, adj) at In[23]:1\"\n      ]\n     },\n     \"execution_count\": 25,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"methods(mycos)  #Check this carefully!\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Again, methods() is your friend. Note especially that each method is given in terms of its input variables.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"As with every user-defined function, it is easy for these to go wrong. Suppose we want to make sure the mycos(x) is never called for integer values. We can require the input to be Float64 as follows:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"mycos (generic function with 3 methods)\"\n      ]\n     },\n     \"execution_count\": 26,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"mycos(thet::Float64) = cos(thet)   # note  the use of :: to force Julia to check the type \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"However, there are now three methods, and integers can still be passed (check this for yourself). We actually intended to replace mycos(x) with mycos(thet::Float64). To do so, first we must clear the old version. Unfortunately, the only way to clear a notebook is to clear everything, by using workspace(). \\n\",\n    \"\\n\",\n    \"Everything is cleared, so we have to redefine not only mycos(x) but also mycos(adj, hyp):\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 45,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"mycos (generic function with 1 method)\"\n      ]\n     },\n     \"execution_count\": 45,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"workspace()        # no argument, please!  \\n\",\n    \"#        ... clears all the results\\n\",\n    \"mycos(thet::Float64) = cos(thet)  # so passing mycos() an integer will now cause Julia to throw an error\\n\",\n    \"mycos(hyp, adj)      = adj/hyp\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 47,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"ename\": \"LoadError\",\n     \"evalue\": \"LoadError: MethodError: `mycos` has no method matching mycos(::Int64)\\nwhile loading In[47], in expression starting on line 1\",\n     \"output_type\": \"error\",\n     \"traceback\": [\n      \"LoadError: MethodError: `mycos` has no method matching mycos(::Int64)\\nwhile loading In[47], in expression starting on line 1\",\n      \"\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"mycos(1)     # ... this shouldn't work now ...\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Julia 0.4.5\",\n   \"language\": \"julia\",\n   \"name\": \"julia-0.4\"\n  },\n  \"language_info\": {\n   \"file_extension\": \".jl\",\n   \"mimetype\": \"application/julia\",\n   \"name\": \"julia\",\n   \"version\": \"0.4.5\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 0\n}\n"
  },
  {
    "path": "Week2_1-EbolaExample.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\n\",\n       \"\\n\",\n       \"<style>\\n\",\n       \"\\n\",\n       \"@font-face {\\n\",\n       \"    font-family: \\\"Computer Modern\\\";\\n\",\n       \"    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"#notebook_panel { /* main background */\\n\",\n       \"    background: #ddd;\\n\",\n       \"    color: #000000;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"/* Formatting for header cells */\\n\",\n       \".text_cell_render h1 {\\n\",\n       \"    font-family: 'Philosopher', sans-serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 2.2em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(0, 80, 120);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \".text_cell_render h2 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 1.9em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(200,100,0);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \"\\n\",\n       \".text_cell_render h3 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    margin-top:12px;\\n\",\n       \"    margin-bottom: 3px;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    color: rgb(94,127,192);\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h4 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h5 {\\n\",\n       \"    font-family: 'Alegreya Sans', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 16pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    margin-bottom: .1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h6 {\\n\",\n       \"    font-family: 'PT Mono', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 10pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    margin-bottom: 1px;\\n\",\n       \"    margin-top: 1px;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".CodeMirror{\\n\",\n       \"        font-family: \\\"PT Mono\\\";\\n\",\n       \"        font-size: 100%;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"</style>\\n\",\n       \"\\n\"\n      ],\n      \"text/plain\": [\n       \"HTML{ASCIIString}(\\\"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\\\n\\\\n<style>\\\\n\\\\n@font-face {\\\\n    font-family: \\\\\\\"Computer Modern\\\\\\\";\\\\n    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\\\n}\\\\n\\\\n#notebook_panel { /* main background */\\\\n    background: #ddd;\\\\n    color: #000000;\\\\n}\\\\n\\\\n\\\\n\\\\n/* Formatting for header cells */\\\\n.text_cell_render h1 {\\\\n    font-family: 'Philosopher', sans-serif;\\\\n    font-weight: 400;\\\\n    font-size: 2.2em;\\\\n    line-height: 100%;\\\\n    color: rgb(0, 80, 120);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n.text_cell_render h2 {\\\\n    font-family: 'Philosopher', serif;\\\\n    font-weight: 400;\\\\n    font-size: 1.9em;\\\\n    line-height: 100%;\\\\n    color: rgb(200,100,0);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n\\\\n.text_cell_render h3 {\\\\n    font-family: 'Philosopher', serif;\\\\n    margin-top:12px;\\\\n    margin-bottom: 3px;\\\\n    font-style: italic;\\\\n    color: rgb(94,127,192);\\\\n}\\\\n\\\\n.text_cell_render h4 {\\\\n    font-family: 'Philosopher', serif;\\\\n}\\\\n\\\\n.text_cell_render h5 {\\\\n    font-family: 'Alegreya Sans', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 16pt;\\\\n    color: grey;\\\\n    font-style: italic;\\\\n    margin-bottom: .1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\n\\\\n.text_cell_render h6 {\\\\n    font-family: 'PT Mono', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 10pt;\\\\n    color: grey;\\\\n    margin-bottom: 1px;\\\\n    margin-top: 1px;\\\\n}\\\\n\\\\n.CodeMirror{\\\\n        font-family: \\\\\\\"PT Mono\\\\\\\";\\\\n        font-size: 100%;\\\\n}\\\\n\\\\n</style>\\\\n\\\\n\\\")\"\n      ]\n     },\n     \"execution_count\": 1,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Setting up a custom stylesheet in IJulia\\n\",\n    \"file = open(\\\"style.css\\\") # A .css file in the same folder as this notebook file\\n\",\n    \"styl = readall(file) # Read the file\\n\",\n    \"HTML(\\\"$styl\\\") # Output as HTML\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h1> The Ebola epidemic of 2014 </h1>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>In this lecture</h2>\\n\",\n    \"\\n\",\n    \"- [Outcome](#Outcome)\\n\",\n    \"- [Ebola Virus Disease (EVD)](#Ebola-Virus-Disease)\\n\",\n    \"- [The West African EVD epidemic](#The-West-African-EVD-epidemic)\\n\",\n    \"- [Models vs data vs reality: the case of West African EVD](#Models-vs-data-vs-reality:-the-case-of-West-African-EVD)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Outcome</h2>\\n\",\n    \"\\n\",\n    \"After this lecture, you will be able to\\n\",\n    \"- Describe Ebola Virus Disease \\n\",\n    \"- Outline the time course of the West African EVD epidemic \\n\",\n    \"- Distinguish the reality of EVD from two related things: models of the disease and the available data on the disease\\n\",\n    \"\\n\",\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Ebola Virus Disease</h2>\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"Ebola Virus Disease (EVD) is spread by direct contact with body fluids. Unlike flu and colds, airborne particles do not spread the disease.\\n\",\n    \"\\n\",\n    \"An infected person is likely to get very ill (symptoms include pain, fever, diarrhea and vomiting) and also quite likely to die---in the epidemic we'll consider, up to 7 out of every 10 untreated cases died, and overall approximately 1 out of 3 known cases died.\\n\",\n    \"\\n\",\n    \"It is not entirely clear how infectious the disease really is. People in daily contact with an ill person, in particular those who frequently touch them and/or their clothing and bedclothes seem to be at high risk unless special precautions are taken. At one stage of the epidemic, it was said that 1 in every 10 cases were medical personnel involved in caring for the sick. On the other hand, merely being in the presence of ill people seems not to be a big risk.\\n\",\n    \"\\n\",\n    \"The disease lasts about three weeks in most people, after which they are either dead or the virus is no longer active in their bodies. The infectious period seems to be concentrated around the third week, which is when the disease is most acute.\\n\",\n    \"\\n\",\n    \"However, in some cases it appears that the virus may persist in an inactive form in the bodies of survivors. It is not clear how long this lasts nor how likely survivors are to become infectious again. Sadly, it is true that many survivors continue to experience health problems due to EVD.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>The West African EVD epidemic</h2>\\n\",\n    \"\\n\",\n    \"Up to 2013, all known cases of EVD were in Central Africa. But in 2014, several cases were reported from Guinea in West Africa, and these were eventually traced back to a child who became ill and died in December 2013.\\n\",\n    \"\\n\",\n    \"This child infected three family members who subsequently also died. The social context is one of small villages fairly near each other, and the disease spread into neighbouring villages. From there it rapidly spread into other areas of Guinea, and also to the neighbouring countries Liberia and Sierra Leone (but not to other neighbouring countries, except briefly into Mali). In all three countries, it spread not only through small villages but also through towns and cities.\\n\",\n    \"\\n\",\n    \"Because a single case of EVD can potentially infect many others in a short time, and because it kills so many who get ill, it represents a very serious health threat anywhere that it appears. In Guinea it was at first not recognised, because many diseases have similar symptoms and it was unknown in West Africa. Moreover, Guinea, Liberia and Sierra Leone are countries that have suffered extensive disruption through civil war and consequently have weak health systems and there is much mistrust of government. The initial response to EVD in these countries could not contain it, and it became widespread within months. Throughout much of 2014, the number of new cases per week seemed to be increasing.\\n\",\n    \"\\n\",\n    \"While in many ways one would wish that the world responded more rapidly and fully, eventually there was a strong effort, particularly by Doctors Without Borders and the World Health Organisation. They, together with local health authorities and the government, were able eventually to provided effective treatment and prevention measures. By late 2014, the number of new cases per week was not growing and throughout 2015 the new cases per week became fewer and fewer.\\n\",\n    \"\\n\",\n    \"In most of 2016, there were no new cases in the three worst-affected countries. The international emergency is over. However, the health systems in all three countries remain on the alert for possible flare-ups. And of course, the survivors are still living with the severe consequences of the epidemic.\\n\",\n    \"\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Models vs data vs reality: the case of West African EVD</h2>\\n\",\n    \"\\n\",\n    \"So what does this have to do with writing Julia code? \\n\",\n    \"\\n\",\n    \"Answer: Julia can be used to explore the EVD epidemic, and this process of exploring will illustrate many of the features of the language.\\n\",\n    \"\\n\",\n    \"In the lectures of Week 2, you will explore publicly available data, in the process learning about the following aspects of Julia:\\n\",\n    \"- handling date-time data\\n\",\n    \"- \\\"for\\\" loops\\n\",\n    \"- making plots\\n\",\n    \"- \\\"if\\\" statements\\n\",\n    \"as well as getting practice with array slicing and user-defined functions.\\n\",\n    \"\\n\",\n    \"In the lectures of Week 3, you will study one particular way of modelling the epidemic. In the process, you will \\n\",\n    \"- extend your familiarity with for loops\\n\",\n    \"- learn how to pass parameters to functions\\n\",\n    \"- learn how to use a Julia notebook for hand-fitting a curve to data\\n\",\n    \"\\n\",\n    \"You might be tempted to think that the model of the epidemic is really how it spread. Please resist that! A model is *ALWAYS* far simpler than the real thing. In fact, a model is simpler than the data it is fitted to. This is the whole point of the model: it is fairly simple and can be completely understood. The real world is hugely more intricate than is captured in the data (for example, the actual social relations, the actual contacts between people, the role of travelling from place to place, the role of animals, etc., etc., are  not part of the data at all).\\n\",\n    \"\\n\",\n    \"The hope is that by measuring relevant things (in this case, keeping count of how many people have got ill), one can understand enough to be able to do something useful. The most important thing in the case of the EVD epidemic was to realise that it  *was* an epidemic, and could potentially spread through the entire country, possibly the entire region, and possibly even the whole world.\\n\",\n    \"\\n\",\n    \"Note that a serious viral epidemic spread in 1918 through the whole world (in that case, though, infection was through air-borne particles, greatly increasing the number of people that one ill person could infect).\\n\",\n    \"\\n\",\n    \"It is this that EVD modelling hopes to understand, and eventually to help to contain.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Julia 0.4.5\",\n   \"language\": \"julia\",\n   \"name\": \"julia-0.4\"\n  },\n  \"language_info\": {\n   \"file_extension\": \".jl\",\n   \"mimetype\": \"application/julia\",\n   \"name\": \"julia\",\n   \"version\": \"0.4.5\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 0\n}\n"
  },
  {
    "path": "Week2_2_1-LoadingData.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\n\",\n       \"\\n\",\n       \"<style>\\n\",\n       \"\\n\",\n       \"@font-face {\\n\",\n       \"    font-family: \\\"Computer Modern\\\";\\n\",\n       \"    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"#notebook_panel { /* main background */\\n\",\n       \"    background: #ddd;\\n\",\n       \"    color: #000000;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"/* Formatting for header cells */\\n\",\n       \".text_cell_render h1 {\\n\",\n       \"    font-family: 'Philosopher', sans-serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 2.2em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(0, 80, 120);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \".text_cell_render h2 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 1.9em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(200,100,0);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \"\\n\",\n       \".text_cell_render h3 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    margin-top:12px;\\n\",\n       \"    margin-bottom: 3px;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    color: rgb(94,127,192);\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h4 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h5 {\\n\",\n       \"    font-family: 'Alegreya Sans', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 16pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    margin-bottom: .1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h6 {\\n\",\n       \"    font-family: 'PT Mono', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 10pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    margin-bottom: 1px;\\n\",\n       \"    margin-top: 1px;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".CodeMirror{\\n\",\n       \"        font-family: \\\"PT Mono\\\";\\n\",\n       \"        font-size: 100%;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"</style>\\n\",\n       \"\\n\"\n      ],\n      \"text/plain\": [\n       \"HTML{ASCIIString}(\\\"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\\\n\\\\n<style>\\\\n\\\\n@font-face {\\\\n    font-family: \\\\\\\"Computer Modern\\\\\\\";\\\\n    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\\\n}\\\\n\\\\n#notebook_panel { /* main background */\\\\n    background: #ddd;\\\\n    color: #000000;\\\\n}\\\\n\\\\n\\\\n\\\\n/* Formatting for header cells */\\\\n.text_cell_render h1 {\\\\n    font-family: 'Philosopher', sans-serif;\\\\n    font-weight: 400;\\\\n    font-size: 2.2em;\\\\n    line-height: 100%;\\\\n    color: rgb(0, 80, 120);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n.text_cell_render h2 {\\\\n    font-family: 'Philosopher', serif;\\\\n    font-weight: 400;\\\\n    font-size: 1.9em;\\\\n    line-height: 100%;\\\\n    color: rgb(200,100,0);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n\\\\n.text_cell_render h3 {\\\\n    font-family: 'Philosopher', serif;\\\\n    margin-top:12px;\\\\n    margin-bottom: 3px;\\\\n    font-style: italic;\\\\n    color: rgb(94,127,192);\\\\n}\\\\n\\\\n.text_cell_render h4 {\\\\n    font-family: 'Philosopher', serif;\\\\n}\\\\n\\\\n.text_cell_render h5 {\\\\n    font-family: 'Alegreya Sans', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 16pt;\\\\n    color: grey;\\\\n    font-style: italic;\\\\n    margin-bottom: .1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\n\\\\n.text_cell_render h6 {\\\\n    font-family: 'PT Mono', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 10pt;\\\\n    color: grey;\\\\n    margin-bottom: 1px;\\\\n    margin-top: 1px;\\\\n}\\\\n\\\\n.CodeMirror{\\\\n        font-family: \\\\\\\"PT Mono\\\\\\\";\\\\n        font-size: 100%;\\\\n}\\\\n\\\\n</style>\\\\n\\\\n\\\")\"\n      ]\n     },\n     \"execution_count\": 1,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Setting up a custom stylesheet in IJulia\\n\",\n    \"file = open(\\\"style.css\\\") # A .css file in the same folder as this notebook file\\n\",\n    \"styl = readall(file) # Read the file\\n\",\n    \"HTML(\\\"$styl\\\") # Output as HTML\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h1> Ebola and Wikipedia: Loading publicly available data using Julia </h1>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>In this lecture</h2>\\n\",\n    \"\\n\",\n    \"- [Outcome](#Outcome)\\n\",\n    \"- [Wikipedia data on the West African EVD epidemic](#Wikipedia-data-on-the-West-African-EVD-epidemic)\\n\",\n    \"- [Using readdlm() to load a .csv file](#Using-readdlm-to-load-a-.csv-file)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Outcome</h2>\\n\",\n    \"\\n\",\n    \"After this lecture, you will be able to\\n\",\n    \"- Find data on the West African EVD epidemic online\\n\",\n    \"- Use readdlm() to load data from a .csv file containing this data\\n\",\n    \"\\n\",\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Wikipedia data on the West African EVD epidemic</h2>\\n\",\n    \"\\n\",\n    \"Wikipedia has many excellent articles on Ebola. We will be using one with fairly complete data on the timeline of cases: https://en.wikipedia.org/wiki/West_African_Ebola_virus_epidemic_timeline_of_reported_cases_and_deaths\\n\",\n    \"\\n\",\n    \"Go there now, please, and navigate until you see a table that looks like this:\\n\",\n    \"\\n\",\n    \"<img src=\\\"Week2_Lecture2_1-Wikipedia-EVD-cases.png\\\" alt=\\\"(Screenshot of wikipedia table of WA EVD cases)\\\">\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We have provided the data as a file named wikipediaEVDraw.csv. The \\\".csv\\\" extension indicates that it is a comma-separated file, and the \\\"raw\\\" in the filename indicates that the data are imported as is, without any changes.\\n\",\n    \"\\n\",\n    \"If you would like to learn how to create .csv files from tables on the web, please go the optional lecture \\\"How to export web tables to .csv files\\\".\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Using readdlm to load a .csv file</h2>\\n\",\n    \"\\n\",\n    \"Now we can start using Julia again. In a new notebook for you Week 2 Julia code, enter and execute the line below:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"54x9 Array{Any,2}:\\n\",\n       \" \\\"25 Nov 2015\\\"  28637  11314  3804  2536  …  4808     14122     3955   \\n\",\n       \" \\\"18 Nov 2015\\\"  28634  11314  3804  2536     4808     14122     3955   \\n\",\n       \" \\\"11 Nov 2015\\\"  28635  11314  3805  2536     4808     14122     3955   \\n\",\n       \" \\\"4 Nov 2015\\\"   28607  11314  3810  2536     4808     14089     3955   \\n\",\n       \" \\\"25 Oct 2015\\\"  28539  11298  3806  2535     4808     14061     3955   \\n\",\n       \" \\\"18 Oct 2015\\\"  28476  11298  3803  2535  …  4808     14001     3955   \\n\",\n       \" \\\"11 Oct 2015\\\"  28454  11297  3800  2534     4808     13982     3955   \\n\",\n       \" \\\"27 Sep 2015\\\"  28388  11296  3805  2533     4808     13911     3955   \\n\",\n       \" \\\"20 Sep 2015\\\"  28295  11295  3800  2532     4808     13823     3955   \\n\",\n       \" \\\"13 Sep 2015\\\"  28220  11291  3792  2530     4808     13756     3953   \\n\",\n       \" \\\"6 Sep 2015\\\"   28147  11291  3792  2530  …  4808     13683     3953   \\n\",\n       \" \\\"30 Aug 2015\\\"  28073  11290  3792  2529     4808     13609     3953   \\n\",\n       \" \\\"16 Aug 2015\\\"  27952  11284  3786  2524     4808     13494     3952   \\n\",\n       \" ⋮                                        ⋱                            \\n\",\n       \" \\\"9 Aug 2014\\\"    1835   1011   506   373      323       730      315   \\n\",\n       \" \\\"30 Jul 2014\\\"   1437    825   472   346      227       574      252   \\n\",\n       \" \\\"23 Jul 2014\\\"   1201    672   427   319      129       525      224   \\n\",\n       \" \\\"14 Jul 2014\\\"    982    613   411   310  …   106       397      197   \\n\",\n       \" \\\"2 Jul 2014\\\"     779    481   412   305       75       252      101   \\n\",\n       \" \\\"17 Jun 2014\\\"    528    337   398   264       24        97       49   \\n\",\n       \" \\\"27 May 2014\\\"    309    202   281   186       11        16        5   \\n\",\n       \" \\\"12 May 2014\\\"    260    182   248   171       11          \\\"–\\\"      \\\"–\\\"\\n\",\n       \" \\\"1 May 2014\\\"     239    160   226   149  …    11          \\\"-\\\"      \\\"-\\\"\\n\",\n       \" \\\"14 Apr 2014\\\"    176    110   168   108        2          \\\"–\\\"      \\\"–\\\"\\n\",\n       \" \\\"31 Mar 2014\\\"    130     82   122    80        2          \\\"–\\\"      \\\"–\\\"\\n\",\n       \" \\\"22 Mar 2014\\\"     49     29    49    29         \\\"–\\\"       \\\"–\\\"      \\\"–\\\"\"\n      ]\n     },\n     \"execution_count\": 3,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"wikiEVDraw = readdlm(\\\"wikipediaEVDraw.csv\\\", ',')  # getting quotes right is important!\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The readdlm() function is Julia's way to read any file that consists of lines separated into data items with a delimeter of some sort. In fact, the very word \\\"readdlm\\\" is an abbreviation of \\\"read-with-a-delimiter\\\". \\n\",\n    \"\\n\",\n    \"Notice three things\\n\",\n    \"- We have used a variable to contain the data from the file (you could change the name, though, if you like)\\n\",\n    \"- The file name is given as a string, using double quotes\\n\",\n    \"- The delimeter is given as a character, using single quotes\\n\",\n    \"\\n\",\n    \"Finally, we see that the type of the data, after it has been stored in the variable is an array, the elements of which are of Any type. This is not good for computation---in particular, for modelling we need the data in terms of days since the start of the epidemic. Our next job is to convert the strings in columnn one into integers which give number of days since 22 March 2014.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Julia 0.4.6\",\n   \"language\": \"julia\",\n   \"name\": \"julia-0.4\"\n  },\n  \"language_info\": {\n   \"file_extension\": \".jl\",\n   \"mimetype\": \"application/julia\",\n   \"name\": \"julia\",\n   \"version\": \"0.4.6\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 0\n}\n"
  },
  {
    "path": "Week2_2_2_CreateCSV.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\n\",\n       \"\\n\",\n       \"<style>\\n\",\n       \"\\n\",\n       \"@font-face {\\n\",\n       \"    font-family: \\\"Computer Modern\\\";\\n\",\n       \"    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"#notebook_panel { /* main background */\\n\",\n       \"    background: #ddd;\\n\",\n       \"    color: #000000;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"/* Formatting for header cells */\\n\",\n       \".text_cell_render h1 {\\n\",\n       \"    font-family: 'Philosopher', sans-serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 2.2em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(0, 80, 120);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \".text_cell_render h2 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 1.9em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(200,100,0);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \"\\n\",\n       \".text_cell_render h3 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    margin-top:12px;\\n\",\n       \"    margin-bottom: 3px;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    color: rgb(94,127,192);\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h4 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h5 {\\n\",\n       \"    font-family: 'Alegreya Sans', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 16pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    margin-bottom: .1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h6 {\\n\",\n       \"    font-family: 'PT Mono', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 10pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    margin-bottom: 1px;\\n\",\n       \"    margin-top: 1px;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".CodeMirror{\\n\",\n       \"        font-family: \\\"PT Mono\\\";\\n\",\n       \"        font-size: 100%;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"</style>\\n\",\n       \"\\n\"\n      ],\n      \"text/plain\": [\n       \"HTML{ASCIIString}(\\\"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\\\n\\\\n<style>\\\\n\\\\n@font-face {\\\\n    font-family: \\\\\\\"Computer Modern\\\\\\\";\\\\n    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\\\n}\\\\n\\\\n#notebook_panel { /* main background */\\\\n    background: #ddd;\\\\n    color: #000000;\\\\n}\\\\n\\\\n\\\\n\\\\n/* Formatting for header cells */\\\\n.text_cell_render h1 {\\\\n    font-family: 'Philosopher', sans-serif;\\\\n    font-weight: 400;\\\\n    font-size: 2.2em;\\\\n    line-height: 100%;\\\\n    color: rgb(0, 80, 120);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n.text_cell_render h2 {\\\\n    font-family: 'Philosopher', serif;\\\\n    font-weight: 400;\\\\n    font-size: 1.9em;\\\\n    line-height: 100%;\\\\n    color: rgb(200,100,0);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n\\\\n.text_cell_render h3 {\\\\n    font-family: 'Philosopher', serif;\\\\n    margin-top:12px;\\\\n    margin-bottom: 3px;\\\\n    font-style: italic;\\\\n    color: rgb(94,127,192);\\\\n}\\\\n\\\\n.text_cell_render h4 {\\\\n    font-family: 'Philosopher', serif;\\\\n}\\\\n\\\\n.text_cell_render h5 {\\\\n    font-family: 'Alegreya Sans', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 16pt;\\\\n    color: grey;\\\\n    font-style: italic;\\\\n    margin-bottom: .1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\n\\\\n.text_cell_render h6 {\\\\n    font-family: 'PT Mono', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 10pt;\\\\n    color: grey;\\\\n    margin-bottom: 1px;\\\\n    margin-top: 1px;\\\\n}\\\\n\\\\n.CodeMirror{\\\\n        font-family: \\\\\\\"PT Mono\\\\\\\";\\\\n        font-size: 100%;\\\\n}\\\\n\\\\n</style>\\\\n\\\\n\\\")\"\n      ]\n     },\n     \"execution_count\": 1,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Setting up a custom stylesheet in IJulia\\n\",\n    \"file = open(\\\"style.css\\\") # A .css file in the same folder as this notebook file\\n\",\n    \"styl = readall(file) # Read the file\\n\",\n    \"HTML(\\\"$styl\\\") # Output as HTML\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h1> Creating .csv from data tables on the web </h1>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Suppose you have found data in a table on the web. Here's how to extract the data save it as a .csv file to be used in Julia. We start with the Ebola data that are used in this course, which can be found on Wikipedia. \\n\",\n    \"\\n\",\n    \"<h5>  </h5>\\n\",\n    \"\\n\",\n    \"<h2>          Important information: </h2>\\n\",\n    \"We will use a spreadsheet, namely LibreOffice Calc, to do the work. Note that the date information on the Wikipedia site is not handled by all spreadsheets in the same way. If you use a different spreadsheet, you may find your results differ from ours.\\n\",\n    \"\\n\",\n    \"LibreOffice Calc is available for Windows, iOS and Linux, whereas most other spreadsheets are limited to one or two of these platforms.\\n\",\n    \"\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Wikipedia data on the West African EVD epidemic</h2>\\n\",\n    \"\\n\",\n    \"These data are on the webpage  https://en.wikipedia.org/wiki/West_African_Ebola_virus_epidemic_timeline_of_reported_cases_and_deaths\\n\",\n    \"\\n\",\n    \"Go there now, please, and navigate until you see a table that looks like this:\\n\",\n    \"\\n\",\n    \"<img src=\\\"Week2_Lecture2_1-Wikipedia-EVD-cases.png\\\" alt=\\\"(Screenshot of wikipedia table of WA EVD cases)\\\">\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Using a spreadsheet to save a website table as a .csv file</h2>\\n\",\n    \"\\n\",\n    \"Highlight the entire table, starting with the date \\\"25 Nov 2015\\\" all the way to the last row, which has the date \\\"22 Mar 2014\\\". Make sure you highlight exactly these rows, and every one of these rows completely.\\n\",\n    \"\\n\",\n    \"Use your browser's \\\"Copy\\\" feature. This is different for different browsers, but in many cases you can simply right-click and then click on \\\"Copy\\\".\\n\",\n    \"\\n\",\n    \"Now open a spreadsheet (we used LibreOffice Calc), and paste the table. Again, different spreadsheets give different options. Make sure you select the option the puts the column of dates in the first column.\\n\",\n    \"\\n\",\n    \"Now save the spreadsheet, taking care to save it as a text file with .csv format. I will refer to this file as \\\"wikipediaEVDraw.csv\\\" but you may of course choose your own name. If you open the file with a text editor, you should see that the first few lines of the file look like this:\\n\",\n    \"\\n\",\n    \"<img src=\\\"Week2_Lecture2_2-Wikipedia-EVD-data.png\\\" alt=\\\"(Screenshot of first lines of .csv file)\\\">\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"Notice in particular that\\n\",\n    \"- Every row in the table is a new line in the file\\n\",\n    \"- The first comma is AFTER the first date\\n\",\n    \"- To be exact, the columns in the table are separated by commas in the file. This is what comma-separated-value files look like, no more and no less. This is the .csv format.\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Julia 0.4.6\",\n   \"language\": \"julia\",\n   \"name\": \"julia-0.4\"\n  },\n  \"language_info\": {\n   \"file_extension\": \".jl\",\n   \"mimetype\": \"application/julia\",\n   \"name\": \"julia\",\n   \"version\": \"0.4.6\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 0\n}\n"
  },
  {
    "path": "Week2_3-ForLoops.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\n\",\n       \"\\n\",\n       \"<style>\\n\",\n       \"\\n\",\n       \"@font-face {\\n\",\n       \"    font-family: \\\"Computer Modern\\\";\\n\",\n       \"    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"#notebook_panel { /* main background */\\n\",\n       \"    background: #ddd;\\n\",\n       \"    color: #000000;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"/* Formatting for header cells */\\n\",\n       \".text_cell_render h1 {\\n\",\n       \"    font-family: 'Philosopher', sans-serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 2.2em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(0, 80, 120);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \".text_cell_render h2 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 1.9em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(200,100,0);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \"\\n\",\n       \".text_cell_render h3 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    margin-top:12px;\\n\",\n       \"    margin-bottom: 3px;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    color: rgb(94,127,192);\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h4 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h5 {\\n\",\n       \"    font-family: 'Alegreya Sans', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 16pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    margin-bottom: .1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h6 {\\n\",\n       \"    font-family: 'PT Mono', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 10pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    margin-bottom: 1px;\\n\",\n       \"    margin-top: 1px;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".CodeMirror{\\n\",\n       \"        font-family: \\\"PT Mono\\\";\\n\",\n       \"        font-size: 100%;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"</style>\\n\",\n       \"\\n\"\n      ],\n      \"text/plain\": [\n       \"HTML{ASCIIString}(\\\"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\\\n\\\\n<style>\\\\n\\\\n@font-face {\\\\n    font-family: \\\\\\\"Computer Modern\\\\\\\";\\\\n    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\\\n}\\\\n\\\\n#notebook_panel { /* main background */\\\\n    background: #ddd;\\\\n    color: #000000;\\\\n}\\\\n\\\\n\\\\n\\\\n/* Formatting for header cells */\\\\n.text_cell_render h1 {\\\\n    font-family: 'Philosopher', sans-serif;\\\\n    font-weight: 400;\\\\n    font-size: 2.2em;\\\\n    line-height: 100%;\\\\n    color: rgb(0, 80, 120);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n.text_cell_render h2 {\\\\n    font-family: 'Philosopher', serif;\\\\n    font-weight: 400;\\\\n    font-size: 1.9em;\\\\n    line-height: 100%;\\\\n    color: rgb(200,100,0);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n\\\\n.text_cell_render h3 {\\\\n    font-family: 'Philosopher', serif;\\\\n    margin-top:12px;\\\\n    margin-bottom: 3px;\\\\n    font-style: italic;\\\\n    color: rgb(94,127,192);\\\\n}\\\\n\\\\n.text_cell_render h4 {\\\\n    font-family: 'Philosopher', serif;\\\\n}\\\\n\\\\n.text_cell_render h5 {\\\\n    font-family: 'Alegreya Sans', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 16pt;\\\\n    color: grey;\\\\n    font-style: italic;\\\\n    margin-bottom: .1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\n\\\\n.text_cell_render h6 {\\\\n    font-family: 'PT Mono', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 10pt;\\\\n    color: grey;\\\\n    margin-bottom: 1px;\\\\n    margin-top: 1px;\\\\n}\\\\n\\\\n.CodeMirror{\\\\n        font-family: \\\\\\\"PT Mono\\\\\\\";\\\\n        font-size: 100%;\\\\n}\\\\n\\\\n</style>\\\\n\\\\n\\\")\"\n      ]\n     },\n     \"execution_count\": 1,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Setting up a custom stylesheet in IJulia\\n\",\n    \"file = open(\\\"style.css\\\") # A .css file in the same folder as this notebook file\\n\",\n    \"styl = readall(file) # Read the file\\n\",\n    \"HTML(\\\"$styl\\\") # Output as HTML\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h1> \\\"for\\\" loops and date-time formats: converting string values into usable time data </h1>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>In this lecture</h2>\\n\",\n    \"\\n\",\n    \"- [Outcome](#Outcome)\\n\",\n    \"- [Converting a date string to DateTime format](#Converting-a-date-string-to-DateTime-format)\\n\",\n    \"- [\\\"for\\\" loops](#\\\"for\\\"-loops)\\n\",\n    \"- [Converting column 1 DateTime type](#Converting-column-1-DateTime-type)\\n\",\n    \"- [Creating data giving time in days since 22 March 2014](#Creating-data-giving-time-in-days-since-22-March-2014)\\n\",\n    \"- [Exporting the converted data](#Exporting-the-converted-data)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Outcome</h2>\\n\",\n    \"\\n\",\n    \"After this lecture, you will be able to\\n\",\n    \"- Convert a string with date data to Julia's DateTime format\\n\",\n    \"- Use Dates.datetime2rata() to calculate the number of days between two DateTime dates\\n\",\n    \"- Use a for loop to convert the dates of the epidemic data to days since 22 March 2014\\n\",\n    \"- Use writedlm to save the converted data as .csv file\\n\",\n    \"\\n\",\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We start by reading in the data:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"54x9 Array{Any,2}:\\n\",\n       \" \\\"25 Nov 2015\\\"  28637  11314  3804  2536  …  4808     14122     3955   \\n\",\n       \" \\\"18 Nov 2015\\\"  28634  11314  3804  2536     4808     14122     3955   \\n\",\n       \" \\\"11 Nov 2015\\\"  28635  11314  3805  2536     4808     14122     3955   \\n\",\n       \" \\\"4 Nov 2015\\\"   28607  11314  3810  2536     4808     14089     3955   \\n\",\n       \" \\\"25 Oct 2015\\\"  28539  11298  3806  2535     4808     14061     3955   \\n\",\n       \" \\\"18 Oct 2015\\\"  28476  11298  3803  2535  …  4808     14001     3955   \\n\",\n       \" \\\"11 Oct 2015\\\"  28454  11297  3800  2534     4808     13982     3955   \\n\",\n       \" \\\"27 Sep 2015\\\"  28388  11296  3805  2533     4808     13911     3955   \\n\",\n       \" \\\"20 Sep 2015\\\"  28295  11295  3800  2532     4808     13823     3955   \\n\",\n       \" \\\"13 Sep 2015\\\"  28220  11291  3792  2530     4808     13756     3953   \\n\",\n       \" \\\"6 Sep 2015\\\"   28147  11291  3792  2530  …  4808     13683     3953   \\n\",\n       \" \\\"30 Aug 2015\\\"  28073  11290  3792  2529     4808     13609     3953   \\n\",\n       \" \\\"16 Aug 2015\\\"  27952  11284  3786  2524     4808     13494     3952   \\n\",\n       \" ⋮                                        ⋱                            \\n\",\n       \" \\\"9 Aug 2014\\\"    1835   1011   506   373      323       730      315   \\n\",\n       \" \\\"30 Jul 2014\\\"   1437    825   472   346      227       574      252   \\n\",\n       \" \\\"23 Jul 2014\\\"   1201    672   427   319      129       525      224   \\n\",\n       \" \\\"14 Jul 2014\\\"    982    613   411   310  …   106       397      197   \\n\",\n       \" \\\"2 Jul 2014\\\"     779    481   412   305       75       252      101   \\n\",\n       \" \\\"17 Jun 2014\\\"    528    337   398   264       24        97       49   \\n\",\n       \" \\\"27 May 2014\\\"    309    202   281   186       11        16        5   \\n\",\n       \" \\\"12 May 2014\\\"    260    182   248   171       11          \\\"–\\\"      \\\"–\\\"\\n\",\n       \" \\\"1 May 2014\\\"     239    160   226   149  …    11          \\\"-\\\"      \\\"-\\\"\\n\",\n       \" \\\"14 Apr 2014\\\"    176    110   168   108        2          \\\"–\\\"      \\\"–\\\"\\n\",\n       \" \\\"31 Mar 2014\\\"    130     82   122    80        2          \\\"–\\\"      \\\"–\\\"\\n\",\n       \" \\\"22 Mar 2014\\\"     49     29    49    29         \\\"–\\\"       \\\"–\\\"      \\\"–\\\"\"\n      ]\n     },\n     \"execution_count\": 2,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"wikiEVDraw = readdlm(\\\"wikipediaEVDraw.csv\\\", ',')  # \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Converting a date string to DateTime format</h2>\\n\",\n    \"\\n\",\n    \"Remarkably enough, data on dates and times are among the fiddliest things a data scientist has to deal with. There is a huge number of different ways in which such data are reported, and moreover there are conflicting standards of how to deal irregularities (month lengths aren't all the same, some years are leap years, time zones shift ...).\\n\",\n    \"\\n\",\n    \"In consequence, every computer language that deals with date-time data has a rich array of  functions to deal with it. In Julia, they are in a package called Dates. Of this package, we will use the functions DateTime() and Dates.datetime2rata().\\n\",\n    \"\\n\",\n    \"Why does one of them use a full stop and the other not? The answer is that when you start up Julia, only a few of the functions in the package Dates are visible. These functions include Date() but not datetime2rata(). However, we are able to access the other functions by use of the colon. We will talk more about packages in the next lecture.\\n\",\n    \"\\n\",\n    \"The DateTime() function uses a format string convert string data such as we see in column one into Julia DateTime data.\\n\",\n    \"\\n\",\n    \"A format string is something one sees in many computation contexts. Here, it tells Julia in what form to expect the data. Looking at the string, it is a number for the day, then space, then an abbreviation for the month, then a space, then a number for the year. The appropriate format string is therefore \\\"d u y\\\". These formats have limitations: \\\"d\\\" accepts one- and two-digit days (which should always work) and \\\"y\\\" accepts two- and four-digit years (which should mostly work), but \\\"u\\\" accepts only three-letter abbreviations. Unfortunately, data where the month names otherwise abbreviated are fairly common.\\n\",\n    \"\\n\",\n    \"Here is an example of how the conversion works\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"2015-11-25T00:00:00\"\n      ]\n     },\n     \"execution_count\": 3,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"DateTime(wikiEVDraw[1,1], \\\"d u y\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>\\\"for\\\" loops</h2>\\n\",\n    \"\\n\",\n    \"Now we need to do this conversion for every element in column 1 of the matrix. The way to do this is with a \\\"for\\\" loop.\\n\",\n    \"\\n\",\n    \"\\\"for\\\" loops are extremely important in computing, and in Julia even more so. This is because many items that are vectorised in languages like Matlab and Python are explicitly computed in \\\"for\\\" loops in Julia. It may surprise many of you who know about speeding up computations using vectorisation, but it is frequently the case that a loop in Julia runs *faster* than the equivalent vectorised code.\\n\",\n    \"\\n\",\n    \"\\\"for\\\" loops have a simple structure: the outside is the \\\"for ... end\\\" part and the inside is a code block executed repeatedly. Exactly how many times is determined by the the \\\"for ... end\\\" part.\\n\",\n    \"\\n\",\n    \"In the two examples below, we use println() to show the value of the variable over which the \\\"for\\\" loop runs. Notice that these values do not have to be a sequence of integers.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"num is now 3\\n\",\n      \"num is now 4\\n\",\n      \"num is now 5\\n\",\n      \"num is now 6\\n\",\n      \"num is now 7\\n\",\n      \"The value of x is now 23\\n\",\n      \"The value of x is now my name is not a name\\n\",\n      \"The value of x is now ℵ\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"for num = 3:7    # here, the colon is used to specify a range; we will see this again\\n\",\n    \"    println(\\\"num is now $num\\\")\\n\",\n    \"end\\n\",\n    \"\\n\",\n    \"values = [23, \\\"my name is not a name\\\", 'ℵ']      # an array with some rather odd elements\\n\",\n    \"for x in values    # a for loop can iterate over an array\\n\",\n    \"        println(\\\"The value of x is now $x\\\")\\n\",\n    \"    end\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"It is important to get the first line of a \\\"for\\\" loop exactly right. It has the structure \\n\",\n    \"\\n\",\n    \"\\\"variable = iterable\\\"\\n\",\n    \"\\n\",\n    \"Here, \\\"iterable\\\" is anything that is arranged in a sequence in memory. Not all types are, but they certainly include ranges (created with the colon operator \\\":\\\") and any single dimension of an array. The \\\"=\\\" is an assignment operator, and it assigns to \\\"variable\\\" the values in \\\"iterable\\\", one after the other. That is, during each pass through the loop, \\\"variable\\\" has the value of exactly one of the items in \\\"iterable\\\". \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"source\": [\n    \"<h2>Converting column 1 DateTime type</h2>\\n\",\n    \"\\n\",\n    \"Now we use a \\\"for\\\" loop twice. Firstly we create a one-dimensional array containing just column one---it uses array slicing, for conversion to values with DateTime type.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"54-element Array{Any,1}:\\n\",\n       \" \\\"25 Nov 2015\\\"\\n\",\n       \" \\\"18 Nov 2015\\\"\\n\",\n       \" \\\"11 Nov 2015\\\"\\n\",\n       \" \\\"4 Nov 2015\\\" \\n\",\n       \" \\\"25 Oct 2015\\\"\\n\",\n       \" \\\"18 Oct 2015\\\"\\n\",\n       \" \\\"11 Oct 2015\\\"\\n\",\n       \" \\\"27 Sep 2015\\\"\\n\",\n       \" \\\"20 Sep 2015\\\"\\n\",\n       \" \\\"13 Sep 2015\\\"\\n\",\n       \" \\\"6 Sep 2015\\\" \\n\",\n       \" \\\"30 Aug 2015\\\"\\n\",\n       \" \\\"16 Aug 2015\\\"\\n\",\n       \" ⋮            \\n\",\n       \" \\\"9 Aug 2014\\\" \\n\",\n       \" \\\"30 Jul 2014\\\"\\n\",\n       \" \\\"23 Jul 2014\\\"\\n\",\n       \" \\\"14 Jul 2014\\\"\\n\",\n       \" \\\"2 Jul 2014\\\" \\n\",\n       \" \\\"17 Jun 2014\\\"\\n\",\n       \" \\\"27 May 2014\\\"\\n\",\n       \" \\\"12 May 2014\\\"\\n\",\n       \" \\\"1 May 2014\\\" \\n\",\n       \" \\\"14 Apr 2014\\\"\\n\",\n       \" \\\"31 Mar 2014\\\"\\n\",\n       \" \\\"22 Mar 2014\\\"\"\n      ]\n     },\n     \"execution_count\": 10,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"col1 = wikiEVDraw[:, 1]  # the colon means all the data in the column, the 1 means the first column\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We use a \\\"for\\\" loop to overwrite the data in the variable col1 with the data in converted using DateTime():\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"for i = 1:54\\n\",\n    \"    col1[i] = DateTime(col1[i], \\\"d u y\\\")  # note that this replaces the previous value in col1[i]\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"54-element Array{Any,1}:\\n\",\n       \" 2015-11-25T00:00:00\\n\",\n       \" 2015-11-18T00:00:00\\n\",\n       \" 2015-11-11T00:00:00\\n\",\n       \" 2015-11-04T00:00:00\\n\",\n       \" 2015-10-25T00:00:00\\n\",\n       \" 2015-10-18T00:00:00\\n\",\n       \" 2015-10-11T00:00:00\\n\",\n       \" 2015-09-27T00:00:00\\n\",\n       \" 2015-09-20T00:00:00\\n\",\n       \" 2015-09-13T00:00:00\\n\",\n       \" 2015-09-06T00:00:00\\n\",\n       \" 2015-08-30T00:00:00\\n\",\n       \" 2015-08-16T00:00:00\\n\",\n       \" ⋮                  \\n\",\n       \" 2014-08-09T00:00:00\\n\",\n       \" 2014-07-30T00:00:00\\n\",\n       \" 2014-07-23T00:00:00\\n\",\n       \" 2014-07-14T00:00:00\\n\",\n       \" 2014-07-02T00:00:00\\n\",\n       \" 2014-06-17T00:00:00\\n\",\n       \" 2014-05-27T00:00:00\\n\",\n       \" 2014-05-12T00:00:00\\n\",\n       \" 2014-05-01T00:00:00\\n\",\n       \" 2014-04-14T00:00:00\\n\",\n       \" 2014-03-31T00:00:00\\n\",\n       \" 2014-03-22T00:00:00\"\n      ]\n     },\n     \"execution_count\": 12,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"col1\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Creating data giving time in days since 22 March 2014</h2>\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"Finally, we create the variable \\\"epidays\\\". This calls to mind the concept of *epidemic day*, which is simply a way to indicate how long an epidemic has been running. We will assume that the epidemic started on 22 March 2014, with a total of 49 cases, because that is the  first date for which we have data.\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"Note that this is in keeping with the spirit of modelling: we are trying to do the best we can with the data we have. Even when we know that the epidemic has been traced back to a single case in early December 2013, that information is not in the table of data before us. We should not forget about it, but neither should we attempt to include it in the data.\\n\",\n    \"\\n\",\n    \"The function we use is Dates.datetime2rata(). The \\\"Rata Die days\\\" format is a specialised date format we will not discuss here (see https://en.wikipedia.org/wiki/Rata_Die for information). The important thing is that this function, applied to a given date, gives the number of days since 1 January of the year 0001. As follows:\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"735927\"\n      ]\n     },\n     \"execution_count\": 13,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"Dates.datetime2rata(col1[1])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Exporting the converted data</h2>\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"We create a function to express the number of days since epidemic day zero, which is the value of col[54] which is of course 22 March 2014.\\n\",\n    \"\\n\",\n    \"Then we iterate that function with a for loop over all the elements in col1 to create epidays. Note that the variable epidays is created before the start of the loop. This is, in general, good practice: if you know what array you want to fill, then initialise that array before you start filling it.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"dayssincemar22(x) = Dates.datetime2rata(x) - Dates.datetime2rata(col1[54])\\n\",\n    \"epidays = Array(Int64, 54)\\n\",\n    \"for i = 1:54\\n\",\n    \"    epidays[i] = dayssincemar22(col1[i])\\n\",\n    \"end\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Finally, we overwite column 1 of our data array with epidays, and save it using writedlm(). It is a good idea to use a new filename, so that all the work that went into extracting the data from wikipedia is not lost. You never know when you might want the original dates again!\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"wikiEVDraw[:, 1] = epidays\\n\",\n    \"writedlm(\\\"wikipediaEVDdatesconverted.csv\\\", wikiEVDraw, ',')  \\n\",\n    \"#         note the delimiter ... the Julia default is a tab; to get .csv, we must specify the comma\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Julia 0.4.6\",\n   \"language\": \"julia\",\n   \"name\": \"julia-0.4\"\n  },\n  \"language_info\": {\n   \"file_extension\": \".jl\",\n   \"mimetype\": \"application/julia\",\n   \"name\": \"julia\",\n   \"version\": \"0.4.6\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 0\n}\n"
  },
  {
    "path": "Week2_4-SimplePlots.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\n\",\n       \"\\n\",\n       \"<style>\\n\",\n       \"\\n\",\n       \"@font-face {\\n\",\n       \"    font-family: \\\"Computer Modern\\\";\\n\",\n       \"    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"#notebook_panel { /* main background */\\n\",\n       \"    background: #ddd;\\n\",\n       \"    color: #000000;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"/* Formatting for header cells */\\n\",\n       \".text_cell_render h1 {\\n\",\n       \"    font-family: 'Philosopher', sans-serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 2.2em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(0, 80, 120);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \".text_cell_render h2 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 1.9em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(200,100,0);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \"\\n\",\n       \".text_cell_render h3 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    margin-top:12px;\\n\",\n       \"    margin-bottom: 3px;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    color: rgb(94,127,192);\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h4 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h5 {\\n\",\n       \"    font-family: 'Alegreya Sans', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 16pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    margin-bottom: .1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h6 {\\n\",\n       \"    font-family: 'PT Mono', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 10pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    margin-bottom: 1px;\\n\",\n       \"    margin-top: 1px;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".CodeMirror{\\n\",\n       \"        font-family: \\\"PT Mono\\\";\\n\",\n       \"        font-size: 100%;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"</style>\\n\",\n       \"\\n\"\n      ],\n      \"text/plain\": [\n       \"HTML{ASCIIString}(\\\"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\\\n\\\\n<style>\\\\n\\\\n@font-face {\\\\n    font-family: \\\\\\\"Computer Modern\\\\\\\";\\\\n    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\\\n}\\\\n\\\\n#notebook_panel { /* main background */\\\\n    background: #ddd;\\\\n    color: #000000;\\\\n}\\\\n\\\\n\\\\n\\\\n/* Formatting for header cells */\\\\n.text_cell_render h1 {\\\\n    font-family: 'Philosopher', sans-serif;\\\\n    font-weight: 400;\\\\n    font-size: 2.2em;\\\\n    line-height: 100%;\\\\n    color: rgb(0, 80, 120);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n.text_cell_render h2 {\\\\n    font-family: 'Philosopher', serif;\\\\n    font-weight: 400;\\\\n    font-size: 1.9em;\\\\n    line-height: 100%;\\\\n    color: rgb(200,100,0);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n\\\\n.text_cell_render h3 {\\\\n    font-family: 'Philosopher', serif;\\\\n    margin-top:12px;\\\\n    margin-bottom: 3px;\\\\n    font-style: italic;\\\\n    color: rgb(94,127,192);\\\\n}\\\\n\\\\n.text_cell_render h4 {\\\\n    font-family: 'Philosopher', serif;\\\\n}\\\\n\\\\n.text_cell_render h5 {\\\\n    font-family: 'Alegreya Sans', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 16pt;\\\\n    color: grey;\\\\n    font-style: italic;\\\\n    margin-bottom: .1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\n\\\\n.text_cell_render h6 {\\\\n    font-family: 'PT Mono', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 10pt;\\\\n    color: grey;\\\\n    margin-bottom: 1px;\\\\n    margin-top: 1px;\\\\n}\\\\n\\\\n.CodeMirror{\\\\n        font-family: \\\\\\\"PT Mono\\\\\\\";\\\\n        font-size: 100%;\\\\n}\\\\n\\\\n</style>\\\\n\\\\n\\\")\"\n      ]\n     },\n     \"execution_count\": 1,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Setting up a custom stylesheet in IJulia\\n\",\n    \"file = open(\\\"style.css\\\") # A .css file in the same folder as this notebook file\\n\",\n    \"styl = readall(file) # Read the file\\n\",\n    \"HTML(\\\"$styl\\\") # Output as HTML\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h1> Simple plots with the Plots package </h1>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>In this lecture</h2>\\n\",\n    \"\\n\",\n    \"- [Outcome](#Outcome)\\n\",\n    \"- [Load the Plots package into a current notebook](#Load-the-Plots-package-into-a-current-notebook)\\n\",\n    \"- [Activate the PyPlot backend for use with Plots](#Activate-the-PyPlot-backend-for-use-with-Plots)\\n\",\n    \"- [Plot a curve from coordinate data](#Plot-a-curve-from-coordinate-data)\\n\",\n    \"- [Tweak the current plot](#Tweak-the-current-plot)\\n\",\n    \"- [Save the current plot](#Save-the-current-plot)\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Outcome</h2>\\n\",\n    \"\\n\",\n    \"After this lecture, you will be able to\\n\",\n    \"- Explain how the Plots package relate to other plotting projects in Julia\\n\",\n    \"- Load the Plots package into a current notebook and the PyPlot backend for use with Plots\\n\",\n    \"- Plot coordinate data as lines in the default style supplied by Plots\\n\",\n    \"- Modify the current plot style: replace lines with markers, add title and labels, remove legend and grid lines\\n\",\n    \"- Save the current plot in .png and .pdf format\\n\",\n    \"\\n\",\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"To start, we load the data that we saved last time (the *converted* data, of course), and we create the x- and y-coordinates of the points we want to plot. Those are of course just columns 1 and 2 of the data.\\n\",\n    \"\\n\",\n    \"We use array slicing to extract the data we need---note the use of  the \\\":\\\" operator\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"54-element Array{Any,1}:\\n\",\n       \" 28637\\n\",\n       \" 28634\\n\",\n       \" 28635\\n\",\n       \" 28607\\n\",\n       \" 28539\\n\",\n       \" 28476\\n\",\n       \" 28454\\n\",\n       \" 28388\\n\",\n       \" 28295\\n\",\n       \" 28220\\n\",\n       \" 28147\\n\",\n       \" 28073\\n\",\n       \" 27952\\n\",\n       \"     ⋮\\n\",\n       \"  1835\\n\",\n       \"  1437\\n\",\n       \"  1201\\n\",\n       \"   982\\n\",\n       \"   779\\n\",\n       \"   528\\n\",\n       \"   309\\n\",\n       \"   260\\n\",\n       \"   239\\n\",\n       \"   176\\n\",\n       \"   130\\n\",\n       \"    49\"\n      ]\n     },\n     \"execution_count\": 2,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"EVDdata = readdlm(\\\"wikipediaEVDdatesconverted.csv\\\", ',')  # don't forget the delimiter!\\n\",\n    \"epidays = EVDdata[:, 1]  # Here \\\":\\\" means all the entries in all rows of the specified columns\\n\",\n    \"allcases = EVDdata[:, 2] # ditto---here, the specified columns is just column 2\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Load the Plots package into a current notebook</h2>\\n\",\n    \"\\n\",\n    \"Julia has quite a few projects on visualising scientific and technical data, and  several of them are concerned mainly with making plots. \\n\",\n    \"\\n\",\n    \"We choose to offer you the Plots package, together with the PyPlot backend. PyPlot is based on the Python package matplotlib, which in its turn imitates the way Matlab makes plots. This combination of Python and Matlab means that we can draw on a wealth of experience. \\n\",\n    \"\\n\",\n    \"Indeed, the PyPlot, matplotlib and Matlab communities are welcoming and helpful, and if you go online you will find lots of examples and discussions. If you have a particular query, a little internet searching will probably provide an answer. If not, there are many online forums where you could expect a rapid, polite and helpful reply to  most of your questions. \\n\",\n    \"\\n\",\n    \"We load Plots with a simple command. This also works from your own home installation, though  you may have to add the Plots package by issuing \\\"Pkg.add(\\\"Plots\\\")\\\".\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"using Plots   # this loads the Plots package into your current workspace. It may take a few seconds.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Activate the PyPlot backend for use with Plots</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"As I said above, having loaded Plots we need to specify which backend to use. The idea of Plots is that we specify a plot with *identical code*, irrrespective of backend. To change backends is then just to run the command for the new backend.\\n\",\n    \"\\n\",\n    \"However, not all backends do the same things, of course, so some things work better in some back-ends and other things in others. For more information, do consult the Plots homepage at https://juliaplots.github.io . The PyPlot examples are at https://juliaplots.github.io/examples/pyplot/ .\\n\",\n    \"\\n\",\n    \"Here's how to specify PyPlot as the backend for  Plots to use:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Plots.PyPlotBackend()\"\n      ]\n     },\n     \"execution_count\": 4,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"pyplot()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Note that it is enough to use \\\"pyplot()\\\". That is, no arguments are needed. Plots has reasonable default values it uses, but the user can override them. For example, you can  specify a picture size of to your own liking.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Plot a curve from coordinate data</h2>\\n\",\n    \"\\n\",\n    \"For Plots to work as advertised, it must be extremely straightforward to plot the data. And it is:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"[Plots.jl] Initializing backend: pyplot\\n\"\n     ]\n    },\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"INFO: Precompiling module PyPlot...\\n\",\n      \"WARNING: Couldn't initialize pyplot.  (might need to install it?)\\n\"\n     ]\n    },\n    {\n     \"ename\": \"LoadError\",\n     \"evalue\": \"LoadError: InitError: Failed to pyimport(\\\"matplotlib\\\"): PyPlot will not work until you have a functioning matplotlib module.\\n\\nFor automated Matplotlib installation, try configuring PyCall to use the Conda Python distribution within Julia.  Relaunch Julia and run:\\n      ENV[\\\"PYTHON\\\"]=\\\"\\\"\\n      Pkg.build(\\\"PyCall\\\")\\n      using PyPlot\\n\\npyimport exception was: PyError (:PyImport_ImportModule) <class 'ValueError'>\\nValueError('unknown locale: UTF-8',)\\n  File \\\"/Users/antoinetteengel/anaconda/lib/python3.5/site-packages/matplotlib/__init__.py\\\", line 1131, in <module>\\n    rcParams = rc_params()\\n  File \\\"/Users/antoinetteengel/anaconda/lib/python3.5/site-packages/matplotlib/__init__.py\\\", line 975, in rc_params\\n    return rc_params_from_file(fname, fail_on_error)\\n  File \\\"/Users/antoinetteengel/anaconda/lib/python3.5/site-packages/matplotlib/__init__.py\\\", line 1100, in rc_params_from_file\\n    config_from_file = _rc_params_in_file(fname, fail_on_error)\\n  File \\\"/Users/antoinetteengel/anaconda/lib/python3.5/site-packages/matplotlib/__init__.py\\\", line 1018, in _rc_params_in_file\\n    with _open_file_or_url(fname) as fd:\\n  File \\\"/Users/antoinetteengel/anaconda/lib/python3.5/contextlib.py\\\", line 59, in __enter__\\n    return next(self.gen)\\n  File \\\"/Users/antoinetteengel/anaconda/lib/python3.5/site-packages/matplotlib/__init__.py\\\", line 1000, in _open_file_or_url\\n    encoding = locale.getdefaultlocale()[1]\\n  File \\\"/Users/antoinetteengel/anaconda/lib/python3.5/locale.py\\\", line 559, in getdefaultlocale\\n    return _parse_localename(localename)\\n  File \\\"/Users/antoinetteengel/anaconda/lib/python3.5/locale.py\\\", line 487, in _parse_localename\\n    raise ValueError('unknown locale: %s' % localename)\\n\\nduring initialization of module PyPlot\\nwhile loading In[5], in expression starting on line 1\",\n     \"output_type\": \"error\",\n     \"traceback\": [\n      \"LoadError: InitError: Failed to pyimport(\\\"matplotlib\\\"): PyPlot will not work until you have a functioning matplotlib module.\\n\\nFor automated Matplotlib installation, try configuring PyCall to use the Conda Python distribution within Julia.  Relaunch Julia and run:\\n      ENV[\\\"PYTHON\\\"]=\\\"\\\"\\n      Pkg.build(\\\"PyCall\\\")\\n      using PyPlot\\n\\npyimport exception was: PyError (:PyImport_ImportModule) <class 'ValueError'>\\nValueError('unknown locale: UTF-8',)\\n  File \\\"/Users/antoinetteengel/anaconda/lib/python3.5/site-packages/matplotlib/__init__.py\\\", line 1131, in <module>\\n    rcParams = rc_params()\\n  File \\\"/Users/antoinetteengel/anaconda/lib/python3.5/site-packages/matplotlib/__init__.py\\\", line 975, in rc_params\\n    return rc_params_from_file(fname, fail_on_error)\\n  File \\\"/Users/antoinetteengel/anaconda/lib/python3.5/site-packages/matplotlib/__init__.py\\\", line 1100, in rc_params_from_file\\n    config_from_file = _rc_params_in_file(fname, fail_on_error)\\n  File \\\"/Users/antoinetteengel/anaconda/lib/python3.5/site-packages/matplotlib/__init__.py\\\", line 1018, in _rc_params_in_file\\n    with _open_file_or_url(fname) as fd:\\n  File \\\"/Users/antoinetteengel/anaconda/lib/python3.5/contextlib.py\\\", line 59, in __enter__\\n    return next(self.gen)\\n  File \\\"/Users/antoinetteengel/anaconda/lib/python3.5/site-packages/matplotlib/__init__.py\\\", line 1000, in _open_file_or_url\\n    encoding = locale.getdefaultlocale()[1]\\n  File \\\"/Users/antoinetteengel/anaconda/lib/python3.5/locale.py\\\", line 559, in getdefaultlocale\\n    return _parse_localename(localename)\\n  File \\\"/Users/antoinetteengel/anaconda/lib/python3.5/locale.py\\\", line 487, in _parse_localename\\n    raise ValueError('unknown locale: %s' % localename)\\n\\nduring initialization of module PyPlot\\nwhile loading In[5], in expression starting on line 1\",\n      \"\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"plot(epidays, allcases)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Hm, not too bad! Good choice of scale for the two axes. A light blue for the curve is not that readable for some people, but it looks pretty. The default is to show a legend but not title or axis labels.\\n\",\n    \"\\n\",\n    \"Plots lives up to its billing---simple to use, good pictures produced.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Tweak the current plot</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We choose different attributes by specifying the values of keywords. Plots provides many ways to do this, but I'll show only a few. For more information, see the Plots homepage https://juliaplots.github.io/ .\\n\",\n    \"\\n\",\n    \"I think the plot would be better if it used symbols for the data points. Let's also omit the line. That means the line type is set to \\\"scatter\\\". The keyword for the symbol that is plotted is \\\"marker\\\", and I  choose \\\"diamond\\\" as its value. Note the use of the colon in the syntax below!\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<img src=\\\"data:image/png;base64,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\\\" />\"\n      ]\n     },\n     \"execution_count\": 6,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"plot(epidays, allcases, linetype = :scatter, marker = :diamond)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We should also add a title and axis labels, and while we're at it turn off the legend. For illustration, I also change the line type and line style so that a gray dotted line is plotted between the diamonds, tur the grid off and  increase the size of the diamonds.\\n\",\n    \"\\n\",\n    \"For the long command that results, it is a good idea to use white space to break it into logical parts. Note that although visually it looks like several lines, it is just one function call and so in the sense of computer programming it is just one unit of code.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"[Plots.jl] Initializing backend: pyplot\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<img src=\\\"data:image/png;base64,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\\\" />\"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"plot(epidays, allcases,   # here are the data to be plotted, below are the attributes\\n\",\n    \"title       = \\\"West African EVD epidemic, total cases\\\", \\n\",\n    \"xlabel    = \\\"Days since 22 March 2014\\\",\\n\",\n    \"ylabel    = \\\"Total cases to date (three countries)\\\",\\n\",\n    \"marker  = (:diamond, 8),  # note the use of  parentheses to group the marker attributes into a composite of attributes \\n\",\n    \"line         = (:path, :dot, :gray),   # line attributes likewise put together as one unit by the use of parantheses\\n\",\n    \"legend   = false,\\n\",\n    \"grid        = false)    \\n\",\n    \"\\n\",\n    \"# A nice thing: this layout permits us add comments to individual parts of  the function call. \\n\",\n    \"# Also, notice that it helps readibility to line up vertically all the assignment \\\"=\\\" signs\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Save the current plot</h2>\\n\",\n    \"\\n\",\n    \"Of course, one needs to be able to save plots from the screen in a format to be used elsewhere. For documents and presentations, pdf is a good format, while for websites .png is often preferred. \\n\",\n    \"\\n\",\n    \"The function to use is savefig(). Plots will follow the extension you provide for the filename. If you omit the filename, the defaults kick in and Plots will use png as the format and add .png as the file extension.\\n\",\n    \"\\n\",\n    \"All three cases are illustrated below. After you've saved the figures, check in your folder that they are there and work as advertised!\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"savefig(\\\"WAfricanEVD_noformatspecified\\\")             # no extension, so plot saves it as .png  \\n\",\n    \"savefig(\\\"WAfricanEVD.pdf\\\")      # Saved as a pdf\\n\",\n    \"savefig(\\\"WAfricanEVD.png\\\")     # Saved png format\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Julia 0.4.6\",\n   \"language\": \"julia\",\n   \"name\": \"julia-0.4\"\n  },\n  \"language_info\": {\n   \"file_extension\": \".jl\",\n   \"mimetype\": \"application/julia\",\n   \"name\": \"julia\",\n   \"version\": \"0.4.6\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 0\n}\n"
  },
  {
    "path": "Week2_5-MultipleCurves.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\n\",\n       \"\\n\",\n       \"<style>\\n\",\n       \"\\n\",\n       \"@font-face {\\n\",\n       \"    font-family: \\\"Computer Modern\\\";\\n\",\n       \"    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"#notebook_panel { /* main background */\\n\",\n       \"    background: #ddd;\\n\",\n       \"    color: #000000;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"/* Formatting for header cells */\\n\",\n       \".text_cell_render h1 {\\n\",\n       \"    font-family: 'Philosopher', sans-serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 2.2em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(0, 80, 120);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \".text_cell_render h2 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 1.9em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(200,100,0);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \"\\n\",\n       \".text_cell_render h3 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    margin-top:12px;\\n\",\n       \"    margin-bottom: 3px;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    color: rgb(94,127,192);\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h4 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h5 {\\n\",\n       \"    font-family: 'Alegreya Sans', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 16pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    margin-bottom: .1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h6 {\\n\",\n       \"    font-family: 'PT Mono', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 10pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    margin-bottom: 1px;\\n\",\n       \"    margin-top: 1px;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".CodeMirror{\\n\",\n       \"        font-family: \\\"PT Mono\\\";\\n\",\n       \"        font-size: 100%;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"</style>\\n\",\n       \"\\n\"\n      ],\n      \"text/plain\": [\n       \"HTML{ASCIIString}(\\\"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\\\n\\\\n<style>\\\\n\\\\n@font-face {\\\\n    font-family: \\\\\\\"Computer Modern\\\\\\\";\\\\n    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\\\n}\\\\n\\\\n#notebook_panel { /* main background */\\\\n    background: #ddd;\\\\n    color: #000000;\\\\n}\\\\n\\\\n\\\\n\\\\n/* Formatting for header cells */\\\\n.text_cell_render h1 {\\\\n    font-family: 'Philosopher', sans-serif;\\\\n    font-weight: 400;\\\\n    font-size: 2.2em;\\\\n    line-height: 100%;\\\\n    color: rgb(0, 80, 120);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n.text_cell_render h2 {\\\\n    font-family: 'Philosopher', serif;\\\\n    font-weight: 400;\\\\n    font-size: 1.9em;\\\\n    line-height: 100%;\\\\n    color: rgb(200,100,0);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n\\\\n.text_cell_render h3 {\\\\n    font-family: 'Philosopher', serif;\\\\n    margin-top:12px;\\\\n    margin-bottom: 3px;\\\\n    font-style: italic;\\\\n    color: rgb(94,127,192);\\\\n}\\\\n\\\\n.text_cell_render h4 {\\\\n    font-family: 'Philosopher', serif;\\\\n}\\\\n\\\\n.text_cell_render h5 {\\\\n    font-family: 'Alegreya Sans', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 16pt;\\\\n    color: grey;\\\\n    font-style: italic;\\\\n    margin-bottom: .1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\n\\\\n.text_cell_render h6 {\\\\n    font-family: 'PT Mono', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 10pt;\\\\n    color: grey;\\\\n    margin-bottom: 1px;\\\\n    margin-top: 1px;\\\\n}\\\\n\\\\n.CodeMirror{\\\\n        font-family: \\\\\\\"PT Mono\\\\\\\";\\\\n        font-size: 100%;\\\\n}\\\\n\\\\n</style>\\\\n\\\\n\\\")\"\n      ]\n     },\n     \"execution_count\": 1,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Setting up a custom stylesheet in IJulia\\n\",\n    \"file = open(\\\"style.css\\\") # A .css file in the same folder as this notebook file\\n\",\n    \"styl = readall(file) # Read the file\\n\",\n    \"HTML(\\\"$styl\\\") # Output as HTML\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h1> Multiple curves in a single diagram </h1>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>In this lecture</h2>\\n\",\n    \"\\n\",\n    \"- [Outcome](#Outcome)\\n\",\n    \"- [\\\"if\\\" statements](#\\\"if\\\"-statements)\\n\",\n    \"- [Using \\\"for\\\" and \\\"if\\\" to fill in missing data](#Using-\\\"for\\\"-and-\\\"if\\\"-to-fill-in-missing-data)\\n\",\n    \"- [Plotting the different countries' data simultaneously](#Plotting-the-different-countries'-data-simultaneously)\\n\",\n    \"- [Customising the simultanenous plot](#Customising-the-simultanenous-plot)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Outcome</h2>\\n\",\n    \"\\n\",\n    \"After this lecture, you will be able to\\n\",\n    \"- Use \\\"if\\\" to check for and remove non-numerical values in the data\\n\",\n    \"- Plot several data series simultaneously\\n\",\n    \"- Provide different markers and colours for the several data series\\n\",\n    \"- Provide names to use in a legend for the plot\\n\",\n    \"\\n\",\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>\\\"if\\\" statements</h2>\\n\",\n    \"\\n\",\n    \"The \\\"if\\\" statement, and variations thereof, are one of the most fundamental structures in  any programming language.\\n\",\n    \"\\n\",\n    \"Basically, from time to time, a program needs to choose between a path on which to proceed.\\n\",\n    \"\\n\",\n    \"The simplest choice is between doing something and doing nothing, which applies to a few of  the data in our West African EVD data set. Let's load it now to illustrate; we slice to show only the last 10 lines, which is where the missing data are. \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"10x9 Array{Any,2}:\\n\",\n       \" 123  1201  672  427  319  249     129     525     224   \\n\",\n       \" 114   982  613  411  310  174     106     397     197   \\n\",\n       \" 102   779  481  412  305  115      75     252     101   \\n\",\n       \"  87   528  337  398  264   33      24      97      49   \\n\",\n       \"  66   309  202  281  186   12      11      16       5   \\n\",\n       \"  51   260  182  248  171   12      11        \\\"–\\\"     \\\"–\\\"\\n\",\n       \"  40   239  160  226  149   13      11        \\\"-\\\"     \\\"-\\\"\\n\",\n       \"  23   176  110  168  108    8       2        \\\"–\\\"     \\\"–\\\"\\n\",\n       \"   9   130   82  122   80    8       2        \\\"–\\\"     \\\"–\\\"\\n\",\n       \"   0    49   29   49   29     \\\"–\\\"     \\\"–\\\"     \\\"–\\\"     \\\"–\\\"\"\n      ]\n     },\n     \"execution_count\": 2,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"EVDdata = readdlm(\\\"wikipediaEVDdatesconverted.csv\\\", ',') # again: don't forget the delimiter!\\n\",\n    \"EVDdata[end-9:end, :] # note the use of \\\"end\\\" in the array slicing\\n\",\n    \"#                         ... and that end-9:end is a range with 10 elements\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We see that some of  them are not numbers. The last four columns (check the Wikipedia page again to confirm) are for Liberia and Sierra Leone. The absent data are because the first cases in those countries were reported after 22 March 2014.\\n\",\n    \"\\n\",\n    \"We would like to change them. First let's look at \\\"if\\\" statements, via some examples\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"a now has the value 0.025558986535572092\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"a = rand()\\n\",\n    \"println(\\\"a now has the value $a\\\")\\n\",\n    \"if a > 0.5\\n\",\n    \"    println(\\\"this is quite a large value\\\")\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"a now has the value 0.711565814869876\\n\",\n      \"this is quite a large a\\n\",\n      \"a now has the value 0.7007733553509963\\n\",\n      \"this is quite a large a\\n\",\n      \"a now has the value 0.7807933552770858\\n\",\n      \"this is quite a large a\\n\",\n      \"a now has the value 0.6715079840698481\\n\",\n      \"this is quite a large a\\n\",\n      \"a now has the value 0.9930621327165114\\n\",\n      \"this is quite a large a\\n\",\n      \"a now has the value 0.42243403068019125\\n\",\n      \"a now has the value 0.7654786602988768\\n\",\n      \"this is quite a large a\\n\",\n      \"a now has the value 0.09051702795909855\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# let's run this through a for loop to see it many times\\n\",\n    \"# NB! Note the  use of indentation to mark the start and end of the for and if structures\\n\",\n    \"for k = 1:8\\n\",\n    \"   a = rand()\\n\",\n    \"   println(\\\"a now has the value $a\\\")\\n\",\n    \"   if a > 0.5\\n\",\n    \"      println(\\\"this is quite a large value\\\")\\n\",\n    \"   end \\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Using \\\"for\\\" and \\\"if\\\" to fill in missing data</h2>\\n\",\n    \"\\n\",\n    \"Now we loop over *all* the data values. We use the function isnumber() to test whether the data value can be read as a number. This function returns either \\\"true\\\" or \\\"false\\\", so it is perfect for an \\\"if\\\" test.\\n\",\n    \"\\n\",\n    \"And of course, whenever \\\"isnumber(element)\\\" evaluates to \\\"false\\\", we must replace the element with a number. I choose 0 as the replacement, but other choices also work (notably \\\"NaN\\\"). Note also that isnumber() as a test only works if the argument is a string. Since any string converts to a string, we can safely use the function string() to convert the numbers to strings before we test with isnumber.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"rows, cols = size(EVDdata)  # size() is a very useful function ... look it up with \\\"? size\\\"\\n\",\n    \"for j = 1:cols\\n\",\n    \"    for i = 1:rows  # this order goes does one column at a time\\n\",\n    \"       if !isnumber(string(EVDdata[i,j]))  # remember that \\\"!\\\" is the NOT operator (week 1, lecture 5)\\n\",\n    \"         EVDdata[i,j] = 0\\n\",\n    \"       end\\n\",\n    \"   end\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Let's check those last few rows to see how  it worked:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"10x9 Array{Any,2}:\\n\",\n       \" 123  1201  672  427  319  249  129  525  224\\n\",\n       \" 114   982  613  411  310  174  106  397  197\\n\",\n       \" 102   779  481  412  305  115   75  252  101\\n\",\n       \"  87   528  337  398  264   33   24   97   49\\n\",\n       \"  66   309  202  281  186   12   11   16    5\\n\",\n       \"  51   260  182  248  171   12   11    0    0\\n\",\n       \"  40   239  160  226  149   13   11    0    0\\n\",\n       \"  23   176  110  168  108    8    2    0    0\\n\",\n       \"   9   130   82  122   80    8    2    0    0\\n\",\n       \"   0    49   29   49   29    0    0    0    0\"\n      ]\n     },\n     \"execution_count\": 6,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"EVDdata[end-9:end, :]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Plotting the different countries' data simultaneously</h2>\\n\",\n    \"\\n\",\n    \"This is rather easy. We provide a first series for the x-values (namely the  series epidays) and then we extract as an array the three columns with the individual countries. The plot is then a really simple function statement---that's the beauty of Plots.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"[Plots.jl] Initializing backend: pyplot\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<img src=\\\"data:image/png;base64,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\\\" />\"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# extract the data\\n\",\n    \"epidays = EVDdata[:,1]\\n\",\n    \"EVDcasesbycountry = EVDdata[:, [4, 6, 8]]\\n\",\n    \"\\n\",\n    \"# load Plots and plot them\\n\",\n    \"using Plots\\n\",\n    \"pyplot()\\n\",\n    \"plot(epidays, EVDcasesbycountry)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Customising the simultanenous plot</h2>\\n\",\n    \"\\n\",\n    \"The plot above is already fairly useful, but a better legend would help, and again I would prefer to be reminded that the data is only for every week or so, sometimes even less often. Title and axis labels are needed also. In this case perhaps the grid lines will also help to read the plot.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<img src=\\\"data:image/png;base64,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\\\" />\"\n      ]\n     },\n     \"execution_count\": 8,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"plot(epidays, EVDcasesbycountry,\\n\",\n    \"marker = ([:octagon :star7 :square], 9),\\n\",\n    \"label     = [\\\"Guinea\\\" \\\"Liberia\\\" \\\"Sierra Leone\\\"],\\n\",\n    \"title      = \\\"EVD in West Africa, epidemic segregated by country\\\",\\n\",\n    \"xlabel   = \\\"Days since 22 March 2014\\\",\\n\",\n    \"ylabel   = \\\"Number of cases to date\\\",\\n\",\n    \"line = (:scatter)\\n\",\n    \")\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Ooops! The legend covers up part of the plot.\\n\",\n    \"\\n\",\n    \"It can be tricky to place legends. Sometime, as here, one can specify a different position inside to plot area. Alternatively, a slightly transparent legend will show that the plot continues as expected below it (this is done by specifying an alpha level smaller than 1; look at the Plots website for details). Legends outside the plot area are also used.\\n\",\n    \"\\n\",\n    \"The option \\\"topleft\\\" (again, note the use of \\\":\\\" to show it is a value of an attribute) will do nicely, we have to pass it to the keyword \\\"legend\\\", see below:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<img src=\\\"data:image/png;base64,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\\\" />\"\n      ]\n     },\n     \"execution_count\": 10,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"plot(epidays, EVDcasesbycountry,\\n\",\n    \"legend = :topleft,\\n\",\n    \"marker = ([:octagon :star7 :square], 9),\\n\",\n    \"label     = [\\\"Guinea\\\" \\\"Liberia\\\" \\\"Sierra Leone\\\"],\\n\",\n    \"title      = \\\"EVD in West Africa, epidemic segregated by country\\\",\\n\",\n    \"xlabel   = \\\"Days since 22 March 2014\\\",\\n\",\n    \"ylabel   = \\\"Number of cases to date\\\",\\n\",\n    \"line = (:scatter)\\n\",\n    \")\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"And why not save the plot?\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"savefig(\\\"L5testfig.pdf\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Julia 0.4.6\",\n   \"language\": \"julia\",\n   \"name\": \"julia-0.4\"\n  },\n  \"language_info\": {\n   \"file_extension\": \".jl\",\n   \"mimetype\": \"application/julia\",\n   \"name\": \"julia\",\n   \"version\": \"0.4.6\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 0\n}\n"
  },
  {
    "path": "Week3_1-SIRmodels.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\n\",\n       \"\\n\",\n       \"<style>\\n\",\n       \"\\n\",\n       \"@font-face {\\n\",\n       \"    font-family: \\\"Computer Modern\\\";\\n\",\n       \"    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"#notebook_panel { /* main background */\\n\",\n       \"    background: #ddd;\\n\",\n       \"    color: #000000;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"/* Formatting for header cells */\\n\",\n       \".text_cell_render h1 {\\n\",\n       \"    font-family: 'Philosopher', sans-serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 2.2em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(0, 80, 120);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \".text_cell_render h2 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 1.9em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(200,100,0);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \"\\n\",\n       \".text_cell_render h3 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    margin-top:12px;\\n\",\n       \"    margin-bottom: 3px;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    color: rgb(94,127,192);\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h4 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h5 {\\n\",\n       \"    font-family: 'Alegreya Sans', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 16pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    margin-bottom: .1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h6 {\\n\",\n       \"    font-family: 'PT Mono', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 10pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    margin-bottom: 1px;\\n\",\n       \"    margin-top: 1px;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".CodeMirror{\\n\",\n       \"        font-family: \\\"PT Mono\\\";\\n\",\n       \"        font-size: 100%;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"</style>\\n\",\n       \"\\n\"\n      ],\n      \"text/plain\": [\n       \"HTML{ASCIIString}(\\\"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\\\n\\\\n<style>\\\\n\\\\n@font-face {\\\\n    font-family: \\\\\\\"Computer Modern\\\\\\\";\\\\n    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\\\n}\\\\n\\\\n#notebook_panel { /* main background */\\\\n    background: #ddd;\\\\n    color: #000000;\\\\n}\\\\n\\\\n\\\\n\\\\n/* Formatting for header cells */\\\\n.text_cell_render h1 {\\\\n    font-family: 'Philosopher', sans-serif;\\\\n    font-weight: 400;\\\\n    font-size: 2.2em;\\\\n    line-height: 100%;\\\\n    color: rgb(0, 80, 120);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n.text_cell_render h2 {\\\\n    font-family: 'Philosopher', serif;\\\\n    font-weight: 400;\\\\n    font-size: 1.9em;\\\\n    line-height: 100%;\\\\n    color: rgb(200,100,0);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n\\\\n.text_cell_render h3 {\\\\n    font-family: 'Philosopher', serif;\\\\n    margin-top:12px;\\\\n    margin-bottom: 3px;\\\\n    font-style: italic;\\\\n    color: rgb(94,127,192);\\\\n}\\\\n\\\\n.text_cell_render h4 {\\\\n    font-family: 'Philosopher', serif;\\\\n}\\\\n\\\\n.text_cell_render h5 {\\\\n    font-family: 'Alegreya Sans', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 16pt;\\\\n    color: grey;\\\\n    font-style: italic;\\\\n    margin-bottom: .1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\n\\\\n.text_cell_render h6 {\\\\n    font-family: 'PT Mono', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 10pt;\\\\n    color: grey;\\\\n    margin-bottom: 1px;\\\\n    margin-top: 1px;\\\\n}\\\\n\\\\n.CodeMirror{\\\\n        font-family: \\\\\\\"PT Mono\\\\\\\";\\\\n        font-size: 100%;\\\\n}\\\\n\\\\n</style>\\\\n\\\\n\\\")\"\n      ]\n     },\n     \"execution_count\": 1,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Setting up a custom stylesheet in IJulia\\n\",\n    \"file = open(\\\"style.css\\\") # A .css file in the same folder as this notebook file\\n\",\n    \"styl = readall(file) # Read the file\\n\",\n    \"HTML(\\\"$styl\\\") # Output as HTML\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h1> SIR models of disease dynamics </h1>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>In this lecture</h2>\\n\",\n    \"\\n\",\n    \"- [Outcome](#Outcome)\\n\",\n    \"- [SIR Models: the concepts](#SIR-Models:-the-concepts)\\n\",\n    \"- [SIR Models: the equations](#SIR-Models:-the-equations)\\n\",\n    \"- [Julia code: the function for one time-step](#Julia-code:-the-function-for-one-time-step)\\n\",\n    \"- [Julia code: the loop structure](#Julia-code:-the-loop-structure)\\n\",\n    \"- [Running the model](#Running-the-model)\\n\",\n    \"- [Plotting the results](#Plotting-the-results)\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Outcome</h2>\\n\",\n    \"\\n\",\n    \"After this lecture, you will be able to\\n\",\n    \"- Define the compartments S, I and R of an SIR\\n\",\n    \"- Formulate an SIR model for infectious diseases\\n\",\n    \"- Write a \\\"for\\\" loop to for an SIR model \\n\",\n    \"- Plot the curves for S(t), I(t) and R(t)\\n\",\n    \"\\n\",\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>SIR Models: the concepts</h2>\\n\",\n    \"\\n\",\n    \"SIR models formalise what is probably the simplest possible way to think of an epidemic: \\n\",\n    \"- before the epidemic starts, there is a population at risk of catching the disease\\n\",\n    \"- the disease spreads from infected to susceptible people\\n\",\n    \"- after a while, people are no longer infected\\n\",\n    \"- once infected, people are never infected again\\n\",\n    \"- we ignore all other differences between people\\n\",\n    \"\\n\",\n    \"We use the symbol $S$ for the number of people who are still at risk of the disease. \\\"$S$\\\" is short for \\\"susceptible\\\", meaning a person who hasn't had the disease and might catch it. We think of $S$ as a function of time, that is, we think that as the epidemic progresses, $S$ changes. Therefore we write $S(t)$ for the number of suseptibles at time $t$.\\n\",\n    \"\\n\",\n    \"The number $S(0)$, which is the number of susceptibles at the start of the epidemic, is a key value in this model.\\n\",\n    \"\\n\",\n    \"The number of infected people at time $t$ is given by $I(t)$. We assume that $I(0) > 0$, because otherwise the epidemic can't start.\\n\",\n    \"\\n\",\n    \"Finally, the people previously infected but no longer infectious are called \\\"removed\\\". (Unfortunately, this doesn't mean they've recovered. They may still be ill, or as happens tragically often with Ebola, they may be dead). We use $R(t)$ to symbolise the number of removed people  at time $t$.\\n\",\n    \"\\n\",\n    \"\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"**NB! It is not necessary for S, I and R to be whole numbers. ** This is a model, and all we want is for the predicted values of $S$, $I$ and $R$ to be close to what is observed. By close we mean within a few percent. In fact, because the models are so simple and the real situation so variable, getting numbers within a few percent is a major achievement.\\n\",\n    \"\\n\",\n    \"Unfortunately, this is usually possible only with  hindsight. We will show that an SIR model can do pretty well for the 2014 West African EVD epidemic, but it will be with hindsight. The course of the epidemic was not successfully predicted until it was nearly over.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>SIR Models: the equations</h2>\\n\",\n    \"\\n\",\n    \"We will model $S$, $I$ and $R$ in discrete time steps. In fact, we will use the same length of time step $dt$ for every step. We denote by $t_i$ the time after $i$ steps. Since we assume that $t_0 = 0$, we have $t_i = i\\\\,dt$.\\n\",\n    \"\\n\",\n    \"The model steps from $t_i$ to $t_{i+1}$, so what we want to do is use the values of $S(t_i)$, $I(t_i)$ and $R(t_i)$ to predict the values $S(t_{i+1})$, $I(t_{i+1})$ and $R(t_{i+1})$. So our model is set up in terms of three equations.\\n\",\n    \"\\n\",\n    \"These equations all have the form \\\"new value = old value + gains - losses\\\". The model specifies how we calculate the gains and losses.\\n\",\n    \"\\n\",\n    \"For susceptibles, there is only a loss term. The simplest SIR models come from the so-called \\\"law of mass action\\\". This law holds that all susceptibles have an equal chance of meeting an infected person. And the same is assumed for infected people. Then the number of  meetings of infecteds and susceptibles is proportional to product $SI$. We use the symbol $\\\\lambda$ for the constant of proportionality, and we interpret $\\\\lambda SI$ as the rate at which susceptibles become infected. This is of course a rate per day. So the actual loss over the time step $dt$ is actually $\\\\lambda SI\\\\,dt$ so the equation for $S$ is\\n\",\n    \"\\n\",\n    \"1 ...     $ S(t_{i+1}) = S(t_i) - \\\\lambda S(t_i)I(t_i)\\\\,dt$.\\n\",\n    \"\\n\",\n    \"On the other hand, the loss rate for infected people is just a constant probability of recovery per unit time. So a constant fraction $\\\\gamma$ is removed from the infecteds per day. This gives a loss of $\\\\gamma I$ infecteds per day, which is $\\\\gamma I\\\\,dt$ loss of infecteds per time step. The gain of infecteds must be exactly the susceptibles who become infected, so the equation for $I$ is\\n\",\n    \"\\n\",\n    \"2 ...     $I(t_{i+1}) = I(t_i) + \\\\lambda S(t_i)I(t_i)\\\\,dt - \\\\gamma I(t_i)\\\\,dt$.\\n\",\n    \"\\n\",\n    \"In an SIR model, the removed population equation has only a gain term, no loss term. What is lost from infecteds is gained by removeds, so the equation for $R$ is\\n\",\n    \"\\n\",\n    \"3 ...     $R(t_{i+1}) = R(t_i) + \\\\gamma I(t_i)\\\\,dt$.\\n\",\n    \"\\n\",\n    \"Our discrete SIR model consists of equations 1, 2 and 3 for $S$, $I$, $R$.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Julia code: the function for one time-step</h2>\\n\",\n    \"\\n\",\n    \"So now we consider the best way to write the Julia code. We have several options: we could write a \\\"for\\\" loop with the three equations inside; we could make three functions, one for each of $S$, $I$ and $R$; we could combine all three into one array and write one function to update all three at the same time. We will do that here.\\n\",\n    \"\\n\",\n    \"**Julia functions have access to all variables that are visible at the level that the function is created**\\n\",\n    \"\\n\",\n    \"This feature of Julia will surprise many experienced programmers. If we assign a value to the variable b and then call a function that uses b without mentioning b in the argument of the function, the function will nevertheless use the value of b as needed. See below:\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"24\"\n      ]\n     },\n     \"execution_count\": 19,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"b = 4;\\n\",\n    \"f(x) = b*x\\n\",\n    \"f(6)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We will use this feature to pass the values of $\\\\lambda$ and $\\\\gamma$ to the updating function. That is, in writing the code for the function, we pass it only the $S$, $I$, $R$ arguments and take the parameter values from the context in which the function is called. This is actually amazingly convenient, especially when we want to experiment with different parameter values for  the sake of fitting the model output to the data.\\n\",\n    \"\\n\",\n    \"This means the function looks like this:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"updateSIR (generic function with 1 method)\"\n      ]\n     },\n     \"execution_count\": 20,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"function updateSIR(popnvector)       # some liberty here: using upper case in the function name\\n\",\n    \"    susceptibles = popnvector[1];\\n\",\n    \"    infecteds    = popnvector[2]; \\n\",\n    \"    removeds     = popnvector[3];\\n\",\n    \"    newS = susceptibles - lambda*susceptibles*infecteds*dt\\n\",\n    \"    newI = infecteds + lambda*susceptibles*infecteds*dt - gam*infecteds*dt  #note abbreviation for gamma (see below)\\n\",\n    \"    newR = removeds + gam*infecteds*dt\\n\",\n    \"    return [newS newI newR]   # NB! spaces only to make this a one row of a two-dimensional array\\n\",\n    \"    #                   and note the use of \\\"return\\\" to specify what the function output should be \\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"One should always do at least minimal checking that a function works as expected. \\n\",\n    \"\\n\",\n    \"For professional code, one should do extensive checking, both of output and input ... one should in fact write the function so that if it fails, it fails  gracefully, and give it some protection against error conditions. But we're not writing professional code!\\n\",\n    \"\\n\",\n    \"On the other hand, let us take the opportunity also to illustrate some typical bugs and how to meet them.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"1x3 Array{Float64,2}:\\n\",\n       \" 975.0  34.5  20.5\"\n      ]\n     },\n     \"execution_count\": 21,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# first we set the parameters\\n\",\n    \"dt = 0.5                    # so we are taking two steps per day\\n\",\n    \"lambda = 1/200; gam = 1/10  #note that gamma is a function in the stats packages, so let's not use it as a name\\n\",\n    \"\\n\",\n    \"# then we specify the input vector to the function\\n\",\n    \"s, i, r = 1000., 10, 20  # multiple assignment\\n\",\n    \"vec = [s i r]         # followed by creating the input vector; spaces again so that it is a row of an array\\n\",\n    \"updateSIR(vec)        # finally the actual function call to test the function\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Julia code: the loop structure</h2>\\n\",\n    \"\\n\",\n    \"Now we consider the loop structure. We can't run the model indefinitely, of course, so there has to be a definite end time $T_f$. We will use $T_f=610$ days, which is just a little more than the number of epidemic days in the data from Wikipedia.\\n\",\n    \"\\n\",\n    \"The number of steps is then in principle $n = T_f/dt$, but here is a delicate moment in the use of computers. Computer arithmetic is not infinitely precise, and so we cannot be quite sure that if we use the computer to calculate $n$ in this way that we will exactly have $n\\\\,dt = T_f$ as we expect on the grounds of algebra. I like to set time as a separate variable, to keep explicit track of step number $i$, and to continue for $n$ steps. Then if at the end the time is not exactly $T_f$ it doesn't matter, because it will be extremely close to it.\\n\",\n    \"\\n\",\n    \"The take-home message is DO NOT RELY ON EXACT EQUALITY, even if you can reasonably expect it. Computers normally are only very close to the numbers you, the programmer, are thinking of (excluding again the exactness that professional programmers may sometimes achieve).\\n\",\n    \"\\n\",\n    \"Knowing the value of $n$ also allows us to initialise an array to hold all the values as they're collected, one row of three elements for each value of the time. This will end up being $n+1$ values, of course.\\n\",\n    \"\\n\",\n    \"So here is the concept code:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"tfinal = 610;    # respecting community values: lowercase only in the names \\n\",\n    \"nsteps = round(Int64, tfinal/dt)    # note the use of round() with type Int64 to ensure that nsteps is an integer\\n\",\n    \"resultvals = Array(Float64, nsteps+1, 3)  #initialise array of type Float64 to hold results\\n\",\n    \"timevec = Array(Float64, nsteps+1)        # ... ditto for time values\\n\",\n    \"\\n\",\n    \"# specify the initial values S(0), I(0), R(0)\\n\",\n    \"# resultvals[1,:] = [s0, i0, r0]  # ... and assign them to the first row\\n\",\n    \"\\n\",\n    \"for step  = 1:nsteps\\n\",\n    \"    # call updateSIR with the step vals and load result into resultvals[step+1, :]\\n\",\n    \"    # update time and load it into timevec\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Running the model</h2>\\n\",\n    \"\\n\",\n    \"We can now run the model. To illustrate the steps, I paste the  cell above into the cell below, and supply the missing bits, this includes the parameter values that we set up before, but not the updateSIR function, as we do not wish to modify that.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# set the values that define the current run\\n\",\n    \"lambda = 1/20000   # infection rate parameter (assumes rates are per day)\\n\",\n    \"gam = 1/10       # recovery rate parameter  (ditto)\\n\",\n    \"dt = 0.5         # length of time step in days\\n\",\n    \"tfinal = 610;    # respecting community values: lowercase only in the names \\n\",\n    \"s0 = 10000.0     # initial susceptibles, note that we use the  type Float64 from the start\\n\",\n    \"i0 = 4.          # initial infecteds; set this to 1. to  mimic an epidemic with an index case\\n\",\n    \"r0 = 0.          # not always the case, of course\\n\",\n    \"\\n\",\n    \"# initialise \\n\",\n    \"nsteps = round(Int64, tfinal/dt)    # note the use of round() with type Int64 to ensure that nsteps is an integer\\n\",\n    \"resultvals = Array(Float64, nsteps+1, 3)  #initialise array of type Float64 to hold results\\n\",\n    \"timevec = Array(Float64, nsteps+1)        # ... ditto for time values\\n\",\n    \"resultvals[1,:] = [s0, i0, r0]  # ... and assign them to the first row\\n\",\n    \"timevec[1] = 0.                 # also Float64, of course.\\n\",\n    \"\\n\",\n    \"for step  = 1:nsteps\\n\",\n    \"    resultvals[step+1, :] = updateSIR(resultvals[step, :])  # NB! pay careful attention to the rows being used\\n\",\n    \"    timevec[step+1] = timevec[step] + dt\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Plotting the results</h2>\\n\",\n    \"\\n\",\n    \"It is now simple  to plot the three population components versus the time.\\n\",\n    \"\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<img src=\\\"data:image/png;base64,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\\\" />\"\n      ]\n     },\n     \"execution_count\": 24,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"using Plots\\n\",\n    \"pyplot()\\n\",\n    \"plot(timevec, resultvals)  # quick and dirty! Plots ought to interpret this as we mean it ...\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<img src=\\\"data:image/png;base64,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\\\" />\"\n      ]\n     },\n     \"execution_count\": 25,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"plot(timevec, resultvals,  # we should of course at a minimum provide some labels\\n\",\n    \"title  = \\\"Example of SIR results\\\",\\n\",\n    \"xlabel = \\\"Epidemic day\\\",\\n\",\n    \"ylabel = \\\"Population size\\\",\\n\",\n    \"label  = [\\\"Susceptibles\\\" \\\"Infecteds\\\" \\\"Removeds\\\"]\\n\",\n    \")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Julia 0.4.6\",\n   \"language\": \"julia\",\n   \"name\": \"julia-0.4\"\n  },\n  \"language_info\": {\n   \"file_extension\": \".jl\",\n   \"mimetype\": \"application/julia\",\n   \"name\": \"julia\",\n   \"version\": \"0.4.6\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 0\n}\n"
  },
  {
    "path": "Week3_2-MoreSIR.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\n\",\n       \"\\n\",\n       \"<style>\\n\",\n       \"\\n\",\n       \"@font-face {\\n\",\n       \"    font-family: \\\"Computer Modern\\\";\\n\",\n       \"    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"#notebook_panel { /* main background */\\n\",\n       \"    background: #ddd;\\n\",\n       \"    color: #000000;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"/* Formatting for header cells */\\n\",\n       \".text_cell_render h1 {\\n\",\n       \"    font-family: 'Philosopher', sans-serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 2.2em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(0, 80, 120);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \".text_cell_render h2 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 1.9em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(200,100,0);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \"\\n\",\n       \".text_cell_render h3 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    margin-top:12px;\\n\",\n       \"    margin-bottom: 3px;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    color: rgb(94,127,192);\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h4 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h5 {\\n\",\n       \"    font-family: 'Alegreya Sans', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 16pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    margin-bottom: .1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h6 {\\n\",\n       \"    font-family: 'PT Mono', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 10pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    margin-bottom: 1px;\\n\",\n       \"    margin-top: 1px;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".CodeMirror{\\n\",\n       \"        font-family: \\\"PT Mono\\\";\\n\",\n       \"        font-size: 100%;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"</style>\\n\",\n       \"\\n\"\n      ],\n      \"text/plain\": [\n       \"HTML{ASCIIString}(\\\"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\\\n\\\\n<style>\\\\n\\\\n@font-face {\\\\n    font-family: \\\\\\\"Computer Modern\\\\\\\";\\\\n    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\\\n}\\\\n\\\\n#notebook_panel { /* main background */\\\\n    background: #ddd;\\\\n    color: #000000;\\\\n}\\\\n\\\\n\\\\n\\\\n/* Formatting for header cells */\\\\n.text_cell_render h1 {\\\\n    font-family: 'Philosopher', sans-serif;\\\\n    font-weight: 400;\\\\n    font-size: 2.2em;\\\\n    line-height: 100%;\\\\n    color: rgb(0, 80, 120);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n.text_cell_render h2 {\\\\n    font-family: 'Philosopher', serif;\\\\n    font-weight: 400;\\\\n    font-size: 1.9em;\\\\n    line-height: 100%;\\\\n    color: rgb(200,100,0);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n\\\\n.text_cell_render h3 {\\\\n    font-family: 'Philosopher', serif;\\\\n    margin-top:12px;\\\\n    margin-bottom: 3px;\\\\n    font-style: italic;\\\\n    color: rgb(94,127,192);\\\\n}\\\\n\\\\n.text_cell_render h4 {\\\\n    font-family: 'Philosopher', serif;\\\\n}\\\\n\\\\n.text_cell_render h5 {\\\\n    font-family: 'Alegreya Sans', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 16pt;\\\\n    color: grey;\\\\n    font-style: italic;\\\\n    margin-bottom: .1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\n\\\\n.text_cell_render h6 {\\\\n    font-family: 'PT Mono', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 10pt;\\\\n    color: grey;\\\\n    margin-bottom: 1px;\\\\n    margin-top: 1px;\\\\n}\\\\n\\\\n.CodeMirror{\\\\n        font-family: \\\\\\\"PT Mono\\\\\\\";\\\\n        font-size: 100%;\\\\n}\\\\n\\\\n</style>\\\\n\\\\n\\\")\"\n      ]\n     },\n     \"execution_count\": 1,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Setting up a custom stylesheet in IJulia\\n\",\n    \"file = open(\\\"style.css\\\") # A .css file in the same folder as this notebook file\\n\",\n    \"styl = readall(file) # Read the file\\n\",\n    \"HTML(\\\"$styl\\\") # Output as HTML\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h1> More on SIR models </h1>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>In this lecture</h2>\\n\",\n    \"\\n\",\n    \"- [Outcome](#Outcome)\\n\",\n    \"- [The threshold prediction of our SIR model](#The-threshold-prediction-of-our-SIR-model)\\n\",\n    \"- [The duration of infectiousness implied by our model](#The-duration-of-infectiousness-implied-by-our-model)\\n\",\n    \"- [A phase plane: plots of $I$ vs $S$](#A-phase-plane:-plots-of-$I$-vs-$S$)\\n\",\n    \"- [Putting it all together: estimates of $\\\\gamma$ and $\\\\lambda$](#Putting-it-all-together:-estimates-of-$\\\\gamma$-and-$\\\\lambda$)\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Outcome</h2>\\n\",\n    \"\\n\",\n    \"After this lecture, you will be able to\\n\",\n    \"- Explain the threshold phenomenon in SIR models\\n\",\n    \"- Use three-week duration of infectiousness to estimate $\\\\gamma$ in our EVD model\\n\",\n    \"- Plot the course of an epidemic in the $SI$ phase plane\\n\",\n    \"- Use country populations plus the threshold phenomenonn to estimate $\\\\lambda$ in our EVD model\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>The threshold prediction of our SIR model</h2>\\n\",\n    \"\\n\",\n    \"Recall the three equations of our SIR model:\\n\",\n    \"\\n\",\n    \"1 ...     $ S(t_{i+1}) = S(t_i) - \\\\lambda S(t_i)I(t_i)\\\\,dt$\\n\",\n    \"\\n\",\n    \"2 ...     $I(t_{i+1}) = I(t_i) + \\\\lambda S(t_i)I(t_i)\\\\,dt - \\\\gamma I(t_i)\\\\,dt$\\n\",\n    \"\\n\",\n    \"3 ...     $R(t_{i+1}) = R(t_i) + \\\\gamma I(t_i)\\\\,dt$\\n\",\n    \"\\n\",\n    \"And recall that $S(t)$ is a symbol for the size of the susceptible population (not yet infected) at time $t$, likewise $I(t)$ represents the infecteds, and $R(t)$ the removeds.\\n\",\n    \"\\n\",\n    \"The parameter $\\\\lambda$ models the likelihood that when an infected person meets a susceptible person, the susceptible person becomes infected.\\n\",\n    \"\\n\",\n    \"The parameter $\\\\gamma$ models the rate at which infected people become removed.\\n\",\n    \"\\n\",\n    \"Our task in this lecture is to propose estimates for the parameter values. To do so, we will use the *threshold phenomenon* of our model: for given values of $\\\\lambda$ and $\\\\gamma$, there is no epidemic unless $S(0)$ is big enough. \\n\",\n    \"\\n\",\n    \"The reasoning is simple: for an epidemic to happen, the infection must spread. But that means more people must be getting infected than are recovering. That is, the gain minus the loss of infecteds must be positive. In symbols, we must have\\n\",\n    \"\\n\",\n    \"$\\\\lambda SI - \\\\gamma I > 0$\\n\",\n    \"\\n\",\n    \"This can only happen if $\\\\lambda S - \\\\gamma > 0$. In other words, the number of infecteds can increase only when $S > \\\\gamma/\\\\lambda$.\\n\",\n    \"\\n\",\n    \"This implies that if the initial population is below the threshold, indicated by $S(0) < \\\\gamma/\\\\lambda$, then the number of infecteds, even if initially large, will decrease. That is, in a small enough population, any initial infection simply dies out. On the other hand, if $S(0)>\\\\gamma/\\\\lambda$, the number of infecteds will increase, at least for a while.\\n\",\n    \"\\n\",\n    \"It is of course obvious that for our model to apply to the West African epidemic, our parameter values must be such that the susceptible population at the beginning of 2014 was larger than $\\\\gamma/\\\\lambda$. \\n\",\n    \"\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>The duration of infectiousness implied by our model</h2>\\n\",\n    \"\\n\",\n    \"We note that the loss rate of infecteds is given by $\\\\gamma I$. This means that every day, the fraction of infected people becoming removed is $\\\\gamma$.\\n\",\n    \"\\n\",\n    \"For example, consider $\\\\gamma = 1/10$. Then every day a tenth of ill people recover. If we assume that every person is ill for 10 days, and as many people are getting ill as recovering, then a tenth of all ill people recover every day.\\n\",\n    \"\\n\",\n    \"In other words, it makes sense to thing of the duration of one person's illness as $1/\\\\gamma$. Recall that the duration of EVD is approximately three weeks. This means we may estimate that $1/\\\\gamma\\\\approx 21$. We will therefore set $\\\\gamma=0.05$ as a reasonable estimate.\\n\",\n    \"\\n\",\n    \"It is crude to think that they are equally infectious every day of these three weeks, but that is what we are doing. Our assumption was that the only difference between people is whether they are susceptible, infected or removed.\\n\",\n    \"\\n\",\n    \"Likewise, it is crude to think that all infected people are ill in the same way and for the same duration, but again this is what we do. In fact, without a lot more data (especially data on duration of illness) and a considerably more complicated model, this is all we can do. \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>A phase plane: plots of $I$ vs $S$</h2>\\n\",\n    \"\\n\",\n    \"A good way to illustrate the threshold phenomenon is via plots of $I$ versus $S$. That is, we run the model as we did in the previous lecture, but now we plot the phase diagram. (Well, part of it---the full phase diagram gives all three dependent variables.)\\n\",\n    \"\\n\",\n    \"We re-use the code from the previous lecture (just cut and paste):\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 31,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"updateSIR (generic function with 1 method)\"\n      ]\n     },\n     \"execution_count\": 31,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"function updateSIR(popnvector)       # exactly the same function as before\\n\",\n    \"    susceptibles = popnvector[1];\\n\",\n    \"    infecteds    = popnvector[2]; \\n\",\n    \"    removeds     = popnvector[3];\\n\",\n    \"    newS = susceptibles - lambda*susceptibles*infecteds*dt\\n\",\n    \"    newI = infecteds + lambda*susceptibles*infecteds*dt - gam*infecteds*dt  \\n\",\n    \"    newR = removeds + gam*infecteds*dt\\n\",\n    \"    return [newS newI newR] \\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 32,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Plots.PyPlotBackend()\"\n      ]\n     },\n     \"execution_count\": 32,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"using Plots  # and of course we need to load Plots and choose to use the PyPlot backend\\n\",\n    \"pyplot()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 39,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# likewise, a run of the model uses exactly the same code ... but we'll play a bit with the values that determine a run\\n\",\n    \"\\n\",\n    \"gam = 1/20.       # recovery rate parameter  (ditto)\\n\",\n    \"dt = 0.5         # length of time step in days\\n\",\n    \"tfinal = 610.;    # respecting community values: lowercase only in the names \\n\",\n    \"s0 = 22000000.     # initial susceptibles, note that we use the  type Float64 from the start\\n\",\n    \"i0 = 4.          # initial infecteds; set this to 1. to  mimic an epidemic with an index case\\n\",\n    \"r0 = 0.          # not always the case, of course\\n\",\n    \"lambda = gam/(0.1*s0)\\n\",\n    \"\\n\",\n    \"# initialise \\n\",\n    \"nsteps = round(Int64, tfinal/dt)    # note the use of round() with type Int64 to ensure that nsteps is an integer\\n\",\n    \"resultvals = Array(Float64, nsteps+1, 3)  #initialise array of type Float64 to hold results\\n\",\n    \"timevec = Array(Float64, nsteps+1)        # ... ditto for time values\\n\",\n    \"resultvals[1,:] = [s0, i0, r0]  # ... and assign them to the first row\\n\",\n    \"timevec[1] = 0.                 # also Float64, of course.\\n\",\n    \"\\n\",\n    \"for step  = 1:nsteps\\n\",\n    \"    resultvals[step+1, :] = updateSIR(resultvals[step, :])  # NB! pay careful attention to the rows being used\\n\",\n    \"    timevec[step+1] = timevec[step] + dt\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 40,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<img src=\\\"data:image/png;base64,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\\\" />\"\n      ]\n     },\n     \"execution_count\": 40,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# now we can plot the outcome  \\n\",\n    \"\\n\",\n    \"svals = resultvals[:,1];  # get the results\\n\",\n    \"ivals = resultvals[:,2];\\n\",\n    \"\\n\",\n    \"plot(svals, ivals, title = \\\"First look at I vs S plot\\\")        # and plot them\\n\",\n    \"\\n\",\n    \"# we first vary S(0); the initial threshold is (0.1)/(1/20000) = 2000\\n\",\n    \"# one can also vary gam and lambda and dt\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Putting it all together: estimates of $\\\\gamma$ and $\\\\lambda$</h2>\\n\",\n    \"\\n\",\n    \"We already have the estimate $\\\\gamma = 0.05$, based on a 20-day infectious period per patient.\\n\",\n    \"\\n\",\n    \"We now need estimates of $\\\\lambda$ and of $S(0)$ (we will discuss $I(0)$ and $R(0)$ later).\\n\",\n    \"\\n\",\n    \"Since at the beginning of the epidemic, one could not safely say that any person in the three countries concerned would never be exposed to the Ebola virus, we should assume that the susceptible population was the sum of the populations of Guinea, Liberia and Sierra Leone. Using Wikipedia, this gives us $S(0)=22\\\\times10^6$, because in total there are approximately 22 million people in these countries.\\n\",\n    \"\\n\",\n    \"Now we use the threshold, which we write as $S^\\\\ast = \\\\gamma/\\\\lambda$, so that $\\\\lambda = \\\\gamma/S^\\\\ast$. Assuming that our $S(0)$ is far larger than $S^\\\\ast$, because the epidemic was so severe, let us set $S^\\\\ast = 0.1S(0)=2.2\\\\times10^6$. This gives the estimate $\\\\lambda = 0.05/2.2\\\\times10^6 \\\\approx 2.3\\\\times10^{-8}$. \\n\",\n    \"\\n\",\n    \"Let's go back to our phase plot and put in these estimates.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Julia 0.4.6\",\n   \"language\": \"julia\",\n   \"name\": \"julia-0.4\"\n  },\n  \"language_info\": {\n   \"file_extension\": \".jl\",\n   \"mimetype\": \"application/julia\",\n   \"name\": \"julia\",\n   \"version\": \"0.4.6\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 0\n}\n"
  },
  {
    "path": "Week3_3-PlottingData.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\n\",\n       \"\\n\",\n       \"<style>\\n\",\n       \"\\n\",\n       \"@font-face {\\n\",\n       \"    font-family: \\\"Computer Modern\\\";\\n\",\n       \"    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"#notebook_panel { /* main background */\\n\",\n       \"    background: #ddd;\\n\",\n       \"    color: #000000;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"/* Formatting for header cells */\\n\",\n       \".text_cell_render h1 {\\n\",\n       \"    font-family: 'Philosopher', sans-serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 2.2em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(0, 80, 120);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \".text_cell_render h2 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 1.9em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(200,100,0);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \"\\n\",\n       \".text_cell_render h3 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    margin-top:12px;\\n\",\n       \"    margin-bottom: 3px;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    color: rgb(94,127,192);\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h4 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h5 {\\n\",\n       \"    font-family: 'Alegreya Sans', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 16pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    margin-bottom: .1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h6 {\\n\",\n       \"    font-family: 'PT Mono', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 10pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    margin-bottom: 1px;\\n\",\n       \"    margin-top: 1px;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".CodeMirror{\\n\",\n       \"        font-family: \\\"PT Mono\\\";\\n\",\n       \"        font-size: 100%;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"</style>\\n\",\n       \"\\n\"\n      ],\n      \"text/plain\": [\n       \"HTML{ASCIIString}(\\\"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\\\n\\\\n<style>\\\\n\\\\n@font-face {\\\\n    font-family: \\\\\\\"Computer Modern\\\\\\\";\\\\n    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\\\n}\\\\n\\\\n#notebook_panel { /* main background */\\\\n    background: #ddd;\\\\n    color: #000000;\\\\n}\\\\n\\\\n\\\\n\\\\n/* Formatting for header cells */\\\\n.text_cell_render h1 {\\\\n    font-family: 'Philosopher', sans-serif;\\\\n    font-weight: 400;\\\\n    font-size: 2.2em;\\\\n    line-height: 100%;\\\\n    color: rgb(0, 80, 120);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n.text_cell_render h2 {\\\\n    font-family: 'Philosopher', serif;\\\\n    font-weight: 400;\\\\n    font-size: 1.9em;\\\\n    line-height: 100%;\\\\n    color: rgb(200,100,0);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n\\\\n.text_cell_render h3 {\\\\n    font-family: 'Philosopher', serif;\\\\n    margin-top:12px;\\\\n    margin-bottom: 3px;\\\\n    font-style: italic;\\\\n    color: rgb(94,127,192);\\\\n}\\\\n\\\\n.text_cell_render h4 {\\\\n    font-family: 'Philosopher', serif;\\\\n}\\\\n\\\\n.text_cell_render h5 {\\\\n    font-family: 'Alegreya Sans', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 16pt;\\\\n    color: grey;\\\\n    font-style: italic;\\\\n    margin-bottom: .1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\n\\\\n.text_cell_render h6 {\\\\n    font-family: 'PT Mono', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 10pt;\\\\n    color: grey;\\\\n    margin-bottom: 1px;\\\\n    margin-top: 1px;\\\\n}\\\\n\\\\n.CodeMirror{\\\\n        font-family: \\\\\\\"PT Mono\\\\\\\";\\\\n        font-size: 100%;\\\\n}\\\\n\\\\n</style>\\\\n\\\\n\\\")\"\n      ]\n     },\n     \"execution_count\": 1,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Setting up a custom stylesheet in IJulia\\n\",\n    \"file = open(\\\"style.css\\\") # A .css file in the same folder as this notebook file\\n\",\n    \"styl = readall(file) # Read the file\\n\",\n    \"HTML(\\\"$styl\\\") # Output as HTML\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h1> Plotting data and an approximately fitted line simultaneously </h1>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>In this lecture</h2>\\n\",\n    \"\\n\",\n    \"- [Outcome](#Outcome)\\n\",\n    \"- [Julia's modify-the-argument functions](#Julia's-modify-the-argument-functions)\\n\",\n    \"- [The difference between plot() and plot!()](#The-difference-between-\\\"plot\\\"-and-\\\"plot!\\\")\\n\",\n    \"- [An example: approximating the cosine function](#An-example:-approximating-the-cosine-function)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Outcome</h2>\\n\",\n    \"\\n\",\n    \"After this lecture, you will be able to\\n\",\n    \"- Explain how Julia's plot!() function differs from plot()\\n\",\n    \"- Use plot!() to overlay a fitted curve to a scatter of data\\n\",\n    \"- Modify the plot: adding labels, axis styles, line styles etc\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Julia's modify-the-argument functions</h2>\\n\",\n    \"\\n\",\n    \"A lovely feature of Julia is the convention of labelling modify-the-argument functions with an exclamation mark.\\n\",\n    \"\\n\",\n    \"For example, consider the function fill!(), illustrated below.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"4-element Array{Any,1}:\\n\",\n       \" \\\"hello ... word\\\"\\n\",\n       \" \\\"hello ... word\\\"\\n\",\n       \" \\\"hello ... word\\\"\\n\",\n       \" \\\"hello ... word\\\"\"\n      ]\n     },\n     \"execution_count\": 8,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"tempvar = Array(Any, 4)\\n\",\n    \"fill!(tempvar, \\\"hello ... word\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"4-element Array{Any,1}:\\n\",\n       \" 777\\n\",\n       \" 777\\n\",\n       \" 777\\n\",\n       \" 777\"\n      ]\n     },\n     \"execution_count\": 9,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"fill!(tempvar, 777)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Let's just look at how the help system briefly, comparing these two functions and also looking at all functions starting with \\\"a\\\" and with \\\"b\\\" to see how many of the modify-in-place functions Julia has.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"search: any all abs ans ANY atan asin asec any! all! airy acsc acot acos abs2\\n\",\n      \"\\n\",\n      \"Couldn't find a\\n\",\n      \"Perhaps you meant *, +, -, /, ^, h, w, !, $, %, &, :, <, >, I, \\\\, e, |, ~ or ×\\n\"\n     ]\n    },\n    {\n     \"ename\": \"LoadError\",\n     \"evalue\": \"LoadError: \\\"a\\\" is not defined in module Main\\nwhile loading In[11], in expression starting on line 119\",\n     \"output_type\": \"error\",\n     \"traceback\": [\n      \"LoadError: \\\"a\\\" is not defined in module Main\\nwhile loading In[11], in expression starting on line 119\",\n      \"\",\n      \" in error at /Applications/Julia-0.4.6.app/Contents/Resources/julia/lib/julia/sys.dylib\",\n      \" in which_module at /Applications/Julia-0.4.6.app/Contents/Resources/julia/lib/julia/sys.dylib\",\n      \" in call at /Applications/Julia-0.4.6.app/Contents/Resources/julia/lib/julia/sys.dylib\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"?b\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We see that quite a few functions have a plain form and an exclamation form. And many of the exclamation-ending-modify-in-place functions do things like add or remove values. They tend to be low level functions. The advantage of course is that as values are created they are written to space in memory that is already in use. This can speed up one's code significantly, and can also be important when your data sets are so large that memory efficiency becomes an issue.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>The difference between \\\"plot\\\" and \\\"plot!\\\"</h2>\\n\",\n    \"\\n\",\n    \"As we remarked, Plots is a package for using all the Julia plotting packages. The designer of Plots made the interesting choice (I think) to have only one active plot: if you want to make a different plot, you save your current plot and start on a new one. This simplifies the display of a plot. In our case, the notebook allows us to view different plots, because each plot is saved with its particular cell. In keeping with the idea of Plots, you cannot associate more than one plot with a cell.\\n\",\n    \"\\n\",\n    \"So in general, if you call plot() a second time, it wipes out the old plot and draws a completely new one. But Plots *also* doesn't allow you to specify multiple different x-values for your plot. You can plot many different curves, as we did for the different countries' Ebola numbers (week 2, lecture 5), but only if they all use the same x-values.\\n\",\n    \"\\n\",\n    \"To enable us to plot completely different curves, not only in style and colour and so on but also completely different x- and y-values, Plots gives us a function that modifies an existing plot. This function is plot!().\\n\",\n    \"\\n\",\n    \"So the idea is the following: specify a plot for the first set of data using \\\"plot()\\\", and then specify, on the same plot, a second set of data by using \\\"plot!\\\"\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>An example: approximating the cosine function</h2>\\n\",\n    \"\\n\",\n    \"An example will make this clear. It is well known that the cosine function has approximations based on  Taylor series. We will use the fact that \\n\",\n    \"\\n\",\n    \"$cos(x) \\\\approx 1 - \\\\dfrac{x^2}{2} + \\\\dfrac{x^4}{24} - \\\\dfrac{x^6}{720}$\\n\",\n    \"\\n\",\n    \"is an excellent approximation as long as $x$ is near zero. We will pretend the approximate values are experimental data, so there are just a few points. Then we compare the actual function as a curve, and compare them.\\n\",\n    \"\\n\",\n    \"While we're at it, let's practice writing functions. We will write a function that takes a whole vector as input, and one by one evaluates the elements using the approximation formula, and then returns an output vector of the same size as the input.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"200-element Array{Float64,1}:\\n\",\n       \" 1.0     \\n\",\n       \" 0.999546\\n\",\n       \" 0.998182\\n\",\n       \" 0.995912\\n\",\n       \" 0.992736\\n\",\n       \" 0.988658\\n\",\n       \" 0.983681\\n\",\n       \" 0.97781 \\n\",\n       \" 0.971051\\n\",\n       \" 0.963408\\n\",\n       \" 0.95489 \\n\",\n       \" 0.945504\\n\",\n       \" 0.935258\\n\",\n       \" ⋮       \\n\",\n       \" 0.816864\\n\",\n       \" 0.833882\\n\",\n       \" 0.850142\\n\",\n       \" 0.865629\\n\",\n       \" 0.880329\\n\",\n       \" 0.894229\\n\",\n       \" 0.907317\\n\",\n       \" 0.919579\\n\",\n       \" 0.931006\\n\",\n       \" 0.941586\\n\",\n       \" 0.951311\\n\",\n       \" 0.96017 \"\n      ]\n     },\n     \"execution_count\": 5,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"function approxcos(x)\\n\",\n    \"    #initialise the output ... note the use of size() to specify the dimensions of the output vector\\n\",\n    \"    outval = Array(Any, size(x))  \\n\",\n    \"    \\n\",\n    \"    # now we loop over the input vector, and for each  element calculate and store the approximation\\n\",\n    \"    ii = 0  # this will be the index into the vector\\n\",\n    \"    for aa in x   # this aa is just a number, an element of the vector\\n\",\n    \"        y = 1 - aa^2/2 + aa^4/24 - aa^6/720 + aa^8/(56*720) # the approximation ...\\n\",\n    \"        ii = ii+1            #this sets the index correctly\\n\",\n    \"        outval[ii] = y     # and this stores the approximation in the right place\\n\",\n    \"    \\n\",\n    \"    end\\n\",\n    \"    \\n\",\n    \"    return outval  \\n\",\n    \"end\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"x1 = 6rand(10)  # rand() is one of several random number functions in Julia. It returns numbers that uniformly fill the interval [0, 1]\\n\",\n    \"#                   .... here we use it get a set of sampling points in the interval [0, 4]\\n\",\n    \"\\n\",\n    \"x2 = linspace(0, 6, 200)   # look up linspace() using \\\"?\\\" ... it's a nice way to get evenly spaced points\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"y1 = approxcos(x1)\\n\",\n    \"y2 = cos(x2)\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<img src=\\\"data:image/png;base64,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\\\" />\"\n      ]\n     },\n     \"execution_count\": 13,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# now the plots\\n\",\n    \"using Plots; pyplot()    # it is sometimes convenient to cram a line in this way\\n\",\n    \"\\n\",\n    \"#first the plot of the approximation points\\n\",\n    \"plot(x1, y1, line=:scatter, legend=:false, title=\\\"Illustrating 6th-order approximation to cos\\\")\\n\",\n    \"\\n\",\n    \"plot!(x2,y2; line = (:path, :red))   #then add the accurate line with plot!()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Julia 0.4.6\",\n   \"language\": \"julia\",\n   \"name\": \"julia-0.4\"\n  },\n  \"language_info\": {\n   \"file_extension\": \".jl\",\n   \"mimetype\": \"application/julia\",\n   \"name\": \"julia\",\n   \"version\": \"0.4.6\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 0\n}\n"
  },
  {
    "path": "Week3_4-RoughFit.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\n\",\n       \"\\n\",\n       \"<style>\\n\",\n       \"\\n\",\n       \"@font-face {\\n\",\n       \"    font-family: \\\"Computer Modern\\\";\\n\",\n       \"    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"#notebook_panel { /* main background */\\n\",\n       \"    background: #ddd;\\n\",\n       \"    color: #000000;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"/* Formatting for header cells */\\n\",\n       \".text_cell_render h1 {\\n\",\n       \"    font-family: 'Philosopher', sans-serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 2.2em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(0, 80, 120);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \".text_cell_render h2 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 1.9em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(200,100,0);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \"\\n\",\n       \".text_cell_render h3 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    margin-top:12px;\\n\",\n       \"    margin-bottom: 3px;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    color: rgb(94,127,192);\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h4 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h5 {\\n\",\n       \"    font-family: 'Alegreya Sans', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 16pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    margin-bottom: .1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h6 {\\n\",\n       \"    font-family: 'PT Mono', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 10pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    margin-bottom: 1px;\\n\",\n       \"    margin-top: 1px;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".CodeMirror{\\n\",\n       \"        font-family: \\\"PT Mono\\\";\\n\",\n       \"        font-size: 100%;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"</style>\\n\",\n       \"\\n\"\n      ],\n      \"text/plain\": [\n       \"HTML{ASCIIString}(\\\"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\\\n\\\\n<style>\\\\n\\\\n@font-face {\\\\n    font-family: \\\\\\\"Computer Modern\\\\\\\";\\\\n    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\\\n}\\\\n\\\\n#notebook_panel { /* main background */\\\\n    background: #ddd;\\\\n    color: #000000;\\\\n}\\\\n\\\\n\\\\n\\\\n/* Formatting for header cells */\\\\n.text_cell_render h1 {\\\\n    font-family: 'Philosopher', sans-serif;\\\\n    font-weight: 400;\\\\n    font-size: 2.2em;\\\\n    line-height: 100%;\\\\n    color: rgb(0, 80, 120);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n.text_cell_render h2 {\\\\n    font-family: 'Philosopher', serif;\\\\n    font-weight: 400;\\\\n    font-size: 1.9em;\\\\n    line-height: 100%;\\\\n    color: rgb(200,100,0);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n\\\\n.text_cell_render h3 {\\\\n    font-family: 'Philosopher', serif;\\\\n    margin-top:12px;\\\\n    margin-bottom: 3px;\\\\n    font-style: italic;\\\\n    color: rgb(94,127,192);\\\\n}\\\\n\\\\n.text_cell_render h4 {\\\\n    font-family: 'Philosopher', serif;\\\\n}\\\\n\\\\n.text_cell_render h5 {\\\\n    font-family: 'Alegreya Sans', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 16pt;\\\\n    color: grey;\\\\n    font-style: italic;\\\\n    margin-bottom: .1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\n\\\\n.text_cell_render h6 {\\\\n    font-family: 'PT Mono', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 10pt;\\\\n    color: grey;\\\\n    margin-bottom: 1px;\\\\n    margin-top: 1px;\\\\n}\\\\n\\\\n.CodeMirror{\\\\n        font-family: \\\\\\\"PT Mono\\\\\\\";\\\\n        font-size: 100%;\\\\n}\\\\n\\\\n</style>\\\\n\\\\n\\\")\"\n      ]\n     },\n     \"execution_count\": 1,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Setting up a custom stylesheet in IJulia\\n\",\n    \"file = open(\\\"style.css\\\") # A .css file in the same folder as this notebook file\\n\",\n    \"styl = readall(file) # Read the file\\n\",\n    \"HTML(\\\"$styl\\\") # Output as HTML\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h1> Using the data: a rough fit of the model parameters </h1>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>In this lecture</h2>\\n\",\n    \"\\n\",\n    \"- [Outcome](#Outcome)\\n\",\n    \"- [Total cases data: observation vs model](#Total-cases-data:-observation-vs-model)\\n\",\n    \"- [Interactively fitting the model to data using the notebook](#Interactively-fitting-the-model-to-data-using-the-notebook)\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Outcome</h2>\\n\",\n    \"\\n\",\n    \"After this lecture, you will be able to\\n\",\n    \"- Extract total number of cases per epidemic day from a a run of our EVD model\\n\",\n    \"- Use a plot to compare model values to observed values\\n\",\n    \"- Use the interactive notebook to adjust $\\\\lambda$, $\\\\gamma$ and $S(0)$ \\n\",\n    \"- Estimate quickly a fairly good set of values by improving the fit of the model to the data\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Total cases data: observation vs model</h2>\\n\",\n    \"\\n\",\n    \"When one fits data to a model, the first thing is to ensure that the numbers from the model and the numbers from observation really represent the same thing.\\n\",\n    \"\\n\",\n    \"In this case, the data reported in Wikipedia are of two kinds: total cases to date, and total deaths. Our model does not include deaths, so we cannot use that data. Moreover, in our model there is no explicit record of the number of cases. Therefore we have first to work out how to get our model to tell us what the total number of cases are.\\n\",\n    \"\\n\",\n    \"Fortunately, that is not hard. The total cases to date is the number of people who have ever been infected. But every such person is either in the infected group currently or has moved to the removed group. So the total number of cases at time $t$ is $I(t) + R(t)$. We will use $C(t)$ to denote the modelled number of cases, and $W(t)$ for the reported number of cases from Wikipedia.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Let us rerun the model as we left it at the end of the previous lecture, with the estimates from there:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"updateSIR (generic function with 1 method)\"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"using Plots  # might as well start by loading Plots and choose to use the PyPlot backend\\n\",\n    \"pyplot()\\n\",\n    \"\\n\",\n    \"# now lets get the total cases data\\n\",\n    \"EVDdata            = readdlm(\\\"wikipediaEVDdatesconverted.csv\\\", ',')\\n\",\n    \"tvalsfromdata      = EVDdata[:,1]  # the epidemic day values\\n\",\n    \"totalcasesfromdata = EVDdata[:, 2]    # we'll extract individual countries when we need them\\n\",\n    \"\\n\",\n    \"# here's the function that drives the changes that happen every time step\\n\",\n    \"function updateSIR(popnvector)       # exactly the same function as before\\n\",\n    \"    susceptibles = popnvector[1];\\n\",\n    \"    infecteds    = popnvector[2]; \\n\",\n    \"    removeds     = popnvector[3];\\n\",\n    \"    newS = susceptibles - lambda*susceptibles*infecteds*dt\\n\",\n    \"    newI = infecteds + lambda*susceptibles*infecteds*dt - gam*infecteds*dt  \\n\",\n    \"    newR = removeds + gam*infecteds*dt\\n\",\n    \"    return [newS newI newR] \\n\",\n    \"end\\n\",\n    \"\\n\",\n    \"# this cell we need to run only once\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<img src=\\\"data:image/png;base64,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\\\" />\"\n      ]\n     },\n     \"execution_count\": 19,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# set parameter values\\n\",\n    \"lambda = 1.47*10^-6.   # infection rate parameter (assumes rates are per day)\\n\",\n    \"gam = 1/8.      # recovery rate parameter  (ditto)\\n\",\n    \"dt = 0.5         # length of time step in days\\n\",\n    \"tfinal = 610.;    # respecting community values: lowercase only in the names \\n\",\n    \"\\n\",\n    \"# set initial values (originally s0, lambda, gam, i = 22.*10^6., 2.3*10^-8., 0.05, 4. )\\n\",\n    \"s0 = 10.^5.     # initial susceptibles, note that we use the  type Float64 from the start\\n\",\n    \"i0 = 30.          # initial infecteds; set this to 1. to  mimic an epidemic with an index case\\n\",\n    \"r0 = 0.          # not always the case, of course\\n\",\n    \"\\n\",\n    \"# initialise \\n\",\n    \"nsteps = round(Int64, tfinal/dt)    # note the use of round() with type Int64 to ensure that nsteps is an integer\\n\",\n    \"resultvals = Array(Float64, nsteps+1, 3)  #initialise array of type Float64 to hold results\\n\",\n    \"timevec = Array(Float64, nsteps+1)        # ... ditto for time values\\n\",\n    \"resultvals[1,:] = [s0, i0, r0]  # ... and assign them to the first row\\n\",\n    \"timevec[1] = 0.                 # also Float64, of course.\\n\",\n    \"\\n\",\n    \"# the main loop over time steps\\n\",\n    \"for step  = 1:nsteps\\n\",\n    \"    resultvals[step+1, :] = updateSIR(resultvals[step, :])  # NB! pay careful attention to the rows being used\\n\",\n    \"    timevec[step+1] = timevec[step] + dt\\n\",\n    \"end\\n\",\n    \"\\n\",\n    \"# make the plot\\n\",\n    \"ivals = resultvals[:, 2]\\n\",\n    \"rvals = resultvals[:, 3]\\n\",\n    \"cvals = ivals + rvals     # assemble the model values for the case\\n\",\n    \"\\n\",\n    \"plot(timevec, cvals,       # first the model's output s plotted as a line\\n\",\n    \"label = \\\"Model values\\\",\\n\",\n    \"xlabel = \\\"Epidemic day\\\",\\n\",\n    \"ylabel = \\\"Number of cases to date\\\",\\n\",\n    \"title = \\\"Model versus data\\\")\\n\",\n    \"\\n\",\n    \"plot!(tvalsfromdata, totalcasesfromdata,\\n\",\n    \"#legend = :right,\\n\",\n    \"line = :scatter,\\n\",\n    \"label = \\\"Reported number of cases\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"There's quite a lot wrong here! Obviously the epidemic is going to far, too fast. We might also like to add \\\"legend = :right\\\" to stop it blocking things ... but we don't know where it is going  to be needed, so that would premature.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>Interactively fitting the model to data using the notebook</h2>\\n\",\n    \"\\n\",\n    \"We now interactively use the notebook, changing the values of $S(0)$, $\\\\lambda$ and $\\\\gamma$. In fact, it makes a difference what we set $I(0)$ as well, because that influences the  start of the modelled epidemic quite a bit. While in principle also $R(0)$ also matters, it is very small and hence it's influence is minimal.\\n\",\n    \"\\n\",\n    \"It turns out that we have to adjust $S(0)$ especially, and accordingly the value of $\\\\lambda$ needs to be adjusted as well.\\n\",\n    \"\\n\",\n    \"No need to write out new code, we just navigate up to the cell where the model is run and plotted, and play there.\\n\",\n    \"\\n\",\n    \"(The values of using $S(0) = 10^5$, $I(0) = 30$, $\\\\gamma = 1/8$ and $\\\\lambda = 1.47 \\\\times 10^{−6}$ were found by extensive experimentation of this kind).\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Julia 0.4.6\",\n   \"language\": \"julia\",\n   \"name\": \"julia-0.4\"\n  },\n  \"language_info\": {\n   \"file_extension\": \".jl\",\n   \"mimetype\": \"application/julia\",\n   \"name\": \"julia\",\n   \"version\": \"0.4.6\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 0\n}\n"
  },
  {
    "path": "Week3_Honors1-Types.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\n\",\n       \"<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\n\",\n       \"\\n\",\n       \"<style>\\n\",\n       \"\\n\",\n       \"@font-face {\\n\",\n       \"    font-family: \\\"Computer Modern\\\";\\n\",\n       \"    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"#notebook_panel { /* main background */\\n\",\n       \"    background: #ddd;\\n\",\n       \"    color: #000000;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"/* Formatting for header cells */\\n\",\n       \".text_cell_render h1 {\\n\",\n       \"    font-family: 'Philosopher', sans-serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 2.2em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(0, 80, 120);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \".text_cell_render h2 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    font-weight: 400;\\n\",\n       \"    font-size: 1.9em;\\n\",\n       \"    line-height: 100%;\\n\",\n       \"    color: rgb(200,100,0);\\n\",\n       \"    margin-bottom: 0.1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\t\\n\",\n       \"\\n\",\n       \".text_cell_render h3 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"    margin-top:12px;\\n\",\n       \"    margin-bottom: 3px;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    color: rgb(94,127,192);\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h4 {\\n\",\n       \"    font-family: 'Philosopher', serif;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h5 {\\n\",\n       \"    font-family: 'Alegreya Sans', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 16pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    font-style: italic;\\n\",\n       \"    margin-bottom: .1em;\\n\",\n       \"    margin-top: 0.1em;\\n\",\n       \"    display: block;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".text_cell_render h6 {\\n\",\n       \"    font-family: 'PT Mono', sans-serif;\\n\",\n       \"    font-weight: 300;\\n\",\n       \"    font-size: 10pt;\\n\",\n       \"    color: grey;\\n\",\n       \"    margin-bottom: 1px;\\n\",\n       \"    margin-top: 1px;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \".CodeMirror{\\n\",\n       \"        font-family: \\\"PT Mono\\\";\\n\",\n       \"        font-size: 100%;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"</style>\\n\",\n       \"\\n\"\n      ],\n      \"text/plain\": [\n       \"HTML{ASCIIString}(\\\"<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\\\\n<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\\\\n\\\\n<style>\\\\n\\\\n@font-face {\\\\n    font-family: \\\\\\\"Computer Modern\\\\\\\";\\\\n    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\\\\n}\\\\n\\\\n#notebook_panel { /* main background */\\\\n    background: #ddd;\\\\n    color: #000000;\\\\n}\\\\n\\\\n\\\\n\\\\n/* Formatting for header cells */\\\\n.text_cell_render h1 {\\\\n    font-family: 'Philosopher', sans-serif;\\\\n    font-weight: 400;\\\\n    font-size: 2.2em;\\\\n    line-height: 100%;\\\\n    color: rgb(0, 80, 120);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n.text_cell_render h2 {\\\\n    font-family: 'Philosopher', serif;\\\\n    font-weight: 400;\\\\n    font-size: 1.9em;\\\\n    line-height: 100%;\\\\n    color: rgb(200,100,0);\\\\n    margin-bottom: 0.1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\t\\\\n\\\\n.text_cell_render h3 {\\\\n    font-family: 'Philosopher', serif;\\\\n    margin-top:12px;\\\\n    margin-bottom: 3px;\\\\n    font-style: italic;\\\\n    color: rgb(94,127,192);\\\\n}\\\\n\\\\n.text_cell_render h4 {\\\\n    font-family: 'Philosopher', serif;\\\\n}\\\\n\\\\n.text_cell_render h5 {\\\\n    font-family: 'Alegreya Sans', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 16pt;\\\\n    color: grey;\\\\n    font-style: italic;\\\\n    margin-bottom: .1em;\\\\n    margin-top: 0.1em;\\\\n    display: block;\\\\n}\\\\n\\\\n.text_cell_render h6 {\\\\n    font-family: 'PT Mono', sans-serif;\\\\n    font-weight: 300;\\\\n    font-size: 10pt;\\\\n    color: grey;\\\\n    margin-bottom: 1px;\\\\n    margin-top: 1px;\\\\n}\\\\n\\\\n.CodeMirror{\\\\n        font-family: \\\\\\\"PT Mono\\\\\\\";\\\\n        font-size: 100%;\\\\n}\\\\n\\\\n</style>\\\\n\\\\n\\\")\"\n      ]\n     },\n     \"execution_count\": 1,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Setting up a custom stylesheet in IJulia\\n\",\n    \"file = open(\\\"style.css\\\") # A .css file in the same folder as this notebook file\\n\",\n    \"styl = readall(file) # Read the file\\n\",\n    \"HTML(\\\"$styl\\\") # Output as HTML\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Types\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<h2>In this lesson</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"- [Introduction](#Introduction)\\n\",\n    \"- [Importing the packages for this lesson](#Importing-the-packages-for-this-lesson)\\n\",\n    \"- [Outcomes](#Outcomes)\\n\",\n    \"- [The type system in Julia](#The-type-system-in-Julia)\\n\",\n    \"- [Type creation](#Type-creation)\\n\",\n    \"- [Conversion and promotion](#Convertion-and-promotion)\\n\",\n    \"- [Parametrizing a type](#Parametrizing-a-type)\\n\",\n    \"- [The equality of values](#The-equality-of-values)\\n\",\n    \"- [Defining methods for functions that will use user-types](#Defining-methods-for-functions-that-will-use-user-types)\\n\",\n    \"- [Constraining field values](#Constraining-field-values)\\n\",\n    \"- [More complex parameters](#More-complex-parameters)\\n\",\n    \"- [Screen output of a user-defined type](#Screen-output-of-a-user-defined-type)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>Introduction</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"A computer variable, which is a space in memory, holds values of different types, i.e. integers, floating point values, and strings.  In some languages the type of the value to be held inside of a variable must be explicitely declared.  These languages are termed *statically typed*.  In *dynamically typed* languages nothing is known about the type of the value held inside the variable until runtime.  Being able to write code operating on different types is termed *polymorphism*.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Julia is a dynamically typed language, yet it is possible to declare a type for values as well.  Declaring a type allows for code that is clear to understand.  As an assertion it can help to confirm that your code is working as expected.  It can also allow for faster code execution by providing the compiler with extra information.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>Outcomes</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"source\": [\n    \"After successfully completing this lecture, you will be able to:\\n\",\n    \"\\n\",\n    \"- Understand the Julia type system\\n\",\n    \"- Create your own user-defined types\\n\",\n    \"- Parametrize your types\\n\",\n    \"- Overload methods for Julia functions so that they can use your types\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>The type system in Julia</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Julia holds a type hierarchy that flows like the branches of a tree.  Right at the top we have a type called `Any`.  All types are subtypes of this type.  Right at the final tip of the branches we have concrete types.  They can hold values.  Supertypes of these concrete types are called abtsract types and they cannot hold values, i.e. we cannot create an instance of an abstract type.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can use Julia to see if types are subtypes of a supertype.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"true\"\n      ]\n     },\n     \"execution_count\": 2,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Is Number a subtype of Any?\\n\",\n    \"Number <: Any\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"true\"\n      ]\n     },\n     \"execution_count\": 3,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Is Float 64 a subtype of AbstractFloat?\\n\",\n    \"Float64 <: AbstractFloat\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"238-element Array{Any,1}:\\n\",\n       \" AbstractArray{T,N}                        \\n\",\n       \" AbstractChannel                           \\n\",\n       \" AbstractRNG                               \\n\",\n       \" AbstractString                            \\n\",\n       \" Any                                       \\n\",\n       \" Associative{K,V}                          \\n\",\n       \" Base.AbstractCmd                          \\n\",\n       \" Base.AbstractMsg                          \\n\",\n       \" Base.AbstractZipIterator                  \\n\",\n       \" Base.Cartesian.LReplace{S<:AbstractString}\\n\",\n       \" Base.Combinations{T}                      \\n\",\n       \" Base.Count{S<:Number}                     \\n\",\n       \" Base.Cycle{I}                             \\n\",\n       \" ⋮                                         \\n\",\n       \" TypeVar                                   \\n\",\n       \" Type{T}                                   \\n\",\n       \" UniformScaling{T<:Number}                 \\n\",\n       \" Val{T}                                    \\n\",\n       \" Vararg{T}                                 \\n\",\n       \" VersionNumber                             \\n\",\n       \" Void                                      \\n\",\n       \" WeakRef                                   \\n\",\n       \" WorkerConfig                              \\n\",\n       \" ZMQ.Context                               \\n\",\n       \" ZMQ.MsgPadding                            \\n\",\n       \" ZMQ.Socket                                \"\n      ]\n     },\n     \"execution_count\": 4,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# The subtypes of Any\\n\",\n    \"subtypes(Any)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"8-element Array{Any,1}:\\n\",\n       \" Base.SubstitutionString{T<:AbstractString}\\n\",\n       \" DirectIndexString                         \\n\",\n       \" RepString                                 \\n\",\n       \" RevString{T<:AbstractString}              \\n\",\n       \" RopeString                                \\n\",\n       \" SubString{T<:AbstractString}              \\n\",\n       \" UTF16String                               \\n\",\n       \" UTF8String                                \"\n      ]\n     },\n     \"execution_count\": 5,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Subtypes of AbstractString\\n\",\n    \"subtypes(AbstractString)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"2-element Array{Any,1}:\\n\",\n       \" Complex{T<:Real}\\n\",\n       \" Real            \"\n      ]\n     },\n     \"execution_count\": 6,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Subtypes of Number\\n\",\n    \"subtypes(Number)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"4-element Array{Any,1}:\\n\",\n       \" AbstractFloat       \\n\",\n       \" Integer             \\n\",\n       \" Irrational{sym}     \\n\",\n       \" Rational{T<:Integer}\"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Subtypes of Real\\n\",\n    \"subtypes(Real)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"4-element Array{Any,1}:\\n\",\n       \" BigFloat\\n\",\n       \" Float16 \\n\",\n       \" Float32 \\n\",\n       \" Float64 \"\n      ]\n     },\n     \"execution_count\": 8,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Subtypes of AbstractFloat\\n\",\n    \"subtypes(AbstractFloat)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"4-element Array{Any,1}:\\n\",\n       \" BigInt  \\n\",\n       \" Bool    \\n\",\n       \" Signed  \\n\",\n       \" Unsigned\"\n      ]\n     },\n     \"execution_count\": 9,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Subtypes of Integer\\n\",\n    \"subtypes(Integer)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"5-element Array{Any,1}:\\n\",\n       \" Int128\\n\",\n       \" Int16 \\n\",\n       \" Int32 \\n\",\n       \" Int64 \\n\",\n       \" Int8  \"\n      ]\n     },\n     \"execution_count\": 10,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Subtypes of Signed\\n\",\n    \"subtypes(Signed)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>Declaring a type</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"A type is declared by the double colon, `::`, sign.  To the left we place the value (or placeholder for a variable, i.e. a variable name) and to the right the actual type.  In the example below we want to express the fact that the value $ 2 + 2 $ is an instance of a 64-bit integer.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"4\"\n      ]\n     },\n     \"execution_count\": 11,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"(2 + 2)::Int64\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"If we typed `(2 + 2)::Float64` we would get the following error:\\n\",\n    \"```\\n\",\n    \"LoadError: TypeError: typeassert: expected Float64, got Int64\\n\",\n    \"while loading In[3], in expression starting on line 1\\n\",\n    \"```\\n\",\n    \"We used the declaration of a type as an assertion, which allowed us to see that there was something wrong with our code.  We can imagine a program where the `+()` (or a more complicated user-defined) function is called and we need the arguments to be of a certain type.  An error such as the one above can give us information about what went wrong.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Declaring a type of a local variable (inside of a function), we state that the type should always remain the same.  This is more like what would happen in a statically typed language.  It is really helpful if we want an error to be thrown should the type of a variable be changed by another part of our code.  This can lead to type instability.  It can really impact the speed of execution.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"static_local_variable (generic function with 1 method)\"\n      ]\n     },\n     \"execution_count\": 12,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Creating a function with a local variable\\n\",\n    \"function static_local_variable()\\n\",\n    \"    v::Int16 = 42\\n\",\n    \"    return v\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"42\"\n      ]\n     },\n     \"execution_count\": 13,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Calling the function\\n\",\n    \"static_local_variable()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Int16\"\n      ]\n     },\n     \"execution_count\": 14,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Checking the type of the answer just give\\n\",\n    \"typeof(ans)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Remember that `v` is local to the function.  If we try and look at it value by typing `v`, we would get the following error:\\n\",\n    \"```\\n\",\n    \"LoadError: UndefVarError: v not defined\\n\",\n    \"while loading In[7], in expression starting on line 1\\n\",\n    \"```\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Now that we know something about declaring a type, let's look at creating our own types.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>Type creation</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"As mentioned, we can create our own types.  Consider a Cartesian coordinate system along two perpendicular axes, say $ x $ and $ y $.  A vector in the plane can be represented as a type.  The keyword we use to create a type is `type`.  If we want instances of our type to be immutable, we use the keyword `immutable`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Creating a concrete type called Vector_2D\\n\",\n    \"type Vector_2D\\n\",\n    \"    x::Float64 # x is a fieldname of the type and has an optional type\\n\",\n    \"    y::Float64 # y is a fieldname of the type and has an optional type\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"This is actually a composite type, since we have fields.  For a type that is non-composite we can imagine a simple wrapper around an already defined type, such as we do below.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# A non-composite type\\n\",\n    \"type NonComposite\\n\",\n    \"    x::Float64\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"NonComposite(42.0)\"\n      ]\n     },\n     \"execution_count\": 17,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"my_non_composite = NonComposite(42)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"NonComposite\"\n      ]\n     },\n     \"execution_count\": 18,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Type\\n\",\n    \"typeof(ans)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Back to the more exciting composite types.  We can now instantiate the concrete type `Vector_2D`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Vector_2D(2.0,2.0)\"\n      ]\n     },\n     \"execution_count\": 19,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"vector_1 = Vector_2D(2, 2)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Vector_2D\"\n      ]\n     },\n     \"execution_count\": 20,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# The type of vector_1\\n\",\n    \"typeof(vector_1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Notice how we get floating point values even though we gave two integer values.  The `convert()` functions was created to change allowable values to 64-bit floating point values.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Also notice that it looks like we called a function when we typed `Vector_2D(2, 2)`.  When we define a type, constructors are created.  They allow us to create an instance of that type (sometimes referred to as an *object* of that type).\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"As with functions, we can access the methods that were created with the type.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"4-element Array{Any,1}:\\n\",\n       \" call(::Type{Vector_2D}, x::Float64, y::Float64) at In[15]:3\\n\",\n       \" call(::Type{Vector_2D}, x, y) at In[15]:3                  \\n\",\n       \" call{T}(::Type{T}, arg) at essentials.jl:56                \\n\",\n       \" call{T}(::Type{T}, args...) at essentials.jl:57            \"\n      ]\n     },\n     \"execution_count\": 21,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"methods(Vector_2D)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can also access the fieldnames and their values.  They are mutable, i.e. we can pass new values to them.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"2-element Array{Symbol,1}:\\n\",\n       \" :x\\n\",\n       \" :y\"\n      ]\n     },\n     \"execution_count\": 23,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# The available names (fields, fieldnames)\\n\",\n    \"# Note that they are of type Symbol\\n\",\n    \"fieldnames(Vector_2D)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"2.0\"\n      ]\n     },\n     \"execution_count\": 24,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Getting the value of the :x field\\n\",\n    \"vector_1.x\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"2.0\"\n      ]\n     },\n     \"execution_count\": 25,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Alternative syntax using the field's symbol representation\\n\",\n    \"getfield(vector_1, :x)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"2.0\"\n      ]\n     },\n     \"execution_count\": 26,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Another alternative notation using the index number of the fields\\n\",\n    \"getfield(vector_1, 1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 27,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3.0\"\n      ]\n     },\n     \"execution_count\": 27,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"vector_1.x = 3\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 28,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Vector_2D(3.0,2.0)\"\n      ]\n     },\n     \"execution_count\": 28,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"vector_1\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Another way to pass a value to a fieldname in a type is the `setfield()` function.  We have to use the correct type for the value.  If we use an integer such as `setfield!(vector_1, :x, 4)` we would get the follwoing error:\\n\",\n    \"```\\n\",\n    \"LoadError: TypeError: setfield!: expected Float64, got Int64\\n\",\n    \"while loading In[25], in expression starting on line 1\\n\",\n    \"```\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 29,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"4.0\"\n      ]\n     },\n     \"execution_count\": 29,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Now we have to use a floating point value\\n\",\n    \"setfield!(vector_1, :x, 4.0)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 30,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Vector_2D(4.0,2.0)\"\n      ]\n     },\n     \"execution_count\": 30,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# vector_1 has been changed\\n\",\n    \"vector_1\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>Convertion and promotion</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Before we go any further, we must have a look behind the scenes.  Above we saw that an integer was converted to a floating point value as specified for the fields of our new type.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 30,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"10.0\"\n      ]\n     },\n     \"execution_count\": 30,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Using the convert function\\n\",\n    \"convert(Float64, 10)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"If precision is lost, convertion will result in an error.  For instance, `convert(Int16, 10.1)` will return:\\n\",\n    \"```\\n\",\n    \"adError: InexactError()\\n\",\n    \"while loading In[20], in expression starting on line 1\\n\",\n    \"```\\n\",\n    \"Using `convert(Int16, 10.0)` will return a value of $ 10 $, though.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Julia has a type promotion system that will try to incorporate values into a single type.  If we pass an integer and a floating point value, the integer will be promoted to a floating point value.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 31,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(10.0,10.0)\"\n      ]\n     },\n     \"execution_count\": 31,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"promote(10, 10.0)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 32,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Int64\"\n      ]\n     },\n     \"execution_count\": 32,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"typeof(10)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 33,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Float64\"\n      ]\n     },\n     \"execution_count\": 33,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"typeof(10.0)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"This promotion to a common type lifts the lid on multiple dispatch when a function is called with unspecified argument types (i.e. `Any`).\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>Parametrizing a type</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"When creating a user type, we need not specify the type explicitely.  We could use a parameter.  Have a look at the example below.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 34,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"type Vector_3D{T}\\n\",\n    \"    x::T\\n\",\n    \"    y::T\\n\",\n    \"    z::T\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We use $ T $ as a parameter placeholder.  When we instantiate the type we can use any appropriate type, as long as all the fields values are of the same type.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 35,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Vector_3D{Int64}(10,12,8)\"\n      ]\n     },\n     \"execution_count\": 35,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Using 64 bit integers\\n\",\n    \"vector_2 = Vector_3D(10, 12, 8)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"If we were to execute `vector_2 = Vector_3D(10.1, 10, 8)`, we would get the following error:\\n\",\n    \"```\\n\",\n    \"LoadError: MethodError: `convert` has no method matching convert(::Type{Vector_3D{T}}, ::Float64, ::Int64, ::Int64)\\n\",\n    \"This may have arisen from a call to the constructor Vector_3D{T}(...),\\n\",\n    \"since type constructors fall back to convert methods.\\n\",\n    \"Closest candidates are:\\n\",\n    \"  Vector_3D{T}(::T, !Matched::T, !Matched::T)\\n\",\n    \"  call{T}(::Type{T}, ::Any)\\n\",\n    \"  convert{T}(::Type{T}, !Matched::T)\\n\",\n    \"while loading In[28], in expression starting on line 1\\n\",\n    \"```\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can constrain the parametric type.  Below we allow all subtypes of of the abstract type `Real`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 36,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"type Vector_3D_Real{T <: Real}\\n\",\n    \"    x::T\\n\",\n    \"    y::T\\n\",\n    \"    z::T\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"As an aside, we cannot redefine a type.  If we would use:\\n\",\n    \"```\\n\",\n    \"type Vector_3D{T}\\n\",\n    \"    x::T\\n\",\n    \"    y::T\\n\",\n    \"    z::T\\n\",\n    \"end\\n\",\n    \"```\\n\",\n    \"we would get the error:\\n\",\n    \"```\\n\",\n    \"LoadError: invalid redefinition of constant Vector_3D\\n\",\n    \"while loading In[98], in expression starting on line 1\\n\",\n    \"```\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 37,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Vector_3D_Real{Int64}(3,3,3)\"\n      ]\n     },\n     \"execution_count\": 37,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Creating a new instance\\n\",\n    \"vector_3 = Vector_3D_Real(3, 3, 3)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>The equality of values</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"When are two values equal?  We use a double equal sign to return a Boolean value.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 38,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"true\"\n      ]\n     },\n     \"execution_count\": 38,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Using the functional notation\\n\",\n    \"==(5, 5.0)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Numbers are immutable and are compared at the bit level.  This includes their types.  We can use the `===` sign or the `is()` function to check for equality.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 39,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"false\"\n      ]\n     },\n     \"execution_count\": 39,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"is(5, 5.0)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Where does this leave our user-defined types?  We will see below that the address in memory is checked when dealing with more complex objects such as our user-defined, composite types.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 40,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Vector_2D(1.0,1.0)\"\n      ]\n     },\n     \"execution_count\": 40,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"vector_a = Vector_2D(1.0, 1.0)\\n\",\n    \"vector_b = Vector_2D(1.0, 1.0)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 41,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"false\"\n      ]\n     },\n     \"execution_count\": 41,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"is(vector_a, vector_b)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>Defining methods for functions that will use user-types</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The summation function, `+()` has methods for adding different types.  What if we want to add two instances of our `Vector_2D` user-type?  If we were to add `vector_a` to `vector_b` we would get the following error:\\n\",\n    \"```\\n\",\n    \"LoadError: MethodError: `+` has no method matching +(::Vector_2D, ::Vector_2D)\\n\",\n    \"Closest candidates are:\\n\",\n    \"  +(::Any, ::Any, !Matched::Any, !Matched::Any...)\\n\",\n    \"```\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 43,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"171 methods for generic function <b>+</b>:<ul><li> +(x::<b>Bool</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/bool.jl#L33\\\" target=\\\"_blank\\\">bool.jl:33</a><li> +(x::<b>Bool</b>, y::<b>Bool</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/bool.jl#L36\\\" target=\\\"_blank\\\">bool.jl:36</a><li> +(y::<b>AbstractFloat</b>, x::<b>Bool</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/bool.jl#L46\\\" target=\\\"_blank\\\">bool.jl:46</a><li> +(x::<b>Int64</b>, y::<b>Int64</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/int.jl#L8\\\" target=\\\"_blank\\\">int.jl:8</a><li> +(x::<b>Int8</b>, y::<b>Int8</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/int.jl#L16\\\" target=\\\"_blank\\\">int.jl:16</a><li> +(x::<b>UInt8</b>, y::<b>UInt8</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/int.jl#L16\\\" target=\\\"_blank\\\">int.jl:16</a><li> +(x::<b>Int16</b>, y::<b>Int16</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/int.jl#L16\\\" target=\\\"_blank\\\">int.jl:16</a><li> +(x::<b>UInt16</b>, y::<b>UInt16</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/int.jl#L16\\\" target=\\\"_blank\\\">int.jl:16</a><li> +(x::<b>Int32</b>, y::<b>Int32</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/int.jl#L16\\\" target=\\\"_blank\\\">int.jl:16</a><li> +(x::<b>UInt32</b>, y::<b>UInt32</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/int.jl#L16\\\" target=\\\"_blank\\\">int.jl:16</a><li> +(x::<b>UInt64</b>, y::<b>UInt64</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/int.jl#L16\\\" target=\\\"_blank\\\">int.jl:16</a><li> +(x::<b>Int128</b>, y::<b>Int128</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/int.jl#L16\\\" target=\\\"_blank\\\">int.jl:16</a><li> +(x::<b>UInt128</b>, y::<b>UInt128</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/int.jl#L16\\\" target=\\\"_blank\\\">int.jl:16</a><li> +(x::<b>Integer</b>, y::<b>Ptr{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/pointer.jl#L77\\\" target=\\\"_blank\\\">pointer.jl:77</a><li> +(x::<b>Float32</b>, y::<b>Float32</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/float.jl#L207\\\" target=\\\"_blank\\\">float.jl:207</a><li> +(x::<b>Float64</b>, y::<b>Float64</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/float.jl#L208\\\" target=\\\"_blank\\\">float.jl:208</a><li> +(z::<b>Complex{T<:Real}</b>, w::<b>Complex{T<:Real}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/complex.jl#L111\\\" target=\\\"_blank\\\">complex.jl:111</a><li> +(x::<b>Bool</b>, z::<b>Complex{Bool}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/complex.jl#L118\\\" target=\\\"_blank\\\">complex.jl:118</a><li> +(z::<b>Complex{Bool}</b>, x::<b>Bool</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/complex.jl#L119\\\" target=\\\"_blank\\\">complex.jl:119</a><li> +(x::<b>Bool</b>, z::<b>Complex{T<:Real}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/complex.jl#L125\\\" target=\\\"_blank\\\">complex.jl:125</a><li> +(z::<b>Complex{T<:Real}</b>, x::<b>Bool</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/complex.jl#L126\\\" target=\\\"_blank\\\">complex.jl:126</a><li> +(x::<b>Real</b>, z::<b>Complex{Bool}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/complex.jl#L132\\\" target=\\\"_blank\\\">complex.jl:132</a><li> +(z::<b>Complex{Bool}</b>, x::<b>Real</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/complex.jl#L133\\\" target=\\\"_blank\\\">complex.jl:133</a><li> +(x::<b>Real</b>, z::<b>Complex{T<:Real}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/complex.jl#L144\\\" target=\\\"_blank\\\">complex.jl:144</a><li> +(z::<b>Complex{T<:Real}</b>, x::<b>Real</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/complex.jl#L145\\\" target=\\\"_blank\\\">complex.jl:145</a><li> +(x::<b>Rational{T<:Integer}</b>, y::<b>Rational{T<:Integer}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/rational.jl#L179\\\" target=\\\"_blank\\\">rational.jl:179</a><li> +(x::<b>Bool</b>, A::<b>AbstractArray{Bool,N}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/arraymath.jl#L136\\\" target=\\\"_blank\\\">arraymath.jl:136</a><li> +(x::<b>Integer</b>, y::<b>Char</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/char.jl#L43\\\" target=\\\"_blank\\\">char.jl:43</a><li> +(a::<b>Float16</b>, b::<b>Float16</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/float16.jl#L136\\\" target=\\\"_blank\\\">float16.jl:136</a><li> +(x::<b>BigInt</b>, y::<b>BigInt</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/gmp.jl#L256\\\" target=\\\"_blank\\\">gmp.jl:256</a><li> +(a::<b>BigInt</b>, b::<b>BigInt</b>, c::<b>BigInt</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/gmp.jl#L279\\\" target=\\\"_blank\\\">gmp.jl:279</a><li> +(a::<b>BigInt</b>, b::<b>BigInt</b>, c::<b>BigInt</b>, d::<b>BigInt</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/gmp.jl#L285\\\" target=\\\"_blank\\\">gmp.jl:285</a><li> +(a::<b>BigInt</b>, b::<b>BigInt</b>, c::<b>BigInt</b>, d::<b>BigInt</b>, e::<b>BigInt</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/gmp.jl#L292\\\" target=\\\"_blank\\\">gmp.jl:292</a><li> +(x::<b>BigInt</b>, c::<b>Union{UInt16,UInt32,UInt64,UInt8}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/gmp.jl#L304\\\" target=\\\"_blank\\\">gmp.jl:304</a><li> +(c::<b>Union{UInt16,UInt32,UInt64,UInt8}</b>, x::<b>BigInt</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/gmp.jl#L308\\\" target=\\\"_blank\\\">gmp.jl:308</a><li> +(x::<b>BigInt</b>, c::<b>Union{Int16,Int32,Int64,Int8}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/gmp.jl#L320\\\" target=\\\"_blank\\\">gmp.jl:320</a><li> +(c::<b>Union{Int16,Int32,Int64,Int8}</b>, x::<b>BigInt</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/gmp.jl#L321\\\" target=\\\"_blank\\\">gmp.jl:321</a><li> +(x::<b>BigFloat</b>, y::<b>BigFloat</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/mpfr.jl#L208\\\" target=\\\"_blank\\\">mpfr.jl:208</a><li> +(x::<b>BigFloat</b>, c::<b>Union{UInt16,UInt32,UInt64,UInt8}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/mpfr.jl#L215\\\" target=\\\"_blank\\\">mpfr.jl:215</a><li> +(c::<b>Union{UInt16,UInt32,UInt64,UInt8}</b>, x::<b>BigFloat</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/mpfr.jl#L219\\\" target=\\\"_blank\\\">mpfr.jl:219</a><li> +(x::<b>BigFloat</b>, c::<b>Union{Int16,Int32,Int64,Int8}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/mpfr.jl#L223\\\" target=\\\"_blank\\\">mpfr.jl:223</a><li> +(c::<b>Union{Int16,Int32,Int64,Int8}</b>, x::<b>BigFloat</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/mpfr.jl#L227\\\" target=\\\"_blank\\\">mpfr.jl:227</a><li> +(x::<b>BigFloat</b>, c::<b>Union{Float16,Float32,Float64}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/mpfr.jl#L231\\\" target=\\\"_blank\\\">mpfr.jl:231</a><li> +(c::<b>Union{Float16,Float32,Float64}</b>, x::<b>BigFloat</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/mpfr.jl#L235\\\" target=\\\"_blank\\\">mpfr.jl:235</a><li> +(x::<b>BigFloat</b>, c::<b>BigInt</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/mpfr.jl#L239\\\" target=\\\"_blank\\\">mpfr.jl:239</a><li> +(c::<b>BigInt</b>, x::<b>BigFloat</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/mpfr.jl#L243\\\" target=\\\"_blank\\\">mpfr.jl:243</a><li> +(a::<b>BigFloat</b>, b::<b>BigFloat</b>, c::<b>BigFloat</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/mpfr.jl#L379\\\" target=\\\"_blank\\\">mpfr.jl:379</a><li> +(a::<b>BigFloat</b>, b::<b>BigFloat</b>, c::<b>BigFloat</b>, d::<b>BigFloat</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/mpfr.jl#L385\\\" target=\\\"_blank\\\">mpfr.jl:385</a><li> +(a::<b>BigFloat</b>, b::<b>BigFloat</b>, c::<b>BigFloat</b>, d::<b>BigFloat</b>, e::<b>BigFloat</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/mpfr.jl#L392\\\" target=\\\"_blank\\\">mpfr.jl:392</a><li> +(x::<b>Irrational{sym}</b>, y::<b>Irrational{sym}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/irrationals.jl#L72\\\" target=\\\"_blank\\\">irrationals.jl:72</a><li> +(x::<b>Number</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/operators.jl#L73\\\" target=\\\"_blank\\\">operators.jl:73</a><li> +<i>{T<:Number}</i>(x::<b>T<:Number</b>, y::<b>T<:Number</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/promotion.jl#L211\\\" target=\\\"_blank\\\">promotion.jl:211</a><li> +<i>{T<:AbstractFloat}</i>(x::<b>Bool</b>, y::<b>T<:AbstractFloat</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/bool.jl#L43\\\" target=\\\"_blank\\\">bool.jl:43</a><li> +(x::<b>Number</b>, y::<b>Number</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/promotion.jl#L167\\\" target=\\\"_blank\\\">promotion.jl:167</a><li> +(r1::<b>OrdinalRange{T,S}</b>, r2::<b>OrdinalRange{T,S}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/operators.jl#L330\\\" target=\\\"_blank\\\">operators.jl:330</a><li> +<i>{T<:AbstractFloat}</i>(r1::<b>FloatRange{T<:AbstractFloat}</b>, r2::<b>FloatRange{T<:AbstractFloat}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/operators.jl#L337\\\" target=\\\"_blank\\\">operators.jl:337</a><li> +<i>{T<:AbstractFloat}</i>(r1::<b>LinSpace{T<:AbstractFloat}</b>, r2::<b>LinSpace{T<:AbstractFloat}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/operators.jl#L356\\\" target=\\\"_blank\\\">operators.jl:356</a><li> +(r1::<b>Union{FloatRange{T<:AbstractFloat},LinSpace{T<:AbstractFloat},OrdinalRange{T,S}}</b>, r2::<b>Union{FloatRange{T<:AbstractFloat},LinSpace{T<:AbstractFloat},OrdinalRange{T,S}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/operators.jl#L369\\\" target=\\\"_blank\\\">operators.jl:369</a><li> +(x::<b>Ptr{T}</b>, y::<b>Integer</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/pointer.jl#L75\\\" target=\\\"_blank\\\">pointer.jl:75</a><li> +<i>{S,T}</i>(A::<b>Range{S}</b>, B::<b>Range{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/arraymath.jl#L69\\\" target=\\\"_blank\\\">arraymath.jl:69</a><li> +<i>{S,T}</i>(A::<b>Range{S}</b>, B::<b>AbstractArray{T,N}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/arraymath.jl#L87\\\" target=\\\"_blank\\\">arraymath.jl:87</a><li> +(A::<b>BitArray{N}</b>, B::<b>BitArray{N}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/bitarray.jl#L859\\\" target=\\\"_blank\\\">bitarray.jl:859</a><li> +<i>{T}</i>(B::<b>BitArray{2}</b>, J::<b>UniformScaling{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/uniformscaling.jl#L28\\\" target=\\\"_blank\\\">linalg/uniformscaling.jl:28</a><li> +(A::<b>Array{T,2}</b>, B::<b>Diagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L122\\\" target=\\\"_blank\\\">linalg/special.jl:122</a><li> +(A::<b>Array{T,2}</b>, B::<b>Bidiagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L122\\\" target=\\\"_blank\\\">linalg/special.jl:122</a><li> +(A::<b>Array{T,2}</b>, B::<b>Tridiagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L122\\\" target=\\\"_blank\\\">linalg/special.jl:122</a><li> +(A::<b>Array{T,2}</b>, B::<b>SymTridiagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L131\\\" target=\\\"_blank\\\">linalg/special.jl:131</a><li> +(A::<b>Array{T,2}</b>, B::<b>Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L159\\\" target=\\\"_blank\\\">linalg/special.jl:159</a><li> +(A::<b>Array{T,N}</b>, B::<b>SparseMatrixCSC{Tv,Ti<:Integer}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/sparse/sparsematrix.jl#L1019\\\" target=\\\"_blank\\\">sparse/sparsematrix.jl:1019</a><li> +<i>{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period}}</i>(x::<b>Union{DenseArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N},SubArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/periods.jl#L221\\\" target=\\\"_blank\\\">dates/periods.jl:221</a><li> +(A::<b>AbstractArray{Bool,N}</b>, x::<b>Bool</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/arraymath.jl#L135\\\" target=\\\"_blank\\\">arraymath.jl:135</a><li> +(A::<b>Union{DenseArray{Bool,N},SubArray{Bool,N,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}</b>, B::<b>Union{DenseArray{Bool,N},SubArray{Bool,N,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/arraymath.jl#L166\\\" target=\\\"_blank\\\">arraymath.jl:166</a><li> +(A::<b>SymTridiagonal{T}</b>, B::<b>SymTridiagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/tridiag.jl#L84\\\" target=\\\"_blank\\\">linalg/tridiag.jl:84</a><li> +(A::<b>Tridiagonal{T}</b>, B::<b>Tridiagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/tridiag.jl#L404\\\" target=\\\"_blank\\\">linalg/tridiag.jl:404</a><li> +(A::<b>UpperTriangular{T,S<:AbstractArray{T,2}}</b>, B::<b>UpperTriangular{T,S<:AbstractArray{T,2}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/triangular.jl#L347\\\" target=\\\"_blank\\\">linalg/triangular.jl:347</a><li> +(A::<b>LowerTriangular{T,S<:AbstractArray{T,2}}</b>, B::<b>LowerTriangular{T,S<:AbstractArray{T,2}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/triangular.jl#L348\\\" target=\\\"_blank\\\">linalg/triangular.jl:348</a><li> +(A::<b>UpperTriangular{T,S<:AbstractArray{T,2}}</b>, B::<b>Base.LinAlg.UnitUpperTriangular{T,S<:AbstractArray{T,2}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/triangular.jl#L349\\\" target=\\\"_blank\\\">linalg/triangular.jl:349</a><li> +(A::<b>LowerTriangular{T,S<:AbstractArray{T,2}}</b>, B::<b>Base.LinAlg.UnitLowerTriangular{T,S<:AbstractArray{T,2}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/triangular.jl#L350\\\" target=\\\"_blank\\\">linalg/triangular.jl:350</a><li> +(A::<b>Base.LinAlg.UnitUpperTriangular{T,S<:AbstractArray{T,2}}</b>, B::<b>UpperTriangular{T,S<:AbstractArray{T,2}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/triangular.jl#L351\\\" target=\\\"_blank\\\">linalg/triangular.jl:351</a><li> +(A::<b>Base.LinAlg.UnitLowerTriangular{T,S<:AbstractArray{T,2}}</b>, B::<b>LowerTriangular{T,S<:AbstractArray{T,2}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/triangular.jl#L352\\\" target=\\\"_blank\\\">linalg/triangular.jl:352</a><li> +(A::<b>Base.LinAlg.UnitUpperTriangular{T,S<:AbstractArray{T,2}}</b>, B::<b>Base.LinAlg.UnitUpperTriangular{T,S<:AbstractArray{T,2}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/triangular.jl#L353\\\" target=\\\"_blank\\\">linalg/triangular.jl:353</a><li> +(A::<b>Base.LinAlg.UnitLowerTriangular{T,S<:AbstractArray{T,2}}</b>, B::<b>Base.LinAlg.UnitLowerTriangular{T,S<:AbstractArray{T,2}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/triangular.jl#L354\\\" target=\\\"_blank\\\">linalg/triangular.jl:354</a><li> +(A::<b>Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}</b>, B::<b>Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/triangular.jl#L355\\\" target=\\\"_blank\\\">linalg/triangular.jl:355</a><li> +(Da::<b>Diagonal{T}</b>, Db::<b>Diagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/diagonal.jl#L86\\\" target=\\\"_blank\\\">linalg/diagonal.jl:86</a><li> +(A::<b>Bidiagonal{T}</b>, B::<b>Bidiagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/bidiag.jl#L176\\\" target=\\\"_blank\\\">linalg/bidiag.jl:176</a><li> +(UL::<b>UpperTriangular{T,S<:AbstractArray{T,2}}</b>, J::<b>UniformScaling{T<:Number}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/uniformscaling.jl#L45\\\" target=\\\"_blank\\\">linalg/uniformscaling.jl:45</a><li> +(UL::<b>Base.LinAlg.UnitUpperTriangular{T,S<:AbstractArray{T,2}}</b>, J::<b>UniformScaling{T<:Number}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/uniformscaling.jl#L48\\\" target=\\\"_blank\\\">linalg/uniformscaling.jl:48</a><li> +(UL::<b>LowerTriangular{T,S<:AbstractArray{T,2}}</b>, J::<b>UniformScaling{T<:Number}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/uniformscaling.jl#L45\\\" target=\\\"_blank\\\">linalg/uniformscaling.jl:45</a><li> +(UL::<b>Base.LinAlg.UnitLowerTriangular{T,S<:AbstractArray{T,2}}</b>, J::<b>UniformScaling{T<:Number}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/uniformscaling.jl#L48\\\" target=\\\"_blank\\\">linalg/uniformscaling.jl:48</a><li> +(A::<b>Diagonal{T}</b>, B::<b>Bidiagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L121\\\" target=\\\"_blank\\\">linalg/special.jl:121</a><li> +(A::<b>Bidiagonal{T}</b>, B::<b>Diagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L122\\\" target=\\\"_blank\\\">linalg/special.jl:122</a><li> +(A::<b>Diagonal{T}</b>, B::<b>Tridiagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L121\\\" target=\\\"_blank\\\">linalg/special.jl:121</a><li> +(A::<b>Tridiagonal{T}</b>, B::<b>Diagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L122\\\" target=\\\"_blank\\\">linalg/special.jl:122</a><li> +(A::<b>Diagonal{T}</b>, B::<b>Array{T,2}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L121\\\" target=\\\"_blank\\\">linalg/special.jl:121</a><li> +(A::<b>Bidiagonal{T}</b>, B::<b>Tridiagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L121\\\" target=\\\"_blank\\\">linalg/special.jl:121</a><li> +(A::<b>Tridiagonal{T}</b>, B::<b>Bidiagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L122\\\" target=\\\"_blank\\\">linalg/special.jl:122</a><li> +(A::<b>Bidiagonal{T}</b>, B::<b>Array{T,2}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L121\\\" target=\\\"_blank\\\">linalg/special.jl:121</a><li> +(A::<b>Tridiagonal{T}</b>, B::<b>Array{T,2}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L121\\\" target=\\\"_blank\\\">linalg/special.jl:121</a><li> +(A::<b>SymTridiagonal{T}</b>, B::<b>Tridiagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L130\\\" target=\\\"_blank\\\">linalg/special.jl:130</a><li> +(A::<b>Tridiagonal{T}</b>, B::<b>SymTridiagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L131\\\" target=\\\"_blank\\\">linalg/special.jl:131</a><li> +(A::<b>SymTridiagonal{T}</b>, B::<b>Array{T,2}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L130\\\" target=\\\"_blank\\\">linalg/special.jl:130</a><li> +(A::<b>Diagonal{T}</b>, B::<b>SymTridiagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L139\\\" target=\\\"_blank\\\">linalg/special.jl:139</a><li> +(A::<b>SymTridiagonal{T}</b>, B::<b>Diagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L140\\\" target=\\\"_blank\\\">linalg/special.jl:140</a><li> +(A::<b>Bidiagonal{T}</b>, B::<b>SymTridiagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L139\\\" target=\\\"_blank\\\">linalg/special.jl:139</a><li> +(A::<b>SymTridiagonal{T}</b>, B::<b>Bidiagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L140\\\" target=\\\"_blank\\\">linalg/special.jl:140</a><li> +(A::<b>Diagonal{T}</b>, B::<b>UpperTriangular{T,S<:AbstractArray{T,2}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L151\\\" target=\\\"_blank\\\">linalg/special.jl:151</a><li> +(A::<b>UpperTriangular{T,S<:AbstractArray{T,2}}</b>, B::<b>Diagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L152\\\" target=\\\"_blank\\\">linalg/special.jl:152</a><li> +(A::<b>Diagonal{T}</b>, B::<b>Base.LinAlg.UnitUpperTriangular{T,S<:AbstractArray{T,2}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L151\\\" target=\\\"_blank\\\">linalg/special.jl:151</a><li> +(A::<b>Base.LinAlg.UnitUpperTriangular{T,S<:AbstractArray{T,2}}</b>, B::<b>Diagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L152\\\" target=\\\"_blank\\\">linalg/special.jl:152</a><li> +(A::<b>Diagonal{T}</b>, B::<b>LowerTriangular{T,S<:AbstractArray{T,2}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L151\\\" target=\\\"_blank\\\">linalg/special.jl:151</a><li> +(A::<b>LowerTriangular{T,S<:AbstractArray{T,2}}</b>, B::<b>Diagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L152\\\" target=\\\"_blank\\\">linalg/special.jl:152</a><li> +(A::<b>Diagonal{T}</b>, B::<b>Base.LinAlg.UnitLowerTriangular{T,S<:AbstractArray{T,2}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L151\\\" target=\\\"_blank\\\">linalg/special.jl:151</a><li> +(A::<b>Base.LinAlg.UnitLowerTriangular{T,S<:AbstractArray{T,2}}</b>, B::<b>Diagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L152\\\" target=\\\"_blank\\\">linalg/special.jl:152</a><li> +(A::<b>Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}</b>, B::<b>SymTridiagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L158\\\" target=\\\"_blank\\\">linalg/special.jl:158</a><li> +(A::<b>SymTridiagonal{T}</b>, B::<b>Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L159\\\" target=\\\"_blank\\\">linalg/special.jl:159</a><li> +(A::<b>Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}</b>, B::<b>Tridiagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L158\\\" target=\\\"_blank\\\">linalg/special.jl:158</a><li> +(A::<b>Tridiagonal{T}</b>, B::<b>Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L159\\\" target=\\\"_blank\\\">linalg/special.jl:159</a><li> +(A::<b>Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}</b>, B::<b>Bidiagonal{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L158\\\" target=\\\"_blank\\\">linalg/special.jl:158</a><li> +(A::<b>Bidiagonal{T}</b>, B::<b>Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L159\\\" target=\\\"_blank\\\">linalg/special.jl:159</a><li> +(A::<b>Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}</b>, B::<b>Array{T,2}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/special.jl#L158\\\" target=\\\"_blank\\\">linalg/special.jl:158</a><li> +<i>{Tv1,Ti1,Tv2,Ti2}</i>(A_1::<b>SparseMatrixCSC{Tv1,Ti1}</b>, A_2::<b>SparseMatrixCSC{Tv2,Ti2}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/sparse/sparsematrix.jl#L1005\\\" target=\\\"_blank\\\">sparse/sparsematrix.jl:1005</a><li> +(A::<b>SparseMatrixCSC{Tv,Ti<:Integer}</b>, B::<b>Array{T,N}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/sparse/sparsematrix.jl#L1017\\\" target=\\\"_blank\\\">sparse/sparsematrix.jl:1017</a><li> +(A::<b>SparseMatrixCSC{Tv,Ti<:Integer}</b>, J::<b>UniformScaling{T<:Number}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/sparse/sparsematrix.jl#L3030\\\" target=\\\"_blank\\\">sparse/sparsematrix.jl:3030</a><li> +<i>{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period}}</i>(Y::<b>Union{DenseArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N},SubArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}</b>, x::<b>Union{Base.Dates.CompoundPeriod,Base.Dates.Period}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/periods.jl#L235\\\" target=\\\"_blank\\\">dates/periods.jl:235</a><li> +<i>{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},Q<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period}}</i>(X::<b>Union{DenseArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N},SubArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}</b>, Y::<b>Union{DenseArray{Q<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N},SubArray{Q<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/periods.jl#L236\\\" target=\\\"_blank\\\">dates/periods.jl:236</a><li> +<i>{T<:Base.Dates.TimeType,P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period}}</i>(x::<b>Union{DenseArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N},SubArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}</b>, y::<b>T<:Base.Dates.TimeType</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/arithmetic.jl#L83\\\" target=\\\"_blank\\\">dates/arithmetic.jl:83</a><li> +<i>{T<:Base.Dates.TimeType}</i>(r::<b>Range{T<:Base.Dates.TimeType}</b>, x::<b>Base.Dates.Period</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/ranges.jl#L39\\\" target=\\\"_blank\\\">dates/ranges.jl:39</a><li> +<i>{T<:Number}</i>(x::<b>AbstractArray{T<:Number,N}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/abstractarraymath.jl#L49\\\" target=\\\"_blank\\\">abstractarraymath.jl:49</a><li> +<i>{S,T}</i>(A::<b>AbstractArray{S,N}</b>, B::<b>Range{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/arraymath.jl#L78\\\" target=\\\"_blank\\\">arraymath.jl:78</a><li> +<i>{S,T}</i>(A::<b>AbstractArray{S,N}</b>, B::<b>AbstractArray{T,N}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/arraymath.jl#L96\\\" target=\\\"_blank\\\">arraymath.jl:96</a><li> +(A::<b>AbstractArray{T,N}</b>, x::<b>Number</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/arraymath.jl#L139\\\" target=\\\"_blank\\\">arraymath.jl:139</a><li> +(x::<b>Number</b>, A::<b>AbstractArray{T,N}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/arraymath.jl#L140\\\" target=\\\"_blank\\\">arraymath.jl:140</a><li> +(x::<b>Char</b>, y::<b>Integer</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/char.jl#L42\\\" target=\\\"_blank\\\">char.jl:42</a><li> +<i>{N}</i>(index1::<b>CartesianIndex{N}</b>, index2::<b>CartesianIndex{N}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/multidimensional.jl#L42\\\" target=\\\"_blank\\\">multidimensional.jl:42</a><li> +(J1::<b>UniformScaling{T<:Number}</b>, J2::<b>UniformScaling{T<:Number}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/uniformscaling.jl#L27\\\" target=\\\"_blank\\\">linalg/uniformscaling.jl:27</a><li> +(J::<b>UniformScaling{T<:Number}</b>, B::<b>BitArray{2}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/uniformscaling.jl#L29\\\" target=\\\"_blank\\\">linalg/uniformscaling.jl:29</a><li> +(J::<b>UniformScaling{T<:Number}</b>, A::<b>AbstractArray{T,2}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/uniformscaling.jl#L30\\\" target=\\\"_blank\\\">linalg/uniformscaling.jl:30</a><li> +(J::<b>UniformScaling{T<:Number}</b>, x::<b>Number</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/uniformscaling.jl#L31\\\" target=\\\"_blank\\\">linalg/uniformscaling.jl:31</a><li> +(x::<b>Number</b>, J::<b>UniformScaling{T<:Number}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/uniformscaling.jl#L32\\\" target=\\\"_blank\\\">linalg/uniformscaling.jl:32</a><li> +<i>{TA,TJ}</i>(A::<b>AbstractArray{TA,2}</b>, J::<b>UniformScaling{TJ}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/linalg/uniformscaling.jl#L92\\\" target=\\\"_blank\\\">linalg/uniformscaling.jl:92</a><li> +<i>{T}</i>(a::<b>Base.Pkg.Resolve.VersionWeights.HierarchicalValue{T}</b>, b::<b>Base.Pkg.Resolve.VersionWeights.HierarchicalValue{T}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/pkg/resolve/versionweight.jl#L23\\\" target=\\\"_blank\\\">pkg/resolve/versionweight.jl:23</a><li> +(a::<b>Base.Pkg.Resolve.VersionWeights.VWPreBuildItem</b>, b::<b>Base.Pkg.Resolve.VersionWeights.VWPreBuildItem</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/pkg/resolve/versionweight.jl#L85\\\" target=\\\"_blank\\\">pkg/resolve/versionweight.jl:85</a><li> +(a::<b>Base.Pkg.Resolve.VersionWeights.VWPreBuild</b>, b::<b>Base.Pkg.Resolve.VersionWeights.VWPreBuild</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/pkg/resolve/versionweight.jl#L131\\\" target=\\\"_blank\\\">pkg/resolve/versionweight.jl:131</a><li> +(a::<b>Base.Pkg.Resolve.VersionWeights.VersionWeight</b>, b::<b>Base.Pkg.Resolve.VersionWeights.VersionWeight</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/pkg/resolve/versionweight.jl#L185\\\" target=\\\"_blank\\\">pkg/resolve/versionweight.jl:185</a><li> +(a::<b>Base.Pkg.Resolve.MaxSum.FieldValues.FieldValue</b>, b::<b>Base.Pkg.Resolve.MaxSum.FieldValues.FieldValue</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/pkg/resolve/fieldvalue.jl#L44\\\" target=\\\"_blank\\\">pkg/resolve/fieldvalue.jl:44</a><li> +<i>{P<:Base.Dates.Period}</i>(x::<b>P<:Base.Dates.Period</b>, y::<b>P<:Base.Dates.Period</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/periods.jl#L62\\\" target=\\\"_blank\\\">dates/periods.jl:62</a><li> +(x::<b>Base.Dates.Period</b>, y::<b>Base.Dates.Period</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/periods.jl#L209\\\" target=\\\"_blank\\\">dates/periods.jl:209</a><li> +(x::<b>Base.Dates.CompoundPeriod</b>, y::<b>Base.Dates.Period</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/periods.jl#L210\\\" target=\\\"_blank\\\">dates/periods.jl:210</a><li> +(y::<b>Base.Dates.Period</b>, x::<b>Base.Dates.CompoundPeriod</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/periods.jl#L211\\\" target=\\\"_blank\\\">dates/periods.jl:211</a><li> +(x::<b>Base.Dates.CompoundPeriod</b>, y::<b>Base.Dates.CompoundPeriod</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/periods.jl#L212\\\" target=\\\"_blank\\\">dates/periods.jl:212</a><li> +(x::<b>Base.Dates.CompoundPeriod</b>, y::<b>Base.Dates.TimeType</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/periods.jl#L257\\\" target=\\\"_blank\\\">dates/periods.jl:257</a><li> +(y::<b>Base.Dates.Period</b>, x::<b>Base.Dates.TimeType</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/arithmetic.jl#L66\\\" target=\\\"_blank\\\">dates/arithmetic.jl:66</a><li> +<i>{T<:Base.Dates.TimeType}</i>(x::<b>Base.Dates.Period</b>, r::<b>Range{T<:Base.Dates.TimeType}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/ranges.jl#L40\\\" target=\\\"_blank\\\">dates/ranges.jl:40</a><li> +(x::<b>Union{Base.Dates.CompoundPeriod,Base.Dates.Period}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/periods.jl#L220\\\" target=\\\"_blank\\\">dates/periods.jl:220</a><li> +<i>{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period}}</i>(x::<b>Union{Base.Dates.CompoundPeriod,Base.Dates.Period}</b>, Y::<b>Union{DenseArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N},SubArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/periods.jl#L234\\\" target=\\\"_blank\\\">dates/periods.jl:234</a><li> +(dt::<b>DateTime</b>, y::<b>Base.Dates.Year</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/arithmetic.jl#L13\\\" target=\\\"_blank\\\">dates/arithmetic.jl:13</a><li> +(dt::<b>Date</b>, y::<b>Base.Dates.Year</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/arithmetic.jl#L17\\\" target=\\\"_blank\\\">dates/arithmetic.jl:17</a><li> +(dt::<b>DateTime</b>, z::<b>Base.Dates.Month</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/arithmetic.jl#L37\\\" target=\\\"_blank\\\">dates/arithmetic.jl:37</a><li> +(dt::<b>Date</b>, z::<b>Base.Dates.Month</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/arithmetic.jl#L43\\\" target=\\\"_blank\\\">dates/arithmetic.jl:43</a><li> +(x::<b>Date</b>, y::<b>Base.Dates.Week</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/arithmetic.jl#L60\\\" target=\\\"_blank\\\">dates/arithmetic.jl:60</a><li> +(x::<b>Date</b>, y::<b>Base.Dates.Day</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/arithmetic.jl#L62\\\" target=\\\"_blank\\\">dates/arithmetic.jl:62</a><li> +(x::<b>DateTime</b>, y::<b>Base.Dates.Period</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/arithmetic.jl#L64\\\" target=\\\"_blank\\\">dates/arithmetic.jl:64</a><li> +(x::<b>Base.Dates.TimeType</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/arithmetic.jl#L8\\\" target=\\\"_blank\\\">dates/arithmetic.jl:8</a><li> +(a::<b>Base.Dates.TimeType</b>, b::<b>Base.Dates.Period</b>, c::<b>Base.Dates.Period</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/periods.jl#L246\\\" target=\\\"_blank\\\">dates/periods.jl:246</a><li> +(a::<b>Base.Dates.TimeType</b>, b::<b>Base.Dates.Period</b>, c::<b>Base.Dates.Period</b>, d::<b>Base.Dates.Period...</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/periods.jl#L248\\\" target=\\\"_blank\\\">dates/periods.jl:248</a><li> +(x::<b>Base.Dates.TimeType</b>, y::<b>Base.Dates.CompoundPeriod</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/periods.jl#L252\\\" target=\\\"_blank\\\">dates/periods.jl:252</a><li> +(x::<b>Base.Dates.Instant</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/arithmetic.jl#L4\\\" target=\\\"_blank\\\">dates/arithmetic.jl:4</a><li> +<i>{T<:Base.Dates.TimeType}</i>(x::<b>AbstractArray{T<:Base.Dates.TimeType,N}</b>, y::<b>Union{Base.Dates.CompoundPeriod,Base.Dates.Period}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/arithmetic.jl#L76\\\" target=\\\"_blank\\\">dates/arithmetic.jl:76</a><li> +<i>{T<:Base.Dates.TimeType}</i>(y::<b>Union{Base.Dates.CompoundPeriod,Base.Dates.Period}</b>, x::<b>AbstractArray{T<:Base.Dates.TimeType,N}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/arithmetic.jl#L77\\\" target=\\\"_blank\\\">dates/arithmetic.jl:77</a><li> +<i>{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period}}</i>(y::<b>Base.Dates.TimeType</b>, x::<b>Union{DenseArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N},SubArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}</b>) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/dates/arithmetic.jl#L84\\\" target=\\\"_blank\\\">dates/arithmetic.jl:84</a><li> +(a, b, c, xs...) at <a href=\\\"https://github.com/JuliaLang/julia/tree/2e358ce975029ec97aba5994c17d4a2169c3b085/base/operators.jl#L103\\\" target=\\\"_blank\\\">operators.jl:103</a></ul>\"\n      ],\n      \"text/plain\": [\n       \"# 171 methods for generic function \\\"+\\\":\\n\",\n       \"+(x::Bool) at bool.jl:33\\n\",\n       \"+(x::Bool, y::Bool) at bool.jl:36\\n\",\n       \"+(y::AbstractFloat, x::Bool) at bool.jl:46\\n\",\n       \"+(x::Int64, y::Int64) at int.jl:8\\n\",\n       \"+(x::Int8, y::Int8) at int.jl:16\\n\",\n       \"+(x::UInt8, y::UInt8) at int.jl:16\\n\",\n       \"+(x::Int16, y::Int16) at int.jl:16\\n\",\n       \"+(x::UInt16, y::UInt16) at int.jl:16\\n\",\n       \"+(x::Int32, y::Int32) at int.jl:16\\n\",\n       \"+(x::UInt32, y::UInt32) at int.jl:16\\n\",\n       \"+(x::UInt64, y::UInt64) at int.jl:16\\n\",\n       \"+(x::Int128, y::Int128) at int.jl:16\\n\",\n       \"+(x::UInt128, y::UInt128) at int.jl:16\\n\",\n       \"+(x::Integer, y::Ptr{T}) at pointer.jl:77\\n\",\n       \"+(x::Float32, y::Float32) at float.jl:207\\n\",\n       \"+(x::Float64, y::Float64) at float.jl:208\\n\",\n       \"+(z::Complex{T<:Real}, w::Complex{T<:Real}) at complex.jl:111\\n\",\n       \"+(x::Bool, z::Complex{Bool}) at complex.jl:118\\n\",\n       \"+(z::Complex{Bool}, x::Bool) at complex.jl:119\\n\",\n       \"+(x::Bool, z::Complex{T<:Real}) at complex.jl:125\\n\",\n       \"+(z::Complex{T<:Real}, x::Bool) at complex.jl:126\\n\",\n       \"+(x::Real, z::Complex{Bool}) at complex.jl:132\\n\",\n       \"+(z::Complex{Bool}, x::Real) at complex.jl:133\\n\",\n       \"+(x::Real, z::Complex{T<:Real}) at complex.jl:144\\n\",\n       \"+(z::Complex{T<:Real}, x::Real) at complex.jl:145\\n\",\n       \"+(x::Rational{T<:Integer}, y::Rational{T<:Integer}) at rational.jl:179\\n\",\n       \"+(x::Bool, A::AbstractArray{Bool,N}) at arraymath.jl:136\\n\",\n       \"+(x::Integer, y::Char) at char.jl:43\\n\",\n       \"+(a::Float16, b::Float16) at float16.jl:136\\n\",\n       \"+(x::BigInt, y::BigInt) at gmp.jl:256\\n\",\n       \"+(a::BigInt, b::BigInt, c::BigInt) at gmp.jl:279\\n\",\n       \"+(a::BigInt, b::BigInt, c::BigInt, d::BigInt) at gmp.jl:285\\n\",\n       \"+(a::BigInt, b::BigInt, c::BigInt, d::BigInt, e::BigInt) at gmp.jl:292\\n\",\n       \"+(x::BigInt, c::Union{UInt16,UInt32,UInt64,UInt8}) at gmp.jl:304\\n\",\n       \"+(c::Union{UInt16,UInt32,UInt64,UInt8}, x::BigInt) at gmp.jl:308\\n\",\n       \"+(x::BigInt, c::Union{Int16,Int32,Int64,Int8}) at gmp.jl:320\\n\",\n       \"+(c::Union{Int16,Int32,Int64,Int8}, x::BigInt) at gmp.jl:321\\n\",\n       \"+(x::BigFloat, y::BigFloat) at mpfr.jl:208\\n\",\n       \"+(x::BigFloat, c::Union{UInt16,UInt32,UInt64,UInt8}) at mpfr.jl:215\\n\",\n       \"+(c::Union{UInt16,UInt32,UInt64,UInt8}, x::BigFloat) at mpfr.jl:219\\n\",\n       \"+(x::BigFloat, c::Union{Int16,Int32,Int64,Int8}) at mpfr.jl:223\\n\",\n       \"+(c::Union{Int16,Int32,Int64,Int8}, x::BigFloat) at mpfr.jl:227\\n\",\n       \"+(x::BigFloat, c::Union{Float16,Float32,Float64}) at mpfr.jl:231\\n\",\n       \"+(c::Union{Float16,Float32,Float64}, x::BigFloat) at mpfr.jl:235\\n\",\n       \"+(x::BigFloat, c::BigInt) at mpfr.jl:239\\n\",\n       \"+(c::BigInt, x::BigFloat) at mpfr.jl:243\\n\",\n       \"+(a::BigFloat, b::BigFloat, c::BigFloat) at mpfr.jl:379\\n\",\n       \"+(a::BigFloat, b::BigFloat, c::BigFloat, d::BigFloat) at mpfr.jl:385\\n\",\n       \"+(a::BigFloat, b::BigFloat, c::BigFloat, d::BigFloat, e::BigFloat) at mpfr.jl:392\\n\",\n       \"+(x::Irrational{sym}, y::Irrational{sym}) at irrationals.jl:72\\n\",\n       \"+(x::Number) at operators.jl:73\\n\",\n       \"+{T<:Number}(x::T<:Number, y::T<:Number) at promotion.jl:211\\n\",\n       \"+{T<:AbstractFloat}(x::Bool, y::T<:AbstractFloat) at bool.jl:43\\n\",\n       \"+(x::Number, y::Number) at promotion.jl:167\\n\",\n       \"+(r1::OrdinalRange{T,S}, r2::OrdinalRange{T,S}) at operators.jl:330\\n\",\n       \"+{T<:AbstractFloat}(r1::FloatRange{T<:AbstractFloat}, r2::FloatRange{T<:AbstractFloat}) at operators.jl:337\\n\",\n       \"+{T<:AbstractFloat}(r1::LinSpace{T<:AbstractFloat}, r2::LinSpace{T<:AbstractFloat}) at operators.jl:356\\n\",\n       \"+(r1::Union{FloatRange{T<:AbstractFloat},LinSpace{T<:AbstractFloat},OrdinalRange{T,S}}, r2::Union{FloatRange{T<:AbstractFloat},LinSpace{T<:AbstractFloat},OrdinalRange{T,S}}) at operators.jl:369\\n\",\n       \"+(x::Ptr{T}, y::Integer) at pointer.jl:75\\n\",\n       \"+{S,T}(A::Range{S}, B::Range{T}) at arraymath.jl:69\\n\",\n       \"+{S,T}(A::Range{S}, B::AbstractArray{T,N}) at arraymath.jl:87\\n\",\n       \"+(A::BitArray{N}, B::BitArray{N}) at bitarray.jl:859\\n\",\n       \"+{T}(B::BitArray{2}, J::UniformScaling{T}) at linalg/uniformscaling.jl:28\\n\",\n       \"+(A::Array{T,2}, B::Diagonal{T}) at linalg/special.jl:122\\n\",\n       \"+(A::Array{T,2}, B::Bidiagonal{T}) at linalg/special.jl:122\\n\",\n       \"+(A::Array{T,2}, B::Tridiagonal{T}) at linalg/special.jl:122\\n\",\n       \"+(A::Array{T,2}, B::SymTridiagonal{T}) at linalg/special.jl:131\\n\",\n       \"+(A::Array{T,2}, B::Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}) at linalg/special.jl:159\\n\",\n       \"+(A::Array{T,N}, B::SparseMatrixCSC{Tv,Ti<:Integer}) at sparse/sparsematrix.jl:1019\\n\",\n       \"+{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period}}(x::Union{DenseArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N},SubArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}) at dates/periods.jl:221\\n\",\n       \"+(A::AbstractArray{Bool,N}, x::Bool) at arraymath.jl:135\\n\",\n       \"+(A::Union{DenseArray{Bool,N},SubArray{Bool,N,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}, B::Union{DenseArray{Bool,N},SubArray{Bool,N,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}) at arraymath.jl:166\\n\",\n       \"+(A::SymTridiagonal{T}, B::SymTridiagonal{T}) at linalg/tridiag.jl:84\\n\",\n       \"+(A::Tridiagonal{T}, B::Tridiagonal{T}) at linalg/tridiag.jl:404\\n\",\n       \"+(A::UpperTriangular{T,S<:AbstractArray{T,2}}, B::UpperTriangular{T,S<:AbstractArray{T,2}}) at linalg/triangular.jl:347\\n\",\n       \"+(A::LowerTriangular{T,S<:AbstractArray{T,2}}, B::LowerTriangular{T,S<:AbstractArray{T,2}}) at linalg/triangular.jl:348\\n\",\n       \"+(A::UpperTriangular{T,S<:AbstractArray{T,2}}, B::Base.LinAlg.UnitUpperTriangular{T,S<:AbstractArray{T,2}}) at linalg/triangular.jl:349\\n\",\n       \"+(A::LowerTriangular{T,S<:AbstractArray{T,2}}, B::Base.LinAlg.UnitLowerTriangular{T,S<:AbstractArray{T,2}}) at linalg/triangular.jl:350\\n\",\n       \"+(A::Base.LinAlg.UnitUpperTriangular{T,S<:AbstractArray{T,2}}, B::UpperTriangular{T,S<:AbstractArray{T,2}}) at linalg/triangular.jl:351\\n\",\n       \"+(A::Base.LinAlg.UnitLowerTriangular{T,S<:AbstractArray{T,2}}, B::LowerTriangular{T,S<:AbstractArray{T,2}}) at linalg/triangular.jl:352\\n\",\n       \"+(A::Base.LinAlg.UnitUpperTriangular{T,S<:AbstractArray{T,2}}, B::Base.LinAlg.UnitUpperTriangular{T,S<:AbstractArray{T,2}}) at linalg/triangular.jl:353\\n\",\n       \"+(A::Base.LinAlg.UnitLowerTriangular{T,S<:AbstractArray{T,2}}, B::Base.LinAlg.UnitLowerTriangular{T,S<:AbstractArray{T,2}}) at linalg/triangular.jl:354\\n\",\n       \"+(A::Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}, B::Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}) at linalg/triangular.jl:355\\n\",\n       \"+(Da::Diagonal{T}, Db::Diagonal{T}) at linalg/diagonal.jl:86\\n\",\n       \"+(A::Bidiagonal{T}, B::Bidiagonal{T}) at linalg/bidiag.jl:176\\n\",\n       \"+(UL::UpperTriangular{T,S<:AbstractArray{T,2}}, J::UniformScaling{T<:Number}) at linalg/uniformscaling.jl:45\\n\",\n       \"+(UL::Base.LinAlg.UnitUpperTriangular{T,S<:AbstractArray{T,2}}, J::UniformScaling{T<:Number}) at linalg/uniformscaling.jl:48\\n\",\n       \"+(UL::LowerTriangular{T,S<:AbstractArray{T,2}}, J::UniformScaling{T<:Number}) at linalg/uniformscaling.jl:45\\n\",\n       \"+(UL::Base.LinAlg.UnitLowerTriangular{T,S<:AbstractArray{T,2}}, J::UniformScaling{T<:Number}) at linalg/uniformscaling.jl:48\\n\",\n       \"+(A::Diagonal{T}, B::Bidiagonal{T}) at linalg/special.jl:121\\n\",\n       \"+(A::Bidiagonal{T}, B::Diagonal{T}) at linalg/special.jl:122\\n\",\n       \"+(A::Diagonal{T}, B::Tridiagonal{T}) at linalg/special.jl:121\\n\",\n       \"+(A::Tridiagonal{T}, B::Diagonal{T}) at linalg/special.jl:122\\n\",\n       \"+(A::Diagonal{T}, B::Array{T,2}) at linalg/special.jl:121\\n\",\n       \"+(A::Bidiagonal{T}, B::Tridiagonal{T}) at linalg/special.jl:121\\n\",\n       \"+(A::Tridiagonal{T}, B::Bidiagonal{T}) at linalg/special.jl:122\\n\",\n       \"+(A::Bidiagonal{T}, B::Array{T,2}) at linalg/special.jl:121\\n\",\n       \"+(A::Tridiagonal{T}, B::Array{T,2}) at linalg/special.jl:121\\n\",\n       \"+(A::SymTridiagonal{T}, B::Tridiagonal{T}) at linalg/special.jl:130\\n\",\n       \"+(A::Tridiagonal{T}, B::SymTridiagonal{T}) at linalg/special.jl:131\\n\",\n       \"+(A::SymTridiagonal{T}, B::Array{T,2}) at linalg/special.jl:130\\n\",\n       \"+(A::Diagonal{T}, B::SymTridiagonal{T}) at linalg/special.jl:139\\n\",\n       \"+(A::SymTridiagonal{T}, B::Diagonal{T}) at linalg/special.jl:140\\n\",\n       \"+(A::Bidiagonal{T}, B::SymTridiagonal{T}) at linalg/special.jl:139\\n\",\n       \"+(A::SymTridiagonal{T}, B::Bidiagonal{T}) at linalg/special.jl:140\\n\",\n       \"+(A::Diagonal{T}, B::UpperTriangular{T,S<:AbstractArray{T,2}}) at linalg/special.jl:151\\n\",\n       \"+(A::UpperTriangular{T,S<:AbstractArray{T,2}}, B::Diagonal{T}) at linalg/special.jl:152\\n\",\n       \"+(A::Diagonal{T}, B::Base.LinAlg.UnitUpperTriangular{T,S<:AbstractArray{T,2}}) at linalg/special.jl:151\\n\",\n       \"+(A::Base.LinAlg.UnitUpperTriangular{T,S<:AbstractArray{T,2}}, B::Diagonal{T}) at linalg/special.jl:152\\n\",\n       \"+(A::Diagonal{T}, B::LowerTriangular{T,S<:AbstractArray{T,2}}) at linalg/special.jl:151\\n\",\n       \"+(A::LowerTriangular{T,S<:AbstractArray{T,2}}, B::Diagonal{T}) at linalg/special.jl:152\\n\",\n       \"+(A::Diagonal{T}, B::Base.LinAlg.UnitLowerTriangular{T,S<:AbstractArray{T,2}}) at linalg/special.jl:151\\n\",\n       \"+(A::Base.LinAlg.UnitLowerTriangular{T,S<:AbstractArray{T,2}}, B::Diagonal{T}) at linalg/special.jl:152\\n\",\n       \"+(A::Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}, B::SymTridiagonal{T}) at linalg/special.jl:158\\n\",\n       \"+(A::SymTridiagonal{T}, B::Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}) at linalg/special.jl:159\\n\",\n       \"+(A::Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}, B::Tridiagonal{T}) at linalg/special.jl:158\\n\",\n       \"+(A::Tridiagonal{T}, B::Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}) at linalg/special.jl:159\\n\",\n       \"+(A::Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}, B::Bidiagonal{T}) at linalg/special.jl:158\\n\",\n       \"+(A::Bidiagonal{T}, B::Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}) at linalg/special.jl:159\\n\",\n       \"+(A::Base.LinAlg.AbstractTriangular{T,S<:AbstractArray{T,2}}, B::Array{T,2}) at linalg/special.jl:158\\n\",\n       \"+{Tv1,Ti1,Tv2,Ti2}(A_1::SparseMatrixCSC{Tv1,Ti1}, A_2::SparseMatrixCSC{Tv2,Ti2}) at sparse/sparsematrix.jl:1005\\n\",\n       \"+(A::SparseMatrixCSC{Tv,Ti<:Integer}, B::Array{T,N}) at sparse/sparsematrix.jl:1017\\n\",\n       \"+(A::SparseMatrixCSC{Tv,Ti<:Integer}, J::UniformScaling{T<:Number}) at sparse/sparsematrix.jl:3030\\n\",\n       \"+{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period}}(Y::Union{DenseArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N},SubArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}, x::Union{Base.Dates.CompoundPeriod,Base.Dates.Period}) at dates/periods.jl:235\\n\",\n       \"+{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},Q<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period}}(X::Union{DenseArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N},SubArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}, Y::Union{DenseArray{Q<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N},SubArray{Q<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}) at dates/periods.jl:236\\n\",\n       \"+{T<:Base.Dates.TimeType,P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period}}(x::Union{DenseArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N},SubArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}, y::T<:Base.Dates.TimeType) at dates/arithmetic.jl:83\\n\",\n       \"+{T<:Base.Dates.TimeType}(r::Range{T<:Base.Dates.TimeType}, x::Base.Dates.Period) at dates/ranges.jl:39\\n\",\n       \"+{T<:Number}(x::AbstractArray{T<:Number,N}) at abstractarraymath.jl:49\\n\",\n       \"+{S,T}(A::AbstractArray{S,N}, B::Range{T}) at arraymath.jl:78\\n\",\n       \"+{S,T}(A::AbstractArray{S,N}, B::AbstractArray{T,N}) at arraymath.jl:96\\n\",\n       \"+(A::AbstractArray{T,N}, x::Number) at arraymath.jl:139\\n\",\n       \"+(x::Number, A::AbstractArray{T,N}) at arraymath.jl:140\\n\",\n       \"+(x::Char, y::Integer) at char.jl:42\\n\",\n       \"+{N}(index1::CartesianIndex{N}, index2::CartesianIndex{N}) at multidimensional.jl:42\\n\",\n       \"+(J1::UniformScaling{T<:Number}, J2::UniformScaling{T<:Number}) at linalg/uniformscaling.jl:27\\n\",\n       \"+(J::UniformScaling{T<:Number}, B::BitArray{2}) at linalg/uniformscaling.jl:29\\n\",\n       \"+(J::UniformScaling{T<:Number}, A::AbstractArray{T,2}) at linalg/uniformscaling.jl:30\\n\",\n       \"+(J::UniformScaling{T<:Number}, x::Number) at linalg/uniformscaling.jl:31\\n\",\n       \"+(x::Number, J::UniformScaling{T<:Number}) at linalg/uniformscaling.jl:32\\n\",\n       \"+{TA,TJ}(A::AbstractArray{TA,2}, J::UniformScaling{TJ}) at linalg/uniformscaling.jl:92\\n\",\n       \"+{T}(a::Base.Pkg.Resolve.VersionWeights.HierarchicalValue{T}, b::Base.Pkg.Resolve.VersionWeights.HierarchicalValue{T}) at pkg/resolve/versionweight.jl:23\\n\",\n       \"+(a::Base.Pkg.Resolve.VersionWeights.VWPreBuildItem, b::Base.Pkg.Resolve.VersionWeights.VWPreBuildItem) at pkg/resolve/versionweight.jl:85\\n\",\n       \"+(a::Base.Pkg.Resolve.VersionWeights.VWPreBuild, b::Base.Pkg.Resolve.VersionWeights.VWPreBuild) at pkg/resolve/versionweight.jl:131\\n\",\n       \"+(a::Base.Pkg.Resolve.VersionWeights.VersionWeight, b::Base.Pkg.Resolve.VersionWeights.VersionWeight) at pkg/resolve/versionweight.jl:185\\n\",\n       \"+(a::Base.Pkg.Resolve.MaxSum.FieldValues.FieldValue, b::Base.Pkg.Resolve.MaxSum.FieldValues.FieldValue) at pkg/resolve/fieldvalue.jl:44\\n\",\n       \"+{P<:Base.Dates.Period}(x::P<:Base.Dates.Period, y::P<:Base.Dates.Period) at dates/periods.jl:62\\n\",\n       \"+(x::Base.Dates.Period, y::Base.Dates.Period) at dates/periods.jl:209\\n\",\n       \"+(x::Base.Dates.CompoundPeriod, y::Base.Dates.Period) at dates/periods.jl:210\\n\",\n       \"+(y::Base.Dates.Period, x::Base.Dates.CompoundPeriod) at dates/periods.jl:211\\n\",\n       \"+(x::Base.Dates.CompoundPeriod, y::Base.Dates.CompoundPeriod) at dates/periods.jl:212\\n\",\n       \"+(x::Base.Dates.CompoundPeriod, y::Base.Dates.TimeType) at dates/periods.jl:257\\n\",\n       \"+(y::Base.Dates.Period, x::Base.Dates.TimeType) at dates/arithmetic.jl:66\\n\",\n       \"+{T<:Base.Dates.TimeType}(x::Base.Dates.Period, r::Range{T<:Base.Dates.TimeType}) at dates/ranges.jl:40\\n\",\n       \"+(x::Union{Base.Dates.CompoundPeriod,Base.Dates.Period}) at dates/periods.jl:220\\n\",\n       \"+{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period}}(x::Union{Base.Dates.CompoundPeriod,Base.Dates.Period}, Y::Union{DenseArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N},SubArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}) at dates/periods.jl:234\\n\",\n       \"+(dt::DateTime, y::Base.Dates.Year) at dates/arithmetic.jl:13\\n\",\n       \"+(dt::Date, y::Base.Dates.Year) at dates/arithmetic.jl:17\\n\",\n       \"+(dt::DateTime, z::Base.Dates.Month) at dates/arithmetic.jl:37\\n\",\n       \"+(dt::Date, z::Base.Dates.Month) at dates/arithmetic.jl:43\\n\",\n       \"+(x::Date, y::Base.Dates.Week) at dates/arithmetic.jl:60\\n\",\n       \"+(x::Date, y::Base.Dates.Day) at dates/arithmetic.jl:62\\n\",\n       \"+(x::DateTime, y::Base.Dates.Period) at dates/arithmetic.jl:64\\n\",\n       \"+(x::Base.Dates.TimeType) at dates/arithmetic.jl:8\\n\",\n       \"+(a::Base.Dates.TimeType, b::Base.Dates.Period, c::Base.Dates.Period) at dates/periods.jl:246\\n\",\n       \"+(a::Base.Dates.TimeType, b::Base.Dates.Period, c::Base.Dates.Period, d::Base.Dates.Period...) at dates/periods.jl:248\\n\",\n       \"+(x::Base.Dates.TimeType, y::Base.Dates.CompoundPeriod) at dates/periods.jl:252\\n\",\n       \"+(x::Base.Dates.Instant) at dates/arithmetic.jl:4\\n\",\n       \"+{T<:Base.Dates.TimeType}(x::AbstractArray{T<:Base.Dates.TimeType,N}, y::Union{Base.Dates.CompoundPeriod,Base.Dates.Period}) at dates/arithmetic.jl:76\\n\",\n       \"+{T<:Base.Dates.TimeType}(y::Union{Base.Dates.CompoundPeriod,Base.Dates.Period}, x::AbstractArray{T<:Base.Dates.TimeType,N}) at dates/arithmetic.jl:77\\n\",\n       \"+{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period}}(y::Base.Dates.TimeType, x::Union{DenseArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N},SubArray{P<:Union{Base.Dates.CompoundPeriod,Base.Dates.Period},N,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}) at dates/arithmetic.jl:84\\n\",\n       \"+(a, b, c, xs...) at operators.jl:103\"\n      ]\n     },\n     \"execution_count\": 43,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Base methods for the +() function\\n\",\n    \"methods(+)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We have to create a method.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 44,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import Base.+\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 45,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"+ (generic function with 172 methods)\"\n      ]\n     },\n     \"execution_count\": 45,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"+(u::Vector_2D, v::Vector_2D) = Vector_2D(u.x + v.x, u.y + v.y)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 46,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Vector_2D(2.0,2.0)\"\n      ]\n     },\n     \"execution_count\": 46,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"+(vector_a, vector_b)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>Constraining field values</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can well imagine needing to constain the values that a type can hold.  Below we create the Bloodpressure type with two fields that hold integer values.  They cannot be negative and the systolic blood pressure must be higher than the diastolic blood pressure.  We solve this problem by creating an inner constructor.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 47,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"type BloodPressure\\n\",\n    \"    # Don't leave as Any\\n\",\n    \"    systolic::Int16\\n\",\n    \"    diastolic::Int16\\n\",\n    \"    function BloodPressure(s, d)\\n\",\n    \"        # Using short-circuit evaluations && and ||\\n\",\n    \"        s < 0 && throw(ArgumentError(\\\"Negative pressures are not allowed!\\\"))\\n\",\n    \"        s <= d && throw(ArgumentError(\\\"The systolic blood pressure must be higher than the diastolic blood pressure!\\\"))\\n\",\n    \"        isa(s, Integer) || throw(ArgumentError(\\\"Only integer values allowed!\\\"))\\n\",\n    \"        isa(d, Integer) || throw(ArgumentError(\\\"Only integer values allowed!\\\"))\\n\",\n    \"        new(s, d)\\n\",\n    \"    end\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 48,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"BloodPressure(120,80)\"\n      ]\n     },\n     \"execution_count\": 48,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"bp_1 = BloodPressure(120, 80)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Using `bp_2 = BloodPressure(-1, 90)` will result in the error:\\n\",\n    \"```\\n\",\n    \"LoadError: ArgumentError: Negative pressures are not allowed!\\n\",\n    \"while loading In[32], in expression starting on line 1\\n\",\n    \"```\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Using `bp_2 = BloodPressure(80, 120)` will result in the error:\\n\",\n    \"```\\n\",\n    \"LoadError: ArgumentError: The systolic blood pressure must be higher than the diastolic blood pressure\\n\",\n    \"while loading In[56], in expression starting on line 1\\n\",\n    \"```\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Using `bp_2 = BloodPressure(120.0, 80)` will result in the error:\\n\",\n    \"```\\n\",\n    \"LoadError: ArgumentError: Only integer values allowed!\\n\",\n    \"while loading In[95], in expression starting on line 1\\n\",\n    \"```\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Beware.  Using inner constructors with parametrized types can lead to problems.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 49,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"type BloodPressureParametrized{T <: Real}\\n\",\n    \"    # Don't leave as Any\\n\",\n    \"    systolic::T\\n\",\n    \"    diastolic::T\\n\",\n    \"    function BloodPressureParametrized(s, d)\\n\",\n    \"        s < 0 && throw(ArgumentError(\\\"Negative pressures are not allowed!\\\"))\\n\",\n    \"        s <= d && throw(ArgumentError(\\\"The systolic blood pressure must be higher than the diastolic blood pressure!\\\"))\\n\",\n    \"        isa(s, Integer) || throw(ArgumentError(\\\"Only integer values allowed!\\\"))\\n\",\n    \"        isa(d, Integer) || throw(ArgumentError(\\\"Only integer values allowed!\\\"))\\n\",\n    \"        new(s, d)\\n\",\n    \"    end\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Using `bp_3 = BloodPressureParametrized(120, 80)` will result in the error;\\n\",\n    \"```\\n\",\n    \"LoadError: MethodError: `convert` has no method matching convert(::Type{BloodPressureParametrized{T<:Real}}, ::Int64, ::Int64)\\n\",\n    \"This may have arisen from a call to the constructor BloodPressureParametrized{T<:Real}(...),\\n\",\n    \"since type constructors fall back to convert methods.\\n\",\n    \"Closest candidates are:\\n\",\n    \"  call{T}(::Type{T}, ::Any)\\n\",\n    \"  convert{T}(::Type{T}, !Matched::T)\\n\",\n    \"while loading In[102], in expression starting on line 1\\n\",\n    \"\\n\",\n    \" in call at essentials.jl:57\\n\",\n    \" ```\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Now we have to specify the type during the instantiation.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 50,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"BloodPressureParametrized{Int64}(120,80)\"\n      ]\n     },\n     \"execution_count\": 50,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"bp_3 = BloodPressureParametrized{Int}(120, 80)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 51,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"type BloodPressureParametrizedFixed{T <: Real}\\n\",\n    \"    systolic::T\\n\",\n    \"    diastolic::T\\n\",\n    \"    function BloodPressureParametrizedFixed(s, d)\\n\",\n    \"        s < 0 && throw(ArgumentError(\\\"Negative pressures are not allowed!\\\"))\\n\",\n    \"        s <= d && throw(ArgumentError(\\\"The systolic blood pressure must be higher than the diastolic blood pressure!\\\"))\\n\",\n    \"        new(s, d)\\n\",\n    \"    end\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can fix this by the assignment below.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 52,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"BloodPressureParametrizedFixed{T<:Real}\"\n      ]\n     },\n     \"execution_count\": 52,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# A bit of an effort\\n\",\n    \"BloodPressureParametrizedFixed{T}(systolic::T, diastolic::T) = BloodPressureParametrizedFixed{T}(systolic, diastolic)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 53,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"BloodPressureParametrizedFixed{Int64}(120,80)\"\n      ]\n     },\n     \"execution_count\": 53,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"bp_4 = BloodPressureParametrizedFixed(120, 80)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can get way more specific.  In the code below we tell Julia that if we pass integers to the type, they should be expressed as floating point values.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 54,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"BloodPressureParametrizedFixed{T<:Real}\"\n      ]\n     },\n     \"execution_count\": 54,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"BloodPressureParametrizedFixed{T <: Int}(systolic::T, diastolic::T) = BloodPressureParametrizedFixed{Float64}(systolic, diastolic)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 55,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"BloodPressureParametrizedFixed{Float64}(120.0,80.0)\"\n      ]\n     },\n     \"execution_count\": 55,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"bp_5 = BloodPressureParametrizedFixed(120, 80)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>More complex parameters</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Up until now we have constrained ourselves to a single parameter.  It is possible, though, to create more than one.  Below we create a type called `Relook`.  It has one fieldname called `duration`, which must be of subtype, `Real`.  There is also a second parameter.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 56,\n   \"metadata\": {\n    \"collapsed\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"type Relook{N, T<:Real}\\n\",\n    \"    duration::T\\n\",\n    \"end\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Using `patient_1 = Relook(3, 60)` will result in the error:\\n\",\n    \"```\\n\",\n    \"LoadError: MethodError: `convert` has no method matching convert(::Type{Relook{N,T}}, ::Int64, ::Int64)\\n\",\n    \"This may have arisen from a call to the constructor Relook{N,T}(...),\\n\",\n    \"since type constructors fall back to convert methods.\\n\",\n    \"Closest candidates are:\\n\",\n    \"  call{T}(::Type{T}, ::Any)\\n\",\n    \"  convert{T}(::Type{T}, !Matched::T)\\n\",\n    \"while loading In[175], in expression starting on line 1\\n\",\n    \"\\n\",\n    \" in call at essentials.jl:57\\n\",\n    \"```\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 57,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Relook{4,Int16}(60)\"\n      ]\n     },\n     \"execution_count\": 57,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# We have to specify the type of the second parameter\\n\",\n    \"patient_1 = Relook{4, Int16}(60)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 58,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"60\"\n      ]\n     },\n     \"execution_count\": 58,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"patient_1.duration\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We now want to add only objects (instances) with the same value in the first parameter.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 59,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"+ (generic function with 173 methods)\"\n      ]\n     },\n     \"execution_count\": 59,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"+{N, T}(u::Relook{N, T}, v::Relook{N, T}) = Relook{N, T}(u.duration + v.duration)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 60,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Relook{4,Int16}(70)\"\n      ]\n     },\n     \"execution_count\": 60,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"patient_2 = Relook{4, Int16}(70)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 61,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Relook{4,Int16}(130)\"\n      ]\n     },\n     \"execution_count\": 61,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"patient_1 + patient_2\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 62,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Relook{3,Int16}(70)\"\n      ]\n     },\n     \"execution_count\": 62,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"patient_3 = Relook{3, Int16}(70)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Using `patient_1 + patient_3` will now result in the error:\\n\",\n    \"```LoadError: MethodError: `+` has no method matching +(::Relook{4,Int16}, ::Relook{3,Int16})\\n\",\n    \"Closest candidates are:\\n\",\n    \"  +(::Any, ::Any, !Matched::Any, !Matched::Any...)\\n\",\n    \"  +{N,T}(::Relook{N,T}, !Matched::Relook{N,T})\\n\",\n    \"while loading In[191], in expression starting on line 1\\n\",\n    \"```\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 63,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Relook{4.0,Int16}(70)\"\n      ]\n     },\n     \"execution_count\": 63,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"patient_4 = Relook{4.0, Int16}(70)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Using `patient_1 + patient_4` will also result in an error, because the types of `N` do not match.  The error would be:\\n\",\n    \"```\\n\",\n    \"LoadError: MethodError: `+` has no method matching +(::Relook{4,Int16}, ::Relook{4.0,Int16})\\n\",\n    \"Closest candidates are:\\n\",\n    \"  +(::Any, ::Any, !Matched::Any, !Matched::Any...)\\n\",\n    \"  +{N,T}(::Relook{N,T}, !Matched::Relook{N,T})\\n\",\n    \"  +{N,T1,T2}(::Relook{N,T1}, !Matched::Relook{N,T2})\\n\",\n    \"while loading In[210], in expression starting on line 1\\n\",\n    \"```\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Below we fix the fieldname type mismatch.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 64,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"+ (generic function with 174 methods)\"\n      ]\n     },\n     \"execution_count\": 64,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"+{N, T1, T2}(u::Relook{N, T1}, v::Relook{N, T2}) = Relook{N, promote_type(T1, T2)}(u.duration + v.duration)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 65,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Relook{4,Float64}(60.0)\"\n      ]\n     },\n     \"execution_count\": 65,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"patient_5 = Relook{4, Float64}(60)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 66,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Relook{4,Float64}(120.0)\"\n      ]\n     },\n     \"execution_count\": 66,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# N = 4 for both patient_1 and patient_5\\n\",\n    \"# T for patient_1 is Int16 and T for patient_2 is Float64\\n\",\n    \"patient_1 + patient_5\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"If we want to throw an error if the number of relooks are not equal when trying to add to obejcts of the `Relook` type, we can do the following.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 67,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"+ (generic function with 175 methods)\"\n      ]\n     },\n     \"execution_count\": 67,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"+{N1, N2, T}(u::Relook{N1, T}, v::Relook{N2, T}) = \\n\",\n    \"throw(ArgumentError(\\\"Cannot add durations when the number of relooks do not match.\\\"))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Using `patient_1 + patient_3` will now result in the error:\\n\",\n    \"```\\n\",\n    \"LoadError: ArgumentError: Cannot add durations when the number of relooks do not match.\\n\",\n    \"while loading In[237], in expression starting on line 1\\n\",\n    \"\\n\",\n    \" in + at In[236]:1\\n\",\n    \"```\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"What about calculating the natural logarithm of the duration of a `Relook` object?  We could just specify the field name.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 68,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"4.0943445622221\"\n      ]\n     },\n     \"execution_count\": 68,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"log(patient_1.duration)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Better still, we could specify wat the `log` function actually does with a `Relook` object.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 69,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import Base.log\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 70,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"log (generic function with 20 methods)\"\n      ]\n     },\n     \"execution_count\": 70,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"log(u::Relook) = log(u.duration)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 71,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"4.0943445622221\"\n      ]\n     },\n     \"execution_count\": 71,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"log(patient_1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can specify a `convert` method that will convert all our `Relook` objects to numerical values which we can pass to Julia functions.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 72,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import Base.convert\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 73,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"convert (generic function with 538 methods)\"\n      ]\n     },\n     \"execution_count\": 73,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# The float() function tries to convert a value to a floating point value\\n\",\n    \"convert(::Type{AbstractFloat}, u::Relook) = float(u.duration)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 74,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"1.7781512503836436\"\n      ]\n     },\n     \"execution_count\": 74,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Covreting our Relook object and passing it to log10()\\n\",\n    \"log10(convert(AbstractFloat, patient_1))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<hr>\\n\",\n    \"<h2>Screen output of a user-defined type</h2>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can create some meaning to our types by the way an object of the type is represented on the screen.  Above we just saw two values we instantiation our type `Relook`.  Let's change that a bit by overloading the `show` function.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 75,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import Base.show\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 76,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"show (generic function with 107 methods)\"\n      ]\n     },\n     \"execution_count\": 76,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"show{N, T}(io::IO, u::Relook{N, T}) = print(io, \\\"Patient with \\\", N, \\\" relook procedures totalling \\\", u.duration,\\n\",\n    \"\\\" minutes.\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 77,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Patient with 4 relook procedures totalling 60 minutes.\"\n      ]\n     },\n     \"execution_count\": 77,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"patient_6 = Relook{4, Int16}(60)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"source\": [\n    \"[Back to the top](#In-this-lesson)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"anaconda-cloud\": {},\n  \"kernelspec\": {\n   \"display_name\": \"Julia 0.4.6\",\n   \"language\": \"julia\",\n   \"name\": \"julia-0.4\"\n  },\n  \"language_info\": {\n   \"file_extension\": \".jl\",\n   \"mimetype\": \"application/julia\",\n   \"name\": \"julia\",\n   \"version\": \"0.4.6\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 0\n}\n"
  },
  {
    "path": "Working with data_using_v_1.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Working with data\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## In this lecture\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"- [Introduction](#Introduction)\\n\",\n    \"- [Distributions](#Distributions)\\n\",\n    \"- [Normal distribution](#Normal-distribution)\\n\",\n    \"- [Other distributions](#Other-distributions)\\n\",\n    \"- [DataFrames](#DataFrames)\\n\",\n    \"    - [Combining dataframes](#Combining-dataframes)\\n\",\n    \"    - [Grouping](#Grouping)\\n\",\n    \"    - [Sorting](#Sorting)\\n\",\n    \"    - [Unique rows only](#Unique-rows-only)\\n\",\n    \"    - [Deleting rows](#Deleting-rows)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Introduction\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The ability to use data is fundamental to most modern computer coding taks.  In this lecture, we will have a brief introduction to the way in which the Julia language incorporates data through the use of the `Distributions.jl` and `DataFrames.jl` packages.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Distributions\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Data point values for a distribution usually follow a pattern.  Such patterns are called distributions.  Distributions are either discrete or continuous.  The `Distribution.jl` package contains most of the common data distributions.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We will also use the `Random.jl` package to seed the pseudo-random number generator so that we can reproduce the random values that we are going to use in the lecture.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"using Distributions\\n\",\n    \"using Random\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### The normal distribution\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The normal distribution is the famous bell-shaped curve that we are familiar with.  Values around the mean occur most frequently and as values get progressively further away from the mean, they occur less frequently.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(0.0, 1.0)\"\n      ]\n     },\n     \"execution_count\": 2,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#Seed the pseudo-random number generator\\n\",\n    \"Random.seed!(1234)\\n\",\n    \"#Saving the standard normal distribution as an object\\n\",\n    \"n = Distributions.Normal()  # This function is from the Distributions package\\n\",\n    \"#Parameter values of the standard normal distribution\\n\",\n    \"params(n)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Using the `params()` function, we note a mean on $0$ and a standard deviation of $1$, also called the _standard normal distribution_.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The `fieldnames()` function provides the actual parameters of the given distribution.  In the case of the normal distribution, it will be the average and the standard deviation, namely $\\\\mu$ and $\\\\sigma$.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(:μ, :σ)\"\n      ]\n     },\n     \"execution_count\": 3,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Returning the parameters of the normal distribution\\n\",\n    \"fieldnames(Normal)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Now we create a variable called `var1` and use the `rand()` function to create select $10$ random values from the standard normal distribution.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"#Seed the pseudo-random number generator\\n\",\n    \"Random.seed!(1234)\\n\",\n    \"#Select 10 elements at random from n\\n\",\n    \"var1 = rand(n, 10);\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can calculate the average and standard deviation of our randomly selected values.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.18909179133831322\"\n      ]\n     },\n     \"execution_count\": 5,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Average\\n\",\n    \"mean(var1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.9879593623730926\"\n      ]\n     },\n     \"execution_count\": 6,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Standard deviation\\n\",\n    \"std(var1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The `pdf()` calculates the probability density function value of a given distribution up until a specified point (from $- \\\\infty$).\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.38138781546052414\"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#Probability density function value at x = 0.3\\n\",\n    \"pdf(Normal(), 0.3)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The `cdf()` functions calculates the cummulative distribution function value of a given distribution up until a specified point (from $- \\\\infty$).\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.5987063256829237\"\n      ]\n     },\n     \"execution_count\": 8,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#Cumulative distribution function as x = 0.25\\n\",\n    \"cdf(Normal(), 0.25)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The values for the average and standard deviation can be specified.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Creating 100 data point values from a normal distribution\\n\",\n    \"# with a mean of 100 and a standard deviation of 10\\n\",\n    \"Random.seed!(1234)\\n\",\n    \"var2 = rand(Normal(100, 10), 100);\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 53,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"98.52365657772843\"\n      ]\n     },\n     \"execution_count\": 53,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Calculating the mean of var2\\n\",\n    \"mean(var2)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 54,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"9.580963685859091\"\n      ]\n     },\n     \"execution_count\": 54,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#Calculating the standard deviation of var2\\n\",\n    \"std(var2)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The parameters of a set of values for a specified distribution can be returned.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Normal{Float64}(μ=98.52365657772843, σ=9.532938502804532)\"\n      ]\n     },\n     \"execution_count\": 11,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#Using fit() to calculate the parameters of a distribution\\n\",\n    \"fit(Normal, var2)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The `quantiles()` function provides us with values for the specific percentiles (provided as fractions).  Below we calculate the $2.5$% and $97.5$% percentile values of the standard normal distribution.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"-1.9599639845400592\"\n      ]\n     },\n     \"execution_count\": 12,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Quantiles\\n\",\n    \"quantile(Normal(), 0.025)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"1.9599639845400583\"\n      ]\n     },\n     \"execution_count\": 13,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"quantile(Normal(), 0.975)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Other distributions\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"There are many distributions in the `Distribution().jl` package. In the code below, a few of these are showcased by way of setting parameters, selecting random values, and fitting those value back to the distribution or returning the parameter field names.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Beta{Float64}(α=1.2367211599273937, β=1.1368118923305865)\"\n      ]\n     },\n     \"execution_count\": 14,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Beta distribution\\n\",\n    \"b = Beta(1, 1)\\n\",\n    \"params(b)\\n\",\n    \"Random.seed!(1234)\\n\",\n    \"var3 = rand(b, 100);\\n\",\n    \"fit(Beta, var3)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(:ν,)\"\n      ]\n     },\n     \"execution_count\": 15,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# χ2 distribution\\n\",\n    \"c = Chisq(1)\\n\",\n    \"Random.seed!(1234)\\n\",\n    \"var4 = rand(c, 100)\\n\",\n    \"fieldnames(Chisq) # Degrees of freedom\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Dataframes\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The `Dataframes.jl` package allows for creation of a flat data structure (rows and columns).  Columns are variables and rows are subjects (examples).\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"using DataFrames\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Below, we create an empty dataframe object that we call `df`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"#Create and empty DataFrame\\n\",\n    \"df = DataFrame();\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Column headers representing statistical variable names are entered in square brackets as symbols, i.e. preceeded with a colon.  We will attach the `var2` set of values as data point entries for this statistical variables.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Add a column with data point values (rows)\\n\",\n    \"df[:Var2] = var2;\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can specify to print the first $5$ rows to the screen with the `first()` function,\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<table class=\\\"data-frame\\\"><thead><tr><th></th><th>Var2</th></tr><tr><th></th><th>Float64</th></tr></thead><tbody><p>5 rows × 1 columns</p><tr><th>1</th><td>108.673</td></tr><tr><th>2</th><td>90.9826</td></tr><tr><th>3</th><td>95.0552</td></tr><tr><th>4</th><td>90.9709</td></tr><tr><th>5</th><td>108.644</td></tr></tbody></table>\"\n      ],\n      \"text/latex\": [\n       \"\\\\begin{tabular}{r|c}\\n\",\n       \"\\t& Var2\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t& Float64\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t1 & 108.673 \\\\\\\\\\n\",\n       \"\\t2 & 90.9826 \\\\\\\\\\n\",\n       \"\\t3 & 95.0552 \\\\\\\\\\n\",\n       \"\\t4 & 90.9709 \\\\\\\\\\n\",\n       \"\\t5 & 108.644 \\\\\\\\\\n\",\n       \"\\\\end{tabular}\\n\"\n      ],\n      \"text/plain\": [\n       \"5×1 DataFrame\\n\",\n       \"│ Row │ Var2    │\\n\",\n       \"│     │ \\u001b[90mFloat64\\u001b[39m │\\n\",\n       \"├─────┼─────────┤\\n\",\n       \"│ 1   │ 108.673 │\\n\",\n       \"│ 2   │ 90.9826 │\\n\",\n       \"│ 3   │ 95.0552 │\\n\",\n       \"│ 4   │ 90.9709 │\\n\",\n       \"│ 5   │ 108.644 │\"\n      ]\n     },\n     \"execution_count\": 19,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#View first five rows\\n\",\n    \"first(df, 5)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Below, we create another statistical variable with some data point values that we already have in the waiting.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Add another column\\n\",\n    \"df[:Var3] = var3;\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The `last()` functions shows the last specified rows.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<table class=\\\"data-frame\\\"><thead><tr><th></th><th>Var2</th><th>Var3</th></tr><tr><th></th><th>Float64</th><th>Float64</th></tr></thead><tbody><p>3 rows × 2 columns</p><tr><th>1</th><td>95.5675</td><td>0.831916</td></tr><tr><th>2</th><td>83.3677</td><td>0.221771</td></tr><tr><th>3</th><td>94.7877</td><td>0.655592</td></tr></tbody></table>\"\n      ],\n      \"text/latex\": [\n       \"\\\\begin{tabular}{r|cc}\\n\",\n       \"\\t& Var2 & Var3\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t& Float64 & Float64\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t1 & 95.5675 & 0.831916 \\\\\\\\\\n\",\n       \"\\t2 & 83.3677 & 0.221771 \\\\\\\\\\n\",\n       \"\\t3 & 94.7877 & 0.655592 \\\\\\\\\\n\",\n       \"\\\\end{tabular}\\n\"\n      ],\n      \"text/plain\": [\n       \"3×2 DataFrame\\n\",\n       \"│ Row │ Var2    │ Var3     │\\n\",\n       \"│     │ \\u001b[90mFloat64\\u001b[39m │ \\u001b[90mFloat64\\u001b[39m  │\\n\",\n       \"├─────┼─────────┼──────────┤\\n\",\n       \"│ 1   │ 95.5675 │ 0.831916 │\\n\",\n       \"│ 2   │ 83.3677 │ 0.221771 │\\n\",\n       \"│ 3   │ 94.7877 │ 0.655592 │\"\n      ]\n     },\n     \"execution_count\": 21,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# View last three rows\\n\",\n    \"last(df, 3)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The `size()` function returns a tuple with the number of rows and columns returned,\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(100, 2)\"\n      ]\n     },\n     \"execution_count\": 22,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Dimensions of a DataFrame\\n\",\n    \"size(df)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The `describe()` functions attemps tp provide summary statistics of the variables>\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<table class=\\\"data-frame\\\"><thead><tr><th></th><th>variable</th><th>mean</th><th>min</th><th>median</th><th>max</th><th>nunique</th><th>nmissing</th><th>eltype</th></tr><tr><th></th><th>Symbol</th><th>Float64</th><th>Float64</th><th>Float64</th><th>Float64</th><th>Nothing</th><th>Nothing</th><th>DataType</th></tr></thead><tbody><p>2 rows × 8 columns</p><tr><th>1</th><td>Var2</td><td>98.5237</td><td>67.8864</td><td>98.1718</td><td>124.175</td><td></td><td></td><td>Float64</td></tr><tr><th>2</th><td>Var3</td><td>0.521047</td><td>0.00145384</td><td>0.522808</td><td>0.971161</td><td></td><td></td><td>Float64</td></tr></tbody></table>\"\n      ],\n      \"text/latex\": [\n       \"\\\\begin{tabular}{r|cccccccc}\\n\",\n       \"\\t& variable & mean & min & median & max & nunique & nmissing & eltype\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t& Symbol & Float64 & Float64 & Float64 & Float64 & Nothing & Nothing & DataType\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t1 & Var2 & 98.5237 & 67.8864 & 98.1718 & 124.175 &  &  & Float64 \\\\\\\\\\n\",\n       \"\\t2 & Var3 & 0.521047 & 0.00145384 & 0.522808 & 0.971161 &  &  & Float64 \\\\\\\\\\n\",\n       \"\\\\end{tabular}\\n\"\n      ],\n      \"text/plain\": [\n       \"2×8 DataFrame. Omitted printing of 2 columns\\n\",\n       \"│ Row │ variable │ mean     │ min        │ median   │ max      │ nunique │\\n\",\n       \"│     │ \\u001b[90mSymbol\\u001b[39m   │ \\u001b[90mFloat64\\u001b[39m  │ \\u001b[90mFloat64\\u001b[39m    │ \\u001b[90mFloat64\\u001b[39m  │ \\u001b[90mFloat64\\u001b[39m  │ \\u001b[90mNothing\\u001b[39m │\\n\",\n       \"├─────┼──────────┼──────────┼────────────┼──────────┼──────────┼─────────┤\\n\",\n       \"│ 1   │ Var2     │ 98.5237  │ 67.8864    │ 98.1718  │ 124.175  │         │\\n\",\n       \"│ 2   │ Var3     │ 0.521047 │ 0.00145384 │ 0.522808 │ 0.971161 │         │\"\n      ]\n     },\n     \"execution_count\": 23,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Summarize the content\\n\",\n    \"describe(df)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The data type for each variable can be returned.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"2-element Array{DataType,1}:\\n\",\n       \" Float64\\n\",\n       \" Float64\"\n      ]\n     },\n     \"execution_count\": 24,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Data type only\\n\",\n    \"eltypes(df)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Below we create a new instance of a dataframe object called `df2`.  It contains four statistical variables.  Note the use of symbol notation in creating the names of these variables.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# 6 Create a bigger DataFrame\\n\",\n    \"df2 = DataFrame()\\n\",\n    \"df2[:A] = 1:10\\n\",\n    \"df2[:B] = [\\\"I\\\", \\\"II\\\", \\\"II\\\", \\\"I\\\", \\\"II\\\",\\\"I\\\", \\\"II\\\", \\\"II\\\", \\\"I\\\", \\\"II\\\"]\\n\",\n    \"Random.seed!(1234)\\n\",\n    \"df2[:C] = rand(Normal(), 10)\\n\",\n    \"df2[:D] = rand(Chisq(1), 10);\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"By using indexing (in square brackets), we can refer to row and column values (i.e. _row, column_).  Below is an example of seleting data point values for rows one through three, showing all the columns.  The colon symbol serves as shortcut syntax for this selection.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<table class=\\\"data-frame\\\"><thead><tr><th></th><th>A</th><th>B</th><th>C</th><th>D</th></tr><tr><th></th><th>Int64</th><th>String</th><th>Float64</th><th>Float64</th></tr></thead><tbody><p>3 rows × 4 columns</p><tr><th>1</th><td>1</td><td>I</td><td>0.867347</td><td>0.0123688</td></tr><tr><th>2</th><td>2</td><td>II</td><td>-0.901744</td><td>0.213586</td></tr><tr><th>3</th><td>3</td><td>II</td><td>-0.494479</td><td>0.00899443</td></tr></tbody></table>\"\n      ],\n      \"text/latex\": [\n       \"\\\\begin{tabular}{r|cccc}\\n\",\n       \"\\t& A & B & C & D\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t& Int64 & String & Float64 & Float64\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t1 & 1 & I & 0.867347 & 0.0123688 \\\\\\\\\\n\",\n       \"\\t2 & 2 & II & -0.901744 & 0.213586 \\\\\\\\\\n\",\n       \"\\t3 & 3 & II & -0.494479 & 0.00899443 \\\\\\\\\\n\",\n       \"\\\\end{tabular}\\n\"\n      ],\n      \"text/plain\": [\n       \"3×4 DataFrame\\n\",\n       \"│ Row │ A     │ B      │ C         │ D          │\\n\",\n       \"│     │ \\u001b[90mInt64\\u001b[39m │ \\u001b[90mString\\u001b[39m │ \\u001b[90mFloat64\\u001b[39m   │ \\u001b[90mFloat64\\u001b[39m    │\\n\",\n       \"├─────┼───────┼────────┼───────────┼────────────┤\\n\",\n       \"│ 1   │ 1     │ I      │ 0.867347  │ 0.0123688  │\\n\",\n       \"│ 2   │ 2     │ II     │ -0.901744 │ 0.213586   │\\n\",\n       \"│ 3   │ 3     │ II     │ -0.494479 │ 0.00899443 │\"\n      ]\n     },\n     \"execution_count\": 26,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# First three rows with all the colums\\n\",\n    \"df2[1:3, :]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"If only specified columns, that is to say, not the range of one, two, and three as we did above, but rather only colums one and three, we create a list to indicate this.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 27,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<table class=\\\"data-frame\\\"><thead><tr><th></th><th>A</th><th>C</th></tr><tr><th></th><th>Int64</th><th>Float64</th></tr></thead><tbody><p>10 rows × 2 columns</p><tr><th>1</th><td>1</td><td>0.867347</td></tr><tr><th>2</th><td>2</td><td>-0.901744</td></tr><tr><th>3</th><td>3</td><td>-0.494479</td></tr><tr><th>4</th><td>4</td><td>-0.902914</td></tr><tr><th>5</th><td>5</td><td>0.864401</td></tr><tr><th>6</th><td>6</td><td>2.21188</td></tr><tr><th>7</th><td>7</td><td>0.532813</td></tr><tr><th>8</th><td>8</td><td>-0.271735</td></tr><tr><th>9</th><td>9</td><td>0.502334</td></tr><tr><th>10</th><td>10</td><td>-0.516984</td></tr></tbody></table>\"\n      ],\n      \"text/latex\": [\n       \"\\\\begin{tabular}{r|cc}\\n\",\n       \"\\t& A & C\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t& Int64 & Float64\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t1 & 1 & 0.867347 \\\\\\\\\\n\",\n       \"\\t2 & 2 & -0.901744 \\\\\\\\\\n\",\n       \"\\t3 & 3 & -0.494479 \\\\\\\\\\n\",\n       \"\\t4 & 4 & -0.902914 \\\\\\\\\\n\",\n       \"\\t5 & 5 & 0.864401 \\\\\\\\\\n\",\n       \"\\t6 & 6 & 2.21188 \\\\\\\\\\n\",\n       \"\\t7 & 7 & 0.532813 \\\\\\\\\\n\",\n       \"\\t8 & 8 & -0.271735 \\\\\\\\\\n\",\n       \"\\t9 & 9 & 0.502334 \\\\\\\\\\n\",\n       \"\\t10 & 10 & -0.516984 \\\\\\\\\\n\",\n       \"\\\\end{tabular}\\n\"\n      ],\n      \"text/plain\": [\n       \"10×2 DataFrame\\n\",\n       \"│ Row │ A     │ C         │\\n\",\n       \"│     │ \\u001b[90mInt64\\u001b[39m │ \\u001b[90mFloat64\\u001b[39m   │\\n\",\n       \"├─────┼───────┼───────────┤\\n\",\n       \"│ 1   │ 1     │ 0.867347  │\\n\",\n       \"│ 2   │ 2     │ -0.901744 │\\n\",\n       \"│ 3   │ 3     │ -0.494479 │\\n\",\n       \"│ 4   │ 4     │ -0.902914 │\\n\",\n       \"│ 5   │ 5     │ 0.864401  │\\n\",\n       \"│ 6   │ 6     │ 2.21188   │\\n\",\n       \"│ 7   │ 7     │ 0.532813  │\\n\",\n       \"│ 8   │ 8     │ -0.271735 │\\n\",\n       \"│ 9   │ 9     │ 0.502334  │\\n\",\n       \"│ 10  │ 10    │ -0.516984 │\"\n      ]\n     },\n     \"execution_count\": 27,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# All rows columns 1 and 3\\n\",\n    \"df2[:, [1, 3]]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Instead of indicating the column numbers, we can also reference the actual column names (statistical variable names), using symbol notation, i.e. `:A`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 28,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<table class=\\\"data-frame\\\"><thead><tr><th></th><th>A</th><th>C</th></tr><tr><th></th><th>Int64</th><th>Float64</th></tr></thead><tbody><p>10 rows × 2 columns</p><tr><th>1</th><td>1</td><td>0.867347</td></tr><tr><th>2</th><td>2</td><td>-0.901744</td></tr><tr><th>3</th><td>3</td><td>-0.494479</td></tr><tr><th>4</th><td>4</td><td>-0.902914</td></tr><tr><th>5</th><td>5</td><td>0.864401</td></tr><tr><th>6</th><td>6</td><td>2.21188</td></tr><tr><th>7</th><td>7</td><td>0.532813</td></tr><tr><th>8</th><td>8</td><td>-0.271735</td></tr><tr><th>9</th><td>9</td><td>0.502334</td></tr><tr><th>10</th><td>10</td><td>-0.516984</td></tr></tbody></table>\"\n      ],\n      \"text/latex\": [\n       \"\\\\begin{tabular}{r|cc}\\n\",\n       \"\\t& A & C\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t& Int64 & Float64\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t1 & 1 & 0.867347 \\\\\\\\\\n\",\n       \"\\t2 & 2 & -0.901744 \\\\\\\\\\n\",\n       \"\\t3 & 3 & -0.494479 \\\\\\\\\\n\",\n       \"\\t4 & 4 & -0.902914 \\\\\\\\\\n\",\n       \"\\t5 & 5 & 0.864401 \\\\\\\\\\n\",\n       \"\\t6 & 6 & 2.21188 \\\\\\\\\\n\",\n       \"\\t7 & 7 & 0.532813 \\\\\\\\\\n\",\n       \"\\t8 & 8 & -0.271735 \\\\\\\\\\n\",\n       \"\\t9 & 9 & 0.502334 \\\\\\\\\\n\",\n       \"\\t10 & 10 & -0.516984 \\\\\\\\\\n\",\n       \"\\\\end{tabular}\\n\"\n      ],\n      \"text/plain\": [\n       \"10×2 DataFrame\\n\",\n       \"│ Row │ A     │ C         │\\n\",\n       \"│     │ \\u001b[90mInt64\\u001b[39m │ \\u001b[90mFloat64\\u001b[39m   │\\n\",\n       \"├─────┼───────┼───────────┤\\n\",\n       \"│ 1   │ 1     │ 0.867347  │\\n\",\n       \"│ 2   │ 2     │ -0.901744 │\\n\",\n       \"│ 3   │ 3     │ -0.494479 │\\n\",\n       \"│ 4   │ 4     │ -0.902914 │\\n\",\n       \"│ 5   │ 5     │ 0.864401  │\\n\",\n       \"│ 6   │ 6     │ 2.21188   │\\n\",\n       \"│ 7   │ 7     │ 0.532813  │\\n\",\n       \"│ 8   │ 8     │ -0.271735 │\\n\",\n       \"│ 9   │ 9     │ 0.502334  │\\n\",\n       \"│ 10  │ 10    │ -0.516984 │\"\n      ]\n     },\n     \"execution_count\": 28,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Different notation\\n\",\n    \"df2[:, [:A, :C]]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The `CSV.jl` package's `read()` function can import a comma separated values data file.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 29,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Make sure to install the package in the REPL first\\n\",\n    \"using CSV\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The file is saved in the same directory / folder as this notebook file.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 30,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Import csv file (in same directory / folder)\\n\",\n    \"data1 = CSV.read(\\\"CCS.csv\\\");\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Using the `type()` function, we note that we now have an instance of a dataframe object.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 31,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"DataFrame\"\n      ]\n     },\n     \"execution_count\": 31,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"typeof(data1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Let's view the first five rows of data.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 32,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<table class=\\\"data-frame\\\"><thead><tr><th></th><th>PatientID</th><th>Cat1</th><th>Cat2</th><th>Var1</th><th>Var2</th><th>Var3</th></tr><tr><th></th><th>Int64⍰</th><th>String⍰</th><th>String⍰</th><th>Float64⍰</th><th>Float64⍰</th><th>Float64⍰</th></tr></thead><tbody><p>5 rows × 6 columns</p><tr><th>1</th><td>1</td><td>A</td><td>C</td><td>38.2568</td><td>5.93913</td><td>35.0579</td></tr><tr><th>2</th><td>2</td><td>A</td><td>C</td><td>17.8317</td><td>5.34754</td><td>21.131</td></tr><tr><th>3</th><td>8</td><td>A</td><td>B</td><td>16.0218</td><td>6.60709</td><td>60.9436</td></tr><tr><th>4</th><td>9</td><td>A</td><td>C</td><td>45.1158</td><td>6.00733</td><td>21.8797</td></tr><tr><th>5</th><td>16</td><td>A</td><td>C</td><td>20.448</td><td>8.54819</td><td>20.6623</td></tr></tbody></table>\"\n      ],\n      \"text/latex\": [\n       \"\\\\begin{tabular}{r|cccccc}\\n\",\n       \"\\t& PatientID & Cat1 & Cat2 & Var1 & Var2 & Var3\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t& Int64⍰ & String⍰ & String⍰ & Float64⍰ & Float64⍰ & Float64⍰\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t1 & 1 & A & C & 38.2568 & 5.93913 & 35.0579 \\\\\\\\\\n\",\n       \"\\t2 & 2 & A & C & 17.8317 & 5.34754 & 21.131 \\\\\\\\\\n\",\n       \"\\t3 & 8 & A & B & 16.0218 & 6.60709 & 60.9436 \\\\\\\\\\n\",\n       \"\\t4 & 9 & A & C & 45.1158 & 6.00733 & 21.8797 \\\\\\\\\\n\",\n       \"\\t5 & 16 & A & C & 20.448 & 8.54819 & 20.6623 \\\\\\\\\\n\",\n       \"\\\\end{tabular}\\n\"\n      ],\n      \"text/plain\": [\n       \"5×6 DataFrame\\n\",\n       \"│ Row │ PatientID │ Cat1    │ Cat2    │ Var1     │ Var2     │ Var3     │\\n\",\n       \"│     │ \\u001b[90mInt64⍰\\u001b[39m    │ \\u001b[90mString⍰\\u001b[39m │ \\u001b[90mString⍰\\u001b[39m │ \\u001b[90mFloat64⍰\\u001b[39m │ \\u001b[90mFloat64⍰\\u001b[39m │ \\u001b[90mFloat64⍰\\u001b[39m │\\n\",\n       \"├─────┼───────────┼─────────┼─────────┼──────────┼──────────┼──────────┤\\n\",\n       \"│ 1   │ 1         │ A       │ C       │ 38.2568  │ 5.93913  │ 35.0579  │\\n\",\n       \"│ 2   │ 2         │ A       │ C       │ 17.8317  │ 5.34754  │ 21.131   │\\n\",\n       \"│ 3   │ 8         │ A       │ B       │ 16.0218  │ 6.60709  │ 60.9436  │\\n\",\n       \"│ 4   │ 9         │ A       │ C       │ 45.1158  │ 6.00733  │ 21.8797  │\\n\",\n       \"│ 5   │ 16        │ A       │ C       │ 20.448   │ 8.54819  │ 20.6623  │\"\n      ]\n     },\n     \"execution_count\": 32,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"first(data1, 5)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The `describe()` function will attempt to summarize all the variables.  In the case of categorical variables, an alphabetical arrangement for minimum and maximum values will be stated.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 33,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<table class=\\\"data-frame\\\"><thead><tr><th></th><th>variable</th><th>mean</th><th>min</th><th>median</th><th>max</th><th>nunique</th><th>nmissing</th><th>eltype</th></tr><tr><th></th><th>Symbol</th><th>Union…</th><th>Any</th><th>Union…</th><th>Any</th><th>Union…</th><th>Int64</th><th>DataType</th></tr></thead><tbody><p>6 rows × 8 columns</p><tr><th>1</th><td>PatientID</td><td>60.5</td><td>1</td><td>60.5</td><td>120</td><td></td><td>0</td><td>Int64</td></tr><tr><th>2</th><td>Cat1</td><td></td><td>A</td><td></td><td>B</td><td>2</td><td>0</td><td>String</td></tr><tr><th>3</th><td>Cat2</td><td></td><td>B</td><td></td><td>X</td><td>6</td><td>0</td><td>String</td></tr><tr><th>4</th><td>Var1</td><td>27.9679</td><td>15.2356</td><td>22.6801</td><td>84.2378</td><td></td><td>0</td><td>Float64</td></tr><tr><th>5</th><td>Var2</td><td>5.92121</td><td>3.01173</td><td>5.64241</td><td>15.5826</td><td></td><td>0</td><td>Float64</td></tr><tr><th>6</th><td>Var3</td><td>51.95</td><td>20.3153</td><td>44.3042</td><td>147.397</td><td></td><td>0</td><td>Float64</td></tr></tbody></table>\"\n      ],\n      \"text/latex\": [\n       \"\\\\begin{tabular}{r|cccccccc}\\n\",\n       \"\\t& variable & mean & min & median & max & nunique & nmissing & eltype\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t& Symbol & Union… & Any & Union… & Any & Union… & Int64 & DataType\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t1 & PatientID & 60.5 & 1 & 60.5 & 120 &  & 0 & Int64 \\\\\\\\\\n\",\n       \"\\t2 & Cat1 &  & A &  & B & 2 & 0 & String \\\\\\\\\\n\",\n       \"\\t3 & Cat2 &  & B &  & X & 6 & 0 & String \\\\\\\\\\n\",\n       \"\\t4 & Var1 & 27.9679 & 15.2356 & 22.6801 & 84.2378 &  & 0 & Float64 \\\\\\\\\\n\",\n       \"\\t5 & Var2 & 5.92121 & 3.01173 & 5.64241 & 15.5826 &  & 0 & Float64 \\\\\\\\\\n\",\n       \"\\t6 & Var3 & 51.95 & 20.3153 & 44.3042 & 147.397 &  & 0 & Float64 \\\\\\\\\\n\",\n       \"\\\\end{tabular}\\n\"\n      ],\n      \"text/plain\": [\n       \"6×8 DataFrame. Omitted printing of 1 columns\\n\",\n       \"│ Row │ variable  │ mean    │ min     │ median  │ max     │ nunique │ nmissing │\\n\",\n       \"│     │ \\u001b[90mSymbol\\u001b[39m    │ \\u001b[90mUnion…\\u001b[39m  │ \\u001b[90mAny\\u001b[39m     │ \\u001b[90mUnion…\\u001b[39m  │ \\u001b[90mAny\\u001b[39m     │ \\u001b[90mUnion…\\u001b[39m  │ \\u001b[90mInt64\\u001b[39m    │\\n\",\n       \"├─────┼───────────┼─────────┼─────────┼─────────┼─────────┼─────────┼──────────┤\\n\",\n       \"│ 1   │ PatientID │ 60.5    │ 1       │ 60.5    │ 120     │         │ 0        │\\n\",\n       \"│ 2   │ Cat1      │         │ A       │         │ B       │ 2       │ 0        │\\n\",\n       \"│ 3   │ Cat2      │         │ B       │         │ X       │ 6       │ 0        │\\n\",\n       \"│ 4   │ Var1      │ 27.9679 │ 15.2356 │ 22.6801 │ 84.2378 │         │ 0        │\\n\",\n       \"│ 5   │ Var2      │ 5.92121 │ 3.01173 │ 5.64241 │ 15.5826 │         │ 0        │\\n\",\n       \"│ 6   │ Var3      │ 51.95   │ 20.3153 │ 44.3042 │ 147.397 │         │ 0        │\"\n      ]\n     },\n     \"execution_count\": 33,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"describe(data1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Combining dataframes\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Combining dataframes on a common variable is a very useful operation.  Below we create two dataframe instances.  Note that both have a `Number` variable.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 34,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Creating DataFrames\\n\",\n    \"subjects = DataFrame(Number = [100, 101, 102, 103], Stage = [\\\"I\\\", \\\"III\\\", \\\"II\\\", \\\"I\\\"])\\n\",\n    \"treatment  = DataFrame(Number = [103, 102, 101, 100], Treatment = [\\\"A\\\", \\\"B\\\", \\\"A\\\", \\\"B\\\"]);\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The `join()` function takes the dataframe objects that require joining as arguments.  The `on =` argument (in symbol form), specifies the variable on which to join.  In this default mode, only values for the stated variable that appear in both dataframes will be included.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 35,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<table class=\\\"data-frame\\\"><thead><tr><th></th><th>Number</th><th>Stage</th><th>Treatment</th></tr><tr><th></th><th>Int64</th><th>String</th><th>String</th></tr></thead><tbody><p>4 rows × 3 columns</p><tr><th>1</th><td>100</td><td>I</td><td>B</td></tr><tr><th>2</th><td>101</td><td>III</td><td>A</td></tr><tr><th>3</th><td>102</td><td>II</td><td>B</td></tr><tr><th>4</th><td>103</td><td>I</td><td>A</td></tr></tbody></table>\"\n      ],\n      \"text/latex\": [\n       \"\\\\begin{tabular}{r|ccc}\\n\",\n       \"\\t& Number & Stage & Treatment\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t& Int64 & String & String\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t1 & 100 & I & B \\\\\\\\\\n\",\n       \"\\t2 & 101 & III & A \\\\\\\\\\n\",\n       \"\\t3 & 102 & II & B \\\\\\\\\\n\",\n       \"\\t4 & 103 & I & A \\\\\\\\\\n\",\n       \"\\\\end{tabular}\\n\"\n      ],\n      \"text/plain\": [\n       \"4×3 DataFrame\\n\",\n       \"│ Row │ Number │ Stage  │ Treatment │\\n\",\n       \"│     │ \\u001b[90mInt64\\u001b[39m  │ \\u001b[90mString\\u001b[39m │ \\u001b[90mString\\u001b[39m    │\\n\",\n       \"├─────┼────────┼────────┼───────────┤\\n\",\n       \"│ 1   │ 100    │ I      │ B         │\\n\",\n       \"│ 2   │ 101    │ III    │ A         │\\n\",\n       \"│ 3   │ 102    │ II     │ B         │\\n\",\n       \"│ 4   │ 103    │ I      │ A         │\"\n      ]\n     },\n     \"execution_count\": 35,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#Joining\\n\",\n    \"df3 = join(subjects, treatment, on = :Number);\\n\",\n    \"df3\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 36,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Adding a longer list of subjects\\n\",\n    \"subjects = DataFrame(Number = [100, 101, 102, 103, 104, 105], Stage = [\\\"I\\\", \\\"III\\\", \\\"II\\\", \\\"I\\\", \\\"II\\\", \\\"II\\\"]);\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The `kind =` argument allows for more control.  An inner join is the default (same as above).\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 37,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<table class=\\\"data-frame\\\"><thead><tr><th></th><th>Number</th><th>Stage</th><th>Treatment</th></tr><tr><th></th><th>Int64</th><th>String</th><th>String</th></tr></thead><tbody><p>4 rows × 3 columns</p><tr><th>1</th><td>100</td><td>I</td><td>B</td></tr><tr><th>2</th><td>101</td><td>III</td><td>A</td></tr><tr><th>3</th><td>102</td><td>II</td><td>B</td></tr><tr><th>4</th><td>103</td><td>I</td><td>A</td></tr></tbody></table>\"\n      ],\n      \"text/latex\": [\n       \"\\\\begin{tabular}{r|ccc}\\n\",\n       \"\\t& Number & Stage & Treatment\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t& Int64 & String & String\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t1 & 100 & I & B \\\\\\\\\\n\",\n       \"\\t2 & 101 & III & A \\\\\\\\\\n\",\n       \"\\t3 & 102 & II & B \\\\\\\\\\n\",\n       \"\\t4 & 103 & I & A \\\\\\\\\\n\",\n       \"\\\\end{tabular}\\n\"\n      ],\n      \"text/plain\": [\n       \"4×3 DataFrame\\n\",\n       \"│ Row │ Number │ Stage  │ Treatment │\\n\",\n       \"│     │ \\u001b[90mInt64\\u001b[39m  │ \\u001b[90mString\\u001b[39m │ \\u001b[90mString\\u001b[39m    │\\n\",\n       \"├─────┼────────┼────────┼───────────┤\\n\",\n       \"│ 1   │ 100    │ I      │ B         │\\n\",\n       \"│ 2   │ 101    │ III    │ A         │\\n\",\n       \"│ 3   │ 102    │ II     │ B         │\\n\",\n       \"│ 4   │ 103    │ I      │ A         │\"\n      ]\n     },\n     \"execution_count\": 37,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Inner join\\n\",\n    \" df4 = join(subjects, treatment, on = :Number, kind = :inner);\\n\",\n    \" df4\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"An outer join will join both dataframes and add `missing` data.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 38,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<table class=\\\"data-frame\\\"><thead><tr><th></th><th>Number</th><th>Stage</th><th>Treatment</th></tr><tr><th></th><th>Int64⍰</th><th>String⍰</th><th>String⍰</th></tr></thead><tbody><p>6 rows × 3 columns</p><tr><th>1</th><td>100</td><td>I</td><td>B</td></tr><tr><th>2</th><td>101</td><td>III</td><td>A</td></tr><tr><th>3</th><td>102</td><td>II</td><td>B</td></tr><tr><th>4</th><td>103</td><td>I</td><td>A</td></tr><tr><th>5</th><td>104</td><td>II</td><td>missing</td></tr><tr><th>6</th><td>105</td><td>II</td><td>missing</td></tr></tbody></table>\"\n      ],\n      \"text/latex\": [\n       \"\\\\begin{tabular}{r|ccc}\\n\",\n       \"\\t& Number & Stage & Treatment\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t& Int64⍰ & String⍰ & String⍰\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t1 & 100 & I & B \\\\\\\\\\n\",\n       \"\\t2 & 101 & III & A \\\\\\\\\\n\",\n       \"\\t3 & 102 & II & B \\\\\\\\\\n\",\n       \"\\t4 & 103 & I & A \\\\\\\\\\n\",\n       \"\\t5 & 104 & II &  \\\\\\\\\\n\",\n       \"\\t6 & 105 & II &  \\\\\\\\\\n\",\n       \"\\\\end{tabular}\\n\"\n      ],\n      \"text/plain\": [\n       \"6×3 DataFrame\\n\",\n       \"│ Row │ Number │ Stage   │ Treatment │\\n\",\n       \"│     │ \\u001b[90mInt64⍰\\u001b[39m │ \\u001b[90mString⍰\\u001b[39m │ \\u001b[90mString⍰\\u001b[39m   │\\n\",\n       \"├─────┼────────┼─────────┼───────────┤\\n\",\n       \"│ 1   │ 100    │ I       │ B         │\\n\",\n       \"│ 2   │ 101    │ III     │ A         │\\n\",\n       \"│ 3   │ 102    │ II      │ B         │\\n\",\n       \"│ 4   │ 103    │ I       │ A         │\\n\",\n       \"│ 5   │ 104    │ II      │ \\u001b[90mmissing\\u001b[39m   │\\n\",\n       \"│ 6   │ 105    │ II      │ \\u001b[90mmissing\\u001b[39m   │\"\n      ]\n     },\n     \"execution_count\": 38,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Outer joing: empty fields filled with missing\\n\",\n    \"df5  = join(subjects, treatment, on = :Number, kind = :outer);\\n\",\n    \"df5\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Grouping\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"A dataframe can be _spliced_ by grouping rows according to values in a variable.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 39,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<table class=\\\"data-frame\\\"><thead><tr><th></th><th>Group</th><th>Variable1</th><th>Variable2</th></tr><tr><th></th><th>String</th><th>Float64</th><th>Float64</th></tr></thead><tbody><p>3 rows × 3 columns</p><tr><th>1</th><td>B</td><td>0.447358</td><td>0.137658</td></tr><tr><th>2</th><td>B</td><td>-0.396211</td><td>0.60808</td></tr><tr><th>3</th><td>B</td><td>0.366773</td><td>0.255054</td></tr></tbody></table>\"\n      ],\n      \"text/latex\": [\n       \"\\\\begin{tabular}{r|ccc}\\n\",\n       \"\\t& Group & Variable1 & Variable2\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t& String & Float64 & Float64\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t1 & B & 0.447358 & 0.137658 \\\\\\\\\\n\",\n       \"\\t2 & B & -0.396211 & 0.60808 \\\\\\\\\\n\",\n       \"\\t3 & B & 0.366773 & 0.255054 \\\\\\\\\\n\",\n       \"\\\\end{tabular}\\n\"\n      ],\n      \"text/plain\": [\n       \"3×3 DataFrame\\n\",\n       \"│ Row │ Group  │ Variable1 │ Variable2 │\\n\",\n       \"│     │ \\u001b[90mString\\u001b[39m │ \\u001b[90mFloat64\\u001b[39m   │ \\u001b[90mFloat64\\u001b[39m   │\\n\",\n       \"├─────┼────────┼───────────┼───────────┤\\n\",\n       \"│ 1   │ B      │ 0.447358  │ 0.137658  │\\n\",\n       \"│ 2   │ B      │ -0.396211 │ 0.60808   │\\n\",\n       \"│ 3   │ B      │ 0.366773  │ 0.255054  │\"\n      ]\n     },\n     \"execution_count\": 39,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Creating a new DataFrame\\n\",\n    \"df6 = DataFrame(Group = rand([\\\"A\\\", \\\"B\\\", \\\"C\\\"], 15), Variable1 = randn(15), Variable2 = rand(15));\\n\",\n    \"first(df6, 3)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The `by()` function takes a dataframe object as first argument.  This is followed by a column (variable) on which to group by.  Below we use the `size` argument to indicate the number of rows and columns for the number of each unique values that are found in the specified variable.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 40,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<table class=\\\"data-frame\\\"><thead><tr><th></th><th>Group</th><th>x1</th></tr><tr><th></th><th>String</th><th>Tuple…</th></tr></thead><tbody><p>3 rows × 2 columns</p><tr><th>1</th><td>B</td><td>(9, 3)</td></tr><tr><th>2</th><td>A</td><td>(4, 3)</td></tr><tr><th>3</th><td>C</td><td>(2, 3)</td></tr></tbody></table>\"\n      ],\n      \"text/latex\": [\n       \"\\\\begin{tabular}{r|cc}\\n\",\n       \"\\t& Group & x1\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t& String & Tuple…\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t1 & B & (9, 3) \\\\\\\\\\n\",\n       \"\\t2 & A & (4, 3) \\\\\\\\\\n\",\n       \"\\t3 & C & (2, 3) \\\\\\\\\\n\",\n       \"\\\\end{tabular}\\n\"\n      ],\n      \"text/plain\": [\n       \"3×2 DataFrame\\n\",\n       \"│ Row │ Group  │ x1     │\\n\",\n       \"│     │ \\u001b[90mString\\u001b[39m │ \\u001b[90mTuple…\\u001b[39m │\\n\",\n       \"├─────┼────────┼────────┤\\n\",\n       \"│ 1   │ B      │ (9, 3) │\\n\",\n       \"│ 2   │ A      │ (4, 3) │\\n\",\n       \"│ 3   │ C      │ (2, 3) │\"\n      ]\n     },\n     \"execution_count\": 40,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#Grouping using by()\\n\",\n    \"by(df6, :Group, size)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Since the dataframe has three columns, we note that as the second value in the `count` tuple returned above.  The first value shows the number of instances of the unique values found for the specified variable.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Below we create a dataframe instance that shows only the count of the unique values.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 41,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<table class=\\\"data-frame\\\"><thead><tr><th></th><th>Group</th><th>Count</th></tr><tr><th></th><th>String</th><th>Int64</th></tr></thead><tbody><p>3 rows × 2 columns</p><tr><th>1</th><td>B</td><td>9</td></tr><tr><th>2</th><td>A</td><td>4</td></tr><tr><th>3</th><td>C</td><td>2</td></tr></tbody></table>\"\n      ],\n      \"text/latex\": [\n       \"\\\\begin{tabular}{r|cc}\\n\",\n       \"\\t& Group & Count\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t& String & Int64\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t1 & B & 9 \\\\\\\\\\n\",\n       \"\\t2 & A & 4 \\\\\\\\\\n\",\n       \"\\t3 & C & 2 \\\\\\\\\\n\",\n       \"\\\\end{tabular}\\n\"\n      ],\n      \"text/plain\": [\n       \"3×2 DataFrame\\n\",\n       \"│ Row │ Group  │ Count │\\n\",\n       \"│     │ \\u001b[90mString\\u001b[39m │ \\u001b[90mInt64\\u001b[39m │\\n\",\n       \"├─────┼────────┼───────┤\\n\",\n       \"│ 1   │ B      │ 9     │\\n\",\n       \"│ 2   │ A      │ 4     │\\n\",\n       \"│ 3   │ C      │ 2     │\"\n      ]\n     },\n     \"execution_count\": 41,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Count unique data point values in :Group column\\n\",\n    \"by(df6, :Group, dfc -> DataFrame(Count = size(dfc, 1)))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The `aggregate()` function also groups a dataframe by unique values for a specified column, but then provides the ability to list statistical tests required.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 42,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"3×5 DataFrame\\n\",\n      \"│ Row │ Group  │ Variable1_mean │ Variable2_mean │ Variable1_std │ Variable2_std │\\n\",\n      \"│     │ \\u001b[90mString\\u001b[39m │ \\u001b[90mFloat64\\u001b[39m        │ \\u001b[90mFloat64\\u001b[39m        │ \\u001b[90mFloat64\\u001b[39m       │ \\u001b[90mFloat64\\u001b[39m       │\\n\",\n      \"├─────┼────────┼────────────────┼────────────────┼───────────────┼───────────────┤\\n\",\n      \"│ 1   │ B      │ 0.127675       │ 0.446397       │ 0.973237      │ 0.268476      │\\n\",\n      \"│ 2   │ A      │ -0.33429       │ 0.339451       │ 1.04503       │ 0.352194      │\\n\",\n      \"│ 3   │ C      │ -0.902111      │ 0.373207       │ 1.51729       │ 0.368007      │\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# Aggregate for descriptive statistics\\n\",\n    \"print(aggregate(df6, :Group, [mean, std]))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The `groupby()` function actually creates sub-dataframes based on the unique values found in the specified variable.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 43,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<p><b>GroupedDataFrame with 3 groups based on key: Group</b></p><p><i>First Group (9 rows): Group = \\\"B\\\"</i></p><table class=\\\"data-frame\\\"><thead><tr><th></th><th>Group</th><th>Variable1</th><th>Variable2</th></tr><tr><th></th><th>String</th><th>Float64</th><th>Float64</th></tr></thead><tbody><tr><th>1</th><td>B</td><td>0.447358</td><td>0.137658</td></tr><tr><th>2</th><td>B</td><td>-0.396211</td><td>0.60808</td></tr><tr><th>3</th><td>B</td><td>0.366773</td><td>0.255054</td></tr><tr><th>4</th><td>B</td><td>0.621673</td><td>0.498734</td></tr><tr><th>5</th><td>B</td><td>2.06353</td><td>0.52509</td></tr><tr><th>6</th><td>B</td><td>-1.41453</td><td>0.265511</td></tr><tr><th>7</th><td>B</td><td>0.134475</td><td>0.110096</td></tr><tr><th>8</th><td>B</td><td>-0.750421</td><td>0.834362</td></tr><tr><th>9</th><td>B</td><td>0.076418</td><td>0.78299</td></tr></tbody></table><p>&vellip;</p><p><i>Last Group (2 rows): Group = \\\"C\\\"</i></p><table class=\\\"data-frame\\\"><thead><tr><th></th><th>Group</th><th>Variable1</th><th>Variable2</th></tr><tr><th></th><th>String</th><th>Float64</th><th>Float64</th></tr></thead><tbody><tr><th>1</th><td>C</td><td>0.170778</td><td>0.633427</td></tr><tr><th>2</th><td>C</td><td>-1.975</td><td>0.112987</td></tr></tbody></table>\"\n      ],\n      \"text/latex\": [\n       \"GroupedDataFrame with 3 groups based on key: Group\\n\",\n       \"\\n\",\n       \"First Group (9 rows): Group = \\\"B\\\"\\n\",\n       \"\\n\",\n       \"\\\\begin{tabular}{r|ccc}\\n\",\n       \"\\t& Group & Variable1 & Variable2\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t& String & Float64 & Float64\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t1 & B & 0.447358 & 0.137658 \\\\\\\\\\n\",\n       \"\\t2 & B & -0.396211 & 0.60808 \\\\\\\\\\n\",\n       \"\\t3 & B & 0.366773 & 0.255054 \\\\\\\\\\n\",\n       \"\\t4 & B & 0.621673 & 0.498734 \\\\\\\\\\n\",\n       \"\\t5 & B & 2.06353 & 0.52509 \\\\\\\\\\n\",\n       \"\\t6 & B & -1.41453 & 0.265511 \\\\\\\\\\n\",\n       \"\\t7 & B & 0.134475 & 0.110096 \\\\\\\\\\n\",\n       \"\\t8 & B & -0.750421 & 0.834362 \\\\\\\\\\n\",\n       \"\\t9 & B & 0.076418 & 0.78299 \\\\\\\\\\n\",\n       \"\\\\end{tabular}\\n\",\n       \"\\n\",\n       \"$\\\\dots$\\n\",\n       \"\\n\",\n       \"Last Group (2 rows): Group = \\\"C\\\"\\n\",\n       \"\\n\",\n       \"\\\\begin{tabular}{r|ccc}\\n\",\n       \"\\t& Group & Variable1 & Variable2\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t& String & Float64 & Float64\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t1 & C & 0.170778 & 0.633427 \\\\\\\\\\n\",\n       \"\\t2 & C & -1.975 & 0.112987 \\\\\\\\\\n\",\n       \"\\\\end{tabular}\\n\"\n      ],\n      \"text/plain\": [\n       \"GroupedDataFrame with 3 groups based on key: Group\\n\",\n       \"First Group (9 rows): Group = \\\"B\\\"\\n\",\n       \"│ Row │ Group  │ Variable1 │ Variable2 │\\n\",\n       \"│     │ \\u001b[90mString\\u001b[39m │ \\u001b[90mFloat64\\u001b[39m   │ \\u001b[90mFloat64\\u001b[39m   │\\n\",\n       \"├─────┼────────┼───────────┼───────────┤\\n\",\n       \"│ 1   │ B      │ 0.447358  │ 0.137658  │\\n\",\n       \"│ 2   │ B      │ -0.396211 │ 0.60808   │\\n\",\n       \"│ 3   │ B      │ 0.366773  │ 0.255054  │\\n\",\n       \"│ 4   │ B      │ 0.621673  │ 0.498734  │\\n\",\n       \"│ 5   │ B      │ 2.06353   │ 0.52509   │\\n\",\n       \"│ 6   │ B      │ -1.41453  │ 0.265511  │\\n\",\n       \"│ 7   │ B      │ 0.134475  │ 0.110096  │\\n\",\n       \"│ 8   │ B      │ -0.750421 │ 0.834362  │\\n\",\n       \"│ 9   │ B      │ 0.076418  │ 0.78299   │\\n\",\n       \"⋮\\n\",\n       \"Last Group (2 rows): Group = \\\"C\\\"\\n\",\n       \"│ Row │ Group  │ Variable1 │ Variable2 │\\n\",\n       \"│     │ \\u001b[90mString\\u001b[39m │ \\u001b[90mFloat64\\u001b[39m   │ \\u001b[90mFloat64\\u001b[39m   │\\n\",\n       \"├─────┼────────┼───────────┼───────────┤\\n\",\n       \"│ 1   │ C      │ 0.170778  │ 0.633427  │\\n\",\n       \"│ 2   │ C      │ -1.975    │ 0.112987  │\"\n      ]\n     },\n     \"execution_count\": 43,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#Group\\n\",\n    \"groupby(df6, :Group)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"By calling the `length()` function, we note that there are indeed three sub-dataframes.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 44,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3\"\n      ]\n     },\n     \"execution_count\": 44,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"length(groupby(df6, :Group))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Using indexing, we can select any of the three sub-dataframes.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 45,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<table class=\\\"data-frame\\\"><thead><tr><th></th><th>Group</th><th>Variable1</th><th>Variable2</th></tr><tr><th></th><th>String</th><th>Float64</th><th>Float64</th></tr></thead><tbody><p>4 rows × 3 columns</p><tr><th>1</th><td>A</td><td>0.182588</td><td>0.0940369</td></tr><tr><th>2</th><td>A</td><td>-1.58492</td><td>0.337865</td></tr><tr><th>3</th><td>A</td><td>0.799335</td><td>0.838042</td></tr><tr><th>4</th><td>A</td><td>-0.734161</td><td>0.0878598</td></tr></tbody></table>\"\n      ],\n      \"text/latex\": [\n       \"\\\\begin{tabular}{r|ccc}\\n\",\n       \"\\t& Group & Variable1 & Variable2\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t& String & Float64 & Float64\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t1 & A & 0.182588 & 0.0940369 \\\\\\\\\\n\",\n       \"\\t2 & A & -1.58492 & 0.337865 \\\\\\\\\\n\",\n       \"\\t3 & A & 0.799335 & 0.838042 \\\\\\\\\\n\",\n       \"\\t4 & A & -0.734161 & 0.0878598 \\\\\\\\\\n\",\n       \"\\\\end{tabular}\\n\"\n      ],\n      \"text/plain\": [\n       \"4×3 SubDataFrame\\n\",\n       \"│ Row │ Group  │ Variable1 │ Variable2 │\\n\",\n       \"│     │ \\u001b[90mString\\u001b[39m │ \\u001b[90mFloat64\\u001b[39m   │ \\u001b[90mFloat64\\u001b[39m   │\\n\",\n       \"├─────┼────────┼───────────┼───────────┤\\n\",\n       \"│ 1   │ A      │ 0.182588  │ 0.0940369 │\\n\",\n       \"│ 2   │ A      │ -1.58492  │ 0.337865  │\\n\",\n       \"│ 3   │ A      │ 0.799335  │ 0.838042  │\\n\",\n       \"│ 4   │ A      │ -0.734161 │ 0.0878598 │\"\n      ]\n     },\n     \"execution_count\": 45,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"groupby(df6, :Group)[2]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Sorting\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Sorting using the `sort!()` function (permanent bang version used here), does what is says on the box.  A list can be provided to sort by more than one variable.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 46,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<table class=\\\"data-frame\\\"><thead><tr><th></th><th>Group</th><th>Variable1</th><th>Variable2</th></tr><tr><th></th><th>String</th><th>Float64</th><th>Float64</th></tr></thead><tbody><p>7 rows × 3 columns</p><tr><th>1</th><td>A</td><td>-1.58492</td><td>0.337865</td></tr><tr><th>2</th><td>A</td><td>-0.734161</td><td>0.0878598</td></tr><tr><th>3</th><td>A</td><td>0.182588</td><td>0.0940369</td></tr><tr><th>4</th><td>A</td><td>0.799335</td><td>0.838042</td></tr><tr><th>5</th><td>B</td><td>-1.41453</td><td>0.265511</td></tr><tr><th>6</th><td>B</td><td>-0.750421</td><td>0.834362</td></tr><tr><th>7</th><td>B</td><td>-0.396211</td><td>0.60808</td></tr></tbody></table>\"\n      ],\n      \"text/latex\": [\n       \"\\\\begin{tabular}{r|ccc}\\n\",\n       \"\\t& Group & Variable1 & Variable2\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t& String & Float64 & Float64\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t1 & A & -1.58492 & 0.337865 \\\\\\\\\\n\",\n       \"\\t2 & A & -0.734161 & 0.0878598 \\\\\\\\\\n\",\n       \"\\t3 & A & 0.182588 & 0.0940369 \\\\\\\\\\n\",\n       \"\\t4 & A & 0.799335 & 0.838042 \\\\\\\\\\n\",\n       \"\\t5 & B & -1.41453 & 0.265511 \\\\\\\\\\n\",\n       \"\\t6 & B & -0.750421 & 0.834362 \\\\\\\\\\n\",\n       \"\\t7 & B & -0.396211 & 0.60808 \\\\\\\\\\n\",\n       \"\\\\end{tabular}\\n\"\n      ],\n      \"text/plain\": [\n       \"7×3 DataFrame\\n\",\n       \"│ Row │ Group  │ Variable1 │ Variable2 │\\n\",\n       \"│     │ \\u001b[90mString\\u001b[39m │ \\u001b[90mFloat64\\u001b[39m   │ \\u001b[90mFloat64\\u001b[39m   │\\n\",\n       \"├─────┼────────┼───────────┼───────────┤\\n\",\n       \"│ 1   │ A      │ -1.58492  │ 0.337865  │\\n\",\n       \"│ 2   │ A      │ -0.734161 │ 0.0878598 │\\n\",\n       \"│ 3   │ A      │ 0.182588  │ 0.0940369 │\\n\",\n       \"│ 4   │ A      │ 0.799335  │ 0.838042  │\\n\",\n       \"│ 5   │ B      │ -1.41453  │ 0.265511  │\\n\",\n       \"│ 6   │ B      │ -0.750421 │ 0.834362  │\\n\",\n       \"│ 7   │ B      │ -0.396211 │ 0.60808   │\"\n      ]\n     },\n     \"execution_count\": 46,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"df6S = sort!(df6, [:Group, :Variable1]);\\n\",\n    \"first(df6S, 7)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Unique rows only\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Below we create a dataframe with two identical rows.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 47,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<table class=\\\"data-frame\\\"><thead><tr><th></th><th>A</th><th>B</th><th>C</th></tr><tr><th></th><th>Int64</th><th>Int64</th><th>String</th></tr></thead><tbody><p>6 rows × 3 columns</p><tr><th>1</th><td>1</td><td>11</td><td>A</td></tr><tr><th>2</th><td>2</td><td>12</td><td>B</td></tr><tr><th>3</th><td>2</td><td>12</td><td>B</td></tr><tr><th>4</th><td>3</td><td>13</td><td>C</td></tr><tr><th>5</th><td>4</td><td>14</td><td>D</td></tr><tr><th>6</th><td>5</td><td>15</td><td>E</td></tr></tbody></table>\"\n      ],\n      \"text/latex\": [\n       \"\\\\begin{tabular}{r|ccc}\\n\",\n       \"\\t& A & B & C\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t& Int64 & Int64 & String\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t1 & 1 & 11 & A \\\\\\\\\\n\",\n       \"\\t2 & 2 & 12 & B \\\\\\\\\\n\",\n       \"\\t3 & 2 & 12 & B \\\\\\\\\\n\",\n       \"\\t4 & 3 & 13 & C \\\\\\\\\\n\",\n       \"\\t5 & 4 & 14 & D \\\\\\\\\\n\",\n       \"\\t6 & 5 & 15 & E \\\\\\\\\\n\",\n       \"\\\\end{tabular}\\n\"\n      ],\n      \"text/plain\": [\n       \"6×3 DataFrame\\n\",\n       \"│ Row │ A     │ B     │ C      │\\n\",\n       \"│     │ \\u001b[90mInt64\\u001b[39m │ \\u001b[90mInt64\\u001b[39m │ \\u001b[90mString\\u001b[39m │\\n\",\n       \"├─────┼───────┼───────┼────────┤\\n\",\n       \"│ 1   │ 1     │ 11    │ A      │\\n\",\n       \"│ 2   │ 2     │ 12    │ B      │\\n\",\n       \"│ 3   │ 2     │ 12    │ B      │\\n\",\n       \"│ 4   │ 3     │ 13    │ C      │\\n\",\n       \"│ 5   │ 4     │ 14    │ D      │\\n\",\n       \"│ 6   │ 5     │ 15    │ E      │\"\n      ]\n     },\n     \"execution_count\": 47,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Creating a DataFrame with an obvious duplicate row\\n\",\n    \"df7 = DataFrame(A = [1, 2, 2, 3, 4, 5],  B = [11, 12, 12, 13, 14, 15], C = [\\\"A\\\", \\\"B\\\", \\\"B\\\", \\\"C\\\", \\\"D\\\", \\\"E\\\"]);\\n\",\n    \"df7\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The `unique()` function will, as the name implies, delete the duplicate row.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 48,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<table class=\\\"data-frame\\\"><thead><tr><th></th><th>A</th><th>B</th><th>C</th></tr><tr><th></th><th>Int64</th><th>Int64</th><th>String</th></tr></thead><tbody><p>5 rows × 3 columns</p><tr><th>1</th><td>1</td><td>11</td><td>A</td></tr><tr><th>2</th><td>2</td><td>12</td><td>B</td></tr><tr><th>3</th><td>3</td><td>13</td><td>C</td></tr><tr><th>4</th><td>4</td><td>14</td><td>D</td></tr><tr><th>5</th><td>5</td><td>15</td><td>E</td></tr></tbody></table>\"\n      ],\n      \"text/latex\": [\n       \"\\\\begin{tabular}{r|ccc}\\n\",\n       \"\\t& A & B & C\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t& Int64 & Int64 & String\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t1 & 1 & 11 & A \\\\\\\\\\n\",\n       \"\\t2 & 2 & 12 & B \\\\\\\\\\n\",\n       \"\\t3 & 3 & 13 & C \\\\\\\\\\n\",\n       \"\\t4 & 4 & 14 & D \\\\\\\\\\n\",\n       \"\\t5 & 5 & 15 & E \\\\\\\\\\n\",\n       \"\\\\end{tabular}\\n\"\n      ],\n      \"text/plain\": [\n       \"5×3 DataFrame\\n\",\n       \"│ Row │ A     │ B     │ C      │\\n\",\n       \"│     │ \\u001b[90mInt64\\u001b[39m │ \\u001b[90mInt64\\u001b[39m │ \\u001b[90mString\\u001b[39m │\\n\",\n       \"├─────┼───────┼───────┼────────┤\\n\",\n       \"│ 1   │ 1     │ 11    │ A      │\\n\",\n       \"│ 2   │ 2     │ 12    │ B      │\\n\",\n       \"│ 3   │ 3     │ 13    │ C      │\\n\",\n       \"│ 4   │ 4     │ 14    │ D      │\\n\",\n       \"│ 5   │ 5     │ 15    │ E      │\"\n      ]\n     },\n     \"execution_count\": 48,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Only unique rows\\n\",\n    \"unique(df7)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 49,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<table class=\\\"data-frame\\\"><thead><tr><th></th><th>A</th><th>B</th><th>C</th></tr><tr><th></th><th>Int64</th><th>Int64</th><th>String</th></tr></thead><tbody><p>6 rows × 3 columns</p><tr><th>1</th><td>1</td><td>11</td><td>A</td></tr><tr><th>2</th><td>2</td><td>12</td><td>B</td></tr><tr><th>3</th><td>2</td><td>12</td><td>B</td></tr><tr><th>4</th><td>3</td><td>13</td><td>C</td></tr><tr><th>5</th><td>4</td><td>14</td><td>D</td></tr><tr><th>6</th><td>5</td><td>15</td><td>E</td></tr></tbody></table>\"\n      ],\n      \"text/latex\": [\n       \"\\\\begin{tabular}{r|ccc}\\n\",\n       \"\\t& A & B & C\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t& Int64 & Int64 & String\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t1 & 1 & 11 & A \\\\\\\\\\n\",\n       \"\\t2 & 2 & 12 & B \\\\\\\\\\n\",\n       \"\\t3 & 2 & 12 & B \\\\\\\\\\n\",\n       \"\\t4 & 3 & 13 & C \\\\\\\\\\n\",\n       \"\\t5 & 4 & 14 & D \\\\\\\\\\n\",\n       \"\\t6 & 5 & 15 & E \\\\\\\\\\n\",\n       \"\\\\end{tabular}\\n\"\n      ],\n      \"text/plain\": [\n       \"6×3 DataFrame\\n\",\n       \"│ Row │ A     │ B     │ C      │\\n\",\n       \"│     │ \\u001b[90mInt64\\u001b[39m │ \\u001b[90mInt64\\u001b[39m │ \\u001b[90mString\\u001b[39m │\\n\",\n       \"├─────┼───────┼───────┼────────┤\\n\",\n       \"│ 1   │ 1     │ 11    │ A      │\\n\",\n       \"│ 2   │ 2     │ 12    │ B      │\\n\",\n       \"│ 3   │ 2     │ 12    │ B      │\\n\",\n       \"│ 4   │ 3     │ 13    │ C      │\\n\",\n       \"│ 5   │ 4     │ 14    │ D      │\\n\",\n       \"│ 6   │ 5     │ 15    │ E      │\"\n      ]\n     },\n     \"execution_count\": 49,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"df7\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"As always, the bang will make the change permament.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 50,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<table class=\\\"data-frame\\\"><thead><tr><th></th><th>A</th><th>B</th><th>C</th></tr><tr><th></th><th>Int64</th><th>Int64</th><th>String</th></tr></thead><tbody><p>5 rows × 3 columns</p><tr><th>1</th><td>1</td><td>11</td><td>A</td></tr><tr><th>2</th><td>2</td><td>12</td><td>B</td></tr><tr><th>3</th><td>3</td><td>13</td><td>C</td></tr><tr><th>4</th><td>4</td><td>14</td><td>D</td></tr><tr><th>5</th><td>5</td><td>15</td><td>E</td></tr></tbody></table>\"\n      ],\n      \"text/latex\": [\n       \"\\\\begin{tabular}{r|ccc}\\n\",\n       \"\\t& A & B & C\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t& Int64 & Int64 & String\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t1 & 1 & 11 & A \\\\\\\\\\n\",\n       \"\\t2 & 2 & 12 & B \\\\\\\\\\n\",\n       \"\\t3 & 3 & 13 & C \\\\\\\\\\n\",\n       \"\\t4 & 4 & 14 & D \\\\\\\\\\n\",\n       \"\\t5 & 5 & 15 & E \\\\\\\\\\n\",\n       \"\\\\end{tabular}\\n\"\n      ],\n      \"text/plain\": [\n       \"5×3 DataFrame\\n\",\n       \"│ Row │ A     │ B     │ C      │\\n\",\n       \"│     │ \\u001b[90mInt64\\u001b[39m │ \\u001b[90mInt64\\u001b[39m │ \\u001b[90mString\\u001b[39m │\\n\",\n       \"├─────┼───────┼───────┼────────┤\\n\",\n       \"│ 1   │ 1     │ 11    │ A      │\\n\",\n       \"│ 2   │ 2     │ 12    │ B      │\\n\",\n       \"│ 3   │ 3     │ 13    │ C      │\\n\",\n       \"│ 4   │ 4     │ 14    │ D      │\\n\",\n       \"│ 5   │ 5     │ 15    │ E      │\"\n      ]\n     },\n     \"execution_count\": 50,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Permanant change\\n\",\n    \"unique!(df7)\\n\",\n    \"df7\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 51,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<table class=\\\"data-frame\\\"><thead><tr><th></th><th>A</th><th>B</th><th>C</th></tr><tr><th></th><th>Int64</th><th>Int64</th><th>String</th></tr></thead><tbody><p>5 rows × 3 columns</p><tr><th>1</th><td>1</td><td>11</td><td>A</td></tr><tr><th>2</th><td>2</td><td>12</td><td>B</td></tr><tr><th>3</th><td>3</td><td>13</td><td>C</td></tr><tr><th>4</th><td>4</td><td>14</td><td>D</td></tr><tr><th>5</th><td>5</td><td>15</td><td>E</td></tr></tbody></table>\"\n      ],\n      \"text/latex\": [\n       \"\\\\begin{tabular}{r|ccc}\\n\",\n       \"\\t& A & B & C\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t& Int64 & Int64 & String\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t1 & 1 & 11 & A \\\\\\\\\\n\",\n       \"\\t2 & 2 & 12 & B \\\\\\\\\\n\",\n       \"\\t3 & 3 & 13 & C \\\\\\\\\\n\",\n       \"\\t4 & 4 & 14 & D \\\\\\\\\\n\",\n       \"\\t5 & 5 & 15 & E \\\\\\\\\\n\",\n       \"\\\\end{tabular}\\n\"\n      ],\n      \"text/plain\": [\n       \"5×3 DataFrame\\n\",\n       \"│ Row │ A     │ B     │ C      │\\n\",\n       \"│     │ \\u001b[90mInt64\\u001b[39m │ \\u001b[90mInt64\\u001b[39m │ \\u001b[90mString\\u001b[39m │\\n\",\n       \"├─────┼───────┼───────┼────────┤\\n\",\n       \"│ 1   │ 1     │ 11    │ A      │\\n\",\n       \"│ 2   │ 2     │ 12    │ B      │\\n\",\n       \"│ 3   │ 3     │ 13    │ C      │\\n\",\n       \"│ 4   │ 4     │ 14    │ D      │\\n\",\n       \"│ 5   │ 5     │ 15    │ E      │\"\n      ]\n     },\n     \"execution_count\": 51,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"#Permanant change\\n\",\n    \"unique!(df7)\\n\",\n    \"df7\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Deleting rows\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The `deleterows!()` function (permanent bang version used here), deletes specified rows.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 52,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<table class=\\\"data-frame\\\"><thead><tr><th></th><th>A</th><th>B</th><th>C</th></tr><tr><th></th><th>Int64</th><th>Int64</th><th>String</th></tr></thead><tbody><p>3 rows × 3 columns</p><tr><th>1</th><td>2</td><td>12</td><td>B</td></tr><tr><th>2</th><td>3</td><td>13</td><td>C</td></tr><tr><th>3</th><td>4</td><td>14</td><td>D</td></tr></tbody></table>\"\n      ],\n      \"text/latex\": [\n       \"\\\\begin{tabular}{r|ccc}\\n\",\n       \"\\t& A & B & C\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t& Int64 & Int64 & String\\\\\\\\\\n\",\n       \"\\t\\\\hline\\n\",\n       \"\\t1 & 2 & 12 & B \\\\\\\\\\n\",\n       \"\\t2 & 3 & 13 & C \\\\\\\\\\n\",\n       \"\\t3 & 4 & 14 & D \\\\\\\\\\n\",\n       \"\\\\end{tabular}\\n\"\n      ],\n      \"text/plain\": [\n       \"3×3 DataFrame\\n\",\n       \"│ Row │ A     │ B     │ C      │\\n\",\n       \"│     │ \\u001b[90mInt64\\u001b[39m │ \\u001b[90mInt64\\u001b[39m │ \\u001b[90mString\\u001b[39m │\\n\",\n       \"├─────┼───────┼───────┼────────┤\\n\",\n       \"│ 1   │ 2     │ 12    │ B      │\\n\",\n       \"│ 2   │ 3     │ 13    │ C      │\\n\",\n       \"│ 3   │ 4     │ 14    │ D      │\"\n      ]\n     },\n     \"execution_count\": 52,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# Permanently\\n\",\n    \"deleterows!(df7, [1, 5])\\n\",\n    \"df7\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"[Back to the top](#In-this-lecture)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Julia 1.1.0\",\n   \"language\": \"julia\",\n   \"name\": \"julia-1.1\"\n  },\n  \"language_info\": {\n   \"file_extension\": \".jl\",\n   \"mimetype\": \"application/julia\",\n   \"name\": \"julia\",\n   \"version\": \"1.1.0\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "style.css",
    "content": "<link href='http://fonts.googleapis.com/css?family=Alegreya+Sans:100,300,400,500,700,800,900,100italic,300italic,400italic,500italic,700italic,800italic,900italic' rel='stylesheet' type='text/css'>\n<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>\n<link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>\n<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>\n<link href='http://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic' rel='stylesheet' type='text/css'>\n\n<style>\n\n@font-face {\n    font-family: \"Computer Modern\";\n    src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');\n}\n\n#notebook_panel { /* main background */\n    background: #ddd;\n    color: #000000;\n}\n\n\n\n/* Formatting for header cells */\n.text_cell_render h1 {\n    font-family: 'Philosopher', sans-serif;\n    font-weight: 400;\n    font-size: 2.2em;\n    line-height: 100%;\n    color: rgb(0, 80, 120);\n    margin-bottom: 0.1em;\n    margin-top: 0.1em;\n    display: block;\n}\t\n.text_cell_render h2 {\n    font-family: 'Philosopher', serif;\n    font-weight: 400;\n    font-size: 1.9em;\n    line-height: 100%;\n    color: rgb(200,100,0);\n    margin-bottom: 0.1em;\n    margin-top: 0.1em;\n    display: block;\n}\t\n\n.text_cell_render h3 {\n    font-family: 'Philosopher', serif;\n    margin-top:12px;\n    margin-bottom: 3px;\n    font-style: italic;\n    color: rgb(94,127,192);\n}\n\n.text_cell_render h4 {\n    font-family: 'Philosopher', serif;\n}\n\n.text_cell_render h5 {\n    font-family: 'Alegreya Sans', sans-serif;\n    font-weight: 300;\n    font-size: 16pt;\n    color: grey;\n    font-style: italic;\n    margin-bottom: .1em;\n    margin-top: 0.1em;\n    display: block;\n}\n\n.text_cell_render h6 {\n    font-family: 'PT Mono', sans-serif;\n    font-weight: 300;\n    font-size: 10pt;\n    color: grey;\n    margin-bottom: 1px;\n    margin-top: 1px;\n}\n\n.CodeMirror{\n        font-family: \"PT Mono\";\n        font-size: 100%;\n}\n\n</style>\n\n"
  },
  {
    "path": "wikipediaEVDdatesconverted.csv",
    "content": "613,28637,11314,3804,2536,10675,4808,14122,3955\n606,28634,11314,3804,2536,10672,4808,14122,3955\n599,28635,11314,3805,2536,10672,4808,14122,3955\n592,28607,11314,3810,2536,10672,4808,14089,3955\n582,28539,11298,3806,2535,10672,4808,14061,3955\n575,28476,11298,3803,2535,10672,4808,14001,3955\n568,28454,11297,3800,2534,10672,4808,13982,3955\n554,28388,11296,3805,2533,10672,4808,13911,3955\n547,28295,11295,3800,2532,10672,4808,13823,3955\n540,28220,11291,3792,2530,10672,4808,13756,3953\n533,28147,11291,3792,2530,10672,4808,13683,3953\n526,28073,11290,3792,2529,10672,4808,13609,3953\n512,27952,11284,3786,2524,10672,4808,13494,3952\n505,27929,11283,3787,2524,10672,4808,13470,3951\n491,27748,11279,3786,2520,10672,4808,13290,3951\n477,27642,11261,3760,2506,10673,4808,13209,3947\n470,27573,11246,3748,2499,10670,4807,13155,3940\n463,27514,11220,3729,2482,10666,4806,13119,3932\n456,27443,11207,3718,2473,10666,4806,13059,3924\n449,27305,11169,3674,2444,10666,4806,12965,3919\n435,27110,11132,3652,2429,10666,4806,12827,3912\n421,26898,11105,3635,2407,10666,4806,12632,3907\n407,26558,10990,3589,2386,10564,4716,12440,3903\n393,26009,10793,3565,2358,10212,4573,12267,3877\n379,25480,10557,3515,2333,9862,4408,12138,3831\n365,24837,10296,3429,2263,9602,4301,11841,3747\n351,24282,9976,3285,2170,9343,4162,11619,3629\n337,23659,9574,3155,2091,9238,4037,11301,3461\n323,22824,9147,3044,1995,8881,3826,10934,3341\n309,22022,8780,2917,1910,8622,3686,10518,3199\n295,21226,8399,2806,1814,8331,3538,10124,3062\n281,20171,7890,2707,1709,8018,3423,9446,2758\n267,18565,7273,2415,1525,7819,3346,8356,2417\n253,17110,6397,2164,1325,7653,3157,7312,1915\n241,15291,5765,2047,1214,7082,2963,6190,1598\n225,13015,5188,1731,1041,6525,2697,4759,1450\n211,9911,4890,1540,926,4665,2705,3706,1259\n204,8950,4476,1472,843,4249,2458,3252,1183\n190,7169,3278,1157,710,3696,1998,2317,570\n176,5327,2578,942,601,2720,1461,1655,516\n162,3664,1794,771,494,1698,871,1216,436\n147,2225,1225,543,394,834,466,848,365\n140,1835,1011,506,373,599,323,730,315\n130,1437,825,472,346,391,227,574,252\n123,1201,672,427,319,249,129,525,224\n114,982,613,411,310,174,106,397,197\n102,779,481,412,305,115,75,252,101\n87,528,337,398,264,33,24,97,49\n66,309,202,281,186,12,11,16,5\n51,260,182,248,171,12,11,–,–\n40,239,160,226,149,13,11,-,-\n23,176,110,168,108,8,2,–,–\n9,130,82,122,80,8,2,–,–\n0,49,29,49,29,–,–,–,–\n"
  },
  {
    "path": "wikipediaEVDraw.csv",
    "content": "25 Nov 2015,28637,11314,3804,2536,10675,4808,14122,3955\n18 Nov 2015,28634,11314,3804,2536,10672,4808,14122,3955\n11 Nov 2015,28635,11314,3805,2536,10672,4808,14122,3955\n4 Nov 2015,28607,11314,3810,2536,10672,4808,14089,3955\n25 Oct 2015,28539,11298,3806,2535,10672,4808,14061,3955\n18 Oct 2015,28476,11298,3803,2535,10672,4808,14001,3955\n11 Oct 2015,28454,11297,3800,2534,10672,4808,13982,3955\n27 Sep 2015,28388,11296,3805,2533,10672,4808,13911,3955\n20 Sep 2015,28295,11295,3800,2532,10672,4808,13823,3955\n13 Sep 2015,28220,11291,3792,2530,10672,4808,13756,3953\n6 Sep 2015,28147,11291,3792,2530,10672,4808,13683,3953\n30 Aug 2015,28073,11290,3792,2529,10672,4808,13609,3953\n16 Aug 2015,27952,11284,3786,2524,10672,4808,13494,3952\n9 Aug 2015,27929,11283,3787,2524,10672,4808,13470,3951\n26 Jul 2015,27748,11279,3786,2520,10672,4808,13290,3951\n12 Jul 2015,27642,11261,3760,2506,10673,4808,13209,3947\n5 Jul 2015,27573,11246,3748,2499,10670,4807,13155,3940\n28 Jun 2015,27514,11220,3729,2482,10666,4806,13119,3932\n21 Jun 2015,27443,11207,3718,2473,10666,4806,13059,3924\n14 Jun 2015,27305,11169,3674,2444,10666,4806,12965,3919\n31 May 2015,27110,11132,3652,2429,10666,4806,12827,3912\n17 May 2015,26898,11105,3635,2407,10666,4806,12632,3907\n3 May 2015,26558,10990,3589,2386,10564,4716,12440,3903\n19 Apr 2015,26009,10793,3565,2358,10212,4573,12267,3877\n5 Apr 2015,25480,10557,3515,2333,9862,4408,12138,3831\n22 Mar 2015,24837,10296,3429,2263,9602,4301,11841,3747\n8 Mar 2015,24282,9976,3285,2170,9343,4162,11619,3629\n22 Feb 2015,23659,9574,3155,2091,9238,4037,11301,3461\n8 Feb 2015,22824,9147,3044,1995,8881,3826,10934,3341\n25 Jan 2015,22022,8780,2917,1910,8622,3686,10518,3199\n11 Jan 2015,21226,8399,2806,1814,8331,3538,10124,3062\n28 Dec 2014,20171,7890,2707,1709,8018,3423,9446,2758\n14 Dec 2014,18565,7273,2415,1525,7819,3346,8356,2417\n30 Nov 2014,17110,6397,2164,1325,7653,3157,7312,1915\n18 Nov 2014,15291,5765,2047,1214,7082,2963,6190,1598\n2 Nov 2014,13015,5188,1731,1041,6525,2697,4759,1450\n19 Oct 2014,9911,4890,1540,926,4665,2705,3706,1259\n12 Oct 2014,8950,4476,1472,843,4249,2458,3252,1183\n28 Sep 2014,7169,3278,1157,710,3696,1998,2317,570\n14 Sep 2014,5327,2578,942,601,2720,1461,1655,516\n31 Aug 2014,3664,1794,771,494,1698,871,1216,436\n16 Aug 2014,2225,1225,543,394,834,466,848,365\n9 Aug 2014,1835,1011,506,373,599,323,730,315\n30 Jul 2014,1437,825,472,346,391,227,574,252\n23 Jul 2014,1201,672,427,319,249,129,525,224\n14 Jul 2014,982,613,411,310,174,106,397,197\n2 Jul 2014,779,481,412,305,115,75,252,101\n17 Jun 2014,528,337,398,264,33,24,97,49\n27 May 2014,309,202,281,186,12,11,16,5\n12 May 2014,260,182,248,171,12,11,–,–\n1 May 2014,239,160,226,149,13,11,-,-\n14 Apr 2014,176,110,168,108,8,2,–,–\n31 Mar 2014,130,82,122,80,8,2,–,–\n22 Mar 2014,49,29,49,29,–,–,–,–\n"
  }
]